diff --git a/doc/完善微前端架构的建议.md b/doc/完善微前端架构的建议.md new file mode 100644 index 0000000..96a2094 --- /dev/null +++ b/doc/完善微前端架构的建议.md @@ -0,0 +1,23 @@ +# 完善微前端架构的建议 + +除了已有的主模块、订单联邦模块、共享资源模块以及 nacos 服务中心和 traefik api 网关外,还可以考虑以下几个方面来完善微前端架构: + +* **状态管理与通信机制**:微前端架构中,各模块间的状态管理和通信是关键。可以采用 Pinia 等状态管理库,实现跨模块的数据共享。例如,通过在共享资源模块中定义 + Pinia store,然后在主模块和订单联邦模块中引入并使用,确保所有微前端模块都能访问同一缓存存储,实现数据共享。 + +* **路由管理**:虽然 @originjs/vite - plugin - federation + 插件本身支持模块的动态加载,但仍需要合理设计路由系统,确保不同模块之间的路由切换顺畅。可以在主模块中统一管理路由,根据用户的访问路径,动态加载对应的微前端模块。例如,使用 + Vue Router 的动态路由功能,根据不同的 URL 路径加载订单联邦模块或共享资源模块的组件。 + +* **样式隔离与共享**:需要确保各个微前端模块的样式不会相互干扰。可以采用 CSS Modules、Shadow DOM 或 CSS-in-JS + 等技术来实现样式隔离。同时,对于一些共享的样式,可以在共享资源模块中进行定义,然后通过模块联邦的方式共享给其他模块。 + +* **错误处理机制** + :由于微前端模块是独立开发和部署的,可能会出现各种错误。需要建立统一的错误处理机制,捕获并处理微前端模块在加载和运行过程中出现的错误。例如,在主模块中设置全局的错误捕获器,当订单联邦模块或共享资源模块出现错误时,能够及时捕获并展示友好的错误提示信息。 + +* **性能优化**:微前端架构中,多个模块的加载可能会影响性能。可以通过代码分割、懒加载等方式来优化性能。@originjs/vite - + plugin - federation 插件本身支持代码分割,可将每个微前端模块的代码拆分成多个小块,只在需要时加载相应的代码块。此外,还可以使用缓存策略,减少重复加载。 + +* **安全机制**:随着微前端模块的增加,安全问题也需要重视。需要确保各个模块之间的数据传输是安全的,防止跨站脚本攻击(XSS)、跨站请求伪造(CSRF)等安全漏洞。可以采用身份验证、授权、输入验证等安全措施来保障系统的安全。 + +> (注:文档部分内容可能由 AI 生成) \ No newline at end of file diff --git a/doc/杂项必看.md b/doc/杂项必看.md index 00eafd1..2a48e37 100644 --- a/doc/杂项必看.md +++ b/doc/杂项必看.md @@ -1,10 +1,12 @@ ### 依赖注意 DDD 中允许 “外层依赖内层”(交付层依赖领域层),但不允许 “内层依赖外层”。 + - 正确:features(交付层) → domains(领域层) - 错误:domains(领域层) → features(交付层) #### 避免类型重复定义 + 如果不在视图中直接使用领域类型,就需要在交付层重新定义一套类似的类型(如 “视图专用商品类型”),这会导致: - 代码冗余和不一致风险 @@ -12,14 +14,15 @@ DDD 中允许 “外层依赖内层”(交付层依赖领域层),但不允 - 业务规则分散(领域层的类型约束可能在视图层被忽略) ### 横切关注点 + - 特征:横向,影响多个模块,那些无法放入任何一个业务模块,而是会"横着"贯穿多个甚至所有模块的技术性需求。 - 案例:日志记录、身份认证、授权、事务管理、异常处理、缓存、性能监控 ## 业务关注点 + - 特征:通常局限于一个业务模块内 - 案例:计算订单总额、验证用户邮箱格式、处理库存扣减 - ### 对象职责的设计理念对比: #### 贫血模型 @@ -30,33 +33,33 @@ DDD 中允许 “外层依赖内层”(交付层依赖领域层),但不允 ```typescript // 1. 贫血的Order实体:只有数据,没有行为 class Order { - public id: string; - public items: OrderItem[]; - public total: number; // 总额需要外部来计算和设置 - public status: string; + public id: string; + public items: OrderItem[]; + public total: number; // 总额需要外部来计算和设置 + public status: string; } // 2. 所有业务逻辑都在外部的“服务”里 class OrderService { - calculateTotal(order: Order): void { - let total = 0; - for (const item of order.items) { - total += item.price * item.quantity; + calculateTotal(order: Order): void { + let total = 0; + for (const item of order.items) { + total += item.price * item.quantity; + } + order.total = total; // 从外部修改对象的数据 } - order.total = total; // 从外部修改对象的数据 - } - markAsPaid(order: Order): void { - if (order.total <= 0) { - throw new Error('订单金额无效'); + markAsPaid(order: Order): void { + if (order.total <= 0) { + throw new Error('订单金额无效'); + } + order.status = 'paid'; // 从外部修改对象的状态 } - order.status = 'paid'; // 从外部修改对象的状态 - } } // 使用方式 const order = new Order(); -order.items = [...]; +order.items = [ ... ]; const orderService = new OrderService(); orderService.calculateTotal(order); // 服务来算总额 orderService.markAsPaid(order); // 服务来改状态 @@ -70,42 +73,42 @@ orderService.markAsPaid(order); // 服务来改状态 ```typescript // 充血的Order实体:数据 + 行为 class Order { - public id: string; - private _items: OrderItem[]; - private _total: number; // 总额是内部计算的结果 - public status: string; + public id: string; + private _items: OrderItem[]; + private _total: number; // 总额是内部计算的结果 + public status: string; - constructor(items: OrderItem[]) { - this._items = items; - this._total = this.calculateTotal(); // 构造时自己计算总额 - this.status = 'created'; - } - - // 业务逻辑封装在实体内部 - private calculateTotal(): number { - return this._items.reduce((sum, item) => sum + (item.price * item.quantity), 0); - } - - // 一个公开的业务方法 - public markAsPaid(): void { - // 它自己 knows 自己的业务规则 - if (this._total <= 0) { - throw new Error('订单金额无效,无法支付'); + constructor(items: OrderItem[]) { + this._items = items; + this._total = this.calculateTotal(); // 构造时自己计算总额 + this.status = 'created'; } - this.status = 'paid'; - } - // 提供访问内部数据的方法(如果需要) - get total(): number { - return this._total; - } + // 业务逻辑封装在实体内部 + private calculateTotal(): number { + return this._items.reduce((sum, item) => sum + (item.price * item.quantity), 0); + } - get items(): ReadonlyArray { - return [...this._items]; // 返回副本,保护内部数据 - } + // 一个公开的业务方法 + public markAsPaid(): void { + // 它自己 knows 自己的业务规则 + if (this._total <= 0) { + throw new Error('订单金额无效,无法支付'); + } + this.status = 'paid'; + } + + // 提供访问内部数据的方法(如果需要) + get total(): number { + return this._total; + } + + get items(): ReadonlyArray { + return [ ...this._items ]; // 返回副本,保护内部数据 + } } // 使用方式:对象是聪明的,告诉它做什么就行,而不是一步步操作它 -const order = new Order([...]); +const order = new Order([ ... ]); order.markAsPaid(); // 对象自己处理状态变更 ``` \ No newline at end of file diff --git a/doc/样式隔离与共享的方案.md b/doc/样式隔离与共享的方案.md new file mode 100644 index 0000000..eea040d --- /dev/null +++ b/doc/样式隔离与共享的方案.md @@ -0,0 +1,237 @@ +# 微前端架构中样式隔离与共享的方案及最佳实践 + +在微前端架构中,样式隔离与共享需要兼顾 "模块间样式不冲突" 和 "公共样式高效复用",可以结合以下方案实现: + +### **一、样式隔离方案** + +确保各微应用的样式不会相互污染,推荐 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/standalone-logs/alipay-jraft.log b/docker/nacos/standalone-logs/alipay-jraft.log index aca9363..19914c4 100644 --- a/docker/nacos/standalone-logs/alipay-jraft.log +++ b/docker/nacos/standalone-logs/alipay-jraft.log @@ -1,26 +1,480 @@ -2025-09-23 00:06:11,786 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. +2025-09-24 00:06:11,892 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. -2025-09-23 00:08:53,585 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. +2025-09-24 00:08:53,878 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. -2025-09-23 00:13:51,121 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 2 to 2, cost 0 ms. +2025-09-24 00:13:51,254 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. -2025-09-23 00:14:37,508 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. +2025-09-24 00:14:37,578 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. -2025-09-23 00:18:27,280 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. +2025-09-24 00:18:27,337 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. -2025-09-23 00:36:11,782 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. +2025-09-24 00:36:11,905 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 5 ms. -2025-09-23 00:38:53,589 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. +2025-09-24 00:38:53,894 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. -2025-09-23 00:43:51,117 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_2. +2025-09-24 00:43:51,255 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. -2025-09-23 00:43:51,118 INFO Renaming /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_2. +2025-09-24 00:44:37,578 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. -2025-09-23 00:43:51,121 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_1. +2025-09-24 00:48:27,346 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. -2025-09-23 00:43:51,209 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 2 to 2, cost 0 ms. +2025-09-24 01:06:11,875 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. -2025-09-23 00:44:37,511 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. +2025-09-24 01:08:53,890 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. -2025-09-23 00:48:27,285 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. +2025-09-24 01:13:51,251 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 01:14:37,616 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 13 ms. + +2025-09-24 01:18:27,346 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 7 ms. + +2025-09-24 01:36:11,873 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 01:38:53,888 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 3 ms. + +2025-09-24 01:43:51,258 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 01:44:37,583 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 01:48:27,335 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 4 ms. + +2025-09-24 02:06:11,874 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 02:08:53,899 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 02:13:51,253 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 02:14:37,586 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 02:18:27,340 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 3 ms. + +2025-09-24 02:36:11,879 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 02:38:53,894 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 02:43:51,254 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 02:44:37,587 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 02:48:27,321 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 2 ms. + +2025-09-24 03:06:11,888 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 03:08:53,892 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 3 ms. + +2025-09-24 03:13:51,254 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 03:14:37,586 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 03:18:27,338 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 3 ms. + +2025-09-24 03:36:11,882 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 03:38:53,888 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 03:43:51,264 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 03:44:37,588 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 03:48:27,342 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 04:06:11,885 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 04:08:53,898 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 3 ms. + +2025-09-24 04:13:51,257 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 04:14:37,590 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 04:18:27,322 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 04:36:11,882 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 04:38:53,904 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 5 ms. + +2025-09-24 04:43:51,256 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 04:44:37,590 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 04:48:27,351 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 7 ms. + +2025-09-24 05:06:11,884 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 2 ms. + +2025-09-24 05:08:53,914 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 05:13:51,271 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 05:14:37,592 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 05:18:27,343 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 05:36:11,897 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 2 ms. + +2025-09-24 05:38:53,910 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 05:43:51,276 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 5 ms. + +2025-09-24 05:44:37,593 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 05:48:27,348 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:06:11,900 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:08:53,912 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:13:51,271 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 06:14:37,599 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:18:27,347 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:36:11,907 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:38:53,908 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:43:51,271 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 06:44:37,607 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 06:48:27,352 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 07:06:11,906 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 07:08:53,909 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 07:13:51,263 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 07:14:37,601 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 07:18:27,350 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 07:36:11,909 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 07:38:53,907 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 07:43:51,299 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 07:44:37,601 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 07:48:27,356 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 08:06:11,918 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 08:08:53,931 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 08:13:51,269 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 08:14:37,603 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 08:18:27,352 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 08:36:11,918 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 08:38:53,910 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 08:43:51,268 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 08:44:37,628 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 08:48:27,353 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 09:06:11,927 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 09:08:53,945 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 09:13:51,272 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 09:14:37,609 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 09:18:27,351 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 09:36:11,927 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 09:38:53,922 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 09:43:51,280 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 09:44:37,610 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 09:48:27,354 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:06:11,909 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:08:53,922 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:13:51,288 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 10:14:37,609 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:18:27,354 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:36:11,929 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:38:53,921 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:43:51,282 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 10:44:37,611 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 10:48:27,358 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 11:06:11,930 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 11:08:53,926 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 5 ms. + +2025-09-24 11:13:51,281 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 11:14:37,610 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 11:18:27,360 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 11:36:11,930 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 11:38:53,932 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 11:43:51,290 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 11:44:37,611 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 11:48:27,363 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:06:11,927 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:08:53,927 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:13:51,277 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 12:14:37,609 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:18:27,362 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:36:11,931 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:38:53,932 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:43:51,288 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 12:44:37,616 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 12:48:27,371 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:06:11,931 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:08:53,928 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:13:51,283 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 13:14:37,634 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:18:27,368 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:36:11,940 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:38:53,929 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:43:51,283 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 13:44:37,616 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 13:48:27,377 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 14:06:11,915 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 14:08:53,931 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 14:13:51,281 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 14:14:37,616 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 14:18:27,372 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 14:36:11,955 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 14:38:53,938 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 14:43:51,285 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 14:44:37,631 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 14:48:27,376 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 2 ms. + +2025-09-24 15:06:11,938 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 15:08:53,942 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 15:13:51,265 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 15:14:37,618 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 15:18:27,349 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 15:36:11,921 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 15:38:53,950 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 15:43:51,288 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 15:44:37,619 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 15:48:27,381 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 4 ms. + +2025-09-24 16:06:11,942 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 16:08:53,947 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 16:13:51,291 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 16:14:37,620 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 16:18:27,382 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 16:36:11,953 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 16:38:53,957 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 16:43:51,289 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 16:44:37,652 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 16:48:27,381 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 17:06:11,955 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 17:08:53,950 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 17:13:51,298 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 17:14:37,626 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 17:18:27,385 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 17:36:11,970 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 17:38:53,966 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 10 ms. + +2025-09-24 17:43:51,300 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 17:44:37,627 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 17:48:27,393 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 18:06:11,965 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 18:08:53,960 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 18:13:51,290 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 18:14:37,628 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 18:18:27,385 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 18:36:11,976 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 18:38:53,963 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 18:43:51,297 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 18:44:37,631 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 18:48:27,391 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 19:06:11,979 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 19:08:53,953 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 19:13:51,298 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 19:14:37,633 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 19:18:27,391 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 19:36:11,972 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 19:38:53,980 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 19:43:51,307 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 19:44:37,635 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 19:48:27,390 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 20:06:11,972 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 20:08:53,964 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 20:13:51,315 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 20:14:37,637 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 20:18:27,393 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 20:36:11,981 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 20:38:53,977 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 20:43:51,306 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 20:44:37,648 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 20:48:27,393 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 21:06:11,985 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 21:08:53,977 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 21:13:51,310 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 21:14:37,637 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 21:18:27,401 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 21:36:11,991 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 21:38:53,988 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 21:43:51,312 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms. + +2025-09-24 21:44:37,638 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 21:48:27,417 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 22:06:11,989 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 22:08:53,984 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 22:13:51,308 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 22:14:37,640 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 22:18:27,398 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 22:36:11,999 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 22:38:53,983 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 22:43:51,316 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 22:44:37,643 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 1 ms. + +2025-09-24 22:48:27,400 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 23:06:11,995 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 0 ms. + +2025-09-24 23:08:53,994 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 0 ms. + +2025-09-24 23:13:51,342 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 23:14:37,652 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 23:18:27,402 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 23:36:12,012 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 2 to 2, cost 1 ms. + +2025-09-24 23:38:54,037 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 2 to 2, cost 1 ms. + +2025-09-24 23:43:51,323 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms. + +2025-09-24 23:44:37,669 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 2 to 2, cost 0 ms. + +2025-09-24 23:48:27,405 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log from log index 2 to 2, cost 0 ms. diff --git a/docker/nacos/standalone-logs/config-client-request.log b/docker/nacos/standalone-logs/config-client-request.log index fd6496b..8c3e1f2 100644 --- a/docker/nacos/standalone-logs/config-client-request.log +++ b/docker/nacos/standalone-logs/config-client-request.log @@ -1,98 +1,142 @@ -2025-09-23 01:32:49,973|opType: publish | rt: 79ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: DevBaseUrl | group: DEFAULT_GROUP | tenant: public | md5: d95df047a29e8ba8bd2f8ddd5b0de5d8 -2025-09-23 01:33:42,270|opType: publish | rt: 12ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: prodBaseUrl | group: DEFAULT_GROUP | tenant: public | md5: 05a3bc870e145610c22935fd73e6fdc8 -2025-09-23 01:42:32,794|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: DevBaseUrl | group: DEFAULT_GROUP | tenant: public | md5: d95df047a29e8ba8bd2f8ddd5b0de5d8 -2025-09-23 01:46:16,457|opType: publish | rt: 14ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:47:04,251|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:48:59,599|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:49:41,925|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:49:50,114|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:55:58,625|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:57:15,815|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:58:11,660|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:58:48,309|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:58:55,114|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:59:04,721|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:59:28,135|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:06:33,721|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:07:11,865|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:08:03,213|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:11:29,450|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:11:59,947|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:13:02,809|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:14:53,128|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:16:10,972|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:18:04,851|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:18:31,314|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:19:53,202|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:20:44,429|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:20:55,485|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:25:50,379|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:29:07,000|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:31:42,590|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:32:44,046|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:33:01,610|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:33:53,394|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:35:01,077|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:40:10,394|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:45:17,695|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:45:17,710|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:45:43,399|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:45:43,421|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:48:21,105|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:48:21,126|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:48:40,966|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:48:40,989|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:49:38,779|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:49:38,797|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:49:46,849|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:51:19,992|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:51:20,011|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:52:00,249|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:52:33,889|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:52:33,911|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:52:41,250|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:52:41,270|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:53:25,759|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:53:25,776|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:56:27,174|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:56:27,193|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:56:33,465|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:56:33,491|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:56:37,670|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 02:56:37,691|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:01:56,224|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:01:56,240|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:04:44,016|opType: get | rt: 4ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:04:44,032|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:04:48,537|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:04:48,560|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:05:05,498|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:05:05,519|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:07:34,074|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:07:34,090|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:07:49,498|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:07:49,517|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:07:52,497|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:07:52,557|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:08:42,914|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:08:47,877|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:09:54,447|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:09:54,467|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:12:28,428|opType: get | rt: 4ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:13:23,045|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:13:23,066|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:13:43,393|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:13:43,412|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:16:37,513|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:16:37,534|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:17:06,783|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:17:06,805|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:17:22,159|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:17:22,183|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:17:30,946|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:17:30,966|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:18:29,649|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:18:29,671|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 03:19:02,603|opType: publish | rt: 87ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-23 03:19:17,149|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-23 03:19:17,168|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:01:21,849|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:01:21,869|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:04:03,895|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:04:03,907|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:04:48,318|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:04:48,336|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:05:35,874|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:05:35,898|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:07:38,430|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:07:38,438|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:09:02,249|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:09:02,280|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:09:43,553|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:09:43,652|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:10:01,974|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:10:01,994|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:13:57,243|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:13:57,335|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:14:15,005|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:14:15,066|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:18:17,974|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:18:17,984|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:18:34,831|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:18:34,853|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:19:02,413|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:21:34,183|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:21:34,189|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:24:05,490|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:24:05,499|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:24:58,363|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:24:58,383|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:26:13,704|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:26:18,635|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:26:18,655|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:26:33,071|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:26:58,740|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:26:58,762|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:27:22,451|opType: get | rt: 6ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:27:22,467|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:36:48,408|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:36:48,418|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:37:08,824|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:37:08,845|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:39:38,997|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:39:39,004|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:44:32,694|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:44:32,709|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:46:14,048|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:46:14,058|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:46:44,595|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:46:44,614|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:48:43,478|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:48:43,533|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:48:45,546|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:48:45,565|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:51:47,643|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:51:47,649|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:54:06,588|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:54:06,608|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:56:09,671|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:56:09,679|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:58:27,257|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 00:58:27,276|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:02:16,377|opType: get | rt: 4ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:02:16,383|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:03:16,960|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:03:16,982|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:03:39,074|opType: get | rt: 5ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:03:39,090|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:05:50,365|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:05:50,381|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:06:28,738|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:06:28,754|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:11:52,660|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:11:52,676|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:13:09,422|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:13:09,426|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:14:08,558|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:14:08,577|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:14:28,176|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:14:28,195|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:15:18,811|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:15:18,842|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:15:43,052|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:15:43,075|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:15:54,808|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:15:54,827|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:16:10,345|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:16:10,369|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:18:55,069|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 01:20:02,906|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 16:37:43,966|opType: get | rt: 7ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 16:37:46,419|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 16:37:46,480|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 16:37:49,641|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 16:37:49,687|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 16:43:16,802|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 16:43:16,809|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:26:12,911|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:26:17,750|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:26:17,768|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:26:20,852|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:26:20,932|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:27:20,499|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:27:20,518|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:29:15,285|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:29:15,304|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:31:14,588|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:31:14,601|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:31:38,473|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:32:20,572|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:32:20,592|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:46:50,044|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:46:50,061|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:46:55,707|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:47:12,719|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:47:12,738|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:48:30,536|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:48:30,551|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 22:55:01,028|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:01:46,185|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:01:46,206|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:08:27,411|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:08:27,427|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:08:43,529|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:09:42,201|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:09:46,415|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:09:46,439|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:10:00,624|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:10:00,645|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:14:53,339|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:14:53,354|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:15:18,517|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:15:18,544|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:16:35,877|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:16:35,894|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:19:32,304|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:19:32,325|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:26:30,224|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:26:30,237|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:39:36,406|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d +2025-09-24 23:39:36,408|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d diff --git a/docker/nacos/standalone-logs/config-memory.log b/docker/nacos/standalone-logs/config-memory.log index 45a10a8..41a6674 100644 --- a/docker/nacos/standalone-logs/config-memory.log +++ b/docker/nacos/standalone-logs/config-memory.log @@ -1,2936 +1,68960 @@ -2025-09-23 00:00:06,911 INFO [long-pulling] client count 0 +2025-09-24 00:00:06,635 INFO [long-pulling] client count 0 -2025-09-23 00:00:06,930 INFO toNotifyTaskSize = 0 +2025-09-24 00:00:06,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:00:06,930 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:00:06,636 INFO toNotifyTaskSize = 0 -2025-09-23 00:00:06,930 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:00:06,647 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:00:16,917 INFO [long-pulling] client count 0 +2025-09-24 00:00:16,647 INFO [long-pulling] client count 0 -2025-09-23 00:00:16,930 INFO toNotifyTaskSize = 0 +2025-09-24 00:00:16,648 INFO toNotifyTaskSize = 0 -2025-09-23 00:00:16,930 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:00:16,648 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:00:16,930 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:00:16,648 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:00:26,918 INFO [long-pulling] client count 0 +2025-09-24 00:00:26,649 INFO [long-pulling] client count 0 -2025-09-23 00:00:26,931 INFO toNotifyTaskSize = 0 +2025-09-24 00:00:26,649 INFO toNotifyTaskSize = 0 -2025-09-23 00:00:26,931 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:00:26,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:00:26,931 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:00:26,649 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:00:36,919 INFO [long-pulling] client count 0 +2025-09-24 00:00:36,650 INFO [long-pulling] client count 0 -2025-09-23 00:00:36,932 INFO toNotifyTaskSize = 0 +2025-09-24 00:00:36,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:00:36,933 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:00:36,650 INFO toNotifyTaskSize = 0 -2025-09-23 00:00:36,933 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:00:36,659 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:00:46,921 INFO [long-pulling] client count 0 +2025-09-24 00:00:46,660 INFO [long-pulling] client count 0 -2025-09-23 00:00:46,933 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:00:46,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:00:46,933 INFO toNotifyTaskSize = 0 +2025-09-24 00:00:46,660 INFO toNotifyTaskSize = 0 -2025-09-23 00:00:46,933 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:00:46,661 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:00:56,921 INFO [long-pulling] client count 0 +2025-09-24 00:00:56,662 INFO [long-pulling] client count 0 -2025-09-23 00:00:56,934 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:00:56,662 INFO toNotifyTaskSize = 0 -2025-09-23 00:00:56,935 INFO toNotifyTaskSize = 0 +2025-09-24 00:00:56,662 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:00:56,935 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:00:56,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:01:06,923 INFO [long-pulling] client count 0 +2025-09-24 00:01:06,662 INFO [long-pulling] client count 0 -2025-09-23 00:01:06,936 INFO toNotifyTaskSize = 0 +2025-09-24 00:01:06,662 INFO toNotifyTaskSize = 0 -2025-09-23 00:01:06,936 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:01:06,663 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:01:06,936 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:01:06,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:01:16,923 INFO [long-pulling] client count 0 +2025-09-24 00:01:16,663 INFO [long-pulling] client count 0 -2025-09-23 00:01:16,937 INFO toNotifyTaskSize = 0 +2025-09-24 00:01:16,663 INFO toNotifyTaskSize = 0 -2025-09-23 00:01:16,937 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:01:16,663 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:01:16,937 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:01:16,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:01:26,924 INFO [long-pulling] client count 0 +2025-09-24 00:01:26,663 INFO [long-pulling] client count 0 -2025-09-23 00:01:26,938 INFO toNotifyTaskSize = 0 +2025-09-24 00:01:26,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:01:26,938 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:01:26,663 INFO toNotifyTaskSize = 0 -2025-09-23 00:01:26,938 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:01:26,664 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:01:36,924 INFO [long-pulling] client count 0 +2025-09-24 00:01:36,664 INFO [long-pulling] client count 0 -2025-09-23 00:01:36,939 INFO toNotifyTaskSize = 0 +2025-09-24 00:01:36,664 INFO toNotifyTaskSize = 0 -2025-09-23 00:01:36,939 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:01:36,664 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:01:36,939 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:01:36,664 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:01:46,925 INFO [long-pulling] client count 0 +2025-09-24 00:01:46,664 INFO [long-pulling] client count 0 -2025-09-23 00:01:46,940 INFO toNotifyTaskSize = 0 +2025-09-24 00:01:46,665 INFO toNotifyTaskSize = 0 -2025-09-23 00:01:46,940 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:01:46,665 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:01:46,940 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:01:46,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:01:56,925 INFO [long-pulling] client count 0 +2025-09-24 00:01:56,665 INFO [long-pulling] client count 0 -2025-09-23 00:01:56,940 INFO toNotifyTaskSize = 0 +2025-09-24 00:01:56,666 INFO toNotifyTaskSize = 0 -2025-09-23 00:01:56,940 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:01:56,666 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:01:56,940 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:01:56,666 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:02:06,925 INFO [long-pulling] client count 0 +2025-09-24 00:02:06,666 INFO [long-pulling] client count 0 -2025-09-23 00:02:06,940 INFO toNotifyTaskSize = 0 +2025-09-24 00:02:06,667 INFO toNotifyTaskSize = 0 -2025-09-23 00:02:06,941 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:02:06,667 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:02:06,941 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:02:06,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:02:16,926 INFO [long-pulling] client count 0 +2025-09-24 00:02:16,666 INFO [long-pulling] client count 0 -2025-09-23 00:02:16,941 INFO toNotifyTaskSize = 0 +2025-09-24 00:02:16,668 INFO toNotifyTaskSize = 0 -2025-09-23 00:02:16,941 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:02:16,668 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:02:16,941 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:02:16,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:02:26,927 INFO [long-pulling] client count 0 +2025-09-24 00:02:26,667 INFO [long-pulling] client count 0 -2025-09-23 00:02:26,941 INFO toNotifyTaskSize = 0 +2025-09-24 00:02:26,668 INFO toNotifyTaskSize = 0 -2025-09-23 00:02:26,942 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:02:26,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:02:26,942 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:02:26,668 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:02:36,928 INFO [long-pulling] client count 0 +2025-09-24 00:02:36,668 INFO [long-pulling] client count 0 -2025-09-23 00:02:36,943 INFO toNotifyTaskSize = 0 +2025-09-24 00:02:36,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:02:36,943 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:02:36,670 INFO toNotifyTaskSize = 0 -2025-09-23 00:02:36,943 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:02:36,670 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:02:46,928 INFO [long-pulling] client count 0 +2025-09-24 00:02:46,668 INFO [long-pulling] client count 0 -2025-09-23 00:02:46,944 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:02:46,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:02:46,944 INFO toNotifyTaskSize = 0 +2025-09-24 00:02:46,670 INFO toNotifyTaskSize = 0 -2025-09-23 00:02:46,945 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:02:46,670 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:02:56,930 INFO [long-pulling] client count 0 +2025-09-24 00:02:56,669 INFO [long-pulling] client count 0 -2025-09-23 00:02:56,945 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:02:56,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:02:56,945 INFO toNotifyTaskSize = 0 +2025-09-24 00:02:56,670 INFO toNotifyTaskSize = 0 -2025-09-23 00:02:56,945 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:02:56,670 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:03:06,931 INFO [long-pulling] client count 0 +2025-09-24 00:03:06,670 INFO [long-pulling] client count 0 -2025-09-23 00:03:06,946 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:03:06,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:03:06,946 INFO toNotifyTaskSize = 0 +2025-09-24 00:03:06,671 INFO toNotifyTaskSize = 0 -2025-09-23 00:03:06,946 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:03:06,671 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:03:16,931 INFO [long-pulling] client count 0 +2025-09-24 00:03:16,670 INFO [long-pulling] client count 0 -2025-09-23 00:03:16,946 INFO toNotifyTaskSize = 0 +2025-09-24 00:03:16,671 INFO toNotifyTaskSize = 0 -2025-09-23 00:03:16,946 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:03:16,671 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:03:16,947 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:03:16,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:03:26,932 INFO [long-pulling] client count 0 +2025-09-24 00:03:26,671 INFO [long-pulling] client count 0 -2025-09-23 00:03:26,947 INFO toNotifyTaskSize = 0 +2025-09-24 00:03:26,672 INFO toNotifyTaskSize = 0 -2025-09-23 00:03:26,947 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:03:26,672 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:03:26,947 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:03:26,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:03:36,933 INFO [long-pulling] client count 0 +2025-09-24 00:03:36,672 INFO [long-pulling] client count 0 -2025-09-23 00:03:36,948 INFO toNotifyTaskSize = 0 +2025-09-24 00:03:36,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:03:36,948 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:03:36,673 INFO toNotifyTaskSize = 0 -2025-09-23 00:03:36,948 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:03:36,673 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:03:46,934 INFO [long-pulling] client count 0 +2025-09-24 00:03:46,672 INFO [long-pulling] client count 0 -2025-09-23 00:03:46,948 INFO toNotifyTaskSize = 0 +2025-09-24 00:03:46,674 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:03:46,948 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:03:46,674 INFO toNotifyTaskSize = 0 -2025-09-23 00:03:46,948 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:03:46,675 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:03:56,935 INFO [long-pulling] client count 0 +2025-09-24 00:03:56,673 INFO [long-pulling] client count 0 -2025-09-23 00:03:56,948 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:03:56,676 INFO toNotifyTaskSize = 0 -2025-09-23 00:03:56,949 INFO toNotifyTaskSize = 0 +2025-09-24 00:03:56,676 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:03:56,949 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:03:56,676 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:04:06,936 INFO [long-pulling] client count 0 +2025-09-24 00:04:06,674 INFO [long-pulling] client count 0 -2025-09-23 00:04:06,950 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:04:06,676 INFO toNotifyTaskSize = 0 -2025-09-23 00:04:06,950 INFO toNotifyTaskSize = 0 +2025-09-24 00:04:06,676 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:04:06,950 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:04:06,676 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:04:16,936 INFO [long-pulling] client count 0 +2025-09-24 00:04:16,675 INFO [long-pulling] client count 0 -2025-09-23 00:04:16,950 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:04:16,676 INFO toNotifyTaskSize = 0 -2025-09-23 00:04:16,950 INFO toNotifyTaskSize = 0 +2025-09-24 00:04:16,677 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:04:16,950 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:04:16,677 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:04:26,939 INFO [long-pulling] client count 0 +2025-09-24 00:04:26,675 INFO [long-pulling] client count 0 -2025-09-23 00:04:26,951 INFO toNotifyTaskSize = 0 +2025-09-24 00:04:26,678 INFO toNotifyTaskSize = 0 -2025-09-23 00:04:26,951 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:04:26,678 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:04:26,951 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:04:26,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:04:36,940 INFO [long-pulling] client count 0 +2025-09-24 00:04:36,677 INFO [long-pulling] client count 0 -2025-09-23 00:04:36,951 INFO toNotifyTaskSize = 0 +2025-09-24 00:04:36,678 INFO toNotifyTaskSize = 0 -2025-09-23 00:04:36,951 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:04:36,678 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:04:36,951 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:04:36,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:04:46,941 INFO [long-pulling] client count 0 +2025-09-24 00:04:46,678 INFO toNotifyTaskSize = 0 -2025-09-23 00:04:46,952 INFO toNotifyTaskSize = 0 +2025-09-24 00:04:46,679 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:04:46,952 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:04:46,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:04:46,952 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:04:46,678 INFO [long-pulling] client count 0 -2025-09-23 00:04:56,942 INFO [long-pulling] client count 0 +2025-09-24 00:04:56,679 INFO [long-pulling] client count 0 -2025-09-23 00:04:56,953 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:04:56,679 INFO toNotifyTaskSize = 0 -2025-09-23 00:04:56,953 INFO toNotifyTaskSize = 0 +2025-09-24 00:04:56,679 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:04:56,953 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:04:56,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:05:06,943 INFO [long-pulling] client count 0 +2025-09-24 00:05:06,679 INFO [long-pulling] client count 0 -2025-09-23 00:05:06,953 INFO toNotifyTaskSize = 0 +2025-09-24 00:05:06,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:05:06,953 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:05:06,681 INFO toNotifyTaskSize = 0 -2025-09-23 00:05:06,953 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:05:06,681 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:05:16,944 INFO [long-pulling] client count 0 +2025-09-24 00:05:16,681 INFO [long-pulling] client count 0 -2025-09-23 00:05:16,954 INFO toNotifyTaskSize = 0 +2025-09-24 00:05:16,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:05:16,954 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:05:16,681 INFO toNotifyTaskSize = 0 -2025-09-23 00:05:16,954 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:05:16,682 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:05:26,946 INFO [long-pulling] client count 0 +2025-09-24 00:05:26,683 INFO [long-pulling] client count 0 -2025-09-23 00:05:26,955 INFO toNotifyTaskSize = 0 +2025-09-24 00:05:26,683 INFO toNotifyTaskSize = 0 -2025-09-23 00:05:26,955 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:05:26,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:05:26,955 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:05:26,683 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:05:36,947 INFO [long-pulling] client count 0 +2025-09-24 00:05:36,683 INFO [long-pulling] client count 0 -2025-09-23 00:05:36,955 INFO toNotifyTaskSize = 0 +2025-09-24 00:05:36,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:05:36,955 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:05:36,683 INFO toNotifyTaskSize = 0 -2025-09-23 00:05:36,955 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:05:36,683 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:05:46,949 INFO [long-pulling] client count 0 +2025-09-24 00:05:46,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:05:46,956 INFO toNotifyTaskSize = 0 +2025-09-24 00:05:46,684 INFO toNotifyTaskSize = 0 -2025-09-23 00:05:46,956 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:05:46,685 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:05:46,956 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:05:46,685 INFO [long-pulling] client count 0 -2025-09-23 00:05:56,950 INFO [long-pulling] client count 0 +2025-09-24 00:05:56,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:05:56,956 INFO toNotifyTaskSize = 0 +2025-09-24 00:05:56,685 INFO toNotifyTaskSize = 0 -2025-09-23 00:05:56,956 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:05:56,685 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:05:56,956 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:05:56,685 INFO [long-pulling] client count 0 -2025-09-23 00:06:06,951 INFO [long-pulling] client count 0 +2025-09-24 00:06:06,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:06:06,957 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:06:06,685 INFO [long-pulling] client count 0 -2025-09-23 00:06:06,957 INFO toNotifyTaskSize = 0 +2025-09-24 00:06:06,685 INFO toNotifyTaskSize = 0 -2025-09-23 00:06:06,957 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:06:06,686 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:06:16,952 INFO [long-pulling] client count 0 +2025-09-24 00:06:16,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:06:16,957 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:06:16,686 INFO [long-pulling] client count 0 -2025-09-23 00:06:16,957 INFO toNotifyTaskSize = 0 +2025-09-24 00:06:16,686 INFO toNotifyTaskSize = 0 -2025-09-23 00:06:16,958 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:06:16,686 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:06:26,953 INFO [long-pulling] client count 0 +2025-09-24 00:06:26,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:06:26,958 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:06:26,686 INFO [long-pulling] client count 0 -2025-09-23 00:06:26,958 INFO toNotifyTaskSize = 0 +2025-09-24 00:06:26,686 INFO toNotifyTaskSize = 0 -2025-09-23 00:06:26,958 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:06:26,687 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:06:36,954 INFO [long-pulling] client count 0 +2025-09-24 00:06:36,687 INFO [long-pulling] client count 0 -2025-09-23 00:06:36,958 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:06:36,687 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:06:36,958 INFO toNotifyTaskSize = 0 +2025-09-24 00:06:36,687 INFO toNotifyTaskSize = 0 -2025-09-23 00:06:36,959 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:06:36,688 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:06:46,955 INFO [long-pulling] client count 0 +2025-09-24 00:06:46,688 INFO [long-pulling] client count 0 -2025-09-23 00:06:46,959 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:06:46,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:06:46,959 INFO toNotifyTaskSize = 0 +2025-09-24 00:06:46,688 INFO toNotifyTaskSize = 0 -2025-09-23 00:06:46,960 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:06:46,688 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:06:56,956 INFO [long-pulling] client count 0 +2025-09-24 00:06:56,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:06:56,960 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:06:56,688 INFO [long-pulling] client count 0 -2025-09-23 00:06:56,960 INFO toNotifyTaskSize = 0 +2025-09-24 00:06:56,689 INFO toNotifyTaskSize = 0 -2025-09-23 00:06:56,960 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:06:56,689 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:07:06,957 INFO [long-pulling] client count 0 +2025-09-24 00:07:06,689 INFO [long-pulling] client count 0 -2025-09-23 00:07:06,961 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:07:06,689 INFO toNotifyTaskSize = 0 -2025-09-23 00:07:06,961 INFO toNotifyTaskSize = 0 +2025-09-24 00:07:06,689 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:07:06,976 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:07:06,689 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:07:16,976 INFO [long-pulling] client count 0 +2025-09-24 00:07:16,689 INFO [long-pulling] client count 0 -2025-09-23 00:07:16,976 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:07:16,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:07:16,997 INFO toNotifyTaskSize = 0 +2025-09-24 00:07:16,690 INFO toNotifyTaskSize = 0 -2025-09-23 00:07:16,997 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:07:16,690 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:07:26,977 INFO [long-pulling] client count 0 +2025-09-24 00:07:26,690 INFO [long-pulling] client count 0 -2025-09-23 00:07:26,977 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:07:26,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:07:26,998 INFO toNotifyTaskSize = 0 +2025-09-24 00:07:26,690 INFO toNotifyTaskSize = 0 -2025-09-23 00:07:26,998 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:07:26,691 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:07:36,978 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:07:36,691 INFO [long-pulling] client count 0 -2025-09-23 00:07:36,978 INFO [long-pulling] client count 0 +2025-09-24 00:07:36,691 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:07:36,999 INFO toNotifyTaskSize = 0 +2025-09-24 00:07:36,691 INFO toNotifyTaskSize = 0 -2025-09-23 00:07:36,999 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:07:36,691 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:07:46,979 INFO [long-pulling] client count 0 +2025-09-24 00:07:46,691 INFO [long-pulling] client count 0 -2025-09-23 00:07:46,979 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:07:46,691 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:07:47,000 INFO toNotifyTaskSize = 0 +2025-09-24 00:07:46,691 INFO toNotifyTaskSize = 0 -2025-09-23 00:07:47,000 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:07:46,692 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:07:56,980 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:07:56,692 INFO [long-pulling] client count 0 -2025-09-23 00:07:56,980 INFO [long-pulling] client count 0 +2025-09-24 00:07:56,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:07:57,001 INFO toNotifyTaskSize = 0 +2025-09-24 00:07:56,692 INFO toNotifyTaskSize = 0 -2025-09-23 00:07:57,001 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:07:56,693 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:08:06,982 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:08:06,693 INFO [long-pulling] client count 0 -2025-09-23 00:08:06,983 INFO [long-pulling] client count 0 +2025-09-24 00:08:06,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:08:07,001 INFO toNotifyTaskSize = 0 +2025-09-24 00:08:06,694 INFO toNotifyTaskSize = 0 -2025-09-23 00:08:07,001 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:08:06,694 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:08:16,983 INFO [long-pulling] client count 0 +2025-09-24 00:08:16,694 INFO [long-pulling] client count 0 -2025-09-23 00:08:16,983 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:08:16,694 INFO toNotifyTaskSize = 0 -2025-09-23 00:08:17,002 INFO toNotifyTaskSize = 0 +2025-09-24 00:08:16,694 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:08:17,002 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:08:16,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:08:26,984 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:08:26,694 INFO [long-pulling] client count 0 -2025-09-23 00:08:26,984 INFO [long-pulling] client count 0 +2025-09-24 00:08:26,695 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:08:27,004 INFO toNotifyTaskSize = 0 +2025-09-24 00:08:26,695 INFO toNotifyTaskSize = 0 -2025-09-23 00:08:27,004 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:08:26,695 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:08:36,986 INFO [long-pulling] client count 0 +2025-09-24 00:08:36,695 INFO [long-pulling] client count 0 -2025-09-23 00:08:36,986 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:08:36,696 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:08:37,004 INFO toNotifyTaskSize = 0 +2025-09-24 00:08:36,696 INFO toNotifyTaskSize = 0 -2025-09-23 00:08:37,004 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:08:36,696 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:08:46,988 INFO [long-pulling] client count 0 +2025-09-24 00:08:46,695 INFO [long-pulling] client count 0 -2025-09-23 00:08:46,988 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:08:46,696 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:08:47,004 INFO toNotifyTaskSize = 0 +2025-09-24 00:08:46,696 INFO toNotifyTaskSize = 0 -2025-09-23 00:08:47,005 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:08:46,697 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:08:56,989 INFO [long-pulling] client count 0 +2025-09-24 00:08:56,697 INFO [long-pulling] client count 0 -2025-09-23 00:08:56,989 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:08:56,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:08:57,006 INFO toNotifyTaskSize = 0 +2025-09-24 00:08:56,697 INFO toNotifyTaskSize = 0 -2025-09-23 00:08:57,006 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:08:56,697 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:09:06,990 INFO [long-pulling] client count 0 +2025-09-24 00:09:06,697 INFO [long-pulling] client count 0 -2025-09-23 00:09:06,990 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:09:06,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:09:07,007 INFO toNotifyTaskSize = 0 +2025-09-24 00:09:06,698 INFO toNotifyTaskSize = 0 -2025-09-23 00:09:07,007 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:09:06,698 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:09:16,991 INFO [long-pulling] client count 0 +2025-09-24 00:09:16,698 INFO [long-pulling] client count 0 -2025-09-23 00:09:16,991 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:09:16,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:09:17,009 INFO toNotifyTaskSize = 0 +2025-09-24 00:09:16,698 INFO toNotifyTaskSize = 0 -2025-09-23 00:09:17,009 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:09:16,699 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:09:26,991 INFO [long-pulling] client count 0 +2025-09-24 00:09:26,699 INFO [long-pulling] client count 0 -2025-09-23 00:09:26,991 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:09:26,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:09:27,009 INFO toNotifyTaskSize = 0 +2025-09-24 00:09:26,699 INFO toNotifyTaskSize = 0 -2025-09-23 00:09:27,009 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:09:26,700 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:09:36,992 INFO [long-pulling] client count 0 +2025-09-24 00:09:36,700 INFO [long-pulling] client count 0 -2025-09-23 00:09:36,992 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:09:36,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:09:37,010 INFO toNotifyTaskSize = 0 +2025-09-24 00:09:36,700 INFO toNotifyTaskSize = 0 -2025-09-23 00:09:37,010 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:09:36,700 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:09:46,992 INFO [long-pulling] client count 0 +2025-09-24 00:09:46,700 INFO [long-pulling] client count 0 -2025-09-23 00:09:46,992 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:09:46,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:09:47,011 INFO toNotifyTaskSize = 0 +2025-09-24 00:09:46,700 INFO toNotifyTaskSize = 0 -2025-09-23 00:09:47,011 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:09:46,701 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:09:56,993 INFO [long-pulling] client count 0 +2025-09-24 00:09:56,701 INFO [long-pulling] client count 0 -2025-09-23 00:09:56,993 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:09:56,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:09:57,012 INFO toNotifyTaskSize = 0 +2025-09-24 00:09:56,701 INFO toNotifyTaskSize = 0 -2025-09-23 00:09:57,013 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:09:56,701 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:10:06,994 INFO [long-pulling] client count 0 +2025-09-24 00:10:06,702 INFO [long-pulling] client count 0 -2025-09-23 00:10:06,994 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:10:06,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:10:07,014 INFO toNotifyTaskSize = 0 +2025-09-24 00:10:06,702 INFO toNotifyTaskSize = 0 -2025-09-23 00:10:07,014 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:10:06,702 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:10:16,995 INFO [long-pulling] client count 0 +2025-09-24 00:10:16,702 INFO [long-pulling] client count 0 -2025-09-23 00:10:16,995 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:10:16,702 INFO toNotifyTaskSize = 0 -2025-09-23 00:10:17,015 INFO toNotifyTaskSize = 0 +2025-09-24 00:10:16,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:10:17,015 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:10:16,703 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:10:26,996 INFO [long-pulling] client count 0 +2025-09-24 00:10:26,704 INFO [long-pulling] client count 0 -2025-09-23 00:10:26,996 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:10:26,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:10:27,015 INFO toNotifyTaskSize = 0 +2025-09-24 00:10:26,705 INFO toNotifyTaskSize = 0 -2025-09-23 00:10:27,016 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:10:26,705 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:10:36,997 INFO [long-pulling] client count 0 +2025-09-24 00:10:36,705 INFO [long-pulling] client count 0 -2025-09-23 00:10:36,997 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:10:36,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:10:37,017 INFO toNotifyTaskSize = 0 +2025-09-24 00:10:36,705 INFO toNotifyTaskSize = 0 -2025-09-23 00:10:37,018 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:10:36,705 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:10:46,998 INFO [long-pulling] client count 0 +2025-09-24 00:10:46,705 INFO [long-pulling] client count 0 -2025-09-23 00:10:46,998 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:10:46,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:10:47,019 INFO toNotifyTaskSize = 0 +2025-09-24 00:10:46,705 INFO toNotifyTaskSize = 0 -2025-09-23 00:10:47,019 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:10:46,705 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:10:56,999 INFO [long-pulling] client count 0 +2025-09-24 00:10:56,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:10:56,999 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:10:56,706 INFO toNotifyTaskSize = 0 -2025-09-23 00:10:57,020 INFO toNotifyTaskSize = 0 +2025-09-24 00:10:56,706 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:10:57,020 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:10:56,706 INFO [long-pulling] client count 0 -2025-09-23 00:11:06,999 INFO [long-pulling] client count 0 +2025-09-24 00:11:06,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:11:06,999 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:11:06,706 INFO [long-pulling] client count 0 -2025-09-23 00:11:07,021 INFO toNotifyTaskSize = 0 +2025-09-24 00:11:06,706 INFO toNotifyTaskSize = 0 -2025-09-23 00:11:07,021 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:11:06,707 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:11:17,001 INFO [long-pulling] client count 0 +2025-09-24 00:11:16,707 INFO [long-pulling] client count 0 -2025-09-23 00:11:17,001 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:11:16,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:11:17,021 INFO toNotifyTaskSize = 0 +2025-09-24 00:11:16,707 INFO toNotifyTaskSize = 0 -2025-09-23 00:11:17,021 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:11:16,707 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:11:27,002 INFO [long-pulling] client count 0 +2025-09-24 00:11:26,708 INFO [long-pulling] client count 0 -2025-09-23 00:11:27,002 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:11:26,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:11:27,022 INFO toNotifyTaskSize = 0 +2025-09-24 00:11:26,708 INFO toNotifyTaskSize = 0 -2025-09-23 00:11:27,022 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:11:26,708 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:11:37,002 INFO [long-pulling] client count 0 +2025-09-24 00:11:36,708 INFO [long-pulling] client count 0 -2025-09-23 00:11:37,002 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:11:36,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:11:37,023 INFO toNotifyTaskSize = 0 +2025-09-24 00:11:36,708 INFO toNotifyTaskSize = 0 -2025-09-23 00:11:37,023 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:11:36,709 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:11:47,006 INFO [long-pulling] client count 0 +2025-09-24 00:11:46,710 INFO [long-pulling] client count 0 -2025-09-23 00:11:47,007 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:11:46,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:11:47,023 INFO toNotifyTaskSize = 0 +2025-09-24 00:11:46,710 INFO toNotifyTaskSize = 0 -2025-09-23 00:11:47,023 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:11:46,710 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:11:57,007 INFO [long-pulling] client count 0 +2025-09-24 00:11:56,710 INFO [long-pulling] client count 0 -2025-09-23 00:11:57,007 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:11:56,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:11:57,023 INFO toNotifyTaskSize = 0 +2025-09-24 00:11:56,711 INFO toNotifyTaskSize = 0 -2025-09-23 00:11:57,023 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:11:56,711 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:12:07,008 INFO [long-pulling] client count 0 +2025-09-24 00:12:06,711 INFO [long-pulling] client count 0 -2025-09-23 00:12:07,008 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:12:06,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:12:07,024 INFO toNotifyTaskSize = 0 +2025-09-24 00:12:06,712 INFO toNotifyTaskSize = 0 -2025-09-23 00:12:07,024 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:12:06,712 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:12:17,009 INFO [long-pulling] client count 0 +2025-09-24 00:12:16,712 INFO [long-pulling] client count 0 -2025-09-23 00:12:17,009 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:12:16,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:12:17,024 INFO toNotifyTaskSize = 0 +2025-09-24 00:12:16,712 INFO toNotifyTaskSize = 0 -2025-09-23 00:12:17,024 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:12:16,713 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:12:27,010 INFO [long-pulling] client count 0 +2025-09-24 00:12:26,713 INFO [long-pulling] client count 0 -2025-09-23 00:12:27,010 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:12:26,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:12:27,025 INFO toNotifyTaskSize = 0 +2025-09-24 00:12:26,713 INFO toNotifyTaskSize = 0 -2025-09-23 00:12:27,025 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:12:26,713 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:12:37,011 INFO [long-pulling] client count 0 +2025-09-24 00:12:36,713 INFO [long-pulling] client count 0 -2025-09-23 00:12:37,011 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:12:36,714 INFO toNotifyTaskSize = 0 -2025-09-23 00:12:37,025 INFO toNotifyTaskSize = 0 +2025-09-24 00:12:36,714 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:12:37,025 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:12:36,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:12:47,011 INFO [long-pulling] client count 0 +2025-09-24 00:12:46,714 INFO [long-pulling] client count 0 -2025-09-23 00:12:47,011 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:12:46,714 INFO toNotifyTaskSize = 0 -2025-09-23 00:12:47,026 INFO toNotifyTaskSize = 0 +2025-09-24 00:12:46,714 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:12:47,026 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:12:46,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:12:57,012 INFO [long-pulling] client count 0 +2025-09-24 00:12:56,714 INFO [long-pulling] client count 0 -2025-09-23 00:12:57,012 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:12:56,715 INFO toNotifyTaskSize = 0 -2025-09-23 00:12:57,027 INFO toNotifyTaskSize = 0 +2025-09-24 00:12:56,715 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:12:57,027 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:12:56,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:13:07,012 INFO [long-pulling] client count 0 +2025-09-24 00:13:06,715 INFO [long-pulling] client count 0 -2025-09-23 00:13:07,012 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:13:06,715 INFO toNotifyTaskSize = 0 -2025-09-23 00:13:07,028 INFO toNotifyTaskSize = 0 +2025-09-24 00:13:06,715 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:13:07,028 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:13:06,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:13:17,013 INFO [long-pulling] client count 0 +2025-09-24 00:13:16,715 INFO [long-pulling] client count 0 -2025-09-23 00:13:17,013 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:13:16,715 INFO toNotifyTaskSize = 0 -2025-09-23 00:13:17,029 INFO toNotifyTaskSize = 0 +2025-09-24 00:13:16,715 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:13:17,029 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:13:16,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:13:27,013 INFO [long-pulling] client count 0 +2025-09-24 00:13:26,716 INFO [long-pulling] client count 0 -2025-09-23 00:13:27,013 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:13:26,716 INFO toNotifyTaskSize = 0 -2025-09-23 00:13:27,031 INFO toNotifyTaskSize = 0 +2025-09-24 00:13:26,716 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:13:27,031 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:13:26,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:13:37,015 INFO [long-pulling] client count 0 +2025-09-24 00:13:36,716 INFO [long-pulling] client count 0 -2025-09-23 00:13:37,015 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:13:36,716 INFO toNotifyTaskSize = 0 -2025-09-23 00:13:37,032 INFO toNotifyTaskSize = 0 +2025-09-24 00:13:36,716 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:13:37,032 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:13:36,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:13:47,015 INFO [long-pulling] client count 0 +2025-09-24 00:13:46,716 INFO [long-pulling] client count 0 -2025-09-23 00:13:47,015 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:13:46,716 INFO toNotifyTaskSize = 0 -2025-09-23 00:13:47,032 INFO toNotifyTaskSize = 0 +2025-09-24 00:13:46,716 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:13:47,032 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:13:46,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:13:57,015 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:13:56,717 INFO [long-pulling] client count 0 -2025-09-23 00:13:57,015 INFO [long-pulling] client count 0 +2025-09-24 00:13:56,717 INFO toNotifyTaskSize = 0 -2025-09-23 00:13:57,033 INFO toNotifyTaskSize = 0 +2025-09-24 00:13:56,717 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:13:57,033 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:13:56,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:14:07,020 INFO [long-pulling] client count 0 +2025-09-24 00:14:06,718 INFO toNotifyTaskSize = 0 -2025-09-23 00:14:07,020 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:14:06,718 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:14:07,035 INFO toNotifyTaskSize = 0 +2025-09-24 00:14:06,718 INFO [long-pulling] client count 0 -2025-09-23 00:14:07,035 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:14:06,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:14:17,020 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:14:16,718 INFO toNotifyTaskSize = 0 -2025-09-23 00:14:17,020 INFO [long-pulling] client count 0 +2025-09-24 00:14:16,719 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:14:17,036 INFO toNotifyTaskSize = 0 +2025-09-24 00:14:16,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:14:17,036 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:14:16,719 INFO [long-pulling] client count 0 -2025-09-23 00:14:27,021 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:14:26,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:14:27,021 INFO [long-pulling] client count 0 +2025-09-24 00:14:26,719 INFO toNotifyTaskSize = 0 -2025-09-23 00:14:27,037 INFO toNotifyTaskSize = 0 +2025-09-24 00:14:26,719 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:14:27,037 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:14:26,719 INFO [long-pulling] client count 0 -2025-09-23 00:14:37,021 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:14:36,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:14:37,022 INFO [long-pulling] client count 0 +2025-09-24 00:14:36,720 INFO [long-pulling] client count 0 -2025-09-23 00:14:37,038 INFO toNotifyTaskSize = 0 +2025-09-24 00:14:36,720 INFO toNotifyTaskSize = 0 -2025-09-23 00:14:37,038 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:14:36,720 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:14:47,022 INFO [long-pulling] client count 0 +2025-09-24 00:14:46,721 INFO [long-pulling] client count 0 -2025-09-23 00:14:47,022 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:14:46,721 INFO toNotifyTaskSize = 0 -2025-09-23 00:14:47,039 INFO toNotifyTaskSize = 0 +2025-09-24 00:14:46,721 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:14:47,039 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:14:46,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:14:57,023 INFO [long-pulling] client count 0 +2025-09-24 00:14:56,721 INFO [long-pulling] client count 0 -2025-09-23 00:14:57,023 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:14:56,721 INFO toNotifyTaskSize = 0 -2025-09-23 00:14:57,039 INFO toNotifyTaskSize = 0 +2025-09-24 00:14:56,722 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:14:57,039 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:14:56,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:15:07,023 INFO [long-pulling] client count 0 +2025-09-24 00:15:06,722 INFO [long-pulling] client count 0 -2025-09-23 00:15:07,024 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:15:06,722 INFO toNotifyTaskSize = 0 -2025-09-23 00:15:07,040 INFO toNotifyTaskSize = 0 +2025-09-24 00:15:06,722 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:15:07,040 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:15:06,722 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:15:17,024 INFO [long-pulling] client count 0 +2025-09-24 00:15:16,722 INFO [long-pulling] client count 0 -2025-09-23 00:15:17,024 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:15:16,723 INFO toNotifyTaskSize = 0 -2025-09-23 00:15:17,040 INFO toNotifyTaskSize = 0 +2025-09-24 00:15:16,723 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:15:17,040 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:15:16,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:15:27,024 INFO [long-pulling] client count 0 +2025-09-24 00:15:26,723 INFO [long-pulling] client count 0 -2025-09-23 00:15:27,025 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:15:26,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:15:27,041 INFO toNotifyTaskSize = 0 +2025-09-24 00:15:26,723 INFO toNotifyTaskSize = 0 -2025-09-23 00:15:27,041 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:15:26,724 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:15:37,025 INFO [long-pulling] client count 0 +2025-09-24 00:15:36,725 INFO [long-pulling] client count 0 -2025-09-23 00:15:37,025 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:15:36,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:15:37,041 INFO toNotifyTaskSize = 0 +2025-09-24 00:15:36,725 INFO toNotifyTaskSize = 0 -2025-09-23 00:15:37,041 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:15:36,725 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:15:47,026 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:15:46,725 INFO [long-pulling] client count 0 -2025-09-23 00:15:47,026 INFO [long-pulling] client count 0 +2025-09-24 00:15:46,725 INFO toNotifyTaskSize = 0 -2025-09-23 00:15:47,042 INFO toNotifyTaskSize = 0 +2025-09-24 00:15:46,725 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:15:47,042 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:15:46,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:15:57,026 INFO [long-pulling] client count 0 +2025-09-24 00:15:56,725 INFO [long-pulling] client count 0 -2025-09-23 00:15:57,026 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:15:56,725 INFO toNotifyTaskSize = 0 -2025-09-23 00:15:57,042 INFO toNotifyTaskSize = 0 +2025-09-24 00:15:56,725 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:15:57,043 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:15:56,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:16:07,026 INFO [long-pulling] client count 0 +2025-09-24 00:16:06,726 INFO [long-pulling] client count 0 -2025-09-23 00:16:07,027 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:16:06,726 INFO toNotifyTaskSize = 0 -2025-09-23 00:16:07,044 INFO toNotifyTaskSize = 0 +2025-09-24 00:16:06,726 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:16:07,044 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:16:06,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:16:17,027 INFO [long-pulling] client count 0 +2025-09-24 00:16:16,726 INFO [long-pulling] client count 0 -2025-09-23 00:16:17,027 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:16:16,726 INFO toNotifyTaskSize = 0 -2025-09-23 00:16:17,045 INFO toNotifyTaskSize = 0 +2025-09-24 00:16:16,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:16:17,045 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:16:16,727 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:16:27,027 INFO [long-pulling] client count 0 +2025-09-24 00:16:26,727 INFO [long-pulling] client count 0 -2025-09-23 00:16:27,027 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:16:26,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:16:27,046 INFO toNotifyTaskSize = 0 +2025-09-24 00:16:26,727 INFO toNotifyTaskSize = 0 -2025-09-23 00:16:27,046 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:16:26,727 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:16:37,028 INFO [long-pulling] client count 0 +2025-09-24 00:16:36,728 INFO [long-pulling] client count 0 -2025-09-23 00:16:37,028 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:16:36,728 INFO toNotifyTaskSize = 0 -2025-09-23 00:16:37,046 INFO toNotifyTaskSize = 0 +2025-09-24 00:16:36,729 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:16:37,046 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:16:36,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:16:47,028 INFO [long-pulling] client count 0 +2025-09-24 00:16:46,729 INFO [long-pulling] client count 0 -2025-09-23 00:16:47,028 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:16:46,729 INFO toNotifyTaskSize = 0 -2025-09-23 00:16:47,047 INFO toNotifyTaskSize = 0 +2025-09-24 00:16:46,730 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:16:47,047 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:16:46,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:16:57,029 INFO [long-pulling] client count 0 +2025-09-24 00:16:56,730 INFO [long-pulling] client count 0 -2025-09-23 00:16:57,029 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:16:56,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:16:57,047 INFO toNotifyTaskSize = 0 +2025-09-24 00:16:56,730 INFO toNotifyTaskSize = 0 -2025-09-23 00:16:57,047 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:16:56,730 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:17:07,029 INFO [long-pulling] client count 0 +2025-09-24 00:17:06,730 INFO [long-pulling] client count 0 -2025-09-23 00:17:07,030 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:17:06,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:17:07,049 INFO toNotifyTaskSize = 0 +2025-09-24 00:17:06,730 INFO toNotifyTaskSize = 0 -2025-09-23 00:17:07,049 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:17:06,732 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:17:17,030 INFO [long-pulling] client count 0 +2025-09-24 00:17:16,732 INFO [long-pulling] client count 0 -2025-09-23 00:17:17,030 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:17:16,732 INFO toNotifyTaskSize = 0 -2025-09-23 00:17:17,050 INFO toNotifyTaskSize = 0 +2025-09-24 00:17:16,733 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:17:17,050 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:17:16,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:17:27,030 INFO [long-pulling] client count 0 +2025-09-24 00:17:26,733 INFO [long-pulling] client count 0 -2025-09-23 00:17:27,030 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:17:26,734 INFO toNotifyTaskSize = 0 -2025-09-23 00:17:27,051 INFO toNotifyTaskSize = 0 +2025-09-24 00:17:26,734 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:17:27,051 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:17:26,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:17:37,031 INFO [long-pulling] client count 0 +2025-09-24 00:17:36,734 INFO [long-pulling] client count 0 -2025-09-23 00:17:37,032 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:17:36,734 INFO toNotifyTaskSize = 0 -2025-09-23 00:17:37,052 INFO toNotifyTaskSize = 0 +2025-09-24 00:17:36,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:17:37,052 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:17:36,734 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:17:47,032 INFO [long-pulling] client count 0 +2025-09-24 00:17:46,734 INFO [long-pulling] client count 0 -2025-09-23 00:17:47,033 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:17:46,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:17:47,053 INFO toNotifyTaskSize = 0 +2025-09-24 00:17:46,734 INFO toNotifyTaskSize = 0 -2025-09-23 00:17:47,053 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:17:46,735 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:17:57,032 INFO [long-pulling] client count 0 +2025-09-24 00:17:56,735 INFO [long-pulling] client count 0 -2025-09-23 00:17:57,033 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:17:56,735 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:17:57,054 INFO toNotifyTaskSize = 0 +2025-09-24 00:17:56,736 INFO toNotifyTaskSize = 0 -2025-09-23 00:17:57,055 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:17:56,736 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:18:07,034 INFO [long-pulling] client count 0 +2025-09-24 00:18:06,737 INFO [long-pulling] client count 0 -2025-09-23 00:18:07,034 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:18:06,737 INFO toNotifyTaskSize = 0 -2025-09-23 00:18:07,055 INFO toNotifyTaskSize = 0 +2025-09-24 00:18:06,739 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:18:07,055 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:18:06,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:18:17,034 INFO [long-pulling] client count 0 +2025-09-24 00:18:16,739 INFO [long-pulling] client count 0 -2025-09-23 00:18:17,035 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:18:16,739 INFO toNotifyTaskSize = 0 -2025-09-23 00:18:17,056 INFO toNotifyTaskSize = 0 +2025-09-24 00:18:16,740 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:18:17,056 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:18:16,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:18:27,035 INFO [long-pulling] client count 0 +2025-09-24 00:18:26,741 INFO [long-pulling] client count 0 -2025-09-23 00:18:27,035 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:18:26,741 INFO toNotifyTaskSize = 0 -2025-09-23 00:18:27,056 INFO toNotifyTaskSize = 0 +2025-09-24 00:18:26,742 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:18:27,056 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:18:26,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:18:37,035 INFO [long-pulling] client count 0 +2025-09-24 00:18:36,742 INFO [long-pulling] client count 0 -2025-09-23 00:18:37,036 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:18:36,742 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:18:37,057 INFO toNotifyTaskSize = 0 +2025-09-24 00:18:36,743 INFO toNotifyTaskSize = 0 -2025-09-23 00:18:37,057 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:18:36,743 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:18:47,036 INFO [long-pulling] client count 0 +2025-09-24 00:18:46,744 INFO [long-pulling] client count 0 -2025-09-23 00:18:47,036 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:18:46,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:18:47,058 INFO toNotifyTaskSize = 0 +2025-09-24 00:18:46,744 INFO toNotifyTaskSize = 0 -2025-09-23 00:18:47,058 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:18:46,744 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:18:57,037 INFO [long-pulling] client count 0 +2025-09-24 00:18:56,744 INFO [long-pulling] client count 0 -2025-09-23 00:18:57,037 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:18:56,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:18:57,059 INFO toNotifyTaskSize = 0 +2025-09-24 00:18:56,745 INFO toNotifyTaskSize = 0 -2025-09-23 00:18:57,060 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:18:56,745 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:19:07,039 INFO [long-pulling] client count 0 +2025-09-24 00:19:06,745 INFO [long-pulling] client count 0 -2025-09-23 00:19:07,039 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:19:06,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:19:07,061 INFO toNotifyTaskSize = 0 +2025-09-24 00:19:06,746 INFO toNotifyTaskSize = 0 -2025-09-23 00:19:07,061 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:19:06,746 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:19:17,040 INFO [long-pulling] client count 0 +2025-09-24 00:19:16,746 INFO [long-pulling] client count 0 -2025-09-23 00:19:17,040 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:19:16,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:19:17,061 INFO toNotifyTaskSize = 0 +2025-09-24 00:19:16,746 INFO toNotifyTaskSize = 0 -2025-09-23 00:19:17,061 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:19:16,747 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:19:27,041 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:19:26,748 INFO [long-pulling] client count 0 -2025-09-23 00:19:27,041 INFO [long-pulling] client count 0 +2025-09-24 00:19:26,748 INFO toNotifyTaskSize = 0 -2025-09-23 00:19:27,062 INFO toNotifyTaskSize = 0 +2025-09-24 00:19:26,749 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:19:27,062 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:19:26,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:19:37,041 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:19:36,749 INFO [long-pulling] client count 0 -2025-09-23 00:19:37,041 INFO [long-pulling] client count 0 +2025-09-24 00:19:36,751 INFO toNotifyTaskSize = 0 -2025-09-23 00:19:37,063 INFO toNotifyTaskSize = 0 +2025-09-24 00:19:36,751 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:19:37,063 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:19:36,751 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:19:47,041 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:19:46,749 INFO [long-pulling] client count 0 -2025-09-23 00:19:47,041 INFO [long-pulling] client count 0 +2025-09-24 00:19:46,752 INFO toNotifyTaskSize = 0 -2025-09-23 00:19:47,064 INFO toNotifyTaskSize = 0 +2025-09-24 00:19:46,752 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:19:47,064 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:19:46,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:19:57,042 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:19:56,750 INFO [long-pulling] client count 0 -2025-09-23 00:19:57,042 INFO [long-pulling] client count 0 +2025-09-24 00:19:56,753 INFO toNotifyTaskSize = 0 -2025-09-23 00:19:57,064 INFO toNotifyTaskSize = 0 +2025-09-24 00:19:56,753 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:19:57,064 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:19:56,753 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:20:07,042 INFO [long-pulling] client count 0 +2025-09-24 00:20:06,750 INFO [long-pulling] client count 0 -2025-09-23 00:20:07,042 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:20:06,754 INFO toNotifyTaskSize = 0 -2025-09-23 00:20:07,065 INFO toNotifyTaskSize = 0 +2025-09-24 00:20:06,766 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:20:07,065 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:20:06,754 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:20:17,044 INFO [long-pulling] client count 0 +2025-09-24 00:20:16,766 INFO [long-pulling] client count 0 -2025-09-23 00:20:17,044 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:20:16,766 INFO toNotifyTaskSize = 0 -2025-09-23 00:20:17,065 INFO toNotifyTaskSize = 0 +2025-09-24 00:20:16,767 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:20:17,065 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:20:16,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:20:27,045 INFO [long-pulling] client count 0 +2025-09-24 00:20:26,767 INFO [long-pulling] client count 0 -2025-09-23 00:20:27,045 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:20:26,767 INFO toNotifyTaskSize = 0 -2025-09-23 00:20:27,066 INFO toNotifyTaskSize = 0 +2025-09-24 00:20:26,767 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:20:27,066 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:20:26,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:20:37,046 INFO [long-pulling] client count 0 +2025-09-24 00:20:36,767 INFO [long-pulling] client count 0 -2025-09-23 00:20:37,046 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:20:36,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:20:37,067 INFO toNotifyTaskSize = 0 +2025-09-24 00:20:36,767 INFO toNotifyTaskSize = 0 -2025-09-23 00:20:37,067 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:20:36,768 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:20:47,047 INFO [long-pulling] client count 0 +2025-09-24 00:20:46,768 INFO [long-pulling] client count 0 -2025-09-23 00:20:47,047 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:20:46,768 INFO toNotifyTaskSize = 0 -2025-09-23 00:20:47,068 INFO toNotifyTaskSize = 0 +2025-09-24 00:20:46,768 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:20:47,068 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:20:46,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:20:57,048 INFO [long-pulling] client count 0 +2025-09-24 00:20:56,769 INFO [long-pulling] client count 0 -2025-09-23 00:20:57,048 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:20:56,769 INFO toNotifyTaskSize = 0 -2025-09-23 00:20:57,069 INFO toNotifyTaskSize = 0 +2025-09-24 00:20:56,770 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:20:57,069 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:20:56,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:21:07,048 INFO [long-pulling] client count 0 +2025-09-24 00:21:06,771 INFO [long-pulling] client count 0 -2025-09-23 00:21:07,048 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:21:06,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:21:07,069 INFO toNotifyTaskSize = 0 +2025-09-24 00:21:06,771 INFO toNotifyTaskSize = 0 -2025-09-23 00:21:07,069 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:21:06,772 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:21:17,049 INFO [long-pulling] client count 0 +2025-09-24 00:21:16,772 INFO [long-pulling] client count 0 -2025-09-23 00:21:17,049 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:21:16,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:21:17,070 INFO toNotifyTaskSize = 0 +2025-09-24 00:21:16,772 INFO toNotifyTaskSize = 0 -2025-09-23 00:21:17,070 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:21:16,773 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:21:27,051 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:21:26,774 INFO [long-pulling] client count 0 -2025-09-23 00:21:27,051 INFO [long-pulling] client count 0 +2025-09-24 00:21:26,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:21:27,071 INFO toNotifyTaskSize = 0 +2025-09-24 00:21:26,774 INFO toNotifyTaskSize = 0 -2025-09-23 00:21:27,071 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:21:26,774 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:21:37,051 INFO [long-pulling] client count 0 +2025-09-24 00:21:36,775 INFO [long-pulling] client count 0 -2025-09-23 00:21:37,051 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:21:36,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:21:37,072 INFO toNotifyTaskSize = 0 +2025-09-24 00:21:36,775 INFO toNotifyTaskSize = 0 -2025-09-23 00:21:37,072 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:21:36,776 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:21:47,052 INFO [long-pulling] client count 0 +2025-09-24 00:21:46,776 INFO [long-pulling] client count 0 -2025-09-23 00:21:47,052 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:21:46,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:21:47,072 INFO toNotifyTaskSize = 0 +2025-09-24 00:21:46,776 INFO toNotifyTaskSize = 0 -2025-09-23 00:21:47,073 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:21:46,777 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:21:57,052 INFO [long-pulling] client count 0 +2025-09-24 00:21:56,778 INFO [long-pulling] client count 0 -2025-09-23 00:21:57,052 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:21:56,778 INFO toNotifyTaskSize = 0 -2025-09-23 00:21:57,074 INFO toNotifyTaskSize = 0 +2025-09-24 00:21:56,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:21:57,074 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:21:56,778 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:22:07,053 INFO [long-pulling] client count 0 +2025-09-24 00:22:06,778 INFO [long-pulling] client count 0 -2025-09-23 00:22:07,053 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:22:06,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:22:07,075 INFO toNotifyTaskSize = 0 +2025-09-24 00:22:06,778 INFO toNotifyTaskSize = 0 -2025-09-23 00:22:07,075 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:22:06,779 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:22:17,054 INFO [long-pulling] client count 0 +2025-09-24 00:22:16,779 INFO [long-pulling] client count 0 -2025-09-23 00:22:17,054 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:22:16,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:22:17,075 INFO toNotifyTaskSize = 0 +2025-09-24 00:22:16,779 INFO toNotifyTaskSize = 0 -2025-09-23 00:22:17,076 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:22:16,780 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:22:27,055 INFO [long-pulling] client count 0 +2025-09-24 00:22:26,780 INFO [long-pulling] client count 0 -2025-09-23 00:22:27,055 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:22:26,780 INFO toNotifyTaskSize = 0 -2025-09-23 00:22:27,076 INFO toNotifyTaskSize = 0 +2025-09-24 00:22:26,780 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:22:27,076 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:22:26,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:22:37,056 INFO [long-pulling] client count 0 +2025-09-24 00:22:36,781 INFO [long-pulling] client count 0 -2025-09-23 00:22:37,056 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:22:36,781 INFO toNotifyTaskSize = 0 -2025-09-23 00:22:37,077 INFO toNotifyTaskSize = 0 +2025-09-24 00:22:36,781 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:22:37,077 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:22:36,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:22:47,056 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:22:46,782 INFO [long-pulling] client count 0 -2025-09-23 00:22:47,056 INFO [long-pulling] client count 0 +2025-09-24 00:22:46,782 INFO toNotifyTaskSize = 0 -2025-09-23 00:22:47,078 INFO toNotifyTaskSize = 0 +2025-09-24 00:22:46,783 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:22:47,078 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:22:46,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:22:57,057 INFO [long-pulling] client count 0 +2025-09-24 00:22:56,783 INFO [long-pulling] client count 0 -2025-09-23 00:22:57,057 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:22:56,783 INFO toNotifyTaskSize = 0 -2025-09-23 00:22:57,079 INFO toNotifyTaskSize = 0 +2025-09-24 00:22:56,783 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:22:57,079 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:22:56,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:23:07,057 INFO [long-pulling] client count 0 +2025-09-24 00:23:06,784 INFO [long-pulling] client count 0 -2025-09-23 00:23:07,057 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:23:06,784 INFO toNotifyTaskSize = 0 -2025-09-23 00:23:07,080 INFO toNotifyTaskSize = 0 +2025-09-24 00:23:06,784 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:23:07,080 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:23:06,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:23:17,059 INFO [long-pulling] client count 0 +2025-09-24 00:23:16,785 INFO [long-pulling] client count 0 -2025-09-23 00:23:17,061 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:23:16,785 INFO toNotifyTaskSize = 0 -2025-09-23 00:23:17,080 INFO toNotifyTaskSize = 0 +2025-09-24 00:23:16,785 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:23:17,080 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:23:16,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:23:27,062 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:23:26,786 INFO [long-pulling] client count 0 -2025-09-23 00:23:27,062 INFO [long-pulling] client count 0 +2025-09-24 00:23:26,786 INFO toNotifyTaskSize = 0 -2025-09-23 00:23:27,081 INFO toNotifyTaskSize = 0 +2025-09-24 00:23:26,786 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:23:27,081 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:23:26,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:23:37,063 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:23:36,787 INFO [long-pulling] client count 0 -2025-09-23 00:23:37,063 INFO [long-pulling] client count 0 +2025-09-24 00:23:36,787 INFO toNotifyTaskSize = 0 -2025-09-23 00:23:37,082 INFO toNotifyTaskSize = 0 +2025-09-24 00:23:36,787 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:23:37,083 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:23:36,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:23:47,064 INFO [long-pulling] client count 0 +2025-09-24 00:23:46,788 INFO [long-pulling] client count 0 -2025-09-23 00:23:47,064 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:23:46,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:23:47,084 INFO toNotifyTaskSize = 0 +2025-09-24 00:23:46,788 INFO toNotifyTaskSize = 0 -2025-09-23 00:23:47,084 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:23:46,788 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:23:57,064 INFO [long-pulling] client count 0 +2025-09-24 00:23:56,789 INFO [long-pulling] client count 0 -2025-09-23 00:23:57,065 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:23:56,789 INFO toNotifyTaskSize = 0 -2025-09-23 00:23:57,085 INFO toNotifyTaskSize = 0 +2025-09-24 00:23:56,790 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:23:57,085 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:23:56,789 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:24:07,065 INFO [long-pulling] client count 0 +2025-09-24 00:24:06,791 INFO toNotifyTaskSize = 0 -2025-09-23 00:24:07,066 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:24:06,792 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:24:07,086 INFO toNotifyTaskSize = 0 +2025-09-24 00:24:06,791 INFO [long-pulling] client count 0 -2025-09-23 00:24:07,086 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:24:06,791 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:24:17,066 INFO [long-pulling] client count 0 +2025-09-24 00:24:16,793 INFO [long-pulling] client count 0 -2025-09-23 00:24:17,066 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:24:16,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:24:17,087 INFO toNotifyTaskSize = 0 +2025-09-24 00:24:16,793 INFO toNotifyTaskSize = 0 -2025-09-23 00:24:17,087 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:24:16,793 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:24:27,066 INFO [long-pulling] client count 0 +2025-09-24 00:24:26,794 INFO [long-pulling] client count 0 -2025-09-23 00:24:27,067 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:24:26,794 INFO toNotifyTaskSize = 0 -2025-09-23 00:24:27,087 INFO toNotifyTaskSize = 0 +2025-09-24 00:24:26,796 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:24:27,087 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:24:26,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:24:37,067 INFO [long-pulling] client count 0 +2025-09-24 00:24:36,797 INFO [long-pulling] client count 0 -2025-09-23 00:24:37,067 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:24:36,797 INFO toNotifyTaskSize = 0 -2025-09-23 00:24:37,088 INFO toNotifyTaskSize = 0 +2025-09-24 00:24:36,798 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:24:37,088 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:24:36,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:24:47,067 INFO [long-pulling] client count 0 +2025-09-24 00:24:46,799 INFO [long-pulling] client count 0 -2025-09-23 00:24:47,068 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:24:46,799 INFO toNotifyTaskSize = 0 -2025-09-23 00:24:47,088 INFO toNotifyTaskSize = 0 +2025-09-24 00:24:46,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:24:47,088 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:24:46,799 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:24:57,069 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:24:56,799 INFO [long-pulling] client count 0 -2025-09-23 00:24:57,069 INFO [long-pulling] client count 0 +2025-09-24 00:24:56,800 INFO toNotifyTaskSize = 0 -2025-09-23 00:24:57,089 INFO toNotifyTaskSize = 0 +2025-09-24 00:24:56,800 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:24:57,089 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:24:56,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:25:07,070 INFO [long-pulling] client count 0 +2025-09-24 00:25:06,800 INFO [long-pulling] client count 0 -2025-09-23 00:25:07,070 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:25:06,801 INFO toNotifyTaskSize = 0 -2025-09-23 00:25:07,090 INFO toNotifyTaskSize = 0 +2025-09-24 00:25:06,801 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:25:07,090 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:25:06,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:25:17,070 INFO [long-pulling] client count 0 +2025-09-24 00:25:16,800 INFO [long-pulling] client count 0 -2025-09-23 00:25:17,071 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:25:16,801 INFO toNotifyTaskSize = 0 -2025-09-23 00:25:17,092 INFO toNotifyTaskSize = 0 +2025-09-24 00:25:16,802 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:25:17,092 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:25:16,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:25:27,071 INFO [long-pulling] client count 0 +2025-09-24 00:25:26,801 INFO [long-pulling] client count 0 -2025-09-23 00:25:27,071 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:25:26,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:25:27,092 INFO toNotifyTaskSize = 0 +2025-09-24 00:25:26,802 INFO toNotifyTaskSize = 0 -2025-09-23 00:25:27,092 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:25:26,802 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:25:37,072 INFO [long-pulling] client count 0 +2025-09-24 00:25:36,802 INFO [long-pulling] client count 0 -2025-09-23 00:25:37,072 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:25:36,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:25:37,093 INFO toNotifyTaskSize = 0 +2025-09-24 00:25:36,803 INFO toNotifyTaskSize = 0 -2025-09-23 00:25:37,093 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:25:36,803 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:25:47,072 INFO [long-pulling] client count 0 +2025-09-24 00:25:46,803 INFO [long-pulling] client count 0 -2025-09-23 00:25:47,072 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:25:46,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:25:47,093 INFO toNotifyTaskSize = 0 +2025-09-24 00:25:46,803 INFO toNotifyTaskSize = 0 -2025-09-23 00:25:47,093 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:25:46,803 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:25:57,073 INFO [long-pulling] client count 0 +2025-09-24 00:25:56,803 INFO [long-pulling] client count 0 -2025-09-23 00:25:57,073 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:25:56,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:25:57,095 INFO toNotifyTaskSize = 0 +2025-09-24 00:25:56,804 INFO toNotifyTaskSize = 0 -2025-09-23 00:25:57,095 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:25:56,805 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:26:07,074 INFO [long-pulling] client count 0 +2025-09-24 00:26:06,805 INFO [long-pulling] client count 0 -2025-09-23 00:26:07,074 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:26:06,805 INFO toNotifyTaskSize = 0 -2025-09-23 00:26:07,096 INFO toNotifyTaskSize = 0 +2025-09-24 00:26:06,805 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:26:07,096 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:26:06,805 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:26:17,075 INFO [long-pulling] client count 0 +2025-09-24 00:26:16,806 INFO [long-pulling] client count 0 -2025-09-23 00:26:17,075 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:26:16,806 INFO toNotifyTaskSize = 0 -2025-09-23 00:26:17,097 INFO toNotifyTaskSize = 0 +2025-09-24 00:26:16,806 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:26:17,098 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:26:16,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:26:27,076 INFO [long-pulling] client count 0 +2025-09-24 00:26:26,807 INFO [long-pulling] client count 0 -2025-09-23 00:26:27,076 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:26:26,807 INFO toNotifyTaskSize = 0 -2025-09-23 00:26:27,099 INFO toNotifyTaskSize = 0 +2025-09-24 00:26:26,807 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:26:27,099 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:26:26,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:26:37,077 INFO [long-pulling] client count 0 +2025-09-24 00:26:36,807 INFO [long-pulling] client count 0 -2025-09-23 00:26:37,077 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:26:36,808 INFO toNotifyTaskSize = 0 -2025-09-23 00:26:37,100 INFO toNotifyTaskSize = 0 +2025-09-24 00:26:36,808 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:26:37,100 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:26:36,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:26:47,077 INFO [long-pulling] client count 0 +2025-09-24 00:26:46,808 INFO [long-pulling] client count 0 -2025-09-23 00:26:47,078 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:26:46,808 INFO toNotifyTaskSize = 0 -2025-09-23 00:26:47,101 INFO toNotifyTaskSize = 0 +2025-09-24 00:26:46,808 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:26:47,101 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:26:46,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:26:57,078 INFO [long-pulling] client count 0 +2025-09-24 00:26:56,808 INFO [long-pulling] client count 0 -2025-09-23 00:26:57,078 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:26:56,809 INFO toNotifyTaskSize = 0 -2025-09-23 00:26:57,102 INFO toNotifyTaskSize = 0 +2025-09-24 00:26:56,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:26:57,103 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:26:56,809 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:27:07,078 INFO [long-pulling] client count 0 +2025-09-24 00:27:06,810 INFO [long-pulling] client count 0 -2025-09-23 00:27:07,078 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:27:06,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:27:07,103 INFO toNotifyTaskSize = 0 +2025-09-24 00:27:06,810 INFO toNotifyTaskSize = 0 -2025-09-23 00:27:07,103 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:27:06,811 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:27:17,079 INFO [long-pulling] client count 0 +2025-09-24 00:27:16,811 INFO [long-pulling] client count 0 -2025-09-23 00:27:17,080 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:27:16,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:27:17,105 INFO toNotifyTaskSize = 0 +2025-09-24 00:27:16,812 INFO toNotifyTaskSize = 0 -2025-09-23 00:27:17,105 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:27:16,812 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:27:27,081 INFO [long-pulling] client count 0 +2025-09-24 00:27:26,812 INFO [long-pulling] client count 0 -2025-09-23 00:27:27,081 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:27:26,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:27:27,106 INFO toNotifyTaskSize = 0 +2025-09-24 00:27:26,812 INFO toNotifyTaskSize = 0 -2025-09-23 00:27:27,106 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:27:26,813 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:27:37,082 INFO [long-pulling] client count 0 +2025-09-24 00:27:36,813 INFO [long-pulling] client count 0 -2025-09-23 00:27:37,082 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:27:36,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:27:37,106 INFO toNotifyTaskSize = 0 +2025-09-24 00:27:36,813 INFO toNotifyTaskSize = 0 -2025-09-23 00:27:37,107 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:27:36,813 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:27:47,083 INFO [long-pulling] client count 0 +2025-09-24 00:27:46,814 INFO [long-pulling] client count 0 -2025-09-23 00:27:47,083 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:27:46,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:27:47,108 INFO toNotifyTaskSize = 0 +2025-09-24 00:27:46,814 INFO toNotifyTaskSize = 0 -2025-09-23 00:27:47,108 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:27:46,814 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:27:57,084 INFO [long-pulling] client count 0 +2025-09-24 00:27:56,815 INFO [long-pulling] client count 0 -2025-09-23 00:27:57,084 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:27:56,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:27:57,109 INFO toNotifyTaskSize = 0 +2025-09-24 00:27:56,815 INFO toNotifyTaskSize = 0 -2025-09-23 00:27:57,109 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:27:56,815 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:28:07,085 INFO [long-pulling] client count 0 +2025-09-24 00:28:06,815 INFO [long-pulling] client count 0 -2025-09-23 00:28:07,085 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:28:06,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:28:07,109 INFO toNotifyTaskSize = 0 +2025-09-24 00:28:06,816 INFO toNotifyTaskSize = 0 -2025-09-23 00:28:07,109 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:28:06,816 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:28:17,086 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:28:16,815 INFO [long-pulling] client count 0 -2025-09-23 00:28:17,086 INFO [long-pulling] client count 0 +2025-09-24 00:28:16,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:28:17,110 INFO toNotifyTaskSize = 0 +2025-09-24 00:28:16,817 INFO toNotifyTaskSize = 0 -2025-09-23 00:28:17,110 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:28:16,817 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:28:27,088 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:28:26,817 INFO [long-pulling] client count 0 -2025-09-23 00:28:27,088 INFO [long-pulling] client count 0 +2025-09-24 00:28:26,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:28:27,110 INFO toNotifyTaskSize = 0 +2025-09-24 00:28:26,818 INFO toNotifyTaskSize = 0 -2025-09-23 00:28:27,120 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:28:26,818 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:28:37,089 INFO [long-pulling] client count 0 +2025-09-24 00:28:36,817 INFO [long-pulling] client count 0 -2025-09-23 00:28:37,089 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:28:36,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:28:37,121 INFO toNotifyTaskSize = 0 +2025-09-24 00:28:36,818 INFO toNotifyTaskSize = 0 -2025-09-23 00:28:37,121 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:28:36,818 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:28:47,090 INFO [long-pulling] client count 0 +2025-09-24 00:28:46,818 INFO [long-pulling] client count 0 -2025-09-23 00:28:47,090 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:28:46,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:28:47,123 INFO toNotifyTaskSize = 0 +2025-09-24 00:28:46,819 INFO toNotifyTaskSize = 0 -2025-09-23 00:28:47,123 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:28:46,819 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:28:57,091 INFO [long-pulling] client count 0 +2025-09-24 00:28:56,819 INFO [long-pulling] client count 0 -2025-09-23 00:28:57,091 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:28:56,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:28:57,124 INFO toNotifyTaskSize = 0 +2025-09-24 00:28:56,820 INFO toNotifyTaskSize = 0 -2025-09-23 00:28:57,124 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:28:56,820 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:29:07,091 INFO [long-pulling] client count 0 +2025-09-24 00:29:06,820 INFO [long-pulling] client count 0 -2025-09-23 00:29:07,091 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:29:06,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:29:07,125 INFO toNotifyTaskSize = 0 +2025-09-24 00:29:06,820 INFO toNotifyTaskSize = 0 -2025-09-23 00:29:07,125 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:29:06,820 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:29:17,092 INFO [long-pulling] client count 0 +2025-09-24 00:29:16,820 INFO [long-pulling] client count 0 -2025-09-23 00:29:17,092 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:29:16,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:29:17,126 INFO toNotifyTaskSize = 0 +2025-09-24 00:29:16,820 INFO toNotifyTaskSize = 0 -2025-09-23 00:29:17,126 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:29:16,821 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:29:27,093 INFO [long-pulling] client count 0 +2025-09-24 00:29:26,821 INFO [long-pulling] client count 0 -2025-09-23 00:29:27,093 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:29:26,821 INFO toNotifyTaskSize = 0 -2025-09-23 00:29:27,127 INFO toNotifyTaskSize = 0 +2025-09-24 00:29:26,822 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:29:27,128 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:29:26,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:29:37,094 INFO [long-pulling] client count 0 +2025-09-24 00:29:36,822 INFO [long-pulling] client count 0 -2025-09-23 00:29:37,094 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:29:36,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:29:37,128 INFO toNotifyTaskSize = 0 +2025-09-24 00:29:36,822 INFO toNotifyTaskSize = 0 -2025-09-23 00:29:37,128 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:29:36,822 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:29:47,103 INFO [long-pulling] client count 0 +2025-09-24 00:29:46,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:29:47,103 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:29:46,823 INFO [long-pulling] client count 0 -2025-09-23 00:29:47,129 INFO toNotifyTaskSize = 0 +2025-09-24 00:29:46,823 INFO toNotifyTaskSize = 0 -2025-09-23 00:29:47,129 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:29:46,824 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:29:57,104 INFO [long-pulling] client count 0 +2025-09-24 00:29:56,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:29:57,104 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:29:56,825 INFO toNotifyTaskSize = 0 -2025-09-23 00:29:57,130 INFO toNotifyTaskSize = 0 +2025-09-24 00:29:56,825 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:29:57,130 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:29:56,825 INFO [long-pulling] client count 0 -2025-09-23 00:30:07,105 INFO [long-pulling] client count 0 +2025-09-24 00:30:06,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:30:07,105 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:30:06,825 INFO toNotifyTaskSize = 0 -2025-09-23 00:30:07,130 INFO toNotifyTaskSize = 0 +2025-09-24 00:30:06,826 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:30:07,130 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:30:06,825 INFO [long-pulling] client count 0 -2025-09-23 00:30:17,105 INFO [long-pulling] client count 0 +2025-09-24 00:30:16,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:30:17,105 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:30:16,826 INFO toNotifyTaskSize = 0 -2025-09-23 00:30:17,131 INFO toNotifyTaskSize = 0 +2025-09-24 00:30:16,827 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:30:17,132 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:30:16,826 INFO [long-pulling] client count 0 -2025-09-23 00:30:27,106 INFO [long-pulling] client count 0 +2025-09-24 00:30:26,827 INFO [long-pulling] client count 0 -2025-09-23 00:30:27,106 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:30:26,827 INFO toNotifyTaskSize = 0 -2025-09-23 00:30:27,132 INFO toNotifyTaskSize = 0 +2025-09-24 00:30:26,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:30:27,132 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:30:26,829 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:30:37,106 INFO [long-pulling] client count 0 +2025-09-24 00:30:36,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:30:37,106 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:30:36,829 INFO [long-pulling] client count 0 -2025-09-23 00:30:37,132 INFO toNotifyTaskSize = 0 +2025-09-24 00:30:36,829 INFO toNotifyTaskSize = 0 -2025-09-23 00:30:37,132 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:30:36,830 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:30:47,108 INFO [long-pulling] client count 0 +2025-09-24 00:30:46,830 INFO [long-pulling] client count 0 -2025-09-23 00:30:47,108 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:30:46,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:30:47,133 INFO toNotifyTaskSize = 0 +2025-09-24 00:30:46,830 INFO toNotifyTaskSize = 0 -2025-09-23 00:30:47,133 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:30:46,830 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:30:57,108 INFO [long-pulling] client count 0 +2025-09-24 00:30:56,830 INFO [long-pulling] client count 0 -2025-09-23 00:30:57,108 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:30:56,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:30:57,135 INFO toNotifyTaskSize = 0 +2025-09-24 00:30:56,831 INFO toNotifyTaskSize = 0 -2025-09-23 00:30:57,135 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:30:56,832 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:31:07,109 INFO [long-pulling] client count 0 +2025-09-24 00:31:06,832 INFO [long-pulling] client count 0 -2025-09-23 00:31:07,109 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:31:06,833 INFO toNotifyTaskSize = 0 -2025-09-23 00:31:07,135 INFO toNotifyTaskSize = 0 +2025-09-24 00:31:06,833 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:31:07,135 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:31:06,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:31:17,110 INFO [long-pulling] client count 0 +2025-09-24 00:31:16,832 INFO [long-pulling] client count 0 -2025-09-23 00:31:17,110 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:31:16,834 INFO toNotifyTaskSize = 0 -2025-09-23 00:31:17,136 INFO toNotifyTaskSize = 0 +2025-09-24 00:31:16,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:31:17,136 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:31:16,834 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:31:27,110 INFO [long-pulling] client count 0 +2025-09-24 00:31:26,833 INFO [long-pulling] client count 0 -2025-09-23 00:31:27,111 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:31:26,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:31:27,137 INFO toNotifyTaskSize = 0 +2025-09-24 00:31:26,834 INFO toNotifyTaskSize = 0 -2025-09-23 00:31:27,137 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:31:26,834 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:31:37,112 INFO [long-pulling] client count 0 +2025-09-24 00:31:36,834 INFO [long-pulling] client count 0 -2025-09-23 00:31:37,112 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:31:36,834 INFO toNotifyTaskSize = 0 -2025-09-23 00:31:37,138 INFO toNotifyTaskSize = 0 +2025-09-24 00:31:36,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:31:37,138 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:31:36,837 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:31:47,112 INFO [long-pulling] client count 0 +2025-09-24 00:31:46,837 INFO [long-pulling] client count 0 -2025-09-23 00:31:47,112 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:31:46,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:31:47,139 INFO toNotifyTaskSize = 0 +2025-09-24 00:31:46,837 INFO toNotifyTaskSize = 0 -2025-09-23 00:31:47,139 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:31:46,837 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:31:57,113 INFO [long-pulling] client count 0 +2025-09-24 00:31:56,837 INFO [long-pulling] client count 0 -2025-09-23 00:31:57,114 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:31:56,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:31:57,140 INFO toNotifyTaskSize = 0 +2025-09-24 00:31:56,837 INFO toNotifyTaskSize = 0 -2025-09-23 00:31:57,140 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:31:56,839 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:32:07,114 INFO [long-pulling] client count 0 +2025-09-24 00:32:06,839 INFO [long-pulling] client count 0 -2025-09-23 00:32:07,114 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:32:06,839 INFO toNotifyTaskSize = 0 -2025-09-23 00:32:07,141 INFO toNotifyTaskSize = 0 +2025-09-24 00:32:06,839 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:32:07,141 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:32:06,839 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:32:17,115 INFO [long-pulling] client count 0 +2025-09-24 00:32:16,840 INFO [long-pulling] client count 0 -2025-09-23 00:32:17,115 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:32:16,840 INFO toNotifyTaskSize = 0 -2025-09-23 00:32:17,142 INFO toNotifyTaskSize = 0 +2025-09-24 00:32:16,840 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:32:17,142 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:32:16,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:32:27,115 INFO [long-pulling] client count 0 +2025-09-24 00:32:26,840 INFO [long-pulling] client count 0 -2025-09-23 00:32:27,115 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:32:26,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:32:27,142 INFO toNotifyTaskSize = 0 +2025-09-24 00:32:26,841 INFO toNotifyTaskSize = 0 -2025-09-23 00:32:27,143 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:32:26,841 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:32:37,117 INFO [long-pulling] client count 0 +2025-09-24 00:32:36,840 INFO [long-pulling] client count 0 -2025-09-23 00:32:37,117 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:32:36,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:32:37,144 INFO toNotifyTaskSize = 0 +2025-09-24 00:32:36,842 INFO toNotifyTaskSize = 0 -2025-09-23 00:32:37,144 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:32:36,842 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:32:47,117 INFO [long-pulling] client count 0 +2025-09-24 00:32:46,841 INFO [long-pulling] client count 0 -2025-09-23 00:32:47,117 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:32:46,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:32:47,145 INFO toNotifyTaskSize = 0 +2025-09-24 00:32:46,842 INFO toNotifyTaskSize = 0 -2025-09-23 00:32:47,145 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:32:46,842 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:32:57,118 INFO [long-pulling] client count 0 +2025-09-24 00:32:56,842 INFO [long-pulling] client count 0 -2025-09-23 00:32:57,118 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:32:56,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:32:57,146 INFO toNotifyTaskSize = 0 +2025-09-24 00:32:56,842 INFO toNotifyTaskSize = 0 -2025-09-23 00:32:57,146 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:32:56,843 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:33:07,119 INFO [long-pulling] client count 0 +2025-09-24 00:33:06,842 INFO [long-pulling] client count 0 -2025-09-23 00:33:07,119 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:33:06,843 INFO toNotifyTaskSize = 0 -2025-09-23 00:33:07,148 INFO toNotifyTaskSize = 0 +2025-09-24 00:33:06,843 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:33:07,148 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:33:06,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:33:17,119 INFO [long-pulling] client count 0 +2025-09-24 00:33:16,843 INFO [long-pulling] client count 0 -2025-09-23 00:33:17,119 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:33:16,843 INFO toNotifyTaskSize = 0 -2025-09-23 00:33:17,148 INFO toNotifyTaskSize = 0 +2025-09-24 00:33:16,844 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:33:17,148 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:33:16,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:33:27,120 INFO [long-pulling] client count 0 +2025-09-24 00:33:26,844 INFO toNotifyTaskSize = 0 -2025-09-23 00:33:27,120 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:33:26,845 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:33:27,149 INFO toNotifyTaskSize = 0 +2025-09-24 00:33:26,844 INFO [long-pulling] client count 0 -2025-09-23 00:33:27,149 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:33:26,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:33:37,121 INFO [long-pulling] client count 0 +2025-09-24 00:33:36,856 INFO toNotifyTaskSize = 0 -2025-09-23 00:33:37,121 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:33:36,857 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:33:37,150 INFO toNotifyTaskSize = 0 +2025-09-24 00:33:36,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:33:37,150 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:33:36,859 INFO [long-pulling] client count 0 -2025-09-23 00:33:47,121 INFO [long-pulling] client count 0 +2025-09-24 00:33:46,858 INFO toNotifyTaskSize = 0 -2025-09-23 00:33:47,121 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:33:46,858 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:33:47,150 INFO toNotifyTaskSize = 0 +2025-09-24 00:33:46,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:33:47,150 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:33:46,859 INFO [long-pulling] client count 0 -2025-09-23 00:33:57,122 INFO [long-pulling] client count 0 +2025-09-24 00:33:56,859 INFO toNotifyTaskSize = 0 -2025-09-23 00:33:57,122 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:33:56,860 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:33:57,152 INFO toNotifyTaskSize = 0 +2025-09-24 00:33:56,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:33:57,152 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:33:56,860 INFO [long-pulling] client count 0 -2025-09-23 00:34:07,122 INFO [long-pulling] client count 0 +2025-09-24 00:34:06,861 INFO toNotifyTaskSize = 0 -2025-09-23 00:34:07,122 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:34:06,861 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:34:07,153 INFO toNotifyTaskSize = 0 +2025-09-24 00:34:06,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:34:07,153 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:34:06,861 INFO [long-pulling] client count 0 -2025-09-23 00:34:17,123 INFO [long-pulling] client count 0 +2025-09-24 00:34:16,863 INFO toNotifyTaskSize = 0 -2025-09-23 00:34:17,123 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:34:16,863 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:34:17,154 INFO toNotifyTaskSize = 0 +2025-09-24 00:34:16,863 INFO [long-pulling] client count 0 -2025-09-23 00:34:17,154 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:34:16,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:34:27,124 INFO [long-pulling] client count 0 +2025-09-24 00:34:26,863 INFO toNotifyTaskSize = 0 -2025-09-23 00:34:27,124 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:34:26,865 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:34:27,154 INFO toNotifyTaskSize = 0 +2025-09-24 00:34:26,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:34:27,154 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:34:26,864 INFO [long-pulling] client count 0 -2025-09-23 00:34:37,125 INFO [long-pulling] client count 0 +2025-09-24 00:34:36,865 INFO toNotifyTaskSize = 0 -2025-09-23 00:34:37,125 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:34:36,866 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:34:37,154 INFO toNotifyTaskSize = 0 +2025-09-24 00:34:36,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:34:37,155 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:34:36,866 INFO [long-pulling] client count 0 -2025-09-23 00:34:47,125 INFO [long-pulling] client count 0 +2025-09-24 00:34:46,866 INFO toNotifyTaskSize = 0 -2025-09-23 00:34:47,125 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:34:46,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:34:47,156 INFO toNotifyTaskSize = 0 +2025-09-24 00:34:46,866 INFO [long-pulling] client count 0 -2025-09-23 00:34:47,156 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:34:46,866 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:34:57,126 INFO [long-pulling] client count 0 +2025-09-24 00:34:56,867 INFO [long-pulling] client count 0 -2025-09-23 00:34:57,126 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:34:56,867 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:34:57,157 INFO toNotifyTaskSize = 0 +2025-09-24 00:34:56,867 INFO toNotifyTaskSize = 0 -2025-09-23 00:34:57,157 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:34:56,868 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:35:07,127 INFO [long-pulling] client count 0 +2025-09-24 00:35:06,868 INFO [long-pulling] client count 0 -2025-09-23 00:35:07,127 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:35:06,869 INFO toNotifyTaskSize = 0 -2025-09-23 00:35:07,158 INFO toNotifyTaskSize = 0 +2025-09-24 00:35:06,869 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:35:07,158 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:35:06,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:35:17,128 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:35:16,869 INFO [long-pulling] client count 0 -2025-09-23 00:35:17,128 INFO [long-pulling] client count 0 +2025-09-24 00:35:16,869 INFO toNotifyTaskSize = 0 -2025-09-23 00:35:17,159 INFO toNotifyTaskSize = 0 +2025-09-24 00:35:16,869 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:35:17,159 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:35:16,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:35:27,129 INFO [long-pulling] client count 0 +2025-09-24 00:35:26,870 INFO [long-pulling] client count 0 -2025-09-23 00:35:27,129 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:35:26,870 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:35:27,160 INFO toNotifyTaskSize = 0 +2025-09-24 00:35:26,870 INFO toNotifyTaskSize = 0 -2025-09-23 00:35:27,160 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:35:26,870 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:35:37,130 INFO [long-pulling] client count 0 +2025-09-24 00:35:36,871 INFO [long-pulling] client count 0 -2025-09-23 00:35:37,132 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:35:36,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:35:37,161 INFO toNotifyTaskSize = 0 +2025-09-24 00:35:36,871 INFO toNotifyTaskSize = 0 -2025-09-23 00:35:37,161 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:35:36,871 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:35:47,133 INFO [long-pulling] client count 0 +2025-09-24 00:35:46,872 INFO [long-pulling] client count 0 -2025-09-23 00:35:47,133 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:35:46,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:35:47,162 INFO toNotifyTaskSize = 0 +2025-09-24 00:35:46,872 INFO toNotifyTaskSize = 0 -2025-09-23 00:35:47,162 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:35:46,872 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:35:57,133 INFO [long-pulling] client count 0 +2025-09-24 00:35:56,873 INFO [long-pulling] client count 0 -2025-09-23 00:35:57,134 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:35:56,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:35:57,165 INFO toNotifyTaskSize = 0 +2025-09-24 00:35:56,873 INFO toNotifyTaskSize = 0 -2025-09-23 00:35:57,165 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:35:56,874 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:36:07,134 INFO [long-pulling] client count 0 +2025-09-24 00:36:06,874 INFO [long-pulling] client count 0 -2025-09-23 00:36:07,135 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:36:06,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:36:07,166 INFO toNotifyTaskSize = 0 +2025-09-24 00:36:06,874 INFO toNotifyTaskSize = 0 -2025-09-23 00:36:07,166 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:36:06,874 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:36:17,135 INFO [long-pulling] client count 0 +2025-09-24 00:36:16,875 INFO [long-pulling] client count 0 -2025-09-23 00:36:17,136 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:36:16,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:36:17,167 INFO toNotifyTaskSize = 0 +2025-09-24 00:36:16,875 INFO toNotifyTaskSize = 0 -2025-09-23 00:36:17,167 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:36:16,876 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:36:27,136 INFO [long-pulling] client count 0 +2025-09-24 00:36:26,876 INFO [long-pulling] client count 0 -2025-09-23 00:36:27,136 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:36:26,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:36:27,167 INFO toNotifyTaskSize = 0 +2025-09-24 00:36:26,876 INFO toNotifyTaskSize = 0 -2025-09-23 00:36:27,167 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:36:26,877 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:36:37,137 INFO [long-pulling] client count 0 +2025-09-24 00:36:36,877 INFO [long-pulling] client count 0 -2025-09-23 00:36:37,137 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:36:36,877 INFO toNotifyTaskSize = 0 -2025-09-23 00:36:37,167 INFO toNotifyTaskSize = 0 +2025-09-24 00:36:36,877 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:36:37,167 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:36:36,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:36:47,138 INFO [long-pulling] client count 0 +2025-09-24 00:36:46,878 INFO toNotifyTaskSize = 0 -2025-09-23 00:36:47,138 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:36:46,878 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:36:47,168 INFO toNotifyTaskSize = 0 +2025-09-24 00:36:46,878 INFO [long-pulling] client count 0 -2025-09-23 00:36:47,168 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:36:46,878 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:36:57,139 INFO [long-pulling] client count 0 +2025-09-24 00:36:56,878 INFO [long-pulling] client count 0 -2025-09-23 00:36:57,139 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:36:56,879 INFO toNotifyTaskSize = 0 -2025-09-23 00:36:57,168 INFO toNotifyTaskSize = 0 +2025-09-24 00:36:56,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:36:57,168 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:36:56,879 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:37:07,139 INFO [long-pulling] client count 0 +2025-09-24 00:37:06,879 INFO [long-pulling] client count 0 -2025-09-23 00:37:07,139 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:37:06,880 INFO toNotifyTaskSize = 0 -2025-09-23 00:37:07,169 INFO toNotifyTaskSize = 0 +2025-09-24 00:37:06,880 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:37:07,169 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:37:06,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:37:17,140 INFO [long-pulling] client count 0 +2025-09-24 00:37:16,880 INFO [long-pulling] client count 0 -2025-09-23 00:37:17,140 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:37:16,880 INFO toNotifyTaskSize = 0 -2025-09-23 00:37:17,170 INFO toNotifyTaskSize = 0 +2025-09-24 00:37:16,880 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:37:17,170 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:37:16,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:37:27,141 INFO [long-pulling] client count 0 +2025-09-24 00:37:26,881 INFO toNotifyTaskSize = 0 -2025-09-23 00:37:27,141 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:37:26,881 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:37:27,170 INFO toNotifyTaskSize = 0 +2025-09-24 00:37:26,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:37:27,170 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:37:26,881 INFO [long-pulling] client count 0 -2025-09-23 00:37:37,142 INFO [long-pulling] client count 0 +2025-09-24 00:37:36,882 INFO [long-pulling] client count 0 -2025-09-23 00:37:37,142 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:37:36,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:37:37,171 INFO toNotifyTaskSize = 0 +2025-09-24 00:37:36,882 INFO toNotifyTaskSize = 0 -2025-09-23 00:37:37,171 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:37:36,883 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:37:47,143 INFO [long-pulling] client count 0 +2025-09-24 00:37:46,884 INFO [long-pulling] client count 0 -2025-09-23 00:37:47,143 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:37:46,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:37:47,172 INFO toNotifyTaskSize = 0 +2025-09-24 00:37:46,884 INFO toNotifyTaskSize = 0 -2025-09-23 00:37:47,173 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:37:46,884 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:37:57,144 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:37:56,884 INFO [long-pulling] client count 0 -2025-09-23 00:37:57,144 INFO [long-pulling] client count 0 +2025-09-24 00:37:56,885 INFO toNotifyTaskSize = 0 -2025-09-23 00:37:57,174 INFO toNotifyTaskSize = 0 +2025-09-24 00:37:56,885 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:37:57,174 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:37:56,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:38:07,145 INFO [long-pulling] client count 0 +2025-09-24 00:38:06,886 INFO [long-pulling] client count 0 -2025-09-23 00:38:07,146 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:38:06,886 INFO toNotifyTaskSize = 0 -2025-09-23 00:38:07,175 INFO toNotifyTaskSize = 0 +2025-09-24 00:38:06,886 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:38:07,175 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:38:06,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:38:17,147 INFO [long-pulling] client count 0 +2025-09-24 00:38:16,886 INFO [long-pulling] client count 0 -2025-09-23 00:38:17,147 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:38:16,886 INFO toNotifyTaskSize = 0 -2025-09-23 00:38:17,176 INFO toNotifyTaskSize = 0 +2025-09-24 00:38:16,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:38:17,176 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:38:16,887 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:38:27,148 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:38:26,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:38:27,148 INFO [long-pulling] client count 0 +2025-09-24 00:38:26,888 INFO [long-pulling] client count 0 -2025-09-23 00:38:27,177 INFO toNotifyTaskSize = 0 +2025-09-24 00:38:26,888 INFO toNotifyTaskSize = 0 -2025-09-23 00:38:27,177 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:38:26,889 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:38:37,149 INFO [long-pulling] client count 0 +2025-09-24 00:38:36,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:38:37,149 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:38:36,889 INFO toNotifyTaskSize = 0 -2025-09-23 00:38:37,178 INFO toNotifyTaskSize = 0 +2025-09-24 00:38:36,889 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:38:37,178 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:38:36,889 INFO [long-pulling] client count 0 -2025-09-23 00:38:47,150 INFO [long-pulling] client count 0 +2025-09-24 00:38:46,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:38:47,150 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:38:46,902 INFO [long-pulling] client count 0 -2025-09-23 00:38:47,178 INFO toNotifyTaskSize = 0 +2025-09-24 00:38:46,902 INFO toNotifyTaskSize = 0 -2025-09-23 00:38:47,178 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:38:46,902 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:38:57,151 INFO [long-pulling] client count 0 +2025-09-24 00:38:56,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:38:57,151 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:38:56,902 INFO [long-pulling] client count 0 -2025-09-23 00:38:57,179 INFO toNotifyTaskSize = 0 +2025-09-24 00:38:56,903 INFO toNotifyTaskSize = 0 -2025-09-23 00:38:57,179 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:38:56,903 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:39:07,153 INFO [long-pulling] client count 0 +2025-09-24 00:39:06,902 INFO [long-pulling] client count 0 -2025-09-23 00:39:07,153 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:39:06,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:39:07,180 INFO toNotifyTaskSize = 0 +2025-09-24 00:39:06,903 INFO toNotifyTaskSize = 0 -2025-09-23 00:39:07,180 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:39:06,903 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:39:17,156 INFO [long-pulling] client count 0 +2025-09-24 00:39:16,903 INFO [long-pulling] client count 0 -2025-09-23 00:39:17,156 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:39:16,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:39:17,182 INFO toNotifyTaskSize = 0 +2025-09-24 00:39:16,903 INFO toNotifyTaskSize = 0 -2025-09-23 00:39:17,183 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:39:16,904 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:39:27,157 INFO [long-pulling] client count 0 +2025-09-24 00:39:26,903 INFO [long-pulling] client count 0 -2025-09-23 00:39:27,157 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:39:26,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:39:27,183 INFO toNotifyTaskSize = 0 +2025-09-24 00:39:26,904 INFO toNotifyTaskSize = 0 -2025-09-23 00:39:27,184 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:39:26,904 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:39:37,158 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:39:36,904 INFO [long-pulling] client count 0 -2025-09-23 00:39:37,158 INFO [long-pulling] client count 0 +2025-09-24 00:39:36,905 INFO toNotifyTaskSize = 0 -2025-09-23 00:39:37,184 INFO toNotifyTaskSize = 0 +2025-09-24 00:39:36,905 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:39:37,184 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:39:36,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:39:47,159 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:39:46,905 INFO [long-pulling] client count 0 -2025-09-23 00:39:47,159 INFO [long-pulling] client count 0 +2025-09-24 00:39:46,905 INFO toNotifyTaskSize = 0 -2025-09-23 00:39:47,185 INFO toNotifyTaskSize = 0 +2025-09-24 00:39:46,906 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:39:47,186 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:39:46,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:39:57,160 INFO [long-pulling] client count 0 +2025-09-24 00:39:56,906 INFO [long-pulling] client count 0 -2025-09-23 00:39:57,160 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:39:56,906 INFO toNotifyTaskSize = 0 -2025-09-23 00:39:57,186 INFO toNotifyTaskSize = 0 +2025-09-24 00:39:56,907 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:39:57,186 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:39:56,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:40:07,161 INFO [long-pulling] client count 0 +2025-09-24 00:40:06,907 INFO [long-pulling] client count 0 -2025-09-23 00:40:07,161 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:40:06,908 INFO toNotifyTaskSize = 0 -2025-09-23 00:40:07,187 INFO toNotifyTaskSize = 0 +2025-09-24 00:40:06,908 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:40:07,187 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:40:06,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:40:17,162 INFO [long-pulling] client count 0 +2025-09-24 00:40:16,908 INFO [long-pulling] client count 0 -2025-09-23 00:40:17,162 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:40:16,908 INFO toNotifyTaskSize = 0 -2025-09-23 00:40:17,188 INFO toNotifyTaskSize = 0 +2025-09-24 00:40:16,909 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:40:17,188 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:40:16,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:40:27,163 INFO [long-pulling] client count 0 +2025-09-24 00:40:26,910 INFO [long-pulling] client count 0 -2025-09-23 00:40:27,163 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:40:26,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:40:27,189 INFO toNotifyTaskSize = 0 +2025-09-24 00:40:26,910 INFO toNotifyTaskSize = 0 -2025-09-23 00:40:27,189 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:40:26,910 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:40:37,164 INFO [long-pulling] client count 0 +2025-09-24 00:40:36,911 INFO [long-pulling] client count 0 -2025-09-23 00:40:37,164 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:40:36,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:40:37,189 INFO toNotifyTaskSize = 0 +2025-09-24 00:40:36,911 INFO toNotifyTaskSize = 0 -2025-09-23 00:40:37,189 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:40:36,911 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:40:47,166 INFO [long-pulling] client count 0 +2025-09-24 00:40:46,912 INFO [long-pulling] client count 0 -2025-09-23 00:40:47,166 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:40:46,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:40:47,189 INFO toNotifyTaskSize = 0 +2025-09-24 00:40:46,912 INFO toNotifyTaskSize = 0 -2025-09-23 00:40:47,190 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:40:46,913 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:40:57,167 INFO [long-pulling] client count 0 +2025-09-24 00:40:56,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:40:57,167 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:40:56,913 INFO [long-pulling] client count 0 -2025-09-23 00:40:57,191 INFO toNotifyTaskSize = 0 +2025-09-24 00:40:56,913 INFO toNotifyTaskSize = 0 -2025-09-23 00:40:57,191 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:40:56,914 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:41:07,168 INFO [long-pulling] client count 0 +2025-09-24 00:41:06,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:41:07,168 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:41:06,915 INFO toNotifyTaskSize = 0 -2025-09-23 00:41:07,192 INFO toNotifyTaskSize = 0 +2025-09-24 00:41:06,915 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:41:07,192 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:41:06,915 INFO [long-pulling] client count 0 -2025-09-23 00:41:17,170 INFO [long-pulling] client count 0 +2025-09-24 00:41:16,916 INFO [long-pulling] client count 0 -2025-09-23 00:41:17,170 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:41:16,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:41:17,193 INFO toNotifyTaskSize = 0 +2025-09-24 00:41:16,916 INFO toNotifyTaskSize = 0 -2025-09-23 00:41:17,194 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:41:16,916 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:41:27,171 INFO [long-pulling] client count 0 +2025-09-24 00:41:26,916 INFO [long-pulling] client count 0 -2025-09-23 00:41:27,171 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:41:26,916 INFO toNotifyTaskSize = 0 -2025-09-23 00:41:27,194 INFO toNotifyTaskSize = 0 +2025-09-24 00:41:26,917 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:41:27,194 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:41:26,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:41:37,172 INFO [long-pulling] client count 0 +2025-09-24 00:41:36,917 INFO [long-pulling] client count 0 -2025-09-23 00:41:37,172 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:41:36,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:41:37,195 INFO toNotifyTaskSize = 0 +2025-09-24 00:41:36,918 INFO toNotifyTaskSize = 0 -2025-09-23 00:41:37,195 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:41:36,918 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:41:47,174 INFO [long-pulling] client count 0 +2025-09-24 00:41:46,917 INFO [long-pulling] client count 0 -2025-09-23 00:41:47,174 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:41:46,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:41:47,196 INFO toNotifyTaskSize = 0 +2025-09-24 00:41:46,919 INFO toNotifyTaskSize = 0 -2025-09-23 00:41:47,196 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:41:46,919 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:41:57,175 INFO [long-pulling] client count 0 +2025-09-24 00:41:56,918 INFO [long-pulling] client count 0 -2025-09-23 00:41:57,175 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:41:56,919 INFO toNotifyTaskSize = 0 -2025-09-23 00:41:57,197 INFO toNotifyTaskSize = 0 +2025-09-24 00:41:56,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:41:57,197 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:41:56,920 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:42:07,177 INFO [long-pulling] client count 0 +2025-09-24 00:42:06,919 INFO [long-pulling] client count 0 -2025-09-23 00:42:07,178 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:42:06,921 INFO toNotifyTaskSize = 0 -2025-09-23 00:42:07,198 INFO toNotifyTaskSize = 0 +2025-09-24 00:42:06,921 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:42:07,198 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:42:06,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:42:17,179 INFO [long-pulling] client count 0 +2025-09-24 00:42:16,921 INFO [long-pulling] client count 0 -2025-09-23 00:42:17,179 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:42:16,922 INFO toNotifyTaskSize = 0 -2025-09-23 00:42:17,198 INFO toNotifyTaskSize = 0 +2025-09-24 00:42:16,922 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:42:17,198 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:42:16,922 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:42:27,179 INFO [long-pulling] client count 0 +2025-09-24 00:42:26,922 INFO [long-pulling] client count 0 -2025-09-23 00:42:27,179 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:42:26,922 INFO toNotifyTaskSize = 0 -2025-09-23 00:42:27,199 INFO toNotifyTaskSize = 0 +2025-09-24 00:42:26,923 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:42:27,199 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:42:26,922 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:42:37,181 INFO [long-pulling] client count 0 +2025-09-24 00:42:36,923 INFO [long-pulling] client count 0 -2025-09-23 00:42:37,181 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:42:36,923 INFO toNotifyTaskSize = 0 -2025-09-23 00:42:37,199 INFO toNotifyTaskSize = 0 +2025-09-24 00:42:36,924 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:42:37,199 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:42:36,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:42:47,181 INFO [long-pulling] client count 0 +2025-09-24 00:42:46,924 INFO [long-pulling] client count 0 -2025-09-23 00:42:47,181 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:42:46,924 INFO toNotifyTaskSize = 0 -2025-09-23 00:42:47,199 INFO toNotifyTaskSize = 0 +2025-09-24 00:42:46,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:42:47,200 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:42:46,924 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:42:57,182 INFO [long-pulling] client count 0 +2025-09-24 00:42:56,925 INFO [long-pulling] client count 0 -2025-09-23 00:42:57,182 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:42:56,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:42:57,200 INFO toNotifyTaskSize = 0 +2025-09-24 00:42:56,925 INFO toNotifyTaskSize = 0 -2025-09-23 00:42:57,201 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:42:56,925 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:43:07,183 INFO [long-pulling] client count 0 +2025-09-24 00:43:06,926 INFO [long-pulling] client count 0 -2025-09-23 00:43:07,183 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:43:06,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:43:07,201 INFO toNotifyTaskSize = 0 +2025-09-24 00:43:06,926 INFO toNotifyTaskSize = 0 -2025-09-23 00:43:07,201 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:43:06,926 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:43:17,183 INFO [long-pulling] client count 0 +2025-09-24 00:43:16,926 INFO [long-pulling] client count 0 -2025-09-23 00:43:17,183 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:43:16,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:43:17,202 INFO toNotifyTaskSize = 0 +2025-09-24 00:43:16,926 INFO toNotifyTaskSize = 0 -2025-09-23 00:43:17,202 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:43:16,926 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:43:27,184 INFO [long-pulling] client count 0 +2025-09-24 00:43:26,927 INFO [long-pulling] client count 0 -2025-09-23 00:43:27,184 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:43:26,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:43:27,202 INFO toNotifyTaskSize = 0 +2025-09-24 00:43:26,927 INFO toNotifyTaskSize = 0 -2025-09-23 00:43:27,202 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:43:26,927 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:43:37,185 INFO [long-pulling] client count 0 +2025-09-24 00:43:36,927 INFO [long-pulling] client count 0 -2025-09-23 00:43:37,185 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:43:36,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:43:37,203 INFO toNotifyTaskSize = 0 +2025-09-24 00:43:36,927 INFO toNotifyTaskSize = 0 -2025-09-23 00:43:37,203 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:43:36,928 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:43:47,186 INFO [long-pulling] client count 0 +2025-09-24 00:43:46,928 INFO [long-pulling] client count 0 -2025-09-23 00:43:47,186 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:43:46,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:43:47,204 INFO toNotifyTaskSize = 0 +2025-09-24 00:43:46,928 INFO toNotifyTaskSize = 0 -2025-09-23 00:43:47,205 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:43:46,928 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:43:57,187 INFO [long-pulling] client count 0 +2025-09-24 00:43:56,929 INFO [long-pulling] client count 0 -2025-09-23 00:43:57,187 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:43:56,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:43:57,205 INFO toNotifyTaskSize = 0 +2025-09-24 00:43:56,929 INFO toNotifyTaskSize = 0 -2025-09-23 00:43:57,205 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:43:56,929 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:44:07,187 INFO [long-pulling] client count 0 +2025-09-24 00:44:06,930 INFO [long-pulling] client count 0 -2025-09-23 00:44:07,187 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:44:06,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:44:07,206 INFO toNotifyTaskSize = 0 +2025-09-24 00:44:06,930 INFO toNotifyTaskSize = 0 -2025-09-23 00:44:07,206 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:44:06,930 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:44:17,187 INFO [long-pulling] client count 0 +2025-09-24 00:44:16,931 INFO [long-pulling] client count 0 -2025-09-23 00:44:17,187 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:44:16,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:44:17,206 INFO toNotifyTaskSize = 0 +2025-09-24 00:44:16,931 INFO toNotifyTaskSize = 0 -2025-09-23 00:44:17,207 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:44:16,932 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:44:27,188 INFO [long-pulling] client count 0 +2025-09-24 00:44:26,932 INFO [long-pulling] client count 0 -2025-09-23 00:44:27,188 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:44:26,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:44:27,207 INFO toNotifyTaskSize = 0 +2025-09-24 00:44:26,932 INFO toNotifyTaskSize = 0 -2025-09-23 00:44:27,207 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:44:26,932 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:44:37,188 INFO [long-pulling] client count 0 +2025-09-24 00:44:36,933 INFO [long-pulling] client count 0 -2025-09-23 00:44:37,188 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:44:36,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:44:37,209 INFO toNotifyTaskSize = 0 +2025-09-24 00:44:36,933 INFO toNotifyTaskSize = 0 -2025-09-23 00:44:37,209 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:44:36,933 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:44:47,189 INFO [long-pulling] client count 0 +2025-09-24 00:44:46,934 INFO [long-pulling] client count 0 -2025-09-23 00:44:47,189 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:44:46,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:44:47,210 INFO toNotifyTaskSize = 0 +2025-09-24 00:44:46,935 INFO toNotifyTaskSize = 0 -2025-09-23 00:44:47,211 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:44:46,936 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:44:57,190 INFO [long-pulling] client count 0 +2025-09-24 00:44:56,937 INFO [long-pulling] client count 0 -2025-09-23 00:44:57,190 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:44:56,937 INFO toNotifyTaskSize = 0 -2025-09-23 00:44:57,211 INFO toNotifyTaskSize = 0 +2025-09-24 00:44:56,938 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:44:57,211 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:44:56,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:45:07,190 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:45:06,939 INFO [long-pulling] client count 0 -2025-09-23 00:45:07,190 INFO [long-pulling] client count 0 +2025-09-24 00:45:06,939 INFO toNotifyTaskSize = 0 -2025-09-23 00:45:07,212 INFO toNotifyTaskSize = 0 +2025-09-24 00:45:06,940 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:45:07,213 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:45:06,939 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:45:17,191 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:45:16,940 INFO [long-pulling] client count 0 -2025-09-23 00:45:17,191 INFO [long-pulling] client count 0 +2025-09-24 00:45:16,940 INFO toNotifyTaskSize = 0 -2025-09-23 00:45:17,213 INFO toNotifyTaskSize = 0 +2025-09-24 00:45:16,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:45:17,213 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:45:16,940 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:45:27,192 INFO [long-pulling] client count 0 +2025-09-24 00:45:26,940 INFO [long-pulling] client count 0 -2025-09-23 00:45:27,192 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:45:26,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:45:27,214 INFO toNotifyTaskSize = 0 +2025-09-24 00:45:26,940 INFO toNotifyTaskSize = 0 -2025-09-23 00:45:27,214 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:45:26,941 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:45:37,192 INFO [long-pulling] client count 0 +2025-09-24 00:45:36,941 INFO [long-pulling] client count 0 -2025-09-23 00:45:37,192 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:45:36,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:45:37,215 INFO toNotifyTaskSize = 0 +2025-09-24 00:45:36,941 INFO toNotifyTaskSize = 0 -2025-09-23 00:45:37,215 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:45:36,941 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:45:47,193 INFO [long-pulling] client count 0 +2025-09-24 00:45:46,941 INFO [long-pulling] client count 0 -2025-09-23 00:45:47,193 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:45:46,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:45:47,215 INFO toNotifyTaskSize = 0 +2025-09-24 00:45:46,942 INFO toNotifyTaskSize = 0 -2025-09-23 00:45:47,215 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:45:46,942 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:45:57,194 INFO [long-pulling] client count 0 +2025-09-24 00:45:56,942 INFO [long-pulling] client count 0 -2025-09-23 00:45:57,194 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:45:56,942 INFO toNotifyTaskSize = 0 -2025-09-23 00:45:57,215 INFO toNotifyTaskSize = 0 +2025-09-24 00:45:56,943 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:45:57,215 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:45:56,942 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:46:07,194 INFO [long-pulling] client count 0 +2025-09-24 00:46:06,943 INFO [long-pulling] client count 0 -2025-09-23 00:46:07,194 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:46:06,944 INFO toNotifyTaskSize = 0 -2025-09-23 00:46:07,216 INFO toNotifyTaskSize = 0 +2025-09-24 00:46:06,944 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:46:07,216 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:46:06,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:46:17,194 INFO [long-pulling] client count 0 +2025-09-24 00:46:16,944 INFO [long-pulling] client count 0 -2025-09-23 00:46:17,195 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:46:16,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:46:17,216 INFO toNotifyTaskSize = 0 +2025-09-24 00:46:16,944 INFO toNotifyTaskSize = 0 -2025-09-23 00:46:17,217 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:46:16,945 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:46:27,195 INFO [long-pulling] client count 0 +2025-09-24 00:46:26,945 INFO [long-pulling] client count 0 -2025-09-23 00:46:27,195 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:46:26,945 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:46:27,217 INFO toNotifyTaskSize = 0 +2025-09-24 00:46:26,945 INFO toNotifyTaskSize = 0 -2025-09-23 00:46:27,217 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:46:26,946 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:46:37,196 INFO [long-pulling] client count 0 +2025-09-24 00:46:36,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:46:37,197 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:46:36,946 INFO [long-pulling] client count 0 -2025-09-23 00:46:37,218 INFO toNotifyTaskSize = 0 +2025-09-24 00:46:36,947 INFO toNotifyTaskSize = 0 -2025-09-23 00:46:37,218 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:46:36,948 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:46:47,198 INFO [long-pulling] client count 0 +2025-09-24 00:46:46,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:46:47,198 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:46:46,949 INFO toNotifyTaskSize = 0 -2025-09-23 00:46:47,219 INFO toNotifyTaskSize = 0 +2025-09-24 00:46:46,950 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:46:47,219 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:46:46,949 INFO [long-pulling] client count 0 -2025-09-23 00:46:57,198 INFO [long-pulling] client count 0 +2025-09-24 00:46:56,950 INFO [long-pulling] client count 0 -2025-09-23 00:46:57,198 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:46:56,950 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:46:57,220 INFO toNotifyTaskSize = 0 +2025-09-24 00:46:56,951 INFO toNotifyTaskSize = 0 -2025-09-23 00:46:57,220 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:46:56,951 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:47:07,200 INFO [long-pulling] client count 0 +2025-09-24 00:47:06,951 INFO [long-pulling] client count 0 -2025-09-23 00:47:07,200 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:47:06,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:47:07,222 INFO toNotifyTaskSize = 0 +2025-09-24 00:47:06,951 INFO toNotifyTaskSize = 0 -2025-09-23 00:47:07,222 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:47:06,953 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:47:17,200 INFO [long-pulling] client count 0 +2025-09-24 00:47:16,953 INFO [long-pulling] client count 0 -2025-09-23 00:47:17,200 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:47:16,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:47:17,222 INFO toNotifyTaskSize = 0 +2025-09-24 00:47:16,953 INFO toNotifyTaskSize = 0 -2025-09-23 00:47:17,222 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:47:16,953 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:47:27,204 INFO [long-pulling] client count 0 +2025-09-24 00:47:26,953 INFO [long-pulling] client count 0 -2025-09-23 00:47:27,204 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:47:26,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:47:27,222 INFO toNotifyTaskSize = 0 +2025-09-24 00:47:26,954 INFO toNotifyTaskSize = 0 -2025-09-23 00:47:27,222 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:47:26,954 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:47:37,205 INFO [long-pulling] client count 0 +2025-09-24 00:47:36,954 INFO [long-pulling] client count 0 -2025-09-23 00:47:37,205 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:47:36,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:47:37,223 INFO toNotifyTaskSize = 0 +2025-09-24 00:47:36,954 INFO toNotifyTaskSize = 0 -2025-09-23 00:47:37,223 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:47:36,954 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:47:47,205 INFO [long-pulling] client count 0 +2025-09-24 00:47:46,955 INFO [long-pulling] client count 0 -2025-09-23 00:47:47,205 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:47:46,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:47:47,224 INFO toNotifyTaskSize = 0 +2025-09-24 00:47:46,956 INFO toNotifyTaskSize = 0 -2025-09-23 00:47:47,224 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:47:46,956 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:47:57,206 INFO [long-pulling] client count 0 +2025-09-24 00:47:56,956 INFO [long-pulling] client count 0 -2025-09-23 00:47:57,206 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:47:56,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:47:57,225 INFO toNotifyTaskSize = 0 +2025-09-24 00:47:56,956 INFO toNotifyTaskSize = 0 -2025-09-23 00:47:57,225 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:47:56,958 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:48:07,207 INFO [long-pulling] client count 0 +2025-09-24 00:48:06,958 INFO [long-pulling] client count 0 -2025-09-23 00:48:07,207 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:48:06,958 INFO toNotifyTaskSize = 0 -2025-09-23 00:48:07,226 INFO toNotifyTaskSize = 0 +2025-09-24 00:48:06,959 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:48:07,226 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:48:06,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:48:17,208 INFO [long-pulling] client count 0 +2025-09-24 00:48:16,959 INFO [long-pulling] client count 0 -2025-09-23 00:48:17,208 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:48:16,959 INFO toNotifyTaskSize = 0 -2025-09-23 00:48:17,226 INFO toNotifyTaskSize = 0 +2025-09-24 00:48:16,960 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:48:17,226 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:48:16,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:48:27,208 INFO [long-pulling] client count 0 +2025-09-24 00:48:26,960 INFO [long-pulling] client count 0 -2025-09-23 00:48:27,208 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:48:26,960 INFO toNotifyTaskSize = 0 -2025-09-23 00:48:27,227 INFO toNotifyTaskSize = 0 +2025-09-24 00:48:26,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:48:27,227 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:48:26,962 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:48:37,208 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:48:36,962 INFO [long-pulling] client count 0 -2025-09-23 00:48:37,209 INFO [long-pulling] client count 0 +2025-09-24 00:48:36,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:48:37,227 INFO toNotifyTaskSize = 0 +2025-09-24 00:48:36,962 INFO toNotifyTaskSize = 0 -2025-09-23 00:48:37,227 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:48:36,963 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:48:47,209 INFO [long-pulling] client count 0 +2025-09-24 00:48:46,963 INFO [long-pulling] client count 0 -2025-09-23 00:48:47,209 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:48:46,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:48:47,228 INFO toNotifyTaskSize = 0 +2025-09-24 00:48:46,963 INFO toNotifyTaskSize = 0 -2025-09-23 00:48:47,229 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:48:46,964 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:48:57,209 INFO [long-pulling] client count 0 +2025-09-24 00:48:56,965 INFO [long-pulling] client count 0 -2025-09-23 00:48:57,209 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:48:56,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:48:57,229 INFO toNotifyTaskSize = 0 +2025-09-24 00:48:56,965 INFO toNotifyTaskSize = 0 -2025-09-23 00:48:57,229 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:48:56,965 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:49:07,210 INFO [long-pulling] client count 0 +2025-09-24 00:49:07,011 INFO [long-pulling] client count 0 -2025-09-23 00:49:07,211 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:49:07,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:49:07,229 INFO toNotifyTaskSize = 0 +2025-09-24 00:49:07,011 INFO toNotifyTaskSize = 0 -2025-09-23 00:49:07,229 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:49:07,012 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:49:17,211 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:49:17,012 INFO [long-pulling] client count 0 -2025-09-23 00:49:17,212 INFO [long-pulling] client count 0 +2025-09-24 00:49:17,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:49:17,230 INFO toNotifyTaskSize = 0 +2025-09-24 00:49:17,012 INFO toNotifyTaskSize = 0 -2025-09-23 00:49:17,230 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:49:17,012 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:49:27,212 INFO [long-pulling] client count 0 +2025-09-24 00:49:27,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:49:27,212 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:49:27,012 INFO [long-pulling] client count 0 -2025-09-23 00:49:27,230 INFO toNotifyTaskSize = 0 +2025-09-24 00:49:27,012 INFO toNotifyTaskSize = 0 -2025-09-23 00:49:27,231 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:49:27,013 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:49:37,213 INFO [long-pulling] client count 0 +2025-09-24 00:49:37,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:49:37,213 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:49:37,013 INFO [long-pulling] client count 0 -2025-09-23 00:49:37,231 INFO toNotifyTaskSize = 0 +2025-09-24 00:49:37,013 INFO toNotifyTaskSize = 0 -2025-09-23 00:49:37,231 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:49:37,013 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:49:47,213 INFO [long-pulling] client count 0 +2025-09-24 00:49:47,013 INFO [long-pulling] client count 0 -2025-09-23 00:49:47,213 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:49:47,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:49:47,231 INFO toNotifyTaskSize = 0 +2025-09-24 00:49:47,013 INFO toNotifyTaskSize = 0 -2025-09-23 00:49:47,231 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:49:47,014 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:49:57,214 INFO [long-pulling] client count 0 +2025-09-24 00:49:57,015 INFO [long-pulling] client count 0 -2025-09-23 00:49:57,214 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:49:57,015 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:49:57,232 INFO toNotifyTaskSize = 0 +2025-09-24 00:49:57,015 INFO toNotifyTaskSize = 0 -2025-09-23 00:49:57,232 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:49:57,016 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:50:07,215 INFO [long-pulling] client count 0 +2025-09-24 00:50:07,016 INFO [long-pulling] client count 0 -2025-09-23 00:50:07,215 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:50:07,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:50:07,233 INFO toNotifyTaskSize = 0 +2025-09-24 00:50:07,016 INFO toNotifyTaskSize = 0 -2025-09-23 00:50:07,233 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:50:07,017 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:50:17,216 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:50:17,017 INFO [long-pulling] client count 0 -2025-09-23 00:50:17,216 INFO [long-pulling] client count 0 +2025-09-24 00:50:17,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:50:17,234 INFO toNotifyTaskSize = 0 +2025-09-24 00:50:17,018 INFO toNotifyTaskSize = 0 -2025-09-23 00:50:17,234 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:50:17,018 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:50:27,217 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:50:27,018 INFO [long-pulling] client count 0 -2025-09-23 00:50:27,217 INFO [long-pulling] client count 0 +2025-09-24 00:50:27,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:50:27,234 INFO toNotifyTaskSize = 0 +2025-09-24 00:50:27,018 INFO toNotifyTaskSize = 0 -2025-09-23 00:50:27,235 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:50:27,018 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:50:37,217 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:50:37,019 INFO [long-pulling] client count 0 -2025-09-23 00:50:37,217 INFO [long-pulling] client count 0 +2025-09-24 00:50:37,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:50:37,236 INFO toNotifyTaskSize = 0 +2025-09-24 00:50:37,020 INFO toNotifyTaskSize = 0 -2025-09-23 00:50:37,236 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:50:37,020 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:50:47,218 INFO [long-pulling] client count 0 +2025-09-24 00:50:47,020 INFO [long-pulling] client count 0 -2025-09-23 00:50:47,218 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:50:47,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:50:47,237 INFO toNotifyTaskSize = 0 +2025-09-24 00:50:47,020 INFO toNotifyTaskSize = 0 -2025-09-23 00:50:47,237 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:50:47,021 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:50:57,218 INFO [long-pulling] client count 0 +2025-09-24 00:50:57,021 INFO [long-pulling] client count 0 -2025-09-23 00:50:57,218 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:50:57,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:50:57,238 INFO toNotifyTaskSize = 0 +2025-09-24 00:50:57,021 INFO toNotifyTaskSize = 0 -2025-09-23 00:50:57,238 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:50:57,022 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:51:07,219 INFO [long-pulling] client count 0 +2025-09-24 00:51:07,022 INFO [long-pulling] client count 0 -2025-09-23 00:51:07,219 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:51:07,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:51:07,239 INFO toNotifyTaskSize = 0 +2025-09-24 00:51:07,022 INFO toNotifyTaskSize = 0 -2025-09-23 00:51:07,239 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:51:07,023 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:51:17,219 INFO [long-pulling] client count 0 +2025-09-24 00:51:17,023 INFO [long-pulling] client count 0 -2025-09-23 00:51:17,219 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:51:17,023 INFO toNotifyTaskSize = 0 -2025-09-23 00:51:17,240 INFO toNotifyTaskSize = 0 +2025-09-24 00:51:17,024 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:51:17,240 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:51:17,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:51:27,219 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:51:27,025 INFO [long-pulling] client count 0 -2025-09-23 00:51:27,219 INFO [long-pulling] client count 0 +2025-09-24 00:51:27,025 INFO toNotifyTaskSize = 0 -2025-09-23 00:51:27,240 INFO toNotifyTaskSize = 0 +2025-09-24 00:51:27,025 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:51:27,241 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:51:27,025 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:51:37,221 INFO [long-pulling] client count 0 +2025-09-24 00:51:37,026 INFO [long-pulling] client count 0 -2025-09-23 00:51:37,221 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:51:37,026 INFO toNotifyTaskSize = 0 -2025-09-23 00:51:37,241 INFO toNotifyTaskSize = 0 +2025-09-24 00:51:37,026 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:51:37,241 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:51:37,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:51:47,222 INFO [long-pulling] client count 0 +2025-09-24 00:51:47,026 INFO [long-pulling] client count 0 -2025-09-23 00:51:47,222 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:51:47,026 INFO toNotifyTaskSize = 0 -2025-09-23 00:51:47,241 INFO toNotifyTaskSize = 0 +2025-09-24 00:51:47,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:51:47,242 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:51:47,027 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:51:57,222 INFO [long-pulling] client count 0 +2025-09-24 00:51:57,027 INFO [long-pulling] client count 0 -2025-09-23 00:51:57,222 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:51:57,027 INFO toNotifyTaskSize = 0 -2025-09-23 00:51:57,242 INFO toNotifyTaskSize = 0 +2025-09-24 00:51:57,027 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:51:57,242 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:51:57,027 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:52:07,222 INFO [long-pulling] client count 0 +2025-09-24 00:52:07,028 INFO [long-pulling] client count 0 -2025-09-23 00:52:07,222 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:52:07,028 INFO toNotifyTaskSize = 0 -2025-09-23 00:52:07,243 INFO toNotifyTaskSize = 0 +2025-09-24 00:52:07,029 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:52:07,243 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:52:07,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:52:17,223 INFO [long-pulling] client count 0 +2025-09-24 00:52:17,029 INFO [long-pulling] client count 0 -2025-09-23 00:52:17,223 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:52:17,029 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:52:17,243 INFO toNotifyTaskSize = 0 +2025-09-24 00:52:17,029 INFO toNotifyTaskSize = 0 -2025-09-23 00:52:17,243 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:52:17,029 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:52:27,223 INFO [long-pulling] client count 0 +2025-09-24 00:52:27,029 INFO [long-pulling] client count 0 -2025-09-23 00:52:27,223 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:52:27,029 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:52:27,244 INFO toNotifyTaskSize = 0 +2025-09-24 00:52:27,029 INFO toNotifyTaskSize = 0 -2025-09-23 00:52:27,244 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:52:27,030 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:52:37,224 INFO [long-pulling] client count 0 +2025-09-24 00:52:37,030 INFO [long-pulling] client count 0 -2025-09-23 00:52:37,224 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:52:37,030 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:52:37,245 INFO toNotifyTaskSize = 0 +2025-09-24 00:52:37,030 INFO toNotifyTaskSize = 0 -2025-09-23 00:52:37,245 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:52:37,030 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:52:47,224 INFO [long-pulling] client count 0 +2025-09-24 00:52:47,030 INFO [long-pulling] client count 0 -2025-09-23 00:52:47,224 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:52:47,030 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:52:47,245 INFO toNotifyTaskSize = 0 +2025-09-24 00:52:47,030 INFO toNotifyTaskSize = 0 -2025-09-23 00:52:47,245 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:52:47,031 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:52:57,225 INFO [long-pulling] client count 0 +2025-09-24 00:52:57,031 INFO [long-pulling] client count 0 -2025-09-23 00:52:57,225 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:52:57,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:52:57,247 INFO toNotifyTaskSize = 0 +2025-09-24 00:52:57,031 INFO toNotifyTaskSize = 0 -2025-09-23 00:52:57,247 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:52:57,031 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:53:07,226 INFO [long-pulling] client count 0 +2025-09-24 00:53:07,031 INFO [long-pulling] client count 0 -2025-09-23 00:53:07,226 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:53:07,031 INFO toNotifyTaskSize = 0 -2025-09-23 00:53:07,248 INFO toNotifyTaskSize = 0 +2025-09-24 00:53:07,032 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:53:07,248 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:53:07,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:53:17,226 INFO [long-pulling] client count 0 +2025-09-24 00:53:17,032 INFO [long-pulling] client count 0 -2025-09-23 00:53:17,226 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:53:17,032 INFO toNotifyTaskSize = 0 -2025-09-23 00:53:17,248 INFO toNotifyTaskSize = 0 +2025-09-24 00:53:17,032 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:53:17,248 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:53:17,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:53:27,227 INFO [long-pulling] client count 0 +2025-09-24 00:53:27,032 INFO [long-pulling] client count 0 -2025-09-23 00:53:27,227 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:53:27,033 INFO toNotifyTaskSize = 0 -2025-09-23 00:53:27,249 INFO toNotifyTaskSize = 0 +2025-09-24 00:53:27,033 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:53:27,249 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:53:27,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:53:37,228 INFO [long-pulling] client count 0 +2025-09-24 00:53:37,033 INFO [long-pulling] client count 0 -2025-09-23 00:53:37,228 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:53:37,033 INFO toNotifyTaskSize = 0 -2025-09-23 00:53:37,250 INFO toNotifyTaskSize = 0 +2025-09-24 00:53:37,034 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:53:37,250 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:53:37,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:53:47,230 INFO [long-pulling] client count 0 +2025-09-24 00:53:47,034 INFO toNotifyTaskSize = 0 -2025-09-23 00:53:47,230 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:53:47,034 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:53:47,251 INFO toNotifyTaskSize = 0 +2025-09-24 00:53:47,034 INFO [long-pulling] client count 0 -2025-09-23 00:53:47,251 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:53:47,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:53:57,230 INFO [long-pulling] client count 0 +2025-09-24 00:53:57,034 INFO toNotifyTaskSize = 0 -2025-09-23 00:53:57,230 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:53:57,035 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:53:57,252 INFO toNotifyTaskSize = 0 +2025-09-24 00:53:57,034 INFO [long-pulling] client count 0 -2025-09-23 00:53:57,252 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:53:57,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:54:07,232 INFO [long-pulling] client count 0 +2025-09-24 00:54:07,035 INFO [long-pulling] client count 0 -2025-09-23 00:54:07,232 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:54:07,036 INFO toNotifyTaskSize = 0 -2025-09-23 00:54:07,252 INFO toNotifyTaskSize = 0 +2025-09-24 00:54:07,036 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:54:07,252 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:54:07,036 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:54:17,233 INFO [long-pulling] client count 0 +2025-09-24 00:54:17,036 INFO [long-pulling] client count 0 -2025-09-23 00:54:17,233 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:54:17,036 INFO toNotifyTaskSize = 0 -2025-09-23 00:54:17,253 INFO toNotifyTaskSize = 0 +2025-09-24 00:54:17,036 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:54:17,253 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:54:17,036 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:54:27,234 INFO [long-pulling] client count 0 +2025-09-24 00:54:27,036 INFO [long-pulling] client count 0 -2025-09-23 00:54:27,234 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:54:27,037 INFO toNotifyTaskSize = 0 -2025-09-23 00:54:27,253 INFO toNotifyTaskSize = 0 +2025-09-24 00:54:27,037 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:54:27,254 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:54:27,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:54:37,235 INFO [long-pulling] client count 0 +2025-09-24 00:54:37,037 INFO [long-pulling] client count 0 -2025-09-23 00:54:37,236 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:54:37,037 INFO toNotifyTaskSize = 0 -2025-09-23 00:54:37,254 INFO toNotifyTaskSize = 0 +2025-09-24 00:54:37,038 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:54:37,254 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:54:37,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:54:47,236 INFO [long-pulling] client count 0 +2025-09-24 00:54:47,038 INFO [long-pulling] client count 0 -2025-09-23 00:54:47,236 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:54:47,038 INFO toNotifyTaskSize = 0 -2025-09-23 00:54:47,255 INFO toNotifyTaskSize = 0 +2025-09-24 00:54:47,038 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:54:47,255 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:54:47,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:54:57,237 INFO [long-pulling] client count 0 +2025-09-24 00:54:57,039 INFO [long-pulling] client count 0 -2025-09-23 00:54:57,237 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:54:57,039 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:54:57,256 INFO toNotifyTaskSize = 0 +2025-09-24 00:54:57,039 INFO toNotifyTaskSize = 0 -2025-09-23 00:54:57,256 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:54:57,040 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:55:07,238 INFO [long-pulling] client count 0 +2025-09-24 00:55:07,039 INFO [long-pulling] client count 0 -2025-09-23 00:55:07,238 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:55:07,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:55:07,257 INFO toNotifyTaskSize = 0 +2025-09-24 00:55:07,040 INFO toNotifyTaskSize = 0 -2025-09-23 00:55:07,257 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:55:07,041 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:55:17,239 INFO [long-pulling] client count 0 +2025-09-24 00:55:17,041 INFO [long-pulling] client count 0 -2025-09-23 00:55:17,239 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:55:17,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:55:17,258 INFO toNotifyTaskSize = 0 +2025-09-24 00:55:17,041 INFO toNotifyTaskSize = 0 -2025-09-23 00:55:17,259 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:55:17,042 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:55:27,239 INFO [long-pulling] client count 0 +2025-09-24 00:55:27,042 INFO toNotifyTaskSize = 0 -2025-09-23 00:55:27,240 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:55:27,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:55:27,259 INFO toNotifyTaskSize = 0 +2025-09-24 00:55:27,043 INFO [long-pulling] client count 0 -2025-09-23 00:55:27,259 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:55:27,067 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:55:37,240 INFO [long-pulling] client count 0 +2025-09-24 00:55:37,067 INFO [long-pulling] client count 0 -2025-09-23 00:55:37,240 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:55:37,069 INFO toNotifyTaskSize = 0 -2025-09-23 00:55:37,260 INFO toNotifyTaskSize = 0 +2025-09-24 00:55:37,071 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:55:37,260 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:55:37,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:55:47,242 INFO [long-pulling] client count 0 +2025-09-24 00:55:47,071 INFO [long-pulling] client count 0 -2025-09-23 00:55:47,242 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:55:47,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:55:47,260 INFO toNotifyTaskSize = 0 +2025-09-24 00:55:47,071 INFO toNotifyTaskSize = 0 -2025-09-23 00:55:47,260 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:55:47,071 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:55:57,243 INFO [long-pulling] client count 0 +2025-09-24 00:55:57,072 INFO [long-pulling] client count 0 -2025-09-23 00:55:57,243 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:55:57,072 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:55:57,261 INFO toNotifyTaskSize = 0 +2025-09-24 00:55:57,072 INFO toNotifyTaskSize = 0 -2025-09-23 00:55:57,261 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:55:57,073 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:56:07,244 INFO [long-pulling] client count 0 +2025-09-24 00:56:07,073 INFO [long-pulling] client count 0 -2025-09-23 00:56:07,244 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:56:07,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:56:07,261 INFO toNotifyTaskSize = 0 +2025-09-24 00:56:07,073 INFO toNotifyTaskSize = 0 -2025-09-23 00:56:07,261 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:56:07,075 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:56:17,245 INFO [long-pulling] client count 0 +2025-09-24 00:56:17,075 INFO [long-pulling] client count 0 -2025-09-23 00:56:17,245 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:56:17,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:56:17,261 INFO toNotifyTaskSize = 0 +2025-09-24 00:56:17,075 INFO toNotifyTaskSize = 0 -2025-09-23 00:56:17,262 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:56:17,076 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:56:27,247 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:56:27,076 INFO [long-pulling] client count 0 -2025-09-23 00:56:27,247 INFO [long-pulling] client count 0 +2025-09-24 00:56:27,076 INFO toNotifyTaskSize = 0 -2025-09-23 00:56:27,263 INFO toNotifyTaskSize = 0 +2025-09-24 00:56:27,076 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:56:27,263 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:56:27,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:56:37,247 INFO [long-pulling] client count 0 +2025-09-24 00:56:37,077 INFO [long-pulling] client count 0 -2025-09-23 00:56:37,247 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:56:37,077 INFO toNotifyTaskSize = 0 -2025-09-23 00:56:37,263 INFO toNotifyTaskSize = 0 +2025-09-24 00:56:37,078 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:56:37,263 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:56:37,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:56:47,248 INFO [long-pulling] client count 0 +2025-09-24 00:56:47,078 INFO [long-pulling] client count 0 -2025-09-23 00:56:47,249 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:56:47,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:56:47,264 INFO toNotifyTaskSize = 0 +2025-09-24 00:56:47,078 INFO toNotifyTaskSize = 0 -2025-09-23 00:56:47,264 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:56:47,079 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:56:57,249 INFO [long-pulling] client count 0 +2025-09-24 00:56:57,079 INFO [long-pulling] client count 0 -2025-09-23 00:56:57,250 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:56:57,079 INFO toNotifyTaskSize = 0 -2025-09-23 00:56:57,265 INFO toNotifyTaskSize = 0 +2025-09-24 00:56:57,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:56:57,265 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:56:57,080 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:57:07,250 INFO [long-pulling] client count 0 +2025-09-24 00:57:07,081 INFO [long-pulling] client count 0 -2025-09-23 00:57:07,251 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:57:07,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:57:07,265 INFO toNotifyTaskSize = 0 +2025-09-24 00:57:07,081 INFO toNotifyTaskSize = 0 -2025-09-23 00:57:07,265 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:57:07,082 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:57:17,250 INFO [long-pulling] client count 0 +2025-09-24 00:57:17,082 INFO [long-pulling] client count 0 -2025-09-23 00:57:17,252 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:57:17,083 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:57:17,266 INFO toNotifyTaskSize = 0 +2025-09-24 00:57:17,083 INFO toNotifyTaskSize = 0 -2025-09-23 00:57:17,266 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:57:17,084 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:57:27,251 INFO [long-pulling] client count 0 +2025-09-24 00:57:27,084 INFO [long-pulling] client count 0 -2025-09-23 00:57:27,253 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:57:27,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:57:27,268 INFO toNotifyTaskSize = 0 +2025-09-24 00:57:27,084 INFO toNotifyTaskSize = 0 -2025-09-23 00:57:27,268 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:57:27,085 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:57:37,252 INFO [long-pulling] client count 0 +2025-09-24 00:57:37,085 INFO [long-pulling] client count 0 -2025-09-23 00:57:37,253 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:57:37,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:57:37,268 INFO toNotifyTaskSize = 0 +2025-09-24 00:57:37,085 INFO toNotifyTaskSize = 0 -2025-09-23 00:57:37,268 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:57:37,086 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:57:47,252 INFO [long-pulling] client count 0 +2025-09-24 00:57:47,086 INFO [long-pulling] client count 0 -2025-09-23 00:57:47,253 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:57:47,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:57:47,269 INFO toNotifyTaskSize = 0 +2025-09-24 00:57:47,086 INFO toNotifyTaskSize = 0 -2025-09-23 00:57:47,269 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:57:47,086 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:57:57,253 INFO [long-pulling] client count 0 +2025-09-24 00:57:57,087 INFO [long-pulling] client count 0 -2025-09-23 00:57:57,254 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:57:57,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:57:57,269 INFO toNotifyTaskSize = 0 +2025-09-24 00:57:57,087 INFO toNotifyTaskSize = 0 -2025-09-23 00:57:57,270 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:57:57,088 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:58:07,254 INFO [long-pulling] client count 0 +2025-09-24 00:58:07,088 INFO [long-pulling] client count 0 -2025-09-23 00:58:07,255 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:58:07,089 INFO toNotifyTaskSize = 0 -2025-09-23 00:58:07,270 INFO toNotifyTaskSize = 0 +2025-09-24 00:58:07,089 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:58:07,270 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:58:07,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:58:17,255 INFO [long-pulling] client count 0 +2025-09-24 00:58:17,089 INFO [long-pulling] client count 0 -2025-09-23 00:58:17,256 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:58:17,089 INFO toNotifyTaskSize = 0 -2025-09-23 00:58:17,271 INFO toNotifyTaskSize = 0 +2025-09-24 00:58:17,089 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:58:17,271 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:58:17,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:58:27,256 INFO [long-pulling] client count 0 +2025-09-24 00:58:27,090 INFO [long-pulling] client count 0 -2025-09-23 00:58:27,257 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:58:27,090 INFO toNotifyTaskSize = 0 -2025-09-23 00:58:27,272 INFO toNotifyTaskSize = 0 +2025-09-24 00:58:27,090 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:58:27,272 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:58:27,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:58:37,256 INFO [long-pulling] client count 0 +2025-09-24 00:58:37,090 INFO [long-pulling] client count 0 -2025-09-23 00:58:37,257 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:58:37,091 INFO toNotifyTaskSize = 0 -2025-09-23 00:58:37,273 INFO toNotifyTaskSize = 0 +2025-09-24 00:58:37,091 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:58:37,273 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:58:37,091 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:58:47,256 INFO [long-pulling] client count 0 +2025-09-24 00:58:47,091 INFO [long-pulling] client count 0 -2025-09-23 00:58:47,258 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:58:47,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:58:47,274 INFO toNotifyTaskSize = 0 +2025-09-24 00:58:47,091 INFO toNotifyTaskSize = 0 -2025-09-23 00:58:47,274 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:58:47,093 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:58:57,258 INFO [long-pulling] client count 0 +2025-09-24 00:58:57,093 INFO [long-pulling] client count 0 -2025-09-23 00:58:57,259 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:58:57,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:58:57,275 INFO toNotifyTaskSize = 0 +2025-09-24 00:58:57,093 INFO toNotifyTaskSize = 0 -2025-09-23 00:58:57,275 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:58:57,093 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:59:07,258 INFO [long-pulling] client count 0 +2025-09-24 00:59:07,093 INFO [long-pulling] client count 0 -2025-09-23 00:59:07,259 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:59:07,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:59:07,276 INFO toNotifyTaskSize = 0 +2025-09-24 00:59:07,094 INFO toNotifyTaskSize = 0 -2025-09-23 00:59:07,276 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:59:07,094 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:59:17,259 INFO [long-pulling] client count 0 +2025-09-24 00:59:17,094 INFO [long-pulling] client count 0 -2025-09-23 00:59:17,260 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:59:17,094 INFO toNotifyTaskSize = 0 -2025-09-23 00:59:17,277 INFO toNotifyTaskSize = 0 +2025-09-24 00:59:17,094 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:59:17,277 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:59:17,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:59:27,260 INFO [long-pulling] client count 0 +2025-09-24 00:59:27,095 INFO [long-pulling] client count 0 -2025-09-23 00:59:27,260 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:59:27,096 INFO toNotifyTaskSize = 0 -2025-09-23 00:59:27,278 INFO toNotifyTaskSize = 0 +2025-09-24 00:59:27,096 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:59:27,278 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:59:27,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:59:37,260 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:59:37,096 INFO [long-pulling] client count 0 -2025-09-23 00:59:37,260 INFO [long-pulling] client count 0 +2025-09-24 00:59:37,097 INFO toNotifyTaskSize = 0 -2025-09-23 00:59:37,279 INFO toNotifyTaskSize = 0 +2025-09-24 00:59:37,098 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:59:37,279 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:59:37,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:59:47,261 INFO [long-pulling] client count 0 +2025-09-24 00:59:47,098 INFO [long-pulling] client count 0 -2025-09-23 00:59:47,261 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:59:47,098 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:59:47,279 INFO toNotifyTaskSize = 0 +2025-09-24 00:59:47,098 INFO toNotifyTaskSize = 0 -2025-09-23 00:59:47,279 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:59:47,099 INFO toClientNotifyTaskSize = 0 -2025-09-23 00:59:57,261 INFO [long-pulling] client count 0 +2025-09-24 00:59:57,100 INFO [long-pulling] client count 0 -2025-09-23 00:59:57,262 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 00:59:57,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 00:59:57,280 INFO toNotifyTaskSize = 0 +2025-09-24 00:59:57,100 INFO toNotifyTaskSize = 0 -2025-09-23 00:59:57,280 INFO toClientNotifyTaskSize = 0 +2025-09-24 00:59:57,101 INFO toClientNotifyTaskSize = 0 -2025-09-23 01:00:07,261 INFO [long-pulling] client count 0 +2025-09-24 01:00:07,101 INFO [long-pulling] client count 0 -2025-09-23 01:00:07,262 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 01:00:07,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 01:00:07,281 INFO toNotifyTaskSize = 0 +2025-09-24 01:00:07,101 INFO toNotifyTaskSize = 0 -2025-09-23 01:00:07,281 INFO toClientNotifyTaskSize = 0 +2025-09-24 01:00:07,102 INFO toClientNotifyTaskSize = 0 -2025-09-23 01:00:17,262 INFO [long-pulling] client count 0 +2025-09-24 01:00:17,102 INFO [long-pulling] client count 0 -2025-09-23 01:00:17,262 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 01:00:17,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 01:00:17,282 INFO toNotifyTaskSize = 0 +2025-09-24 01:00:17,102 INFO toNotifyTaskSize = 0 -2025-09-23 01:00:17,282 INFO toClientNotifyTaskSize = 0 +2025-09-24 01:00:17,103 INFO toClientNotifyTaskSize = 0 -2025-09-23 01:00:27,263 INFO [long-pulling] client count 0 +2025-09-24 01:00:27,103 INFO [long-pulling] client count 0 -2025-09-23 01:00:27,263 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 01:00:27,103 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 01:00:27,283 INFO toNotifyTaskSize = 0 +2025-09-24 01:00:27,104 INFO toNotifyTaskSize = 0 -2025-09-23 01:00:27,283 INFO toClientNotifyTaskSize = 0 +2025-09-24 01:00:27,104 INFO toClientNotifyTaskSize = 0 -2025-09-23 01:00:37,264 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 01:00:37,104 INFO [long-pulling] client count 0 -2025-09-23 01:00:37,264 INFO [long-pulling] client count 0 +2025-09-24 01:00:37,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 01:00:37,284 INFO toNotifyTaskSize = 0 +2025-09-24 01:00:37,104 INFO toNotifyTaskSize = 0 -2025-09-23 01:00:37,284 INFO toClientNotifyTaskSize = 0 +2025-09-24 01:00:37,105 INFO toClientNotifyTaskSize = 0 -2025-09-23 01:00:47,265 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 01:00:47,105 INFO [long-pulling] client count 0 -2025-09-23 01:00:47,265 INFO [long-pulling] client count 0 +2025-09-24 01:00:47,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 01:00:47,286 INFO toNotifyTaskSize = 0 +2025-09-24 01:00:47,105 INFO toNotifyTaskSize = 0 -2025-09-23 01:00:47,286 INFO toClientNotifyTaskSize = 0 +2025-09-24 01:00:47,106 INFO toClientNotifyTaskSize = 0 -2025-09-23 01:00:57,265 INFO [long-pulling] client count 0 +2025-09-24 01:00:57,106 INFO [long-pulling] client count 0 -2025-09-23 01:00:57,265 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 01:00:57,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 01:00:57,287 INFO toNotifyTaskSize = 0 +2025-09-24 01:00:57,106 INFO toNotifyTaskSize = 0 -2025-09-23 01:00:57,287 INFO toClientNotifyTaskSize = 0 +2025-09-24 01:00:57,107 INFO toClientNotifyTaskSize = 0 -2025-09-23 01:01:07,265 INFO [long-pulling] client count 0 +2025-09-24 01:01:07,108 INFO [long-pulling] client count 0 -2025-09-23 01:01:07,265 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 +2025-09-24 01:01:07,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 -2025-09-23 01:01:07,287 INFO toNotifyTaskSize = 0 +2025-09-24 01:01:07,108 INFO toNotifyTaskSize = 0 -2025-09-23 01:01:07,287 INFO toClientNotifyTaskSize = 0 +2025-09-24 01:01:07,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:01:17,109 INFO [long-pulling] client count 0 + +2025-09-24 01:01:17,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:01:17,109 INFO toNotifyTaskSize = 0 + +2025-09-24 01:01:17,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:01:27,110 INFO [long-pulling] client count 0 + +2025-09-24 01:01:27,111 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:01:27,111 INFO toNotifyTaskSize = 0 + +2025-09-24 01:01:27,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:01:37,111 INFO [long-pulling] client count 0 + +2025-09-24 01:01:37,111 INFO toNotifyTaskSize = 0 + +2025-09-24 01:01:37,111 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:01:37,113 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:01:47,113 INFO [long-pulling] client count 0 + +2025-09-24 01:01:47,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:01:47,114 INFO toNotifyTaskSize = 0 + +2025-09-24 01:01:47,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:01:57,115 INFO [long-pulling] client count 0 + +2025-09-24 01:01:57,115 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:01:57,115 INFO toNotifyTaskSize = 0 + +2025-09-24 01:01:57,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:02:07,115 INFO [long-pulling] client count 0 + +2025-09-24 01:02:07,115 INFO toNotifyTaskSize = 0 + +2025-09-24 01:02:07,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:02:07,115 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:02:17,116 INFO [long-pulling] client count 0 + +2025-09-24 01:02:17,116 INFO toNotifyTaskSize = 0 + +2025-09-24 01:02:17,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:02:17,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:02:27,117 INFO [long-pulling] client count 0 + +2025-09-24 01:02:27,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:02:27,117 INFO toNotifyTaskSize = 0 + +2025-09-24 01:02:27,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:02:37,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:02:37,118 INFO [long-pulling] client count 0 + +2025-09-24 01:02:37,118 INFO toNotifyTaskSize = 0 + +2025-09-24 01:02:37,119 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:02:47,119 INFO [long-pulling] client count 0 + +2025-09-24 01:02:47,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:02:47,120 INFO toNotifyTaskSize = 0 + +2025-09-24 01:02:47,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:02:57,123 INFO [long-pulling] client count 0 + +2025-09-24 01:02:57,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:02:57,123 INFO toNotifyTaskSize = 0 + +2025-09-24 01:02:57,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:03:07,124 INFO [long-pulling] client count 0 + +2025-09-24 01:03:07,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:03:07,124 INFO toNotifyTaskSize = 0 + +2025-09-24 01:03:07,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:03:17,124 INFO [long-pulling] client count 0 + +2025-09-24 01:03:17,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:03:17,125 INFO toNotifyTaskSize = 0 + +2025-09-24 01:03:17,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:03:27,126 INFO [long-pulling] client count 0 + +2025-09-24 01:03:27,126 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:03:27,126 INFO toNotifyTaskSize = 0 + +2025-09-24 01:03:27,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:03:37,127 INFO [long-pulling] client count 0 + +2025-09-24 01:03:37,127 INFO toNotifyTaskSize = 0 + +2025-09-24 01:03:37,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:03:37,127 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:03:47,127 INFO [long-pulling] client count 0 + +2025-09-24 01:03:47,128 INFO toNotifyTaskSize = 0 + +2025-09-24 01:03:47,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:03:47,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:03:57,129 INFO [long-pulling] client count 0 + +2025-09-24 01:03:57,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:03:57,129 INFO toNotifyTaskSize = 0 + +2025-09-24 01:03:57,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:04:07,129 INFO [long-pulling] client count 0 + +2025-09-24 01:04:07,130 INFO toNotifyTaskSize = 0 + +2025-09-24 01:04:07,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:04:07,130 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:04:17,130 INFO [long-pulling] client count 0 + +2025-09-24 01:04:17,130 INFO toNotifyTaskSize = 0 + +2025-09-24 01:04:17,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:04:17,130 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:04:27,131 INFO [long-pulling] client count 0 + +2025-09-24 01:04:27,131 INFO toNotifyTaskSize = 0 + +2025-09-24 01:04:27,131 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:04:27,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:04:37,132 INFO [long-pulling] client count 0 + +2025-09-24 01:04:37,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:04:37,132 INFO toNotifyTaskSize = 0 + +2025-09-24 01:04:37,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:04:47,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:04:47,132 INFO [long-pulling] client count 0 + +2025-09-24 01:04:47,133 INFO toNotifyTaskSize = 0 + +2025-09-24 01:04:47,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:04:57,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:04:57,133 INFO [long-pulling] client count 0 + +2025-09-24 01:04:57,133 INFO toNotifyTaskSize = 0 + +2025-09-24 01:04:57,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:05:07,134 INFO [long-pulling] client count 0 + +2025-09-24 01:05:07,134 INFO toNotifyTaskSize = 0 + +2025-09-24 01:05:07,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:05:07,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:05:17,134 INFO [long-pulling] client count 0 + +2025-09-24 01:05:17,135 INFO toNotifyTaskSize = 0 + +2025-09-24 01:05:17,135 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:05:17,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:05:27,135 INFO [long-pulling] client count 0 + +2025-09-24 01:05:27,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:05:27,136 INFO toNotifyTaskSize = 0 + +2025-09-24 01:05:27,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:05:37,137 INFO [long-pulling] client count 0 + +2025-09-24 01:05:37,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:05:37,137 INFO toNotifyTaskSize = 0 + +2025-09-24 01:05:37,137 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:05:47,137 INFO [long-pulling] client count 0 + +2025-09-24 01:05:47,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:05:47,138 INFO toNotifyTaskSize = 0 + +2025-09-24 01:05:47,138 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:05:57,138 INFO [long-pulling] client count 0 + +2025-09-24 01:05:57,139 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:05:57,139 INFO toNotifyTaskSize = 0 + +2025-09-24 01:05:57,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:06:07,140 INFO [long-pulling] client count 0 + +2025-09-24 01:06:07,140 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:06:07,140 INFO toNotifyTaskSize = 0 + +2025-09-24 01:06:07,141 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:06:17,141 INFO [long-pulling] client count 0 + +2025-09-24 01:06:17,141 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:06:17,141 INFO toNotifyTaskSize = 0 + +2025-09-24 01:06:17,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:06:27,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:06:27,143 INFO toNotifyTaskSize = 0 + +2025-09-24 01:06:27,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:06:27,142 INFO [long-pulling] client count 0 + +2025-09-24 01:06:37,143 INFO toNotifyTaskSize = 0 + +2025-09-24 01:06:37,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:06:37,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:06:37,144 INFO [long-pulling] client count 0 + +2025-09-24 01:06:47,144 INFO [long-pulling] client count 0 + +2025-09-24 01:06:47,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:06:47,144 INFO toNotifyTaskSize = 0 + +2025-09-24 01:06:47,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:06:57,144 INFO [long-pulling] client count 0 + +2025-09-24 01:06:57,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:06:57,145 INFO toNotifyTaskSize = 0 + +2025-09-24 01:06:57,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:07:07,145 INFO [long-pulling] client count 0 + +2025-09-24 01:07:07,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:07:07,145 INFO toNotifyTaskSize = 0 + +2025-09-24 01:07:07,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:07:17,147 INFO [long-pulling] client count 0 + +2025-09-24 01:07:17,147 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:07:17,147 INFO toNotifyTaskSize = 0 + +2025-09-24 01:07:17,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:07:27,149 INFO [long-pulling] client count 0 + +2025-09-24 01:07:27,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:07:27,149 INFO toNotifyTaskSize = 0 + +2025-09-24 01:07:27,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:07:37,150 INFO [long-pulling] client count 0 + +2025-09-24 01:07:37,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:07:37,150 INFO toNotifyTaskSize = 0 + +2025-09-24 01:07:37,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:07:47,152 INFO [long-pulling] client count 0 + +2025-09-24 01:07:47,152 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:07:47,152 INFO toNotifyTaskSize = 0 + +2025-09-24 01:07:47,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:07:57,154 INFO [long-pulling] client count 0 + +2025-09-24 01:07:57,154 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:07:57,154 INFO toNotifyTaskSize = 0 + +2025-09-24 01:07:57,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:08:07,156 INFO [long-pulling] client count 0 + +2025-09-24 01:08:07,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:08:07,156 INFO toNotifyTaskSize = 0 + +2025-09-24 01:08:07,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:08:17,158 INFO [long-pulling] client count 0 + +2025-09-24 01:08:17,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:08:17,158 INFO toNotifyTaskSize = 0 + +2025-09-24 01:08:17,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:08:27,158 INFO [long-pulling] client count 0 + +2025-09-24 01:08:27,158 INFO toNotifyTaskSize = 0 + +2025-09-24 01:08:27,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:08:27,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:08:37,159 INFO [long-pulling] client count 0 + +2025-09-24 01:08:37,159 INFO toNotifyTaskSize = 0 + +2025-09-24 01:08:37,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:08:37,159 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:08:47,159 INFO [long-pulling] client count 0 + +2025-09-24 01:08:47,159 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:08:47,159 INFO toNotifyTaskSize = 0 + +2025-09-24 01:08:47,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:08:57,159 INFO [long-pulling] client count 0 + +2025-09-24 01:08:57,160 INFO toNotifyTaskSize = 0 + +2025-09-24 01:08:57,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:08:57,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:09:07,160 INFO [long-pulling] client count 0 + +2025-09-24 01:09:07,161 INFO toNotifyTaskSize = 0 + +2025-09-24 01:09:07,161 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:09:07,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:09:17,160 INFO [long-pulling] client count 0 + +2025-09-24 01:09:17,161 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:09:17,161 INFO toNotifyTaskSize = 0 + +2025-09-24 01:09:17,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:09:27,161 INFO [long-pulling] client count 0 + +2025-09-24 01:09:27,161 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:09:27,161 INFO toNotifyTaskSize = 0 + +2025-09-24 01:09:27,162 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:09:37,162 INFO [long-pulling] client count 0 + +2025-09-24 01:09:37,163 INFO toNotifyTaskSize = 0 + +2025-09-24 01:09:37,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:09:37,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:09:47,163 INFO [long-pulling] client count 0 + +2025-09-24 01:09:47,163 INFO toNotifyTaskSize = 0 + +2025-09-24 01:09:47,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:09:47,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:09:57,164 INFO [long-pulling] client count 0 + +2025-09-24 01:09:57,164 INFO toNotifyTaskSize = 0 + +2025-09-24 01:09:57,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:09:57,164 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:10:07,165 INFO [long-pulling] client count 0 + +2025-09-24 01:10:07,165 INFO toNotifyTaskSize = 0 + +2025-09-24 01:10:07,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:10:07,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:10:17,166 INFO [long-pulling] client count 0 + +2025-09-24 01:10:17,166 INFO toNotifyTaskSize = 0 + +2025-09-24 01:10:17,167 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:10:17,166 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:10:27,167 INFO [long-pulling] client count 0 + +2025-09-24 01:10:27,168 INFO toNotifyTaskSize = 0 + +2025-09-24 01:10:27,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:10:27,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:10:37,169 INFO [long-pulling] client count 0 + +2025-09-24 01:10:37,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:10:37,169 INFO toNotifyTaskSize = 0 + +2025-09-24 01:10:37,169 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:10:47,169 INFO [long-pulling] client count 0 + +2025-09-24 01:10:47,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:10:47,169 INFO toNotifyTaskSize = 0 + +2025-09-24 01:10:47,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:10:57,170 INFO [long-pulling] client count 0 + +2025-09-24 01:10:57,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:10:57,171 INFO toNotifyTaskSize = 0 + +2025-09-24 01:10:57,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:11:07,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:11:07,171 INFO [long-pulling] client count 0 + +2025-09-24 01:11:07,171 INFO toNotifyTaskSize = 0 + +2025-09-24 01:11:07,172 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:11:17,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:11:17,172 INFO toNotifyTaskSize = 0 + +2025-09-24 01:11:17,172 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:11:17,172 INFO [long-pulling] client count 0 + +2025-09-24 01:11:27,173 INFO [long-pulling] client count 0 + +2025-09-24 01:11:27,173 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:11:27,173 INFO toNotifyTaskSize = 0 + +2025-09-24 01:11:27,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:11:37,174 INFO [long-pulling] client count 0 + +2025-09-24 01:11:37,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:11:37,174 INFO toNotifyTaskSize = 0 + +2025-09-24 01:11:37,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:11:47,175 INFO [long-pulling] client count 0 + +2025-09-24 01:11:47,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:11:47,175 INFO toNotifyTaskSize = 0 + +2025-09-24 01:11:47,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:11:57,175 INFO [long-pulling] client count 0 + +2025-09-24 01:11:57,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:11:57,175 INFO toNotifyTaskSize = 0 + +2025-09-24 01:11:57,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:12:07,176 INFO toNotifyTaskSize = 0 + +2025-09-24 01:12:07,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:12:07,176 INFO [long-pulling] client count 0 + +2025-09-24 01:12:07,176 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:12:17,177 INFO [long-pulling] client count 0 + +2025-09-24 01:12:17,178 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:12:17,178 INFO toNotifyTaskSize = 0 + +2025-09-24 01:12:17,178 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:12:27,178 INFO [long-pulling] client count 0 + +2025-09-24 01:12:27,178 INFO toNotifyTaskSize = 0 + +2025-09-24 01:12:27,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:12:27,178 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:12:37,179 INFO toNotifyTaskSize = 0 + +2025-09-24 01:12:37,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:12:37,179 INFO [long-pulling] client count 0 + +2025-09-24 01:12:37,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:12:47,180 INFO [long-pulling] client count 0 + +2025-09-24 01:12:47,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:12:47,181 INFO toNotifyTaskSize = 0 + +2025-09-24 01:12:47,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:12:57,181 INFO [long-pulling] client count 0 + +2025-09-24 01:12:57,181 INFO toNotifyTaskSize = 0 + +2025-09-24 01:12:57,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:12:57,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:13:07,182 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:13:07,182 INFO toNotifyTaskSize = 0 + +2025-09-24 01:13:07,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:13:07,182 INFO [long-pulling] client count 0 + +2025-09-24 01:13:17,182 INFO toNotifyTaskSize = 0 + +2025-09-24 01:13:17,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:13:17,183 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:13:17,183 INFO [long-pulling] client count 0 + +2025-09-24 01:13:27,184 INFO [long-pulling] client count 0 + +2025-09-24 01:13:27,184 INFO toNotifyTaskSize = 0 + +2025-09-24 01:13:27,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:13:27,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:13:37,185 INFO [long-pulling] client count 0 + +2025-09-24 01:13:37,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:13:37,185 INFO toNotifyTaskSize = 0 + +2025-09-24 01:13:37,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:13:47,186 INFO [long-pulling] client count 0 + +2025-09-24 01:13:47,186 INFO toNotifyTaskSize = 0 + +2025-09-24 01:13:47,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:13:47,187 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:13:57,187 INFO [long-pulling] client count 0 + +2025-09-24 01:13:57,187 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:13:57,187 INFO toNotifyTaskSize = 0 + +2025-09-24 01:13:57,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:14:07,189 INFO [long-pulling] client count 0 + +2025-09-24 01:14:07,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:14:07,189 INFO toNotifyTaskSize = 0 + +2025-09-24 01:14:07,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:14:17,189 INFO [long-pulling] client count 0 + +2025-09-24 01:14:17,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:14:17,189 INFO toNotifyTaskSize = 0 + +2025-09-24 01:14:17,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:14:27,190 INFO [long-pulling] client count 0 + +2025-09-24 01:14:27,190 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:14:27,190 INFO toNotifyTaskSize = 0 + +2025-09-24 01:14:27,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:14:37,191 INFO [long-pulling] client count 0 + +2025-09-24 01:14:37,191 INFO toNotifyTaskSize = 0 + +2025-09-24 01:14:37,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:14:37,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:14:47,191 INFO [long-pulling] client count 0 + +2025-09-24 01:14:47,192 INFO toNotifyTaskSize = 0 + +2025-09-24 01:14:47,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:14:47,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:14:57,192 INFO [long-pulling] client count 0 + +2025-09-24 01:14:57,192 INFO toNotifyTaskSize = 0 + +2025-09-24 01:14:57,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:14:57,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:15:07,192 INFO [long-pulling] client count 0 + +2025-09-24 01:15:07,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:15:07,192 INFO toNotifyTaskSize = 0 + +2025-09-24 01:15:07,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:15:17,193 INFO [long-pulling] client count 0 + +2025-09-24 01:15:17,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:15:17,193 INFO toNotifyTaskSize = 0 + +2025-09-24 01:15:17,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:15:27,194 INFO [long-pulling] client count 0 + +2025-09-24 01:15:27,194 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:15:27,194 INFO toNotifyTaskSize = 0 + +2025-09-24 01:15:27,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:15:37,194 INFO [long-pulling] client count 0 + +2025-09-24 01:15:37,194 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:15:37,194 INFO toNotifyTaskSize = 0 + +2025-09-24 01:15:37,195 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:15:47,195 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:15:47,196 INFO toNotifyTaskSize = 0 + +2025-09-24 01:15:47,196 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:15:47,196 INFO [long-pulling] client count 0 + +2025-09-24 01:15:57,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:15:57,196 INFO toNotifyTaskSize = 0 + +2025-09-24 01:15:57,197 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:15:57,197 INFO [long-pulling] client count 0 + +2025-09-24 01:16:07,197 INFO [long-pulling] client count 0 + +2025-09-24 01:16:07,197 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:16:07,197 INFO toNotifyTaskSize = 0 + +2025-09-24 01:16:07,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:16:17,198 INFO [long-pulling] client count 0 + +2025-09-24 01:16:17,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:16:17,198 INFO toNotifyTaskSize = 0 + +2025-09-24 01:16:17,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:16:27,198 INFO [long-pulling] client count 0 + +2025-09-24 01:16:27,199 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:16:27,199 INFO toNotifyTaskSize = 0 + +2025-09-24 01:16:27,200 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:16:37,200 INFO [long-pulling] client count 0 + +2025-09-24 01:16:37,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:16:37,200 INFO toNotifyTaskSize = 0 + +2025-09-24 01:16:37,200 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:16:47,201 INFO [long-pulling] client count 0 + +2025-09-24 01:16:47,201 INFO toNotifyTaskSize = 0 + +2025-09-24 01:16:47,201 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:16:47,201 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:16:57,202 INFO [long-pulling] client count 0 + +2025-09-24 01:16:57,203 INFO toNotifyTaskSize = 0 + +2025-09-24 01:16:57,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:16:57,204 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:17:07,204 INFO [long-pulling] client count 0 + +2025-09-24 01:17:07,204 INFO toNotifyTaskSize = 0 + +2025-09-24 01:17:07,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:17:07,204 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:17:17,204 INFO [long-pulling] client count 0 + +2025-09-24 01:17:17,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:17:17,205 INFO toNotifyTaskSize = 0 + +2025-09-24 01:17:17,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:17:27,205 INFO [long-pulling] client count 0 + +2025-09-24 01:17:27,205 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:17:27,205 INFO toNotifyTaskSize = 0 + +2025-09-24 01:17:27,206 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:17:37,206 INFO [long-pulling] client count 0 + +2025-09-24 01:17:37,206 INFO toNotifyTaskSize = 0 + +2025-09-24 01:17:37,206 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:17:37,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:17:47,207 INFO [long-pulling] client count 0 + +2025-09-24 01:17:47,207 INFO toNotifyTaskSize = 0 + +2025-09-24 01:17:47,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:17:47,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:17:57,208 INFO [long-pulling] client count 0 + +2025-09-24 01:17:57,209 INFO toNotifyTaskSize = 0 + +2025-09-24 01:17:57,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:17:57,209 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:18:07,209 INFO [long-pulling] client count 0 + +2025-09-24 01:18:07,210 INFO toNotifyTaskSize = 0 + +2025-09-24 01:18:07,210 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:18:07,210 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:18:17,210 INFO [long-pulling] client count 0 + +2025-09-24 01:18:17,210 INFO toNotifyTaskSize = 0 + +2025-09-24 01:18:17,210 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:18:17,210 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:18:27,210 INFO [long-pulling] client count 0 + +2025-09-24 01:18:27,211 INFO toNotifyTaskSize = 0 + +2025-09-24 01:18:27,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:18:27,211 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:18:37,211 INFO [long-pulling] client count 0 + +2025-09-24 01:18:37,212 INFO toNotifyTaskSize = 0 + +2025-09-24 01:18:37,212 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:18:37,212 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:18:47,212 INFO [long-pulling] client count 0 + +2025-09-24 01:18:47,212 INFO toNotifyTaskSize = 0 + +2025-09-24 01:18:47,213 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:18:47,212 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:18:57,214 INFO [long-pulling] client count 0 + +2025-09-24 01:18:57,214 INFO toNotifyTaskSize = 0 + +2025-09-24 01:18:57,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:18:57,215 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:19:07,215 INFO [long-pulling] client count 0 + +2025-09-24 01:19:07,215 INFO toNotifyTaskSize = 0 + +2025-09-24 01:19:07,215 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:19:07,215 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:19:17,216 INFO [long-pulling] client count 0 + +2025-09-24 01:19:17,216 INFO toNotifyTaskSize = 0 + +2025-09-24 01:19:17,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:19:17,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:19:27,217 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:19:27,217 INFO toNotifyTaskSize = 0 + +2025-09-24 01:19:27,217 INFO [long-pulling] client count 0 + +2025-09-24 01:19:27,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:19:37,218 INFO [long-pulling] client count 0 + +2025-09-24 01:19:37,218 INFO toNotifyTaskSize = 0 + +2025-09-24 01:19:37,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:19:37,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:19:47,219 INFO [long-pulling] client count 0 + +2025-09-24 01:19:47,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:19:47,219 INFO toNotifyTaskSize = 0 + +2025-09-24 01:19:47,219 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:19:57,221 INFO [long-pulling] client count 0 + +2025-09-24 01:19:57,228 INFO toNotifyTaskSize = 0 + +2025-09-24 01:19:57,228 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:19:57,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:20:07,228 INFO [long-pulling] client count 0 + +2025-09-24 01:20:07,229 INFO toNotifyTaskSize = 0 + +2025-09-24 01:20:07,229 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:20:07,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:20:17,230 INFO [long-pulling] client count 0 + +2025-09-24 01:20:17,230 INFO toNotifyTaskSize = 0 + +2025-09-24 01:20:17,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:20:17,231 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:20:27,231 INFO [long-pulling] client count 0 + +2025-09-24 01:20:27,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:20:27,231 INFO toNotifyTaskSize = 0 + +2025-09-24 01:20:27,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:20:37,232 INFO [long-pulling] client count 0 + +2025-09-24 01:20:37,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:20:37,233 INFO toNotifyTaskSize = 0 + +2025-09-24 01:20:37,233 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:20:47,233 INFO [long-pulling] client count 0 + +2025-09-24 01:20:47,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:20:47,234 INFO toNotifyTaskSize = 0 + +2025-09-24 01:20:47,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:20:57,233 INFO [long-pulling] client count 0 + +2025-09-24 01:20:57,234 INFO toNotifyTaskSize = 0 + +2025-09-24 01:20:57,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:20:57,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:21:07,234 INFO [long-pulling] client count 0 + +2025-09-24 01:21:07,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:21:07,235 INFO toNotifyTaskSize = 0 + +2025-09-24 01:21:07,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:21:17,234 INFO [long-pulling] client count 0 + +2025-09-24 01:21:17,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:21:17,237 INFO toNotifyTaskSize = 0 + +2025-09-24 01:21:17,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:21:27,236 INFO [long-pulling] client count 0 + +2025-09-24 01:21:27,238 INFO toNotifyTaskSize = 0 + +2025-09-24 01:21:27,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:21:27,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:21:37,238 INFO [long-pulling] client count 0 + +2025-09-24 01:21:37,239 INFO toNotifyTaskSize = 0 + +2025-09-24 01:21:37,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:21:37,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:21:47,239 INFO [long-pulling] client count 0 + +2025-09-24 01:21:47,240 INFO toNotifyTaskSize = 0 + +2025-09-24 01:21:47,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:21:47,240 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:21:57,240 INFO [long-pulling] client count 0 + +2025-09-24 01:21:57,241 INFO toNotifyTaskSize = 0 + +2025-09-24 01:21:57,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:21:57,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:22:07,240 INFO [long-pulling] client count 0 + +2025-09-24 01:22:07,241 INFO toNotifyTaskSize = 0 + +2025-09-24 01:22:07,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:22:07,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:22:17,241 INFO [long-pulling] client count 0 + +2025-09-24 01:22:17,242 INFO toNotifyTaskSize = 0 + +2025-09-24 01:22:17,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:22:17,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:22:27,243 INFO [long-pulling] client count 0 + +2025-09-24 01:22:27,243 INFO toNotifyTaskSize = 0 + +2025-09-24 01:22:27,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:22:27,243 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:22:37,245 INFO [long-pulling] client count 0 + +2025-09-24 01:22:37,245 INFO toNotifyTaskSize = 0 + +2025-09-24 01:22:37,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:22:37,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:22:47,246 INFO [long-pulling] client count 0 + +2025-09-24 01:22:47,246 INFO toNotifyTaskSize = 0 + +2025-09-24 01:22:47,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:22:47,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:22:57,248 INFO [long-pulling] client count 0 + +2025-09-24 01:22:57,248 INFO toNotifyTaskSize = 0 + +2025-09-24 01:22:57,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:22:57,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:23:07,249 INFO [long-pulling] client count 0 + +2025-09-24 01:23:07,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:23:07,249 INFO toNotifyTaskSize = 0 + +2025-09-24 01:23:07,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:23:17,249 INFO [long-pulling] client count 0 + +2025-09-24 01:23:17,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:23:17,249 INFO toNotifyTaskSize = 0 + +2025-09-24 01:23:17,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:23:27,250 INFO [long-pulling] client count 0 + +2025-09-24 01:23:27,251 INFO toNotifyTaskSize = 0 + +2025-09-24 01:23:27,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:23:27,251 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:23:37,251 INFO [long-pulling] client count 0 + +2025-09-24 01:23:37,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:23:37,252 INFO toNotifyTaskSize = 0 + +2025-09-24 01:23:37,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:23:47,253 INFO [long-pulling] client count 0 + +2025-09-24 01:23:47,253 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:23:47,253 INFO toNotifyTaskSize = 0 + +2025-09-24 01:23:47,253 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:23:57,254 INFO [long-pulling] client count 0 + +2025-09-24 01:23:57,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:23:57,255 INFO toNotifyTaskSize = 0 + +2025-09-24 01:23:57,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:24:07,255 INFO [long-pulling] client count 0 + +2025-09-24 01:24:07,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:24:07,255 INFO toNotifyTaskSize = 0 + +2025-09-24 01:24:07,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:24:17,255 INFO [long-pulling] client count 0 + +2025-09-24 01:24:17,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:24:17,256 INFO toNotifyTaskSize = 0 + +2025-09-24 01:24:17,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:24:27,256 INFO [long-pulling] client count 0 + +2025-09-24 01:24:27,256 INFO toNotifyTaskSize = 0 + +2025-09-24 01:24:27,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:24:27,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:24:37,257 INFO [long-pulling] client count 0 + +2025-09-24 01:24:37,257 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:24:37,257 INFO toNotifyTaskSize = 0 + +2025-09-24 01:24:37,257 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:24:47,257 INFO [long-pulling] client count 0 + +2025-09-24 01:24:47,257 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:24:47,258 INFO toNotifyTaskSize = 0 + +2025-09-24 01:24:47,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:24:57,259 INFO [long-pulling] client count 0 + +2025-09-24 01:24:57,259 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:24:57,259 INFO toNotifyTaskSize = 0 + +2025-09-24 01:24:57,259 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:25:07,261 INFO [long-pulling] client count 0 + +2025-09-24 01:25:07,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:25:07,261 INFO toNotifyTaskSize = 0 + +2025-09-24 01:25:07,261 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:25:17,261 INFO [long-pulling] client count 0 + +2025-09-24 01:25:17,261 INFO toNotifyTaskSize = 0 + +2025-09-24 01:25:17,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:25:17,262 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:25:27,263 INFO [long-pulling] client count 0 + +2025-09-24 01:25:27,263 INFO toNotifyTaskSize = 0 + +2025-09-24 01:25:27,263 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:25:27,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:25:37,263 INFO [long-pulling] client count 0 + +2025-09-24 01:25:37,264 INFO toNotifyTaskSize = 0 + +2025-09-24 01:25:37,264 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:25:37,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:25:47,265 INFO [long-pulling] client count 0 + +2025-09-24 01:25:47,265 INFO toNotifyTaskSize = 0 + +2025-09-24 01:25:47,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:25:47,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:25:57,265 INFO [long-pulling] client count 0 + +2025-09-24 01:25:57,265 INFO toNotifyTaskSize = 0 + +2025-09-24 01:25:57,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:25:57,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:26:07,266 INFO [long-pulling] client count 0 + +2025-09-24 01:26:07,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:26:07,267 INFO toNotifyTaskSize = 0 + +2025-09-24 01:26:07,267 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:26:17,267 INFO [long-pulling] client count 0 + +2025-09-24 01:26:17,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:26:17,267 INFO toNotifyTaskSize = 0 + +2025-09-24 01:26:17,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:26:27,268 INFO [long-pulling] client count 0 + +2025-09-24 01:26:27,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:26:27,268 INFO toNotifyTaskSize = 0 + +2025-09-24 01:26:27,269 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:26:37,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:26:37,269 INFO toNotifyTaskSize = 0 + +2025-09-24 01:26:37,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:26:37,269 INFO [long-pulling] client count 0 + +2025-09-24 01:26:47,270 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:26:47,270 INFO toNotifyTaskSize = 0 + +2025-09-24 01:26:47,270 INFO [long-pulling] client count 0 + +2025-09-24 01:26:47,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:26:57,270 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:26:57,271 INFO toNotifyTaskSize = 0 + +2025-09-24 01:26:57,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:26:57,271 INFO [long-pulling] client count 0 + +2025-09-24 01:27:07,272 INFO [long-pulling] client count 0 + +2025-09-24 01:27:07,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:27:07,272 INFO toNotifyTaskSize = 0 + +2025-09-24 01:27:07,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:27:17,274 INFO [long-pulling] client count 0 + +2025-09-24 01:27:17,274 INFO toNotifyTaskSize = 0 + +2025-09-24 01:27:17,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:27:17,275 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:27:27,276 INFO [long-pulling] client count 0 + +2025-09-24 01:27:27,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:27:27,276 INFO toNotifyTaskSize = 0 + +2025-09-24 01:27:27,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:27:37,278 INFO [long-pulling] client count 0 + +2025-09-24 01:27:37,278 INFO toNotifyTaskSize = 0 + +2025-09-24 01:27:37,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:27:37,278 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:27:47,279 INFO [long-pulling] client count 0 + +2025-09-24 01:27:47,279 INFO toNotifyTaskSize = 0 + +2025-09-24 01:27:47,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:27:47,279 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:27:57,279 INFO [long-pulling] client count 0 + +2025-09-24 01:27:57,280 INFO toNotifyTaskSize = 0 + +2025-09-24 01:27:57,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:27:57,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:28:07,280 INFO [long-pulling] client count 0 + +2025-09-24 01:28:07,280 INFO toNotifyTaskSize = 0 + +2025-09-24 01:28:07,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:28:07,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:28:17,280 INFO [long-pulling] client count 0 + +2025-09-24 01:28:17,281 INFO toNotifyTaskSize = 0 + +2025-09-24 01:28:17,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:28:17,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:28:27,281 INFO [long-pulling] client count 0 + +2025-09-24 01:28:27,281 INFO toNotifyTaskSize = 0 + +2025-09-24 01:28:27,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:28:27,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:28:37,283 INFO [long-pulling] client count 0 + +2025-09-24 01:28:37,283 INFO toNotifyTaskSize = 0 + +2025-09-24 01:28:37,283 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:28:37,283 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:28:47,285 INFO [long-pulling] client count 0 + +2025-09-24 01:28:47,285 INFO toNotifyTaskSize = 0 + +2025-09-24 01:28:47,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:28:47,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:28:57,287 INFO [long-pulling] client count 0 + +2025-09-24 01:28:57,287 INFO toNotifyTaskSize = 0 + +2025-09-24 01:28:57,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:28:57,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:29:07,288 INFO [long-pulling] client count 0 + +2025-09-24 01:29:07,288 INFO toNotifyTaskSize = 0 + +2025-09-24 01:29:07,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:29:07,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:29:17,288 INFO [long-pulling] client count 0 + +2025-09-24 01:29:17,288 INFO toNotifyTaskSize = 0 + +2025-09-24 01:29:17,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:29:17,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:29:27,291 INFO [long-pulling] client count 0 + +2025-09-24 01:29:27,291 INFO toNotifyTaskSize = 0 + +2025-09-24 01:29:27,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:29:27,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:29:37,291 INFO [long-pulling] client count 0 + +2025-09-24 01:29:37,291 INFO toNotifyTaskSize = 0 + +2025-09-24 01:29:37,292 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:29:37,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:29:47,292 INFO [long-pulling] client count 0 + +2025-09-24 01:29:47,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:29:47,292 INFO toNotifyTaskSize = 0 + +2025-09-24 01:29:47,292 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:29:57,292 INFO [long-pulling] client count 0 + +2025-09-24 01:29:57,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:29:57,292 INFO toNotifyTaskSize = 0 + +2025-09-24 01:29:57,292 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:30:07,293 INFO [long-pulling] client count 0 + +2025-09-24 01:30:07,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:30:07,293 INFO toNotifyTaskSize = 0 + +2025-09-24 01:30:07,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:30:17,294 INFO [long-pulling] client count 0 + +2025-09-24 01:30:17,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:30:17,294 INFO toNotifyTaskSize = 0 + +2025-09-24 01:30:17,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:30:27,295 INFO [long-pulling] client count 0 + +2025-09-24 01:30:27,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:30:27,295 INFO toNotifyTaskSize = 0 + +2025-09-24 01:30:27,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:30:37,298 INFO [long-pulling] client count 0 + +2025-09-24 01:30:37,298 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:30:37,298 INFO toNotifyTaskSize = 0 + +2025-09-24 01:30:37,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:30:47,300 INFO [long-pulling] client count 0 + +2025-09-24 01:30:47,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:30:47,300 INFO toNotifyTaskSize = 0 + +2025-09-24 01:30:47,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:30:57,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:30:57,300 INFO [long-pulling] client count 0 + +2025-09-24 01:30:57,300 INFO toNotifyTaskSize = 0 + +2025-09-24 01:30:57,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:31:07,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:31:07,303 INFO toNotifyTaskSize = 0 + +2025-09-24 01:31:07,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:31:07,303 INFO [long-pulling] client count 0 + +2025-09-24 01:31:17,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:31:17,303 INFO toNotifyTaskSize = 0 + +2025-09-24 01:31:17,304 INFO [long-pulling] client count 0 + +2025-09-24 01:31:17,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:31:27,304 INFO [long-pulling] client count 0 + +2025-09-24 01:31:27,304 INFO toNotifyTaskSize = 0 + +2025-09-24 01:31:27,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:31:27,304 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:31:37,305 INFO [long-pulling] client count 0 + +2025-09-24 01:31:37,305 INFO toNotifyTaskSize = 0 + +2025-09-24 01:31:37,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:31:37,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:31:47,305 INFO [long-pulling] client count 0 + +2025-09-24 01:31:47,305 INFO toNotifyTaskSize = 0 + +2025-09-24 01:31:47,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:31:47,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:31:57,305 INFO [long-pulling] client count 0 + +2025-09-24 01:31:57,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:31:57,305 INFO toNotifyTaskSize = 0 + +2025-09-24 01:31:57,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:32:07,307 INFO [long-pulling] client count 0 + +2025-09-24 01:32:07,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:32:07,307 INFO toNotifyTaskSize = 0 + +2025-09-24 01:32:07,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:32:17,307 INFO [long-pulling] client count 0 + +2025-09-24 01:32:17,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:32:17,307 INFO toNotifyTaskSize = 0 + +2025-09-24 01:32:17,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:32:27,308 INFO [long-pulling] client count 0 + +2025-09-24 01:32:27,308 INFO toNotifyTaskSize = 0 + +2025-09-24 01:32:27,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:32:27,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:32:37,309 INFO [long-pulling] client count 0 + +2025-09-24 01:32:37,309 INFO toNotifyTaskSize = 0 + +2025-09-24 01:32:37,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:32:37,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:32:47,310 INFO [long-pulling] client count 0 + +2025-09-24 01:32:47,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:32:47,310 INFO toNotifyTaskSize = 0 + +2025-09-24 01:32:47,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:32:57,311 INFO [long-pulling] client count 0 + +2025-09-24 01:32:57,311 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:32:57,311 INFO toNotifyTaskSize = 0 + +2025-09-24 01:32:57,311 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:33:07,313 INFO [long-pulling] client count 0 + +2025-09-24 01:33:07,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:33:07,313 INFO toNotifyTaskSize = 0 + +2025-09-24 01:33:07,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:33:17,314 INFO [long-pulling] client count 0 + +2025-09-24 01:33:17,314 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:33:17,314 INFO toNotifyTaskSize = 0 + +2025-09-24 01:33:17,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:33:27,315 INFO [long-pulling] client count 0 + +2025-09-24 01:33:27,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:33:27,315 INFO toNotifyTaskSize = 0 + +2025-09-24 01:33:27,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:33:37,317 INFO [long-pulling] client count 0 + +2025-09-24 01:33:37,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:33:37,318 INFO toNotifyTaskSize = 0 + +2025-09-24 01:33:37,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:33:47,318 INFO [long-pulling] client count 0 + +2025-09-24 01:33:47,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:33:47,318 INFO toNotifyTaskSize = 0 + +2025-09-24 01:33:47,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:33:57,318 INFO [long-pulling] client count 0 + +2025-09-24 01:33:57,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:33:57,318 INFO toNotifyTaskSize = 0 + +2025-09-24 01:33:57,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:34:07,319 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:34:07,319 INFO [long-pulling] client count 0 + +2025-09-24 01:34:07,319 INFO toNotifyTaskSize = 0 + +2025-09-24 01:34:07,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:34:17,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:34:17,320 INFO toNotifyTaskSize = 0 + +2025-09-24 01:34:17,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:34:17,320 INFO [long-pulling] client count 0 + +2025-09-24 01:34:27,320 INFO [long-pulling] client count 0 + +2025-09-24 01:34:27,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:34:27,321 INFO toNotifyTaskSize = 0 + +2025-09-24 01:34:27,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:34:37,323 INFO [long-pulling] client count 0 + +2025-09-24 01:34:37,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:34:37,324 INFO toNotifyTaskSize = 0 + +2025-09-24 01:34:37,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:34:47,324 INFO [long-pulling] client count 0 + +2025-09-24 01:34:47,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:34:47,324 INFO toNotifyTaskSize = 0 + +2025-09-24 01:34:47,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:34:57,325 INFO [long-pulling] client count 0 + +2025-09-24 01:34:57,325 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:34:57,326 INFO toNotifyTaskSize = 0 + +2025-09-24 01:34:57,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:35:07,327 INFO [long-pulling] client count 0 + +2025-09-24 01:35:07,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:35:07,327 INFO toNotifyTaskSize = 0 + +2025-09-24 01:35:07,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:35:17,327 INFO [long-pulling] client count 0 + +2025-09-24 01:35:17,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:35:17,328 INFO toNotifyTaskSize = 0 + +2025-09-24 01:35:17,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:35:27,328 INFO [long-pulling] client count 0 + +2025-09-24 01:35:27,329 INFO toNotifyTaskSize = 0 + +2025-09-24 01:35:27,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:35:27,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:35:37,329 INFO [long-pulling] client count 0 + +2025-09-24 01:35:37,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:35:37,329 INFO toNotifyTaskSize = 0 + +2025-09-24 01:35:37,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:35:47,330 INFO [long-pulling] client count 0 + +2025-09-24 01:35:47,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:35:47,330 INFO toNotifyTaskSize = 0 + +2025-09-24 01:35:47,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:35:57,331 INFO [long-pulling] client count 0 + +2025-09-24 01:35:57,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:35:57,331 INFO toNotifyTaskSize = 0 + +2025-09-24 01:35:57,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:36:07,333 INFO [long-pulling] client count 0 + +2025-09-24 01:36:07,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:36:07,333 INFO toNotifyTaskSize = 0 + +2025-09-24 01:36:07,334 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:36:17,336 INFO [long-pulling] client count 0 + +2025-09-24 01:36:17,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:36:17,336 INFO toNotifyTaskSize = 0 + +2025-09-24 01:36:17,336 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:36:27,337 INFO [long-pulling] client count 0 + +2025-09-24 01:36:27,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:36:27,337 INFO toNotifyTaskSize = 0 + +2025-09-24 01:36:27,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:36:37,337 INFO [long-pulling] client count 0 + +2025-09-24 01:36:37,337 INFO toNotifyTaskSize = 0 + +2025-09-24 01:36:37,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:36:37,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:36:47,339 INFO [long-pulling] client count 0 + +2025-09-24 01:36:47,339 INFO toNotifyTaskSize = 0 + +2025-09-24 01:36:47,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:36:47,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:36:57,341 INFO [long-pulling] client count 0 + +2025-09-24 01:36:57,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:36:57,341 INFO toNotifyTaskSize = 0 + +2025-09-24 01:36:57,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:37:07,342 INFO toNotifyTaskSize = 0 + +2025-09-24 01:37:07,342 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:37:07,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:37:07,342 INFO [long-pulling] client count 0 + +2025-09-24 01:37:17,343 INFO [long-pulling] client count 0 + +2025-09-24 01:37:17,343 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:37:17,343 INFO toNotifyTaskSize = 0 + +2025-09-24 01:37:17,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:37:27,345 INFO [long-pulling] client count 0 + +2025-09-24 01:37:27,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:37:27,345 INFO toNotifyTaskSize = 0 + +2025-09-24 01:37:27,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:37:37,346 INFO [long-pulling] client count 0 + +2025-09-24 01:37:37,346 INFO toNotifyTaskSize = 0 + +2025-09-24 01:37:37,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:37:37,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:37:47,348 INFO [long-pulling] client count 0 + +2025-09-24 01:37:47,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:37:47,348 INFO toNotifyTaskSize = 0 + +2025-09-24 01:37:47,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:37:57,349 INFO [long-pulling] client count 0 + +2025-09-24 01:37:57,349 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:37:57,349 INFO toNotifyTaskSize = 0 + +2025-09-24 01:37:57,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:38:07,349 INFO [long-pulling] client count 0 + +2025-09-24 01:38:07,350 INFO toNotifyTaskSize = 0 + +2025-09-24 01:38:07,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:38:07,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:38:17,351 INFO [long-pulling] client count 0 + +2025-09-24 01:38:17,351 INFO toNotifyTaskSize = 0 + +2025-09-24 01:38:17,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:38:17,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:38:27,352 INFO [long-pulling] client count 0 + +2025-09-24 01:38:27,352 INFO toNotifyTaskSize = 0 + +2025-09-24 01:38:27,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:38:27,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:38:37,352 INFO [long-pulling] client count 0 + +2025-09-24 01:38:37,354 INFO toNotifyTaskSize = 0 + +2025-09-24 01:38:37,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:38:37,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:38:47,354 INFO [long-pulling] client count 0 + +2025-09-24 01:38:47,356 INFO toNotifyTaskSize = 0 + +2025-09-24 01:38:47,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:38:47,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:38:57,354 INFO [long-pulling] client count 0 + +2025-09-24 01:38:57,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:38:57,357 INFO toNotifyTaskSize = 0 + +2025-09-24 01:38:57,357 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:39:07,355 INFO [long-pulling] client count 0 + +2025-09-24 01:39:07,358 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:39:07,358 INFO toNotifyTaskSize = 0 + +2025-09-24 01:39:07,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:39:17,358 INFO [long-pulling] client count 0 + +2025-09-24 01:39:17,360 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:39:17,360 INFO toNotifyTaskSize = 0 + +2025-09-24 01:39:17,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:39:27,360 INFO [long-pulling] client count 0 + +2025-09-24 01:39:27,362 INFO toNotifyTaskSize = 0 + +2025-09-24 01:39:27,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:39:27,362 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:39:37,360 INFO [long-pulling] client count 0 + +2025-09-24 01:39:37,363 INFO toNotifyTaskSize = 0 + +2025-09-24 01:39:37,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:39:37,363 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:39:47,361 INFO [long-pulling] client count 0 + +2025-09-24 01:39:47,364 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:39:47,364 INFO toNotifyTaskSize = 0 + +2025-09-24 01:39:47,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:39:57,362 INFO [long-pulling] client count 0 + +2025-09-24 01:39:57,364 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:39:57,364 INFO toNotifyTaskSize = 0 + +2025-09-24 01:39:57,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:40:07,363 INFO [long-pulling] client count 0 + +2025-09-24 01:40:07,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:40:07,365 INFO toNotifyTaskSize = 0 + +2025-09-24 01:40:07,365 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:40:17,364 INFO [long-pulling] client count 0 + +2025-09-24 01:40:17,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:40:17,365 INFO toNotifyTaskSize = 0 + +2025-09-24 01:40:17,365 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:40:27,364 INFO [long-pulling] client count 0 + +2025-09-24 01:40:27,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:40:27,367 INFO toNotifyTaskSize = 0 + +2025-09-24 01:40:27,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:40:37,365 INFO [long-pulling] client count 0 + +2025-09-24 01:40:37,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:40:37,368 INFO toNotifyTaskSize = 0 + +2025-09-24 01:40:37,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:40:47,366 INFO [long-pulling] client count 0 + +2025-09-24 01:40:47,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:40:47,368 INFO toNotifyTaskSize = 0 + +2025-09-24 01:40:47,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:40:57,367 INFO [long-pulling] client count 0 + +2025-09-24 01:40:57,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:40:57,368 INFO toNotifyTaskSize = 0 + +2025-09-24 01:40:57,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:41:07,368 INFO [long-pulling] client count 0 + +2025-09-24 01:41:07,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:41:07,370 INFO toNotifyTaskSize = 0 + +2025-09-24 01:41:07,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:41:17,371 INFO [long-pulling] client count 0 + +2025-09-24 01:41:17,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:41:17,374 INFO toNotifyTaskSize = 0 + +2025-09-24 01:41:17,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:41:27,371 INFO [long-pulling] client count 0 + +2025-09-24 01:41:27,376 INFO toNotifyTaskSize = 0 + +2025-09-24 01:41:27,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:41:27,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:41:37,372 INFO [long-pulling] client count 0 + +2025-09-24 01:41:37,377 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:41:37,377 INFO toNotifyTaskSize = 0 + +2025-09-24 01:41:37,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:41:47,372 INFO [long-pulling] client count 0 + +2025-09-24 01:41:47,377 INFO toNotifyTaskSize = 0 + +2025-09-24 01:41:47,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:41:47,377 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:41:57,374 INFO [long-pulling] client count 0 + +2025-09-24 01:41:57,379 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:41:57,380 INFO toNotifyTaskSize = 0 + +2025-09-24 01:41:57,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:42:07,375 INFO [long-pulling] client count 0 + +2025-09-24 01:42:07,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:42:07,382 INFO toNotifyTaskSize = 0 + +2025-09-24 01:42:07,382 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:42:17,376 INFO [long-pulling] client count 0 + +2025-09-24 01:42:17,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:42:17,382 INFO toNotifyTaskSize = 0 + +2025-09-24 01:42:17,382 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:42:27,376 INFO [long-pulling] client count 0 + +2025-09-24 01:42:27,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:42:27,383 INFO toNotifyTaskSize = 0 + +2025-09-24 01:42:27,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:42:37,378 INFO [long-pulling] client count 0 + +2025-09-24 01:42:37,385 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:42:37,385 INFO toNotifyTaskSize = 0 + +2025-09-24 01:42:37,385 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:42:47,380 INFO [long-pulling] client count 0 + +2025-09-24 01:42:47,386 INFO toNotifyTaskSize = 0 + +2025-09-24 01:42:47,386 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:42:47,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:42:57,380 INFO [long-pulling] client count 0 + +2025-09-24 01:42:57,386 INFO toNotifyTaskSize = 0 + +2025-09-24 01:42:57,386 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:42:57,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:43:07,380 INFO [long-pulling] client count 0 + +2025-09-24 01:43:07,389 INFO toNotifyTaskSize = 0 + +2025-09-24 01:43:07,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:43:07,389 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:43:17,383 INFO [long-pulling] client count 0 + +2025-09-24 01:43:17,389 INFO toNotifyTaskSize = 0 + +2025-09-24 01:43:17,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:43:17,389 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:43:27,383 INFO [long-pulling] client count 0 + +2025-09-24 01:43:27,391 INFO toNotifyTaskSize = 0 + +2025-09-24 01:43:27,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:43:27,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:43:37,384 INFO [long-pulling] client count 0 + +2025-09-24 01:43:37,392 INFO toNotifyTaskSize = 0 + +2025-09-24 01:43:37,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:43:37,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:43:47,385 INFO [long-pulling] client count 0 + +2025-09-24 01:43:47,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:43:47,393 INFO toNotifyTaskSize = 0 + +2025-09-24 01:43:47,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:43:57,385 INFO [long-pulling] client count 0 + +2025-09-24 01:43:57,395 INFO toNotifyTaskSize = 0 + +2025-09-24 01:43:57,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:43:57,395 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:44:07,386 INFO [long-pulling] client count 0 + +2025-09-24 01:44:07,396 INFO toNotifyTaskSize = 0 + +2025-09-24 01:44:07,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:44:07,396 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:44:17,387 INFO [long-pulling] client count 0 + +2025-09-24 01:44:17,397 INFO toNotifyTaskSize = 0 + +2025-09-24 01:44:17,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:44:17,397 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:44:27,388 INFO [long-pulling] client count 0 + +2025-09-24 01:44:27,399 INFO toNotifyTaskSize = 0 + +2025-09-24 01:44:27,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:44:27,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:44:37,388 INFO [long-pulling] client count 0 + +2025-09-24 01:44:37,400 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:44:37,400 INFO toNotifyTaskSize = 0 + +2025-09-24 01:44:37,400 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:44:47,390 INFO [long-pulling] client count 0 + +2025-09-24 01:44:47,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:44:47,401 INFO toNotifyTaskSize = 0 + +2025-09-24 01:44:47,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:44:57,392 INFO [long-pulling] client count 0 + +2025-09-24 01:44:57,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:44:57,402 INFO toNotifyTaskSize = 0 + +2025-09-24 01:44:57,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:45:07,394 INFO [long-pulling] client count 0 + +2025-09-24 01:45:07,402 INFO toNotifyTaskSize = 0 + +2025-09-24 01:45:07,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:45:07,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:45:17,395 INFO [long-pulling] client count 0 + +2025-09-24 01:45:17,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:45:17,403 INFO toNotifyTaskSize = 0 + +2025-09-24 01:45:17,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:45:27,396 INFO [long-pulling] client count 0 + +2025-09-24 01:45:27,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:45:27,403 INFO toNotifyTaskSize = 0 + +2025-09-24 01:45:27,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:45:37,396 INFO [long-pulling] client count 0 + +2025-09-24 01:45:37,404 INFO toNotifyTaskSize = 0 + +2025-09-24 01:45:37,404 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:45:37,404 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:45:47,398 INFO [long-pulling] client count 0 + +2025-09-24 01:45:47,405 INFO toNotifyTaskSize = 0 + +2025-09-24 01:45:47,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:45:47,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:45:57,398 INFO [long-pulling] client count 0 + +2025-09-24 01:45:57,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:45:57,406 INFO toNotifyTaskSize = 0 + +2025-09-24 01:45:57,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:46:07,399 INFO [long-pulling] client count 0 + +2025-09-24 01:46:07,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:46:07,407 INFO toNotifyTaskSize = 0 + +2025-09-24 01:46:07,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:46:17,401 INFO [long-pulling] client count 0 + +2025-09-24 01:46:17,409 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:46:17,410 INFO toNotifyTaskSize = 0 + +2025-09-24 01:46:17,410 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:46:27,401 INFO [long-pulling] client count 0 + +2025-09-24 01:46:27,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:46:27,410 INFO toNotifyTaskSize = 0 + +2025-09-24 01:46:27,410 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:46:37,402 INFO [long-pulling] client count 0 + +2025-09-24 01:46:37,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:46:37,410 INFO toNotifyTaskSize = 0 + +2025-09-24 01:46:37,410 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:46:47,402 INFO [long-pulling] client count 0 + +2025-09-24 01:46:47,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:46:47,411 INFO toNotifyTaskSize = 0 + +2025-09-24 01:46:47,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:46:57,404 INFO [long-pulling] client count 0 + +2025-09-24 01:46:57,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:46:57,411 INFO toNotifyTaskSize = 0 + +2025-09-24 01:46:57,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:47:07,405 INFO [long-pulling] client count 0 + +2025-09-24 01:47:07,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:47:07,413 INFO toNotifyTaskSize = 0 + +2025-09-24 01:47:07,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:47:17,406 INFO [long-pulling] client count 0 + +2025-09-24 01:47:17,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:47:17,415 INFO toNotifyTaskSize = 0 + +2025-09-24 01:47:17,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:47:27,408 INFO [long-pulling] client count 0 + +2025-09-24 01:47:27,417 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:47:27,417 INFO toNotifyTaskSize = 0 + +2025-09-24 01:47:27,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:47:37,408 INFO [long-pulling] client count 0 + +2025-09-24 01:47:37,417 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:47:37,417 INFO toNotifyTaskSize = 0 + +2025-09-24 01:47:37,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:47:47,410 INFO [long-pulling] client count 0 + +2025-09-24 01:47:47,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:47:47,419 INFO toNotifyTaskSize = 0 + +2025-09-24 01:47:47,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:47:57,411 INFO [long-pulling] client count 0 + +2025-09-24 01:47:57,421 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:47:57,421 INFO toNotifyTaskSize = 0 + +2025-09-24 01:47:57,421 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:48:07,412 INFO [long-pulling] client count 0 + +2025-09-24 01:48:07,422 INFO toNotifyTaskSize = 0 + +2025-09-24 01:48:07,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:48:07,422 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:48:17,412 INFO [long-pulling] client count 0 + +2025-09-24 01:48:17,422 INFO toNotifyTaskSize = 0 + +2025-09-24 01:48:17,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:48:17,422 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:48:27,413 INFO [long-pulling] client count 0 + +2025-09-24 01:48:27,424 INFO toNotifyTaskSize = 0 + +2025-09-24 01:48:27,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:48:27,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:48:37,413 INFO [long-pulling] client count 0 + +2025-09-24 01:48:37,425 INFO toNotifyTaskSize = 0 + +2025-09-24 01:48:37,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:48:37,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:48:47,416 INFO [long-pulling] client count 0 + +2025-09-24 01:48:47,427 INFO toNotifyTaskSize = 0 + +2025-09-24 01:48:47,427 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:48:47,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:48:57,416 INFO [long-pulling] client count 0 + +2025-09-24 01:48:57,427 INFO toNotifyTaskSize = 0 + +2025-09-24 01:48:57,427 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:48:57,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:49:07,418 INFO [long-pulling] client count 0 + +2025-09-24 01:49:07,428 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:49:07,428 INFO toNotifyTaskSize = 0 + +2025-09-24 01:49:07,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:49:17,419 INFO [long-pulling] client count 0 + +2025-09-24 01:49:17,430 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:49:17,430 INFO toNotifyTaskSize = 0 + +2025-09-24 01:49:17,431 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:49:27,421 INFO [long-pulling] client count 0 + +2025-09-24 01:49:27,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:49:27,433 INFO toNotifyTaskSize = 0 + +2025-09-24 01:49:27,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:49:37,422 INFO [long-pulling] client count 0 + +2025-09-24 01:49:37,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:49:37,433 INFO toNotifyTaskSize = 0 + +2025-09-24 01:49:37,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:49:47,423 INFO [long-pulling] client count 0 + +2025-09-24 01:49:47,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:49:47,433 INFO toNotifyTaskSize = 0 + +2025-09-24 01:49:47,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:49:57,427 INFO [long-pulling] client count 0 + +2025-09-24 01:49:57,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:49:57,434 INFO toNotifyTaskSize = 0 + +2025-09-24 01:49:57,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:50:07,428 INFO [long-pulling] client count 0 + +2025-09-24 01:50:07,436 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:50:07,436 INFO toNotifyTaskSize = 0 + +2025-09-24 01:50:07,436 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:50:17,431 INFO [long-pulling] client count 0 + +2025-09-24 01:50:17,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:50:17,438 INFO toNotifyTaskSize = 0 + +2025-09-24 01:50:17,438 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:50:27,433 INFO [long-pulling] client count 0 + +2025-09-24 01:50:27,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:50:27,440 INFO toNotifyTaskSize = 0 + +2025-09-24 01:50:27,440 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:50:37,434 INFO [long-pulling] client count 0 + +2025-09-24 01:50:37,442 INFO toNotifyTaskSize = 0 + +2025-09-24 01:50:37,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:50:37,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:50:47,435 INFO [long-pulling] client count 0 + +2025-09-24 01:50:47,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:50:47,444 INFO toNotifyTaskSize = 0 + +2025-09-24 01:50:47,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:50:57,436 INFO [long-pulling] client count 0 + +2025-09-24 01:50:57,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:50:57,444 INFO toNotifyTaskSize = 0 + +2025-09-24 01:50:57,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:51:07,437 INFO [long-pulling] client count 0 + +2025-09-24 01:51:07,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:51:07,445 INFO toNotifyTaskSize = 0 + +2025-09-24 01:51:07,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:51:17,440 INFO [long-pulling] client count 0 + +2025-09-24 01:51:17,447 INFO toNotifyTaskSize = 0 + +2025-09-24 01:51:17,447 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:51:17,447 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:51:27,440 INFO [long-pulling] client count 0 + +2025-09-24 01:51:27,449 INFO toNotifyTaskSize = 0 + +2025-09-24 01:51:27,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:51:27,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:51:37,442 INFO [long-pulling] client count 0 + +2025-09-24 01:51:37,451 INFO toNotifyTaskSize = 0 + +2025-09-24 01:51:37,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:51:37,451 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:51:47,443 INFO [long-pulling] client count 0 + +2025-09-24 01:51:47,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:51:47,453 INFO toNotifyTaskSize = 0 + +2025-09-24 01:51:47,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:51:57,445 INFO [long-pulling] client count 0 + +2025-09-24 01:51:57,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:51:57,453 INFO toNotifyTaskSize = 0 + +2025-09-24 01:51:57,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:52:07,447 INFO [long-pulling] client count 0 + +2025-09-24 01:52:07,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:52:07,456 INFO toNotifyTaskSize = 0 + +2025-09-24 01:52:07,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:52:17,447 INFO [long-pulling] client count 0 + +2025-09-24 01:52:17,457 INFO toNotifyTaskSize = 0 + +2025-09-24 01:52:17,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:52:17,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:52:27,449 INFO [long-pulling] client count 0 + +2025-09-24 01:52:27,459 INFO toNotifyTaskSize = 0 + +2025-09-24 01:52:27,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:52:27,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:52:37,451 INFO [long-pulling] client count 0 + +2025-09-24 01:52:37,459 INFO toNotifyTaskSize = 0 + +2025-09-24 01:52:37,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:52:37,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:52:47,453 INFO [long-pulling] client count 0 + +2025-09-24 01:52:47,459 INFO toNotifyTaskSize = 0 + +2025-09-24 01:52:47,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:52:47,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:52:57,455 INFO [long-pulling] client count 0 + +2025-09-24 01:52:57,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:52:57,462 INFO toNotifyTaskSize = 0 + +2025-09-24 01:52:57,462 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:53:07,455 INFO [long-pulling] client count 0 + +2025-09-24 01:53:07,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:53:07,462 INFO toNotifyTaskSize = 0 + +2025-09-24 01:53:07,462 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:53:17,457 INFO [long-pulling] client count 0 + +2025-09-24 01:53:17,464 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:53:17,464 INFO toNotifyTaskSize = 0 + +2025-09-24 01:53:17,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:53:27,458 INFO [long-pulling] client count 0 + +2025-09-24 01:53:27,465 INFO toNotifyTaskSize = 0 + +2025-09-24 01:53:27,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:53:27,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:53:37,459 INFO [long-pulling] client count 0 + +2025-09-24 01:53:37,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:53:37,466 INFO toNotifyTaskSize = 0 + +2025-09-24 01:53:37,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:53:47,460 INFO [long-pulling] client count 0 + +2025-09-24 01:53:47,466 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:53:47,466 INFO toNotifyTaskSize = 0 + +2025-09-24 01:53:47,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:53:57,460 INFO [long-pulling] client count 0 + +2025-09-24 01:53:57,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:53:57,468 INFO toNotifyTaskSize = 0 + +2025-09-24 01:53:57,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:54:07,461 INFO [long-pulling] client count 0 + +2025-09-24 01:54:07,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:54:07,469 INFO toNotifyTaskSize = 0 + +2025-09-24 01:54:07,469 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:54:17,461 INFO [long-pulling] client count 0 + +2025-09-24 01:54:17,469 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:54:17,469 INFO toNotifyTaskSize = 0 + +2025-09-24 01:54:17,469 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:54:27,462 INFO [long-pulling] client count 0 + +2025-09-24 01:54:27,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:54:27,470 INFO toNotifyTaskSize = 0 + +2025-09-24 01:54:27,470 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:54:37,463 INFO [long-pulling] client count 0 + +2025-09-24 01:54:37,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:54:37,471 INFO toNotifyTaskSize = 0 + +2025-09-24 01:54:37,471 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:54:47,463 INFO [long-pulling] client count 0 + +2025-09-24 01:54:47,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:54:47,472 INFO toNotifyTaskSize = 0 + +2025-09-24 01:54:47,472 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:54:57,465 INFO [long-pulling] client count 0 + +2025-09-24 01:54:57,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:54:57,472 INFO toNotifyTaskSize = 0 + +2025-09-24 01:54:57,472 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:55:07,467 INFO [long-pulling] client count 0 + +2025-09-24 01:55:07,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:55:07,474 INFO toNotifyTaskSize = 0 + +2025-09-24 01:55:07,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:55:17,468 INFO [long-pulling] client count 0 + +2025-09-24 01:55:17,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:55:17,476 INFO toNotifyTaskSize = 0 + +2025-09-24 01:55:17,476 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:55:27,468 INFO [long-pulling] client count 0 + +2025-09-24 01:55:27,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:55:27,476 INFO toNotifyTaskSize = 0 + +2025-09-24 01:55:27,476 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:55:37,468 INFO [long-pulling] client count 0 + +2025-09-24 01:55:37,477 INFO toNotifyTaskSize = 0 + +2025-09-24 01:55:37,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:55:37,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:55:47,470 INFO [long-pulling] client count 0 + +2025-09-24 01:55:47,477 INFO toNotifyTaskSize = 0 + +2025-09-24 01:55:47,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:55:47,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:55:57,472 INFO [long-pulling] client count 0 + +2025-09-24 01:55:57,478 INFO toNotifyTaskSize = 0 + +2025-09-24 01:55:57,478 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:55:57,478 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:56:07,473 INFO [long-pulling] client count 0 + +2025-09-24 01:56:07,480 INFO toNotifyTaskSize = 0 + +2025-09-24 01:56:07,480 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:56:07,480 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:56:17,474 INFO [long-pulling] client count 0 + +2025-09-24 01:56:17,481 INFO toNotifyTaskSize = 0 + +2025-09-24 01:56:17,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:56:17,481 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:56:27,476 INFO [long-pulling] client count 0 + +2025-09-24 01:56:27,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:56:27,482 INFO toNotifyTaskSize = 0 + +2025-09-24 01:56:27,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:56:37,479 INFO [long-pulling] client count 0 + +2025-09-24 01:56:37,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:56:37,482 INFO toNotifyTaskSize = 0 + +2025-09-24 01:56:37,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:56:47,481 INFO [long-pulling] client count 0 + +2025-09-24 01:56:47,483 INFO toNotifyTaskSize = 0 + +2025-09-24 01:56:47,483 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:56:47,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:56:57,481 INFO [long-pulling] client count 0 + +2025-09-24 01:56:57,485 INFO toNotifyTaskSize = 0 + +2025-09-24 01:56:57,485 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:56:57,485 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:57:07,483 INFO [long-pulling] client count 0 + +2025-09-24 01:57:07,486 INFO toNotifyTaskSize = 0 + +2025-09-24 01:57:07,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:57:07,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:57:17,484 INFO [long-pulling] client count 0 + +2025-09-24 01:57:17,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:57:17,487 INFO toNotifyTaskSize = 0 + +2025-09-24 01:57:17,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:57:27,484 INFO [long-pulling] client count 0 + +2025-09-24 01:57:27,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:57:27,488 INFO toNotifyTaskSize = 0 + +2025-09-24 01:57:27,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:57:37,485 INFO [long-pulling] client count 0 + +2025-09-24 01:57:37,488 INFO toNotifyTaskSize = 0 + +2025-09-24 01:57:37,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:57:37,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:57:47,486 INFO [long-pulling] client count 0 + +2025-09-24 01:57:47,489 INFO toNotifyTaskSize = 0 + +2025-09-24 01:57:47,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:57:47,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:57:57,488 INFO [long-pulling] client count 0 + +2025-09-24 01:57:57,490 INFO toNotifyTaskSize = 0 + +2025-09-24 01:57:57,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:57:57,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:58:07,488 INFO [long-pulling] client count 0 + +2025-09-24 01:58:07,491 INFO toNotifyTaskSize = 0 + +2025-09-24 01:58:07,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:58:07,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:58:17,490 INFO [long-pulling] client count 0 + +2025-09-24 01:58:17,491 INFO toNotifyTaskSize = 0 + +2025-09-24 01:58:17,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:58:17,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:58:27,490 INFO [long-pulling] client count 0 + +2025-09-24 01:58:27,493 INFO toNotifyTaskSize = 0 + +2025-09-24 01:58:27,493 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:58:27,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:58:37,491 INFO [long-pulling] client count 0 + +2025-09-24 01:58:37,494 INFO toNotifyTaskSize = 0 + +2025-09-24 01:58:37,494 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:58:37,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:58:47,491 INFO [long-pulling] client count 0 + +2025-09-24 01:58:47,494 INFO toNotifyTaskSize = 0 + +2025-09-24 01:58:47,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:58:47,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:58:57,491 INFO [long-pulling] client count 0 + +2025-09-24 01:58:57,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:58:57,495 INFO toNotifyTaskSize = 0 + +2025-09-24 01:58:57,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:59:07,491 INFO [long-pulling] client count 0 + +2025-09-24 01:59:07,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:59:07,496 INFO toNotifyTaskSize = 0 + +2025-09-24 01:59:07,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:59:17,492 INFO [long-pulling] client count 0 + +2025-09-24 01:59:17,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:59:17,497 INFO toNotifyTaskSize = 0 + +2025-09-24 01:59:17,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:59:27,492 INFO [long-pulling] client count 0 + +2025-09-24 01:59:27,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:59:27,497 INFO toNotifyTaskSize = 0 + +2025-09-24 01:59:27,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:59:37,493 INFO [long-pulling] client count 0 + +2025-09-24 01:59:37,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:59:37,497 INFO toNotifyTaskSize = 0 + +2025-09-24 01:59:37,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:59:47,493 INFO [long-pulling] client count 0 + +2025-09-24 01:59:47,498 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:59:47,498 INFO toNotifyTaskSize = 0 + +2025-09-24 01:59:47,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 01:59:57,493 INFO [long-pulling] client count 0 + +2025-09-24 01:59:57,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 01:59:57,500 INFO toNotifyTaskSize = 0 + +2025-09-24 01:59:57,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:00:07,495 INFO [long-pulling] client count 0 + +2025-09-24 02:00:07,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:00:07,502 INFO toNotifyTaskSize = 0 + +2025-09-24 02:00:07,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:00:17,497 INFO [long-pulling] client count 0 + +2025-09-24 02:00:17,503 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:00:17,503 INFO toNotifyTaskSize = 0 + +2025-09-24 02:00:17,503 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:00:27,498 INFO [long-pulling] client count 0 + +2025-09-24 02:00:27,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:00:27,505 INFO toNotifyTaskSize = 0 + +2025-09-24 02:00:27,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:00:37,500 INFO [long-pulling] client count 0 + +2025-09-24 02:00:37,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:00:37,507 INFO toNotifyTaskSize = 0 + +2025-09-24 02:00:37,507 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:00:47,502 INFO [long-pulling] client count 0 + +2025-09-24 02:00:47,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:00:47,508 INFO toNotifyTaskSize = 0 + +2025-09-24 02:00:47,508 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:00:57,504 INFO [long-pulling] client count 0 + +2025-09-24 02:00:57,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:00:57,510 INFO toNotifyTaskSize = 0 + +2025-09-24 02:00:57,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:01:07,506 INFO [long-pulling] client count 0 + +2025-09-24 02:01:07,512 INFO toNotifyTaskSize = 0 + +2025-09-24 02:01:07,512 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:01:07,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:01:17,508 INFO [long-pulling] client count 0 + +2025-09-24 02:01:17,512 INFO toNotifyTaskSize = 0 + +2025-09-24 02:01:17,512 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:01:17,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:01:27,509 INFO [long-pulling] client count 0 + +2025-09-24 02:01:27,512 INFO toNotifyTaskSize = 0 + +2025-09-24 02:01:27,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:01:27,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:01:37,509 INFO [long-pulling] client count 0 + +2025-09-24 02:01:37,513 INFO toNotifyTaskSize = 0 + +2025-09-24 02:01:37,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:01:37,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:01:47,509 INFO [long-pulling] client count 0 + +2025-09-24 02:01:47,513 INFO toNotifyTaskSize = 0 + +2025-09-24 02:01:47,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:01:47,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:01:57,511 INFO [long-pulling] client count 0 + +2025-09-24 02:01:57,514 INFO toNotifyTaskSize = 0 + +2025-09-24 02:01:57,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:01:57,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:02:07,512 INFO [long-pulling] client count 0 + +2025-09-24 02:02:07,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:02:07,514 INFO toNotifyTaskSize = 0 + +2025-09-24 02:02:07,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:02:17,514 INFO [long-pulling] client count 0 + +2025-09-24 02:02:17,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:02:17,516 INFO toNotifyTaskSize = 0 + +2025-09-24 02:02:17,516 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:02:27,514 INFO [long-pulling] client count 0 + +2025-09-24 02:02:27,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:02:27,516 INFO toNotifyTaskSize = 0 + +2025-09-24 02:02:27,516 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:02:37,517 INFO [long-pulling] client count 0 + +2025-09-24 02:02:37,517 INFO toNotifyTaskSize = 0 + +2025-09-24 02:02:37,518 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:02:37,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:02:47,518 INFO [long-pulling] client count 0 + +2025-09-24 02:02:47,518 INFO toNotifyTaskSize = 0 + +2025-09-24 02:02:47,518 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:02:47,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:02:57,518 INFO [long-pulling] client count 0 + +2025-09-24 02:02:57,519 INFO toNotifyTaskSize = 0 + +2025-09-24 02:02:57,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:02:57,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:03:07,519 INFO [long-pulling] client count 0 + +2025-09-24 02:03:07,520 INFO toNotifyTaskSize = 0 + +2025-09-24 02:03:07,520 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:03:07,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:03:17,519 INFO [long-pulling] client count 0 + +2025-09-24 02:03:17,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:03:17,521 INFO toNotifyTaskSize = 0 + +2025-09-24 02:03:17,521 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:03:27,521 INFO [long-pulling] client count 0 + +2025-09-24 02:03:27,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:03:27,521 INFO toNotifyTaskSize = 0 + +2025-09-24 02:03:27,522 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:03:37,524 INFO [long-pulling] client count 0 + +2025-09-24 02:03:37,524 INFO toNotifyTaskSize = 0 + +2025-09-24 02:03:37,524 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:03:37,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:03:47,524 INFO [long-pulling] client count 0 + +2025-09-24 02:03:47,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:03:47,524 INFO toNotifyTaskSize = 0 + +2025-09-24 02:03:47,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:03:57,525 INFO [long-pulling] client count 0 + +2025-09-24 02:03:57,525 INFO toNotifyTaskSize = 0 + +2025-09-24 02:03:57,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:03:57,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:04:07,527 INFO [long-pulling] client count 0 + +2025-09-24 02:04:07,527 INFO toNotifyTaskSize = 0 + +2025-09-24 02:04:07,527 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:04:07,527 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:04:17,529 INFO [long-pulling] client count 0 + +2025-09-24 02:04:17,529 INFO toNotifyTaskSize = 0 + +2025-09-24 02:04:17,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:04:17,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:04:27,529 INFO [long-pulling] client count 0 + +2025-09-24 02:04:27,529 INFO toNotifyTaskSize = 0 + +2025-09-24 02:04:27,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:04:27,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:04:37,532 INFO [long-pulling] client count 0 + +2025-09-24 02:04:37,532 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:04:37,532 INFO toNotifyTaskSize = 0 + +2025-09-24 02:04:37,532 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:04:47,533 INFO [long-pulling] client count 0 + +2025-09-24 02:04:47,533 INFO toNotifyTaskSize = 0 + +2025-09-24 02:04:47,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:04:47,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:04:57,534 INFO [long-pulling] client count 0 + +2025-09-24 02:04:57,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:04:57,534 INFO toNotifyTaskSize = 0 + +2025-09-24 02:04:57,534 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:05:07,534 INFO [long-pulling] client count 0 + +2025-09-24 02:05:07,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:05:07,534 INFO toNotifyTaskSize = 0 + +2025-09-24 02:05:07,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:05:17,535 INFO [long-pulling] client count 0 + +2025-09-24 02:05:17,535 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:05:17,535 INFO toNotifyTaskSize = 0 + +2025-09-24 02:05:17,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:05:27,536 INFO [long-pulling] client count 0 + +2025-09-24 02:05:27,536 INFO toNotifyTaskSize = 0 + +2025-09-24 02:05:27,536 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:05:27,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:05:37,537 INFO [long-pulling] client count 0 + +2025-09-24 02:05:37,537 INFO toNotifyTaskSize = 0 + +2025-09-24 02:05:37,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:05:37,537 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:05:47,538 INFO [long-pulling] client count 0 + +2025-09-24 02:05:47,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:05:47,539 INFO toNotifyTaskSize = 0 + +2025-09-24 02:05:47,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:05:57,539 INFO [long-pulling] client count 0 + +2025-09-24 02:05:57,539 INFO toNotifyTaskSize = 0 + +2025-09-24 02:05:57,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:05:57,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:06:07,539 INFO [long-pulling] client count 0 + +2025-09-24 02:06:07,539 INFO toNotifyTaskSize = 0 + +2025-09-24 02:06:07,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:06:07,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:06:17,540 INFO [long-pulling] client count 0 + +2025-09-24 02:06:17,540 INFO toNotifyTaskSize = 0 + +2025-09-24 02:06:17,540 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:06:17,540 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:06:27,542 INFO [long-pulling] client count 0 + +2025-09-24 02:06:27,542 INFO toNotifyTaskSize = 0 + +2025-09-24 02:06:27,543 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:06:27,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:06:37,545 INFO [long-pulling] client count 0 + +2025-09-24 02:06:37,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:06:37,545 INFO toNotifyTaskSize = 0 + +2025-09-24 02:06:37,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:06:47,545 INFO [long-pulling] client count 0 + +2025-09-24 02:06:47,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:06:47,545 INFO toNotifyTaskSize = 0 + +2025-09-24 02:06:47,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:06:57,546 INFO [long-pulling] client count 0 + +2025-09-24 02:06:57,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:06:57,546 INFO toNotifyTaskSize = 0 + +2025-09-24 02:06:57,546 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:07:07,547 INFO [long-pulling] client count 0 + +2025-09-24 02:07:07,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:07:07,547 INFO toNotifyTaskSize = 0 + +2025-09-24 02:07:07,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:07:17,548 INFO [long-pulling] client count 0 + +2025-09-24 02:07:17,548 INFO toNotifyTaskSize = 0 + +2025-09-24 02:07:17,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:07:17,548 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:07:27,549 INFO [long-pulling] client count 0 + +2025-09-24 02:07:27,549 INFO toNotifyTaskSize = 0 + +2025-09-24 02:07:27,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:07:27,549 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:07:37,550 INFO [long-pulling] client count 0 + +2025-09-24 02:07:37,550 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:07:37,550 INFO toNotifyTaskSize = 0 + +2025-09-24 02:07:37,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:07:47,550 INFO [long-pulling] client count 0 + +2025-09-24 02:07:47,551 INFO toNotifyTaskSize = 0 + +2025-09-24 02:07:47,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:07:47,550 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:07:57,551 INFO [long-pulling] client count 0 + +2025-09-24 02:07:57,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:07:57,551 INFO toNotifyTaskSize = 0 + +2025-09-24 02:07:57,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:08:07,552 INFO toNotifyTaskSize = 0 + +2025-09-24 02:08:07,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:08:07,552 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:08:07,552 INFO [long-pulling] client count 0 + +2025-09-24 02:08:17,554 INFO [long-pulling] client count 0 + +2025-09-24 02:08:17,554 INFO toNotifyTaskSize = 0 + +2025-09-24 02:08:17,554 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:08:17,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:08:27,555 INFO [long-pulling] client count 0 + +2025-09-24 02:08:27,555 INFO toNotifyTaskSize = 0 + +2025-09-24 02:08:27,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:08:27,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:08:37,555 INFO [long-pulling] client count 0 + +2025-09-24 02:08:37,555 INFO toNotifyTaskSize = 0 + +2025-09-24 02:08:37,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:08:37,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:08:47,555 INFO [long-pulling] client count 0 + +2025-09-24 02:08:47,556 INFO toNotifyTaskSize = 0 + +2025-09-24 02:08:47,556 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:08:47,556 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:08:57,556 INFO [long-pulling] client count 0 + +2025-09-24 02:08:57,556 INFO toNotifyTaskSize = 0 + +2025-09-24 02:08:57,556 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:08:57,556 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:09:07,558 INFO [long-pulling] client count 0 + +2025-09-24 02:09:07,558 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:09:07,558 INFO toNotifyTaskSize = 0 + +2025-09-24 02:09:07,558 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:09:17,559 INFO [long-pulling] client count 0 + +2025-09-24 02:09:17,559 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:09:17,559 INFO toNotifyTaskSize = 0 + +2025-09-24 02:09:17,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:09:27,560 INFO [long-pulling] client count 0 + +2025-09-24 02:09:27,560 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:09:27,560 INFO toNotifyTaskSize = 0 + +2025-09-24 02:09:27,561 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:09:37,562 INFO [long-pulling] client count 0 + +2025-09-24 02:09:37,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:09:37,563 INFO toNotifyTaskSize = 0 + +2025-09-24 02:09:37,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:09:47,563 INFO [long-pulling] client count 0 + +2025-09-24 02:09:47,563 INFO toNotifyTaskSize = 0 + +2025-09-24 02:09:47,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:09:47,563 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:09:57,563 INFO [long-pulling] client count 0 + +2025-09-24 02:09:57,563 INFO toNotifyTaskSize = 0 + +2025-09-24 02:09:57,563 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:09:57,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:10:07,563 INFO [long-pulling] client count 0 + +2025-09-24 02:10:07,564 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:10:07,564 INFO toNotifyTaskSize = 0 + +2025-09-24 02:10:07,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:10:17,565 INFO [long-pulling] client count 0 + +2025-09-24 02:10:17,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:10:17,566 INFO toNotifyTaskSize = 0 + +2025-09-24 02:10:17,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:10:27,566 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:10:27,566 INFO toNotifyTaskSize = 0 + +2025-09-24 02:10:27,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:10:27,566 INFO [long-pulling] client count 0 + +2025-09-24 02:10:37,566 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:10:37,566 INFO [long-pulling] client count 0 + +2025-09-24 02:10:37,566 INFO toNotifyTaskSize = 0 + +2025-09-24 02:10:37,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:10:47,567 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:10:47,567 INFO [long-pulling] client count 0 + +2025-09-24 02:10:47,567 INFO toNotifyTaskSize = 0 + +2025-09-24 02:10:47,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:10:57,568 INFO [long-pulling] client count 0 + +2025-09-24 02:10:57,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:10:57,568 INFO toNotifyTaskSize = 0 + +2025-09-24 02:10:57,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:11:07,570 INFO [long-pulling] client count 0 + +2025-09-24 02:11:07,570 INFO toNotifyTaskSize = 0 + +2025-09-24 02:11:07,570 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:11:07,570 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:11:17,571 INFO [long-pulling] client count 0 + +2025-09-24 02:11:17,571 INFO toNotifyTaskSize = 0 + +2025-09-24 02:11:17,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:11:17,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:11:27,571 INFO [long-pulling] client count 0 + +2025-09-24 02:11:27,572 INFO toNotifyTaskSize = 0 + +2025-09-24 02:11:27,572 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:11:27,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:11:37,572 INFO [long-pulling] client count 0 + +2025-09-24 02:11:37,572 INFO toNotifyTaskSize = 0 + +2025-09-24 02:11:37,572 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:11:37,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:11:47,574 INFO toNotifyTaskSize = 0 + +2025-09-24 02:11:47,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:11:47,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:11:47,574 INFO [long-pulling] client count 0 + +2025-09-24 02:11:57,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:11:57,574 INFO toNotifyTaskSize = 0 + +2025-09-24 02:11:57,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:11:57,574 INFO [long-pulling] client count 0 + +2025-09-24 02:12:07,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:12:07,576 INFO toNotifyTaskSize = 0 + +2025-09-24 02:12:07,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:12:07,576 INFO [long-pulling] client count 0 + +2025-09-24 02:12:17,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:12:17,576 INFO toNotifyTaskSize = 0 + +2025-09-24 02:12:17,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:12:17,577 INFO [long-pulling] client count 0 + +2025-09-24 02:12:27,578 INFO [long-pulling] client count 0 + +2025-09-24 02:12:27,578 INFO toNotifyTaskSize = 0 + +2025-09-24 02:12:27,578 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:12:27,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:12:37,578 INFO [long-pulling] client count 0 + +2025-09-24 02:12:37,578 INFO toNotifyTaskSize = 0 + +2025-09-24 02:12:37,578 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:12:37,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:12:47,578 INFO [long-pulling] client count 0 + +2025-09-24 02:12:47,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:12:47,578 INFO toNotifyTaskSize = 0 + +2025-09-24 02:12:47,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:12:57,580 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:12:57,580 INFO [long-pulling] client count 0 + +2025-09-24 02:12:57,580 INFO toNotifyTaskSize = 0 + +2025-09-24 02:12:57,580 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:13:07,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:13:07,582 INFO [long-pulling] client count 0 + +2025-09-24 02:13:07,582 INFO toNotifyTaskSize = 0 + +2025-09-24 02:13:07,582 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:13:17,583 INFO [long-pulling] client count 0 + +2025-09-24 02:13:17,582 INFO toNotifyTaskSize = 0 + +2025-09-24 02:13:17,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:13:17,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:13:27,585 INFO [long-pulling] client count 0 + +2025-09-24 02:13:27,585 INFO toNotifyTaskSize = 0 + +2025-09-24 02:13:27,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:13:27,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:13:37,585 INFO [long-pulling] client count 0 + +2025-09-24 02:13:37,585 INFO toNotifyTaskSize = 0 + +2025-09-24 02:13:37,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:13:37,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:13:47,587 INFO [long-pulling] client count 0 + +2025-09-24 02:13:47,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:13:47,587 INFO toNotifyTaskSize = 0 + +2025-09-24 02:13:47,588 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:13:57,588 INFO [long-pulling] client count 0 + +2025-09-24 02:13:57,588 INFO toNotifyTaskSize = 0 + +2025-09-24 02:13:57,588 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:13:57,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:14:07,590 INFO [long-pulling] client count 0 + +2025-09-24 02:14:07,590 INFO toNotifyTaskSize = 0 + +2025-09-24 02:14:07,590 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:14:07,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:14:17,591 INFO [long-pulling] client count 0 + +2025-09-24 02:14:17,591 INFO toNotifyTaskSize = 0 + +2025-09-24 02:14:17,591 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:14:17,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:14:27,591 INFO [long-pulling] client count 0 + +2025-09-24 02:14:27,591 INFO toNotifyTaskSize = 0 + +2025-09-24 02:14:27,591 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:14:27,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:14:37,592 INFO [long-pulling] client count 0 + +2025-09-24 02:14:37,592 INFO toNotifyTaskSize = 0 + +2025-09-24 02:14:37,592 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:14:37,592 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:14:47,594 INFO [long-pulling] client count 0 + +2025-09-24 02:14:47,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:14:47,594 INFO toNotifyTaskSize = 0 + +2025-09-24 02:14:47,594 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:14:57,595 INFO [long-pulling] client count 0 + +2025-09-24 02:14:57,595 INFO toNotifyTaskSize = 0 + +2025-09-24 02:14:57,595 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:14:57,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:15:07,595 INFO [long-pulling] client count 0 + +2025-09-24 02:15:07,595 INFO toNotifyTaskSize = 0 + +2025-09-24 02:15:07,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:15:07,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:15:17,596 INFO [long-pulling] client count 0 + +2025-09-24 02:15:17,596 INFO toNotifyTaskSize = 0 + +2025-09-24 02:15:17,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:15:17,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:15:27,596 INFO [long-pulling] client count 0 + +2025-09-24 02:15:27,597 INFO toNotifyTaskSize = 0 + +2025-09-24 02:15:27,597 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:15:27,597 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:15:37,597 INFO [long-pulling] client count 0 + +2025-09-24 02:15:37,599 INFO toNotifyTaskSize = 0 + +2025-09-24 02:15:37,599 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:15:37,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:15:47,597 INFO [long-pulling] client count 0 + +2025-09-24 02:15:47,601 INFO toNotifyTaskSize = 0 + +2025-09-24 02:15:47,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:15:47,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:15:57,599 INFO [long-pulling] client count 0 + +2025-09-24 02:15:57,601 INFO toNotifyTaskSize = 0 + +2025-09-24 02:15:57,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:15:57,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:16:07,600 INFO [long-pulling] client count 0 + +2025-09-24 02:16:07,601 INFO toNotifyTaskSize = 0 + +2025-09-24 02:16:07,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:16:07,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:16:17,602 INFO [long-pulling] client count 0 + +2025-09-24 02:16:17,602 INFO toNotifyTaskSize = 0 + +2025-09-24 02:16:17,603 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:16:17,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:16:27,604 INFO [long-pulling] client count 0 + +2025-09-24 02:16:27,604 INFO toNotifyTaskSize = 0 + +2025-09-24 02:16:27,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:16:27,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:16:37,606 INFO [long-pulling] client count 0 + +2025-09-24 02:16:37,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:16:37,606 INFO toNotifyTaskSize = 0 + +2025-09-24 02:16:37,607 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:16:47,608 INFO [long-pulling] client count 0 + +2025-09-24 02:16:47,608 INFO toNotifyTaskSize = 0 + +2025-09-24 02:16:47,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:16:47,608 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:16:57,610 INFO [long-pulling] client count 0 + +2025-09-24 02:16:57,610 INFO toNotifyTaskSize = 0 + +2025-09-24 02:16:57,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:16:57,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:17:07,613 INFO toNotifyTaskSize = 0 + +2025-09-24 02:17:07,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:17:07,613 INFO [long-pulling] client count 0 + +2025-09-24 02:17:07,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:17:17,615 INFO toNotifyTaskSize = 0 + +2025-09-24 02:17:17,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:17:17,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:17:17,615 INFO [long-pulling] client count 0 + +2025-09-24 02:17:27,616 INFO toNotifyTaskSize = 0 + +2025-09-24 02:17:27,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:17:27,616 INFO [long-pulling] client count 0 + +2025-09-24 02:17:27,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:17:37,618 INFO [long-pulling] client count 0 + +2025-09-24 02:17:37,618 INFO toNotifyTaskSize = 0 + +2025-09-24 02:17:37,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:17:37,618 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:17:47,620 INFO [long-pulling] client count 0 + +2025-09-24 02:17:47,620 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:17:47,620 INFO toNotifyTaskSize = 0 + +2025-09-24 02:17:47,621 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:17:57,621 INFO [long-pulling] client count 0 + +2025-09-24 02:17:57,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:17:57,621 INFO toNotifyTaskSize = 0 + +2025-09-24 02:17:57,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:18:07,622 INFO [long-pulling] client count 0 + +2025-09-24 02:18:07,622 INFO toNotifyTaskSize = 0 + +2025-09-24 02:18:07,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:18:07,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:18:17,624 INFO [long-pulling] client count 0 + +2025-09-24 02:18:17,624 INFO toNotifyTaskSize = 0 + +2025-09-24 02:18:17,624 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:18:17,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:18:27,626 INFO [long-pulling] client count 0 + +2025-09-24 02:18:27,626 INFO toNotifyTaskSize = 0 + +2025-09-24 02:18:27,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:18:27,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:18:37,627 INFO toNotifyTaskSize = 0 + +2025-09-24 02:18:37,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:18:37,627 INFO [long-pulling] client count 0 + +2025-09-24 02:18:37,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:18:47,627 INFO toNotifyTaskSize = 0 + +2025-09-24 02:18:47,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:18:47,627 INFO [long-pulling] client count 0 + +2025-09-24 02:18:47,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:18:57,629 INFO toNotifyTaskSize = 0 + +2025-09-24 02:18:57,630 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:18:57,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:18:57,630 INFO [long-pulling] client count 0 + +2025-09-24 02:19:07,631 INFO [long-pulling] client count 0 + +2025-09-24 02:19:07,631 INFO toNotifyTaskSize = 0 + +2025-09-24 02:19:07,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:19:07,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:19:17,631 INFO [long-pulling] client count 0 + +2025-09-24 02:19:17,632 INFO toNotifyTaskSize = 0 + +2025-09-24 02:19:17,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:19:17,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:19:27,632 INFO toNotifyTaskSize = 0 + +2025-09-24 02:19:27,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:19:27,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:19:27,632 INFO [long-pulling] client count 0 + +2025-09-24 02:19:37,634 INFO [long-pulling] client count 0 + +2025-09-24 02:19:37,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:19:37,634 INFO toNotifyTaskSize = 0 + +2025-09-24 02:19:37,634 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:19:47,636 INFO toNotifyTaskSize = 0 + +2025-09-24 02:19:47,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:19:47,636 INFO [long-pulling] client count 0 + +2025-09-24 02:19:47,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:19:57,637 INFO [long-pulling] client count 0 + +2025-09-24 02:19:57,637 INFO toNotifyTaskSize = 0 + +2025-09-24 02:19:57,637 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:19:57,637 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:20:07,637 INFO [long-pulling] client count 0 + +2025-09-24 02:20:07,637 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:20:07,637 INFO toNotifyTaskSize = 0 + +2025-09-24 02:20:07,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:20:17,637 INFO [long-pulling] client count 0 + +2025-09-24 02:20:17,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:20:17,638 INFO toNotifyTaskSize = 0 + +2025-09-24 02:20:17,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:20:27,638 INFO [long-pulling] client count 0 + +2025-09-24 02:20:27,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:20:27,638 INFO toNotifyTaskSize = 0 + +2025-09-24 02:20:27,639 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:20:37,639 INFO [long-pulling] client count 0 + +2025-09-24 02:20:37,639 INFO toNotifyTaskSize = 0 + +2025-09-24 02:20:37,639 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:20:37,639 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:20:47,641 INFO [long-pulling] client count 0 + +2025-09-24 02:20:47,641 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:20:47,641 INFO toNotifyTaskSize = 0 + +2025-09-24 02:20:47,642 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:20:57,641 INFO [long-pulling] client count 0 + +2025-09-24 02:20:57,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:20:57,642 INFO toNotifyTaskSize = 0 + +2025-09-24 02:20:57,642 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:21:07,642 INFO [long-pulling] client count 0 + +2025-09-24 02:21:07,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:21:07,642 INFO toNotifyTaskSize = 0 + +2025-09-24 02:21:07,642 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:21:17,642 INFO [long-pulling] client count 0 + +2025-09-24 02:21:17,643 INFO toNotifyTaskSize = 0 + +2025-09-24 02:21:17,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:21:17,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:21:27,643 INFO [long-pulling] client count 0 + +2025-09-24 02:21:27,644 INFO toNotifyTaskSize = 0 + +2025-09-24 02:21:27,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:21:27,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:21:37,643 INFO [long-pulling] client count 0 + +2025-09-24 02:21:37,644 INFO toNotifyTaskSize = 0 + +2025-09-24 02:21:37,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:21:37,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:21:47,644 INFO [long-pulling] client count 0 + +2025-09-24 02:21:47,644 INFO toNotifyTaskSize = 0 + +2025-09-24 02:21:47,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:21:47,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:21:57,644 INFO [long-pulling] client count 0 + +2025-09-24 02:21:57,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:21:57,645 INFO toNotifyTaskSize = 0 + +2025-09-24 02:21:57,645 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:22:07,646 INFO [long-pulling] client count 0 + +2025-09-24 02:22:07,646 INFO toNotifyTaskSize = 0 + +2025-09-24 02:22:07,646 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:22:07,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:22:17,647 INFO [long-pulling] client count 0 + +2025-09-24 02:22:17,647 INFO toNotifyTaskSize = 0 + +2025-09-24 02:22:17,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:22:17,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:22:27,647 INFO [long-pulling] client count 0 + +2025-09-24 02:22:27,648 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:22:27,648 INFO toNotifyTaskSize = 0 + +2025-09-24 02:22:27,648 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:22:37,648 INFO [long-pulling] client count 0 + +2025-09-24 02:22:37,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:22:37,649 INFO toNotifyTaskSize = 0 + +2025-09-24 02:22:37,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:22:47,648 INFO [long-pulling] client count 0 + +2025-09-24 02:22:47,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:22:47,649 INFO toNotifyTaskSize = 0 + +2025-09-24 02:22:47,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:22:57,650 INFO [long-pulling] client count 0 + +2025-09-24 02:22:57,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:22:57,650 INFO toNotifyTaskSize = 0 + +2025-09-24 02:22:57,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:23:07,652 INFO [long-pulling] client count 0 + +2025-09-24 02:23:07,652 INFO toNotifyTaskSize = 0 + +2025-09-24 02:23:07,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:23:07,652 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:23:17,654 INFO [long-pulling] client count 0 + +2025-09-24 02:23:17,654 INFO toNotifyTaskSize = 0 + +2025-09-24 02:23:17,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:23:17,654 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:23:27,656 INFO [long-pulling] client count 0 + +2025-09-24 02:23:27,656 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:23:27,657 INFO toNotifyTaskSize = 0 + +2025-09-24 02:23:27,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:23:37,657 INFO [long-pulling] client count 0 + +2025-09-24 02:23:37,657 INFO toNotifyTaskSize = 0 + +2025-09-24 02:23:37,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:23:37,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:23:47,658 INFO [long-pulling] client count 0 + +2025-09-24 02:23:47,658 INFO toNotifyTaskSize = 0 + +2025-09-24 02:23:47,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:23:47,658 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:23:57,659 INFO [long-pulling] client count 0 + +2025-09-24 02:23:57,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:23:57,659 INFO toNotifyTaskSize = 0 + +2025-09-24 02:23:57,659 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:24:07,661 INFO [long-pulling] client count 0 + +2025-09-24 02:24:07,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:24:07,661 INFO toNotifyTaskSize = 0 + +2025-09-24 02:24:07,662 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:24:17,663 INFO [long-pulling] client count 0 + +2025-09-24 02:24:17,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:24:17,663 INFO toNotifyTaskSize = 0 + +2025-09-24 02:24:17,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:24:27,664 INFO [long-pulling] client count 0 + +2025-09-24 02:24:27,664 INFO toNotifyTaskSize = 0 + +2025-09-24 02:24:27,664 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:24:27,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:24:37,665 INFO [long-pulling] client count 0 + +2025-09-24 02:24:37,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:24:37,666 INFO toNotifyTaskSize = 0 + +2025-09-24 02:24:37,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:24:47,667 INFO [long-pulling] client count 0 + +2025-09-24 02:24:47,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:24:47,667 INFO toNotifyTaskSize = 0 + +2025-09-24 02:24:47,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:24:57,669 INFO [long-pulling] client count 0 + +2025-09-24 02:24:57,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:24:57,669 INFO toNotifyTaskSize = 0 + +2025-09-24 02:24:57,669 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:25:07,671 INFO [long-pulling] client count 0 + +2025-09-24 02:25:07,671 INFO toNotifyTaskSize = 0 + +2025-09-24 02:25:07,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:25:07,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:25:17,671 INFO [long-pulling] client count 0 + +2025-09-24 02:25:17,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:25:17,671 INFO toNotifyTaskSize = 0 + +2025-09-24 02:25:17,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:25:27,673 INFO [long-pulling] client count 0 + +2025-09-24 02:25:27,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:25:27,673 INFO toNotifyTaskSize = 0 + +2025-09-24 02:25:27,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:25:37,674 INFO [long-pulling] client count 0 + +2025-09-24 02:25:37,674 INFO toNotifyTaskSize = 0 + +2025-09-24 02:25:37,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:25:37,674 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:25:47,674 INFO [long-pulling] client count 0 + +2025-09-24 02:25:47,675 INFO toNotifyTaskSize = 0 + +2025-09-24 02:25:47,675 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:25:47,675 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:25:57,676 INFO [long-pulling] client count 0 + +2025-09-24 02:25:57,676 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:25:57,676 INFO toNotifyTaskSize = 0 + +2025-09-24 02:25:57,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:26:07,676 INFO [long-pulling] client count 0 + +2025-09-24 02:26:07,677 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:26:07,677 INFO toNotifyTaskSize = 0 + +2025-09-24 02:26:07,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:26:17,678 INFO [long-pulling] client count 0 + +2025-09-24 02:26:17,678 INFO toNotifyTaskSize = 0 + +2025-09-24 02:26:17,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:26:17,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:26:27,679 INFO [long-pulling] client count 0 + +2025-09-24 02:26:27,679 INFO toNotifyTaskSize = 0 + +2025-09-24 02:26:27,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:26:27,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:26:37,680 INFO [long-pulling] client count 0 + +2025-09-24 02:26:37,680 INFO toNotifyTaskSize = 0 + +2025-09-24 02:26:37,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:26:37,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:26:47,680 INFO [long-pulling] client count 0 + +2025-09-24 02:26:47,681 INFO toNotifyTaskSize = 0 + +2025-09-24 02:26:47,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:26:47,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:26:57,680 INFO [long-pulling] client count 0 + +2025-09-24 02:26:57,681 INFO toNotifyTaskSize = 0 + +2025-09-24 02:26:57,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:26:57,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:27:07,681 INFO [long-pulling] client count 0 + +2025-09-24 02:27:07,682 INFO toNotifyTaskSize = 0 + +2025-09-24 02:27:07,682 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:27:07,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:27:17,683 INFO [long-pulling] client count 0 + +2025-09-24 02:27:17,683 INFO toNotifyTaskSize = 0 + +2025-09-24 02:27:17,683 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:27:17,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:27:27,683 INFO toNotifyTaskSize = 0 + +2025-09-24 02:27:27,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:27:27,683 INFO [long-pulling] client count 0 + +2025-09-24 02:27:27,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:27:37,684 INFO toNotifyTaskSize = 0 + +2025-09-24 02:27:37,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:27:37,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:27:37,684 INFO [long-pulling] client count 0 + +2025-09-24 02:27:47,686 INFO toNotifyTaskSize = 0 + +2025-09-24 02:27:47,686 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:27:47,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:27:47,687 INFO [long-pulling] client count 0 + +2025-09-24 02:27:57,688 INFO [long-pulling] client count 0 + +2025-09-24 02:27:57,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:27:57,688 INFO toNotifyTaskSize = 0 + +2025-09-24 02:27:57,688 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:28:07,689 INFO [long-pulling] client count 0 + +2025-09-24 02:28:07,689 INFO toNotifyTaskSize = 0 + +2025-09-24 02:28:07,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:28:07,689 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:28:17,690 INFO [long-pulling] client count 0 + +2025-09-24 02:28:17,690 INFO toNotifyTaskSize = 0 + +2025-09-24 02:28:17,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:28:17,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:28:27,692 INFO [long-pulling] client count 0 + +2025-09-24 02:28:27,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:28:27,692 INFO toNotifyTaskSize = 0 + +2025-09-24 02:28:27,692 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:28:37,693 INFO [long-pulling] client count 0 + +2025-09-24 02:28:37,693 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:28:37,693 INFO toNotifyTaskSize = 0 + +2025-09-24 02:28:37,693 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:28:47,694 INFO [long-pulling] client count 0 + +2025-09-24 02:28:47,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:28:47,694 INFO toNotifyTaskSize = 0 + +2025-09-24 02:28:47,695 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:28:57,696 INFO [long-pulling] client count 0 + +2025-09-24 02:28:57,696 INFO toNotifyTaskSize = 0 + +2025-09-24 02:28:57,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:28:57,696 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:29:07,698 INFO [long-pulling] client count 0 + +2025-09-24 02:29:07,699 INFO toNotifyTaskSize = 0 + +2025-09-24 02:29:07,700 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:29:07,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:29:17,700 INFO [long-pulling] client count 0 + +2025-09-24 02:29:17,700 INFO toNotifyTaskSize = 0 + +2025-09-24 02:29:17,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:29:17,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:29:27,701 INFO [long-pulling] client count 0 + +2025-09-24 02:29:27,701 INFO toNotifyTaskSize = 0 + +2025-09-24 02:29:27,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:29:27,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:29:37,703 INFO [long-pulling] client count 0 + +2025-09-24 02:29:37,703 INFO toNotifyTaskSize = 0 + +2025-09-24 02:29:37,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:29:37,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:29:47,703 INFO [long-pulling] client count 0 + +2025-09-24 02:29:47,703 INFO toNotifyTaskSize = 0 + +2025-09-24 02:29:47,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:29:47,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:29:57,704 INFO [long-pulling] client count 0 + +2025-09-24 02:29:57,704 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:29:57,704 INFO toNotifyTaskSize = 0 + +2025-09-24 02:29:57,704 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:30:07,704 INFO [long-pulling] client count 0 + +2025-09-24 02:30:07,704 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:30:07,704 INFO toNotifyTaskSize = 0 + +2025-09-24 02:30:07,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:30:17,705 INFO [long-pulling] client count 0 + +2025-09-24 02:30:17,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:30:17,705 INFO toNotifyTaskSize = 0 + +2025-09-24 02:30:17,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:30:27,706 INFO [long-pulling] client count 0 + +2025-09-24 02:30:27,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:30:27,707 INFO toNotifyTaskSize = 0 + +2025-09-24 02:30:27,707 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:30:37,708 INFO [long-pulling] client count 0 + +2025-09-24 02:30:37,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:30:37,708 INFO toNotifyTaskSize = 0 + +2025-09-24 02:30:37,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:30:47,709 INFO [long-pulling] client count 0 + +2025-09-24 02:30:47,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:30:47,709 INFO toNotifyTaskSize = 0 + +2025-09-24 02:30:47,710 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:30:57,712 INFO [long-pulling] client count 0 + +2025-09-24 02:30:57,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:30:57,712 INFO toNotifyTaskSize = 0 + +2025-09-24 02:30:57,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:31:07,714 INFO [long-pulling] client count 0 + +2025-09-24 02:31:07,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:31:07,714 INFO toNotifyTaskSize = 0 + +2025-09-24 02:31:07,714 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:31:17,715 INFO [long-pulling] client count 0 + +2025-09-24 02:31:17,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:31:17,715 INFO toNotifyTaskSize = 0 + +2025-09-24 02:31:17,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:31:27,716 INFO [long-pulling] client count 0 + +2025-09-24 02:31:27,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:31:27,716 INFO toNotifyTaskSize = 0 + +2025-09-24 02:31:27,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:31:37,717 INFO [long-pulling] client count 0 + +2025-09-24 02:31:37,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:31:37,717 INFO toNotifyTaskSize = 0 + +2025-09-24 02:31:37,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:31:47,720 INFO [long-pulling] client count 0 + +2025-09-24 02:31:47,720 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:31:47,720 INFO toNotifyTaskSize = 0 + +2025-09-24 02:31:47,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:31:57,722 INFO [long-pulling] client count 0 + +2025-09-24 02:31:57,722 INFO toNotifyTaskSize = 0 + +2025-09-24 02:31:57,722 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:31:57,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:32:07,723 INFO [long-pulling] client count 0 + +2025-09-24 02:32:07,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:32:07,723 INFO toNotifyTaskSize = 0 + +2025-09-24 02:32:07,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:32:17,724 INFO [long-pulling] client count 0 + +2025-09-24 02:32:17,724 INFO toNotifyTaskSize = 0 + +2025-09-24 02:32:17,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:32:17,724 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:32:27,725 INFO [long-pulling] client count 0 + +2025-09-24 02:32:27,725 INFO toNotifyTaskSize = 0 + +2025-09-24 02:32:27,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:32:27,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:32:37,726 INFO [long-pulling] client count 0 + +2025-09-24 02:32:37,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:32:37,726 INFO toNotifyTaskSize = 0 + +2025-09-24 02:32:37,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:32:47,727 INFO [long-pulling] client count 0 + +2025-09-24 02:32:47,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:32:47,727 INFO toNotifyTaskSize = 0 + +2025-09-24 02:32:47,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:32:57,727 INFO [long-pulling] client count 0 + +2025-09-24 02:32:57,728 INFO toNotifyTaskSize = 0 + +2025-09-24 02:32:57,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:32:57,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:33:07,730 INFO [long-pulling] client count 0 + +2025-09-24 02:33:07,730 INFO toNotifyTaskSize = 0 + +2025-09-24 02:33:07,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:33:07,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:33:17,730 INFO [long-pulling] client count 0 + +2025-09-24 02:33:17,731 INFO toNotifyTaskSize = 0 + +2025-09-24 02:33:17,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:33:17,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:33:27,730 INFO [long-pulling] client count 0 + +2025-09-24 02:33:27,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:33:27,732 INFO toNotifyTaskSize = 0 + +2025-09-24 02:33:27,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:33:37,732 INFO [long-pulling] client count 0 + +2025-09-24 02:33:37,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:33:37,732 INFO toNotifyTaskSize = 0 + +2025-09-24 02:33:37,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:33:47,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:33:47,734 INFO toNotifyTaskSize = 0 + +2025-09-24 02:33:47,735 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:33:47,734 INFO [long-pulling] client count 0 + +2025-09-24 02:33:57,736 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:33:57,737 INFO toNotifyTaskSize = 0 + +2025-09-24 02:33:57,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:33:57,736 INFO [long-pulling] client count 0 + +2025-09-24 02:34:07,737 INFO [long-pulling] client count 0 + +2025-09-24 02:34:07,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:34:07,737 INFO toNotifyTaskSize = 0 + +2025-09-24 02:34:07,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:34:17,738 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:34:17,738 INFO [long-pulling] client count 0 + +2025-09-24 02:34:17,738 INFO toNotifyTaskSize = 0 + +2025-09-24 02:34:17,738 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:34:27,739 INFO [long-pulling] client count 0 + +2025-09-24 02:34:27,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:34:27,739 INFO toNotifyTaskSize = 0 + +2025-09-24 02:34:27,739 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:34:37,739 INFO [long-pulling] client count 0 + +2025-09-24 02:34:37,740 INFO toNotifyTaskSize = 0 + +2025-09-24 02:34:37,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:34:37,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:34:47,740 INFO [long-pulling] client count 0 + +2025-09-24 02:34:47,741 INFO toNotifyTaskSize = 0 + +2025-09-24 02:34:47,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:34:47,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:34:57,741 INFO [long-pulling] client count 0 + +2025-09-24 02:34:57,742 INFO toNotifyTaskSize = 0 + +2025-09-24 02:34:57,742 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:34:57,742 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:35:07,742 INFO [long-pulling] client count 0 + +2025-09-24 02:35:07,743 INFO toNotifyTaskSize = 0 + +2025-09-24 02:35:07,743 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:35:07,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:35:17,742 INFO [long-pulling] client count 0 + +2025-09-24 02:35:17,745 INFO toNotifyTaskSize = 0 + +2025-09-24 02:35:17,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:35:17,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:35:27,743 INFO [long-pulling] client count 0 + +2025-09-24 02:35:27,746 INFO toNotifyTaskSize = 0 + +2025-09-24 02:35:27,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:35:27,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:35:37,744 INFO [long-pulling] client count 0 + +2025-09-24 02:35:37,746 INFO toNotifyTaskSize = 0 + +2025-09-24 02:35:37,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:35:37,747 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:35:47,745 INFO [long-pulling] client count 0 + +2025-09-24 02:35:47,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:35:47,749 INFO toNotifyTaskSize = 0 + +2025-09-24 02:35:47,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:35:57,745 INFO [long-pulling] client count 0 + +2025-09-24 02:35:57,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:35:57,749 INFO toNotifyTaskSize = 0 + +2025-09-24 02:35:57,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:36:07,746 INFO [long-pulling] client count 0 + +2025-09-24 02:36:07,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:36:07,750 INFO toNotifyTaskSize = 0 + +2025-09-24 02:36:07,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:36:17,747 INFO [long-pulling] client count 0 + +2025-09-24 02:36:17,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:36:17,750 INFO toNotifyTaskSize = 0 + +2025-09-24 02:36:17,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:36:27,748 INFO [long-pulling] client count 0 + +2025-09-24 02:36:27,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:36:27,751 INFO toNotifyTaskSize = 0 + +2025-09-24 02:36:27,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:36:37,750 INFO [long-pulling] client count 0 + +2025-09-24 02:36:37,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:36:37,752 INFO toNotifyTaskSize = 0 + +2025-09-24 02:36:37,753 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:36:47,750 INFO [long-pulling] client count 0 + +2025-09-24 02:36:47,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:36:47,755 INFO toNotifyTaskSize = 0 + +2025-09-24 02:36:47,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:36:57,750 INFO [long-pulling] client count 0 + +2025-09-24 02:36:57,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:36:57,755 INFO toNotifyTaskSize = 0 + +2025-09-24 02:36:57,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:37:07,750 INFO [long-pulling] client count 0 + +2025-09-24 02:37:07,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:37:07,755 INFO toNotifyTaskSize = 0 + +2025-09-24 02:37:07,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:37:17,752 INFO [long-pulling] client count 0 + +2025-09-24 02:37:17,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:37:17,756 INFO toNotifyTaskSize = 0 + +2025-09-24 02:37:17,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:37:27,753 INFO [long-pulling] client count 0 + +2025-09-24 02:37:27,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:37:27,757 INFO toNotifyTaskSize = 0 + +2025-09-24 02:37:27,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:37:37,754 INFO [long-pulling] client count 0 + +2025-09-24 02:37:37,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:37:37,757 INFO toNotifyTaskSize = 0 + +2025-09-24 02:37:37,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:37:47,754 INFO [long-pulling] client count 0 + +2025-09-24 02:37:47,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:37:47,759 INFO toNotifyTaskSize = 0 + +2025-09-24 02:37:47,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:37:57,755 INFO [long-pulling] client count 0 + +2025-09-24 02:37:57,760 INFO toNotifyTaskSize = 0 + +2025-09-24 02:37:57,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:37:57,760 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:38:07,755 INFO [long-pulling] client count 0 + +2025-09-24 02:38:07,761 INFO toNotifyTaskSize = 0 + +2025-09-24 02:38:07,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:38:07,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:38:17,756 INFO [long-pulling] client count 0 + +2025-09-24 02:38:17,762 INFO toNotifyTaskSize = 0 + +2025-09-24 02:38:17,762 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:38:17,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:38:27,757 INFO [long-pulling] client count 0 + +2025-09-24 02:38:27,763 INFO toNotifyTaskSize = 0 + +2025-09-24 02:38:27,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:38:27,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:38:37,758 INFO [long-pulling] client count 0 + +2025-09-24 02:38:37,763 INFO toNotifyTaskSize = 0 + +2025-09-24 02:38:37,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:38:37,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:38:47,758 INFO [long-pulling] client count 0 + +2025-09-24 02:38:47,764 INFO toNotifyTaskSize = 0 + +2025-09-24 02:38:47,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:38:47,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:38:57,759 INFO [long-pulling] client count 0 + +2025-09-24 02:38:57,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:38:57,765 INFO toNotifyTaskSize = 0 + +2025-09-24 02:38:57,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:39:07,760 INFO [long-pulling] client count 0 + +2025-09-24 02:39:07,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:39:07,767 INFO toNotifyTaskSize = 0 + +2025-09-24 02:39:07,767 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:39:17,760 INFO [long-pulling] client count 0 + +2025-09-24 02:39:17,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:39:17,768 INFO toNotifyTaskSize = 0 + +2025-09-24 02:39:17,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:39:27,762 INFO [long-pulling] client count 0 + +2025-09-24 02:39:27,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:39:27,768 INFO toNotifyTaskSize = 0 + +2025-09-24 02:39:27,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:39:37,764 INFO [long-pulling] client count 0 + +2025-09-24 02:39:37,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:39:37,768 INFO toNotifyTaskSize = 0 + +2025-09-24 02:39:37,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:39:47,766 INFO [long-pulling] client count 0 + +2025-09-24 02:39:47,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:39:47,770 INFO toNotifyTaskSize = 0 + +2025-09-24 02:39:47,770 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:39:57,767 INFO [long-pulling] client count 0 + +2025-09-24 02:39:57,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:39:57,770 INFO toNotifyTaskSize = 0 + +2025-09-24 02:39:57,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:40:07,767 INFO [long-pulling] client count 0 + +2025-09-24 02:40:07,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:40:07,771 INFO toNotifyTaskSize = 0 + +2025-09-24 02:40:07,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:40:17,769 INFO [long-pulling] client count 0 + +2025-09-24 02:40:17,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:40:17,771 INFO toNotifyTaskSize = 0 + +2025-09-24 02:40:17,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:40:27,770 INFO [long-pulling] client count 0 + +2025-09-24 02:40:27,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:40:27,772 INFO toNotifyTaskSize = 0 + +2025-09-24 02:40:27,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:40:37,773 INFO [long-pulling] client count 0 + +2025-09-24 02:40:37,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:40:37,773 INFO toNotifyTaskSize = 0 + +2025-09-24 02:40:37,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:40:47,774 INFO [long-pulling] client count 0 + +2025-09-24 02:40:47,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:40:47,774 INFO toNotifyTaskSize = 0 + +2025-09-24 02:40:47,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:40:57,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:40:57,774 INFO [long-pulling] client count 0 + +2025-09-24 02:40:57,774 INFO toNotifyTaskSize = 0 + +2025-09-24 02:40:57,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:41:07,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:41:07,776 INFO toNotifyTaskSize = 0 + +2025-09-24 02:41:07,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:41:07,776 INFO [long-pulling] client count 0 + +2025-09-24 02:41:17,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:41:17,776 INFO toNotifyTaskSize = 0 + +2025-09-24 02:41:17,776 INFO [long-pulling] client count 0 + +2025-09-24 02:41:17,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:41:27,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:41:27,777 INFO toNotifyTaskSize = 0 + +2025-09-24 02:41:27,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:41:27,777 INFO [long-pulling] client count 0 + +2025-09-24 02:41:37,777 INFO [long-pulling] client count 0 + +2025-09-24 02:41:37,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:41:37,777 INFO toNotifyTaskSize = 0 + +2025-09-24 02:41:37,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:41:47,778 INFO [long-pulling] client count 0 + +2025-09-24 02:41:47,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:41:47,778 INFO toNotifyTaskSize = 0 + +2025-09-24 02:41:47,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:41:57,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:41:57,779 INFO toNotifyTaskSize = 0 + +2025-09-24 02:41:57,779 INFO [long-pulling] client count 0 + +2025-09-24 02:41:57,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:42:07,780 INFO [long-pulling] client count 0 + +2025-09-24 02:42:07,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:42:07,780 INFO toNotifyTaskSize = 0 + +2025-09-24 02:42:07,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:42:17,782 INFO [long-pulling] client count 0 + +2025-09-24 02:42:17,782 INFO toNotifyTaskSize = 0 + +2025-09-24 02:42:17,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:42:17,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:42:27,783 INFO [long-pulling] client count 0 + +2025-09-24 02:42:27,783 INFO toNotifyTaskSize = 0 + +2025-09-24 02:42:27,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:42:27,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:42:37,784 INFO [long-pulling] client count 0 + +2025-09-24 02:42:37,784 INFO toNotifyTaskSize = 0 + +2025-09-24 02:42:37,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:42:37,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:42:47,785 INFO [long-pulling] client count 0 + +2025-09-24 02:42:47,785 INFO toNotifyTaskSize = 0 + +2025-09-24 02:42:47,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:42:47,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:42:57,786 INFO [long-pulling] client count 0 + +2025-09-24 02:42:57,786 INFO toNotifyTaskSize = 0 + +2025-09-24 02:42:57,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:42:57,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:43:07,786 INFO toNotifyTaskSize = 0 + +2025-09-24 02:43:07,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:43:07,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:43:07,787 INFO [long-pulling] client count 0 + +2025-09-24 02:43:17,787 INFO toNotifyTaskSize = 0 + +2025-09-24 02:43:17,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:43:17,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:43:17,788 INFO [long-pulling] client count 0 + +2025-09-24 02:43:27,787 INFO toNotifyTaskSize = 0 + +2025-09-24 02:43:27,788 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:43:27,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:43:27,788 INFO [long-pulling] client count 0 + +2025-09-24 02:43:37,790 INFO [long-pulling] client count 0 + +2025-09-24 02:43:37,790 INFO toNotifyTaskSize = 0 + +2025-09-24 02:43:37,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:43:37,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:43:47,792 INFO [long-pulling] client count 0 + +2025-09-24 02:43:47,792 INFO toNotifyTaskSize = 0 + +2025-09-24 02:43:47,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:43:47,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:43:57,792 INFO [long-pulling] client count 0 + +2025-09-24 02:43:57,792 INFO toNotifyTaskSize = 0 + +2025-09-24 02:43:57,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:43:57,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:44:07,793 INFO [long-pulling] client count 0 + +2025-09-24 02:44:07,793 INFO toNotifyTaskSize = 0 + +2025-09-24 02:44:07,793 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:44:07,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:44:17,795 INFO [long-pulling] client count 0 + +2025-09-24 02:44:17,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:44:17,795 INFO toNotifyTaskSize = 0 + +2025-09-24 02:44:17,795 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:44:27,796 INFO [long-pulling] client count 0 + +2025-09-24 02:44:27,796 INFO toNotifyTaskSize = 0 + +2025-09-24 02:44:27,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:44:27,797 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:44:37,797 INFO [long-pulling] client count 0 + +2025-09-24 02:44:37,798 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:44:37,798 INFO toNotifyTaskSize = 0 + +2025-09-24 02:44:37,798 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:44:47,799 INFO [long-pulling] client count 0 + +2025-09-24 02:44:47,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:44:47,800 INFO toNotifyTaskSize = 0 + +2025-09-24 02:44:47,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:44:57,801 INFO [long-pulling] client count 0 + +2025-09-24 02:44:57,801 INFO toNotifyTaskSize = 0 + +2025-09-24 02:44:57,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:44:57,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:45:07,801 INFO [long-pulling] client count 0 + +2025-09-24 02:45:07,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:45:07,802 INFO toNotifyTaskSize = 0 + +2025-09-24 02:45:07,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:45:17,802 INFO [long-pulling] client count 0 + +2025-09-24 02:45:17,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:45:17,803 INFO toNotifyTaskSize = 0 + +2025-09-24 02:45:17,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:45:27,803 INFO [long-pulling] client count 0 + +2025-09-24 02:45:27,803 INFO toNotifyTaskSize = 0 + +2025-09-24 02:45:27,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:45:27,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:45:37,803 INFO toNotifyTaskSize = 0 + +2025-09-24 02:45:37,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:45:37,803 INFO [long-pulling] client count 0 + +2025-09-24 02:45:37,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:45:47,805 INFO [long-pulling] client count 0 + +2025-09-24 02:45:47,805 INFO toNotifyTaskSize = 0 + +2025-09-24 02:45:47,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:45:47,805 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:45:57,805 INFO [long-pulling] client count 0 + +2025-09-24 02:45:57,806 INFO toNotifyTaskSize = 0 + +2025-09-24 02:45:57,806 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:45:57,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:46:07,806 INFO [long-pulling] client count 0 + +2025-09-24 02:46:07,806 INFO toNotifyTaskSize = 0 + +2025-09-24 02:46:07,806 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:46:07,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:46:17,808 INFO [long-pulling] client count 0 + +2025-09-24 02:46:17,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:46:17,808 INFO toNotifyTaskSize = 0 + +2025-09-24 02:46:17,808 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:46:27,808 INFO [long-pulling] client count 0 + +2025-09-24 02:46:27,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:46:27,808 INFO toNotifyTaskSize = 0 + +2025-09-24 02:46:27,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:46:37,810 INFO [long-pulling] client count 0 + +2025-09-24 02:46:37,810 INFO toNotifyTaskSize = 0 + +2025-09-24 02:46:37,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:46:37,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:46:47,810 INFO [long-pulling] client count 0 + +2025-09-24 02:46:47,810 INFO toNotifyTaskSize = 0 + +2025-09-24 02:46:47,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:46:47,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:46:57,811 INFO toNotifyTaskSize = 0 + +2025-09-24 02:46:57,811 INFO [long-pulling] client count 0 + +2025-09-24 02:46:57,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:46:57,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:47:07,812 INFO [long-pulling] client count 0 + +2025-09-24 02:47:07,812 INFO toNotifyTaskSize = 0 + +2025-09-24 02:47:07,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:47:07,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:47:17,813 INFO [long-pulling] client count 0 + +2025-09-24 02:47:17,813 INFO toNotifyTaskSize = 0 + +2025-09-24 02:47:17,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:47:17,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:47:27,813 INFO [long-pulling] client count 0 + +2025-09-24 02:47:27,814 INFO toNotifyTaskSize = 0 + +2025-09-24 02:47:27,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:47:27,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:47:37,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:47:37,816 INFO toNotifyTaskSize = 0 + +2025-09-24 02:47:37,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:47:37,816 INFO [long-pulling] client count 0 + +2025-09-24 02:47:47,817 INFO [long-pulling] client count 0 + +2025-09-24 02:47:47,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:47:47,817 INFO toNotifyTaskSize = 0 + +2025-09-24 02:47:47,817 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:47:57,817 INFO [long-pulling] client count 0 + +2025-09-24 02:47:57,817 INFO toNotifyTaskSize = 0 + +2025-09-24 02:47:57,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:47:57,817 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:48:07,818 INFO [long-pulling] client count 0 + +2025-09-24 02:48:07,818 INFO toNotifyTaskSize = 0 + +2025-09-24 02:48:07,818 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:48:07,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:48:17,819 INFO [long-pulling] client count 0 + +2025-09-24 02:48:17,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:48:17,819 INFO toNotifyTaskSize = 0 + +2025-09-24 02:48:17,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:48:27,819 INFO [long-pulling] client count 0 + +2025-09-24 02:48:27,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:48:27,819 INFO toNotifyTaskSize = 0 + +2025-09-24 02:48:27,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:48:37,821 INFO [long-pulling] client count 0 + +2025-09-24 02:48:37,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:48:37,821 INFO toNotifyTaskSize = 0 + +2025-09-24 02:48:37,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:48:47,823 INFO [long-pulling] client count 0 + +2025-09-24 02:48:47,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:48:47,823 INFO toNotifyTaskSize = 0 + +2025-09-24 02:48:47,823 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:48:57,824 INFO [long-pulling] client count 0 + +2025-09-24 02:48:57,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:48:57,824 INFO toNotifyTaskSize = 0 + +2025-09-24 02:48:57,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:49:07,825 INFO [long-pulling] client count 0 + +2025-09-24 02:49:07,825 INFO toNotifyTaskSize = 0 + +2025-09-24 02:49:07,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:49:07,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:49:17,826 INFO [long-pulling] client count 0 + +2025-09-24 02:49:17,826 INFO toNotifyTaskSize = 0 + +2025-09-24 02:49:17,826 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:49:17,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:49:27,826 INFO [long-pulling] client count 0 + +2025-09-24 02:49:27,826 INFO toNotifyTaskSize = 0 + +2025-09-24 02:49:27,827 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:49:27,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:49:37,827 INFO [long-pulling] client count 0 + +2025-09-24 02:49:37,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:49:37,828 INFO toNotifyTaskSize = 0 + +2025-09-24 02:49:37,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:49:47,828 INFO [long-pulling] client count 0 + +2025-09-24 02:49:47,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:49:47,829 INFO toNotifyTaskSize = 0 + +2025-09-24 02:49:47,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:49:57,829 INFO [long-pulling] client count 0 + +2025-09-24 02:49:57,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:49:57,830 INFO toNotifyTaskSize = 0 + +2025-09-24 02:49:57,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:50:07,829 INFO [long-pulling] client count 0 + +2025-09-24 02:50:07,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:50:07,830 INFO toNotifyTaskSize = 0 + +2025-09-24 02:50:07,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:50:17,831 INFO [long-pulling] client count 0 + +2025-09-24 02:50:17,835 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:50:17,835 INFO toNotifyTaskSize = 0 + +2025-09-24 02:50:17,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:50:27,831 INFO [long-pulling] client count 0 + +2025-09-24 02:50:27,835 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:50:27,835 INFO toNotifyTaskSize = 0 + +2025-09-24 02:50:27,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:50:37,832 INFO [long-pulling] client count 0 + +2025-09-24 02:50:37,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:50:37,838 INFO toNotifyTaskSize = 0 + +2025-09-24 02:50:37,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:50:47,832 INFO [long-pulling] client count 0 + +2025-09-24 02:50:47,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:50:47,838 INFO toNotifyTaskSize = 0 + +2025-09-24 02:50:47,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:50:57,833 INFO [long-pulling] client count 0 + +2025-09-24 02:50:57,840 INFO toNotifyTaskSize = 0 + +2025-09-24 02:50:57,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:50:57,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:51:07,833 INFO [long-pulling] client count 0 + +2025-09-24 02:51:07,840 INFO toNotifyTaskSize = 0 + +2025-09-24 02:51:07,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:51:07,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:51:17,833 INFO [long-pulling] client count 0 + +2025-09-24 02:51:17,841 INFO toNotifyTaskSize = 0 + +2025-09-24 02:51:17,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:51:17,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:51:27,833 INFO [long-pulling] client count 0 + +2025-09-24 02:51:27,843 INFO toNotifyTaskSize = 0 + +2025-09-24 02:51:27,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:51:27,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:51:37,834 INFO [long-pulling] client count 0 + +2025-09-24 02:51:37,844 INFO toNotifyTaskSize = 0 + +2025-09-24 02:51:37,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:51:37,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:51:47,836 INFO [long-pulling] client count 0 + +2025-09-24 02:51:47,846 INFO toNotifyTaskSize = 0 + +2025-09-24 02:51:47,846 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:51:47,846 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:51:57,838 INFO [long-pulling] client count 0 + +2025-09-24 02:51:57,846 INFO toNotifyTaskSize = 0 + +2025-09-24 02:51:57,846 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:51:57,846 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:52:07,840 INFO [long-pulling] client count 0 + +2025-09-24 02:52:07,848 INFO toNotifyTaskSize = 0 + +2025-09-24 02:52:07,848 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:52:07,849 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:52:17,840 INFO [long-pulling] client count 0 + +2025-09-24 02:52:17,849 INFO toNotifyTaskSize = 0 + +2025-09-24 02:52:17,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:52:17,849 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:52:27,841 INFO [long-pulling] client count 0 + +2025-09-24 02:52:27,849 INFO toNotifyTaskSize = 0 + +2025-09-24 02:52:27,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:52:27,849 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:52:37,842 INFO [long-pulling] client count 0 + +2025-09-24 02:52:37,851 INFO toNotifyTaskSize = 0 + +2025-09-24 02:52:37,851 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:52:37,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:52:47,844 INFO [long-pulling] client count 0 + +2025-09-24 02:52:47,851 INFO toNotifyTaskSize = 0 + +2025-09-24 02:52:47,851 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:52:47,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:52:57,844 INFO [long-pulling] client count 0 + +2025-09-24 02:52:57,854 INFO toNotifyTaskSize = 0 + +2025-09-24 02:52:57,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:52:57,854 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:53:07,846 INFO [long-pulling] client count 0 + +2025-09-24 02:53:07,855 INFO toNotifyTaskSize = 0 + +2025-09-24 02:53:07,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:53:07,856 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:53:17,849 INFO [long-pulling] client count 0 + +2025-09-24 02:53:17,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:53:17,858 INFO toNotifyTaskSize = 0 + +2025-09-24 02:53:17,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:53:27,849 INFO [long-pulling] client count 0 + +2025-09-24 02:53:27,858 INFO toNotifyTaskSize = 0 + +2025-09-24 02:53:27,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:53:27,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:53:37,851 INFO [long-pulling] client count 0 + +2025-09-24 02:53:37,859 INFO toNotifyTaskSize = 0 + +2025-09-24 02:53:37,859 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:53:37,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:53:47,851 INFO [long-pulling] client count 0 + +2025-09-24 02:53:47,861 INFO toNotifyTaskSize = 0 + +2025-09-24 02:53:47,861 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:53:47,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:53:57,851 INFO [long-pulling] client count 0 + +2025-09-24 02:53:57,862 INFO toNotifyTaskSize = 0 + +2025-09-24 02:53:57,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:53:57,862 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:54:07,852 INFO [long-pulling] client count 0 + +2025-09-24 02:54:07,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:54:07,862 INFO toNotifyTaskSize = 0 + +2025-09-24 02:54:07,862 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:54:17,855 INFO [long-pulling] client count 0 + +2025-09-24 02:54:17,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:54:17,864 INFO toNotifyTaskSize = 0 + +2025-09-24 02:54:17,864 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:54:27,855 INFO [long-pulling] client count 0 + +2025-09-24 02:54:27,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:54:27,866 INFO toNotifyTaskSize = 0 + +2025-09-24 02:54:27,866 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:54:37,855 INFO [long-pulling] client count 0 + +2025-09-24 02:54:37,867 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:54:37,867 INFO toNotifyTaskSize = 0 + +2025-09-24 02:54:37,867 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:54:47,857 INFO [long-pulling] client count 0 + +2025-09-24 02:54:47,869 INFO toNotifyTaskSize = 0 + +2025-09-24 02:54:47,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:54:47,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:54:57,859 INFO [long-pulling] client count 0 + +2025-09-24 02:54:57,870 INFO toNotifyTaskSize = 0 + +2025-09-24 02:54:57,870 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:54:57,870 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:55:07,860 INFO [long-pulling] client count 0 + +2025-09-24 02:55:07,872 INFO toNotifyTaskSize = 0 + +2025-09-24 02:55:07,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:55:07,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:55:17,861 INFO [long-pulling] client count 0 + +2025-09-24 02:55:17,874 INFO toNotifyTaskSize = 0 + +2025-09-24 02:55:17,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:55:17,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:55:27,861 INFO [long-pulling] client count 0 + +2025-09-24 02:55:27,875 INFO toNotifyTaskSize = 0 + +2025-09-24 02:55:27,875 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:55:27,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:55:37,862 INFO [long-pulling] client count 0 + +2025-09-24 02:55:37,875 INFO toNotifyTaskSize = 0 + +2025-09-24 02:55:37,875 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:55:37,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:55:47,862 INFO [long-pulling] client count 0 + +2025-09-24 02:55:47,877 INFO toNotifyTaskSize = 0 + +2025-09-24 02:55:47,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:55:47,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:55:57,863 INFO [long-pulling] client count 0 + +2025-09-24 02:55:57,878 INFO toNotifyTaskSize = 0 + +2025-09-24 02:55:57,878 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:55:57,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:56:07,863 INFO [long-pulling] client count 0 + +2025-09-24 02:56:07,878 INFO toNotifyTaskSize = 0 + +2025-09-24 02:56:07,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:56:07,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:56:17,864 INFO [long-pulling] client count 0 + +2025-09-24 02:56:17,879 INFO toNotifyTaskSize = 0 + +2025-09-24 02:56:17,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:56:17,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:56:27,866 INFO [long-pulling] client count 0 + +2025-09-24 02:56:27,880 INFO toNotifyTaskSize = 0 + +2025-09-24 02:56:27,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:56:27,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:56:37,869 INFO [long-pulling] client count 0 + +2025-09-24 02:56:37,880 INFO toNotifyTaskSize = 0 + +2025-09-24 02:56:37,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:56:37,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:56:47,873 INFO [long-pulling] client count 0 + +2025-09-24 02:56:47,882 INFO toNotifyTaskSize = 0 + +2025-09-24 02:56:47,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:56:47,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:56:57,876 INFO [long-pulling] client count 0 + +2025-09-24 02:56:57,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:56:57,884 INFO toNotifyTaskSize = 0 + +2025-09-24 02:56:57,884 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:57:07,878 INFO [long-pulling] client count 0 + +2025-09-24 02:57:07,885 INFO toNotifyTaskSize = 0 + +2025-09-24 02:57:07,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:57:07,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:57:17,879 INFO [long-pulling] client count 0 + +2025-09-24 02:57:17,887 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:57:17,887 INFO toNotifyTaskSize = 0 + +2025-09-24 02:57:17,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:57:27,879 INFO [long-pulling] client count 0 + +2025-09-24 02:57:27,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:57:27,889 INFO toNotifyTaskSize = 0 + +2025-09-24 02:57:27,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:57:37,879 INFO [long-pulling] client count 0 + +2025-09-24 02:57:37,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:57:37,889 INFO toNotifyTaskSize = 0 + +2025-09-24 02:57:37,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:57:47,881 INFO [long-pulling] client count 0 + +2025-09-24 02:57:47,891 INFO toNotifyTaskSize = 0 + +2025-09-24 02:57:47,891 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:57:47,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:57:57,882 INFO [long-pulling] client count 0 + +2025-09-24 02:57:57,891 INFO toNotifyTaskSize = 0 + +2025-09-24 02:57:57,891 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:57:57,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:58:07,883 INFO [long-pulling] client count 0 + +2025-09-24 02:58:07,893 INFO toNotifyTaskSize = 0 + +2025-09-24 02:58:07,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:58:07,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:58:17,885 INFO [long-pulling] client count 0 + +2025-09-24 02:58:17,895 INFO toNotifyTaskSize = 0 + +2025-09-24 02:58:17,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:58:17,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:58:27,885 INFO [long-pulling] client count 0 + +2025-09-24 02:58:27,896 INFO toNotifyTaskSize = 0 + +2025-09-24 02:58:27,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:58:27,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:58:37,886 INFO [long-pulling] client count 0 + +2025-09-24 02:58:37,896 INFO toNotifyTaskSize = 0 + +2025-09-24 02:58:37,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:58:37,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:58:47,887 INFO [long-pulling] client count 0 + +2025-09-24 02:58:47,898 INFO toNotifyTaskSize = 0 + +2025-09-24 02:58:47,898 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:58:47,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:58:57,888 INFO [long-pulling] client count 0 + +2025-09-24 02:58:57,898 INFO toNotifyTaskSize = 0 + +2025-09-24 02:58:57,898 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:58:57,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:59:07,889 INFO [long-pulling] client count 0 + +2025-09-24 02:59:07,900 INFO toNotifyTaskSize = 0 + +2025-09-24 02:59:07,900 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:59:07,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:59:17,890 INFO [long-pulling] client count 0 + +2025-09-24 02:59:17,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:59:17,901 INFO toNotifyTaskSize = 0 + +2025-09-24 02:59:17,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:59:27,892 INFO [long-pulling] client count 0 + +2025-09-24 02:59:27,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:59:27,901 INFO toNotifyTaskSize = 0 + +2025-09-24 02:59:27,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:59:37,892 INFO [long-pulling] client count 0 + +2025-09-24 02:59:37,901 INFO toNotifyTaskSize = 0 + +2025-09-24 02:59:37,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:59:37,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:59:47,893 INFO [long-pulling] client count 0 + +2025-09-24 02:59:47,903 INFO toNotifyTaskSize = 0 + +2025-09-24 02:59:47,904 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:59:47,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 02:59:57,894 INFO [long-pulling] client count 0 + +2025-09-24 02:59:57,905 INFO toNotifyTaskSize = 0 + +2025-09-24 02:59:57,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 02:59:57,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:00:07,894 INFO [long-pulling] client count 0 + +2025-09-24 03:00:07,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:00:07,906 INFO toNotifyTaskSize = 0 + +2025-09-24 03:00:07,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:00:17,895 INFO [long-pulling] client count 0 + +2025-09-24 03:00:17,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:00:17,906 INFO toNotifyTaskSize = 0 + +2025-09-24 03:00:17,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:00:27,895 INFO [long-pulling] client count 0 + +2025-09-24 03:00:27,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:00:27,908 INFO toNotifyTaskSize = 0 + +2025-09-24 03:00:27,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:00:37,895 INFO [long-pulling] client count 0 + +2025-09-24 03:00:37,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:00:37,908 INFO toNotifyTaskSize = 0 + +2025-09-24 03:00:37,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:00:47,897 INFO [long-pulling] client count 0 + +2025-09-24 03:00:47,910 INFO toNotifyTaskSize = 0 + +2025-09-24 03:00:47,910 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:00:47,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:00:57,899 INFO [long-pulling] client count 0 + +2025-09-24 03:00:57,911 INFO toNotifyTaskSize = 0 + +2025-09-24 03:00:57,911 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:00:57,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:01:07,899 INFO [long-pulling] client count 0 + +2025-09-24 03:01:07,914 INFO toNotifyTaskSize = 0 + +2025-09-24 03:01:07,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:01:07,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:01:17,901 INFO [long-pulling] client count 0 + +2025-09-24 03:01:17,915 INFO toNotifyTaskSize = 0 + +2025-09-24 03:01:17,915 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:01:17,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:01:27,902 INFO [long-pulling] client count 0 + +2025-09-24 03:01:27,917 INFO toNotifyTaskSize = 0 + +2025-09-24 03:01:27,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:01:27,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:01:37,904 INFO [long-pulling] client count 0 + +2025-09-24 03:01:37,918 INFO toNotifyTaskSize = 0 + +2025-09-24 03:01:37,918 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:01:37,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:01:47,904 INFO [long-pulling] client count 0 + +2025-09-24 03:01:47,919 INFO toNotifyTaskSize = 0 + +2025-09-24 03:01:47,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:01:47,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:01:57,906 INFO [long-pulling] client count 0 + +2025-09-24 03:01:57,920 INFO toNotifyTaskSize = 0 + +2025-09-24 03:01:57,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:01:57,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:02:07,908 INFO [long-pulling] client count 0 + +2025-09-24 03:02:07,922 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:02:07,922 INFO toNotifyTaskSize = 0 + +2025-09-24 03:02:07,922 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:02:17,910 INFO [long-pulling] client count 0 + +2025-09-24 03:02:17,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:02:17,923 INFO toNotifyTaskSize = 0 + +2025-09-24 03:02:17,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:02:27,911 INFO [long-pulling] client count 0 + +2025-09-24 03:02:27,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:02:27,925 INFO toNotifyTaskSize = 0 + +2025-09-24 03:02:27,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:02:37,911 INFO [long-pulling] client count 0 + +2025-09-24 03:02:37,926 INFO toNotifyTaskSize = 0 + +2025-09-24 03:02:37,926 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:02:37,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:02:47,912 INFO [long-pulling] client count 0 + +2025-09-24 03:02:47,928 INFO toNotifyTaskSize = 0 + +2025-09-24 03:02:47,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:02:47,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:02:57,914 INFO [long-pulling] client count 0 + +2025-09-24 03:02:57,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:02:57,928 INFO toNotifyTaskSize = 0 + +2025-09-24 03:02:57,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:03:07,914 INFO [long-pulling] client count 0 + +2025-09-24 03:03:07,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:03:07,930 INFO toNotifyTaskSize = 0 + +2025-09-24 03:03:07,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:03:17,917 INFO [long-pulling] client count 0 + +2025-09-24 03:03:17,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:03:17,932 INFO toNotifyTaskSize = 0 + +2025-09-24 03:03:17,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:03:27,917 INFO [long-pulling] client count 0 + +2025-09-24 03:03:27,933 INFO toNotifyTaskSize = 0 + +2025-09-24 03:03:27,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:03:27,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:03:37,919 INFO [long-pulling] client count 0 + +2025-09-24 03:03:37,935 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:03:37,935 INFO toNotifyTaskSize = 0 + +2025-09-24 03:03:37,935 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:03:47,920 INFO [long-pulling] client count 0 + +2025-09-24 03:03:47,935 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:03:47,935 INFO toNotifyTaskSize = 0 + +2025-09-24 03:03:47,936 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:03:57,920 INFO [long-pulling] client count 0 + +2025-09-24 03:03:57,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:03:57,938 INFO toNotifyTaskSize = 0 + +2025-09-24 03:03:57,938 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:04:07,921 INFO [long-pulling] client count 0 + +2025-09-24 03:04:07,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:04:07,940 INFO toNotifyTaskSize = 0 + +2025-09-24 03:04:07,940 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:04:17,922 INFO [long-pulling] client count 0 + +2025-09-24 03:04:17,942 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:04:17,942 INFO toNotifyTaskSize = 0 + +2025-09-24 03:04:17,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:04:27,923 INFO [long-pulling] client count 0 + +2025-09-24 03:04:27,942 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:04:27,942 INFO toNotifyTaskSize = 0 + +2025-09-24 03:04:27,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:04:37,924 INFO [long-pulling] client count 0 + +2025-09-24 03:04:37,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:04:37,944 INFO toNotifyTaskSize = 0 + +2025-09-24 03:04:37,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:04:47,926 INFO [long-pulling] client count 0 + +2025-09-24 03:04:47,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:04:47,946 INFO toNotifyTaskSize = 0 + +2025-09-24 03:04:47,946 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:04:57,927 INFO [long-pulling] client count 0 + +2025-09-24 03:04:57,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:04:57,947 INFO toNotifyTaskSize = 0 + +2025-09-24 03:04:57,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:05:07,927 INFO [long-pulling] client count 0 + +2025-09-24 03:05:07,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:05:07,949 INFO toNotifyTaskSize = 0 + +2025-09-24 03:05:07,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:05:17,929 INFO [long-pulling] client count 0 + +2025-09-24 03:05:17,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:05:17,951 INFO toNotifyTaskSize = 0 + +2025-09-24 03:05:17,951 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:05:27,929 INFO [long-pulling] client count 0 + +2025-09-24 03:05:27,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:05:27,952 INFO toNotifyTaskSize = 0 + +2025-09-24 03:05:27,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:05:37,931 INFO [long-pulling] client count 0 + +2025-09-24 03:05:37,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:05:37,952 INFO toNotifyTaskSize = 0 + +2025-09-24 03:05:37,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:05:47,932 INFO [long-pulling] client count 0 + +2025-09-24 03:05:47,953 INFO toNotifyTaskSize = 0 + +2025-09-24 03:05:47,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:05:47,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:05:57,934 INFO [long-pulling] client count 0 + +2025-09-24 03:05:57,954 INFO toNotifyTaskSize = 0 + +2025-09-24 03:05:57,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:05:57,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:06:07,936 INFO [long-pulling] client count 0 + +2025-09-24 03:06:07,956 INFO toNotifyTaskSize = 0 + +2025-09-24 03:06:07,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:06:07,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:06:17,936 INFO [long-pulling] client count 0 + +2025-09-24 03:06:17,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:06:17,957 INFO toNotifyTaskSize = 0 + +2025-09-24 03:06:17,957 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:06:27,937 INFO [long-pulling] client count 0 + +2025-09-24 03:06:27,957 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:06:27,957 INFO toNotifyTaskSize = 0 + +2025-09-24 03:06:27,957 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:06:37,938 INFO [long-pulling] client count 0 + +2025-09-24 03:06:37,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:06:37,959 INFO toNotifyTaskSize = 0 + +2025-09-24 03:06:37,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:06:47,938 INFO [long-pulling] client count 0 + +2025-09-24 03:06:47,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:06:47,961 INFO toNotifyTaskSize = 0 + +2025-09-24 03:06:47,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:06:57,940 INFO [long-pulling] client count 0 + +2025-09-24 03:06:57,962 INFO toNotifyTaskSize = 0 + +2025-09-24 03:06:57,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:06:57,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:07:07,940 INFO [long-pulling] client count 0 + +2025-09-24 03:07:07,963 INFO toNotifyTaskSize = 0 + +2025-09-24 03:07:07,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:07:07,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:07:17,942 INFO [long-pulling] client count 0 + +2025-09-24 03:07:17,963 INFO toNotifyTaskSize = 0 + +2025-09-24 03:07:17,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:07:17,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:07:27,943 INFO [long-pulling] client count 0 + +2025-09-24 03:07:27,964 INFO toNotifyTaskSize = 0 + +2025-09-24 03:07:27,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:07:27,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:07:37,945 INFO [long-pulling] client count 0 + +2025-09-24 03:07:37,965 INFO toNotifyTaskSize = 0 + +2025-09-24 03:07:37,965 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:07:37,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:07:47,945 INFO [long-pulling] client count 0 + +2025-09-24 03:07:47,967 INFO toNotifyTaskSize = 0 + +2025-09-24 03:07:47,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:07:47,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:07:57,947 INFO [long-pulling] client count 0 + +2025-09-24 03:07:57,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:07:57,968 INFO toNotifyTaskSize = 0 + +2025-09-24 03:07:57,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:08:07,947 INFO [long-pulling] client count 0 + +2025-09-24 03:08:07,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:08:07,968 INFO toNotifyTaskSize = 0 + +2025-09-24 03:08:07,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:08:17,948 INFO [long-pulling] client count 0 + +2025-09-24 03:08:17,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:08:17,968 INFO toNotifyTaskSize = 0 + +2025-09-24 03:08:17,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:08:27,951 INFO [long-pulling] client count 0 + +2025-09-24 03:08:27,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:08:27,970 INFO toNotifyTaskSize = 0 + +2025-09-24 03:08:27,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:08:37,952 INFO [long-pulling] client count 0 + +2025-09-24 03:08:37,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:08:37,970 INFO toNotifyTaskSize = 0 + +2025-09-24 03:08:37,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:08:47,952 INFO [long-pulling] client count 0 + +2025-09-24 03:08:47,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:08:47,972 INFO toNotifyTaskSize = 0 + +2025-09-24 03:08:47,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:08:57,953 INFO [long-pulling] client count 0 + +2025-09-24 03:08:57,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:08:57,974 INFO toNotifyTaskSize = 0 + +2025-09-24 03:08:57,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:09:07,955 INFO [long-pulling] client count 0 + +2025-09-24 03:09:07,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:09:07,976 INFO toNotifyTaskSize = 0 + +2025-09-24 03:09:07,976 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:09:17,957 INFO [long-pulling] client count 0 + +2025-09-24 03:09:17,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:09:17,979 INFO toNotifyTaskSize = 0 + +2025-09-24 03:09:17,979 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:09:27,957 INFO [long-pulling] client count 0 + +2025-09-24 03:09:27,979 INFO toNotifyTaskSize = 0 + +2025-09-24 03:09:27,979 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:09:27,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:09:37,960 INFO [long-pulling] client count 0 + +2025-09-24 03:09:37,981 INFO toNotifyTaskSize = 0 + +2025-09-24 03:09:37,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:09:37,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:09:47,961 INFO [long-pulling] client count 0 + +2025-09-24 03:09:47,981 INFO toNotifyTaskSize = 0 + +2025-09-24 03:09:47,982 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:09:47,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:09:57,962 INFO [long-pulling] client count 0 + +2025-09-24 03:09:57,982 INFO toNotifyTaskSize = 0 + +2025-09-24 03:09:57,982 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:09:57,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:10:07,963 INFO [long-pulling] client count 0 + +2025-09-24 03:10:07,983 INFO toNotifyTaskSize = 0 + +2025-09-24 03:10:07,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:10:07,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:10:17,964 INFO [long-pulling] client count 0 + +2025-09-24 03:10:17,986 INFO toNotifyTaskSize = 0 + +2025-09-24 03:10:17,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:10:17,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:10:27,965 INFO [long-pulling] client count 0 + +2025-09-24 03:10:27,986 INFO toNotifyTaskSize = 0 + +2025-09-24 03:10:27,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:10:27,987 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:10:37,967 INFO [long-pulling] client count 0 + +2025-09-24 03:10:37,989 INFO toNotifyTaskSize = 0 + +2025-09-24 03:10:37,989 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:10:37,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:10:47,967 INFO [long-pulling] client count 0 + +2025-09-24 03:10:47,989 INFO toNotifyTaskSize = 0 + +2025-09-24 03:10:47,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:10:47,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:10:57,968 INFO [long-pulling] client count 0 + +2025-09-24 03:10:57,993 INFO toNotifyTaskSize = 0 + +2025-09-24 03:10:57,993 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:10:57,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:11:07,968 INFO [long-pulling] client count 0 + +2025-09-24 03:11:07,995 INFO toNotifyTaskSize = 0 + +2025-09-24 03:11:07,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:11:07,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:11:17,970 INFO [long-pulling] client count 0 + +2025-09-24 03:11:17,997 INFO toNotifyTaskSize = 0 + +2025-09-24 03:11:17,997 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:11:17,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:11:27,972 INFO [long-pulling] client count 0 + +2025-09-24 03:11:27,997 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:11:27,998 INFO toNotifyTaskSize = 0 + +2025-09-24 03:11:27,998 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:11:37,973 INFO [long-pulling] client count 0 + +2025-09-24 03:11:37,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:11:37,999 INFO toNotifyTaskSize = 0 + +2025-09-24 03:11:37,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:11:47,975 INFO [long-pulling] client count 0 + +2025-09-24 03:11:47,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:11:47,999 INFO toNotifyTaskSize = 0 + +2025-09-24 03:11:47,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:11:57,977 INFO [long-pulling] client count 0 + +2025-09-24 03:11:58,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:11:58,000 INFO toNotifyTaskSize = 0 + +2025-09-24 03:11:58,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:12:07,977 INFO [long-pulling] client count 0 + +2025-09-24 03:12:08,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:12:08,000 INFO toNotifyTaskSize = 0 + +2025-09-24 03:12:08,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:12:17,978 INFO [long-pulling] client count 0 + +2025-09-24 03:12:18,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:12:18,001 INFO toNotifyTaskSize = 0 + +2025-09-24 03:12:18,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:12:27,980 INFO [long-pulling] client count 0 + +2025-09-24 03:12:28,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:12:28,003 INFO toNotifyTaskSize = 0 + +2025-09-24 03:12:28,003 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:12:37,981 INFO [long-pulling] client count 0 + +2025-09-24 03:12:38,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:12:38,005 INFO toNotifyTaskSize = 0 + +2025-09-24 03:12:38,005 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:12:47,982 INFO [long-pulling] client count 0 + +2025-09-24 03:12:48,007 INFO toNotifyTaskSize = 0 + +2025-09-24 03:12:48,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:12:48,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:12:57,984 INFO [long-pulling] client count 0 + +2025-09-24 03:12:58,007 INFO toNotifyTaskSize = 0 + +2025-09-24 03:12:58,008 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:12:58,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:13:07,986 INFO [long-pulling] client count 0 + +2025-09-24 03:13:08,008 INFO toNotifyTaskSize = 0 + +2025-09-24 03:13:08,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:13:08,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:13:17,988 INFO [long-pulling] client count 0 + +2025-09-24 03:13:18,010 INFO toNotifyTaskSize = 0 + +2025-09-24 03:13:18,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:13:18,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:13:27,988 INFO [long-pulling] client count 0 + +2025-09-24 03:13:28,011 INFO toNotifyTaskSize = 0 + +2025-09-24 03:13:28,011 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:13:28,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:13:37,990 INFO [long-pulling] client count 0 + +2025-09-24 03:13:38,012 INFO toNotifyTaskSize = 0 + +2025-09-24 03:13:38,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:13:38,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:13:47,991 INFO [long-pulling] client count 0 + +2025-09-24 03:13:48,012 INFO toNotifyTaskSize = 0 + +2025-09-24 03:13:48,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:13:48,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:13:57,993 INFO [long-pulling] client count 0 + +2025-09-24 03:13:58,014 INFO toNotifyTaskSize = 0 + +2025-09-24 03:13:58,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:13:58,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:14:07,995 INFO [long-pulling] client count 0 + +2025-09-24 03:14:08,015 INFO toNotifyTaskSize = 0 + +2025-09-24 03:14:08,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:14:08,015 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:14:17,996 INFO [long-pulling] client count 0 + +2025-09-24 03:14:18,016 INFO toNotifyTaskSize = 0 + +2025-09-24 03:14:18,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:14:18,017 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:14:27,996 INFO [long-pulling] client count 0 + +2025-09-24 03:14:28,017 INFO toNotifyTaskSize = 0 + +2025-09-24 03:14:28,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:14:28,017 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:14:37,998 INFO [long-pulling] client count 0 + +2025-09-24 03:14:38,019 INFO toNotifyTaskSize = 0 + +2025-09-24 03:14:38,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:14:38,019 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:14:48,000 INFO [long-pulling] client count 0 + +2025-09-24 03:14:48,020 INFO toNotifyTaskSize = 0 + +2025-09-24 03:14:48,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:14:48,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:14:58,002 INFO [long-pulling] client count 0 + +2025-09-24 03:14:58,022 INFO toNotifyTaskSize = 0 + +2025-09-24 03:14:58,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:14:58,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:15:08,003 INFO [long-pulling] client count 0 + +2025-09-24 03:15:08,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:15:08,022 INFO toNotifyTaskSize = 0 + +2025-09-24 03:15:08,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:15:18,005 INFO [long-pulling] client count 0 + +2025-09-24 03:15:18,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:15:18,022 INFO toNotifyTaskSize = 0 + +2025-09-24 03:15:18,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:15:28,005 INFO [long-pulling] client count 0 + +2025-09-24 03:15:28,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:15:28,023 INFO toNotifyTaskSize = 0 + +2025-09-24 03:15:28,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:15:38,007 INFO [long-pulling] client count 0 + +2025-09-24 03:15:38,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:15:38,025 INFO toNotifyTaskSize = 0 + +2025-09-24 03:15:38,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:15:48,008 INFO [long-pulling] client count 0 + +2025-09-24 03:15:48,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:15:48,027 INFO toNotifyTaskSize = 0 + +2025-09-24 03:15:48,027 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:15:58,008 INFO [long-pulling] client count 0 + +2025-09-24 03:15:58,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:15:58,028 INFO toNotifyTaskSize = 0 + +2025-09-24 03:15:58,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:16:08,010 INFO [long-pulling] client count 0 + +2025-09-24 03:16:08,030 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:16:08,030 INFO toNotifyTaskSize = 0 + +2025-09-24 03:16:08,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:16:18,010 INFO [long-pulling] client count 0 + +2025-09-24 03:16:18,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:16:18,031 INFO toNotifyTaskSize = 0 + +2025-09-24 03:16:18,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:16:28,011 INFO [long-pulling] client count 0 + +2025-09-24 03:16:28,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:16:28,032 INFO toNotifyTaskSize = 0 + +2025-09-24 03:16:28,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:16:38,011 INFO [long-pulling] client count 0 + +2025-09-24 03:16:38,032 INFO toNotifyTaskSize = 0 + +2025-09-24 03:16:38,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:16:38,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:16:48,013 INFO [long-pulling] client count 0 + +2025-09-24 03:16:48,032 INFO toNotifyTaskSize = 0 + +2025-09-24 03:16:48,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:16:48,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:16:58,014 INFO [long-pulling] client count 0 + +2025-09-24 03:16:58,033 INFO toNotifyTaskSize = 0 + +2025-09-24 03:16:58,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:16:58,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:17:08,014 INFO [long-pulling] client count 0 + +2025-09-24 03:17:08,034 INFO toNotifyTaskSize = 0 + +2025-09-24 03:17:08,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:17:08,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:17:18,015 INFO [long-pulling] client count 0 + +2025-09-24 03:17:18,036 INFO toNotifyTaskSize = 0 + +2025-09-24 03:17:18,036 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:17:18,036 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:17:28,016 INFO [long-pulling] client count 0 + +2025-09-24 03:17:28,036 INFO toNotifyTaskSize = 0 + +2025-09-24 03:17:28,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:17:28,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:17:38,017 INFO [long-pulling] client count 0 + +2025-09-24 03:17:38,038 INFO toNotifyTaskSize = 0 + +2025-09-24 03:17:38,038 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:17:38,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:17:48,017 INFO [long-pulling] client count 0 + +2025-09-24 03:17:48,038 INFO toNotifyTaskSize = 0 + +2025-09-24 03:17:48,038 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:17:48,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:17:58,017 INFO [long-pulling] client count 0 + +2025-09-24 03:17:58,039 INFO toNotifyTaskSize = 0 + +2025-09-24 03:17:58,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:17:58,039 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:18:08,018 INFO [long-pulling] client count 0 + +2025-09-24 03:18:08,040 INFO toNotifyTaskSize = 0 + +2025-09-24 03:18:08,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:18:08,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:18:18,019 INFO [long-pulling] client count 0 + +2025-09-24 03:18:18,042 INFO toNotifyTaskSize = 0 + +2025-09-24 03:18:18,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:18:18,042 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:18:28,021 INFO [long-pulling] client count 0 + +2025-09-24 03:18:28,043 INFO toNotifyTaskSize = 0 + +2025-09-24 03:18:28,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:18:28,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:18:38,021 INFO [long-pulling] client count 0 + +2025-09-24 03:18:38,045 INFO toNotifyTaskSize = 0 + +2025-09-24 03:18:38,045 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:18:38,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:18:48,022 INFO [long-pulling] client count 0 + +2025-09-24 03:18:48,047 INFO toNotifyTaskSize = 0 + +2025-09-24 03:18:48,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:18:48,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:18:58,023 INFO [long-pulling] client count 0 + +2025-09-24 03:18:58,048 INFO toNotifyTaskSize = 0 + +2025-09-24 03:18:58,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:18:58,048 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:19:08,025 INFO [long-pulling] client count 0 + +2025-09-24 03:19:08,050 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:19:08,050 INFO toNotifyTaskSize = 0 + +2025-09-24 03:19:08,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:19:18,025 INFO [long-pulling] client count 0 + +2025-09-24 03:19:18,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:19:18,051 INFO toNotifyTaskSize = 0 + +2025-09-24 03:19:18,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:19:28,027 INFO [long-pulling] client count 0 + +2025-09-24 03:19:28,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:19:28,051 INFO toNotifyTaskSize = 0 + +2025-09-24 03:19:28,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:19:38,028 INFO [long-pulling] client count 0 + +2025-09-24 03:19:38,052 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:19:38,052 INFO toNotifyTaskSize = 0 + +2025-09-24 03:19:38,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:19:48,030 INFO [long-pulling] client count 0 + +2025-09-24 03:19:48,054 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:19:48,054 INFO toNotifyTaskSize = 0 + +2025-09-24 03:19:48,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:19:58,031 INFO [long-pulling] client count 0 + +2025-09-24 03:19:58,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:19:58,055 INFO toNotifyTaskSize = 0 + +2025-09-24 03:19:58,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:20:08,034 INFO [long-pulling] client count 0 + +2025-09-24 03:20:08,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:20:08,056 INFO toNotifyTaskSize = 0 + +2025-09-24 03:20:08,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:20:18,035 INFO [long-pulling] client count 0 + +2025-09-24 03:20:18,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:20:18,056 INFO toNotifyTaskSize = 0 + +2025-09-24 03:20:18,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:20:28,037 INFO [long-pulling] client count 0 + +2025-09-24 03:20:28,057 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:20:28,057 INFO toNotifyTaskSize = 0 + +2025-09-24 03:20:28,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:20:38,039 INFO [long-pulling] client count 0 + +2025-09-24 03:20:38,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:20:38,058 INFO toNotifyTaskSize = 0 + +2025-09-24 03:20:38,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:20:48,039 INFO [long-pulling] client count 0 + +2025-09-24 03:20:48,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:20:48,058 INFO toNotifyTaskSize = 0 + +2025-09-24 03:20:48,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:20:58,041 INFO [long-pulling] client count 0 + +2025-09-24 03:20:58,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:20:58,059 INFO toNotifyTaskSize = 0 + +2025-09-24 03:20:58,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:21:08,043 INFO [long-pulling] client count 0 + +2025-09-24 03:21:08,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:21:08,061 INFO toNotifyTaskSize = 0 + +2025-09-24 03:21:08,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:21:18,044 INFO [long-pulling] client count 0 + +2025-09-24 03:21:18,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:21:18,062 INFO toNotifyTaskSize = 0 + +2025-09-24 03:21:18,062 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:21:28,046 INFO [long-pulling] client count 0 + +2025-09-24 03:21:28,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:21:28,064 INFO toNotifyTaskSize = 0 + +2025-09-24 03:21:28,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:21:38,048 INFO [long-pulling] client count 0 + +2025-09-24 03:21:38,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:21:38,066 INFO toNotifyTaskSize = 0 + +2025-09-24 03:21:38,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:21:48,050 INFO [long-pulling] client count 0 + +2025-09-24 03:21:48,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:21:48,068 INFO toNotifyTaskSize = 0 + +2025-09-24 03:21:48,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:21:58,050 INFO [long-pulling] client count 0 + +2025-09-24 03:21:58,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:21:58,068 INFO toNotifyTaskSize = 0 + +2025-09-24 03:21:58,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:22:08,050 INFO [long-pulling] client count 0 + +2025-09-24 03:22:08,069 INFO toNotifyTaskSize = 0 + +2025-09-24 03:22:08,069 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:22:08,069 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:22:18,052 INFO [long-pulling] client count 0 + +2025-09-24 03:22:18,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:22:18,070 INFO toNotifyTaskSize = 0 + +2025-09-24 03:22:18,070 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:22:28,054 INFO [long-pulling] client count 0 + +2025-09-24 03:22:28,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:22:28,071 INFO toNotifyTaskSize = 0 + +2025-09-24 03:22:28,071 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:22:38,054 INFO [long-pulling] client count 0 + +2025-09-24 03:22:38,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:22:38,072 INFO toNotifyTaskSize = 0 + +2025-09-24 03:22:38,072 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:22:48,056 INFO [long-pulling] client count 0 + +2025-09-24 03:22:48,072 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:22:48,072 INFO toNotifyTaskSize = 0 + +2025-09-24 03:22:48,072 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:22:58,056 INFO [long-pulling] client count 0 + +2025-09-24 03:22:58,073 INFO toNotifyTaskSize = 0 + +2025-09-24 03:22:58,073 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:22:58,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:23:08,057 INFO [long-pulling] client count 0 + +2025-09-24 03:23:08,074 INFO toNotifyTaskSize = 0 + +2025-09-24 03:23:08,074 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:23:08,074 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:23:18,059 INFO [long-pulling] client count 0 + +2025-09-24 03:23:18,076 INFO toNotifyTaskSize = 0 + +2025-09-24 03:23:18,076 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:23:18,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:23:28,059 INFO [long-pulling] client count 0 + +2025-09-24 03:23:28,078 INFO toNotifyTaskSize = 0 + +2025-09-24 03:23:28,078 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:23:28,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:23:38,061 INFO [long-pulling] client count 0 + +2025-09-24 03:23:38,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:23:38,081 INFO toNotifyTaskSize = 0 + +2025-09-24 03:23:38,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:23:48,062 INFO [long-pulling] client count 0 + +2025-09-24 03:23:48,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:23:48,081 INFO toNotifyTaskSize = 0 + +2025-09-24 03:23:48,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:23:58,062 INFO [long-pulling] client count 0 + +2025-09-24 03:23:58,082 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:23:58,082 INFO toNotifyTaskSize = 0 + +2025-09-24 03:23:58,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:24:08,063 INFO [long-pulling] client count 0 + +2025-09-24 03:24:08,083 INFO toNotifyTaskSize = 0 + +2025-09-24 03:24:08,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:24:08,084 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:24:18,064 INFO [long-pulling] client count 0 + +2025-09-24 03:24:18,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:24:18,085 INFO toNotifyTaskSize = 0 + +2025-09-24 03:24:18,085 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:24:28,064 INFO [long-pulling] client count 0 + +2025-09-24 03:24:28,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:24:28,087 INFO toNotifyTaskSize = 0 + +2025-09-24 03:24:28,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:24:38,066 INFO [long-pulling] client count 0 + +2025-09-24 03:24:38,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:24:38,089 INFO toNotifyTaskSize = 0 + +2025-09-24 03:24:38,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:24:48,068 INFO [long-pulling] client count 0 + +2025-09-24 03:24:48,089 INFO toNotifyTaskSize = 0 + +2025-09-24 03:24:48,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:24:48,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:24:58,070 INFO [long-pulling] client count 0 + +2025-09-24 03:24:58,090 INFO toNotifyTaskSize = 0 + +2025-09-24 03:24:58,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:24:58,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:25:08,071 INFO [long-pulling] client count 0 + +2025-09-24 03:25:08,092 INFO toNotifyTaskSize = 0 + +2025-09-24 03:25:08,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:25:08,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:25:18,072 INFO [long-pulling] client count 0 + +2025-09-24 03:25:18,093 INFO toNotifyTaskSize = 0 + +2025-09-24 03:25:18,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:25:18,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:25:28,072 INFO [long-pulling] client count 0 + +2025-09-24 03:25:28,094 INFO toNotifyTaskSize = 0 + +2025-09-24 03:25:28,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:25:28,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:25:38,073 INFO [long-pulling] client count 0 + +2025-09-24 03:25:38,097 INFO toNotifyTaskSize = 0 + +2025-09-24 03:25:38,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:25:38,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:25:48,073 INFO [long-pulling] client count 0 + +2025-09-24 03:25:48,097 INFO toNotifyTaskSize = 0 + +2025-09-24 03:25:48,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:25:48,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:25:58,074 INFO [long-pulling] client count 0 + +2025-09-24 03:25:58,098 INFO toNotifyTaskSize = 0 + +2025-09-24 03:25:58,099 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:25:58,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:26:08,075 INFO [long-pulling] client count 0 + +2025-09-24 03:26:08,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:26:08,099 INFO toNotifyTaskSize = 0 + +2025-09-24 03:26:08,099 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:26:18,076 INFO [long-pulling] client count 0 + +2025-09-24 03:26:18,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:26:18,100 INFO toNotifyTaskSize = 0 + +2025-09-24 03:26:18,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:26:28,077 INFO [long-pulling] client count 0 + +2025-09-24 03:26:28,103 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:26:28,103 INFO toNotifyTaskSize = 0 + +2025-09-24 03:26:28,103 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:26:38,078 INFO [long-pulling] client count 0 + +2025-09-24 03:26:38,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:26:38,104 INFO toNotifyTaskSize = 0 + +2025-09-24 03:26:38,104 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:26:48,079 INFO [long-pulling] client count 0 + +2025-09-24 03:26:48,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:26:48,105 INFO toNotifyTaskSize = 0 + +2025-09-24 03:26:48,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:26:58,079 INFO [long-pulling] client count 0 + +2025-09-24 03:26:58,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:26:58,108 INFO toNotifyTaskSize = 0 + +2025-09-24 03:26:58,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:27:08,081 INFO [long-pulling] client count 0 + +2025-09-24 03:27:08,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:27:08,110 INFO toNotifyTaskSize = 0 + +2025-09-24 03:27:08,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:27:18,081 INFO [long-pulling] client count 0 + +2025-09-24 03:27:18,112 INFO toNotifyTaskSize = 0 + +2025-09-24 03:27:18,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:27:18,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:27:28,082 INFO [long-pulling] client count 0 + +2025-09-24 03:27:28,114 INFO toNotifyTaskSize = 0 + +2025-09-24 03:27:28,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:27:28,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:27:38,083 INFO [long-pulling] client count 0 + +2025-09-24 03:27:38,116 INFO toNotifyTaskSize = 0 + +2025-09-24 03:27:38,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:27:38,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:27:48,085 INFO [long-pulling] client count 0 + +2025-09-24 03:27:48,119 INFO toNotifyTaskSize = 0 + +2025-09-24 03:27:48,119 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:27:48,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:27:58,087 INFO [long-pulling] client count 0 + +2025-09-24 03:27:58,121 INFO toNotifyTaskSize = 0 + +2025-09-24 03:27:58,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:27:58,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:28:08,087 INFO [long-pulling] client count 0 + +2025-09-24 03:28:08,122 INFO toNotifyTaskSize = 0 + +2025-09-24 03:28:08,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:28:08,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:28:18,088 INFO [long-pulling] client count 0 + +2025-09-24 03:28:18,123 INFO toNotifyTaskSize = 0 + +2025-09-24 03:28:18,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:28:18,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:28:28,088 INFO [long-pulling] client count 0 + +2025-09-24 03:28:28,123 INFO toNotifyTaskSize = 0 + +2025-09-24 03:28:28,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:28:28,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:28:38,089 INFO [long-pulling] client count 0 + +2025-09-24 03:28:38,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:28:38,125 INFO toNotifyTaskSize = 0 + +2025-09-24 03:28:38,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:28:48,090 INFO [long-pulling] client count 0 + +2025-09-24 03:28:48,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:28:48,125 INFO toNotifyTaskSize = 0 + +2025-09-24 03:28:48,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:28:58,092 INFO [long-pulling] client count 0 + +2025-09-24 03:28:58,125 INFO toNotifyTaskSize = 0 + +2025-09-24 03:28:58,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:28:58,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:29:08,094 INFO [long-pulling] client count 0 + +2025-09-24 03:29:08,126 INFO toNotifyTaskSize = 0 + +2025-09-24 03:29:08,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:29:08,126 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:29:18,096 INFO [long-pulling] client count 0 + +2025-09-24 03:29:18,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:29:18,128 INFO toNotifyTaskSize = 0 + +2025-09-24 03:29:18,141 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:29:28,098 INFO [long-pulling] client count 0 + +2025-09-24 03:29:28,141 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:29:28,142 INFO toNotifyTaskSize = 0 + +2025-09-24 03:29:28,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:29:38,099 INFO [long-pulling] client count 0 + +2025-09-24 03:29:38,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:29:38,144 INFO toNotifyTaskSize = 0 + +2025-09-24 03:29:38,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:29:48,099 INFO [long-pulling] client count 0 + +2025-09-24 03:29:48,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:29:48,144 INFO toNotifyTaskSize = 0 + +2025-09-24 03:29:48,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:29:58,100 INFO [long-pulling] client count 0 + +2025-09-24 03:29:58,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:29:58,146 INFO toNotifyTaskSize = 0 + +2025-09-24 03:29:58,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:30:08,102 INFO [long-pulling] client count 0 + +2025-09-24 03:30:08,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:30:08,148 INFO toNotifyTaskSize = 0 + +2025-09-24 03:30:08,148 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:30:18,103 INFO [long-pulling] client count 0 + +2025-09-24 03:30:18,149 INFO toNotifyTaskSize = 0 + +2025-09-24 03:30:18,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:30:18,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:30:28,105 INFO [long-pulling] client count 0 + +2025-09-24 03:30:28,151 INFO toNotifyTaskSize = 0 + +2025-09-24 03:30:28,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:30:28,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:30:38,107 INFO [long-pulling] client count 0 + +2025-09-24 03:30:38,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:30:38,152 INFO toNotifyTaskSize = 0 + +2025-09-24 03:30:38,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:30:48,110 INFO [long-pulling] client count 0 + +2025-09-24 03:30:48,152 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:30:48,152 INFO toNotifyTaskSize = 0 + +2025-09-24 03:30:48,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:30:58,112 INFO [long-pulling] client count 0 + +2025-09-24 03:30:58,152 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:30:58,152 INFO toNotifyTaskSize = 0 + +2025-09-24 03:30:58,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:31:08,114 INFO [long-pulling] client count 0 + +2025-09-24 03:31:08,153 INFO toNotifyTaskSize = 0 + +2025-09-24 03:31:08,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:31:08,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:31:18,115 INFO [long-pulling] client count 0 + +2025-09-24 03:31:18,153 INFO toNotifyTaskSize = 0 + +2025-09-24 03:31:18,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:31:18,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:31:28,115 INFO [long-pulling] client count 0 + +2025-09-24 03:31:28,154 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:31:28,155 INFO toNotifyTaskSize = 0 + +2025-09-24 03:31:28,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:31:38,117 INFO [long-pulling] client count 0 + +2025-09-24 03:31:38,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:31:38,155 INFO toNotifyTaskSize = 0 + +2025-09-24 03:31:38,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:31:48,117 INFO [long-pulling] client count 0 + +2025-09-24 03:31:48,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:31:48,156 INFO toNotifyTaskSize = 0 + +2025-09-24 03:31:48,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:31:58,117 INFO [long-pulling] client count 0 + +2025-09-24 03:31:58,157 INFO toNotifyTaskSize = 0 + +2025-09-24 03:31:58,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:31:58,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:32:08,120 INFO [long-pulling] client count 0 + +2025-09-24 03:32:08,157 INFO toNotifyTaskSize = 0 + +2025-09-24 03:32:08,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:32:08,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:32:18,120 INFO [long-pulling] client count 0 + +2025-09-24 03:32:18,157 INFO toNotifyTaskSize = 0 + +2025-09-24 03:32:18,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:32:18,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:32:28,120 INFO [long-pulling] client count 0 + +2025-09-24 03:32:28,157 INFO toNotifyTaskSize = 0 + +2025-09-24 03:32:28,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:32:28,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:32:38,123 INFO [long-pulling] client count 0 + +2025-09-24 03:32:38,160 INFO toNotifyTaskSize = 0 + +2025-09-24 03:32:38,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:32:38,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:32:48,124 INFO [long-pulling] client count 0 + +2025-09-24 03:32:48,162 INFO toNotifyTaskSize = 0 + +2025-09-24 03:32:48,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:32:48,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:32:58,158 INFO [long-pulling] client count 0 + +2025-09-24 03:32:58,183 INFO toNotifyTaskSize = 0 + +2025-09-24 03:32:58,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:32:58,183 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:33:08,158 INFO [long-pulling] client count 0 + +2025-09-24 03:33:08,185 INFO toNotifyTaskSize = 0 + +2025-09-24 03:33:08,185 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:33:08,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:33:18,158 INFO [long-pulling] client count 0 + +2025-09-24 03:33:18,185 INFO toNotifyTaskSize = 0 + +2025-09-24 03:33:18,185 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:33:18,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:33:28,160 INFO [long-pulling] client count 0 + +2025-09-24 03:33:28,187 INFO toNotifyTaskSize = 0 + +2025-09-24 03:33:28,187 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:33:28,187 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:33:38,161 INFO [long-pulling] client count 0 + +2025-09-24 03:33:38,188 INFO toNotifyTaskSize = 0 + +2025-09-24 03:33:38,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:33:38,188 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:33:48,163 INFO [long-pulling] client count 0 + +2025-09-24 03:33:48,188 INFO toNotifyTaskSize = 0 + +2025-09-24 03:33:48,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:33:48,188 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:33:58,164 INFO [long-pulling] client count 0 + +2025-09-24 03:33:58,189 INFO toNotifyTaskSize = 0 + +2025-09-24 03:33:58,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:33:58,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:34:08,164 INFO [long-pulling] client count 0 + +2025-09-24 03:34:08,190 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:34:08,190 INFO toNotifyTaskSize = 0 + +2025-09-24 03:34:08,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:34:18,165 INFO [long-pulling] client count 0 + +2025-09-24 03:34:18,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:34:18,191 INFO toNotifyTaskSize = 0 + +2025-09-24 03:34:18,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:34:28,165 INFO [long-pulling] client count 0 + +2025-09-24 03:34:28,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:34:28,191 INFO toNotifyTaskSize = 0 + +2025-09-24 03:34:28,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:34:38,166 INFO [long-pulling] client count 0 + +2025-09-24 03:34:38,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:34:38,192 INFO toNotifyTaskSize = 0 + +2025-09-24 03:34:38,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:34:48,167 INFO [long-pulling] client count 0 + +2025-09-24 03:34:48,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:34:48,192 INFO toNotifyTaskSize = 0 + +2025-09-24 03:34:48,213 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:34:58,190 INFO [long-pulling] client count 0 + +2025-09-24 03:34:58,213 INFO toNotifyTaskSize = 0 + +2025-09-24 03:34:58,213 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:34:58,213 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:35:08,191 INFO [long-pulling] client count 0 + +2025-09-24 03:35:08,215 INFO toNotifyTaskSize = 0 + +2025-09-24 03:35:08,215 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:35:08,215 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:35:18,192 INFO [long-pulling] client count 0 + +2025-09-24 03:35:18,216 INFO toNotifyTaskSize = 0 + +2025-09-24 03:35:18,216 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:35:18,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:35:28,194 INFO [long-pulling] client count 0 + +2025-09-24 03:35:28,216 INFO toNotifyTaskSize = 0 + +2025-09-24 03:35:28,216 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:35:28,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:35:38,195 INFO [long-pulling] client count 0 + +2025-09-24 03:35:38,217 INFO toNotifyTaskSize = 0 + +2025-09-24 03:35:38,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:35:38,217 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:35:48,195 INFO [long-pulling] client count 0 + +2025-09-24 03:35:48,219 INFO toNotifyTaskSize = 0 + +2025-09-24 03:35:48,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:35:48,236 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:35:58,200 INFO [long-pulling] client count 0 + +2025-09-24 03:35:58,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:35:58,294 INFO toNotifyTaskSize = 0 + +2025-09-24 03:35:58,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:36:08,201 INFO [long-pulling] client count 0 + +2025-09-24 03:36:08,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:36:08,296 INFO toNotifyTaskSize = 0 + +2025-09-24 03:36:08,297 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:36:18,204 INFO [long-pulling] client count 0 + +2025-09-24 03:36:18,277 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:36:18,298 INFO toNotifyTaskSize = 0 + +2025-09-24 03:36:18,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:36:28,206 INFO [long-pulling] client count 0 + +2025-09-24 03:36:28,278 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:36:28,298 INFO toNotifyTaskSize = 0 + +2025-09-24 03:36:28,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:36:38,208 INFO [long-pulling] client count 0 + +2025-09-24 03:36:38,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:36:38,300 INFO toNotifyTaskSize = 0 + +2025-09-24 03:36:38,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:36:48,209 INFO [long-pulling] client count 0 + +2025-09-24 03:36:48,282 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:36:48,301 INFO toNotifyTaskSize = 0 + +2025-09-24 03:36:48,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:36:58,210 INFO [long-pulling] client count 0 + +2025-09-24 03:36:58,282 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:36:58,301 INFO toNotifyTaskSize = 0 + +2025-09-24 03:36:58,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:37:08,211 INFO [long-pulling] client count 0 + +2025-09-24 03:37:08,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:37:08,304 INFO toNotifyTaskSize = 0 + +2025-09-24 03:37:08,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:37:18,211 INFO [long-pulling] client count 0 + +2025-09-24 03:37:18,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:37:18,304 INFO toNotifyTaskSize = 0 + +2025-09-24 03:37:18,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:37:28,212 INFO [long-pulling] client count 0 + +2025-09-24 03:37:28,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:37:28,305 INFO toNotifyTaskSize = 0 + +2025-09-24 03:37:28,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:37:38,214 INFO [long-pulling] client count 0 + +2025-09-24 03:37:38,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:37:38,306 INFO toNotifyTaskSize = 0 + +2025-09-24 03:37:38,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:37:48,214 INFO [long-pulling] client count 0 + +2025-09-24 03:37:48,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:37:48,308 INFO toNotifyTaskSize = 0 + +2025-09-24 03:37:48,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:37:58,214 INFO [long-pulling] client count 0 + +2025-09-24 03:37:58,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:37:58,310 INFO toNotifyTaskSize = 0 + +2025-09-24 03:37:58,311 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:38:08,215 INFO [long-pulling] client count 0 + +2025-09-24 03:38:08,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:38:08,313 INFO toNotifyTaskSize = 0 + +2025-09-24 03:38:08,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:38:18,215 INFO [long-pulling] client count 0 + +2025-09-24 03:38:18,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:38:18,313 INFO toNotifyTaskSize = 0 + +2025-09-24 03:38:18,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:38:28,216 INFO [long-pulling] client count 0 + +2025-09-24 03:38:28,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:38:28,314 INFO toNotifyTaskSize = 0 + +2025-09-24 03:38:28,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:38:38,217 INFO [long-pulling] client count 0 + +2025-09-24 03:38:38,290 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:38:38,316 INFO toNotifyTaskSize = 0 + +2025-09-24 03:38:38,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:38:48,217 INFO [long-pulling] client count 0 + +2025-09-24 03:38:48,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:38:48,317 INFO toNotifyTaskSize = 0 + +2025-09-24 03:38:48,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:38:58,218 INFO [long-pulling] client count 0 + +2025-09-24 03:38:58,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:38:58,319 INFO toNotifyTaskSize = 0 + +2025-09-24 03:38:58,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:39:08,219 INFO [long-pulling] client count 0 + +2025-09-24 03:39:08,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:39:08,319 INFO toNotifyTaskSize = 0 + +2025-09-24 03:39:08,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:39:18,220 INFO [long-pulling] client count 0 + +2025-09-24 03:39:18,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:39:18,320 INFO toNotifyTaskSize = 0 + +2025-09-24 03:39:18,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:39:28,220 INFO [long-pulling] client count 0 + +2025-09-24 03:39:28,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:39:28,320 INFO toNotifyTaskSize = 0 + +2025-09-24 03:39:28,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:39:38,221 INFO [long-pulling] client count 0 + +2025-09-24 03:39:38,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:39:38,322 INFO toNotifyTaskSize = 0 + +2025-09-24 03:39:38,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:39:48,222 INFO [long-pulling] client count 0 + +2025-09-24 03:39:48,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:39:48,322 INFO toNotifyTaskSize = 0 + +2025-09-24 03:39:48,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:39:58,222 INFO [long-pulling] client count 0 + +2025-09-24 03:39:58,298 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:39:58,324 INFO toNotifyTaskSize = 0 + +2025-09-24 03:39:58,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:40:08,223 INFO [long-pulling] client count 0 + +2025-09-24 03:40:08,298 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:40:08,325 INFO toNotifyTaskSize = 0 + +2025-09-24 03:40:08,325 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:40:18,224 INFO [long-pulling] client count 0 + +2025-09-24 03:40:18,298 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:40:18,325 INFO toNotifyTaskSize = 0 + +2025-09-24 03:40:18,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:40:28,224 INFO [long-pulling] client count 0 + +2025-09-24 03:40:28,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:40:28,328 INFO toNotifyTaskSize = 0 + +2025-09-24 03:40:28,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:40:38,225 INFO [long-pulling] client count 0 + +2025-09-24 03:40:38,301 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:40:38,329 INFO toNotifyTaskSize = 0 + +2025-09-24 03:40:38,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:40:48,225 INFO [long-pulling] client count 0 + +2025-09-24 03:40:48,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:40:48,329 INFO toNotifyTaskSize = 0 + +2025-09-24 03:40:48,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:40:58,226 INFO [long-pulling] client count 0 + +2025-09-24 03:40:58,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:40:58,329 INFO toNotifyTaskSize = 0 + +2025-09-24 03:40:58,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:41:08,226 INFO [long-pulling] client count 0 + +2025-09-24 03:41:08,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:41:08,331 INFO toNotifyTaskSize = 0 + +2025-09-24 03:41:08,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:41:18,226 INFO [long-pulling] client count 0 + +2025-09-24 03:41:18,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:41:18,331 INFO toNotifyTaskSize = 0 + +2025-09-24 03:41:18,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:41:28,226 INFO [long-pulling] client count 0 + +2025-09-24 03:41:28,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:41:28,332 INFO toNotifyTaskSize = 0 + +2025-09-24 03:41:28,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:41:38,227 INFO [long-pulling] client count 0 + +2025-09-24 03:41:38,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:41:38,332 INFO toNotifyTaskSize = 0 + +2025-09-24 03:41:38,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:41:48,228 INFO [long-pulling] client count 0 + +2025-09-24 03:41:48,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:41:48,332 INFO toNotifyTaskSize = 0 + +2025-09-24 03:41:48,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:41:58,228 INFO [long-pulling] client count 0 + +2025-09-24 03:41:58,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:41:58,335 INFO toNotifyTaskSize = 0 + +2025-09-24 03:41:58,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:42:08,228 INFO [long-pulling] client count 0 + +2025-09-24 03:42:08,311 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:42:08,337 INFO toNotifyTaskSize = 0 + +2025-09-24 03:42:08,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:42:18,229 INFO [long-pulling] client count 0 + +2025-09-24 03:42:18,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:42:18,339 INFO toNotifyTaskSize = 0 + +2025-09-24 03:42:18,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:42:28,232 INFO [long-pulling] client count 0 + +2025-09-24 03:42:28,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:42:28,339 INFO toNotifyTaskSize = 0 + +2025-09-24 03:42:28,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:42:38,232 INFO [long-pulling] client count 0 + +2025-09-24 03:42:38,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:42:38,339 INFO toNotifyTaskSize = 0 + +2025-09-24 03:42:38,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:42:48,233 INFO [long-pulling] client count 0 + +2025-09-24 03:42:48,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:42:48,341 INFO toNotifyTaskSize = 0 + +2025-09-24 03:42:48,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:42:58,233 INFO [long-pulling] client count 0 + +2025-09-24 03:42:58,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:42:58,359 INFO toNotifyTaskSize = 0 + +2025-09-24 03:42:58,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:43:08,235 INFO [long-pulling] client count 0 + +2025-09-24 03:43:08,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:43:08,360 INFO toNotifyTaskSize = 0 + +2025-09-24 03:43:08,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:43:18,235 INFO [long-pulling] client count 0 + +2025-09-24 03:43:18,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:43:18,360 INFO toNotifyTaskSize = 0 + +2025-09-24 03:43:18,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:43:28,235 INFO [long-pulling] client count 0 + +2025-09-24 03:43:28,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:43:28,361 INFO toNotifyTaskSize = 0 + +2025-09-24 03:43:28,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:43:38,235 INFO [long-pulling] client count 0 + +2025-09-24 03:43:38,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:43:38,362 INFO toNotifyTaskSize = 0 + +2025-09-24 03:43:38,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:43:48,236 INFO [long-pulling] client count 0 + +2025-09-24 03:43:48,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:43:48,362 INFO toNotifyTaskSize = 0 + +2025-09-24 03:43:48,363 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:43:58,236 INFO [long-pulling] client count 0 + +2025-09-24 03:43:58,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:43:58,364 INFO toNotifyTaskSize = 0 + +2025-09-24 03:43:58,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:44:08,237 INFO [long-pulling] client count 0 + +2025-09-24 03:44:08,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:44:08,366 INFO toNotifyTaskSize = 0 + +2025-09-24 03:44:08,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:44:18,237 INFO [long-pulling] client count 0 + +2025-09-24 03:44:18,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:44:18,366 INFO toNotifyTaskSize = 0 + +2025-09-24 03:44:18,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:44:28,237 INFO [long-pulling] client count 0 + +2025-09-24 03:44:28,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:44:28,367 INFO toNotifyTaskSize = 0 + +2025-09-24 03:44:28,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:44:38,238 INFO [long-pulling] client count 0 + +2025-09-24 03:44:38,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:44:38,367 INFO toNotifyTaskSize = 0 + +2025-09-24 03:44:38,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:44:48,238 INFO [long-pulling] client count 0 + +2025-09-24 03:44:48,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:44:48,368 INFO toNotifyTaskSize = 0 + +2025-09-24 03:44:48,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:44:58,238 INFO [long-pulling] client count 0 + +2025-09-24 03:44:58,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:44:58,370 INFO toNotifyTaskSize = 0 + +2025-09-24 03:44:58,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:45:08,239 INFO [long-pulling] client count 0 + +2025-09-24 03:45:08,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:45:08,372 INFO toNotifyTaskSize = 0 + +2025-09-24 03:45:08,372 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:45:18,239 INFO [long-pulling] client count 0 + +2025-09-24 03:45:18,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:45:18,375 INFO toNotifyTaskSize = 0 + +2025-09-24 03:45:18,375 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:45:28,239 INFO [long-pulling] client count 0 + +2025-09-24 03:45:28,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:45:28,376 INFO toNotifyTaskSize = 0 + +2025-09-24 03:45:28,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:45:38,239 INFO [long-pulling] client count 0 + +2025-09-24 03:45:38,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:45:38,377 INFO toNotifyTaskSize = 0 + +2025-09-24 03:45:38,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:45:48,240 INFO [long-pulling] client count 0 + +2025-09-24 03:45:48,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:45:48,377 INFO toNotifyTaskSize = 0 + +2025-09-24 03:45:48,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:45:58,240 INFO [long-pulling] client count 0 + +2025-09-24 03:45:58,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:45:58,378 INFO toNotifyTaskSize = 0 + +2025-09-24 03:45:58,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:46:08,240 INFO [long-pulling] client count 0 + +2025-09-24 03:46:08,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:46:08,379 INFO toNotifyTaskSize = 0 + +2025-09-24 03:46:08,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:46:18,241 INFO [long-pulling] client count 0 + +2025-09-24 03:46:18,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:46:18,380 INFO toNotifyTaskSize = 0 + +2025-09-24 03:46:18,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:46:28,249 INFO [long-pulling] client count 0 + +2025-09-24 03:46:28,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:46:28,380 INFO toNotifyTaskSize = 0 + +2025-09-24 03:46:28,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:46:38,251 INFO [long-pulling] client count 0 + +2025-09-24 03:46:38,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:46:38,381 INFO toNotifyTaskSize = 0 + +2025-09-24 03:46:38,382 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:46:48,251 INFO [long-pulling] client count 0 + +2025-09-24 03:46:48,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:46:48,384 INFO toNotifyTaskSize = 0 + +2025-09-24 03:46:48,385 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:46:58,253 INFO [long-pulling] client count 0 + +2025-09-24 03:46:58,344 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:46:58,386 INFO toNotifyTaskSize = 0 + +2025-09-24 03:46:58,386 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:47:08,254 INFO [long-pulling] client count 0 + +2025-09-24 03:47:08,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:47:08,388 INFO toNotifyTaskSize = 0 + +2025-09-24 03:47:08,388 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:47:18,255 INFO [long-pulling] client count 0 + +2025-09-24 03:47:18,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:47:18,389 INFO toNotifyTaskSize = 0 + +2025-09-24 03:47:18,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:47:28,256 INFO [long-pulling] client count 0 + +2025-09-24 03:47:28,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:47:28,391 INFO toNotifyTaskSize = 0 + +2025-09-24 03:47:28,391 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:47:38,257 INFO [long-pulling] client count 0 + +2025-09-24 03:47:38,347 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:47:38,392 INFO toNotifyTaskSize = 0 + +2025-09-24 03:47:38,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:47:48,257 INFO [long-pulling] client count 0 + +2025-09-24 03:47:48,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:47:48,392 INFO toNotifyTaskSize = 0 + +2025-09-24 03:47:48,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:47:58,258 INFO [long-pulling] client count 0 + +2025-09-24 03:47:58,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:47:58,394 INFO toNotifyTaskSize = 0 + +2025-09-24 03:47:58,394 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:48:08,259 INFO [long-pulling] client count 0 + +2025-09-24 03:48:08,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:48:08,394 INFO toNotifyTaskSize = 0 + +2025-09-24 03:48:08,394 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:48:18,259 INFO [long-pulling] client count 0 + +2025-09-24 03:48:18,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:48:18,396 INFO toNotifyTaskSize = 0 + +2025-09-24 03:48:18,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:48:28,261 INFO [long-pulling] client count 0 + +2025-09-24 03:48:28,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:48:28,398 INFO toNotifyTaskSize = 0 + +2025-09-24 03:48:28,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:48:38,263 INFO [long-pulling] client count 0 + +2025-09-24 03:48:38,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:48:38,399 INFO toNotifyTaskSize = 0 + +2025-09-24 03:48:38,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:48:48,264 INFO [long-pulling] client count 0 + +2025-09-24 03:48:48,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:48:48,401 INFO toNotifyTaskSize = 0 + +2025-09-24 03:48:48,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:48:58,264 INFO [long-pulling] client count 0 + +2025-09-24 03:48:58,358 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:48:58,403 INFO toNotifyTaskSize = 0 + +2025-09-24 03:48:58,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:49:08,265 INFO [long-pulling] client count 0 + +2025-09-24 03:49:08,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:49:08,404 INFO toNotifyTaskSize = 0 + +2025-09-24 03:49:08,404 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:49:18,266 INFO [long-pulling] client count 0 + +2025-09-24 03:49:18,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:49:18,405 INFO toNotifyTaskSize = 0 + +2025-09-24 03:49:18,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:49:28,267 INFO [long-pulling] client count 0 + +2025-09-24 03:49:28,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:49:28,407 INFO toNotifyTaskSize = 0 + +2025-09-24 03:49:28,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:49:38,267 INFO [long-pulling] client count 0 + +2025-09-24 03:49:38,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:49:38,407 INFO toNotifyTaskSize = 0 + +2025-09-24 03:49:38,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:49:48,268 INFO [long-pulling] client count 0 + +2025-09-24 03:49:48,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:49:48,409 INFO toNotifyTaskSize = 0 + +2025-09-24 03:49:48,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:49:58,268 INFO [long-pulling] client count 0 + +2025-09-24 03:49:58,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:49:58,411 INFO toNotifyTaskSize = 0 + +2025-09-24 03:49:58,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:50:08,270 INFO [long-pulling] client count 0 + +2025-09-24 03:50:08,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:50:08,412 INFO toNotifyTaskSize = 0 + +2025-09-24 03:50:08,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:50:18,271 INFO [long-pulling] client count 0 + +2025-09-24 03:50:18,366 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:50:18,413 INFO toNotifyTaskSize = 0 + +2025-09-24 03:50:18,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:50:28,272 INFO [long-pulling] client count 0 + +2025-09-24 03:50:28,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:50:28,414 INFO toNotifyTaskSize = 0 + +2025-09-24 03:50:28,414 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:50:38,274 INFO [long-pulling] client count 0 + +2025-09-24 03:50:38,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:50:38,416 INFO toNotifyTaskSize = 0 + +2025-09-24 03:50:38,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:50:48,275 INFO [long-pulling] client count 0 + +2025-09-24 03:50:48,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:50:48,417 INFO toNotifyTaskSize = 0 + +2025-09-24 03:50:48,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:50:58,275 INFO [long-pulling] client count 0 + +2025-09-24 03:50:58,372 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:50:58,418 INFO toNotifyTaskSize = 0 + +2025-09-24 03:50:58,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:51:08,276 INFO [long-pulling] client count 0 + +2025-09-24 03:51:08,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:51:08,421 INFO toNotifyTaskSize = 0 + +2025-09-24 03:51:08,421 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:51:18,276 INFO [long-pulling] client count 0 + +2025-09-24 03:51:18,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:51:18,421 INFO toNotifyTaskSize = 0 + +2025-09-24 03:51:18,421 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:51:28,277 INFO [long-pulling] client count 0 + +2025-09-24 03:51:28,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:51:28,424 INFO toNotifyTaskSize = 0 + +2025-09-24 03:51:28,424 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:51:38,278 INFO [long-pulling] client count 0 + +2025-09-24 03:51:38,377 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:51:38,425 INFO toNotifyTaskSize = 0 + +2025-09-24 03:51:38,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:51:48,279 INFO [long-pulling] client count 0 + +2025-09-24 03:51:48,377 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:51:48,425 INFO toNotifyTaskSize = 0 + +2025-09-24 03:51:48,426 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:51:58,281 INFO [long-pulling] client count 0 + +2025-09-24 03:51:58,379 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:51:58,428 INFO toNotifyTaskSize = 0 + +2025-09-24 03:51:58,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:52:08,283 INFO [long-pulling] client count 0 + +2025-09-24 03:52:08,380 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:52:08,428 INFO toNotifyTaskSize = 0 + +2025-09-24 03:52:08,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:52:18,283 INFO [long-pulling] client count 0 + +2025-09-24 03:52:18,381 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:52:18,429 INFO toNotifyTaskSize = 0 + +2025-09-24 03:52:18,430 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:52:28,304 INFO [long-pulling] client count 0 + +2025-09-24 03:52:28,383 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:52:28,432 INFO toNotifyTaskSize = 0 + +2025-09-24 03:52:28,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:52:38,305 INFO [long-pulling] client count 0 + +2025-09-24 03:52:38,384 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:52:38,434 INFO toNotifyTaskSize = 0 + +2025-09-24 03:52:38,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:52:48,306 INFO [long-pulling] client count 0 + +2025-09-24 03:52:48,384 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:52:48,435 INFO toNotifyTaskSize = 0 + +2025-09-24 03:52:48,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:52:58,308 INFO [long-pulling] client count 0 + +2025-09-24 03:52:58,400 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:52:58,437 INFO toNotifyTaskSize = 0 + +2025-09-24 03:52:58,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:53:08,310 INFO [long-pulling] client count 0 + +2025-09-24 03:53:08,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:53:08,438 INFO toNotifyTaskSize = 0 + +2025-09-24 03:53:08,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:53:18,314 INFO [long-pulling] client count 0 + +2025-09-24 03:53:18,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:53:18,439 INFO toNotifyTaskSize = 0 + +2025-09-24 03:53:18,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:53:28,315 INFO [long-pulling] client count 0 + +2025-09-24 03:53:28,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:53:28,441 INFO toNotifyTaskSize = 0 + +2025-09-24 03:53:28,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:53:38,316 INFO [long-pulling] client count 0 + +2025-09-24 03:53:38,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:53:38,443 INFO toNotifyTaskSize = 0 + +2025-09-24 03:53:38,443 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:53:48,317 INFO [long-pulling] client count 0 + +2025-09-24 03:53:48,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:53:48,443 INFO toNotifyTaskSize = 0 + +2025-09-24 03:53:48,443 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:53:58,317 INFO [long-pulling] client count 0 + +2025-09-24 03:53:58,408 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:53:58,445 INFO toNotifyTaskSize = 0 + +2025-09-24 03:53:58,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:54:08,319 INFO [long-pulling] client count 0 + +2025-09-24 03:54:08,409 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:54:08,447 INFO toNotifyTaskSize = 0 + +2025-09-24 03:54:08,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:54:18,320 INFO [long-pulling] client count 0 + +2025-09-24 03:54:18,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:54:18,448 INFO toNotifyTaskSize = 0 + +2025-09-24 03:54:18,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:54:28,321 INFO [long-pulling] client count 0 + +2025-09-24 03:54:28,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:54:28,449 INFO toNotifyTaskSize = 0 + +2025-09-24 03:54:28,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:54:38,322 INFO [long-pulling] client count 0 + +2025-09-24 03:54:38,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:54:38,449 INFO toNotifyTaskSize = 0 + +2025-09-24 03:54:38,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:54:48,323 INFO [long-pulling] client count 0 + +2025-09-24 03:54:48,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:54:48,451 INFO toNotifyTaskSize = 0 + +2025-09-24 03:54:48,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:54:58,323 INFO [long-pulling] client count 0 + +2025-09-24 03:54:58,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:54:58,451 INFO toNotifyTaskSize = 0 + +2025-09-24 03:54:58,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:55:08,323 INFO [long-pulling] client count 0 + +2025-09-24 03:55:08,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:55:08,452 INFO toNotifyTaskSize = 0 + +2025-09-24 03:55:08,452 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:55:18,329 INFO [long-pulling] client count 0 + +2025-09-24 03:55:18,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:55:18,454 INFO toNotifyTaskSize = 0 + +2025-09-24 03:55:18,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:55:28,329 INFO [long-pulling] client count 0 + +2025-09-24 03:55:28,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:55:28,455 INFO toNotifyTaskSize = 0 + +2025-09-24 03:55:28,455 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:55:38,331 INFO [long-pulling] client count 0 + +2025-09-24 03:55:38,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:55:38,455 INFO toNotifyTaskSize = 0 + +2025-09-24 03:55:38,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:55:48,334 INFO [long-pulling] client count 0 + +2025-09-24 03:55:48,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:55:48,456 INFO toNotifyTaskSize = 0 + +2025-09-24 03:55:48,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:55:58,336 INFO [long-pulling] client count 0 + +2025-09-24 03:55:58,421 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:55:58,457 INFO toNotifyTaskSize = 0 + +2025-09-24 03:55:58,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:56:08,337 INFO [long-pulling] client count 0 + +2025-09-24 03:56:08,422 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:56:08,457 INFO toNotifyTaskSize = 0 + +2025-09-24 03:56:08,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:56:18,338 INFO [long-pulling] client count 0 + +2025-09-24 03:56:18,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:56:18,458 INFO toNotifyTaskSize = 0 + +2025-09-24 03:56:18,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:56:28,338 INFO [long-pulling] client count 0 + +2025-09-24 03:56:28,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:56:28,459 INFO toNotifyTaskSize = 0 + +2025-09-24 03:56:28,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:56:38,339 INFO [long-pulling] client count 0 + +2025-09-24 03:56:38,424 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:56:38,460 INFO toNotifyTaskSize = 0 + +2025-09-24 03:56:38,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:56:48,340 INFO [long-pulling] client count 0 + +2025-09-24 03:56:48,424 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:56:48,461 INFO toNotifyTaskSize = 0 + +2025-09-24 03:56:48,461 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:56:58,342 INFO [long-pulling] client count 0 + +2025-09-24 03:56:58,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:56:58,463 INFO toNotifyTaskSize = 0 + +2025-09-24 03:56:58,463 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:57:08,343 INFO [long-pulling] client count 0 + +2025-09-24 03:57:08,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:57:08,463 INFO toNotifyTaskSize = 0 + +2025-09-24 03:57:08,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:57:18,346 INFO [long-pulling] client count 0 + +2025-09-24 03:57:18,429 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:57:18,466 INFO toNotifyTaskSize = 0 + +2025-09-24 03:57:18,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:57:28,348 INFO [long-pulling] client count 0 + +2025-09-24 03:57:28,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:57:28,467 INFO toNotifyTaskSize = 0 + +2025-09-24 03:57:28,467 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:57:38,349 INFO [long-pulling] client count 0 + +2025-09-24 03:57:38,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:57:38,468 INFO toNotifyTaskSize = 0 + +2025-09-24 03:57:38,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:57:48,349 INFO [long-pulling] client count 0 + +2025-09-24 03:57:48,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:57:48,469 INFO toNotifyTaskSize = 0 + +2025-09-24 03:57:48,469 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:57:58,350 INFO [long-pulling] client count 0 + +2025-09-24 03:57:58,435 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:57:58,471 INFO toNotifyTaskSize = 0 + +2025-09-24 03:57:58,472 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:58:08,352 INFO [long-pulling] client count 0 + +2025-09-24 03:58:08,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:58:08,474 INFO toNotifyTaskSize = 0 + +2025-09-24 03:58:08,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:58:18,352 INFO [long-pulling] client count 0 + +2025-09-24 03:58:18,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:58:18,474 INFO toNotifyTaskSize = 0 + +2025-09-24 03:58:18,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:58:28,353 INFO [long-pulling] client count 0 + +2025-09-24 03:58:28,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:58:28,475 INFO toNotifyTaskSize = 0 + +2025-09-24 03:58:28,475 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:58:38,356 INFO [long-pulling] client count 0 + +2025-09-24 03:58:38,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:58:38,477 INFO toNotifyTaskSize = 0 + +2025-09-24 03:58:38,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:58:48,357 INFO [long-pulling] client count 0 + +2025-09-24 03:58:48,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:58:48,479 INFO toNotifyTaskSize = 0 + +2025-09-24 03:58:48,479 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:58:58,367 INFO [long-pulling] client count 0 + +2025-09-24 03:58:58,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:58:58,482 INFO toNotifyTaskSize = 0 + +2025-09-24 03:58:58,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:59:08,367 INFO [long-pulling] client count 0 + +2025-09-24 03:59:08,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:59:08,484 INFO toNotifyTaskSize = 0 + +2025-09-24 03:59:08,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:59:18,369 INFO [long-pulling] client count 0 + +2025-09-24 03:59:18,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:59:18,485 INFO toNotifyTaskSize = 0 + +2025-09-24 03:59:18,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:59:28,371 INFO [long-pulling] client count 0 + +2025-09-24 03:59:28,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:59:28,486 INFO toNotifyTaskSize = 0 + +2025-09-24 03:59:28,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:59:38,374 INFO [long-pulling] client count 0 + +2025-09-24 03:59:38,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:59:38,488 INFO toNotifyTaskSize = 0 + +2025-09-24 03:59:38,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:59:48,375 INFO [long-pulling] client count 0 + +2025-09-24 03:59:48,448 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:59:48,489 INFO toNotifyTaskSize = 0 + +2025-09-24 03:59:48,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 03:59:58,377 INFO [long-pulling] client count 0 + +2025-09-24 03:59:58,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 03:59:58,489 INFO toNotifyTaskSize = 0 + +2025-09-24 03:59:58,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:00:08,377 INFO [long-pulling] client count 0 + +2025-09-24 04:00:08,452 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:00:08,490 INFO toNotifyTaskSize = 0 + +2025-09-24 04:00:08,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:00:18,378 INFO [long-pulling] client count 0 + +2025-09-24 04:00:18,452 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:00:18,492 INFO toNotifyTaskSize = 0 + +2025-09-24 04:00:18,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:00:28,379 INFO [long-pulling] client count 0 + +2025-09-24 04:00:28,454 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:00:28,493 INFO toNotifyTaskSize = 0 + +2025-09-24 04:00:28,493 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:00:38,380 INFO [long-pulling] client count 0 + +2025-09-24 04:00:38,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:00:38,494 INFO toNotifyTaskSize = 0 + +2025-09-24 04:00:38,494 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:00:48,381 INFO [long-pulling] client count 0 + +2025-09-24 04:00:48,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:00:48,495 INFO toNotifyTaskSize = 0 + +2025-09-24 04:00:48,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:00:58,383 INFO [long-pulling] client count 0 + +2025-09-24 04:00:58,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:00:58,497 INFO toNotifyTaskSize = 0 + +2025-09-24 04:00:58,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:01:08,383 INFO [long-pulling] client count 0 + +2025-09-24 04:01:08,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:01:08,497 INFO toNotifyTaskSize = 0 + +2025-09-24 04:01:08,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:01:18,384 INFO [long-pulling] client count 0 + +2025-09-24 04:01:18,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:01:18,498 INFO toNotifyTaskSize = 0 + +2025-09-24 04:01:18,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:01:28,384 INFO [long-pulling] client count 0 + +2025-09-24 04:01:28,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:01:28,499 INFO toNotifyTaskSize = 0 + +2025-09-24 04:01:28,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:01:38,387 INFO [long-pulling] client count 0 + +2025-09-24 04:01:38,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:01:38,501 INFO toNotifyTaskSize = 0 + +2025-09-24 04:01:38,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:01:48,387 INFO [long-pulling] client count 0 + +2025-09-24 04:01:48,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:01:48,501 INFO toNotifyTaskSize = 0 + +2025-09-24 04:01:48,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:01:58,389 INFO [long-pulling] client count 0 + +2025-09-24 04:01:58,464 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:01:58,502 INFO toNotifyTaskSize = 0 + +2025-09-24 04:01:58,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:02:08,391 INFO [long-pulling] client count 0 + +2025-09-24 04:02:08,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:02:08,503 INFO toNotifyTaskSize = 0 + +2025-09-24 04:02:08,503 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:02:18,392 INFO [long-pulling] client count 0 + +2025-09-24 04:02:18,467 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:02:18,505 INFO toNotifyTaskSize = 0 + +2025-09-24 04:02:18,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:02:28,393 INFO [long-pulling] client count 0 + +2025-09-24 04:02:28,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:02:28,507 INFO toNotifyTaskSize = 0 + +2025-09-24 04:02:28,507 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:02:38,395 INFO [long-pulling] client count 0 + +2025-09-24 04:02:38,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:02:38,509 INFO toNotifyTaskSize = 0 + +2025-09-24 04:02:38,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:02:48,397 INFO [long-pulling] client count 0 + +2025-09-24 04:02:48,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:02:48,510 INFO toNotifyTaskSize = 0 + +2025-09-24 04:02:48,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:02:58,398 INFO [long-pulling] client count 0 + +2025-09-24 04:02:58,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:02:58,512 INFO toNotifyTaskSize = 0 + +2025-09-24 04:02:58,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:03:08,398 INFO [long-pulling] client count 0 + +2025-09-24 04:03:08,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:03:08,513 INFO toNotifyTaskSize = 0 + +2025-09-24 04:03:08,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:03:18,400 INFO [long-pulling] client count 0 + +2025-09-24 04:03:18,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:03:18,514 INFO toNotifyTaskSize = 0 + +2025-09-24 04:03:18,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:03:28,402 INFO [long-pulling] client count 0 + +2025-09-24 04:03:28,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:03:28,515 INFO toNotifyTaskSize = 0 + +2025-09-24 04:03:28,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:03:38,404 INFO [long-pulling] client count 0 + +2025-09-24 04:03:38,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:03:38,517 INFO toNotifyTaskSize = 0 + +2025-09-24 04:03:38,517 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:03:48,405 INFO [long-pulling] client count 0 + +2025-09-24 04:03:48,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:03:48,518 INFO toNotifyTaskSize = 0 + +2025-09-24 04:03:48,518 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:03:58,408 INFO [long-pulling] client count 0 + +2025-09-24 04:03:58,478 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:03:58,520 INFO toNotifyTaskSize = 0 + +2025-09-24 04:03:58,520 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:04:08,408 INFO [long-pulling] client count 0 + +2025-09-24 04:04:08,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:04:08,520 INFO toNotifyTaskSize = 0 + +2025-09-24 04:04:08,520 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:04:18,408 INFO [long-pulling] client count 0 + +2025-09-24 04:04:18,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:04:18,523 INFO toNotifyTaskSize = 0 + +2025-09-24 04:04:18,523 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:04:28,409 INFO [long-pulling] client count 0 + +2025-09-24 04:04:28,480 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:04:28,525 INFO toNotifyTaskSize = 0 + +2025-09-24 04:04:28,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:04:38,411 INFO [long-pulling] client count 0 + +2025-09-24 04:04:38,481 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:04:38,527 INFO toNotifyTaskSize = 0 + +2025-09-24 04:04:38,527 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:04:48,413 INFO [long-pulling] client count 0 + +2025-09-24 04:04:48,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:04:48,529 INFO toNotifyTaskSize = 0 + +2025-09-24 04:04:48,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:04:58,413 INFO [long-pulling] client count 0 + +2025-09-24 04:04:58,484 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:04:58,530 INFO toNotifyTaskSize = 0 + +2025-09-24 04:04:58,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:05:08,415 INFO [long-pulling] client count 0 + +2025-09-24 04:05:08,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:05:08,531 INFO toNotifyTaskSize = 0 + +2025-09-24 04:05:08,531 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:05:18,416 INFO [long-pulling] client count 0 + +2025-09-24 04:05:18,487 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:05:18,532 INFO toNotifyTaskSize = 0 + +2025-09-24 04:05:18,532 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:05:28,418 INFO [long-pulling] client count 0 + +2025-09-24 04:05:28,487 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:05:28,533 INFO toNotifyTaskSize = 0 + +2025-09-24 04:05:28,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:05:38,419 INFO [long-pulling] client count 0 + +2025-09-24 04:05:38,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:05:38,535 INFO toNotifyTaskSize = 0 + +2025-09-24 04:05:38,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:05:48,421 INFO [long-pulling] client count 0 + +2025-09-24 04:05:48,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:05:48,536 INFO toNotifyTaskSize = 0 + +2025-09-24 04:05:48,536 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:05:58,423 INFO [long-pulling] client count 0 + +2025-09-24 04:05:58,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:05:58,538 INFO toNotifyTaskSize = 0 + +2025-09-24 04:05:58,538 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:06:08,426 INFO [long-pulling] client count 0 + +2025-09-24 04:06:08,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:06:08,540 INFO toNotifyTaskSize = 0 + +2025-09-24 04:06:08,540 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:06:18,426 INFO [long-pulling] client count 0 + +2025-09-24 04:06:18,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:06:18,542 INFO toNotifyTaskSize = 0 + +2025-09-24 04:06:18,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:06:28,427 INFO [long-pulling] client count 0 + +2025-09-24 04:06:28,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:06:28,542 INFO toNotifyTaskSize = 0 + +2025-09-24 04:06:28,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:06:38,429 INFO [long-pulling] client count 0 + +2025-09-24 04:06:38,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:06:38,543 INFO toNotifyTaskSize = 0 + +2025-09-24 04:06:38,543 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:06:48,429 INFO [long-pulling] client count 0 + +2025-09-24 04:06:48,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:06:48,543 INFO toNotifyTaskSize = 0 + +2025-09-24 04:06:48,543 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:06:58,430 INFO [long-pulling] client count 0 + +2025-09-24 04:06:58,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:06:58,545 INFO toNotifyTaskSize = 0 + +2025-09-24 04:06:58,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:07:08,430 INFO [long-pulling] client count 0 + +2025-09-24 04:07:08,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:07:08,548 INFO toNotifyTaskSize = 0 + +2025-09-24 04:07:08,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:07:18,434 INFO [long-pulling] client count 0 + +2025-09-24 04:07:18,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:07:18,548 INFO toNotifyTaskSize = 0 + +2025-09-24 04:07:18,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:07:28,434 INFO [long-pulling] client count 0 + +2025-09-24 04:07:28,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:07:28,548 INFO toNotifyTaskSize = 0 + +2025-09-24 04:07:28,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:07:38,436 INFO [long-pulling] client count 0 + +2025-09-24 04:07:38,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:07:38,549 INFO toNotifyTaskSize = 0 + +2025-09-24 04:07:38,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:07:48,437 INFO [long-pulling] client count 0 + +2025-09-24 04:07:48,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:07:48,549 INFO toNotifyTaskSize = 0 + +2025-09-24 04:07:48,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:07:58,438 INFO [long-pulling] client count 0 + +2025-09-24 04:07:58,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:07:58,550 INFO toNotifyTaskSize = 0 + +2025-09-24 04:07:58,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:08:08,438 INFO [long-pulling] client count 0 + +2025-09-24 04:08:08,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:08:08,550 INFO toNotifyTaskSize = 0 + +2025-09-24 04:08:08,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:08:18,440 INFO [long-pulling] client count 0 + +2025-09-24 04:08:18,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:08:18,551 INFO toNotifyTaskSize = 0 + +2025-09-24 04:08:18,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:08:28,440 INFO [long-pulling] client count 0 + +2025-09-24 04:08:28,498 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:08:28,551 INFO toNotifyTaskSize = 0 + +2025-09-24 04:08:28,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:08:38,441 INFO [long-pulling] client count 0 + +2025-09-24 04:08:38,498 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:08:38,553 INFO toNotifyTaskSize = 0 + +2025-09-24 04:08:38,553 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:08:48,442 INFO [long-pulling] client count 0 + +2025-09-24 04:08:48,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:08:48,554 INFO toNotifyTaskSize = 0 + +2025-09-24 04:08:48,554 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:08:58,444 INFO [long-pulling] client count 0 + +2025-09-24 04:08:58,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:08:58,554 INFO toNotifyTaskSize = 0 + +2025-09-24 04:08:58,554 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:09:08,445 INFO [long-pulling] client count 0 + +2025-09-24 04:09:08,504 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:09:08,555 INFO toNotifyTaskSize = 0 + +2025-09-24 04:09:08,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:09:18,447 INFO [long-pulling] client count 0 + +2025-09-24 04:09:18,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:09:18,556 INFO toNotifyTaskSize = 0 + +2025-09-24 04:09:18,556 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:09:28,448 INFO [long-pulling] client count 0 + +2025-09-24 04:09:28,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:09:28,557 INFO toNotifyTaskSize = 0 + +2025-09-24 04:09:28,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:09:38,449 INFO [long-pulling] client count 0 + +2025-09-24 04:09:38,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:09:38,557 INFO toNotifyTaskSize = 0 + +2025-09-24 04:09:38,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:09:48,452 INFO [long-pulling] client count 0 + +2025-09-24 04:09:48,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:09:48,559 INFO toNotifyTaskSize = 0 + +2025-09-24 04:09:48,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:09:58,452 INFO [long-pulling] client count 0 + +2025-09-24 04:09:58,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:09:58,561 INFO toNotifyTaskSize = 0 + +2025-09-24 04:09:58,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:10:08,454 INFO [long-pulling] client count 0 + +2025-09-24 04:10:08,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:10:08,562 INFO toNotifyTaskSize = 0 + +2025-09-24 04:10:08,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:10:18,455 INFO [long-pulling] client count 0 + +2025-09-24 04:10:18,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:10:18,564 INFO toNotifyTaskSize = 0 + +2025-09-24 04:10:18,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:10:28,456 INFO [long-pulling] client count 0 + +2025-09-24 04:10:28,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:10:28,564 INFO toNotifyTaskSize = 0 + +2025-09-24 04:10:28,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:10:38,458 INFO [long-pulling] client count 0 + +2025-09-24 04:10:38,515 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:10:38,564 INFO toNotifyTaskSize = 0 + +2025-09-24 04:10:38,565 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:10:48,459 INFO [long-pulling] client count 0 + +2025-09-24 04:10:48,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:10:48,567 INFO toNotifyTaskSize = 0 + +2025-09-24 04:10:48,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:10:58,460 INFO [long-pulling] client count 0 + +2025-09-24 04:10:58,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:10:58,567 INFO toNotifyTaskSize = 0 + +2025-09-24 04:10:58,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:11:08,462 INFO [long-pulling] client count 0 + +2025-09-24 04:11:08,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:11:08,568 INFO toNotifyTaskSize = 0 + +2025-09-24 04:11:08,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:11:18,464 INFO [long-pulling] client count 0 + +2025-09-24 04:11:18,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:11:18,568 INFO toNotifyTaskSize = 0 + +2025-09-24 04:11:18,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:11:28,464 INFO [long-pulling] client count 0 + +2025-09-24 04:11:28,522 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:11:28,569 INFO toNotifyTaskSize = 0 + +2025-09-24 04:11:28,569 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:11:38,465 INFO [long-pulling] client count 0 + +2025-09-24 04:11:38,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:11:38,571 INFO toNotifyTaskSize = 0 + +2025-09-24 04:11:38,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:11:48,467 INFO [long-pulling] client count 0 + +2025-09-24 04:11:48,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:11:48,573 INFO toNotifyTaskSize = 0 + +2025-09-24 04:11:48,573 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:11:58,467 INFO [long-pulling] client count 0 + +2025-09-24 04:11:58,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:11:58,574 INFO toNotifyTaskSize = 0 + +2025-09-24 04:11:58,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:12:08,468 INFO [long-pulling] client count 0 + +2025-09-24 04:12:08,527 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:12:08,576 INFO toNotifyTaskSize = 0 + +2025-09-24 04:12:08,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:12:18,469 INFO [long-pulling] client count 0 + +2025-09-24 04:12:18,528 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:12:18,577 INFO toNotifyTaskSize = 0 + +2025-09-24 04:12:18,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:12:28,470 INFO [long-pulling] client count 0 + +2025-09-24 04:12:28,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:12:28,577 INFO toNotifyTaskSize = 0 + +2025-09-24 04:12:28,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:12:38,472 INFO [long-pulling] client count 0 + +2025-09-24 04:12:38,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:12:38,578 INFO toNotifyTaskSize = 0 + +2025-09-24 04:12:38,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:12:48,472 INFO [long-pulling] client count 0 + +2025-09-24 04:12:48,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:12:48,581 INFO toNotifyTaskSize = 0 + +2025-09-24 04:12:48,581 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:12:58,473 INFO [long-pulling] client count 0 + +2025-09-24 04:12:58,532 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:12:58,583 INFO toNotifyTaskSize = 0 + +2025-09-24 04:12:58,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:13:08,475 INFO [long-pulling] client count 0 + +2025-09-24 04:13:08,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:13:08,585 INFO toNotifyTaskSize = 0 + +2025-09-24 04:13:08,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:13:18,476 INFO [long-pulling] client count 0 + +2025-09-24 04:13:18,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:13:18,585 INFO toNotifyTaskSize = 0 + +2025-09-24 04:13:18,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:13:28,477 INFO [long-pulling] client count 0 + +2025-09-24 04:13:28,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:13:28,587 INFO toNotifyTaskSize = 0 + +2025-09-24 04:13:28,587 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:13:38,480 INFO [long-pulling] client count 0 + +2025-09-24 04:13:38,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:13:38,587 INFO toNotifyTaskSize = 0 + +2025-09-24 04:13:38,587 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:13:48,482 INFO [long-pulling] client count 0 + +2025-09-24 04:13:48,541 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:13:48,589 INFO toNotifyTaskSize = 0 + +2025-09-24 04:13:48,590 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:13:58,483 INFO [long-pulling] client count 0 + +2025-09-24 04:13:58,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:13:58,592 INFO toNotifyTaskSize = 0 + +2025-09-24 04:13:58,592 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:14:08,484 INFO [long-pulling] client count 0 + +2025-09-24 04:14:08,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:14:08,592 INFO toNotifyTaskSize = 0 + +2025-09-24 04:14:08,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:14:18,485 INFO [long-pulling] client count 0 + +2025-09-24 04:14:18,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:14:18,593 INFO toNotifyTaskSize = 0 + +2025-09-24 04:14:18,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:14:28,485 INFO [long-pulling] client count 0 + +2025-09-24 04:14:28,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:14:28,593 INFO toNotifyTaskSize = 0 + +2025-09-24 04:14:28,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:14:38,487 INFO [long-pulling] client count 0 + +2025-09-24 04:14:38,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:14:38,596 INFO toNotifyTaskSize = 0 + +2025-09-24 04:14:38,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:14:48,489 INFO [long-pulling] client count 0 + +2025-09-24 04:14:48,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:14:48,596 INFO toNotifyTaskSize = 0 + +2025-09-24 04:14:48,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:14:58,490 INFO [long-pulling] client count 0 + +2025-09-24 04:14:58,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:14:58,597 INFO toNotifyTaskSize = 0 + +2025-09-24 04:14:58,597 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:15:08,492 INFO [long-pulling] client count 0 + +2025-09-24 04:15:08,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:15:08,600 INFO toNotifyTaskSize = 0 + +2025-09-24 04:15:08,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:15:18,492 INFO [long-pulling] client count 0 + +2025-09-24 04:15:18,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:15:18,600 INFO toNotifyTaskSize = 0 + +2025-09-24 04:15:18,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:15:28,492 INFO [long-pulling] client count 0 + +2025-09-24 04:15:28,549 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:15:28,602 INFO toNotifyTaskSize = 0 + +2025-09-24 04:15:28,602 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:15:38,494 INFO [long-pulling] client count 0 + +2025-09-24 04:15:38,550 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:15:38,604 INFO toNotifyTaskSize = 0 + +2025-09-24 04:15:38,605 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:15:48,494 INFO [long-pulling] client count 0 + +2025-09-24 04:15:48,552 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:15:48,605 INFO toNotifyTaskSize = 0 + +2025-09-24 04:15:48,605 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:15:58,496 INFO [long-pulling] client count 0 + +2025-09-24 04:15:58,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:15:58,605 INFO toNotifyTaskSize = 0 + +2025-09-24 04:15:58,606 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:16:08,497 INFO [long-pulling] client count 0 + +2025-09-24 04:16:08,557 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:16:08,608 INFO toNotifyTaskSize = 0 + +2025-09-24 04:16:08,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:16:18,499 INFO [long-pulling] client count 0 + +2025-09-24 04:16:18,557 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:16:18,608 INFO toNotifyTaskSize = 0 + +2025-09-24 04:16:18,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:16:28,501 INFO [long-pulling] client count 0 + +2025-09-24 04:16:28,559 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:16:28,609 INFO toNotifyTaskSize = 0 + +2025-09-24 04:16:28,609 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:16:38,503 INFO [long-pulling] client count 0 + +2025-09-24 04:16:38,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:16:38,611 INFO toNotifyTaskSize = 0 + +2025-09-24 04:16:38,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:16:48,505 INFO [long-pulling] client count 0 + +2025-09-24 04:16:48,563 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:16:48,612 INFO toNotifyTaskSize = 0 + +2025-09-24 04:16:48,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:16:58,507 INFO [long-pulling] client count 0 + +2025-09-24 04:16:58,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:16:58,615 INFO toNotifyTaskSize = 0 + +2025-09-24 04:16:58,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:17:08,509 INFO [long-pulling] client count 0 + +2025-09-24 04:17:08,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:17:08,617 INFO toNotifyTaskSize = 0 + +2025-09-24 04:17:08,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:17:18,509 INFO [long-pulling] client count 0 + +2025-09-24 04:17:18,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:17:18,619 INFO toNotifyTaskSize = 0 + +2025-09-24 04:17:18,620 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:17:28,511 INFO [long-pulling] client count 0 + +2025-09-24 04:17:28,569 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:17:28,620 INFO toNotifyTaskSize = 0 + +2025-09-24 04:17:28,620 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:17:38,512 INFO [long-pulling] client count 0 + +2025-09-24 04:17:38,569 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:17:38,621 INFO toNotifyTaskSize = 0 + +2025-09-24 04:17:38,621 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:17:48,513 INFO [long-pulling] client count 0 + +2025-09-24 04:17:48,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:17:48,623 INFO toNotifyTaskSize = 0 + +2025-09-24 04:17:48,624 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:17:58,514 INFO [long-pulling] client count 0 + +2025-09-24 04:17:58,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:17:58,624 INFO toNotifyTaskSize = 0 + +2025-09-24 04:17:58,624 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:18:08,514 INFO [long-pulling] client count 0 + +2025-09-24 04:18:08,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:18:08,626 INFO toNotifyTaskSize = 0 + +2025-09-24 04:18:08,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:18:18,514 INFO [long-pulling] client count 0 + +2025-09-24 04:18:18,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:18:18,627 INFO toNotifyTaskSize = 0 + +2025-09-24 04:18:18,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:18:28,516 INFO [long-pulling] client count 0 + +2025-09-24 04:18:28,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:18:28,627 INFO toNotifyTaskSize = 0 + +2025-09-24 04:18:28,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:18:38,518 INFO [long-pulling] client count 0 + +2025-09-24 04:18:38,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:18:38,628 INFO toNotifyTaskSize = 0 + +2025-09-24 04:18:38,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:18:48,520 INFO [long-pulling] client count 0 + +2025-09-24 04:18:48,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:18:48,631 INFO toNotifyTaskSize = 0 + +2025-09-24 04:18:48,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:18:58,520 INFO [long-pulling] client count 0 + +2025-09-24 04:18:58,580 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:18:58,631 INFO toNotifyTaskSize = 0 + +2025-09-24 04:18:58,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:19:08,523 INFO [long-pulling] client count 0 + +2025-09-24 04:19:08,581 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:19:08,631 INFO toNotifyTaskSize = 0 + +2025-09-24 04:19:08,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:19:18,525 INFO [long-pulling] client count 0 + +2025-09-24 04:19:18,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:19:18,632 INFO toNotifyTaskSize = 0 + +2025-09-24 04:19:18,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:19:28,527 INFO [long-pulling] client count 0 + +2025-09-24 04:19:28,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:19:28,634 INFO toNotifyTaskSize = 0 + +2025-09-24 04:19:28,634 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:19:38,528 INFO [long-pulling] client count 0 + +2025-09-24 04:19:38,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:19:38,635 INFO toNotifyTaskSize = 0 + +2025-09-24 04:19:38,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:19:48,530 INFO [long-pulling] client count 0 + +2025-09-24 04:19:48,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:19:48,636 INFO toNotifyTaskSize = 0 + +2025-09-24 04:19:48,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:19:58,530 INFO [long-pulling] client count 0 + +2025-09-24 04:19:58,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:19:58,638 INFO toNotifyTaskSize = 0 + +2025-09-24 04:19:58,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:20:08,531 INFO [long-pulling] client count 0 + +2025-09-24 04:20:08,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:20:08,640 INFO toNotifyTaskSize = 0 + +2025-09-24 04:20:08,640 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:20:18,532 INFO [long-pulling] client count 0 + +2025-09-24 04:20:18,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:20:18,641 INFO toNotifyTaskSize = 0 + +2025-09-24 04:20:18,641 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:20:28,533 INFO [long-pulling] client count 0 + +2025-09-24 04:20:28,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:20:28,642 INFO toNotifyTaskSize = 0 + +2025-09-24 04:20:28,642 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:20:38,535 INFO [long-pulling] client count 0 + +2025-09-24 04:20:38,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:20:38,644 INFO toNotifyTaskSize = 0 + +2025-09-24 04:20:38,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:20:48,535 INFO [long-pulling] client count 0 + +2025-09-24 04:20:48,592 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:20:48,646 INFO toNotifyTaskSize = 0 + +2025-09-24 04:20:48,646 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:20:58,535 INFO [long-pulling] client count 0 + +2025-09-24 04:20:58,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:20:58,647 INFO toNotifyTaskSize = 0 + +2025-09-24 04:20:58,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:21:08,536 INFO [long-pulling] client count 0 + +2025-09-24 04:21:08,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:21:08,649 INFO toNotifyTaskSize = 0 + +2025-09-24 04:21:08,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:21:18,537 INFO [long-pulling] client count 0 + +2025-09-24 04:21:18,598 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:21:18,650 INFO toNotifyTaskSize = 0 + +2025-09-24 04:21:18,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:21:28,537 INFO [long-pulling] client count 0 + +2025-09-24 04:21:28,598 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:21:28,652 INFO toNotifyTaskSize = 0 + +2025-09-24 04:21:28,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:21:38,540 INFO [long-pulling] client count 0 + +2025-09-24 04:21:38,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:21:38,653 INFO toNotifyTaskSize = 0 + +2025-09-24 04:21:38,653 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:21:48,540 INFO [long-pulling] client count 0 + +2025-09-24 04:21:48,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:21:48,655 INFO toNotifyTaskSize = 0 + +2025-09-24 04:21:48,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:21:58,541 INFO [long-pulling] client count 0 + +2025-09-24 04:21:58,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:21:58,656 INFO toNotifyTaskSize = 0 + +2025-09-24 04:21:58,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:22:08,541 INFO [long-pulling] client count 0 + +2025-09-24 04:22:08,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:22:08,656 INFO toNotifyTaskSize = 0 + +2025-09-24 04:22:08,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:22:18,543 INFO [long-pulling] client count 0 + +2025-09-24 04:22:18,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:22:18,657 INFO toNotifyTaskSize = 0 + +2025-09-24 04:22:18,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:22:28,544 INFO [long-pulling] client count 0 + +2025-09-24 04:22:28,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:22:28,658 INFO toNotifyTaskSize = 0 + +2025-09-24 04:22:28,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:22:38,546 INFO [long-pulling] client count 0 + +2025-09-24 04:22:38,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:22:38,658 INFO toNotifyTaskSize = 0 + +2025-09-24 04:22:38,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:22:48,547 INFO [long-pulling] client count 0 + +2025-09-24 04:22:48,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:22:48,659 INFO toNotifyTaskSize = 0 + +2025-09-24 04:22:48,659 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:22:58,548 INFO [long-pulling] client count 0 + +2025-09-24 04:22:58,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:22:58,660 INFO toNotifyTaskSize = 0 + +2025-09-24 04:22:58,660 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:23:08,548 INFO [long-pulling] client count 0 + +2025-09-24 04:23:08,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:23:08,662 INFO toNotifyTaskSize = 0 + +2025-09-24 04:23:08,662 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:23:18,550 INFO [long-pulling] client count 0 + +2025-09-24 04:23:18,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:23:18,662 INFO toNotifyTaskSize = 0 + +2025-09-24 04:23:18,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:23:28,550 INFO [long-pulling] client count 0 + +2025-09-24 04:23:28,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:23:28,663 INFO toNotifyTaskSize = 0 + +2025-09-24 04:23:28,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:23:38,553 INFO [long-pulling] client count 0 + +2025-09-24 04:23:38,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:23:38,665 INFO toNotifyTaskSize = 0 + +2025-09-24 04:23:38,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:23:48,554 INFO [long-pulling] client count 0 + +2025-09-24 04:23:48,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:23:48,666 INFO toNotifyTaskSize = 0 + +2025-09-24 04:23:48,666 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:23:58,556 INFO [long-pulling] client count 0 + +2025-09-24 04:23:58,614 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:23:58,668 INFO toNotifyTaskSize = 0 + +2025-09-24 04:23:58,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:24:08,557 INFO [long-pulling] client count 0 + +2025-09-24 04:24:08,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:24:08,668 INFO toNotifyTaskSize = 0 + +2025-09-24 04:24:08,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:24:18,557 INFO [long-pulling] client count 0 + +2025-09-24 04:24:18,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:24:18,670 INFO toNotifyTaskSize = 0 + +2025-09-24 04:24:18,670 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:24:28,558 INFO [long-pulling] client count 0 + +2025-09-24 04:24:28,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:24:28,670 INFO toNotifyTaskSize = 0 + +2025-09-24 04:24:28,670 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:24:38,559 INFO [long-pulling] client count 0 + +2025-09-24 04:24:38,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:24:38,671 INFO toNotifyTaskSize = 0 + +2025-09-24 04:24:38,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:24:48,561 INFO [long-pulling] client count 0 + +2025-09-24 04:24:48,618 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:24:48,672 INFO toNotifyTaskSize = 0 + +2025-09-24 04:24:48,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:24:58,561 INFO [long-pulling] client count 0 + +2025-09-24 04:24:58,620 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:24:58,674 INFO toNotifyTaskSize = 0 + +2025-09-24 04:24:58,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:25:08,561 INFO [long-pulling] client count 0 + +2025-09-24 04:25:08,620 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:25:08,676 INFO toNotifyTaskSize = 0 + +2025-09-24 04:25:08,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:25:18,562 INFO [long-pulling] client count 0 + +2025-09-24 04:25:18,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:25:18,679 INFO toNotifyTaskSize = 0 + +2025-09-24 04:25:18,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:25:28,563 INFO [long-pulling] client count 0 + +2025-09-24 04:25:28,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:25:28,679 INFO toNotifyTaskSize = 0 + +2025-09-24 04:25:28,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:25:38,565 INFO [long-pulling] client count 0 + +2025-09-24 04:25:38,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:25:38,682 INFO toNotifyTaskSize = 0 + +2025-09-24 04:25:38,682 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:25:48,567 INFO [long-pulling] client count 0 + +2025-09-24 04:25:48,625 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:25:48,684 INFO toNotifyTaskSize = 0 + +2025-09-24 04:25:48,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:25:58,568 INFO [long-pulling] client count 0 + +2025-09-24 04:25:58,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:25:58,685 INFO toNotifyTaskSize = 0 + +2025-09-24 04:25:58,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:26:08,568 INFO [long-pulling] client count 0 + +2025-09-24 04:26:08,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:26:08,686 INFO toNotifyTaskSize = 0 + +2025-09-24 04:26:08,686 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:26:18,571 INFO [long-pulling] client count 0 + +2025-09-24 04:26:18,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:26:18,686 INFO toNotifyTaskSize = 0 + +2025-09-24 04:26:18,686 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:26:28,571 INFO [long-pulling] client count 0 + +2025-09-24 04:26:28,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:26:28,687 INFO toNotifyTaskSize = 0 + +2025-09-24 04:26:28,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:26:38,571 INFO [long-pulling] client count 0 + +2025-09-24 04:26:38,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:26:38,689 INFO toNotifyTaskSize = 0 + +2025-09-24 04:26:38,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:26:48,572 INFO [long-pulling] client count 0 + +2025-09-24 04:26:48,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:26:48,692 INFO toNotifyTaskSize = 0 + +2025-09-24 04:26:48,692 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:26:58,574 INFO [long-pulling] client count 0 + +2025-09-24 04:26:58,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:26:58,693 INFO toNotifyTaskSize = 0 + +2025-09-24 04:26:58,694 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:27:08,575 INFO [long-pulling] client count 0 + +2025-09-24 04:27:08,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:27:08,695 INFO toNotifyTaskSize = 0 + +2025-09-24 04:27:08,695 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:27:18,576 INFO [long-pulling] client count 0 + +2025-09-24 04:27:18,633 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:27:18,697 INFO toNotifyTaskSize = 0 + +2025-09-24 04:27:18,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:27:28,578 INFO [long-pulling] client count 0 + +2025-09-24 04:27:28,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:27:28,697 INFO toNotifyTaskSize = 0 + +2025-09-24 04:27:28,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:27:38,578 INFO [long-pulling] client count 0 + +2025-09-24 04:27:38,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:27:38,698 INFO toNotifyTaskSize = 0 + +2025-09-24 04:27:38,698 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:27:48,578 INFO [long-pulling] client count 0 + +2025-09-24 04:27:48,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:27:48,699 INFO toNotifyTaskSize = 0 + +2025-09-24 04:27:48,700 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:27:58,580 INFO [long-pulling] client count 0 + +2025-09-24 04:27:58,640 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:27:58,700 INFO toNotifyTaskSize = 0 + +2025-09-24 04:27:58,700 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:28:08,581 INFO [long-pulling] client count 0 + +2025-09-24 04:28:08,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:28:08,702 INFO toNotifyTaskSize = 0 + +2025-09-24 04:28:08,702 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:28:18,584 INFO [long-pulling] client count 0 + +2025-09-24 04:28:18,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:28:18,703 INFO toNotifyTaskSize = 0 + +2025-09-24 04:28:18,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:28:28,586 INFO [long-pulling] client count 0 + +2025-09-24 04:28:28,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:28:28,705 INFO toNotifyTaskSize = 0 + +2025-09-24 04:28:28,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:28:38,588 INFO [long-pulling] client count 0 + +2025-09-24 04:28:38,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:28:38,706 INFO toNotifyTaskSize = 0 + +2025-09-24 04:28:38,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:28:48,589 INFO [long-pulling] client count 0 + +2025-09-24 04:28:48,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:28:48,708 INFO toNotifyTaskSize = 0 + +2025-09-24 04:28:48,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:28:58,590 INFO [long-pulling] client count 0 + +2025-09-24 04:28:58,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:28:58,709 INFO toNotifyTaskSize = 0 + +2025-09-24 04:28:58,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:29:08,592 INFO [long-pulling] client count 0 + +2025-09-24 04:29:08,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:29:08,710 INFO toNotifyTaskSize = 0 + +2025-09-24 04:29:08,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:29:18,594 INFO [long-pulling] client count 0 + +2025-09-24 04:29:18,652 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:29:18,713 INFO toNotifyTaskSize = 0 + +2025-09-24 04:29:18,713 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:29:28,595 INFO [long-pulling] client count 0 + +2025-09-24 04:29:28,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:29:28,715 INFO toNotifyTaskSize = 0 + +2025-09-24 04:29:28,715 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:29:38,597 INFO [long-pulling] client count 0 + +2025-09-24 04:29:38,655 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:29:38,717 INFO toNotifyTaskSize = 0 + +2025-09-24 04:29:38,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:29:48,599 INFO [long-pulling] client count 0 + +2025-09-24 04:29:48,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:29:48,718 INFO toNotifyTaskSize = 0 + +2025-09-24 04:29:48,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:29:58,601 INFO [long-pulling] client count 0 + +2025-09-24 04:29:58,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:29:58,719 INFO toNotifyTaskSize = 0 + +2025-09-24 04:29:58,719 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:30:08,601 INFO [long-pulling] client count 0 + +2025-09-24 04:30:08,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:30:08,719 INFO toNotifyTaskSize = 0 + +2025-09-24 04:30:08,719 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:30:18,601 INFO [long-pulling] client count 0 + +2025-09-24 04:30:18,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:30:18,720 INFO toNotifyTaskSize = 0 + +2025-09-24 04:30:18,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:30:28,601 INFO [long-pulling] client count 0 + +2025-09-24 04:30:28,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:30:28,720 INFO toNotifyTaskSize = 0 + +2025-09-24 04:30:28,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:30:38,604 INFO [long-pulling] client count 0 + +2025-09-24 04:30:38,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:30:38,721 INFO toNotifyTaskSize = 0 + +2025-09-24 04:30:38,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:30:48,606 INFO [long-pulling] client count 0 + +2025-09-24 04:30:48,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:30:48,722 INFO toNotifyTaskSize = 0 + +2025-09-24 04:30:48,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:30:58,607 INFO [long-pulling] client count 0 + +2025-09-24 04:30:58,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:30:58,723 INFO toNotifyTaskSize = 0 + +2025-09-24 04:30:58,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:31:08,609 INFO [long-pulling] client count 0 + +2025-09-24 04:31:08,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:31:08,723 INFO toNotifyTaskSize = 0 + +2025-09-24 04:31:08,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:31:18,610 INFO [long-pulling] client count 0 + +2025-09-24 04:31:18,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:31:18,725 INFO toNotifyTaskSize = 0 + +2025-09-24 04:31:18,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:31:28,610 INFO [long-pulling] client count 0 + +2025-09-24 04:31:28,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:31:28,726 INFO toNotifyTaskSize = 0 + +2025-09-24 04:31:28,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:31:38,611 INFO [long-pulling] client count 0 + +2025-09-24 04:31:38,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:31:38,728 INFO toNotifyTaskSize = 0 + +2025-09-24 04:31:38,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:31:48,614 INFO [long-pulling] client count 0 + +2025-09-24 04:31:48,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:31:48,729 INFO toNotifyTaskSize = 0 + +2025-09-24 04:31:48,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:31:58,616 INFO [long-pulling] client count 0 + +2025-09-24 04:31:58,674 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:31:58,731 INFO toNotifyTaskSize = 0 + +2025-09-24 04:31:58,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:32:08,617 INFO [long-pulling] client count 0 + +2025-09-24 04:32:08,675 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:32:08,732 INFO toNotifyTaskSize = 0 + +2025-09-24 04:32:08,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:32:18,618 INFO [long-pulling] client count 0 + +2025-09-24 04:32:18,676 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:32:18,733 INFO toNotifyTaskSize = 0 + +2025-09-24 04:32:18,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:32:28,619 INFO [long-pulling] client count 0 + +2025-09-24 04:32:28,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:32:28,735 INFO toNotifyTaskSize = 0 + +2025-09-24 04:32:28,735 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:32:38,620 INFO [long-pulling] client count 0 + +2025-09-24 04:32:38,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:32:38,736 INFO toNotifyTaskSize = 0 + +2025-09-24 04:32:38,736 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:32:48,621 INFO [long-pulling] client count 0 + +2025-09-24 04:32:48,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:32:48,737 INFO toNotifyTaskSize = 0 + +2025-09-24 04:32:48,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:32:58,623 INFO [long-pulling] client count 0 + +2025-09-24 04:32:58,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:32:58,737 INFO toNotifyTaskSize = 0 + +2025-09-24 04:32:58,738 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:33:08,625 INFO [long-pulling] client count 0 + +2025-09-24 04:33:08,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:33:08,739 INFO toNotifyTaskSize = 0 + +2025-09-24 04:33:08,739 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:33:18,626 INFO [long-pulling] client count 0 + +2025-09-24 04:33:18,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:33:18,741 INFO toNotifyTaskSize = 0 + +2025-09-24 04:33:18,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:33:28,626 INFO [long-pulling] client count 0 + +2025-09-24 04:33:28,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:33:28,741 INFO toNotifyTaskSize = 0 + +2025-09-24 04:33:28,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:33:38,629 INFO [long-pulling] client count 0 + +2025-09-24 04:33:38,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:33:38,741 INFO toNotifyTaskSize = 0 + +2025-09-24 04:33:38,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:33:48,630 INFO [long-pulling] client count 0 + +2025-09-24 04:33:48,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:33:48,743 INFO toNotifyTaskSize = 0 + +2025-09-24 04:33:48,743 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:33:58,631 INFO [long-pulling] client count 0 + +2025-09-24 04:33:58,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:33:58,743 INFO toNotifyTaskSize = 0 + +2025-09-24 04:33:58,743 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:34:08,633 INFO [long-pulling] client count 0 + +2025-09-24 04:34:08,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:34:08,744 INFO toNotifyTaskSize = 0 + +2025-09-24 04:34:08,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:34:18,634 INFO [long-pulling] client count 0 + +2025-09-24 04:34:18,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:34:18,744 INFO toNotifyTaskSize = 0 + +2025-09-24 04:34:18,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:34:28,636 INFO [long-pulling] client count 0 + +2025-09-24 04:34:28,687 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:34:28,745 INFO toNotifyTaskSize = 0 + +2025-09-24 04:34:28,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:34:38,637 INFO [long-pulling] client count 0 + +2025-09-24 04:34:38,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:34:38,746 INFO toNotifyTaskSize = 0 + +2025-09-24 04:34:38,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:34:48,638 INFO [long-pulling] client count 0 + +2025-09-24 04:34:48,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:34:48,748 INFO toNotifyTaskSize = 0 + +2025-09-24 04:34:48,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:34:58,638 INFO [long-pulling] client count 0 + +2025-09-24 04:34:58,691 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:34:58,749 INFO toNotifyTaskSize = 0 + +2025-09-24 04:34:58,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:35:08,640 INFO [long-pulling] client count 0 + +2025-09-24 04:35:08,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:35:08,749 INFO toNotifyTaskSize = 0 + +2025-09-24 04:35:08,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:35:18,643 INFO [long-pulling] client count 0 + +2025-09-24 04:35:18,693 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:35:18,750 INFO toNotifyTaskSize = 0 + +2025-09-24 04:35:18,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:35:28,646 INFO [long-pulling] client count 0 + +2025-09-24 04:35:28,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:35:28,750 INFO toNotifyTaskSize = 0 + +2025-09-24 04:35:28,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:35:38,647 INFO [long-pulling] client count 0 + +2025-09-24 04:35:38,695 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:35:38,753 INFO toNotifyTaskSize = 0 + +2025-09-24 04:35:38,753 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:35:48,648 INFO [long-pulling] client count 0 + +2025-09-24 04:35:48,696 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:35:48,754 INFO toNotifyTaskSize = 0 + +2025-09-24 04:35:48,754 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:35:58,648 INFO [long-pulling] client count 0 + +2025-09-24 04:35:58,696 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:35:58,755 INFO toNotifyTaskSize = 0 + +2025-09-24 04:35:58,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:36:08,649 INFO [long-pulling] client count 0 + +2025-09-24 04:36:08,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:36:08,756 INFO toNotifyTaskSize = 0 + +2025-09-24 04:36:08,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:36:18,650 INFO [long-pulling] client count 0 + +2025-09-24 04:36:18,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:36:18,757 INFO toNotifyTaskSize = 0 + +2025-09-24 04:36:18,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:36:28,652 INFO [long-pulling] client count 0 + +2025-09-24 04:36:28,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:36:28,757 INFO toNotifyTaskSize = 0 + +2025-09-24 04:36:28,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:36:38,653 INFO [long-pulling] client count 0 + +2025-09-24 04:36:38,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:36:38,757 INFO toNotifyTaskSize = 0 + +2025-09-24 04:36:38,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:36:48,655 INFO [long-pulling] client count 0 + +2025-09-24 04:36:48,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:36:48,759 INFO toNotifyTaskSize = 0 + +2025-09-24 04:36:48,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:36:58,655 INFO [long-pulling] client count 0 + +2025-09-24 04:36:58,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:36:58,759 INFO toNotifyTaskSize = 0 + +2025-09-24 04:36:58,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:37:08,656 INFO [long-pulling] client count 0 + +2025-09-24 04:37:08,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:37:08,760 INFO toNotifyTaskSize = 0 + +2025-09-24 04:37:08,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:37:18,657 INFO [long-pulling] client count 0 + +2025-09-24 04:37:18,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:37:18,762 INFO toNotifyTaskSize = 0 + +2025-09-24 04:37:18,762 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:37:28,660 INFO [long-pulling] client count 0 + +2025-09-24 04:37:28,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:37:28,764 INFO toNotifyTaskSize = 0 + +2025-09-24 04:37:28,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:37:38,661 INFO [long-pulling] client count 0 + +2025-09-24 04:37:38,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:37:38,765 INFO toNotifyTaskSize = 0 + +2025-09-24 04:37:38,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:37:48,663 INFO [long-pulling] client count 0 + +2025-09-24 04:37:48,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:37:48,766 INFO toNotifyTaskSize = 0 + +2025-09-24 04:37:48,767 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:37:58,666 INFO [long-pulling] client count 0 + +2025-09-24 04:37:58,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:37:58,769 INFO toNotifyTaskSize = 0 + +2025-09-24 04:37:58,769 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:38:08,667 INFO [long-pulling] client count 0 + +2025-09-24 04:38:08,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:38:08,770 INFO toNotifyTaskSize = 0 + +2025-09-24 04:38:08,770 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:38:18,668 INFO [long-pulling] client count 0 + +2025-09-24 04:38:18,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:38:18,771 INFO toNotifyTaskSize = 0 + +2025-09-24 04:38:18,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:38:28,671 INFO [long-pulling] client count 0 + +2025-09-24 04:38:28,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:38:28,772 INFO toNotifyTaskSize = 0 + +2025-09-24 04:38:28,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:38:38,672 INFO [long-pulling] client count 0 + +2025-09-24 04:38:38,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:38:38,774 INFO toNotifyTaskSize = 0 + +2025-09-24 04:38:38,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:38:48,673 INFO [long-pulling] client count 0 + +2025-09-24 04:38:48,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:38:48,774 INFO toNotifyTaskSize = 0 + +2025-09-24 04:38:48,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:38:58,674 INFO [long-pulling] client count 0 + +2025-09-24 04:38:58,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:38:58,776 INFO toNotifyTaskSize = 0 + +2025-09-24 04:38:58,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:39:08,675 INFO [long-pulling] client count 0 + +2025-09-24 04:39:08,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:39:08,776 INFO toNotifyTaskSize = 0 + +2025-09-24 04:39:08,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:39:18,675 INFO [long-pulling] client count 0 + +2025-09-24 04:39:18,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:39:18,778 INFO toNotifyTaskSize = 0 + +2025-09-24 04:39:18,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:39:28,677 INFO [long-pulling] client count 0 + +2025-09-24 04:39:28,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:39:28,780 INFO toNotifyTaskSize = 0 + +2025-09-24 04:39:28,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:39:38,678 INFO [long-pulling] client count 0 + +2025-09-24 04:39:38,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:39:38,781 INFO toNotifyTaskSize = 0 + +2025-09-24 04:39:38,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:39:48,679 INFO [long-pulling] client count 0 + +2025-09-24 04:39:48,722 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:39:48,783 INFO toNotifyTaskSize = 0 + +2025-09-24 04:39:48,783 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:39:58,679 INFO [long-pulling] client count 0 + +2025-09-24 04:39:58,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:39:58,784 INFO toNotifyTaskSize = 0 + +2025-09-24 04:39:58,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:40:08,680 INFO [long-pulling] client count 0 + +2025-09-24 04:40:08,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:40:08,784 INFO toNotifyTaskSize = 0 + +2025-09-24 04:40:08,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:40:18,681 INFO [long-pulling] client count 0 + +2025-09-24 04:40:18,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:40:18,787 INFO toNotifyTaskSize = 0 + +2025-09-24 04:40:18,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:40:28,683 INFO [long-pulling] client count 0 + +2025-09-24 04:40:28,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:40:28,787 INFO toNotifyTaskSize = 0 + +2025-09-24 04:40:28,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:40:38,683 INFO [long-pulling] client count 0 + +2025-09-24 04:40:38,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:40:38,787 INFO toNotifyTaskSize = 0 + +2025-09-24 04:40:38,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:40:48,684 INFO [long-pulling] client count 0 + +2025-09-24 04:40:48,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:40:48,790 INFO toNotifyTaskSize = 0 + +2025-09-24 04:40:48,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:40:58,685 INFO [long-pulling] client count 0 + +2025-09-24 04:40:58,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:40:58,792 INFO toNotifyTaskSize = 0 + +2025-09-24 04:40:58,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:41:08,687 INFO [long-pulling] client count 0 + +2025-09-24 04:41:08,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:41:08,795 INFO toNotifyTaskSize = 0 + +2025-09-24 04:41:08,795 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:41:18,688 INFO [long-pulling] client count 0 + +2025-09-24 04:41:18,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:41:18,796 INFO toNotifyTaskSize = 0 + +2025-09-24 04:41:18,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:41:28,689 INFO [long-pulling] client count 0 + +2025-09-24 04:41:28,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:41:28,796 INFO toNotifyTaskSize = 0 + +2025-09-24 04:41:28,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:41:38,689 INFO [long-pulling] client count 0 + +2025-09-24 04:41:38,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:41:38,796 INFO toNotifyTaskSize = 0 + +2025-09-24 04:41:38,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:41:48,690 INFO [long-pulling] client count 0 + +2025-09-24 04:41:48,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:41:48,798 INFO toNotifyTaskSize = 0 + +2025-09-24 04:41:48,799 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:41:58,690 INFO [long-pulling] client count 0 + +2025-09-24 04:41:58,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:41:58,800 INFO toNotifyTaskSize = 0 + +2025-09-24 04:41:58,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:42:08,691 INFO [long-pulling] client count 0 + +2025-09-24 04:42:08,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:42:08,801 INFO toNotifyTaskSize = 0 + +2025-09-24 04:42:08,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:42:18,691 INFO [long-pulling] client count 0 + +2025-09-24 04:42:18,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:42:18,802 INFO toNotifyTaskSize = 0 + +2025-09-24 04:42:18,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:42:28,692 INFO [long-pulling] client count 0 + +2025-09-24 04:42:28,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:42:28,802 INFO toNotifyTaskSize = 0 + +2025-09-24 04:42:28,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:42:38,694 INFO [long-pulling] client count 0 + +2025-09-24 04:42:38,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:42:38,803 INFO toNotifyTaskSize = 0 + +2025-09-24 04:42:38,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:42:48,696 INFO [long-pulling] client count 0 + +2025-09-24 04:42:48,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:42:48,804 INFO toNotifyTaskSize = 0 + +2025-09-24 04:42:48,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:42:58,697 INFO [long-pulling] client count 0 + +2025-09-24 04:42:58,736 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:42:58,805 INFO toNotifyTaskSize = 0 + +2025-09-24 04:42:58,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:43:08,699 INFO [long-pulling] client count 0 + +2025-09-24 04:43:08,738 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:43:08,805 INFO toNotifyTaskSize = 0 + +2025-09-24 04:43:08,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:43:18,700 INFO [long-pulling] client count 0 + +2025-09-24 04:43:18,738 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:43:18,807 INFO toNotifyTaskSize = 0 + +2025-09-24 04:43:18,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:43:28,700 INFO [long-pulling] client count 0 + +2025-09-24 04:43:28,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:43:28,808 INFO toNotifyTaskSize = 0 + +2025-09-24 04:43:28,808 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:43:38,700 INFO [long-pulling] client count 0 + +2025-09-24 04:43:38,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:43:38,808 INFO toNotifyTaskSize = 0 + +2025-09-24 04:43:38,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:43:48,701 INFO [long-pulling] client count 0 + +2025-09-24 04:43:48,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:43:48,809 INFO toNotifyTaskSize = 0 + +2025-09-24 04:43:48,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:43:58,701 INFO [long-pulling] client count 0 + +2025-09-24 04:43:58,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:43:58,810 INFO toNotifyTaskSize = 0 + +2025-09-24 04:43:58,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:44:08,701 INFO [long-pulling] client count 0 + +2025-09-24 04:44:08,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:44:08,811 INFO toNotifyTaskSize = 0 + +2025-09-24 04:44:08,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:44:18,702 INFO [long-pulling] client count 0 + +2025-09-24 04:44:18,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:44:18,811 INFO toNotifyTaskSize = 0 + +2025-09-24 04:44:18,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:44:28,702 INFO [long-pulling] client count 0 + +2025-09-24 04:44:28,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:44:28,812 INFO toNotifyTaskSize = 0 + +2025-09-24 04:44:28,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:44:38,704 INFO [long-pulling] client count 0 + +2025-09-24 04:44:38,747 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:44:38,814 INFO toNotifyTaskSize = 0 + +2025-09-24 04:44:38,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:44:48,706 INFO [long-pulling] client count 0 + +2025-09-24 04:44:48,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:44:48,814 INFO toNotifyTaskSize = 0 + +2025-09-24 04:44:48,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:44:58,706 INFO [long-pulling] client count 0 + +2025-09-24 04:44:58,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:44:58,815 INFO toNotifyTaskSize = 0 + +2025-09-24 04:44:58,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:45:08,708 INFO [long-pulling] client count 0 + +2025-09-24 04:45:08,751 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:45:08,816 INFO toNotifyTaskSize = 0 + +2025-09-24 04:45:08,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:45:18,709 INFO [long-pulling] client count 0 + +2025-09-24 04:45:18,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:45:18,817 INFO toNotifyTaskSize = 0 + +2025-09-24 04:45:18,817 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:45:28,711 INFO [long-pulling] client count 0 + +2025-09-24 04:45:28,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:45:28,819 INFO toNotifyTaskSize = 0 + +2025-09-24 04:45:28,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:45:38,712 INFO [long-pulling] client count 0 + +2025-09-24 04:45:38,754 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:45:38,820 INFO toNotifyTaskSize = 0 + +2025-09-24 04:45:38,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:45:48,712 INFO [long-pulling] client count 0 + +2025-09-24 04:45:48,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:45:48,820 INFO toNotifyTaskSize = 0 + +2025-09-24 04:45:48,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:45:58,713 INFO [long-pulling] client count 0 + +2025-09-24 04:45:58,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:45:58,821 INFO toNotifyTaskSize = 0 + +2025-09-24 04:45:58,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:46:08,714 INFO [long-pulling] client count 0 + +2025-09-24 04:46:08,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:46:08,823 INFO toNotifyTaskSize = 0 + +2025-09-24 04:46:08,823 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:46:18,714 INFO [long-pulling] client count 0 + +2025-09-24 04:46:18,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:46:18,825 INFO toNotifyTaskSize = 0 + +2025-09-24 04:46:18,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:46:28,714 INFO [long-pulling] client count 0 + +2025-09-24 04:46:28,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:46:28,825 INFO toNotifyTaskSize = 0 + +2025-09-24 04:46:28,826 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:46:38,717 INFO [long-pulling] client count 0 + +2025-09-24 04:46:38,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:46:38,827 INFO toNotifyTaskSize = 0 + +2025-09-24 04:46:38,827 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:46:48,717 INFO [long-pulling] client count 0 + +2025-09-24 04:46:48,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:46:48,829 INFO toNotifyTaskSize = 0 + +2025-09-24 04:46:48,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:46:58,718 INFO [long-pulling] client count 0 + +2025-09-24 04:46:58,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:46:58,830 INFO toNotifyTaskSize = 0 + +2025-09-24 04:46:58,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:47:08,719 INFO [long-pulling] client count 0 + +2025-09-24 04:47:08,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:47:08,831 INFO toNotifyTaskSize = 0 + +2025-09-24 04:47:08,831 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:47:18,719 INFO [long-pulling] client count 0 + +2025-09-24 04:47:18,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:47:18,832 INFO toNotifyTaskSize = 0 + +2025-09-24 04:47:18,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:47:28,719 INFO [long-pulling] client count 0 + +2025-09-24 04:47:28,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:47:28,834 INFO toNotifyTaskSize = 0 + +2025-09-24 04:47:28,834 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:47:38,721 INFO [long-pulling] client count 0 + +2025-09-24 04:47:38,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:47:38,835 INFO toNotifyTaskSize = 0 + +2025-09-24 04:47:38,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:47:48,721 INFO [long-pulling] client count 0 + +2025-09-24 04:47:48,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:47:48,835 INFO toNotifyTaskSize = 0 + +2025-09-24 04:47:48,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:47:58,722 INFO [long-pulling] client count 0 + +2025-09-24 04:47:58,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:47:58,838 INFO toNotifyTaskSize = 0 + +2025-09-24 04:47:58,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:48:08,723 INFO [long-pulling] client count 0 + +2025-09-24 04:48:08,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:48:08,839 INFO toNotifyTaskSize = 0 + +2025-09-24 04:48:08,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:48:18,725 INFO [long-pulling] client count 0 + +2025-09-24 04:48:18,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:48:18,839 INFO toNotifyTaskSize = 0 + +2025-09-24 04:48:18,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:48:28,726 INFO [long-pulling] client count 0 + +2025-09-24 04:48:28,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:48:28,839 INFO toNotifyTaskSize = 0 + +2025-09-24 04:48:28,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:48:38,726 INFO [long-pulling] client count 0 + +2025-09-24 04:48:38,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:48:38,842 INFO toNotifyTaskSize = 0 + +2025-09-24 04:48:38,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:48:48,727 INFO [long-pulling] client count 0 + +2025-09-24 04:48:48,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:48:48,842 INFO toNotifyTaskSize = 0 + +2025-09-24 04:48:48,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:48:58,727 INFO [long-pulling] client count 0 + +2025-09-24 04:48:58,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:48:58,843 INFO toNotifyTaskSize = 0 + +2025-09-24 04:48:58,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:49:08,729 INFO [long-pulling] client count 0 + +2025-09-24 04:49:08,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:49:08,843 INFO toNotifyTaskSize = 0 + +2025-09-24 04:49:08,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:49:18,729 INFO [long-pulling] client count 0 + +2025-09-24 04:49:18,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:49:18,844 INFO toNotifyTaskSize = 0 + +2025-09-24 04:49:18,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:49:28,730 INFO [long-pulling] client count 0 + +2025-09-24 04:49:28,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:49:28,844 INFO toNotifyTaskSize = 0 + +2025-09-24 04:49:28,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:49:38,731 INFO [long-pulling] client count 0 + +2025-09-24 04:49:38,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:49:38,846 INFO toNotifyTaskSize = 0 + +2025-09-24 04:49:38,846 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:49:48,731 INFO [long-pulling] client count 0 + +2025-09-24 04:49:48,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:49:48,848 INFO toNotifyTaskSize = 0 + +2025-09-24 04:49:48,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:49:58,732 INFO [long-pulling] client count 0 + +2025-09-24 04:49:58,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:49:58,849 INFO toNotifyTaskSize = 0 + +2025-09-24 04:49:58,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:50:08,732 INFO [long-pulling] client count 0 + +2025-09-24 04:50:08,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:50:08,851 INFO toNotifyTaskSize = 0 + +2025-09-24 04:50:08,851 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:50:18,733 INFO [long-pulling] client count 0 + +2025-09-24 04:50:18,789 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:50:18,851 INFO toNotifyTaskSize = 0 + +2025-09-24 04:50:18,851 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:50:28,733 INFO [long-pulling] client count 0 + +2025-09-24 04:50:28,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:50:28,853 INFO toNotifyTaskSize = 0 + +2025-09-24 04:50:28,853 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:50:38,734 INFO [long-pulling] client count 0 + +2025-09-24 04:50:38,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:50:38,854 INFO toNotifyTaskSize = 0 + +2025-09-24 04:50:38,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:50:48,735 INFO [long-pulling] client count 0 + +2025-09-24 04:50:48,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:50:48,854 INFO toNotifyTaskSize = 0 + +2025-09-24 04:50:48,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:50:58,736 INFO [long-pulling] client count 0 + +2025-09-24 04:50:58,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:50:58,855 INFO toNotifyTaskSize = 0 + +2025-09-24 04:50:58,855 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:51:08,738 INFO [long-pulling] client count 0 + +2025-09-24 04:51:08,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:51:08,857 INFO toNotifyTaskSize = 0 + +2025-09-24 04:51:08,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:51:18,738 INFO [long-pulling] client count 0 + +2025-09-24 04:51:18,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:51:18,858 INFO toNotifyTaskSize = 0 + +2025-09-24 04:51:18,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:51:28,739 INFO [long-pulling] client count 0 + +2025-09-24 04:51:28,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:51:28,859 INFO toNotifyTaskSize = 0 + +2025-09-24 04:51:28,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:51:38,739 INFO [long-pulling] client count 0 + +2025-09-24 04:51:38,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:51:38,860 INFO toNotifyTaskSize = 0 + +2025-09-24 04:51:38,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:51:48,741 INFO [long-pulling] client count 0 + +2025-09-24 04:51:48,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:51:48,862 INFO toNotifyTaskSize = 0 + +2025-09-24 04:51:48,862 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:51:58,743 INFO [long-pulling] client count 0 + +2025-09-24 04:51:58,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:51:58,863 INFO toNotifyTaskSize = 0 + +2025-09-24 04:51:58,863 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:52:08,744 INFO [long-pulling] client count 0 + +2025-09-24 04:52:08,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:52:08,864 INFO toNotifyTaskSize = 0 + +2025-09-24 04:52:08,864 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:52:18,746 INFO [long-pulling] client count 0 + +2025-09-24 04:52:18,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:52:18,864 INFO toNotifyTaskSize = 0 + +2025-09-24 04:52:18,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:52:28,746 INFO [long-pulling] client count 0 + +2025-09-24 04:52:28,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:52:28,866 INFO toNotifyTaskSize = 0 + +2025-09-24 04:52:28,866 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:52:38,746 INFO [long-pulling] client count 0 + +2025-09-24 04:52:38,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:52:38,868 INFO toNotifyTaskSize = 0 + +2025-09-24 04:52:38,868 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:52:48,747 INFO [long-pulling] client count 0 + +2025-09-24 04:52:48,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:52:48,870 INFO toNotifyTaskSize = 0 + +2025-09-24 04:52:48,871 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:52:58,748 INFO [long-pulling] client count 0 + +2025-09-24 04:52:58,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:52:58,871 INFO toNotifyTaskSize = 0 + +2025-09-24 04:52:58,871 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:53:08,749 INFO [long-pulling] client count 0 + +2025-09-24 04:53:08,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:53:08,873 INFO toNotifyTaskSize = 0 + +2025-09-24 04:53:08,873 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:53:18,749 INFO [long-pulling] client count 0 + +2025-09-24 04:53:18,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:53:18,874 INFO toNotifyTaskSize = 0 + +2025-09-24 04:53:18,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:53:28,750 INFO [long-pulling] client count 0 + +2025-09-24 04:53:28,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:53:28,876 INFO toNotifyTaskSize = 0 + +2025-09-24 04:53:28,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:53:38,752 INFO [long-pulling] client count 0 + +2025-09-24 04:53:38,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:53:38,878 INFO toNotifyTaskSize = 0 + +2025-09-24 04:53:38,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:53:48,752 INFO [long-pulling] client count 0 + +2025-09-24 04:53:48,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:53:48,879 INFO toNotifyTaskSize = 0 + +2025-09-24 04:53:48,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:53:58,754 INFO [long-pulling] client count 0 + +2025-09-24 04:53:58,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:53:58,881 INFO toNotifyTaskSize = 0 + +2025-09-24 04:53:58,881 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:54:08,755 INFO [long-pulling] client count 0 + +2025-09-24 04:54:08,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:54:08,882 INFO toNotifyTaskSize = 0 + +2025-09-24 04:54:08,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:54:18,756 INFO [long-pulling] client count 0 + +2025-09-24 04:54:18,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:54:18,883 INFO toNotifyTaskSize = 0 + +2025-09-24 04:54:18,883 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:54:28,758 INFO [long-pulling] client count 0 + +2025-09-24 04:54:28,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:54:28,885 INFO toNotifyTaskSize = 0 + +2025-09-24 04:54:28,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:54:38,759 INFO [long-pulling] client count 0 + +2025-09-24 04:54:38,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:54:38,886 INFO toNotifyTaskSize = 0 + +2025-09-24 04:54:38,886 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:54:48,759 INFO [long-pulling] client count 0 + +2025-09-24 04:54:48,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:54:48,888 INFO toNotifyTaskSize = 0 + +2025-09-24 04:54:48,888 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:54:58,760 INFO [long-pulling] client count 0 + +2025-09-24 04:54:58,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:54:58,890 INFO toNotifyTaskSize = 0 + +2025-09-24 04:54:58,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:55:08,760 INFO [long-pulling] client count 0 + +2025-09-24 04:55:08,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:55:08,891 INFO toNotifyTaskSize = 0 + +2025-09-24 04:55:08,891 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:55:18,761 INFO [long-pulling] client count 0 + +2025-09-24 04:55:18,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:55:18,891 INFO toNotifyTaskSize = 0 + +2025-09-24 04:55:18,891 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:55:28,762 INFO [long-pulling] client count 0 + +2025-09-24 04:55:28,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:55:28,893 INFO toNotifyTaskSize = 0 + +2025-09-24 04:55:28,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:55:38,764 INFO [long-pulling] client count 0 + +2025-09-24 04:55:38,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:55:38,894 INFO toNotifyTaskSize = 0 + +2025-09-24 04:55:38,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:55:48,766 INFO [long-pulling] client count 0 + +2025-09-24 04:55:48,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:55:48,896 INFO toNotifyTaskSize = 0 + +2025-09-24 04:55:48,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:55:58,767 INFO [long-pulling] client count 0 + +2025-09-24 04:55:58,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:55:58,896 INFO toNotifyTaskSize = 0 + +2025-09-24 04:55:58,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:56:08,767 INFO [long-pulling] client count 0 + +2025-09-24 04:56:08,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:56:08,898 INFO toNotifyTaskSize = 0 + +2025-09-24 04:56:08,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:56:18,772 INFO [long-pulling] client count 0 + +2025-09-24 04:56:18,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:56:18,899 INFO toNotifyTaskSize = 0 + +2025-09-24 04:56:18,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:56:28,774 INFO [long-pulling] client count 0 + +2025-09-24 04:56:28,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:56:28,899 INFO toNotifyTaskSize = 0 + +2025-09-24 04:56:28,900 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:56:38,776 INFO [long-pulling] client count 0 + +2025-09-24 04:56:38,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:56:38,901 INFO toNotifyTaskSize = 0 + +2025-09-24 04:56:38,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:56:48,778 INFO [long-pulling] client count 0 + +2025-09-24 04:56:48,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:56:48,902 INFO toNotifyTaskSize = 0 + +2025-09-24 04:56:48,902 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:56:58,779 INFO [long-pulling] client count 0 + +2025-09-24 04:56:58,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:56:58,903 INFO toNotifyTaskSize = 0 + +2025-09-24 04:56:58,903 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:57:08,779 INFO [long-pulling] client count 0 + +2025-09-24 04:57:08,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:57:08,903 INFO toNotifyTaskSize = 0 + +2025-09-24 04:57:08,903 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:57:18,779 INFO [long-pulling] client count 0 + +2025-09-24 04:57:18,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:57:18,904 INFO toNotifyTaskSize = 0 + +2025-09-24 04:57:18,904 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:57:28,780 INFO [long-pulling] client count 0 + +2025-09-24 04:57:28,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:57:28,904 INFO toNotifyTaskSize = 0 + +2025-09-24 04:57:28,904 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:57:38,782 INFO [long-pulling] client count 0 + +2025-09-24 04:57:38,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:57:38,905 INFO toNotifyTaskSize = 0 + +2025-09-24 04:57:38,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:57:48,782 INFO [long-pulling] client count 0 + +2025-09-24 04:57:48,835 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:57:48,905 INFO toNotifyTaskSize = 0 + +2025-09-24 04:57:48,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:57:58,783 INFO [long-pulling] client count 0 + +2025-09-24 04:57:58,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:57:58,906 INFO toNotifyTaskSize = 0 + +2025-09-24 04:57:58,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:58:08,785 INFO [long-pulling] client count 0 + +2025-09-24 04:58:08,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:58:08,906 INFO toNotifyTaskSize = 0 + +2025-09-24 04:58:08,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:58:18,785 INFO [long-pulling] client count 0 + +2025-09-24 04:58:18,839 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:58:18,907 INFO toNotifyTaskSize = 0 + +2025-09-24 04:58:18,907 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:58:28,787 INFO [long-pulling] client count 0 + +2025-09-24 04:58:28,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:58:28,907 INFO toNotifyTaskSize = 0 + +2025-09-24 04:58:28,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:58:38,787 INFO [long-pulling] client count 0 + +2025-09-24 04:58:38,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:58:38,908 INFO toNotifyTaskSize = 0 + +2025-09-24 04:58:38,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:58:48,787 INFO [long-pulling] client count 0 + +2025-09-24 04:58:48,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:58:48,908 INFO toNotifyTaskSize = 0 + +2025-09-24 04:58:48,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:58:58,788 INFO [long-pulling] client count 0 + +2025-09-24 04:58:58,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:58:58,909 INFO toNotifyTaskSize = 0 + +2025-09-24 04:58:58,909 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:59:08,788 INFO [long-pulling] client count 0 + +2025-09-24 04:59:08,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:59:08,911 INFO toNotifyTaskSize = 0 + +2025-09-24 04:59:08,911 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:59:18,789 INFO [long-pulling] client count 0 + +2025-09-24 04:59:18,852 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:59:18,912 INFO toNotifyTaskSize = 0 + +2025-09-24 04:59:18,913 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:59:28,790 INFO [long-pulling] client count 0 + +2025-09-24 04:59:28,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:59:28,913 INFO toNotifyTaskSize = 0 + +2025-09-24 04:59:28,913 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:59:38,792 INFO [long-pulling] client count 0 + +2025-09-24 04:59:38,854 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:59:38,913 INFO toNotifyTaskSize = 0 + +2025-09-24 04:59:38,913 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:59:48,794 INFO [long-pulling] client count 0 + +2025-09-24 04:59:48,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:59:48,914 INFO toNotifyTaskSize = 0 + +2025-09-24 04:59:48,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 04:59:58,794 INFO [long-pulling] client count 0 + +2025-09-24 04:59:58,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 04:59:58,914 INFO toNotifyTaskSize = 0 + +2025-09-24 04:59:58,915 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:00:08,796 INFO [long-pulling] client count 0 + +2025-09-24 05:00:08,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:00:08,915 INFO toNotifyTaskSize = 0 + +2025-09-24 05:00:08,915 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:00:18,797 INFO [long-pulling] client count 0 + +2025-09-24 05:00:18,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:00:18,917 INFO toNotifyTaskSize = 0 + +2025-09-24 05:00:18,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:00:28,798 INFO [long-pulling] client count 0 + +2025-09-24 05:00:28,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:00:28,918 INFO toNotifyTaskSize = 0 + +2025-09-24 05:00:28,918 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:00:38,800 INFO [long-pulling] client count 0 + +2025-09-24 05:00:38,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:00:38,920 INFO toNotifyTaskSize = 0 + +2025-09-24 05:00:38,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:00:48,800 INFO [long-pulling] client count 0 + +2025-09-24 05:00:48,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:00:48,923 INFO toNotifyTaskSize = 0 + +2025-09-24 05:00:48,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:00:58,801 INFO [long-pulling] client count 0 + +2025-09-24 05:00:58,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:00:58,923 INFO toNotifyTaskSize = 0 + +2025-09-24 05:00:58,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:01:08,803 INFO [long-pulling] client count 0 + +2025-09-24 05:01:08,865 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:01:08,924 INFO toNotifyTaskSize = 0 + +2025-09-24 05:01:08,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:01:18,805 INFO [long-pulling] client count 0 + +2025-09-24 05:01:18,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:01:18,925 INFO toNotifyTaskSize = 0 + +2025-09-24 05:01:18,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:01:28,806 INFO [long-pulling] client count 0 + +2025-09-24 05:01:28,867 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:01:28,927 INFO toNotifyTaskSize = 0 + +2025-09-24 05:01:28,927 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:01:38,807 INFO [long-pulling] client count 0 + +2025-09-24 05:01:38,867 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:01:38,928 INFO toNotifyTaskSize = 0 + +2025-09-24 05:01:38,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:01:48,807 INFO [long-pulling] client count 0 + +2025-09-24 05:01:48,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:01:48,928 INFO toNotifyTaskSize = 0 + +2025-09-24 05:01:48,929 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:01:58,808 INFO [long-pulling] client count 0 + +2025-09-24 05:01:58,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:01:58,931 INFO toNotifyTaskSize = 0 + +2025-09-24 05:01:58,931 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:02:08,809 INFO [long-pulling] client count 0 + +2025-09-24 05:02:08,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:02:08,933 INFO toNotifyTaskSize = 0 + +2025-09-24 05:02:08,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:02:18,811 INFO [long-pulling] client count 0 + +2025-09-24 05:02:18,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:02:18,933 INFO toNotifyTaskSize = 0 + +2025-09-24 05:02:18,934 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:02:28,811 INFO [long-pulling] client count 0 + +2025-09-24 05:02:28,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:02:28,934 INFO toNotifyTaskSize = 0 + +2025-09-24 05:02:28,934 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:02:38,812 INFO [long-pulling] client count 0 + +2025-09-24 05:02:38,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:02:38,935 INFO toNotifyTaskSize = 0 + +2025-09-24 05:02:38,935 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:02:48,814 INFO [long-pulling] client count 0 + +2025-09-24 05:02:48,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:02:48,936 INFO toNotifyTaskSize = 0 + +2025-09-24 05:02:48,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:02:58,814 INFO [long-pulling] client count 0 + +2025-09-24 05:02:58,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:02:58,937 INFO toNotifyTaskSize = 0 + +2025-09-24 05:02:58,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:03:08,815 INFO [long-pulling] client count 0 + +2025-09-24 05:03:08,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:03:08,937 INFO toNotifyTaskSize = 0 + +2025-09-24 05:03:08,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:03:18,816 INFO [long-pulling] client count 0 + +2025-09-24 05:03:18,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:03:18,939 INFO toNotifyTaskSize = 0 + +2025-09-24 05:03:18,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:03:28,817 INFO [long-pulling] client count 0 + +2025-09-24 05:03:28,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:03:28,939 INFO toNotifyTaskSize = 0 + +2025-09-24 05:03:28,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:03:38,818 INFO [long-pulling] client count 0 + +2025-09-24 05:03:38,887 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:03:38,941 INFO toNotifyTaskSize = 0 + +2025-09-24 05:03:38,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:03:48,819 INFO [long-pulling] client count 0 + +2025-09-24 05:03:48,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:03:48,942 INFO toNotifyTaskSize = 0 + +2025-09-24 05:03:48,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:03:58,821 INFO [long-pulling] client count 0 + +2025-09-24 05:03:58,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:03:58,944 INFO toNotifyTaskSize = 0 + +2025-09-24 05:03:58,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:04:08,823 INFO [long-pulling] client count 0 + +2025-09-24 05:04:08,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:04:08,945 INFO toNotifyTaskSize = 0 + +2025-09-24 05:04:08,945 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:04:18,823 INFO [long-pulling] client count 0 + +2025-09-24 05:04:18,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:04:18,947 INFO toNotifyTaskSize = 0 + +2025-09-24 05:04:18,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:04:28,825 INFO [long-pulling] client count 0 + +2025-09-24 05:04:28,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:04:28,948 INFO toNotifyTaskSize = 0 + +2025-09-24 05:04:28,948 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:04:38,826 INFO [long-pulling] client count 0 + +2025-09-24 05:04:38,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:04:38,948 INFO toNotifyTaskSize = 0 + +2025-09-24 05:04:38,948 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:04:48,827 INFO [long-pulling] client count 0 + +2025-09-24 05:04:48,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:04:48,949 INFO toNotifyTaskSize = 0 + +2025-09-24 05:04:48,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:04:58,827 INFO [long-pulling] client count 0 + +2025-09-24 05:04:58,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:04:58,949 INFO toNotifyTaskSize = 0 + +2025-09-24 05:04:58,950 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:05:08,827 INFO [long-pulling] client count 0 + +2025-09-24 05:05:08,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:05:08,952 INFO toNotifyTaskSize = 0 + +2025-09-24 05:05:08,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:05:18,828 INFO [long-pulling] client count 0 + +2025-09-24 05:05:18,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:05:18,953 INFO toNotifyTaskSize = 0 + +2025-09-24 05:05:18,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:05:28,828 INFO [long-pulling] client count 0 + +2025-09-24 05:05:28,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:05:28,955 INFO toNotifyTaskSize = 0 + +2025-09-24 05:05:28,955 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:05:38,830 INFO [long-pulling] client count 0 + +2025-09-24 05:05:38,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:05:38,957 INFO toNotifyTaskSize = 0 + +2025-09-24 05:05:38,957 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:05:48,831 INFO [long-pulling] client count 0 + +2025-09-24 05:05:48,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:05:48,960 INFO toNotifyTaskSize = 0 + +2025-09-24 05:05:48,960 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:05:58,832 INFO [long-pulling] client count 0 + +2025-09-24 05:05:58,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:05:58,962 INFO toNotifyTaskSize = 0 + +2025-09-24 05:05:58,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:06:08,833 INFO [long-pulling] client count 0 + +2025-09-24 05:06:08,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:06:08,963 INFO toNotifyTaskSize = 0 + +2025-09-24 05:06:08,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:06:18,833 INFO [long-pulling] client count 0 + +2025-09-24 05:06:18,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:06:18,963 INFO toNotifyTaskSize = 0 + +2025-09-24 05:06:18,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:06:28,833 INFO [long-pulling] client count 0 + +2025-09-24 05:06:28,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:06:28,965 INFO toNotifyTaskSize = 0 + +2025-09-24 05:06:28,965 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:06:38,835 INFO [long-pulling] client count 0 + +2025-09-24 05:06:38,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:06:38,966 INFO toNotifyTaskSize = 0 + +2025-09-24 05:06:38,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:06:48,837 INFO [long-pulling] client count 0 + +2025-09-24 05:06:48,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:06:48,968 INFO toNotifyTaskSize = 0 + +2025-09-24 05:06:48,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:06:58,838 INFO [long-pulling] client count 0 + +2025-09-24 05:06:58,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:06:58,970 INFO toNotifyTaskSize = 0 + +2025-09-24 05:06:58,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:07:08,838 INFO [long-pulling] client count 0 + +2025-09-24 05:07:08,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:07:08,972 INFO toNotifyTaskSize = 0 + +2025-09-24 05:07:08,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:07:18,840 INFO [long-pulling] client count 0 + +2025-09-24 05:07:18,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:07:18,974 INFO toNotifyTaskSize = 0 + +2025-09-24 05:07:18,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:07:28,840 INFO [long-pulling] client count 0 + +2025-09-24 05:07:28,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:07:28,976 INFO toNotifyTaskSize = 0 + +2025-09-24 05:07:28,976 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:07:38,841 INFO [long-pulling] client count 0 + +2025-09-24 05:07:38,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:07:38,978 INFO toNotifyTaskSize = 0 + +2025-09-24 05:07:38,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:07:48,841 INFO [long-pulling] client count 0 + +2025-09-24 05:07:48,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:07:48,978 INFO toNotifyTaskSize = 0 + +2025-09-24 05:07:48,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:07:58,842 INFO [long-pulling] client count 0 + +2025-09-24 05:07:58,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:07:58,980 INFO toNotifyTaskSize = 0 + +2025-09-24 05:07:58,980 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:08:08,843 INFO [long-pulling] client count 0 + +2025-09-24 05:08:08,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:08:08,981 INFO toNotifyTaskSize = 0 + +2025-09-24 05:08:08,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:08:18,844 INFO [long-pulling] client count 0 + +2025-09-24 05:08:18,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:08:18,981 INFO toNotifyTaskSize = 0 + +2025-09-24 05:08:18,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:08:28,845 INFO [long-pulling] client count 0 + +2025-09-24 05:08:28,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:08:28,983 INFO toNotifyTaskSize = 0 + +2025-09-24 05:08:28,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:08:38,846 INFO [long-pulling] client count 0 + +2025-09-24 05:08:38,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:08:38,984 INFO toNotifyTaskSize = 0 + +2025-09-24 05:08:38,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:08:48,846 INFO [long-pulling] client count 0 + +2025-09-24 05:08:48,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:08:48,985 INFO toNotifyTaskSize = 0 + +2025-09-24 05:08:48,985 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:08:58,847 INFO [long-pulling] client count 0 + +2025-09-24 05:08:58,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:08:58,986 INFO toNotifyTaskSize = 0 + +2025-09-24 05:08:58,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:09:08,848 INFO [long-pulling] client count 0 + +2025-09-24 05:09:08,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:09:08,987 INFO toNotifyTaskSize = 0 + +2025-09-24 05:09:08,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:09:18,850 INFO [long-pulling] client count 0 + +2025-09-24 05:09:18,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:09:18,989 INFO toNotifyTaskSize = 0 + +2025-09-24 05:09:18,990 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:09:28,850 INFO [long-pulling] client count 0 + +2025-09-24 05:09:28,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:09:28,991 INFO toNotifyTaskSize = 0 + +2025-09-24 05:09:28,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:09:38,852 INFO [long-pulling] client count 0 + +2025-09-24 05:09:38,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:09:38,992 INFO toNotifyTaskSize = 0 + +2025-09-24 05:09:38,992 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:09:48,853 INFO [long-pulling] client count 0 + +2025-09-24 05:09:48,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:09:48,993 INFO toNotifyTaskSize = 0 + +2025-09-24 05:09:48,993 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:09:58,853 INFO [long-pulling] client count 0 + +2025-09-24 05:09:58,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:09:58,995 INFO toNotifyTaskSize = 0 + +2025-09-24 05:09:58,996 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:10:08,854 INFO [long-pulling] client count 0 + +2025-09-24 05:10:08,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:10:08,998 INFO toNotifyTaskSize = 0 + +2025-09-24 05:10:08,998 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:10:18,854 INFO [long-pulling] client count 0 + +2025-09-24 05:10:18,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:10:18,998 INFO toNotifyTaskSize = 0 + +2025-09-24 05:10:18,998 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:10:28,856 INFO [long-pulling] client count 0 + +2025-09-24 05:10:28,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:10:28,999 INFO toNotifyTaskSize = 0 + +2025-09-24 05:10:28,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:10:38,856 INFO [long-pulling] client count 0 + +2025-09-24 05:10:38,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:10:38,999 INFO toNotifyTaskSize = 0 + +2025-09-24 05:10:39,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:10:48,857 INFO [long-pulling] client count 0 + +2025-09-24 05:10:48,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:10:49,001 INFO toNotifyTaskSize = 0 + +2025-09-24 05:10:49,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:10:58,857 INFO [long-pulling] client count 0 + +2025-09-24 05:10:58,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:10:59,001 INFO toNotifyTaskSize = 0 + +2025-09-24 05:10:59,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:11:08,859 INFO [long-pulling] client count 0 + +2025-09-24 05:11:08,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:11:09,003 INFO toNotifyTaskSize = 0 + +2025-09-24 05:11:09,003 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:11:18,860 INFO [long-pulling] client count 0 + +2025-09-24 05:11:18,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:11:19,003 INFO toNotifyTaskSize = 0 + +2025-09-24 05:11:19,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:11:28,862 INFO [long-pulling] client count 0 + +2025-09-24 05:11:28,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:11:29,004 INFO toNotifyTaskSize = 0 + +2025-09-24 05:11:29,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:11:38,865 INFO [long-pulling] client count 0 + +2025-09-24 05:11:38,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:11:39,005 INFO toNotifyTaskSize = 0 + +2025-09-24 05:11:39,005 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:11:48,867 INFO [long-pulling] client count 0 + +2025-09-24 05:11:48,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:11:49,005 INFO toNotifyTaskSize = 0 + +2025-09-24 05:11:49,005 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:11:58,869 INFO [long-pulling] client count 0 + +2025-09-24 05:11:58,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:11:59,007 INFO toNotifyTaskSize = 0 + +2025-09-24 05:11:59,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:12:08,869 INFO [long-pulling] client count 0 + +2025-09-24 05:12:08,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:12:09,008 INFO toNotifyTaskSize = 0 + +2025-09-24 05:12:09,008 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:12:18,869 INFO [long-pulling] client count 0 + +2025-09-24 05:12:18,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:12:19,010 INFO toNotifyTaskSize = 0 + +2025-09-24 05:12:19,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:12:28,871 INFO [long-pulling] client count 0 + +2025-09-24 05:12:28,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:12:29,012 INFO toNotifyTaskSize = 0 + +2025-09-24 05:12:29,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:12:38,871 INFO [long-pulling] client count 0 + +2025-09-24 05:12:38,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:12:39,014 INFO toNotifyTaskSize = 0 + +2025-09-24 05:12:39,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:12:48,872 INFO [long-pulling] client count 0 + +2025-09-24 05:12:48,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:12:49,014 INFO toNotifyTaskSize = 0 + +2025-09-24 05:12:49,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:12:58,873 INFO [long-pulling] client count 0 + +2025-09-24 05:12:58,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:12:59,015 INFO toNotifyTaskSize = 0 + +2025-09-24 05:12:59,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:13:08,874 INFO [long-pulling] client count 0 + +2025-09-24 05:13:08,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:13:09,015 INFO toNotifyTaskSize = 0 + +2025-09-24 05:13:09,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:13:18,875 INFO [long-pulling] client count 0 + +2025-09-24 05:13:18,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:13:19,015 INFO toNotifyTaskSize = 0 + +2025-09-24 05:13:19,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:13:28,877 INFO [long-pulling] client count 0 + +2025-09-24 05:13:28,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:13:29,017 INFO toNotifyTaskSize = 0 + +2025-09-24 05:13:29,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:13:38,877 INFO [long-pulling] client count 0 + +2025-09-24 05:13:38,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:13:39,018 INFO toNotifyTaskSize = 0 + +2025-09-24 05:13:39,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:13:48,878 INFO [long-pulling] client count 0 + +2025-09-24 05:13:48,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:13:49,019 INFO toNotifyTaskSize = 0 + +2025-09-24 05:13:49,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:13:58,880 INFO [long-pulling] client count 0 + +2025-09-24 05:13:58,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:13:59,019 INFO toNotifyTaskSize = 0 + +2025-09-24 05:13:59,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:14:08,880 INFO [long-pulling] client count 0 + +2025-09-24 05:14:08,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:14:09,020 INFO toNotifyTaskSize = 0 + +2025-09-24 05:14:09,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:14:18,881 INFO [long-pulling] client count 0 + +2025-09-24 05:14:18,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:14:19,021 INFO toNotifyTaskSize = 0 + +2025-09-24 05:14:19,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:14:28,881 INFO [long-pulling] client count 0 + +2025-09-24 05:14:28,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:14:29,021 INFO toNotifyTaskSize = 0 + +2025-09-24 05:14:29,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:14:38,883 INFO [long-pulling] client count 0 + +2025-09-24 05:14:38,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:14:39,023 INFO toNotifyTaskSize = 0 + +2025-09-24 05:14:39,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:14:48,883 INFO [long-pulling] client count 0 + +2025-09-24 05:14:48,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:14:49,024 INFO toNotifyTaskSize = 0 + +2025-09-24 05:14:49,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:14:58,885 INFO [long-pulling] client count 0 + +2025-09-24 05:14:58,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:14:59,026 INFO toNotifyTaskSize = 0 + +2025-09-24 05:14:59,026 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:15:08,886 INFO [long-pulling] client count 0 + +2025-09-24 05:15:08,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:15:09,026 INFO toNotifyTaskSize = 0 + +2025-09-24 05:15:09,026 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:15:18,887 INFO [long-pulling] client count 0 + +2025-09-24 05:15:18,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:15:19,027 INFO toNotifyTaskSize = 0 + +2025-09-24 05:15:19,027 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:15:28,887 INFO [long-pulling] client count 0 + +2025-09-24 05:15:28,942 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:15:29,027 INFO toNotifyTaskSize = 0 + +2025-09-24 05:15:29,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:15:38,888 INFO [long-pulling] client count 0 + +2025-09-24 05:15:38,942 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:15:39,029 INFO toNotifyTaskSize = 0 + +2025-09-24 05:15:39,029 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:15:48,888 INFO [long-pulling] client count 0 + +2025-09-24 05:15:48,942 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:15:49,031 INFO toNotifyTaskSize = 0 + +2025-09-24 05:15:49,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:15:58,888 INFO [long-pulling] client count 0 + +2025-09-24 05:15:58,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:15:59,032 INFO toNotifyTaskSize = 0 + +2025-09-24 05:15:59,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:16:08,890 INFO [long-pulling] client count 0 + +2025-09-24 05:16:08,945 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:16:09,033 INFO toNotifyTaskSize = 0 + +2025-09-24 05:16:09,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:16:18,890 INFO [long-pulling] client count 0 + +2025-09-24 05:16:18,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:16:19,034 INFO toNotifyTaskSize = 0 + +2025-09-24 05:16:19,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:16:28,892 INFO [long-pulling] client count 0 + +2025-09-24 05:16:28,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:16:29,035 INFO toNotifyTaskSize = 0 + +2025-09-24 05:16:29,035 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:16:38,893 INFO [long-pulling] client count 0 + +2025-09-24 05:16:38,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:16:39,036 INFO toNotifyTaskSize = 0 + +2025-09-24 05:16:39,036 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:16:48,893 INFO [long-pulling] client count 0 + +2025-09-24 05:16:48,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:16:49,036 INFO toNotifyTaskSize = 0 + +2025-09-24 05:16:49,036 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:16:58,893 INFO [long-pulling] client count 0 + +2025-09-24 05:16:58,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:16:59,037 INFO toNotifyTaskSize = 0 + +2025-09-24 05:16:59,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:17:08,895 INFO [long-pulling] client count 0 + +2025-09-24 05:17:08,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:17:09,038 INFO toNotifyTaskSize = 0 + +2025-09-24 05:17:09,038 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:17:18,897 INFO [long-pulling] client count 0 + +2025-09-24 05:17:18,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:17:19,040 INFO toNotifyTaskSize = 0 + +2025-09-24 05:17:19,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:17:28,899 INFO [long-pulling] client count 0 + +2025-09-24 05:17:28,950 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:17:29,041 INFO toNotifyTaskSize = 0 + +2025-09-24 05:17:29,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:17:38,900 INFO [long-pulling] client count 0 + +2025-09-24 05:17:38,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:17:39,041 INFO toNotifyTaskSize = 0 + +2025-09-24 05:17:39,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:17:48,901 INFO [long-pulling] client count 0 + +2025-09-24 05:17:48,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:17:49,041 INFO toNotifyTaskSize = 0 + +2025-09-24 05:17:49,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:17:58,901 INFO [long-pulling] client count 0 + +2025-09-24 05:17:58,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:17:59,042 INFO toNotifyTaskSize = 0 + +2025-09-24 05:17:59,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:18:08,902 INFO [long-pulling] client count 0 + +2025-09-24 05:18:08,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:18:09,043 INFO toNotifyTaskSize = 0 + +2025-09-24 05:18:09,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:18:18,902 INFO [long-pulling] client count 0 + +2025-09-24 05:18:18,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:18:19,044 INFO toNotifyTaskSize = 0 + +2025-09-24 05:18:19,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:18:28,903 INFO [long-pulling] client count 0 + +2025-09-24 05:18:28,957 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:18:29,045 INFO toNotifyTaskSize = 0 + +2025-09-24 05:18:29,045 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:18:38,904 INFO [long-pulling] client count 0 + +2025-09-24 05:18:38,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:18:39,046 INFO toNotifyTaskSize = 0 + +2025-09-24 05:18:39,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:18:48,904 INFO [long-pulling] client count 0 + +2025-09-24 05:18:48,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:18:49,047 INFO toNotifyTaskSize = 0 + +2025-09-24 05:18:49,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:18:58,905 INFO [long-pulling] client count 0 + +2025-09-24 05:18:58,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:18:59,049 INFO toNotifyTaskSize = 0 + +2025-09-24 05:18:59,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:19:08,905 INFO [long-pulling] client count 0 + +2025-09-24 05:19:08,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:19:09,051 INFO toNotifyTaskSize = 0 + +2025-09-24 05:19:09,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:19:18,905 INFO [long-pulling] client count 0 + +2025-09-24 05:19:18,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:19:19,054 INFO toNotifyTaskSize = 0 + +2025-09-24 05:19:19,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:19:28,906 INFO [long-pulling] client count 0 + +2025-09-24 05:19:28,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:19:29,055 INFO toNotifyTaskSize = 0 + +2025-09-24 05:19:29,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:19:38,906 INFO [long-pulling] client count 0 + +2025-09-24 05:19:38,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:19:39,056 INFO toNotifyTaskSize = 0 + +2025-09-24 05:19:39,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:19:48,907 INFO [long-pulling] client count 0 + +2025-09-24 05:19:48,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:19:49,057 INFO toNotifyTaskSize = 0 + +2025-09-24 05:19:49,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:19:58,907 INFO [long-pulling] client count 0 + +2025-09-24 05:19:58,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:19:59,058 INFO toNotifyTaskSize = 0 + +2025-09-24 05:19:59,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:20:08,908 INFO [long-pulling] client count 0 + +2025-09-24 05:20:08,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:20:09,059 INFO toNotifyTaskSize = 0 + +2025-09-24 05:20:09,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:20:18,909 INFO [long-pulling] client count 0 + +2025-09-24 05:20:18,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:20:19,059 INFO toNotifyTaskSize = 0 + +2025-09-24 05:20:19,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:20:28,910 INFO [long-pulling] client count 0 + +2025-09-24 05:20:28,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:20:29,061 INFO toNotifyTaskSize = 0 + +2025-09-24 05:20:29,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:20:38,910 INFO [long-pulling] client count 0 + +2025-09-24 05:20:38,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:20:39,063 INFO toNotifyTaskSize = 0 + +2025-09-24 05:20:39,063 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:20:48,911 INFO [long-pulling] client count 0 + +2025-09-24 05:20:48,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:20:49,065 INFO toNotifyTaskSize = 0 + +2025-09-24 05:20:49,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:20:58,911 INFO [long-pulling] client count 0 + +2025-09-24 05:20:58,973 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:20:59,066 INFO toNotifyTaskSize = 0 + +2025-09-24 05:20:59,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:21:08,913 INFO [long-pulling] client count 0 + +2025-09-24 05:21:08,975 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:21:09,066 INFO toNotifyTaskSize = 0 + +2025-09-24 05:21:09,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:21:18,914 INFO [long-pulling] client count 0 + +2025-09-24 05:21:18,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:21:19,068 INFO toNotifyTaskSize = 0 + +2025-09-24 05:21:19,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:21:28,915 INFO [long-pulling] client count 0 + +2025-09-24 05:21:28,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:21:29,070 INFO toNotifyTaskSize = 0 + +2025-09-24 05:21:29,070 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:21:38,916 INFO [long-pulling] client count 0 + +2025-09-24 05:21:38,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:21:39,072 INFO toNotifyTaskSize = 0 + +2025-09-24 05:21:39,072 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:21:48,917 INFO [long-pulling] client count 0 + +2025-09-24 05:21:48,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:21:49,074 INFO toNotifyTaskSize = 0 + +2025-09-24 05:21:49,074 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:21:58,918 INFO [long-pulling] client count 0 + +2025-09-24 05:21:58,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:21:59,074 INFO toNotifyTaskSize = 0 + +2025-09-24 05:21:59,074 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:22:08,919 INFO [long-pulling] client count 0 + +2025-09-24 05:22:08,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:22:09,075 INFO toNotifyTaskSize = 0 + +2025-09-24 05:22:09,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:22:18,921 INFO [long-pulling] client count 0 + +2025-09-24 05:22:18,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:22:19,076 INFO toNotifyTaskSize = 0 + +2025-09-24 05:22:19,076 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:22:28,922 INFO [long-pulling] client count 0 + +2025-09-24 05:22:28,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:22:29,077 INFO toNotifyTaskSize = 0 + +2025-09-24 05:22:29,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:22:38,924 INFO [long-pulling] client count 0 + +2025-09-24 05:22:38,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:22:39,078 INFO toNotifyTaskSize = 0 + +2025-09-24 05:22:39,078 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:22:48,924 INFO [long-pulling] client count 0 + +2025-09-24 05:22:48,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:22:49,078 INFO toNotifyTaskSize = 0 + +2025-09-24 05:22:49,078 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:22:58,925 INFO [long-pulling] client count 0 + +2025-09-24 05:22:58,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:22:59,079 INFO toNotifyTaskSize = 0 + +2025-09-24 05:22:59,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:23:08,926 INFO [long-pulling] client count 0 + +2025-09-24 05:23:08,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:23:09,080 INFO toNotifyTaskSize = 0 + +2025-09-24 05:23:09,080 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:23:18,926 INFO [long-pulling] client count 0 + +2025-09-24 05:23:18,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:23:19,082 INFO toNotifyTaskSize = 0 + +2025-09-24 05:23:19,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:23:28,927 INFO [long-pulling] client count 0 + +2025-09-24 05:23:28,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:23:29,084 INFO toNotifyTaskSize = 0 + +2025-09-24 05:23:29,084 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:23:38,927 INFO [long-pulling] client count 0 + +2025-09-24 05:23:38,988 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:23:39,086 INFO toNotifyTaskSize = 0 + +2025-09-24 05:23:39,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:23:48,928 INFO [long-pulling] client count 0 + +2025-09-24 05:23:48,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:23:49,088 INFO toNotifyTaskSize = 0 + +2025-09-24 05:23:49,088 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:23:58,928 INFO [long-pulling] client count 0 + +2025-09-24 05:23:58,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:23:59,090 INFO toNotifyTaskSize = 0 + +2025-09-24 05:23:59,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:24:08,929 INFO [long-pulling] client count 0 + +2025-09-24 05:24:08,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:24:09,090 INFO toNotifyTaskSize = 0 + +2025-09-24 05:24:09,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:24:18,929 INFO [long-pulling] client count 0 + +2025-09-24 05:24:18,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:24:19,092 INFO toNotifyTaskSize = 0 + +2025-09-24 05:24:19,092 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:24:28,930 INFO [long-pulling] client count 0 + +2025-09-24 05:24:28,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:24:29,094 INFO toNotifyTaskSize = 0 + +2025-09-24 05:24:29,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:24:38,932 INFO [long-pulling] client count 0 + +2025-09-24 05:24:38,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:24:39,094 INFO toNotifyTaskSize = 0 + +2025-09-24 05:24:39,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:24:48,933 INFO [long-pulling] client count 0 + +2025-09-24 05:24:48,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:24:49,097 INFO toNotifyTaskSize = 0 + +2025-09-24 05:24:49,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:24:58,934 INFO [long-pulling] client count 0 + +2025-09-24 05:24:58,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:24:59,097 INFO toNotifyTaskSize = 0 + +2025-09-24 05:24:59,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:25:08,936 INFO [long-pulling] client count 0 + +2025-09-24 05:25:08,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:25:09,098 INFO toNotifyTaskSize = 0 + +2025-09-24 05:25:09,098 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:25:18,939 INFO [long-pulling] client count 0 + +2025-09-24 05:25:18,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:25:19,099 INFO toNotifyTaskSize = 0 + +2025-09-24 05:25:19,099 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:25:28,939 INFO [long-pulling] client count 0 + +2025-09-24 05:25:28,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:25:29,100 INFO toNotifyTaskSize = 0 + +2025-09-24 05:25:29,100 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:25:38,941 INFO [long-pulling] client count 0 + +2025-09-24 05:25:38,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:25:39,101 INFO toNotifyTaskSize = 0 + +2025-09-24 05:25:39,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:25:48,942 INFO [long-pulling] client count 0 + +2025-09-24 05:25:48,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:25:49,102 INFO toNotifyTaskSize = 0 + +2025-09-24 05:25:49,103 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:25:58,943 INFO [long-pulling] client count 0 + +2025-09-24 05:25:58,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:25:59,105 INFO toNotifyTaskSize = 0 + +2025-09-24 05:25:59,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:26:08,944 INFO [long-pulling] client count 0 + +2025-09-24 05:26:08,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:26:09,105 INFO toNotifyTaskSize = 0 + +2025-09-24 05:26:09,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:26:18,944 INFO [long-pulling] client count 0 + +2025-09-24 05:26:19,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:26:19,107 INFO toNotifyTaskSize = 0 + +2025-09-24 05:26:19,107 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:26:28,946 INFO [long-pulling] client count 0 + +2025-09-24 05:26:29,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:26:29,108 INFO toNotifyTaskSize = 0 + +2025-09-24 05:26:29,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:26:38,948 INFO [long-pulling] client count 0 + +2025-09-24 05:26:39,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:26:39,108 INFO toNotifyTaskSize = 0 + +2025-09-24 05:26:39,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:26:48,949 INFO [long-pulling] client count 0 + +2025-09-24 05:26:49,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:26:49,110 INFO toNotifyTaskSize = 0 + +2025-09-24 05:26:49,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:26:58,950 INFO [long-pulling] client count 0 + +2025-09-24 05:26:59,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:26:59,111 INFO toNotifyTaskSize = 0 + +2025-09-24 05:26:59,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:27:08,950 INFO [long-pulling] client count 0 + +2025-09-24 05:27:09,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:27:09,111 INFO toNotifyTaskSize = 0 + +2025-09-24 05:27:09,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:27:18,952 INFO [long-pulling] client count 0 + +2025-09-24 05:27:19,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:27:19,113 INFO toNotifyTaskSize = 0 + +2025-09-24 05:27:19,113 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:27:28,953 INFO [long-pulling] client count 0 + +2025-09-24 05:27:29,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:27:29,113 INFO toNotifyTaskSize = 0 + +2025-09-24 05:27:29,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:27:38,953 INFO [long-pulling] client count 0 + +2025-09-24 05:27:39,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:27:39,115 INFO toNotifyTaskSize = 0 + +2025-09-24 05:27:39,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:27:48,955 INFO [long-pulling] client count 0 + +2025-09-24 05:27:49,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:27:49,115 INFO toNotifyTaskSize = 0 + +2025-09-24 05:27:49,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:27:58,955 INFO [long-pulling] client count 0 + +2025-09-24 05:27:59,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:27:59,116 INFO toNotifyTaskSize = 0 + +2025-09-24 05:27:59,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:28:08,956 INFO [long-pulling] client count 0 + +2025-09-24 05:28:09,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:28:09,116 INFO toNotifyTaskSize = 0 + +2025-09-24 05:28:09,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:28:18,956 INFO [long-pulling] client count 0 + +2025-09-24 05:28:19,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:28:19,118 INFO toNotifyTaskSize = 0 + +2025-09-24 05:28:19,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:28:28,956 INFO [long-pulling] client count 0 + +2025-09-24 05:28:29,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:28:29,120 INFO toNotifyTaskSize = 0 + +2025-09-24 05:28:29,120 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:28:38,957 INFO [long-pulling] client count 0 + +2025-09-24 05:28:39,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:28:39,122 INFO toNotifyTaskSize = 0 + +2025-09-24 05:28:39,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:28:48,959 INFO [long-pulling] client count 0 + +2025-09-24 05:28:49,019 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:28:49,123 INFO toNotifyTaskSize = 0 + +2025-09-24 05:28:49,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:28:58,959 INFO [long-pulling] client count 0 + +2025-09-24 05:28:59,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:28:59,125 INFO toNotifyTaskSize = 0 + +2025-09-24 05:28:59,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:29:08,961 INFO [long-pulling] client count 0 + +2025-09-24 05:29:09,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:29:09,126 INFO toNotifyTaskSize = 0 + +2025-09-24 05:29:09,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:29:18,963 INFO [long-pulling] client count 0 + +2025-09-24 05:29:19,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:29:19,127 INFO toNotifyTaskSize = 0 + +2025-09-24 05:29:19,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:29:28,963 INFO [long-pulling] client count 0 + +2025-09-24 05:29:29,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:29:29,127 INFO toNotifyTaskSize = 0 + +2025-09-24 05:29:29,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:29:38,964 INFO [long-pulling] client count 0 + +2025-09-24 05:29:39,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:29:39,128 INFO toNotifyTaskSize = 0 + +2025-09-24 05:29:39,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:29:48,965 INFO [long-pulling] client count 0 + +2025-09-24 05:29:49,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:29:49,128 INFO toNotifyTaskSize = 0 + +2025-09-24 05:29:49,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:29:58,967 INFO [long-pulling] client count 0 + +2025-09-24 05:29:59,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:29:59,129 INFO toNotifyTaskSize = 0 + +2025-09-24 05:29:59,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:30:08,967 INFO [long-pulling] client count 0 + +2025-09-24 05:30:09,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:30:09,131 INFO toNotifyTaskSize = 0 + +2025-09-24 05:30:09,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:30:18,969 INFO [long-pulling] client count 0 + +2025-09-24 05:30:19,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:30:19,131 INFO toNotifyTaskSize = 0 + +2025-09-24 05:30:19,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:30:28,970 INFO [long-pulling] client count 0 + +2025-09-24 05:30:29,025 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:30:29,133 INFO toNotifyTaskSize = 0 + +2025-09-24 05:30:29,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:30:38,971 INFO [long-pulling] client count 0 + +2025-09-24 05:30:39,027 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:30:39,133 INFO toNotifyTaskSize = 0 + +2025-09-24 05:30:39,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:30:48,974 INFO [long-pulling] client count 0 + +2025-09-24 05:30:49,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:30:49,134 INFO toNotifyTaskSize = 0 + +2025-09-24 05:30:49,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:30:58,976 INFO [long-pulling] client count 0 + +2025-09-24 05:30:59,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:30:59,136 INFO toNotifyTaskSize = 0 + +2025-09-24 05:30:59,137 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:31:08,977 INFO [long-pulling] client count 0 + +2025-09-24 05:31:09,029 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:31:09,139 INFO toNotifyTaskSize = 0 + +2025-09-24 05:31:09,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:31:18,977 INFO [long-pulling] client count 0 + +2025-09-24 05:31:19,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:31:19,139 INFO toNotifyTaskSize = 0 + +2025-09-24 05:31:19,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:31:28,979 INFO [long-pulling] client count 0 + +2025-09-24 05:31:29,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:31:29,142 INFO toNotifyTaskSize = 0 + +2025-09-24 05:31:29,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:31:38,981 INFO [long-pulling] client count 0 + +2025-09-24 05:31:39,035 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:31:39,144 INFO toNotifyTaskSize = 0 + +2025-09-24 05:31:39,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:31:48,983 INFO [long-pulling] client count 0 + +2025-09-24 05:31:49,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:31:49,145 INFO toNotifyTaskSize = 0 + +2025-09-24 05:31:49,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:31:58,985 INFO [long-pulling] client count 0 + +2025-09-24 05:31:59,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:31:59,146 INFO toNotifyTaskSize = 0 + +2025-09-24 05:31:59,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:32:08,985 INFO [long-pulling] client count 0 + +2025-09-24 05:32:09,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:32:09,146 INFO toNotifyTaskSize = 0 + +2025-09-24 05:32:09,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:32:18,987 INFO [long-pulling] client count 0 + +2025-09-24 05:32:19,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:32:19,146 INFO toNotifyTaskSize = 0 + +2025-09-24 05:32:19,147 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:32:28,988 INFO [long-pulling] client count 0 + +2025-09-24 05:32:29,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:32:29,148 INFO toNotifyTaskSize = 0 + +2025-09-24 05:32:29,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:32:38,989 INFO [long-pulling] client count 0 + +2025-09-24 05:32:39,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:32:39,151 INFO toNotifyTaskSize = 0 + +2025-09-24 05:32:39,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:32:48,990 INFO [long-pulling] client count 0 + +2025-09-24 05:32:49,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:32:49,152 INFO toNotifyTaskSize = 0 + +2025-09-24 05:32:49,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:32:58,990 INFO [long-pulling] client count 0 + +2025-09-24 05:32:59,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:32:59,152 INFO toNotifyTaskSize = 0 + +2025-09-24 05:32:59,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:33:08,990 INFO [long-pulling] client count 0 + +2025-09-24 05:33:09,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:33:09,153 INFO toNotifyTaskSize = 0 + +2025-09-24 05:33:09,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:33:18,992 INFO [long-pulling] client count 0 + +2025-09-24 05:33:19,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:33:19,154 INFO toNotifyTaskSize = 0 + +2025-09-24 05:33:19,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:33:28,992 INFO [long-pulling] client count 0 + +2025-09-24 05:33:29,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:33:29,156 INFO toNotifyTaskSize = 0 + +2025-09-24 05:33:29,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:33:38,993 INFO [long-pulling] client count 0 + +2025-09-24 05:33:39,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:33:39,157 INFO toNotifyTaskSize = 0 + +2025-09-24 05:33:39,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:33:48,994 INFO [long-pulling] client count 0 + +2025-09-24 05:33:49,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:33:49,159 INFO toNotifyTaskSize = 0 + +2025-09-24 05:33:49,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:33:58,995 INFO [long-pulling] client count 0 + +2025-09-24 05:33:59,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:33:59,160 INFO toNotifyTaskSize = 0 + +2025-09-24 05:33:59,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:34:08,996 INFO [long-pulling] client count 0 + +2025-09-24 05:34:09,053 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:34:09,161 INFO toNotifyTaskSize = 0 + +2025-09-24 05:34:09,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:34:18,998 INFO [long-pulling] client count 0 + +2025-09-24 05:34:19,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:34:19,161 INFO toNotifyTaskSize = 0 + +2025-09-24 05:34:19,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:34:28,998 INFO [long-pulling] client count 0 + +2025-09-24 05:34:29,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:34:29,161 INFO toNotifyTaskSize = 0 + +2025-09-24 05:34:29,162 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:34:39,000 INFO [long-pulling] client count 0 + +2025-09-24 05:34:39,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:34:39,163 INFO toNotifyTaskSize = 0 + +2025-09-24 05:34:39,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:34:49,000 INFO [long-pulling] client count 0 + +2025-09-24 05:34:49,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:34:49,163 INFO toNotifyTaskSize = 0 + +2025-09-24 05:34:49,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:34:59,002 INFO [long-pulling] client count 0 + +2025-09-24 05:34:59,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:34:59,164 INFO toNotifyTaskSize = 0 + +2025-09-24 05:34:59,164 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:35:09,002 INFO [long-pulling] client count 0 + +2025-09-24 05:35:09,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:35:09,166 INFO toNotifyTaskSize = 0 + +2025-09-24 05:35:09,166 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:35:19,003 INFO [long-pulling] client count 0 + +2025-09-24 05:35:19,060 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:35:19,168 INFO toNotifyTaskSize = 0 + +2025-09-24 05:35:19,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:35:29,003 INFO [long-pulling] client count 0 + +2025-09-24 05:35:29,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:35:29,170 INFO toNotifyTaskSize = 0 + +2025-09-24 05:35:29,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:35:39,004 INFO [long-pulling] client count 0 + +2025-09-24 05:35:39,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:35:39,171 INFO toNotifyTaskSize = 0 + +2025-09-24 05:35:39,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:35:49,004 INFO [long-pulling] client count 0 + +2025-09-24 05:35:49,062 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:35:49,173 INFO toNotifyTaskSize = 0 + +2025-09-24 05:35:49,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:35:59,005 INFO [long-pulling] client count 0 + +2025-09-24 05:35:59,063 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:35:59,174 INFO toNotifyTaskSize = 0 + +2025-09-24 05:35:59,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:36:09,007 INFO [long-pulling] client count 0 + +2025-09-24 05:36:09,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:36:09,175 INFO toNotifyTaskSize = 0 + +2025-09-24 05:36:09,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:36:19,007 INFO [long-pulling] client count 0 + +2025-09-24 05:36:19,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:36:19,176 INFO toNotifyTaskSize = 0 + +2025-09-24 05:36:19,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:36:29,008 INFO [long-pulling] client count 0 + +2025-09-24 05:36:29,065 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:36:29,177 INFO toNotifyTaskSize = 0 + +2025-09-24 05:36:29,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:36:39,009 INFO [long-pulling] client count 0 + +2025-09-24 05:36:39,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:36:39,178 INFO toNotifyTaskSize = 0 + +2025-09-24 05:36:39,178 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:36:49,011 INFO [long-pulling] client count 0 + +2025-09-24 05:36:49,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:36:49,180 INFO toNotifyTaskSize = 0 + +2025-09-24 05:36:49,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:36:59,011 INFO [long-pulling] client count 0 + +2025-09-24 05:36:59,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:36:59,180 INFO toNotifyTaskSize = 0 + +2025-09-24 05:36:59,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:37:09,012 INFO [long-pulling] client count 0 + +2025-09-24 05:37:09,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:37:09,182 INFO toNotifyTaskSize = 0 + +2025-09-24 05:37:09,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:37:19,012 INFO [long-pulling] client count 0 + +2025-09-24 05:37:19,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:37:19,184 INFO toNotifyTaskSize = 0 + +2025-09-24 05:37:19,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:37:29,013 INFO [long-pulling] client count 0 + +2025-09-24 05:37:29,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:37:29,185 INFO toNotifyTaskSize = 0 + +2025-09-24 05:37:29,185 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:37:39,013 INFO [long-pulling] client count 0 + +2025-09-24 05:37:39,072 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:37:39,187 INFO toNotifyTaskSize = 0 + +2025-09-24 05:37:39,187 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:37:49,014 INFO [long-pulling] client count 0 + +2025-09-24 05:37:49,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:37:49,189 INFO toNotifyTaskSize = 0 + +2025-09-24 05:37:49,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:37:59,014 INFO [long-pulling] client count 0 + +2025-09-24 05:37:59,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:37:59,190 INFO toNotifyTaskSize = 0 + +2025-09-24 05:37:59,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:38:09,015 INFO [long-pulling] client count 0 + +2025-09-24 05:38:09,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:38:09,191 INFO toNotifyTaskSize = 0 + +2025-09-24 05:38:09,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:38:19,015 INFO [long-pulling] client count 0 + +2025-09-24 05:38:19,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:38:19,193 INFO toNotifyTaskSize = 0 + +2025-09-24 05:38:19,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:38:29,016 INFO [long-pulling] client count 0 + +2025-09-24 05:38:29,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:38:29,194 INFO toNotifyTaskSize = 0 + +2025-09-24 05:38:29,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:38:39,017 INFO [long-pulling] client count 0 + +2025-09-24 05:38:39,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:38:39,195 INFO toNotifyTaskSize = 0 + +2025-09-24 05:38:39,195 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:38:49,017 INFO [long-pulling] client count 0 + +2025-09-24 05:38:49,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:38:49,197 INFO toNotifyTaskSize = 0 + +2025-09-24 05:38:49,197 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:38:59,018 INFO [long-pulling] client count 0 + +2025-09-24 05:38:59,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:38:59,198 INFO toNotifyTaskSize = 0 + +2025-09-24 05:38:59,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:39:09,019 INFO [long-pulling] client count 0 + +2025-09-24 05:39:09,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:39:09,201 INFO toNotifyTaskSize = 0 + +2025-09-24 05:39:09,201 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:39:19,021 INFO [long-pulling] client count 0 + +2025-09-24 05:39:19,082 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:39:19,201 INFO toNotifyTaskSize = 0 + +2025-09-24 05:39:19,202 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:39:29,022 INFO [long-pulling] client count 0 + +2025-09-24 05:39:29,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:39:29,204 INFO toNotifyTaskSize = 0 + +2025-09-24 05:39:29,204 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:39:39,023 INFO [long-pulling] client count 0 + +2025-09-24 05:39:39,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:39:39,204 INFO toNotifyTaskSize = 0 + +2025-09-24 05:39:39,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:39:49,024 INFO [long-pulling] client count 0 + +2025-09-24 05:39:49,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:39:49,205 INFO toNotifyTaskSize = 0 + +2025-09-24 05:39:49,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:39:59,025 INFO [long-pulling] client count 0 + +2025-09-24 05:39:59,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:39:59,207 INFO toNotifyTaskSize = 0 + +2025-09-24 05:39:59,208 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:40:09,025 INFO [long-pulling] client count 0 + +2025-09-24 05:40:09,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:40:09,208 INFO toNotifyTaskSize = 0 + +2025-09-24 05:40:09,208 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:40:19,025 INFO [long-pulling] client count 0 + +2025-09-24 05:40:19,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:40:19,210 INFO toNotifyTaskSize = 0 + +2025-09-24 05:40:19,210 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:40:29,027 INFO [long-pulling] client count 0 + +2025-09-24 05:40:29,088 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:40:29,211 INFO toNotifyTaskSize = 0 + +2025-09-24 05:40:29,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:40:39,027 INFO [long-pulling] client count 0 + +2025-09-24 05:40:39,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:40:39,211 INFO toNotifyTaskSize = 0 + +2025-09-24 05:40:39,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:40:49,029 INFO [long-pulling] client count 0 + +2025-09-24 05:40:49,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:40:49,211 INFO toNotifyTaskSize = 0 + +2025-09-24 05:40:49,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:40:59,030 INFO [long-pulling] client count 0 + +2025-09-24 05:40:59,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:40:59,212 INFO toNotifyTaskSize = 0 + +2025-09-24 05:40:59,212 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:41:09,032 INFO [long-pulling] client count 0 + +2025-09-24 05:41:09,091 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:41:09,212 INFO toNotifyTaskSize = 0 + +2025-09-24 05:41:09,212 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:41:19,033 INFO [long-pulling] client count 0 + +2025-09-24 05:41:19,091 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:41:19,214 INFO toNotifyTaskSize = 0 + +2025-09-24 05:41:19,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:41:29,035 INFO [long-pulling] client count 0 + +2025-09-24 05:41:29,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:41:29,216 INFO toNotifyTaskSize = 0 + +2025-09-24 05:41:29,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:41:39,037 INFO [long-pulling] client count 0 + +2025-09-24 05:41:39,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:41:39,217 INFO toNotifyTaskSize = 0 + +2025-09-24 05:41:39,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:41:49,039 INFO [long-pulling] client count 0 + +2025-09-24 05:41:49,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:41:49,218 INFO toNotifyTaskSize = 0 + +2025-09-24 05:41:49,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:41:59,041 INFO [long-pulling] client count 0 + +2025-09-24 05:41:59,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:41:59,219 INFO toNotifyTaskSize = 0 + +2025-09-24 05:41:59,219 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:42:09,041 INFO [long-pulling] client count 0 + +2025-09-24 05:42:09,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:42:09,219 INFO toNotifyTaskSize = 0 + +2025-09-24 05:42:09,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:42:19,042 INFO [long-pulling] client count 0 + +2025-09-24 05:42:19,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:42:19,220 INFO toNotifyTaskSize = 0 + +2025-09-24 05:42:19,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:42:29,043 INFO [long-pulling] client count 0 + +2025-09-24 05:42:29,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:42:29,222 INFO toNotifyTaskSize = 0 + +2025-09-24 05:42:29,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:42:39,044 INFO [long-pulling] client count 0 + +2025-09-24 05:42:39,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:42:39,224 INFO toNotifyTaskSize = 0 + +2025-09-24 05:42:39,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:42:49,045 INFO [long-pulling] client count 0 + +2025-09-24 05:42:49,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:42:49,224 INFO toNotifyTaskSize = 0 + +2025-09-24 05:42:49,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:42:59,046 INFO [long-pulling] client count 0 + +2025-09-24 05:42:59,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:42:59,226 INFO toNotifyTaskSize = 0 + +2025-09-24 05:42:59,227 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:43:09,048 INFO [long-pulling] client count 0 + +2025-09-24 05:43:09,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:43:09,229 INFO toNotifyTaskSize = 0 + +2025-09-24 05:43:09,229 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:43:19,050 INFO [long-pulling] client count 0 + +2025-09-24 05:43:19,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:43:19,230 INFO toNotifyTaskSize = 0 + +2025-09-24 05:43:19,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:43:29,050 INFO [long-pulling] client count 0 + +2025-09-24 05:43:29,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:43:29,232 INFO toNotifyTaskSize = 0 + +2025-09-24 05:43:29,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:43:39,050 INFO [long-pulling] client count 0 + +2025-09-24 05:43:39,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:43:39,234 INFO toNotifyTaskSize = 0 + +2025-09-24 05:43:39,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:43:49,052 INFO [long-pulling] client count 0 + +2025-09-24 05:43:49,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:43:49,234 INFO toNotifyTaskSize = 0 + +2025-09-24 05:43:49,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:43:59,054 INFO [long-pulling] client count 0 + +2025-09-24 05:43:59,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:43:59,235 INFO toNotifyTaskSize = 0 + +2025-09-24 05:43:59,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:44:09,054 INFO [long-pulling] client count 0 + +2025-09-24 05:44:09,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:44:09,235 INFO toNotifyTaskSize = 0 + +2025-09-24 05:44:09,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:44:19,055 INFO [long-pulling] client count 0 + +2025-09-24 05:44:19,111 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:44:19,237 INFO toNotifyTaskSize = 0 + +2025-09-24 05:44:19,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:44:29,057 INFO [long-pulling] client count 0 + +2025-09-24 05:44:29,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:44:29,238 INFO toNotifyTaskSize = 0 + +2025-09-24 05:44:29,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:44:39,059 INFO [long-pulling] client count 0 + +2025-09-24 05:44:39,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:44:39,238 INFO toNotifyTaskSize = 0 + +2025-09-24 05:44:39,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:44:49,061 INFO [long-pulling] client count 0 + +2025-09-24 05:44:49,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:44:49,239 INFO toNotifyTaskSize = 0 + +2025-09-24 05:44:49,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:44:59,062 INFO [long-pulling] client count 0 + +2025-09-24 05:44:59,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:44:59,240 INFO toNotifyTaskSize = 0 + +2025-09-24 05:44:59,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:45:09,063 INFO [long-pulling] client count 0 + +2025-09-24 05:45:09,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:45:09,240 INFO toNotifyTaskSize = 0 + +2025-09-24 05:45:09,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:45:19,064 INFO [long-pulling] client count 0 + +2025-09-24 05:45:19,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:45:19,240 INFO toNotifyTaskSize = 0 + +2025-09-24 05:45:19,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:45:29,064 INFO [long-pulling] client count 0 + +2025-09-24 05:45:29,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:45:29,241 INFO toNotifyTaskSize = 0 + +2025-09-24 05:45:29,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:45:39,065 INFO [long-pulling] client count 0 + +2025-09-24 05:45:39,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:45:39,241 INFO toNotifyTaskSize = 0 + +2025-09-24 05:45:39,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:45:49,065 INFO [long-pulling] client count 0 + +2025-09-24 05:45:49,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:45:49,242 INFO toNotifyTaskSize = 0 + +2025-09-24 05:45:49,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:45:59,066 INFO [long-pulling] client count 0 + +2025-09-24 05:45:59,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:45:59,242 INFO toNotifyTaskSize = 0 + +2025-09-24 05:45:59,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:46:09,066 INFO [long-pulling] client count 0 + +2025-09-24 05:46:09,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:46:09,244 INFO toNotifyTaskSize = 0 + +2025-09-24 05:46:09,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:46:19,067 INFO [long-pulling] client count 0 + +2025-09-24 05:46:19,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:46:19,244 INFO toNotifyTaskSize = 0 + +2025-09-24 05:46:19,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:46:29,067 INFO [long-pulling] client count 0 + +2025-09-24 05:46:29,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:46:29,244 INFO toNotifyTaskSize = 0 + +2025-09-24 05:46:29,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:46:39,070 INFO [long-pulling] client count 0 + +2025-09-24 05:46:39,127 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:46:39,245 INFO toNotifyTaskSize = 0 + +2025-09-24 05:46:39,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:46:49,070 INFO [long-pulling] client count 0 + +2025-09-24 05:46:49,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:46:49,245 INFO toNotifyTaskSize = 0 + +2025-09-24 05:46:49,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:46:59,070 INFO [long-pulling] client count 0 + +2025-09-24 05:46:59,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:46:59,246 INFO toNotifyTaskSize = 0 + +2025-09-24 05:46:59,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:47:09,071 INFO [long-pulling] client count 0 + +2025-09-24 05:47:09,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:47:09,246 INFO toNotifyTaskSize = 0 + +2025-09-24 05:47:09,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:47:19,071 INFO [long-pulling] client count 0 + +2025-09-24 05:47:19,135 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:47:19,247 INFO toNotifyTaskSize = 0 + +2025-09-24 05:47:19,247 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:47:29,073 INFO [long-pulling] client count 0 + +2025-09-24 05:47:29,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:47:29,247 INFO toNotifyTaskSize = 0 + +2025-09-24 05:47:29,247 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:47:39,074 INFO [long-pulling] client count 0 + +2025-09-24 05:47:39,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:47:39,248 INFO toNotifyTaskSize = 0 + +2025-09-24 05:47:39,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:47:49,076 INFO [long-pulling] client count 0 + +2025-09-24 05:47:49,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:47:49,248 INFO toNotifyTaskSize = 0 + +2025-09-24 05:47:49,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:47:59,077 INFO [long-pulling] client count 0 + +2025-09-24 05:47:59,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:47:59,248 INFO toNotifyTaskSize = 0 + +2025-09-24 05:47:59,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:48:09,077 INFO [long-pulling] client count 0 + +2025-09-24 05:48:09,140 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:48:09,249 INFO toNotifyTaskSize = 0 + +2025-09-24 05:48:09,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:48:19,079 INFO [long-pulling] client count 0 + +2025-09-24 05:48:19,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:48:19,249 INFO toNotifyTaskSize = 0 + +2025-09-24 05:48:19,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:48:29,079 INFO [long-pulling] client count 0 + +2025-09-24 05:48:29,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:48:29,250 INFO toNotifyTaskSize = 0 + +2025-09-24 05:48:29,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:48:39,079 INFO [long-pulling] client count 0 + +2025-09-24 05:48:39,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:48:39,252 INFO toNotifyTaskSize = 0 + +2025-09-24 05:48:39,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:48:49,081 INFO [long-pulling] client count 0 + +2025-09-24 05:48:49,164 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:48:49,252 INFO toNotifyTaskSize = 0 + +2025-09-24 05:48:49,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:48:59,081 INFO [long-pulling] client count 0 + +2025-09-24 05:48:59,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:48:59,253 INFO toNotifyTaskSize = 0 + +2025-09-24 05:48:59,253 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:49:09,082 INFO [long-pulling] client count 0 + +2025-09-24 05:49:09,166 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:49:09,254 INFO toNotifyTaskSize = 0 + +2025-09-24 05:49:09,254 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:49:19,083 INFO [long-pulling] client count 0 + +2025-09-24 05:49:19,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:49:19,254 INFO toNotifyTaskSize = 0 + +2025-09-24 05:49:19,254 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:49:29,084 INFO [long-pulling] client count 0 + +2025-09-24 05:49:29,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:49:29,255 INFO toNotifyTaskSize = 0 + +2025-09-24 05:49:29,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:49:39,084 INFO [long-pulling] client count 0 + +2025-09-24 05:49:39,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:49:39,255 INFO toNotifyTaskSize = 0 + +2025-09-24 05:49:39,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:49:49,086 INFO [long-pulling] client count 0 + +2025-09-24 05:49:49,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:49:49,255 INFO toNotifyTaskSize = 0 + +2025-09-24 05:49:49,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:49:59,088 INFO [long-pulling] client count 0 + +2025-09-24 05:49:59,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:49:59,256 INFO toNotifyTaskSize = 0 + +2025-09-24 05:49:59,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:50:09,088 INFO [long-pulling] client count 0 + +2025-09-24 05:50:09,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:50:09,257 INFO toNotifyTaskSize = 0 + +2025-09-24 05:50:09,257 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:50:19,090 INFO [long-pulling] client count 0 + +2025-09-24 05:50:19,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:50:19,257 INFO toNotifyTaskSize = 0 + +2025-09-24 05:50:19,257 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:50:29,090 INFO [long-pulling] client count 0 + +2025-09-24 05:50:29,178 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:50:29,258 INFO toNotifyTaskSize = 0 + +2025-09-24 05:50:29,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:50:39,092 INFO [long-pulling] client count 0 + +2025-09-24 05:50:39,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:50:39,258 INFO toNotifyTaskSize = 0 + +2025-09-24 05:50:39,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:50:49,092 INFO [long-pulling] client count 0 + +2025-09-24 05:50:49,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:50:49,259 INFO toNotifyTaskSize = 0 + +2025-09-24 05:50:49,259 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:50:59,093 INFO [long-pulling] client count 0 + +2025-09-24 05:50:59,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:50:59,259 INFO toNotifyTaskSize = 0 + +2025-09-24 05:50:59,259 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:51:09,093 INFO [long-pulling] client count 0 + +2025-09-24 05:51:09,183 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:51:09,259 INFO toNotifyTaskSize = 0 + +2025-09-24 05:51:09,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:51:19,094 INFO [long-pulling] client count 0 + +2025-09-24 05:51:19,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:51:19,260 INFO toNotifyTaskSize = 0 + +2025-09-24 05:51:19,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:51:29,096 INFO [long-pulling] client count 0 + +2025-09-24 05:51:29,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:51:29,260 INFO toNotifyTaskSize = 0 + +2025-09-24 05:51:29,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:51:39,097 INFO [long-pulling] client count 0 + +2025-09-24 05:51:39,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:51:39,261 INFO toNotifyTaskSize = 0 + +2025-09-24 05:51:39,261 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:51:49,098 INFO [long-pulling] client count 0 + +2025-09-24 05:51:49,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:51:49,261 INFO toNotifyTaskSize = 0 + +2025-09-24 05:51:49,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:51:59,099 INFO [long-pulling] client count 0 + +2025-09-24 05:51:59,188 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:51:59,262 INFO toNotifyTaskSize = 0 + +2025-09-24 05:51:59,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:52:09,101 INFO [long-pulling] client count 0 + +2025-09-24 05:52:09,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:52:09,263 INFO toNotifyTaskSize = 0 + +2025-09-24 05:52:09,263 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:52:19,103 INFO [long-pulling] client count 0 + +2025-09-24 05:52:19,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:52:19,264 INFO toNotifyTaskSize = 0 + +2025-09-24 05:52:19,264 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:52:29,103 INFO [long-pulling] client count 0 + +2025-09-24 05:52:29,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:52:29,264 INFO toNotifyTaskSize = 0 + +2025-09-24 05:52:29,264 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:52:39,106 INFO [long-pulling] client count 0 + +2025-09-24 05:52:39,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:52:39,265 INFO toNotifyTaskSize = 0 + +2025-09-24 05:52:39,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:52:49,108 INFO [long-pulling] client count 0 + +2025-09-24 05:52:49,195 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:52:49,265 INFO toNotifyTaskSize = 0 + +2025-09-24 05:52:49,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:52:59,110 INFO [long-pulling] client count 0 + +2025-09-24 05:52:59,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:52:59,266 INFO toNotifyTaskSize = 0 + +2025-09-24 05:52:59,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:53:09,112 INFO [long-pulling] client count 0 + +2025-09-24 05:53:09,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:53:09,268 INFO toNotifyTaskSize = 0 + +2025-09-24 05:53:09,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:53:19,113 INFO [long-pulling] client count 0 + +2025-09-24 05:53:19,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:53:19,268 INFO toNotifyTaskSize = 0 + +2025-09-24 05:53:19,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:53:29,115 INFO [long-pulling] client count 0 + +2025-09-24 05:53:29,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:53:29,270 INFO toNotifyTaskSize = 0 + +2025-09-24 05:53:29,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:53:39,116 INFO [long-pulling] client count 0 + +2025-09-24 05:53:39,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:53:39,270 INFO toNotifyTaskSize = 0 + +2025-09-24 05:53:39,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:53:49,118 INFO [long-pulling] client count 0 + +2025-09-24 05:53:49,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:53:49,270 INFO toNotifyTaskSize = 0 + +2025-09-24 05:53:49,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:53:59,119 INFO [long-pulling] client count 0 + +2025-09-24 05:53:59,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:53:59,271 INFO toNotifyTaskSize = 0 + +2025-09-24 05:53:59,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:54:09,121 INFO [long-pulling] client count 0 + +2025-09-24 05:54:09,201 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:54:09,271 INFO toNotifyTaskSize = 0 + +2025-09-24 05:54:09,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:54:19,121 INFO [long-pulling] client count 0 + +2025-09-24 05:54:19,203 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:54:19,278 INFO toNotifyTaskSize = 0 + +2025-09-24 05:54:19,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:54:29,123 INFO [long-pulling] client count 0 + +2025-09-24 05:54:29,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:54:29,278 INFO toNotifyTaskSize = 0 + +2025-09-24 05:54:29,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:54:39,124 INFO [long-pulling] client count 0 + +2025-09-24 05:54:39,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:54:39,279 INFO toNotifyTaskSize = 0 + +2025-09-24 05:54:39,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:54:49,125 INFO [long-pulling] client count 0 + +2025-09-24 05:54:49,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:54:49,279 INFO toNotifyTaskSize = 0 + +2025-09-24 05:54:49,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:54:59,126 INFO [long-pulling] client count 0 + +2025-09-24 05:54:59,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:54:59,279 INFO toNotifyTaskSize = 0 + +2025-09-24 05:54:59,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:55:09,127 INFO [long-pulling] client count 0 + +2025-09-24 05:55:09,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:55:09,280 INFO toNotifyTaskSize = 0 + +2025-09-24 05:55:09,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:55:19,127 INFO [long-pulling] client count 0 + +2025-09-24 05:55:19,209 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:55:19,280 INFO toNotifyTaskSize = 0 + +2025-09-24 05:55:19,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:55:29,129 INFO [long-pulling] client count 0 + +2025-09-24 05:55:29,210 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:55:29,281 INFO toNotifyTaskSize = 0 + +2025-09-24 05:55:29,299 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:55:39,130 INFO [long-pulling] client count 0 + +2025-09-24 05:55:39,211 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:55:39,301 INFO toNotifyTaskSize = 0 + +2025-09-24 05:55:39,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:55:49,130 INFO [long-pulling] client count 0 + +2025-09-24 05:55:49,213 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:55:49,301 INFO toNotifyTaskSize = 0 + +2025-09-24 05:55:49,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:55:59,131 INFO [long-pulling] client count 0 + +2025-09-24 05:55:59,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:55:59,304 INFO toNotifyTaskSize = 0 + +2025-09-24 05:55:59,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:56:09,133 INFO [long-pulling] client count 0 + +2025-09-24 05:56:09,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:56:09,305 INFO toNotifyTaskSize = 0 + +2025-09-24 05:56:09,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:56:19,134 INFO [long-pulling] client count 0 + +2025-09-24 05:56:19,220 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:56:19,307 INFO toNotifyTaskSize = 0 + +2025-09-24 05:56:19,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:56:29,134 INFO [long-pulling] client count 0 + +2025-09-24 05:56:29,220 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:56:29,307 INFO toNotifyTaskSize = 0 + +2025-09-24 05:56:29,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:56:39,136 INFO [long-pulling] client count 0 + +2025-09-24 05:56:39,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:56:39,308 INFO toNotifyTaskSize = 0 + +2025-09-24 05:56:39,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:56:49,138 INFO [long-pulling] client count 0 + +2025-09-24 05:56:49,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:56:49,308 INFO toNotifyTaskSize = 0 + +2025-09-24 05:56:49,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:56:59,139 INFO [long-pulling] client count 0 + +2025-09-24 05:56:59,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:56:59,308 INFO toNotifyTaskSize = 0 + +2025-09-24 05:56:59,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:57:09,141 INFO [long-pulling] client count 0 + +2025-09-24 05:57:09,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:57:09,309 INFO toNotifyTaskSize = 0 + +2025-09-24 05:57:09,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:57:19,142 INFO [long-pulling] client count 0 + +2025-09-24 05:57:19,224 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:57:19,312 INFO toNotifyTaskSize = 0 + +2025-09-24 05:57:19,312 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:57:29,142 INFO [long-pulling] client count 0 + +2025-09-24 05:57:29,224 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:57:29,314 INFO toNotifyTaskSize = 0 + +2025-09-24 05:57:29,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:57:39,144 INFO [long-pulling] client count 0 + +2025-09-24 05:57:39,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:57:39,315 INFO toNotifyTaskSize = 0 + +2025-09-24 05:57:39,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:57:49,146 INFO [long-pulling] client count 0 + +2025-09-24 05:57:49,227 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:57:49,316 INFO toNotifyTaskSize = 0 + +2025-09-24 05:57:49,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:57:59,146 INFO [long-pulling] client count 0 + +2025-09-24 05:57:59,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:57:59,316 INFO toNotifyTaskSize = 0 + +2025-09-24 05:57:59,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:58:09,148 INFO [long-pulling] client count 0 + +2025-09-24 05:58:09,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:58:09,317 INFO toNotifyTaskSize = 0 + +2025-09-24 05:58:09,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:58:19,149 INFO [long-pulling] client count 0 + +2025-09-24 05:58:19,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:58:19,317 INFO toNotifyTaskSize = 0 + +2025-09-24 05:58:19,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:58:29,149 INFO [long-pulling] client count 0 + +2025-09-24 05:58:29,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:58:29,317 INFO toNotifyTaskSize = 0 + +2025-09-24 05:58:29,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:58:39,150 INFO [long-pulling] client count 0 + +2025-09-24 05:58:39,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:58:39,318 INFO toNotifyTaskSize = 0 + +2025-09-24 05:58:39,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:58:49,150 INFO [long-pulling] client count 0 + +2025-09-24 05:58:49,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:58:49,320 INFO toNotifyTaskSize = 0 + +2025-09-24 05:58:49,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:58:59,152 INFO [long-pulling] client count 0 + +2025-09-24 05:58:59,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:58:59,322 INFO toNotifyTaskSize = 0 + +2025-09-24 05:58:59,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:59:09,153 INFO [long-pulling] client count 0 + +2025-09-24 05:59:09,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:59:09,323 INFO toNotifyTaskSize = 0 + +2025-09-24 05:59:09,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:59:19,154 INFO [long-pulling] client count 0 + +2025-09-24 05:59:19,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:59:19,323 INFO toNotifyTaskSize = 0 + +2025-09-24 05:59:19,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:59:29,157 INFO [long-pulling] client count 0 + +2025-09-24 05:59:29,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:59:29,324 INFO toNotifyTaskSize = 0 + +2025-09-24 05:59:29,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:59:39,160 INFO [long-pulling] client count 0 + +2025-09-24 05:59:39,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:59:39,325 INFO toNotifyTaskSize = 0 + +2025-09-24 05:59:39,325 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:59:49,160 INFO [long-pulling] client count 0 + +2025-09-24 05:59:49,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:59:49,327 INFO toNotifyTaskSize = 0 + +2025-09-24 05:59:49,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 05:59:59,162 INFO [long-pulling] client count 0 + +2025-09-24 05:59:59,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 05:59:59,329 INFO toNotifyTaskSize = 0 + +2025-09-24 05:59:59,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:00:09,164 INFO [long-pulling] client count 0 + +2025-09-24 06:00:09,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:00:09,329 INFO toNotifyTaskSize = 0 + +2025-09-24 06:00:09,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:00:19,165 INFO [long-pulling] client count 0 + +2025-09-24 06:00:19,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:00:19,330 INFO toNotifyTaskSize = 0 + +2025-09-24 06:00:19,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:00:29,165 INFO [long-pulling] client count 0 + +2025-09-24 06:00:29,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:00:29,331 INFO toNotifyTaskSize = 0 + +2025-09-24 06:00:29,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:00:39,166 INFO [long-pulling] client count 0 + +2025-09-24 06:00:39,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:00:39,332 INFO toNotifyTaskSize = 0 + +2025-09-24 06:00:39,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:00:49,168 INFO [long-pulling] client count 0 + +2025-09-24 06:00:49,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:00:49,333 INFO toNotifyTaskSize = 0 + +2025-09-24 06:00:49,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:00:59,169 INFO [long-pulling] client count 0 + +2025-09-24 06:00:59,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:00:59,335 INFO toNotifyTaskSize = 0 + +2025-09-24 06:00:59,336 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:01:09,169 INFO [long-pulling] client count 0 + +2025-09-24 06:01:09,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:01:09,336 INFO toNotifyTaskSize = 0 + +2025-09-24 06:01:09,336 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:01:19,170 INFO [long-pulling] client count 0 + +2025-09-24 06:01:19,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:01:19,337 INFO toNotifyTaskSize = 0 + +2025-09-24 06:01:19,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:01:29,171 INFO [long-pulling] client count 0 + +2025-09-24 06:01:29,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:01:29,337 INFO toNotifyTaskSize = 0 + +2025-09-24 06:01:29,338 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:01:39,172 INFO [long-pulling] client count 0 + +2025-09-24 06:01:39,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:01:39,340 INFO toNotifyTaskSize = 0 + +2025-09-24 06:01:39,340 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:01:49,172 INFO [long-pulling] client count 0 + +2025-09-24 06:01:49,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:01:49,341 INFO toNotifyTaskSize = 0 + +2025-09-24 06:01:49,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:01:59,174 INFO [long-pulling] client count 0 + +2025-09-24 06:01:59,253 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:01:59,343 INFO toNotifyTaskSize = 0 + +2025-09-24 06:01:59,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:02:09,175 INFO [long-pulling] client count 0 + +2025-09-24 06:02:09,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:02:09,345 INFO toNotifyTaskSize = 0 + +2025-09-24 06:02:09,345 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:02:19,175 INFO [long-pulling] client count 0 + +2025-09-24 06:02:19,257 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:02:19,346 INFO toNotifyTaskSize = 0 + +2025-09-24 06:02:19,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:02:29,177 INFO [long-pulling] client count 0 + +2025-09-24 06:02:29,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:02:29,347 INFO toNotifyTaskSize = 0 + +2025-09-24 06:02:29,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:02:39,178 INFO [long-pulling] client count 0 + +2025-09-24 06:02:39,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:02:39,347 INFO toNotifyTaskSize = 0 + +2025-09-24 06:02:39,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:02:49,178 INFO [long-pulling] client count 0 + +2025-09-24 06:02:49,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:02:49,349 INFO toNotifyTaskSize = 0 + +2025-09-24 06:02:49,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:02:59,179 INFO [long-pulling] client count 0 + +2025-09-24 06:02:59,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:02:59,351 INFO toNotifyTaskSize = 0 + +2025-09-24 06:02:59,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:03:09,180 INFO [long-pulling] client count 0 + +2025-09-24 06:03:09,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:03:09,351 INFO toNotifyTaskSize = 0 + +2025-09-24 06:03:09,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:03:19,182 INFO [long-pulling] client count 0 + +2025-09-24 06:03:19,262 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:03:19,352 INFO toNotifyTaskSize = 0 + +2025-09-24 06:03:19,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:03:29,184 INFO [long-pulling] client count 0 + +2025-09-24 06:03:29,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:03:29,354 INFO toNotifyTaskSize = 0 + +2025-09-24 06:03:29,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:03:39,185 INFO [long-pulling] client count 0 + +2025-09-24 06:03:39,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:03:39,354 INFO toNotifyTaskSize = 0 + +2025-09-24 06:03:39,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:03:49,185 INFO [long-pulling] client count 0 + +2025-09-24 06:03:49,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:03:49,355 INFO toNotifyTaskSize = 0 + +2025-09-24 06:03:49,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:03:59,187 INFO [long-pulling] client count 0 + +2025-09-24 06:03:59,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:03:59,356 INFO toNotifyTaskSize = 0 + +2025-09-24 06:03:59,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:04:09,189 INFO [long-pulling] client count 0 + +2025-09-24 06:04:09,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:04:09,357 INFO toNotifyTaskSize = 0 + +2025-09-24 06:04:09,357 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:04:19,190 INFO [long-pulling] client count 0 + +2025-09-24 06:04:19,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:04:19,359 INFO toNotifyTaskSize = 0 + +2025-09-24 06:04:19,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:04:29,192 INFO [long-pulling] client count 0 + +2025-09-24 06:04:29,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:04:29,361 INFO toNotifyTaskSize = 0 + +2025-09-24 06:04:29,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:04:39,193 INFO [long-pulling] client count 0 + +2025-09-24 06:04:39,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:04:39,363 INFO toNotifyTaskSize = 0 + +2025-09-24 06:04:39,363 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:04:49,194 INFO [long-pulling] client count 0 + +2025-09-24 06:04:49,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:04:49,364 INFO toNotifyTaskSize = 0 + +2025-09-24 06:04:49,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:04:59,196 INFO [long-pulling] client count 0 + +2025-09-24 06:04:59,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:04:59,366 INFO toNotifyTaskSize = 0 + +2025-09-24 06:04:59,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:05:09,197 INFO [long-pulling] client count 0 + +2025-09-24 06:05:09,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:05:09,367 INFO toNotifyTaskSize = 0 + +2025-09-24 06:05:09,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:05:19,197 INFO [long-pulling] client count 0 + +2025-09-24 06:05:19,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:05:19,369 INFO toNotifyTaskSize = 0 + +2025-09-24 06:05:19,369 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:05:29,198 INFO [long-pulling] client count 0 + +2025-09-24 06:05:29,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:05:29,369 INFO toNotifyTaskSize = 0 + +2025-09-24 06:05:29,369 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:05:39,201 INFO [long-pulling] client count 0 + +2025-09-24 06:05:39,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:05:39,372 INFO toNotifyTaskSize = 0 + +2025-09-24 06:05:39,372 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:05:49,202 INFO [long-pulling] client count 0 + +2025-09-24 06:05:49,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:05:49,374 INFO toNotifyTaskSize = 0 + +2025-09-24 06:05:49,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:05:59,203 INFO [long-pulling] client count 0 + +2025-09-24 06:05:59,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:05:59,374 INFO toNotifyTaskSize = 0 + +2025-09-24 06:05:59,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:06:09,204 INFO [long-pulling] client count 0 + +2025-09-24 06:06:09,271 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:06:09,376 INFO toNotifyTaskSize = 0 + +2025-09-24 06:06:09,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:06:19,204 INFO [long-pulling] client count 0 + +2025-09-24 06:06:19,279 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:06:19,376 INFO toNotifyTaskSize = 0 + +2025-09-24 06:06:19,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:06:29,227 INFO [long-pulling] client count 0 + +2025-09-24 06:06:29,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:06:29,377 INFO toNotifyTaskSize = 0 + +2025-09-24 06:06:29,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:06:39,227 INFO [long-pulling] client count 0 + +2025-09-24 06:06:39,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:06:39,377 INFO toNotifyTaskSize = 0 + +2025-09-24 06:06:39,378 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:06:49,230 INFO [long-pulling] client count 0 + +2025-09-24 06:06:49,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:06:49,379 INFO toNotifyTaskSize = 0 + +2025-09-24 06:06:49,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:06:59,232 INFO [long-pulling] client count 0 + +2025-09-24 06:06:59,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:06:59,379 INFO toNotifyTaskSize = 0 + +2025-09-24 06:06:59,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:07:09,234 INFO [long-pulling] client count 0 + +2025-09-24 06:07:09,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:07:09,380 INFO toNotifyTaskSize = 0 + +2025-09-24 06:07:09,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:07:19,236 INFO [long-pulling] client count 0 + +2025-09-24 06:07:19,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:07:19,380 INFO toNotifyTaskSize = 0 + +2025-09-24 06:07:19,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:07:29,237 INFO [long-pulling] client count 0 + +2025-09-24 06:07:29,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:07:29,381 INFO toNotifyTaskSize = 0 + +2025-09-24 06:07:29,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:07:39,238 INFO [long-pulling] client count 0 + +2025-09-24 06:07:39,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:07:39,383 INFO toNotifyTaskSize = 0 + +2025-09-24 06:07:39,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:07:49,239 INFO [long-pulling] client count 0 + +2025-09-24 06:07:49,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:07:49,385 INFO toNotifyTaskSize = 0 + +2025-09-24 06:07:49,385 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:07:59,240 INFO [long-pulling] client count 0 + +2025-09-24 06:07:59,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:07:59,386 INFO toNotifyTaskSize = 0 + +2025-09-24 06:07:59,386 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:08:09,241 INFO [long-pulling] client count 0 + +2025-09-24 06:08:09,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:08:09,388 INFO toNotifyTaskSize = 0 + +2025-09-24 06:08:09,388 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:08:19,242 INFO [long-pulling] client count 0 + +2025-09-24 06:08:19,301 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:08:19,389 INFO toNotifyTaskSize = 0 + +2025-09-24 06:08:19,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:08:29,242 INFO [long-pulling] client count 0 + +2025-09-24 06:08:29,301 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:08:29,391 INFO toNotifyTaskSize = 0 + +2025-09-24 06:08:29,391 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:08:39,244 INFO [long-pulling] client count 0 + +2025-09-24 06:08:39,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:08:39,393 INFO toNotifyTaskSize = 0 + +2025-09-24 06:08:39,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:08:49,245 INFO [long-pulling] client count 0 + +2025-09-24 06:08:49,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:08:49,396 INFO toNotifyTaskSize = 0 + +2025-09-24 06:08:49,396 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:08:59,246 INFO [long-pulling] client count 0 + +2025-09-24 06:08:59,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:08:59,396 INFO toNotifyTaskSize = 0 + +2025-09-24 06:08:59,396 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:09:09,247 INFO [long-pulling] client count 0 + +2025-09-24 06:09:09,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:09:09,396 INFO toNotifyTaskSize = 0 + +2025-09-24 06:09:09,396 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:09:19,248 INFO [long-pulling] client count 0 + +2025-09-24 06:09:19,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:09:19,397 INFO toNotifyTaskSize = 0 + +2025-09-24 06:09:19,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:09:29,248 INFO [long-pulling] client count 0 + +2025-09-24 06:09:29,304 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:09:29,397 INFO toNotifyTaskSize = 0 + +2025-09-24 06:09:29,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:09:39,249 INFO [long-pulling] client count 0 + +2025-09-24 06:09:39,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:09:39,399 INFO toNotifyTaskSize = 0 + +2025-09-24 06:09:39,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:09:49,250 INFO [long-pulling] client count 0 + +2025-09-24 06:09:49,306 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:09:49,399 INFO toNotifyTaskSize = 0 + +2025-09-24 06:09:49,400 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:09:59,251 INFO [long-pulling] client count 0 + +2025-09-24 06:09:59,306 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:09:59,401 INFO toNotifyTaskSize = 0 + +2025-09-24 06:09:59,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:10:09,254 INFO [long-pulling] client count 0 + +2025-09-24 06:10:09,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:10:09,403 INFO toNotifyTaskSize = 0 + +2025-09-24 06:10:09,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:10:19,254 INFO [long-pulling] client count 0 + +2025-09-24 06:10:19,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:10:19,405 INFO toNotifyTaskSize = 0 + +2025-09-24 06:10:19,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:10:29,255 INFO [long-pulling] client count 0 + +2025-09-24 06:10:29,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:10:29,407 INFO toNotifyTaskSize = 0 + +2025-09-24 06:10:29,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:10:39,256 INFO [long-pulling] client count 0 + +2025-09-24 06:10:39,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:10:39,408 INFO toNotifyTaskSize = 0 + +2025-09-24 06:10:39,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:10:49,257 INFO [long-pulling] client count 0 + +2025-09-24 06:10:49,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:10:49,411 INFO toNotifyTaskSize = 0 + +2025-09-24 06:10:49,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:10:59,259 INFO [long-pulling] client count 0 + +2025-09-24 06:10:59,311 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:10:59,413 INFO toNotifyTaskSize = 0 + +2025-09-24 06:10:59,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:11:09,259 INFO [long-pulling] client count 0 + +2025-09-24 06:11:09,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:11:09,415 INFO toNotifyTaskSize = 0 + +2025-09-24 06:11:09,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:11:19,260 INFO [long-pulling] client count 0 + +2025-09-24 06:11:19,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:11:19,417 INFO toNotifyTaskSize = 0 + +2025-09-24 06:11:19,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:11:29,716 INFO [long-pulling] client count 0 + +2025-09-24 06:11:29,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:11:29,716 INFO toNotifyTaskSize = 0 + +2025-09-24 06:11:29,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:11:39,716 INFO [long-pulling] client count 0 + +2025-09-24 06:11:39,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:11:39,717 INFO toNotifyTaskSize = 0 + +2025-09-24 06:11:39,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:11:49,717 INFO [long-pulling] client count 0 + +2025-09-24 06:11:49,718 INFO toNotifyTaskSize = 0 + +2025-09-24 06:11:49,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:11:49,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:11:59,719 INFO [long-pulling] client count 0 + +2025-09-24 06:11:59,719 INFO toNotifyTaskSize = 0 + +2025-09-24 06:11:59,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:11:59,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:12:09,720 INFO [long-pulling] client count 0 + +2025-09-24 06:12:09,720 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:12:09,720 INFO toNotifyTaskSize = 0 + +2025-09-24 06:12:09,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:12:19,720 INFO [long-pulling] client count 0 + +2025-09-24 06:12:19,721 INFO toNotifyTaskSize = 0 + +2025-09-24 06:12:19,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:12:19,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:12:29,721 INFO [long-pulling] client count 0 + +2025-09-24 06:12:29,721 INFO toNotifyTaskSize = 0 + +2025-09-24 06:12:29,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:12:29,722 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:12:39,724 INFO [long-pulling] client count 0 + +2025-09-24 06:12:39,724 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:12:39,724 INFO toNotifyTaskSize = 0 + +2025-09-24 06:12:39,724 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:12:49,726 INFO [long-pulling] client count 0 + +2025-09-24 06:12:49,726 INFO toNotifyTaskSize = 0 + +2025-09-24 06:12:49,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:12:49,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:12:59,727 INFO [long-pulling] client count 0 + +2025-09-24 06:12:59,727 INFO toNotifyTaskSize = 0 + +2025-09-24 06:12:59,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:12:59,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:13:09,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:13:09,728 INFO toNotifyTaskSize = 0 + +2025-09-24 06:13:09,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:13:09,728 INFO [long-pulling] client count 0 + +2025-09-24 06:13:19,729 INFO toNotifyTaskSize = 0 + +2025-09-24 06:13:19,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:13:19,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:13:19,729 INFO [long-pulling] client count 0 + +2025-09-24 06:13:29,729 INFO toNotifyTaskSize = 0 + +2025-09-24 06:13:29,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:13:29,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:13:29,729 INFO [long-pulling] client count 0 + +2025-09-24 06:13:39,730 INFO toNotifyTaskSize = 0 + +2025-09-24 06:13:39,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:13:39,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:13:39,730 INFO [long-pulling] client count 0 + +2025-09-24 06:13:49,730 INFO toNotifyTaskSize = 0 + +2025-09-24 06:13:49,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:13:49,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:13:49,730 INFO [long-pulling] client count 0 + +2025-09-24 06:13:59,731 INFO [long-pulling] client count 0 + +2025-09-24 06:13:59,731 INFO toNotifyTaskSize = 0 + +2025-09-24 06:13:59,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:13:59,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:14:09,731 INFO toNotifyTaskSize = 0 + +2025-09-24 06:14:09,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:14:09,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:14:09,731 INFO [long-pulling] client count 0 + +2025-09-24 06:14:19,733 INFO [long-pulling] client count 0 + +2025-09-24 06:14:19,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:14:19,733 INFO toNotifyTaskSize = 0 + +2025-09-24 06:14:19,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:14:29,733 INFO [long-pulling] client count 0 + +2025-09-24 06:14:29,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:14:29,734 INFO toNotifyTaskSize = 0 + +2025-09-24 06:14:29,734 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:14:39,735 INFO [long-pulling] client count 0 + +2025-09-24 06:14:39,735 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:14:39,735 INFO toNotifyTaskSize = 0 + +2025-09-24 06:14:39,735 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:14:49,735 INFO [long-pulling] client count 0 + +2025-09-24 06:14:49,736 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:14:49,736 INFO toNotifyTaskSize = 0 + +2025-09-24 06:14:49,736 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:14:59,739 INFO [long-pulling] client count 0 + +2025-09-24 06:14:59,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:14:59,739 INFO toNotifyTaskSize = 0 + +2025-09-24 06:14:59,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:15:09,739 INFO [long-pulling] client count 0 + +2025-09-24 06:15:09,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:15:09,740 INFO toNotifyTaskSize = 0 + +2025-09-24 06:15:09,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:15:19,740 INFO [long-pulling] client count 0 + +2025-09-24 06:15:19,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:15:19,740 INFO toNotifyTaskSize = 0 + +2025-09-24 06:15:19,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:15:29,741 INFO [long-pulling] client count 0 + +2025-09-24 06:15:29,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:15:29,741 INFO toNotifyTaskSize = 0 + +2025-09-24 06:15:29,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:15:39,743 INFO [long-pulling] client count 0 + +2025-09-24 06:15:39,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:15:39,743 INFO toNotifyTaskSize = 0 + +2025-09-24 06:15:39,743 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:15:49,743 INFO [long-pulling] client count 0 + +2025-09-24 06:15:49,743 INFO toNotifyTaskSize = 0 + +2025-09-24 06:15:49,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:15:49,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:15:59,744 INFO [long-pulling] client count 0 + +2025-09-24 06:15:59,744 INFO toNotifyTaskSize = 0 + +2025-09-24 06:15:59,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:15:59,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:16:09,745 INFO toNotifyTaskSize = 0 + +2025-09-24 06:16:09,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:16:09,745 INFO [long-pulling] client count 0 + +2025-09-24 06:16:09,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:16:19,745 INFO toNotifyTaskSize = 0 + +2025-09-24 06:16:19,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:16:19,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:16:19,745 INFO [long-pulling] client count 0 + +2025-09-24 06:16:29,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:16:29,746 INFO toNotifyTaskSize = 0 + +2025-09-24 06:16:29,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:16:29,746 INFO [long-pulling] client count 0 + +2025-09-24 06:16:39,747 INFO [long-pulling] client count 0 + +2025-09-24 06:16:39,747 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:16:39,747 INFO toNotifyTaskSize = 0 + +2025-09-24 06:16:39,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:16:49,749 INFO [long-pulling] client count 0 + +2025-09-24 06:16:49,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:16:49,749 INFO toNotifyTaskSize = 0 + +2025-09-24 06:16:49,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:16:59,750 INFO [long-pulling] client count 0 + +2025-09-24 06:16:59,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:16:59,750 INFO toNotifyTaskSize = 0 + +2025-09-24 06:16:59,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:17:09,752 INFO [long-pulling] client count 0 + +2025-09-24 06:17:09,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:17:09,752 INFO toNotifyTaskSize = 0 + +2025-09-24 06:17:09,752 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:17:19,752 INFO [long-pulling] client count 0 + +2025-09-24 06:17:19,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:17:19,752 INFO toNotifyTaskSize = 0 + +2025-09-24 06:17:19,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:17:29,762 INFO [long-pulling] client count 0 + +2025-09-24 06:17:29,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:17:29,762 INFO toNotifyTaskSize = 0 + +2025-09-24 06:17:29,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:17:39,763 INFO [long-pulling] client count 0 + +2025-09-24 06:17:39,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:17:39,763 INFO toNotifyTaskSize = 0 + +2025-09-24 06:17:39,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:17:49,763 INFO [long-pulling] client count 0 + +2025-09-24 06:17:49,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:17:49,763 INFO toNotifyTaskSize = 0 + +2025-09-24 06:17:49,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:17:59,764 INFO [long-pulling] client count 0 + +2025-09-24 06:17:59,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:17:59,764 INFO toNotifyTaskSize = 0 + +2025-09-24 06:17:59,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:18:09,765 INFO [long-pulling] client count 0 + +2025-09-24 06:18:09,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:18:09,765 INFO toNotifyTaskSize = 0 + +2025-09-24 06:18:09,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:18:19,766 INFO [long-pulling] client count 0 + +2025-09-24 06:18:19,766 INFO toNotifyTaskSize = 0 + +2025-09-24 06:18:19,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:18:19,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:18:29,767 INFO [long-pulling] client count 0 + +2025-09-24 06:18:29,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:18:29,767 INFO toNotifyTaskSize = 0 + +2025-09-24 06:18:29,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:18:39,770 INFO [long-pulling] client count 0 + +2025-09-24 06:18:39,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:18:39,770 INFO toNotifyTaskSize = 0 + +2025-09-24 06:18:39,770 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:18:49,770 INFO [long-pulling] client count 0 + +2025-09-24 06:18:49,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:18:49,771 INFO toNotifyTaskSize = 0 + +2025-09-24 06:18:49,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:18:59,771 INFO [long-pulling] client count 0 + +2025-09-24 06:18:59,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:18:59,771 INFO toNotifyTaskSize = 0 + +2025-09-24 06:18:59,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:19:09,771 INFO [long-pulling] client count 0 + +2025-09-24 06:19:09,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:19:09,772 INFO toNotifyTaskSize = 0 + +2025-09-24 06:19:09,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:19:19,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:19:19,772 INFO [long-pulling] client count 0 + +2025-09-24 06:19:19,772 INFO toNotifyTaskSize = 0 + +2025-09-24 06:19:19,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:19:29,775 INFO [long-pulling] client count 0 + +2025-09-24 06:19:29,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:19:29,775 INFO toNotifyTaskSize = 0 + +2025-09-24 06:19:29,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:19:39,776 INFO toNotifyTaskSize = 0 + +2025-09-24 06:19:39,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:19:39,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:19:39,776 INFO [long-pulling] client count 0 + +2025-09-24 06:19:49,778 INFO toNotifyTaskSize = 0 + +2025-09-24 06:19:49,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:19:49,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:19:49,778 INFO [long-pulling] client count 0 + +2025-09-24 06:19:59,779 INFO toNotifyTaskSize = 0 + +2025-09-24 06:19:59,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:19:59,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:19:59,779 INFO [long-pulling] client count 0 + +2025-09-24 06:20:09,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:20:09,779 INFO toNotifyTaskSize = 0 + +2025-09-24 06:20:09,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:20:09,780 INFO [long-pulling] client count 0 + +2025-09-24 06:20:19,780 INFO [long-pulling] client count 0 + +2025-09-24 06:20:19,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:20:19,780 INFO toNotifyTaskSize = 0 + +2025-09-24 06:20:19,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:20:29,780 INFO [long-pulling] client count 0 + +2025-09-24 06:20:29,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:20:29,780 INFO toNotifyTaskSize = 0 + +2025-09-24 06:20:29,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:20:39,781 INFO [long-pulling] client count 0 + +2025-09-24 06:20:39,781 INFO toNotifyTaskSize = 0 + +2025-09-24 06:20:39,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:20:39,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:20:49,781 INFO [long-pulling] client count 0 + +2025-09-24 06:20:49,782 INFO toNotifyTaskSize = 0 + +2025-09-24 06:20:49,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:20:49,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:20:59,781 INFO [long-pulling] client count 0 + +2025-09-24 06:20:59,784 INFO toNotifyTaskSize = 0 + +2025-09-24 06:20:59,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:20:59,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:21:09,784 INFO [long-pulling] client count 0 + +2025-09-24 06:21:09,785 INFO toNotifyTaskSize = 0 + +2025-09-24 06:21:09,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:21:09,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:21:19,785 INFO [long-pulling] client count 0 + +2025-09-24 06:21:19,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:21:19,786 INFO toNotifyTaskSize = 0 + +2025-09-24 06:21:19,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:21:29,786 INFO [long-pulling] client count 0 + +2025-09-24 06:21:29,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:21:29,786 INFO toNotifyTaskSize = 0 + +2025-09-24 06:21:29,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:21:39,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:21:39,787 INFO toNotifyTaskSize = 0 + +2025-09-24 06:21:39,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:21:39,787 INFO [long-pulling] client count 0 + +2025-09-24 06:21:49,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:21:49,788 INFO toNotifyTaskSize = 0 + +2025-09-24 06:21:49,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:21:49,788 INFO [long-pulling] client count 0 + +2025-09-24 06:21:59,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:21:59,810 INFO [long-pulling] client count 0 + +2025-09-24 06:21:59,810 INFO toNotifyTaskSize = 0 + +2025-09-24 06:21:59,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:22:09,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:22:09,812 INFO [long-pulling] client count 0 + +2025-09-24 06:22:09,812 INFO toNotifyTaskSize = 0 + +2025-09-24 06:22:09,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:22:19,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:22:19,812 INFO [long-pulling] client count 0 + +2025-09-24 06:22:19,813 INFO toNotifyTaskSize = 0 + +2025-09-24 06:22:19,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:22:29,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:22:29,813 INFO [long-pulling] client count 0 + +2025-09-24 06:22:29,814 INFO toNotifyTaskSize = 0 + +2025-09-24 06:22:29,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:22:39,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:22:39,813 INFO [long-pulling] client count 0 + +2025-09-24 06:22:39,814 INFO toNotifyTaskSize = 0 + +2025-09-24 06:22:39,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:22:49,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:22:49,814 INFO [long-pulling] client count 0 + +2025-09-24 06:22:49,815 INFO toNotifyTaskSize = 0 + +2025-09-24 06:22:49,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:22:59,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:22:59,816 INFO [long-pulling] client count 0 + +2025-09-24 06:22:59,816 INFO toNotifyTaskSize = 0 + +2025-09-24 06:22:59,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:23:09,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:23:09,818 INFO [long-pulling] client count 0 + +2025-09-24 06:23:09,818 INFO toNotifyTaskSize = 0 + +2025-09-24 06:23:09,818 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:23:19,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:23:19,819 INFO toNotifyTaskSize = 0 + +2025-09-24 06:23:19,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:23:19,819 INFO [long-pulling] client count 0 + +2025-09-24 06:23:29,798 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:23:29,821 INFO toNotifyTaskSize = 0 + +2025-09-24 06:23:29,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:23:29,821 INFO [long-pulling] client count 0 + +2025-09-24 06:23:39,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:23:39,822 INFO [long-pulling] client count 0 + +2025-09-24 06:23:39,822 INFO toNotifyTaskSize = 0 + +2025-09-24 06:23:39,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:23:49,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:23:49,822 INFO [long-pulling] client count 0 + +2025-09-24 06:23:49,823 INFO toNotifyTaskSize = 0 + +2025-09-24 06:23:49,823 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:23:59,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:23:59,825 INFO toNotifyTaskSize = 0 + +2025-09-24 06:23:59,825 INFO [long-pulling] client count 0 + +2025-09-24 06:23:59,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:24:09,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:24:09,827 INFO [long-pulling] client count 0 + +2025-09-24 06:24:09,827 INFO toNotifyTaskSize = 0 + +2025-09-24 06:24:09,827 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:24:19,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:24:19,829 INFO [long-pulling] client count 0 + +2025-09-24 06:24:19,829 INFO toNotifyTaskSize = 0 + +2025-09-24 06:24:19,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:24:29,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:24:29,829 INFO [long-pulling] client count 0 + +2025-09-24 06:24:29,830 INFO toNotifyTaskSize = 0 + +2025-09-24 06:24:29,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:24:39,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:24:39,830 INFO [long-pulling] client count 0 + +2025-09-24 06:24:39,831 INFO toNotifyTaskSize = 0 + +2025-09-24 06:24:39,831 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:24:49,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:24:49,830 INFO [long-pulling] client count 0 + +2025-09-24 06:24:49,831 INFO toNotifyTaskSize = 0 + +2025-09-24 06:24:49,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:24:59,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:24:59,831 INFO [long-pulling] client count 0 + +2025-09-24 06:24:59,832 INFO toNotifyTaskSize = 0 + +2025-09-24 06:24:59,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:25:09,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:25:09,831 INFO [long-pulling] client count 0 + +2025-09-24 06:25:09,834 INFO toNotifyTaskSize = 0 + +2025-09-24 06:25:09,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:25:19,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:25:19,832 INFO [long-pulling] client count 0 + +2025-09-24 06:25:19,835 INFO toNotifyTaskSize = 0 + +2025-09-24 06:25:19,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:25:29,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:25:29,832 INFO [long-pulling] client count 0 + +2025-09-24 06:25:29,836 INFO toNotifyTaskSize = 0 + +2025-09-24 06:25:29,836 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:25:39,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:25:39,833 INFO [long-pulling] client count 0 + +2025-09-24 06:25:39,836 INFO toNotifyTaskSize = 0 + +2025-09-24 06:25:39,837 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:25:49,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:25:49,833 INFO [long-pulling] client count 0 + +2025-09-24 06:25:49,837 INFO toNotifyTaskSize = 0 + +2025-09-24 06:25:49,837 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:25:59,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:25:59,834 INFO [long-pulling] client count 0 + +2025-09-24 06:25:59,838 INFO toNotifyTaskSize = 0 + +2025-09-24 06:25:59,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:26:09,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:26:09,836 INFO [long-pulling] client count 0 + +2025-09-24 06:26:09,839 INFO toNotifyTaskSize = 0 + +2025-09-24 06:26:09,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:26:19,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:26:19,836 INFO [long-pulling] client count 0 + +2025-09-24 06:26:19,839 INFO toNotifyTaskSize = 0 + +2025-09-24 06:26:19,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:26:29,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:26:29,838 INFO [long-pulling] client count 0 + +2025-09-24 06:26:29,840 INFO toNotifyTaskSize = 0 + +2025-09-24 06:26:29,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:26:39,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:26:39,839 INFO [long-pulling] client count 0 + +2025-09-24 06:26:39,841 INFO toNotifyTaskSize = 0 + +2025-09-24 06:26:39,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:26:49,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:26:49,839 INFO [long-pulling] client count 0 + +2025-09-24 06:26:49,842 INFO toNotifyTaskSize = 0 + +2025-09-24 06:26:49,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:26:59,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:26:59,841 INFO [long-pulling] client count 0 + +2025-09-24 06:26:59,843 INFO toNotifyTaskSize = 0 + +2025-09-24 06:26:59,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:27:09,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:27:09,842 INFO [long-pulling] client count 0 + +2025-09-24 06:27:09,843 INFO toNotifyTaskSize = 0 + +2025-09-24 06:27:09,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:27:19,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:27:19,842 INFO [long-pulling] client count 0 + +2025-09-24 06:27:19,844 INFO toNotifyTaskSize = 0 + +2025-09-24 06:27:19,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:27:29,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:27:29,843 INFO [long-pulling] client count 0 + +2025-09-24 06:27:29,844 INFO toNotifyTaskSize = 0 + +2025-09-24 06:27:29,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:27:39,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:27:39,843 INFO [long-pulling] client count 0 + +2025-09-24 06:27:39,844 INFO toNotifyTaskSize = 0 + +2025-09-24 06:27:39,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:27:49,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:27:49,843 INFO [long-pulling] client count 0 + +2025-09-24 06:27:49,845 INFO toNotifyTaskSize = 0 + +2025-09-24 06:27:49,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:27:59,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:27:59,844 INFO [long-pulling] client count 0 + +2025-09-24 06:27:59,846 INFO toNotifyTaskSize = 0 + +2025-09-24 06:27:59,846 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:28:09,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:28:09,844 INFO [long-pulling] client count 0 + +2025-09-24 06:28:09,846 INFO toNotifyTaskSize = 0 + +2025-09-24 06:28:09,846 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:28:19,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:28:19,844 INFO [long-pulling] client count 0 + +2025-09-24 06:28:19,847 INFO toNotifyTaskSize = 0 + +2025-09-24 06:28:19,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:28:29,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:28:29,846 INFO [long-pulling] client count 0 + +2025-09-24 06:28:29,847 INFO toNotifyTaskSize = 0 + +2025-09-24 06:28:29,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:28:39,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:28:39,847 INFO [long-pulling] client count 0 + +2025-09-24 06:28:39,848 INFO toNotifyTaskSize = 0 + +2025-09-24 06:28:39,848 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:28:49,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:28:49,847 INFO [long-pulling] client count 0 + +2025-09-24 06:28:49,850 INFO toNotifyTaskSize = 0 + +2025-09-24 06:28:49,850 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:28:59,835 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:28:59,848 INFO [long-pulling] client count 0 + +2025-09-24 06:28:59,850 INFO toNotifyTaskSize = 0 + +2025-09-24 06:28:59,850 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:29:09,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:29:09,848 INFO [long-pulling] client count 0 + +2025-09-24 06:29:09,852 INFO toNotifyTaskSize = 0 + +2025-09-24 06:29:09,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:29:19,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:29:19,848 INFO [long-pulling] client count 0 + +2025-09-24 06:29:19,852 INFO toNotifyTaskSize = 0 + +2025-09-24 06:29:19,873 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:29:29,851 INFO [long-pulling] client count 0 + +2025-09-24 06:29:29,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:29:29,874 INFO toNotifyTaskSize = 0 + +2025-09-24 06:29:29,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:29:39,853 INFO [long-pulling] client count 0 + +2025-09-24 06:29:39,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:29:39,874 INFO toNotifyTaskSize = 0 + +2025-09-24 06:29:39,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:29:49,853 INFO [long-pulling] client count 0 + +2025-09-24 06:29:49,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:29:49,876 INFO toNotifyTaskSize = 0 + +2025-09-24 06:29:49,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:29:59,855 INFO [long-pulling] client count 0 + +2025-09-24 06:29:59,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:29:59,877 INFO toNotifyTaskSize = 0 + +2025-09-24 06:29:59,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:30:09,856 INFO [long-pulling] client count 0 + +2025-09-24 06:30:09,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:30:09,877 INFO toNotifyTaskSize = 0 + +2025-09-24 06:30:09,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:30:19,856 INFO [long-pulling] client count 0 + +2025-09-24 06:30:19,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:30:19,878 INFO toNotifyTaskSize = 0 + +2025-09-24 06:30:19,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:30:29,857 INFO [long-pulling] client count 0 + +2025-09-24 06:30:29,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:30:29,879 INFO toNotifyTaskSize = 0 + +2025-09-24 06:30:29,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:30:39,859 INFO [long-pulling] client count 0 + +2025-09-24 06:30:39,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:30:39,881 INFO toNotifyTaskSize = 0 + +2025-09-24 06:30:39,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:30:49,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:30:49,861 INFO [long-pulling] client count 0 + +2025-09-24 06:30:49,884 INFO toNotifyTaskSize = 0 + +2025-09-24 06:30:49,884 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:30:59,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:30:59,861 INFO [long-pulling] client count 0 + +2025-09-24 06:30:59,886 INFO toNotifyTaskSize = 0 + +2025-09-24 06:30:59,886 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:31:09,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:31:09,861 INFO [long-pulling] client count 0 + +2025-09-24 06:31:09,888 INFO toNotifyTaskSize = 0 + +2025-09-24 06:31:09,888 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:31:19,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:31:19,862 INFO [long-pulling] client count 0 + +2025-09-24 06:31:19,889 INFO toNotifyTaskSize = 0 + +2025-09-24 06:31:19,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:31:29,862 INFO [long-pulling] client count 0 + +2025-09-24 06:31:29,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:31:29,889 INFO toNotifyTaskSize = 0 + +2025-09-24 06:31:29,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:31:39,863 INFO [long-pulling] client count 0 + +2025-09-24 06:31:39,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:31:39,890 INFO toNotifyTaskSize = 0 + +2025-09-24 06:31:39,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:31:49,866 INFO [long-pulling] client count 0 + +2025-09-24 06:31:49,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:31:49,892 INFO toNotifyTaskSize = 0 + +2025-09-24 06:31:49,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:31:59,866 INFO [long-pulling] client count 0 + +2025-09-24 06:31:59,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:31:59,893 INFO toNotifyTaskSize = 0 + +2025-09-24 06:31:59,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:32:09,868 INFO [long-pulling] client count 0 + +2025-09-24 06:32:09,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:32:09,895 INFO toNotifyTaskSize = 0 + +2025-09-24 06:32:09,895 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:32:19,868 INFO [long-pulling] client count 0 + +2025-09-24 06:32:19,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:32:19,896 INFO toNotifyTaskSize = 0 + +2025-09-24 06:32:19,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:32:29,870 INFO [long-pulling] client count 0 + +2025-09-24 06:32:29,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:32:29,896 INFO toNotifyTaskSize = 0 + +2025-09-24 06:32:29,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:32:39,874 INFO [long-pulling] client count 0 + +2025-09-24 06:32:39,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:32:39,897 INFO toNotifyTaskSize = 0 + +2025-09-24 06:32:39,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:32:49,875 INFO [long-pulling] client count 0 + +2025-09-24 06:32:49,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:32:49,899 INFO toNotifyTaskSize = 0 + +2025-09-24 06:32:49,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:32:59,875 INFO [long-pulling] client count 0 + +2025-09-24 06:32:59,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:32:59,900 INFO toNotifyTaskSize = 0 + +2025-09-24 06:32:59,900 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:33:09,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:33:09,877 INFO [long-pulling] client count 0 + +2025-09-24 06:33:09,901 INFO toNotifyTaskSize = 0 + +2025-09-24 06:33:09,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:33:19,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:33:19,879 INFO [long-pulling] client count 0 + +2025-09-24 06:33:19,902 INFO toNotifyTaskSize = 0 + +2025-09-24 06:33:19,915 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:33:29,894 INFO [long-pulling] client count 0 + +2025-09-24 06:33:29,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:33:29,916 INFO toNotifyTaskSize = 0 + +2025-09-24 06:33:29,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:33:39,895 INFO [long-pulling] client count 0 + +2025-09-24 06:33:39,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:33:39,918 INFO toNotifyTaskSize = 0 + +2025-09-24 06:33:39,918 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:33:49,896 INFO [long-pulling] client count 0 + +2025-09-24 06:33:49,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:33:49,920 INFO toNotifyTaskSize = 0 + +2025-09-24 06:33:49,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:33:59,897 INFO [long-pulling] client count 0 + +2025-09-24 06:33:59,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:33:59,922 INFO toNotifyTaskSize = 0 + +2025-09-24 06:33:59,922 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:34:09,898 INFO [long-pulling] client count 0 + +2025-09-24 06:34:09,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:34:09,925 INFO toNotifyTaskSize = 0 + +2025-09-24 06:34:09,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:34:19,901 INFO [long-pulling] client count 0 + +2025-09-24 06:34:19,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:34:19,925 INFO toNotifyTaskSize = 0 + +2025-09-24 06:34:19,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:34:29,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:34:29,903 INFO [long-pulling] client count 0 + +2025-09-24 06:34:29,928 INFO toNotifyTaskSize = 0 + +2025-09-24 06:34:29,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:34:39,904 INFO [long-pulling] client count 0 + +2025-09-24 06:34:39,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:34:39,930 INFO toNotifyTaskSize = 0 + +2025-09-24 06:34:39,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:34:49,905 INFO [long-pulling] client count 0 + +2025-09-24 06:34:49,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:34:49,931 INFO toNotifyTaskSize = 0 + +2025-09-24 06:34:49,931 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:34:59,907 INFO [long-pulling] client count 0 + +2025-09-24 06:34:59,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:34:59,933 INFO toNotifyTaskSize = 0 + +2025-09-24 06:34:59,934 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:35:09,910 INFO [long-pulling] client count 0 + +2025-09-24 06:35:09,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:35:09,935 INFO toNotifyTaskSize = 0 + +2025-09-24 06:35:09,935 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:35:19,912 INFO [long-pulling] client count 0 + +2025-09-24 06:35:19,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:35:19,937 INFO toNotifyTaskSize = 0 + +2025-09-24 06:35:19,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:35:29,914 INFO [long-pulling] client count 0 + +2025-09-24 06:35:29,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:35:29,939 INFO toNotifyTaskSize = 0 + +2025-09-24 06:35:29,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:35:39,915 INFO [long-pulling] client count 0 + +2025-09-24 06:35:39,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:35:39,940 INFO toNotifyTaskSize = 0 + +2025-09-24 06:35:39,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:35:49,917 INFO [long-pulling] client count 0 + +2025-09-24 06:35:49,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:35:49,958 INFO toNotifyTaskSize = 0 + +2025-09-24 06:35:49,958 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:35:59,919 INFO [long-pulling] client count 0 + +2025-09-24 06:35:59,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:35:59,961 INFO toNotifyTaskSize = 0 + +2025-09-24 06:35:59,961 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:36:09,920 INFO [long-pulling] client count 0 + +2025-09-24 06:36:09,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:36:09,963 INFO toNotifyTaskSize = 0 + +2025-09-24 06:36:09,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:36:19,922 INFO [long-pulling] client count 0 + +2025-09-24 06:36:19,922 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:36:19,963 INFO toNotifyTaskSize = 0 + +2025-09-24 06:36:19,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:36:29,922 INFO [long-pulling] client count 0 + +2025-09-24 06:36:29,922 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:36:29,964 INFO toNotifyTaskSize = 0 + +2025-09-24 06:36:29,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:36:39,923 INFO [long-pulling] client count 0 + +2025-09-24 06:36:39,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:36:39,965 INFO toNotifyTaskSize = 0 + +2025-09-24 06:36:39,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:36:49,924 INFO [long-pulling] client count 0 + +2025-09-24 06:36:49,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:36:49,968 INFO toNotifyTaskSize = 0 + +2025-09-24 06:36:49,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:36:59,924 INFO [long-pulling] client count 0 + +2025-09-24 06:36:59,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:36:59,968 INFO toNotifyTaskSize = 0 + +2025-09-24 06:36:59,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:37:09,924 INFO [long-pulling] client count 0 + +2025-09-24 06:37:09,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:37:09,969 INFO toNotifyTaskSize = 0 + +2025-09-24 06:37:09,969 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:37:19,925 INFO [long-pulling] client count 0 + +2025-09-24 06:37:19,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:37:19,970 INFO toNotifyTaskSize = 0 + +2025-09-24 06:37:19,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:37:29,925 INFO [long-pulling] client count 0 + +2025-09-24 06:37:29,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:37:29,972 INFO toNotifyTaskSize = 0 + +2025-09-24 06:37:29,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:37:39,927 INFO [long-pulling] client count 0 + +2025-09-24 06:37:39,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:37:39,974 INFO toNotifyTaskSize = 0 + +2025-09-24 06:37:39,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:37:49,929 INFO [long-pulling] client count 0 + +2025-09-24 06:37:49,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:37:49,976 INFO toNotifyTaskSize = 0 + +2025-09-24 06:37:49,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:37:59,931 INFO [long-pulling] client count 0 + +2025-09-24 06:37:59,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:37:59,978 INFO toNotifyTaskSize = 0 + +2025-09-24 06:37:59,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:38:09,932 INFO [long-pulling] client count 0 + +2025-09-24 06:38:09,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:38:09,980 INFO toNotifyTaskSize = 0 + +2025-09-24 06:38:09,980 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:38:19,932 INFO [long-pulling] client count 0 + +2025-09-24 06:38:19,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:38:19,982 INFO toNotifyTaskSize = 0 + +2025-09-24 06:38:19,982 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:38:29,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:38:29,933 INFO [long-pulling] client count 0 + +2025-09-24 06:38:29,983 INFO toNotifyTaskSize = 0 + +2025-09-24 06:38:29,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:38:39,934 INFO [long-pulling] client count 0 + +2025-09-24 06:38:39,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:38:39,986 INFO toNotifyTaskSize = 0 + +2025-09-24 06:38:39,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:38:49,934 INFO [long-pulling] client count 0 + +2025-09-24 06:38:49,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:38:49,986 INFO toNotifyTaskSize = 0 + +2025-09-24 06:38:49,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:38:59,934 INFO [long-pulling] client count 0 + +2025-09-24 06:38:59,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:38:59,987 INFO toNotifyTaskSize = 0 + +2025-09-24 06:38:59,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:39:09,936 INFO [long-pulling] client count 0 + +2025-09-24 06:39:09,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:39:09,989 INFO toNotifyTaskSize = 0 + +2025-09-24 06:39:09,989 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:39:19,939 INFO [long-pulling] client count 0 + +2025-09-24 06:39:19,939 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:39:19,991 INFO toNotifyTaskSize = 0 + +2025-09-24 06:39:19,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:39:29,961 INFO [long-pulling] client count 0 + +2025-09-24 06:39:29,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:39:29,993 INFO toNotifyTaskSize = 0 + +2025-09-24 06:39:29,993 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:39:39,963 INFO [long-pulling] client count 0 + +2025-09-24 06:39:39,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:39:39,995 INFO toNotifyTaskSize = 0 + +2025-09-24 06:39:39,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:39:49,964 INFO [long-pulling] client count 0 + +2025-09-24 06:39:49,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:39:49,997 INFO toNotifyTaskSize = 0 + +2025-09-24 06:39:49,998 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:39:59,964 INFO [long-pulling] client count 0 + +2025-09-24 06:39:59,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:40:00,000 INFO toNotifyTaskSize = 0 + +2025-09-24 06:40:00,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:40:09,964 INFO [long-pulling] client count 0 + +2025-09-24 06:40:09,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:40:10,001 INFO toNotifyTaskSize = 0 + +2025-09-24 06:40:10,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:40:19,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:40:19,965 INFO [long-pulling] client count 0 + +2025-09-24 06:40:20,002 INFO toNotifyTaskSize = 0 + +2025-09-24 06:40:20,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:40:29,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:40:29,966 INFO [long-pulling] client count 0 + +2025-09-24 06:40:30,004 INFO toNotifyTaskSize = 0 + +2025-09-24 06:40:30,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:40:39,967 INFO [long-pulling] client count 0 + +2025-09-24 06:40:39,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:40:40,006 INFO toNotifyTaskSize = 0 + +2025-09-24 06:40:40,006 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:40:49,967 INFO [long-pulling] client count 0 + +2025-09-24 06:40:49,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:40:50,006 INFO toNotifyTaskSize = 0 + +2025-09-24 06:40:50,006 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:40:59,969 INFO [long-pulling] client count 0 + +2025-09-24 06:40:59,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:41:00,007 INFO toNotifyTaskSize = 0 + +2025-09-24 06:41:00,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:41:09,970 INFO [long-pulling] client count 0 + +2025-09-24 06:41:09,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:41:10,007 INFO toNotifyTaskSize = 0 + +2025-09-24 06:41:10,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:41:19,971 INFO [long-pulling] client count 0 + +2025-09-24 06:41:19,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:41:20,009 INFO toNotifyTaskSize = 0 + +2025-09-24 06:41:20,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:41:29,971 INFO [long-pulling] client count 0 + +2025-09-24 06:41:29,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:41:30,010 INFO toNotifyTaskSize = 0 + +2025-09-24 06:41:30,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:41:39,973 INFO [long-pulling] client count 0 + +2025-09-24 06:41:39,973 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:41:40,012 INFO toNotifyTaskSize = 0 + +2025-09-24 06:41:40,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:41:49,974 INFO [long-pulling] client count 0 + +2025-09-24 06:41:49,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:41:50,012 INFO toNotifyTaskSize = 0 + +2025-09-24 06:41:50,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:41:59,974 INFO [long-pulling] client count 0 + +2025-09-24 06:41:59,975 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:42:00,015 INFO toNotifyTaskSize = 0 + +2025-09-24 06:42:00,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:42:09,975 INFO [long-pulling] client count 0 + +2025-09-24 06:42:09,975 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:42:10,015 INFO toNotifyTaskSize = 0 + +2025-09-24 06:42:10,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:42:19,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:42:19,976 INFO [long-pulling] client count 0 + +2025-09-24 06:42:20,016 INFO toNotifyTaskSize = 0 + +2025-09-24 06:42:20,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:42:29,978 INFO [long-pulling] client count 0 + +2025-09-24 06:42:29,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:42:30,017 INFO toNotifyTaskSize = 0 + +2025-09-24 06:42:30,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:42:39,979 INFO [long-pulling] client count 0 + +2025-09-24 06:42:39,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:42:40,018 INFO toNotifyTaskSize = 0 + +2025-09-24 06:42:40,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:42:50,078 INFO [long-pulling] client count 0 + +2025-09-24 06:42:50,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:42:50,078 INFO toNotifyTaskSize = 0 + +2025-09-24 06:42:50,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:43:00,079 INFO [long-pulling] client count 0 + +2025-09-24 06:43:00,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:43:00,079 INFO toNotifyTaskSize = 0 + +2025-09-24 06:43:00,104 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:43:10,080 INFO [long-pulling] client count 0 + +2025-09-24 06:43:10,106 INFO toNotifyTaskSize = 0 + +2025-09-24 06:43:10,106 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:43:10,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:43:20,081 INFO [long-pulling] client count 0 + +2025-09-24 06:43:20,107 INFO toNotifyTaskSize = 0 + +2025-09-24 06:43:20,107 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:43:20,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:43:30,083 INFO [long-pulling] client count 0 + +2025-09-24 06:43:30,109 INFO toNotifyTaskSize = 0 + +2025-09-24 06:43:30,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:43:30,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:43:40,085 INFO [long-pulling] client count 0 + +2025-09-24 06:43:40,110 INFO toNotifyTaskSize = 0 + +2025-09-24 06:43:40,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:43:40,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:43:50,087 INFO [long-pulling] client count 0 + +2025-09-24 06:43:50,112 INFO toNotifyTaskSize = 0 + +2025-09-24 06:43:50,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:43:50,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:44:00,089 INFO [long-pulling] client count 0 + +2025-09-24 06:44:00,112 INFO toNotifyTaskSize = 0 + +2025-09-24 06:44:00,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:44:00,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:44:10,090 INFO [long-pulling] client count 0 + +2025-09-24 06:44:10,113 INFO toNotifyTaskSize = 0 + +2025-09-24 06:44:10,113 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:44:10,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:44:20,090 INFO [long-pulling] client count 0 + +2025-09-24 06:44:20,113 INFO toNotifyTaskSize = 0 + +2025-09-24 06:44:20,113 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:44:20,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:44:30,091 INFO [long-pulling] client count 0 + +2025-09-24 06:44:30,115 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:44:30,115 INFO toNotifyTaskSize = 0 + +2025-09-24 06:44:30,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:44:40,093 INFO [long-pulling] client count 0 + +2025-09-24 06:44:40,116 INFO toNotifyTaskSize = 0 + +2025-09-24 06:44:40,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:44:40,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:44:50,096 INFO [long-pulling] client count 0 + +2025-09-24 06:44:50,121 INFO toNotifyTaskSize = 0 + +2025-09-24 06:44:50,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:44:50,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:45:00,096 INFO [long-pulling] client count 0 + +2025-09-24 06:45:00,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:45:00,122 INFO toNotifyTaskSize = 0 + +2025-09-24 06:45:00,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:45:10,098 INFO [long-pulling] client count 0 + +2025-09-24 06:45:10,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:45:10,123 INFO toNotifyTaskSize = 0 + +2025-09-24 06:45:10,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:45:20,099 INFO [long-pulling] client count 0 + +2025-09-24 06:45:20,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:45:20,123 INFO toNotifyTaskSize = 0 + +2025-09-24 06:45:20,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:45:30,100 INFO [long-pulling] client count 0 + +2025-09-24 06:45:30,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:45:30,125 INFO toNotifyTaskSize = 0 + +2025-09-24 06:45:30,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:45:40,103 INFO [long-pulling] client count 0 + +2025-09-24 06:45:40,127 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:45:40,127 INFO toNotifyTaskSize = 0 + +2025-09-24 06:45:40,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:45:50,105 INFO [long-pulling] client count 0 + +2025-09-24 06:45:50,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:45:50,129 INFO toNotifyTaskSize = 0 + +2025-09-24 06:45:50,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:46:00,107 INFO [long-pulling] client count 0 + +2025-09-24 06:46:00,130 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:46:00,130 INFO toNotifyTaskSize = 0 + +2025-09-24 06:46:00,130 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:46:10,108 INFO [long-pulling] client count 0 + +2025-09-24 06:46:10,131 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:46:10,131 INFO toNotifyTaskSize = 0 + +2025-09-24 06:46:10,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:46:20,109 INFO [long-pulling] client count 0 + +2025-09-24 06:46:20,131 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:46:20,132 INFO toNotifyTaskSize = 0 + +2025-09-24 06:46:20,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:46:30,110 INFO [long-pulling] client count 0 + +2025-09-24 06:46:30,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:46:30,132 INFO toNotifyTaskSize = 0 + +2025-09-24 06:46:30,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:46:40,111 INFO [long-pulling] client count 0 + +2025-09-24 06:46:40,133 INFO toNotifyTaskSize = 0 + +2025-09-24 06:46:40,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:46:40,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:46:50,111 INFO [long-pulling] client count 0 + +2025-09-24 06:46:50,133 INFO toNotifyTaskSize = 0 + +2025-09-24 06:46:50,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:46:50,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:47:00,114 INFO [long-pulling] client count 0 + +2025-09-24 06:47:00,134 INFO toNotifyTaskSize = 0 + +2025-09-24 06:47:00,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:47:00,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:47:10,114 INFO [long-pulling] client count 0 + +2025-09-24 06:47:10,136 INFO toNotifyTaskSize = 0 + +2025-09-24 06:47:10,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:47:10,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:47:20,115 INFO [long-pulling] client count 0 + +2025-09-24 06:47:20,138 INFO toNotifyTaskSize = 0 + +2025-09-24 06:47:20,138 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:47:20,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:47:30,115 INFO [long-pulling] client count 0 + +2025-09-24 06:47:30,139 INFO toNotifyTaskSize = 0 + +2025-09-24 06:47:30,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:47:30,139 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:47:40,118 INFO [long-pulling] client count 0 + +2025-09-24 06:47:40,140 INFO toNotifyTaskSize = 0 + +2025-09-24 06:47:40,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:47:40,140 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:47:50,119 INFO [long-pulling] client count 0 + +2025-09-24 06:47:50,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:47:50,143 INFO toNotifyTaskSize = 0 + +2025-09-24 06:47:50,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:48:00,119 INFO [long-pulling] client count 0 + +2025-09-24 06:48:00,144 INFO toNotifyTaskSize = 0 + +2025-09-24 06:48:00,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:48:00,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:48:10,120 INFO [long-pulling] client count 0 + +2025-09-24 06:48:10,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:48:10,145 INFO toNotifyTaskSize = 0 + +2025-09-24 06:48:10,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:48:20,122 INFO [long-pulling] client count 0 + +2025-09-24 06:48:20,146 INFO toNotifyTaskSize = 0 + +2025-09-24 06:48:20,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:48:20,146 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:48:30,123 INFO [long-pulling] client count 0 + +2025-09-24 06:48:30,147 INFO toNotifyTaskSize = 0 + +2025-09-24 06:48:30,148 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:48:30,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:48:40,124 INFO [long-pulling] client count 0 + +2025-09-24 06:48:40,149 INFO toNotifyTaskSize = 0 + +2025-09-24 06:48:40,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:48:40,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:48:50,124 INFO [long-pulling] client count 0 + +2025-09-24 06:48:50,151 INFO toNotifyTaskSize = 0 + +2025-09-24 06:48:50,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:48:50,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:49:00,125 INFO [long-pulling] client count 0 + +2025-09-24 06:49:00,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:49:00,153 INFO toNotifyTaskSize = 0 + +2025-09-24 06:49:00,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:49:10,126 INFO [long-pulling] client count 0 + +2025-09-24 06:49:10,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:49:10,153 INFO toNotifyTaskSize = 0 + +2025-09-24 06:49:10,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:49:20,126 INFO [long-pulling] client count 0 + +2025-09-24 06:49:20,154 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:49:20,154 INFO toNotifyTaskSize = 0 + +2025-09-24 06:49:20,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:49:30,127 INFO [long-pulling] client count 0 + +2025-09-24 06:49:30,154 INFO toNotifyTaskSize = 0 + +2025-09-24 06:49:30,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:49:30,154 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:49:40,127 INFO [long-pulling] client count 0 + +2025-09-24 06:49:40,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:49:40,155 INFO toNotifyTaskSize = 0 + +2025-09-24 06:49:40,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:49:50,129 INFO [long-pulling] client count 0 + +2025-09-24 06:49:50,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:49:50,157 INFO toNotifyTaskSize = 0 + +2025-09-24 06:49:50,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:50:00,129 INFO [long-pulling] client count 0 + +2025-09-24 06:50:00,157 INFO toNotifyTaskSize = 0 + +2025-09-24 06:50:00,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:50:00,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:50:10,130 INFO [long-pulling] client count 0 + +2025-09-24 06:50:10,158 INFO toNotifyTaskSize = 0 + +2025-09-24 06:50:10,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:50:10,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:50:20,131 INFO [long-pulling] client count 0 + +2025-09-24 06:50:20,158 INFO toNotifyTaskSize = 0 + +2025-09-24 06:50:20,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:50:20,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:50:30,133 INFO [long-pulling] client count 0 + +2025-09-24 06:50:30,159 INFO toNotifyTaskSize = 0 + +2025-09-24 06:50:30,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:50:30,159 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:50:40,134 INFO [long-pulling] client count 0 + +2025-09-24 06:50:40,160 INFO toNotifyTaskSize = 0 + +2025-09-24 06:50:40,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:50:40,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:50:50,136 INFO [long-pulling] client count 0 + +2025-09-24 06:50:50,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:50:50,162 INFO toNotifyTaskSize = 0 + +2025-09-24 06:50:50,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:51:00,137 INFO [long-pulling] client count 0 + +2025-09-24 06:51:00,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:51:00,163 INFO toNotifyTaskSize = 0 + +2025-09-24 06:51:00,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:51:10,139 INFO [long-pulling] client count 0 + +2025-09-24 06:51:10,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:51:10,165 INFO toNotifyTaskSize = 0 + +2025-09-24 06:51:10,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:51:20,139 INFO [long-pulling] client count 0 + +2025-09-24 06:51:20,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:51:20,166 INFO toNotifyTaskSize = 0 + +2025-09-24 06:51:20,166 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:51:30,141 INFO [long-pulling] client count 0 + +2025-09-24 06:51:30,167 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:51:30,168 INFO toNotifyTaskSize = 0 + +2025-09-24 06:51:30,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:51:40,142 INFO [long-pulling] client count 0 + +2025-09-24 06:51:40,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:51:40,168 INFO toNotifyTaskSize = 0 + +2025-09-24 06:51:40,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:51:50,143 INFO [long-pulling] client count 0 + +2025-09-24 06:51:50,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:51:50,170 INFO toNotifyTaskSize = 0 + +2025-09-24 06:51:50,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:52:00,144 INFO [long-pulling] client count 0 + +2025-09-24 06:52:00,172 INFO toNotifyTaskSize = 0 + +2025-09-24 06:52:00,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:52:00,173 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:52:10,144 INFO [long-pulling] client count 0 + +2025-09-24 06:52:10,174 INFO toNotifyTaskSize = 0 + +2025-09-24 06:52:10,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:52:10,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:52:20,146 INFO [long-pulling] client count 0 + +2025-09-24 06:52:20,175 INFO toNotifyTaskSize = 0 + +2025-09-24 06:52:20,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:52:20,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:52:30,146 INFO [long-pulling] client count 0 + +2025-09-24 06:52:30,177 INFO toNotifyTaskSize = 0 + +2025-09-24 06:52:30,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:52:30,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:52:40,147 INFO [long-pulling] client count 0 + +2025-09-24 06:52:40,179 INFO toNotifyTaskSize = 0 + +2025-09-24 06:52:40,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:52:40,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:52:50,147 INFO [long-pulling] client count 0 + +2025-09-24 06:52:50,179 INFO toNotifyTaskSize = 0 + +2025-09-24 06:52:50,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:52:50,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:53:00,149 INFO [long-pulling] client count 0 + +2025-09-24 06:53:00,180 INFO toNotifyTaskSize = 0 + +2025-09-24 06:53:00,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:53:00,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:53:10,150 INFO [long-pulling] client count 0 + +2025-09-24 06:53:10,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:53:10,180 INFO toNotifyTaskSize = 0 + +2025-09-24 06:53:10,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:53:20,152 INFO [long-pulling] client count 0 + +2025-09-24 06:53:20,183 INFO toNotifyTaskSize = 0 + +2025-09-24 06:53:20,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:53:20,183 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:53:30,154 INFO [long-pulling] client count 0 + +2025-09-24 06:53:30,183 INFO toNotifyTaskSize = 0 + +2025-09-24 06:53:30,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:53:30,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:53:40,154 INFO [long-pulling] client count 0 + +2025-09-24 06:53:40,184 INFO toNotifyTaskSize = 0 + +2025-09-24 06:53:40,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:53:40,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:53:50,155 INFO [long-pulling] client count 0 + +2025-09-24 06:53:50,186 INFO toNotifyTaskSize = 0 + +2025-09-24 06:53:50,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:53:50,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:54:00,155 INFO [long-pulling] client count 0 + +2025-09-24 06:54:00,188 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:54:00,188 INFO toNotifyTaskSize = 0 + +2025-09-24 06:54:00,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:54:10,157 INFO [long-pulling] client count 0 + +2025-09-24 06:54:10,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:54:10,189 INFO toNotifyTaskSize = 0 + +2025-09-24 06:54:10,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:54:20,158 INFO [long-pulling] client count 0 + +2025-09-24 06:54:20,190 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:54:20,190 INFO toNotifyTaskSize = 0 + +2025-09-24 06:54:20,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:54:30,158 INFO [long-pulling] client count 0 + +2025-09-24 06:54:30,190 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:54:30,190 INFO toNotifyTaskSize = 0 + +2025-09-24 06:54:30,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:54:40,158 INFO [long-pulling] client count 0 + +2025-09-24 06:54:40,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:54:40,192 INFO toNotifyTaskSize = 0 + +2025-09-24 06:54:40,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:54:50,159 INFO [long-pulling] client count 0 + +2025-09-24 06:54:50,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:54:50,192 INFO toNotifyTaskSize = 0 + +2025-09-24 06:54:50,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:55:00,159 INFO [long-pulling] client count 0 + +2025-09-24 06:55:00,193 INFO toNotifyTaskSize = 0 + +2025-09-24 06:55:00,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:55:00,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:55:10,161 INFO [long-pulling] client count 0 + +2025-09-24 06:55:10,193 INFO toNotifyTaskSize = 0 + +2025-09-24 06:55:10,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:55:10,194 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:55:20,162 INFO [long-pulling] client count 0 + +2025-09-24 06:55:20,194 INFO toNotifyTaskSize = 0 + +2025-09-24 06:55:20,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:55:20,194 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:55:30,164 INFO [long-pulling] client count 0 + +2025-09-24 06:55:30,195 INFO toNotifyTaskSize = 0 + +2025-09-24 06:55:30,195 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:55:30,195 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:55:40,165 INFO [long-pulling] client count 0 + +2025-09-24 06:55:40,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:55:40,196 INFO toNotifyTaskSize = 0 + +2025-09-24 06:55:40,196 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:55:50,168 INFO [long-pulling] client count 0 + +2025-09-24 06:55:50,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:55:50,199 INFO toNotifyTaskSize = 0 + +2025-09-24 06:55:50,199 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:56:00,170 INFO [long-pulling] client count 0 + +2025-09-24 06:56:00,199 INFO toNotifyTaskSize = 0 + +2025-09-24 06:56:00,199 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:56:00,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:56:10,170 INFO [long-pulling] client count 0 + +2025-09-24 06:56:10,200 INFO toNotifyTaskSize = 0 + +2025-09-24 06:56:10,200 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:56:10,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:56:20,172 INFO [long-pulling] client count 0 + +2025-09-24 06:56:20,200 INFO toNotifyTaskSize = 0 + +2025-09-24 06:56:20,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:56:20,200 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:56:30,172 INFO [long-pulling] client count 0 + +2025-09-24 06:56:30,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:56:30,201 INFO toNotifyTaskSize = 0 + +2025-09-24 06:56:30,201 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:56:40,173 INFO [long-pulling] client count 0 + +2025-09-24 06:56:40,202 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:56:40,202 INFO toNotifyTaskSize = 0 + +2025-09-24 06:56:40,202 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:56:50,173 INFO [long-pulling] client count 0 + +2025-09-24 06:56:50,203 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:56:50,203 INFO toNotifyTaskSize = 0 + +2025-09-24 06:56:50,203 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:57:00,174 INFO [long-pulling] client count 0 + +2025-09-24 06:57:00,205 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:57:00,205 INFO toNotifyTaskSize = 0 + +2025-09-24 06:57:00,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:57:10,174 INFO [long-pulling] client count 0 + +2025-09-24 06:57:10,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:57:10,206 INFO toNotifyTaskSize = 0 + +2025-09-24 06:57:10,206 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:57:20,175 INFO [long-pulling] client count 0 + +2025-09-24 06:57:20,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:57:20,207 INFO toNotifyTaskSize = 0 + +2025-09-24 06:57:20,207 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:57:30,176 INFO [long-pulling] client count 0 + +2025-09-24 06:57:30,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:57:30,207 INFO toNotifyTaskSize = 0 + +2025-09-24 06:57:30,207 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:57:40,177 INFO [long-pulling] client count 0 + +2025-09-24 06:57:40,209 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:57:40,209 INFO toNotifyTaskSize = 0 + +2025-09-24 06:57:40,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:57:50,177 INFO [long-pulling] client count 0 + +2025-09-24 06:57:50,211 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:57:50,211 INFO toNotifyTaskSize = 0 + +2025-09-24 06:57:50,212 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:58:00,178 INFO [long-pulling] client count 0 + +2025-09-24 06:58:00,213 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:58:00,213 INFO toNotifyTaskSize = 0 + +2025-09-24 06:58:00,213 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:58:10,180 INFO [long-pulling] client count 0 + +2025-09-24 06:58:10,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:58:10,214 INFO toNotifyTaskSize = 0 + +2025-09-24 06:58:10,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:58:20,180 INFO [long-pulling] client count 0 + +2025-09-24 06:58:20,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:58:20,214 INFO toNotifyTaskSize = 0 + +2025-09-24 06:58:20,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:58:30,181 INFO [long-pulling] client count 0 + +2025-09-24 06:58:30,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:58:30,216 INFO toNotifyTaskSize = 0 + +2025-09-24 06:58:30,216 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:58:40,181 INFO [long-pulling] client count 0 + +2025-09-24 06:58:40,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:58:40,217 INFO toNotifyTaskSize = 0 + +2025-09-24 06:58:40,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:58:50,182 INFO [long-pulling] client count 0 + +2025-09-24 06:58:50,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:58:50,218 INFO toNotifyTaskSize = 0 + +2025-09-24 06:58:50,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:59:00,183 INFO [long-pulling] client count 0 + +2025-09-24 06:59:00,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:59:00,218 INFO toNotifyTaskSize = 0 + +2025-09-24 06:59:00,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:59:10,184 INFO [long-pulling] client count 0 + +2025-09-24 06:59:10,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:59:10,219 INFO toNotifyTaskSize = 0 + +2025-09-24 06:59:10,219 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:59:20,184 INFO [long-pulling] client count 0 + +2025-09-24 06:59:20,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:59:20,219 INFO toNotifyTaskSize = 0 + +2025-09-24 06:59:20,219 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:59:30,185 INFO [long-pulling] client count 0 + +2025-09-24 06:59:30,220 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:59:30,220 INFO toNotifyTaskSize = 0 + +2025-09-24 06:59:30,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:59:40,187 INFO [long-pulling] client count 0 + +2025-09-24 06:59:40,220 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:59:40,220 INFO toNotifyTaskSize = 0 + +2025-09-24 06:59:40,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 06:59:50,189 INFO [long-pulling] client count 0 + +2025-09-24 06:59:50,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 06:59:50,222 INFO toNotifyTaskSize = 0 + +2025-09-24 06:59:50,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:00:00,189 INFO [long-pulling] client count 0 + +2025-09-24 07:00:00,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:00:00,222 INFO toNotifyTaskSize = 0 + +2025-09-24 07:00:00,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:00:10,190 INFO [long-pulling] client count 0 + +2025-09-24 07:00:10,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:00:10,222 INFO toNotifyTaskSize = 0 + +2025-09-24 07:00:10,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:00:20,191 INFO [long-pulling] client count 0 + +2025-09-24 07:00:20,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:00:20,223 INFO toNotifyTaskSize = 0 + +2025-09-24 07:00:20,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:00:30,195 INFO [long-pulling] client count 0 + +2025-09-24 07:00:30,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:00:30,225 INFO toNotifyTaskSize = 0 + +2025-09-24 07:00:30,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:00:40,196 INFO [long-pulling] client count 0 + +2025-09-24 07:00:40,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:00:40,225 INFO toNotifyTaskSize = 0 + +2025-09-24 07:00:40,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:00:50,197 INFO [long-pulling] client count 0 + +2025-09-24 07:00:50,226 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:00:50,226 INFO toNotifyTaskSize = 0 + +2025-09-24 07:00:50,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:01:00,197 INFO [long-pulling] client count 0 + +2025-09-24 07:01:00,226 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:01:00,226 INFO toNotifyTaskSize = 0 + +2025-09-24 07:01:00,227 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:01:10,199 INFO [long-pulling] client count 0 + +2025-09-24 07:01:10,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:01:10,228 INFO toNotifyTaskSize = 0 + +2025-09-24 07:01:10,228 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:01:20,202 INFO [long-pulling] client count 0 + +2025-09-24 07:01:20,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:01:20,229 INFO toNotifyTaskSize = 0 + +2025-09-24 07:01:20,229 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:01:30,203 INFO [long-pulling] client count 0 + +2025-09-24 07:01:30,230 INFO toNotifyTaskSize = 0 + +2025-09-24 07:01:30,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:01:30,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:01:40,205 INFO [long-pulling] client count 0 + +2025-09-24 07:01:40,232 INFO toNotifyTaskSize = 0 + +2025-09-24 07:01:40,233 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:01:40,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:01:50,207 INFO [long-pulling] client count 0 + +2025-09-24 07:01:50,233 INFO toNotifyTaskSize = 0 + +2025-09-24 07:01:50,233 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:01:50,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:02:00,208 INFO [long-pulling] client count 0 + +2025-09-24 07:02:00,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:02:00,234 INFO toNotifyTaskSize = 0 + +2025-09-24 07:02:00,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:02:10,210 INFO [long-pulling] client count 0 + +2025-09-24 07:02:10,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:02:10,235 INFO toNotifyTaskSize = 0 + +2025-09-24 07:02:10,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:02:20,211 INFO [long-pulling] client count 0 + +2025-09-24 07:02:20,236 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:02:20,241 INFO toNotifyTaskSize = 0 + +2025-09-24 07:02:20,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:02:30,212 INFO [long-pulling] client count 0 + +2025-09-24 07:02:30,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:02:30,241 INFO toNotifyTaskSize = 0 + +2025-09-24 07:02:30,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:02:40,213 INFO [long-pulling] client count 0 + +2025-09-24 07:02:40,238 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:02:40,242 INFO toNotifyTaskSize = 0 + +2025-09-24 07:02:40,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:02:50,213 INFO [long-pulling] client count 0 + +2025-09-24 07:02:50,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:02:50,243 INFO toNotifyTaskSize = 0 + +2025-09-24 07:02:50,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:03:00,214 INFO [long-pulling] client count 0 + +2025-09-24 07:03:00,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:03:00,243 INFO toNotifyTaskSize = 0 + +2025-09-24 07:03:00,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:03:10,215 INFO [long-pulling] client count 0 + +2025-09-24 07:03:10,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:03:10,244 INFO toNotifyTaskSize = 0 + +2025-09-24 07:03:10,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:03:20,217 INFO [long-pulling] client count 0 + +2025-09-24 07:03:20,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:03:20,244 INFO toNotifyTaskSize = 0 + +2025-09-24 07:03:20,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:03:30,217 INFO [long-pulling] client count 0 + +2025-09-24 07:03:30,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:03:30,245 INFO toNotifyTaskSize = 0 + +2025-09-24 07:03:30,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:03:40,220 INFO [long-pulling] client count 0 + +2025-09-24 07:03:40,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:03:40,246 INFO toNotifyTaskSize = 0 + +2025-09-24 07:03:40,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:03:50,221 INFO [long-pulling] client count 0 + +2025-09-24 07:03:50,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:03:50,246 INFO toNotifyTaskSize = 0 + +2025-09-24 07:03:50,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:04:00,223 INFO [long-pulling] client count 0 + +2025-09-24 07:04:00,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:04:00,246 INFO toNotifyTaskSize = 0 + +2025-09-24 07:04:00,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:04:10,224 INFO [long-pulling] client count 0 + +2025-09-24 07:04:10,247 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:04:10,247 INFO toNotifyTaskSize = 0 + +2025-09-24 07:04:10,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:04:20,226 INFO [long-pulling] client count 0 + +2025-09-24 07:04:20,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:04:20,248 INFO toNotifyTaskSize = 0 + +2025-09-24 07:04:20,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:04:30,227 INFO [long-pulling] client count 0 + +2025-09-24 07:04:30,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:04:30,248 INFO toNotifyTaskSize = 0 + +2025-09-24 07:04:30,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:04:40,230 INFO [long-pulling] client count 0 + +2025-09-24 07:04:40,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:04:40,250 INFO toNotifyTaskSize = 0 + +2025-09-24 07:04:40,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:04:50,232 INFO [long-pulling] client count 0 + +2025-09-24 07:04:50,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:04:50,250 INFO toNotifyTaskSize = 0 + +2025-09-24 07:04:50,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:05:00,233 INFO [long-pulling] client count 0 + +2025-09-24 07:05:00,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:05:00,252 INFO toNotifyTaskSize = 0 + +2025-09-24 07:05:00,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:05:10,233 INFO [long-pulling] client count 0 + +2025-09-24 07:05:10,254 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:05:10,254 INFO toNotifyTaskSize = 0 + +2025-09-24 07:05:10,254 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:05:20,234 INFO [long-pulling] client count 0 + +2025-09-24 07:05:20,255 INFO toNotifyTaskSize = 0 + +2025-09-24 07:05:20,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:05:20,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:05:30,234 INFO [long-pulling] client count 0 + +2025-09-24 07:05:30,258 INFO toNotifyTaskSize = 0 + +2025-09-24 07:05:30,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:05:30,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:05:40,235 INFO [long-pulling] client count 0 + +2025-09-24 07:05:40,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:05:40,260 INFO toNotifyTaskSize = 0 + +2025-09-24 07:05:40,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:05:50,237 INFO [long-pulling] client count 0 + +2025-09-24 07:05:50,262 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:05:50,262 INFO toNotifyTaskSize = 0 + +2025-09-24 07:05:50,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:06:00,237 INFO [long-pulling] client count 0 + +2025-09-24 07:06:00,264 INFO toNotifyTaskSize = 0 + +2025-09-24 07:06:00,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:06:00,264 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:06:10,238 INFO [long-pulling] client count 0 + +2025-09-24 07:06:10,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:06:10,265 INFO toNotifyTaskSize = 0 + +2025-09-24 07:06:10,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:06:20,238 INFO [long-pulling] client count 0 + +2025-09-24 07:06:20,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:06:20,265 INFO toNotifyTaskSize = 0 + +2025-09-24 07:06:20,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:06:30,239 INFO [long-pulling] client count 0 + +2025-09-24 07:06:30,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:06:30,267 INFO toNotifyTaskSize = 0 + +2025-09-24 07:06:30,267 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:06:40,241 INFO [long-pulling] client count 0 + +2025-09-24 07:06:40,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:06:40,267 INFO toNotifyTaskSize = 0 + +2025-09-24 07:06:40,267 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:06:50,241 INFO [long-pulling] client count 0 + +2025-09-24 07:06:50,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:06:50,267 INFO toNotifyTaskSize = 0 + +2025-09-24 07:06:50,267 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:07:00,242 INFO [long-pulling] client count 0 + +2025-09-24 07:07:00,268 INFO toNotifyTaskSize = 0 + +2025-09-24 07:07:00,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:07:00,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:07:10,242 INFO [long-pulling] client count 0 + +2025-09-24 07:07:10,270 INFO toNotifyTaskSize = 0 + +2025-09-24 07:07:10,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:07:10,270 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:07:20,244 INFO [long-pulling] client count 0 + +2025-09-24 07:07:20,270 INFO toNotifyTaskSize = 0 + +2025-09-24 07:07:20,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:07:20,270 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:07:30,245 INFO [long-pulling] client count 0 + +2025-09-24 07:07:30,271 INFO toNotifyTaskSize = 0 + +2025-09-24 07:07:30,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:07:30,271 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:07:40,246 INFO [long-pulling] client count 0 + +2025-09-24 07:07:40,271 INFO toNotifyTaskSize = 0 + +2025-09-24 07:07:40,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:07:40,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:07:50,247 INFO [long-pulling] client count 0 + +2025-09-24 07:07:50,274 INFO toNotifyTaskSize = 0 + +2025-09-24 07:07:50,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:07:50,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:08:00,247 INFO [long-pulling] client count 0 + +2025-09-24 07:08:00,274 INFO toNotifyTaskSize = 0 + +2025-09-24 07:08:00,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:08:00,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:08:10,248 INFO [long-pulling] client count 0 + +2025-09-24 07:08:10,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:08:10,274 INFO toNotifyTaskSize = 0 + +2025-09-24 07:08:10,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:08:20,250 INFO [long-pulling] client count 0 + +2025-09-24 07:08:20,275 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:08:20,275 INFO toNotifyTaskSize = 0 + +2025-09-24 07:08:20,275 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:08:30,250 INFO [long-pulling] client count 0 + +2025-09-24 07:08:30,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:08:30,276 INFO toNotifyTaskSize = 0 + +2025-09-24 07:08:30,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:08:40,250 INFO [long-pulling] client count 0 + +2025-09-24 07:08:40,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:08:40,276 INFO toNotifyTaskSize = 0 + +2025-09-24 07:08:40,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:08:50,251 INFO [long-pulling] client count 0 + +2025-09-24 07:08:50,278 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:08:50,278 INFO toNotifyTaskSize = 0 + +2025-09-24 07:08:50,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:09:00,253 INFO [long-pulling] client count 0 + +2025-09-24 07:09:00,279 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:09:00,280 INFO toNotifyTaskSize = 0 + +2025-09-24 07:09:00,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:09:10,253 INFO [long-pulling] client count 0 + +2025-09-24 07:09:10,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:09:10,280 INFO toNotifyTaskSize = 0 + +2025-09-24 07:09:10,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:09:20,253 INFO [long-pulling] client count 0 + +2025-09-24 07:09:20,282 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:09:20,282 INFO toNotifyTaskSize = 0 + +2025-09-24 07:09:20,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:09:30,254 INFO [long-pulling] client count 0 + +2025-09-24 07:09:30,283 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:09:30,283 INFO toNotifyTaskSize = 0 + +2025-09-24 07:09:30,283 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:09:40,255 INFO [long-pulling] client count 0 + +2025-09-24 07:09:40,284 INFO toNotifyTaskSize = 0 + +2025-09-24 07:09:40,284 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:09:40,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:09:50,255 INFO [long-pulling] client count 0 + +2025-09-24 07:09:50,285 INFO toNotifyTaskSize = 0 + +2025-09-24 07:09:50,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:09:50,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:10:00,257 INFO [long-pulling] client count 0 + +2025-09-24 07:10:00,285 INFO toNotifyTaskSize = 0 + +2025-09-24 07:10:00,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:10:00,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:10:10,258 INFO [long-pulling] client count 0 + +2025-09-24 07:10:10,285 INFO toNotifyTaskSize = 0 + +2025-09-24 07:10:10,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:10:10,286 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:10:20,259 INFO [long-pulling] client count 0 + +2025-09-24 07:10:20,286 INFO toNotifyTaskSize = 0 + +2025-09-24 07:10:20,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:10:20,286 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:10:30,260 INFO [long-pulling] client count 0 + +2025-09-24 07:10:30,286 INFO toNotifyTaskSize = 0 + +2025-09-24 07:10:30,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:10:30,286 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:10:40,262 INFO [long-pulling] client count 0 + +2025-09-24 07:10:40,287 INFO toNotifyTaskSize = 0 + +2025-09-24 07:10:40,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:10:40,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:10:50,264 INFO [long-pulling] client count 0 + +2025-09-24 07:10:50,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:10:50,287 INFO toNotifyTaskSize = 0 + +2025-09-24 07:10:50,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:11:00,264 INFO [long-pulling] client count 0 + +2025-09-24 07:11:00,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:11:00,287 INFO toNotifyTaskSize = 0 + +2025-09-24 07:11:00,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:11:10,265 INFO [long-pulling] client count 0 + +2025-09-24 07:11:10,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:11:10,288 INFO toNotifyTaskSize = 0 + +2025-09-24 07:11:10,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:11:20,266 INFO [long-pulling] client count 0 + +2025-09-24 07:11:20,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:11:20,288 INFO toNotifyTaskSize = 0 + +2025-09-24 07:11:20,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:11:30,267 INFO [long-pulling] client count 0 + +2025-09-24 07:11:30,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:11:30,288 INFO toNotifyTaskSize = 0 + +2025-09-24 07:11:30,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:11:40,267 INFO [long-pulling] client count 0 + +2025-09-24 07:11:40,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:11:40,289 INFO toNotifyTaskSize = 0 + +2025-09-24 07:11:40,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:11:50,269 INFO [long-pulling] client count 0 + +2025-09-24 07:11:50,289 INFO toNotifyTaskSize = 0 + +2025-09-24 07:11:50,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:11:50,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:12:00,270 INFO [long-pulling] client count 0 + +2025-09-24 07:12:00,290 INFO toNotifyTaskSize = 0 + +2025-09-24 07:12:00,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:12:00,290 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:12:10,272 INFO [long-pulling] client count 0 + +2025-09-24 07:12:10,290 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:12:10,290 INFO toNotifyTaskSize = 0 + +2025-09-24 07:12:10,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:12:20,274 INFO [long-pulling] client count 0 + +2025-09-24 07:12:20,290 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:12:20,290 INFO toNotifyTaskSize = 0 + +2025-09-24 07:12:20,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:12:30,275 INFO [long-pulling] client count 0 + +2025-09-24 07:12:30,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:12:30,291 INFO toNotifyTaskSize = 0 + +2025-09-24 07:12:30,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:12:40,276 INFO [long-pulling] client count 0 + +2025-09-24 07:12:40,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:12:40,291 INFO toNotifyTaskSize = 0 + +2025-09-24 07:12:40,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:12:50,277 INFO [long-pulling] client count 0 + +2025-09-24 07:12:50,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:12:50,291 INFO toNotifyTaskSize = 0 + +2025-09-24 07:12:50,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:13:00,277 INFO [long-pulling] client count 0 + +2025-09-24 07:13:00,292 INFO toNotifyTaskSize = 0 + +2025-09-24 07:13:00,292 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:13:00,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:13:10,279 INFO [long-pulling] client count 0 + +2025-09-24 07:13:10,292 INFO toNotifyTaskSize = 0 + +2025-09-24 07:13:10,292 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:13:10,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:13:20,280 INFO [long-pulling] client count 0 + +2025-09-24 07:13:20,293 INFO toNotifyTaskSize = 0 + +2025-09-24 07:13:20,293 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:13:20,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:13:30,281 INFO [long-pulling] client count 0 + +2025-09-24 07:13:30,293 INFO toNotifyTaskSize = 0 + +2025-09-24 07:13:30,293 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:13:30,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:13:40,282 INFO [long-pulling] client count 0 + +2025-09-24 07:13:40,293 INFO toNotifyTaskSize = 0 + +2025-09-24 07:13:40,293 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:13:40,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:13:50,282 INFO [long-pulling] client count 0 + +2025-09-24 07:13:50,294 INFO toNotifyTaskSize = 0 + +2025-09-24 07:13:50,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:13:50,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:14:00,283 INFO [long-pulling] client count 0 + +2025-09-24 07:14:00,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:14:00,294 INFO toNotifyTaskSize = 0 + +2025-09-24 07:14:00,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:14:10,283 INFO [long-pulling] client count 0 + +2025-09-24 07:14:10,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:14:10,295 INFO toNotifyTaskSize = 0 + +2025-09-24 07:14:10,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:14:20,284 INFO [long-pulling] client count 0 + +2025-09-24 07:14:20,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:14:20,295 INFO toNotifyTaskSize = 0 + +2025-09-24 07:14:20,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:14:30,285 INFO [long-pulling] client count 0 + +2025-09-24 07:14:30,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:14:30,295 INFO toNotifyTaskSize = 0 + +2025-09-24 07:14:30,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:14:40,285 INFO [long-pulling] client count 0 + +2025-09-24 07:14:40,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:14:40,296 INFO toNotifyTaskSize = 0 + +2025-09-24 07:14:40,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:14:50,285 INFO [long-pulling] client count 0 + +2025-09-24 07:14:50,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:14:50,296 INFO toNotifyTaskSize = 0 + +2025-09-24 07:14:50,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:15:00,286 INFO [long-pulling] client count 0 + +2025-09-24 07:15:00,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:15:00,297 INFO toNotifyTaskSize = 0 + +2025-09-24 07:15:00,297 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:15:10,287 INFO [long-pulling] client count 0 + +2025-09-24 07:15:10,298 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:15:10,298 INFO toNotifyTaskSize = 0 + +2025-09-24 07:15:10,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:15:20,288 INFO [long-pulling] client count 0 + +2025-09-24 07:15:20,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:15:20,299 INFO toNotifyTaskSize = 0 + +2025-09-24 07:15:20,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:15:30,288 INFO [long-pulling] client count 0 + +2025-09-24 07:15:30,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:15:30,300 INFO toNotifyTaskSize = 0 + +2025-09-24 07:15:30,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:15:40,289 INFO [long-pulling] client count 0 + +2025-09-24 07:15:40,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:15:40,300 INFO toNotifyTaskSize = 0 + +2025-09-24 07:15:40,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:15:50,289 INFO [long-pulling] client count 0 + +2025-09-24 07:15:50,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:15:50,300 INFO toNotifyTaskSize = 0 + +2025-09-24 07:15:50,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:16:00,289 INFO [long-pulling] client count 0 + +2025-09-24 07:16:00,301 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:16:00,301 INFO toNotifyTaskSize = 0 + +2025-09-24 07:16:00,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:16:10,290 INFO [long-pulling] client count 0 + +2025-09-24 07:16:10,301 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:16:10,301 INFO toNotifyTaskSize = 0 + +2025-09-24 07:16:10,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:16:20,290 INFO [long-pulling] client count 0 + +2025-09-24 07:16:20,301 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:16:20,301 INFO toNotifyTaskSize = 0 + +2025-09-24 07:16:20,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:16:30,290 INFO [long-pulling] client count 0 + +2025-09-24 07:16:30,302 INFO toNotifyTaskSize = 0 + +2025-09-24 07:16:30,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:16:30,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:16:40,291 INFO [long-pulling] client count 0 + +2025-09-24 07:16:40,302 INFO toNotifyTaskSize = 0 + +2025-09-24 07:16:40,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:16:40,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:16:50,291 INFO [long-pulling] client count 0 + +2025-09-24 07:16:50,302 INFO toNotifyTaskSize = 0 + +2025-09-24 07:16:50,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:16:50,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:17:00,291 INFO [long-pulling] client count 0 + +2025-09-24 07:17:00,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:17:00,303 INFO toNotifyTaskSize = 0 + +2025-09-24 07:17:00,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:17:10,292 INFO [long-pulling] client count 0 + +2025-09-24 07:17:10,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:17:10,303 INFO toNotifyTaskSize = 0 + +2025-09-24 07:17:10,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:17:20,292 INFO [long-pulling] client count 0 + +2025-09-24 07:17:20,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:17:20,303 INFO toNotifyTaskSize = 0 + +2025-09-24 07:17:20,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:17:30,293 INFO [long-pulling] client count 0 + +2025-09-24 07:17:30,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:17:30,304 INFO toNotifyTaskSize = 0 + +2025-09-24 07:17:30,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:17:40,293 INFO [long-pulling] client count 0 + +2025-09-24 07:17:40,305 INFO toNotifyTaskSize = 0 + +2025-09-24 07:17:40,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:17:40,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:17:50,293 INFO [long-pulling] client count 0 + +2025-09-24 07:17:50,307 INFO toNotifyTaskSize = 0 + +2025-09-24 07:17:50,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:17:50,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:18:00,293 INFO [long-pulling] client count 0 + +2025-09-24 07:18:00,307 INFO toNotifyTaskSize = 0 + +2025-09-24 07:18:00,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:18:00,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:18:10,294 INFO [long-pulling] client count 0 + +2025-09-24 07:18:10,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:18:10,308 INFO toNotifyTaskSize = 0 + +2025-09-24 07:18:10,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:18:20,294 INFO [long-pulling] client count 0 + +2025-09-24 07:18:20,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:18:20,309 INFO toNotifyTaskSize = 0 + +2025-09-24 07:18:20,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:18:30,295 INFO [long-pulling] client count 0 + +2025-09-24 07:18:30,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:18:30,309 INFO toNotifyTaskSize = 0 + +2025-09-24 07:18:30,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:18:40,295 INFO [long-pulling] client count 0 + +2025-09-24 07:18:40,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:18:40,309 INFO toNotifyTaskSize = 0 + +2025-09-24 07:18:40,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:18:50,296 INFO [long-pulling] client count 0 + +2025-09-24 07:18:50,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:18:50,310 INFO toNotifyTaskSize = 0 + +2025-09-24 07:18:50,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:19:00,296 INFO [long-pulling] client count 0 + +2025-09-24 07:19:00,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:19:00,310 INFO toNotifyTaskSize = 0 + +2025-09-24 07:19:00,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:19:10,296 INFO [long-pulling] client count 0 + +2025-09-24 07:19:10,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:19:10,310 INFO toNotifyTaskSize = 0 + +2025-09-24 07:19:10,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:19:20,297 INFO [long-pulling] client count 0 + +2025-09-24 07:19:20,316 INFO toNotifyTaskSize = 0 + +2025-09-24 07:19:20,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:19:20,316 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:19:30,297 INFO [long-pulling] client count 0 + +2025-09-24 07:19:30,316 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:19:30,316 INFO toNotifyTaskSize = 0 + +2025-09-24 07:19:30,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:19:40,297 INFO [long-pulling] client count 0 + +2025-09-24 07:19:40,316 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:19:40,316 INFO toNotifyTaskSize = 0 + +2025-09-24 07:19:40,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:19:50,298 INFO [long-pulling] client count 0 + +2025-09-24 07:19:50,316 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:19:50,317 INFO toNotifyTaskSize = 0 + +2025-09-24 07:19:50,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:20:00,299 INFO [long-pulling] client count 0 + +2025-09-24 07:20:00,317 INFO toNotifyTaskSize = 0 + +2025-09-24 07:20:00,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:20:00,317 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:20:10,299 INFO [long-pulling] client count 0 + +2025-09-24 07:20:10,317 INFO toNotifyTaskSize = 0 + +2025-09-24 07:20:10,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:20:10,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:20:20,299 INFO [long-pulling] client count 0 + +2025-09-24 07:20:20,318 INFO toNotifyTaskSize = 0 + +2025-09-24 07:20:20,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:20:20,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:20:30,300 INFO [long-pulling] client count 0 + +2025-09-24 07:20:30,318 INFO toNotifyTaskSize = 0 + +2025-09-24 07:20:30,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:20:30,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:20:40,300 INFO [long-pulling] client count 0 + +2025-09-24 07:20:40,318 INFO toNotifyTaskSize = 0 + +2025-09-24 07:20:40,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:20:40,319 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:20:50,300 INFO [long-pulling] client count 0 + +2025-09-24 07:20:50,320 INFO toNotifyTaskSize = 0 + +2025-09-24 07:20:50,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:20:50,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:21:00,303 INFO [long-pulling] client count 0 + +2025-09-24 07:21:00,321 INFO toNotifyTaskSize = 0 + +2025-09-24 07:21:00,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:21:00,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:21:10,303 INFO [long-pulling] client count 0 + +2025-09-24 07:21:10,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:21:10,321 INFO toNotifyTaskSize = 0 + +2025-09-24 07:21:10,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:21:20,305 INFO [long-pulling] client count 0 + +2025-09-24 07:21:20,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:21:20,321 INFO toNotifyTaskSize = 0 + +2025-09-24 07:21:20,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:21:30,306 INFO [long-pulling] client count 0 + +2025-09-24 07:21:30,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:21:30,322 INFO toNotifyTaskSize = 0 + +2025-09-24 07:21:30,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:21:40,306 INFO [long-pulling] client count 0 + +2025-09-24 07:21:40,322 INFO toNotifyTaskSize = 0 + +2025-09-24 07:21:40,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:21:40,322 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:21:50,308 INFO [long-pulling] client count 0 + +2025-09-24 07:21:50,322 INFO toNotifyTaskSize = 0 + +2025-09-24 07:21:50,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:21:50,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:22:00,308 INFO [long-pulling] client count 0 + +2025-09-24 07:22:00,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:22:00,323 INFO toNotifyTaskSize = 0 + +2025-09-24 07:22:00,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:22:10,308 INFO [long-pulling] client count 0 + +2025-09-24 07:22:10,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:22:10,324 INFO toNotifyTaskSize = 0 + +2025-09-24 07:22:10,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:22:20,309 INFO [long-pulling] client count 0 + +2025-09-24 07:22:20,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:22:20,324 INFO toNotifyTaskSize = 0 + +2025-09-24 07:22:20,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:22:30,310 INFO [long-pulling] client count 0 + +2025-09-24 07:22:30,326 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:22:30,326 INFO toNotifyTaskSize = 0 + +2025-09-24 07:22:30,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:22:40,310 INFO [long-pulling] client count 0 + +2025-09-24 07:22:40,326 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:22:40,326 INFO toNotifyTaskSize = 0 + +2025-09-24 07:22:40,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:22:50,311 INFO [long-pulling] client count 0 + +2025-09-24 07:22:50,326 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:22:50,326 INFO toNotifyTaskSize = 0 + +2025-09-24 07:22:50,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:23:00,311 INFO [long-pulling] client count 0 + +2025-09-24 07:23:00,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:23:00,327 INFO toNotifyTaskSize = 0 + +2025-09-24 07:23:00,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:23:10,312 INFO [long-pulling] client count 0 + +2025-09-24 07:23:10,327 INFO toNotifyTaskSize = 0 + +2025-09-24 07:23:10,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:23:10,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:23:20,312 INFO [long-pulling] client count 0 + +2025-09-24 07:23:20,328 INFO toNotifyTaskSize = 0 + +2025-09-24 07:23:20,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:23:20,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:23:30,313 INFO [long-pulling] client count 0 + +2025-09-24 07:23:30,328 INFO toNotifyTaskSize = 0 + +2025-09-24 07:23:30,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:23:30,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:23:40,314 INFO [long-pulling] client count 0 + +2025-09-24 07:23:40,329 INFO toNotifyTaskSize = 0 + +2025-09-24 07:23:40,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:23:40,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:23:50,314 INFO [long-pulling] client count 0 + +2025-09-24 07:23:50,330 INFO toNotifyTaskSize = 0 + +2025-09-24 07:23:50,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:23:50,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:24:00,314 INFO [long-pulling] client count 0 + +2025-09-24 07:24:00,330 INFO toNotifyTaskSize = 0 + +2025-09-24 07:24:00,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:24:00,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:24:10,314 INFO [long-pulling] client count 0 + +2025-09-24 07:24:10,332 INFO toNotifyTaskSize = 0 + +2025-09-24 07:24:10,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:24:10,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:24:20,315 INFO [long-pulling] client count 0 + +2025-09-24 07:24:20,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:24:20,333 INFO toNotifyTaskSize = 0 + +2025-09-24 07:24:20,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:24:30,315 INFO [long-pulling] client count 0 + +2025-09-24 07:24:30,333 INFO toNotifyTaskSize = 0 + +2025-09-24 07:24:30,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:24:30,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:24:40,316 INFO [long-pulling] client count 0 + +2025-09-24 07:24:40,333 INFO toNotifyTaskSize = 0 + +2025-09-24 07:24:40,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:24:40,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:24:50,316 INFO [long-pulling] client count 0 + +2025-09-24 07:24:50,334 INFO toNotifyTaskSize = 0 + +2025-09-24 07:24:50,334 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:24:50,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:25:00,316 INFO [long-pulling] client count 0 + +2025-09-24 07:25:00,334 INFO toNotifyTaskSize = 0 + +2025-09-24 07:25:00,334 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:25:00,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:25:10,317 INFO [long-pulling] client count 0 + +2025-09-24 07:25:10,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:25:10,335 INFO toNotifyTaskSize = 0 + +2025-09-24 07:25:10,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:25:20,318 INFO [long-pulling] client count 0 + +2025-09-24 07:25:20,335 INFO toNotifyTaskSize = 0 + +2025-09-24 07:25:20,336 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:25:20,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:25:30,320 INFO [long-pulling] client count 0 + +2025-09-24 07:25:30,337 INFO toNotifyTaskSize = 0 + +2025-09-24 07:25:30,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:25:30,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:25:40,320 INFO [long-pulling] client count 0 + +2025-09-24 07:25:40,339 INFO toNotifyTaskSize = 0 + +2025-09-24 07:25:40,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:25:40,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:25:50,320 INFO [long-pulling] client count 0 + +2025-09-24 07:25:50,340 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:25:50,340 INFO toNotifyTaskSize = 0 + +2025-09-24 07:25:50,340 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:26:00,321 INFO [long-pulling] client count 0 + +2025-09-24 07:26:00,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:26:00,341 INFO toNotifyTaskSize = 0 + +2025-09-24 07:26:00,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:26:10,321 INFO [long-pulling] client count 0 + +2025-09-24 07:26:10,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:26:10,342 INFO toNotifyTaskSize = 0 + +2025-09-24 07:26:10,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:26:20,321 INFO [long-pulling] client count 0 + +2025-09-24 07:26:20,343 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:26:20,343 INFO toNotifyTaskSize = 0 + +2025-09-24 07:26:20,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:26:30,322 INFO [long-pulling] client count 0 + +2025-09-24 07:26:30,345 INFO toNotifyTaskSize = 0 + +2025-09-24 07:26:30,345 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:26:30,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:26:40,322 INFO [long-pulling] client count 0 + +2025-09-24 07:26:40,347 INFO toNotifyTaskSize = 0 + +2025-09-24 07:26:40,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:26:40,347 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:26:50,323 INFO [long-pulling] client count 0 + +2025-09-24 07:26:50,347 INFO toNotifyTaskSize = 0 + +2025-09-24 07:26:50,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:26:50,347 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:27:00,323 INFO [long-pulling] client count 0 + +2025-09-24 07:27:00,348 INFO toNotifyTaskSize = 0 + +2025-09-24 07:27:00,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:27:00,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:27:10,323 INFO [long-pulling] client count 0 + +2025-09-24 07:27:10,348 INFO toNotifyTaskSize = 0 + +2025-09-24 07:27:10,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:27:10,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:27:20,324 INFO [long-pulling] client count 0 + +2025-09-24 07:27:20,349 INFO toNotifyTaskSize = 0 + +2025-09-24 07:27:20,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:27:20,349 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:27:30,324 INFO [long-pulling] client count 0 + +2025-09-24 07:27:30,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:27:30,350 INFO toNotifyTaskSize = 0 + +2025-09-24 07:27:30,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:27:40,324 INFO [long-pulling] client count 0 + +2025-09-24 07:27:40,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:27:40,350 INFO toNotifyTaskSize = 0 + +2025-09-24 07:27:40,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:27:50,324 INFO [long-pulling] client count 0 + +2025-09-24 07:27:50,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:27:50,352 INFO toNotifyTaskSize = 0 + +2025-09-24 07:27:50,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:28:00,325 INFO [long-pulling] client count 0 + +2025-09-24 07:28:00,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:28:00,354 INFO toNotifyTaskSize = 0 + +2025-09-24 07:28:00,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:28:10,325 INFO [long-pulling] client count 0 + +2025-09-24 07:28:10,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:28:10,356 INFO toNotifyTaskSize = 0 + +2025-09-24 07:28:10,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:28:20,325 INFO [long-pulling] client count 0 + +2025-09-24 07:28:20,357 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:28:20,357 INFO toNotifyTaskSize = 0 + +2025-09-24 07:28:20,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:28:30,327 INFO [long-pulling] client count 0 + +2025-09-24 07:28:30,358 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:28:30,358 INFO toNotifyTaskSize = 0 + +2025-09-24 07:28:30,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:28:40,327 INFO [long-pulling] client count 0 + +2025-09-24 07:28:40,358 INFO toNotifyTaskSize = 0 + +2025-09-24 07:28:40,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:28:40,358 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:28:50,327 INFO [long-pulling] client count 0 + +2025-09-24 07:28:50,359 INFO toNotifyTaskSize = 0 + +2025-09-24 07:28:50,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:28:50,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:29:00,328 INFO [long-pulling] client count 0 + +2025-09-24 07:29:00,359 INFO toNotifyTaskSize = 0 + +2025-09-24 07:29:00,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:29:00,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:29:10,328 INFO [long-pulling] client count 0 + +2025-09-24 07:29:10,360 INFO toNotifyTaskSize = 0 + +2025-09-24 07:29:10,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:29:10,360 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:29:20,329 INFO [long-pulling] client count 0 + +2025-09-24 07:29:20,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:29:20,361 INFO toNotifyTaskSize = 0 + +2025-09-24 07:29:20,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:29:30,330 INFO [long-pulling] client count 0 + +2025-09-24 07:29:30,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:29:30,361 INFO toNotifyTaskSize = 0 + +2025-09-24 07:29:30,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:29:40,330 INFO [long-pulling] client count 0 + +2025-09-24 07:29:40,362 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:29:40,362 INFO toNotifyTaskSize = 0 + +2025-09-24 07:29:40,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:29:50,331 INFO [long-pulling] client count 0 + +2025-09-24 07:29:50,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:29:50,363 INFO toNotifyTaskSize = 0 + +2025-09-24 07:29:50,363 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:30:00,332 INFO [long-pulling] client count 0 + +2025-09-24 07:30:00,364 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:30:00,364 INFO toNotifyTaskSize = 0 + +2025-09-24 07:30:00,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:30:10,332 INFO [long-pulling] client count 0 + +2025-09-24 07:30:10,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:30:10,365 INFO toNotifyTaskSize = 0 + +2025-09-24 07:30:10,365 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:30:20,333 INFO [long-pulling] client count 0 + +2025-09-24 07:30:20,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:30:20,366 INFO toNotifyTaskSize = 0 + +2025-09-24 07:30:20,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:30:30,333 INFO [long-pulling] client count 0 + +2025-09-24 07:30:30,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:30:30,368 INFO toNotifyTaskSize = 0 + +2025-09-24 07:30:30,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:30:40,335 INFO [long-pulling] client count 0 + +2025-09-24 07:30:40,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:30:40,370 INFO toNotifyTaskSize = 0 + +2025-09-24 07:30:40,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:30:50,335 INFO [long-pulling] client count 0 + +2025-09-24 07:30:50,372 INFO toNotifyTaskSize = 0 + +2025-09-24 07:30:50,372 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:30:50,372 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:31:00,336 INFO [long-pulling] client count 0 + +2025-09-24 07:31:00,373 INFO toNotifyTaskSize = 0 + +2025-09-24 07:31:00,373 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:31:00,373 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:31:10,336 INFO [long-pulling] client count 0 + +2025-09-24 07:31:10,373 INFO toNotifyTaskSize = 0 + +2025-09-24 07:31:10,373 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:31:10,373 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:31:20,337 INFO [long-pulling] client count 0 + +2025-09-24 07:31:20,375 INFO toNotifyTaskSize = 0 + +2025-09-24 07:31:20,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:31:20,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:31:30,337 INFO [long-pulling] client count 0 + +2025-09-24 07:31:30,376 INFO toNotifyTaskSize = 0 + +2025-09-24 07:31:30,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:31:30,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:31:40,338 INFO [long-pulling] client count 0 + +2025-09-24 07:31:40,376 INFO toNotifyTaskSize = 0 + +2025-09-24 07:31:40,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:31:40,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:31:50,339 INFO [long-pulling] client count 0 + +2025-09-24 07:31:50,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:31:50,378 INFO toNotifyTaskSize = 0 + +2025-09-24 07:31:50,378 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:32:00,339 INFO [long-pulling] client count 0 + +2025-09-24 07:32:00,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:32:00,378 INFO toNotifyTaskSize = 0 + +2025-09-24 07:32:00,378 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:32:10,340 INFO [long-pulling] client count 0 + +2025-09-24 07:32:10,379 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:32:10,379 INFO toNotifyTaskSize = 0 + +2025-09-24 07:32:10,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:32:20,341 INFO [long-pulling] client count 0 + +2025-09-24 07:32:20,380 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:32:20,380 INFO toNotifyTaskSize = 0 + +2025-09-24 07:32:20,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:32:30,345 INFO [long-pulling] client count 0 + +2025-09-24 07:32:30,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:32:30,382 INFO toNotifyTaskSize = 0 + +2025-09-24 07:32:30,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:32:40,364 INFO [long-pulling] client count 0 + +2025-09-24 07:32:40,389 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:32:40,389 INFO toNotifyTaskSize = 0 + +2025-09-24 07:32:40,390 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:32:50,365 INFO [long-pulling] client count 0 + +2025-09-24 07:32:50,390 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:32:50,390 INFO toNotifyTaskSize = 0 + +2025-09-24 07:32:50,390 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:33:00,366 INFO [long-pulling] client count 0 + +2025-09-24 07:33:00,391 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:33:00,391 INFO toNotifyTaskSize = 0 + +2025-09-24 07:33:00,391 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:33:10,368 INFO [long-pulling] client count 0 + +2025-09-24 07:33:10,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:33:10,392 INFO toNotifyTaskSize = 0 + +2025-09-24 07:33:10,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:33:20,369 INFO [long-pulling] client count 0 + +2025-09-24 07:33:20,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:33:20,394 INFO toNotifyTaskSize = 0 + +2025-09-24 07:33:20,394 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:33:30,370 INFO [long-pulling] client count 0 + +2025-09-24 07:33:30,395 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:33:30,395 INFO toNotifyTaskSize = 0 + +2025-09-24 07:33:30,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:33:40,372 INFO [long-pulling] client count 0 + +2025-09-24 07:33:40,396 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:33:40,397 INFO toNotifyTaskSize = 0 + +2025-09-24 07:33:40,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:33:50,373 INFO [long-pulling] client count 0 + +2025-09-24 07:33:50,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:33:50,399 INFO toNotifyTaskSize = 0 + +2025-09-24 07:33:50,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:34:00,374 INFO [long-pulling] client count 0 + +2025-09-24 07:34:00,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:34:00,399 INFO toNotifyTaskSize = 0 + +2025-09-24 07:34:00,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:34:10,374 INFO [long-pulling] client count 0 + +2025-09-24 07:34:10,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:34:10,401 INFO toNotifyTaskSize = 0 + +2025-09-24 07:34:10,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:34:20,376 INFO [long-pulling] client count 0 + +2025-09-24 07:34:20,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:34:20,401 INFO toNotifyTaskSize = 0 + +2025-09-24 07:34:20,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:34:30,377 INFO [long-pulling] client count 0 + +2025-09-24 07:34:30,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:34:30,403 INFO toNotifyTaskSize = 0 + +2025-09-24 07:34:30,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:34:40,379 INFO [long-pulling] client count 0 + +2025-09-24 07:34:40,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:34:40,405 INFO toNotifyTaskSize = 0 + +2025-09-24 07:34:40,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:34:50,380 INFO [long-pulling] client count 0 + +2025-09-24 07:34:50,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:34:50,405 INFO toNotifyTaskSize = 0 + +2025-09-24 07:34:50,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:35:00,382 INFO [long-pulling] client count 0 + +2025-09-24 07:35:00,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:35:00,406 INFO toNotifyTaskSize = 0 + +2025-09-24 07:35:00,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:35:10,383 INFO [long-pulling] client count 0 + +2025-09-24 07:35:10,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:35:10,406 INFO toNotifyTaskSize = 0 + +2025-09-24 07:35:10,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:35:20,383 INFO [long-pulling] client count 0 + +2025-09-24 07:35:20,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:35:20,407 INFO toNotifyTaskSize = 0 + +2025-09-24 07:35:20,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:35:30,384 INFO [long-pulling] client count 0 + +2025-09-24 07:35:30,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:35:30,407 INFO toNotifyTaskSize = 0 + +2025-09-24 07:35:30,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:35:40,386 INFO [long-pulling] client count 0 + +2025-09-24 07:35:40,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:35:40,407 INFO toNotifyTaskSize = 0 + +2025-09-24 07:35:40,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:35:50,387 INFO [long-pulling] client count 0 + +2025-09-24 07:35:50,408 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:35:50,411 INFO toNotifyTaskSize = 0 + +2025-09-24 07:35:50,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:36:00,388 INFO [long-pulling] client count 0 + +2025-09-24 07:36:00,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:36:00,411 INFO toNotifyTaskSize = 0 + +2025-09-24 07:36:00,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:36:10,389 INFO [long-pulling] client count 0 + +2025-09-24 07:36:10,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:36:10,412 INFO toNotifyTaskSize = 0 + +2025-09-24 07:36:10,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:36:20,392 INFO [long-pulling] client count 0 + +2025-09-24 07:36:20,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:36:20,413 INFO toNotifyTaskSize = 0 + +2025-09-24 07:36:20,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:36:30,392 INFO [long-pulling] client count 0 + +2025-09-24 07:36:30,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:36:30,415 INFO toNotifyTaskSize = 0 + +2025-09-24 07:36:30,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:36:40,393 INFO [long-pulling] client count 0 + +2025-09-24 07:36:40,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:36:40,416 INFO toNotifyTaskSize = 0 + +2025-09-24 07:36:40,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:36:50,395 INFO [long-pulling] client count 0 + +2025-09-24 07:36:50,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:36:50,416 INFO toNotifyTaskSize = 0 + +2025-09-24 07:36:50,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:37:00,397 INFO [long-pulling] client count 0 + +2025-09-24 07:37:00,417 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:37:00,417 INFO toNotifyTaskSize = 0 + +2025-09-24 07:37:00,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:37:10,398 INFO [long-pulling] client count 0 + +2025-09-24 07:37:10,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:37:10,419 INFO toNotifyTaskSize = 0 + +2025-09-24 07:37:10,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:37:20,400 INFO [long-pulling] client count 0 + +2025-09-24 07:37:20,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:37:20,420 INFO toNotifyTaskSize = 0 + +2025-09-24 07:37:20,420 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:37:30,401 INFO [long-pulling] client count 0 + +2025-09-24 07:37:30,421 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:37:30,421 INFO toNotifyTaskSize = 0 + +2025-09-24 07:37:30,421 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:37:40,404 INFO [long-pulling] client count 0 + +2025-09-24 07:37:40,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:37:40,423 INFO toNotifyTaskSize = 0 + +2025-09-24 07:37:40,424 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:37:50,406 INFO [long-pulling] client count 0 + +2025-09-24 07:37:50,424 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:37:50,424 INFO toNotifyTaskSize = 0 + +2025-09-24 07:37:50,424 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:38:00,408 INFO [long-pulling] client count 0 + +2025-09-24 07:38:00,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:38:00,425 INFO toNotifyTaskSize = 0 + +2025-09-24 07:38:00,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:38:10,410 INFO [long-pulling] client count 0 + +2025-09-24 07:38:10,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:38:10,426 INFO toNotifyTaskSize = 0 + +2025-09-24 07:38:10,426 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:38:20,420 INFO [long-pulling] client count 0 + +2025-09-24 07:38:20,426 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:38:20,426 INFO toNotifyTaskSize = 0 + +2025-09-24 07:38:20,426 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:38:30,421 INFO [long-pulling] client count 0 + +2025-09-24 07:38:30,428 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:38:30,428 INFO toNotifyTaskSize = 0 + +2025-09-24 07:38:30,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:38:40,423 INFO [long-pulling] client count 0 + +2025-09-24 07:38:40,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:38:40,431 INFO toNotifyTaskSize = 0 + +2025-09-24 07:38:40,431 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:38:50,425 INFO [long-pulling] client count 0 + +2025-09-24 07:38:50,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:38:50,431 INFO toNotifyTaskSize = 0 + +2025-09-24 07:38:50,431 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:39:00,426 INFO [long-pulling] client count 0 + +2025-09-24 07:39:00,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:39:00,432 INFO toNotifyTaskSize = 0 + +2025-09-24 07:39:00,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:39:10,426 INFO [long-pulling] client count 0 + +2025-09-24 07:39:10,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:39:10,434 INFO toNotifyTaskSize = 0 + +2025-09-24 07:39:10,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:39:20,426 INFO [long-pulling] client count 0 + +2025-09-24 07:39:20,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:39:20,434 INFO toNotifyTaskSize = 0 + +2025-09-24 07:39:20,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:39:30,429 INFO [long-pulling] client count 0 + +2025-09-24 07:39:30,435 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:39:30,435 INFO toNotifyTaskSize = 0 + +2025-09-24 07:39:30,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:39:40,429 INFO [long-pulling] client count 0 + +2025-09-24 07:39:40,435 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:39:40,435 INFO toNotifyTaskSize = 0 + +2025-09-24 07:39:40,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:39:50,430 INFO [long-pulling] client count 0 + +2025-09-24 07:39:50,436 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:39:50,436 INFO toNotifyTaskSize = 0 + +2025-09-24 07:39:50,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:40:00,430 INFO [long-pulling] client count 0 + +2025-09-24 07:40:00,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:40:00,437 INFO toNotifyTaskSize = 0 + +2025-09-24 07:40:00,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:40:10,431 INFO [long-pulling] client count 0 + +2025-09-24 07:40:10,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:40:10,437 INFO toNotifyTaskSize = 0 + +2025-09-24 07:40:10,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:40:20,432 INFO [long-pulling] client count 0 + +2025-09-24 07:40:20,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:40:20,439 INFO toNotifyTaskSize = 0 + +2025-09-24 07:40:20,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:40:30,433 INFO [long-pulling] client count 0 + +2025-09-24 07:40:30,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:40:30,439 INFO toNotifyTaskSize = 0 + +2025-09-24 07:40:30,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:40:40,433 INFO [long-pulling] client count 0 + +2025-09-24 07:40:40,440 INFO toNotifyTaskSize = 0 + +2025-09-24 07:40:40,440 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:40:40,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:40:50,434 INFO [long-pulling] client count 0 + +2025-09-24 07:40:50,440 INFO toNotifyTaskSize = 0 + +2025-09-24 07:40:50,440 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:40:50,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:41:00,434 INFO [long-pulling] client count 0 + +2025-09-24 07:41:00,441 INFO toNotifyTaskSize = 0 + +2025-09-24 07:41:00,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:41:00,441 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:41:10,435 INFO [long-pulling] client count 0 + +2025-09-24 07:41:10,441 INFO toNotifyTaskSize = 0 + +2025-09-24 07:41:10,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:41:10,441 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:41:20,435 INFO [long-pulling] client count 0 + +2025-09-24 07:41:20,442 INFO toNotifyTaskSize = 0 + +2025-09-24 07:41:20,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:41:20,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:41:30,436 INFO [long-pulling] client count 0 + +2025-09-24 07:41:30,442 INFO toNotifyTaskSize = 0 + +2025-09-24 07:41:30,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:41:30,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:41:40,437 INFO [long-pulling] client count 0 + +2025-09-24 07:41:40,443 INFO toNotifyTaskSize = 0 + +2025-09-24 07:41:40,443 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:41:40,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:41:50,439 INFO [long-pulling] client count 0 + +2025-09-24 07:41:50,444 INFO toNotifyTaskSize = 0 + +2025-09-24 07:41:50,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:41:50,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:42:00,439 INFO [long-pulling] client count 0 + +2025-09-24 07:42:00,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:42:00,447 INFO toNotifyTaskSize = 0 + +2025-09-24 07:42:00,447 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:42:10,440 INFO [long-pulling] client count 0 + +2025-09-24 07:42:10,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:42:10,449 INFO toNotifyTaskSize = 0 + +2025-09-24 07:42:10,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:42:20,441 INFO [long-pulling] client count 0 + +2025-09-24 07:42:20,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:42:20,449 INFO toNotifyTaskSize = 0 + +2025-09-24 07:42:20,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:42:30,443 INFO [long-pulling] client count 0 + +2025-09-24 07:42:30,451 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:42:30,451 INFO toNotifyTaskSize = 0 + +2025-09-24 07:42:30,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:42:40,445 INFO [long-pulling] client count 0 + +2025-09-24 07:42:40,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:42:40,453 INFO toNotifyTaskSize = 0 + +2025-09-24 07:42:40,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:42:50,445 INFO [long-pulling] client count 0 + +2025-09-24 07:42:50,455 INFO toNotifyTaskSize = 0 + +2025-09-24 07:42:50,455 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:42:50,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:43:00,446 INFO [long-pulling] client count 0 + +2025-09-24 07:43:00,455 INFO toNotifyTaskSize = 0 + +2025-09-24 07:43:00,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:43:00,456 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:43:10,447 INFO [long-pulling] client count 0 + +2025-09-24 07:43:10,458 INFO toNotifyTaskSize = 0 + +2025-09-24 07:43:10,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:43:10,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:43:20,447 INFO [long-pulling] client count 0 + +2025-09-24 07:43:20,460 INFO toNotifyTaskSize = 0 + +2025-09-24 07:43:20,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:43:20,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:43:30,448 INFO [long-pulling] client count 0 + +2025-09-24 07:43:30,461 INFO toNotifyTaskSize = 0 + +2025-09-24 07:43:30,461 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:43:30,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:43:40,449 INFO [long-pulling] client count 0 + +2025-09-24 07:43:40,463 INFO toNotifyTaskSize = 0 + +2025-09-24 07:43:40,463 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:43:40,463 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:43:50,451 INFO [long-pulling] client count 0 + +2025-09-24 07:43:50,464 INFO toNotifyTaskSize = 0 + +2025-09-24 07:43:50,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:43:50,464 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:44:00,452 INFO [long-pulling] client count 0 + +2025-09-24 07:44:00,464 INFO toNotifyTaskSize = 0 + +2025-09-24 07:44:00,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:44:00,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:44:10,454 INFO [long-pulling] client count 0 + +2025-09-24 07:44:10,466 INFO toNotifyTaskSize = 0 + +2025-09-24 07:44:10,467 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:44:10,467 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:44:20,455 INFO [long-pulling] client count 0 + +2025-09-24 07:44:20,467 INFO toNotifyTaskSize = 0 + +2025-09-24 07:44:20,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:44:20,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:44:30,455 INFO [long-pulling] client count 0 + +2025-09-24 07:44:30,468 INFO toNotifyTaskSize = 0 + +2025-09-24 07:44:30,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:44:30,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:44:40,457 INFO [long-pulling] client count 0 + +2025-09-24 07:44:40,469 INFO toNotifyTaskSize = 0 + +2025-09-24 07:44:40,469 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:44:40,469 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:44:50,459 INFO [long-pulling] client count 0 + +2025-09-24 07:44:50,471 INFO toNotifyTaskSize = 0 + +2025-09-24 07:44:50,471 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:44:50,471 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:45:00,459 INFO [long-pulling] client count 0 + +2025-09-24 07:45:00,471 INFO toNotifyTaskSize = 0 + +2025-09-24 07:45:00,471 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:45:00,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:45:10,461 INFO [long-pulling] client count 0 + +2025-09-24 07:45:10,472 INFO toNotifyTaskSize = 0 + +2025-09-24 07:45:10,472 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:45:10,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:45:20,461 INFO [long-pulling] client count 0 + +2025-09-24 07:45:20,473 INFO toNotifyTaskSize = 0 + +2025-09-24 07:45:20,473 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:45:20,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:45:30,461 INFO [long-pulling] client count 0 + +2025-09-24 07:45:30,473 INFO toNotifyTaskSize = 0 + +2025-09-24 07:45:30,473 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:45:30,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:45:40,462 INFO [long-pulling] client count 0 + +2025-09-24 07:45:40,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:45:40,474 INFO toNotifyTaskSize = 0 + +2025-09-24 07:45:40,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:45:50,464 INFO [long-pulling] client count 0 + +2025-09-24 07:45:50,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:45:50,476 INFO toNotifyTaskSize = 0 + +2025-09-24 07:45:50,476 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:46:00,466 INFO [long-pulling] client count 0 + +2025-09-24 07:46:00,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:46:00,477 INFO toNotifyTaskSize = 0 + +2025-09-24 07:46:00,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:46:10,466 INFO [long-pulling] client count 0 + +2025-09-24 07:46:10,478 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:46:10,478 INFO toNotifyTaskSize = 0 + +2025-09-24 07:46:10,478 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:46:20,467 INFO [long-pulling] client count 0 + +2025-09-24 07:46:20,480 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:46:20,480 INFO toNotifyTaskSize = 0 + +2025-09-24 07:46:20,480 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:46:30,470 INFO [long-pulling] client count 0 + +2025-09-24 07:46:30,481 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:46:30,481 INFO toNotifyTaskSize = 0 + +2025-09-24 07:46:30,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:46:40,472 INFO [long-pulling] client count 0 + +2025-09-24 07:46:40,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:46:40,482 INFO toNotifyTaskSize = 0 + +2025-09-24 07:46:40,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:46:50,473 INFO [long-pulling] client count 0 + +2025-09-24 07:46:50,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:46:50,483 INFO toNotifyTaskSize = 0 + +2025-09-24 07:46:50,483 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:47:00,475 INFO [long-pulling] client count 0 + +2025-09-24 07:47:00,483 INFO toNotifyTaskSize = 0 + +2025-09-24 07:47:00,483 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:47:00,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:47:10,477 INFO [long-pulling] client count 0 + +2025-09-24 07:47:10,485 INFO toNotifyTaskSize = 0 + +2025-09-24 07:47:10,485 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:47:10,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:47:20,479 INFO [long-pulling] client count 0 + +2025-09-24 07:47:20,487 INFO toNotifyTaskSize = 0 + +2025-09-24 07:47:20,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:47:20,487 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:47:30,479 INFO [long-pulling] client count 0 + +2025-09-24 07:47:30,488 INFO toNotifyTaskSize = 0 + +2025-09-24 07:47:30,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:47:30,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:47:40,481 INFO [long-pulling] client count 0 + +2025-09-24 07:47:40,488 INFO toNotifyTaskSize = 0 + +2025-09-24 07:47:40,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:47:40,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:47:50,482 INFO [long-pulling] client count 0 + +2025-09-24 07:47:50,489 INFO toNotifyTaskSize = 0 + +2025-09-24 07:47:50,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:47:50,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:48:00,483 INFO [long-pulling] client count 0 + +2025-09-24 07:48:00,490 INFO toNotifyTaskSize = 0 + +2025-09-24 07:48:00,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:48:00,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:48:10,486 INFO [long-pulling] client count 0 + +2025-09-24 07:48:10,490 INFO toNotifyTaskSize = 0 + +2025-09-24 07:48:10,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:48:10,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:48:20,486 INFO [long-pulling] client count 0 + +2025-09-24 07:48:20,490 INFO toNotifyTaskSize = 0 + +2025-09-24 07:48:20,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:48:20,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:48:30,486 INFO [long-pulling] client count 0 + +2025-09-24 07:48:30,491 INFO toNotifyTaskSize = 0 + +2025-09-24 07:48:30,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:48:30,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:48:40,486 INFO [long-pulling] client count 0 + +2025-09-24 07:48:40,492 INFO toNotifyTaskSize = 0 + +2025-09-24 07:48:40,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:48:40,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:48:50,488 INFO [long-pulling] client count 0 + +2025-09-24 07:48:50,493 INFO toNotifyTaskSize = 0 + +2025-09-24 07:48:50,493 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:48:50,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:49:00,488 INFO [long-pulling] client count 0 + +2025-09-24 07:49:00,495 INFO toNotifyTaskSize = 0 + +2025-09-24 07:49:00,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:49:00,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:49:10,490 INFO [long-pulling] client count 0 + +2025-09-24 07:49:10,496 INFO toNotifyTaskSize = 0 + +2025-09-24 07:49:10,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:49:10,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:49:20,492 INFO [long-pulling] client count 0 + +2025-09-24 07:49:20,496 INFO toNotifyTaskSize = 0 + +2025-09-24 07:49:20,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:49:20,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:49:30,493 INFO [long-pulling] client count 0 + +2025-09-24 07:49:30,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:49:30,497 INFO toNotifyTaskSize = 0 + +2025-09-24 07:49:30,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:49:40,494 INFO [long-pulling] client count 0 + +2025-09-24 07:49:40,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:49:40,499 INFO toNotifyTaskSize = 0 + +2025-09-24 07:49:40,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:49:50,495 INFO [long-pulling] client count 0 + +2025-09-24 07:49:50,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:49:50,499 INFO toNotifyTaskSize = 0 + +2025-09-24 07:49:50,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:50:00,495 INFO [long-pulling] client count 0 + +2025-09-24 07:50:00,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:50:00,500 INFO toNotifyTaskSize = 0 + +2025-09-24 07:50:00,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:50:10,495 INFO [long-pulling] client count 0 + +2025-09-24 07:50:10,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:50:10,500 INFO toNotifyTaskSize = 0 + +2025-09-24 07:50:10,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:50:20,496 INFO [long-pulling] client count 0 + +2025-09-24 07:50:20,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:50:20,500 INFO toNotifyTaskSize = 0 + +2025-09-24 07:50:20,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:50:30,496 INFO [long-pulling] client count 0 + +2025-09-24 07:50:30,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:50:30,500 INFO toNotifyTaskSize = 0 + +2025-09-24 07:50:30,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:50:40,497 INFO [long-pulling] client count 0 + +2025-09-24 07:50:40,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:50:40,501 INFO toNotifyTaskSize = 0 + +2025-09-24 07:50:40,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:50:50,497 INFO [long-pulling] client count 0 + +2025-09-24 07:50:50,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:50:50,501 INFO toNotifyTaskSize = 0 + +2025-09-24 07:50:50,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:51:00,497 INFO [long-pulling] client count 0 + +2025-09-24 07:51:00,504 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:51:00,504 INFO toNotifyTaskSize = 0 + +2025-09-24 07:51:00,504 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:51:10,498 INFO [long-pulling] client count 0 + +2025-09-24 07:51:10,504 INFO toNotifyTaskSize = 0 + +2025-09-24 07:51:10,504 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:51:10,504 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:51:20,498 INFO [long-pulling] client count 0 + +2025-09-24 07:51:20,504 INFO toNotifyTaskSize = 0 + +2025-09-24 07:51:20,504 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:51:20,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:51:30,499 INFO [long-pulling] client count 0 + +2025-09-24 07:51:30,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:51:30,505 INFO toNotifyTaskSize = 0 + +2025-09-24 07:51:30,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:51:40,500 INFO [long-pulling] client count 0 + +2025-09-24 07:51:40,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:51:40,505 INFO toNotifyTaskSize = 0 + +2025-09-24 07:51:40,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:51:50,500 INFO [long-pulling] client count 0 + +2025-09-24 07:51:50,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:51:50,505 INFO toNotifyTaskSize = 0 + +2025-09-24 07:51:50,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:52:00,501 INFO [long-pulling] client count 0 + +2025-09-24 07:52:00,507 INFO toNotifyTaskSize = 0 + +2025-09-24 07:52:00,507 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:52:00,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:52:10,501 INFO [long-pulling] client count 0 + +2025-09-24 07:52:10,507 INFO toNotifyTaskSize = 0 + +2025-09-24 07:52:10,507 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:52:10,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:52:20,501 INFO [long-pulling] client count 0 + +2025-09-24 07:52:20,508 INFO toNotifyTaskSize = 0 + +2025-09-24 07:52:20,508 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:52:20,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:52:30,502 INFO [long-pulling] client count 0 + +2025-09-24 07:52:30,508 INFO toNotifyTaskSize = 0 + +2025-09-24 07:52:30,508 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:52:30,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:52:40,503 INFO [long-pulling] client count 0 + +2025-09-24 07:52:40,509 INFO toNotifyTaskSize = 0 + +2025-09-24 07:52:40,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:52:40,509 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:52:50,504 INFO [long-pulling] client count 0 + +2025-09-24 07:52:50,510 INFO toNotifyTaskSize = 0 + +2025-09-24 07:52:50,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:52:50,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:53:00,504 INFO [long-pulling] client count 0 + +2025-09-24 07:53:00,510 INFO toNotifyTaskSize = 0 + +2025-09-24 07:53:00,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:53:00,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:53:10,504 INFO [long-pulling] client count 0 + +2025-09-24 07:53:10,511 INFO toNotifyTaskSize = 0 + +2025-09-24 07:53:10,511 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:53:10,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:53:20,504 INFO [long-pulling] client count 0 + +2025-09-24 07:53:20,512 INFO toNotifyTaskSize = 0 + +2025-09-24 07:53:20,512 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:53:20,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:53:30,505 INFO [long-pulling] client count 0 + +2025-09-24 07:53:30,513 INFO toNotifyTaskSize = 0 + +2025-09-24 07:53:30,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:53:30,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:53:40,506 INFO [long-pulling] client count 0 + +2025-09-24 07:53:40,513 INFO toNotifyTaskSize = 0 + +2025-09-24 07:53:40,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:53:40,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:53:50,506 INFO [long-pulling] client count 0 + +2025-09-24 07:53:50,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:53:50,514 INFO toNotifyTaskSize = 0 + +2025-09-24 07:53:50,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:54:00,507 INFO [long-pulling] client count 0 + +2025-09-24 07:54:00,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:54:00,514 INFO toNotifyTaskSize = 0 + +2025-09-24 07:54:00,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:54:10,507 INFO [long-pulling] client count 0 + +2025-09-24 07:54:10,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:54:10,514 INFO toNotifyTaskSize = 0 + +2025-09-24 07:54:10,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:54:20,508 INFO [long-pulling] client count 0 + +2025-09-24 07:54:20,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:54:20,514 INFO toNotifyTaskSize = 0 + +2025-09-24 07:54:20,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:54:30,508 INFO [long-pulling] client count 0 + +2025-09-24 07:54:30,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:54:30,515 INFO toNotifyTaskSize = 0 + +2025-09-24 07:54:30,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:54:40,511 INFO [long-pulling] client count 0 + +2025-09-24 07:54:40,515 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:54:40,515 INFO toNotifyTaskSize = 0 + +2025-09-24 07:54:40,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:54:50,511 INFO [long-pulling] client count 0 + +2025-09-24 07:54:50,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:54:50,517 INFO toNotifyTaskSize = 0 + +2025-09-24 07:54:50,517 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:55:00,512 INFO [long-pulling] client count 0 + +2025-09-24 07:55:00,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:55:00,519 INFO toNotifyTaskSize = 0 + +2025-09-24 07:55:00,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:55:10,515 INFO [long-pulling] client count 0 + +2025-09-24 07:55:10,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:55:10,519 INFO toNotifyTaskSize = 0 + +2025-09-24 07:55:10,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:55:20,517 INFO [long-pulling] client count 0 + +2025-09-24 07:55:20,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:55:20,520 INFO toNotifyTaskSize = 0 + +2025-09-24 07:55:20,520 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:55:30,517 INFO [long-pulling] client count 0 + +2025-09-24 07:55:30,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:55:30,521 INFO toNotifyTaskSize = 0 + +2025-09-24 07:55:30,521 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:55:40,518 INFO [long-pulling] client count 0 + +2025-09-24 07:55:40,523 INFO toNotifyTaskSize = 0 + +2025-09-24 07:55:40,523 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:55:40,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:55:50,520 INFO [long-pulling] client count 0 + +2025-09-24 07:55:50,525 INFO toNotifyTaskSize = 0 + +2025-09-24 07:55:50,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:55:50,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:56:00,521 INFO [long-pulling] client count 0 + +2025-09-24 07:56:00,525 INFO toNotifyTaskSize = 0 + +2025-09-24 07:56:00,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:56:00,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:56:10,522 INFO [long-pulling] client count 0 + +2025-09-24 07:56:10,527 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:56:10,527 INFO toNotifyTaskSize = 0 + +2025-09-24 07:56:10,527 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:56:20,524 INFO [long-pulling] client count 0 + +2025-09-24 07:56:20,528 INFO toNotifyTaskSize = 0 + +2025-09-24 07:56:20,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:56:20,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:56:30,524 INFO [long-pulling] client count 0 + +2025-09-24 07:56:30,529 INFO toNotifyTaskSize = 0 + +2025-09-24 07:56:30,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:56:30,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:56:40,525 INFO [long-pulling] client count 0 + +2025-09-24 07:56:40,529 INFO toNotifyTaskSize = 0 + +2025-09-24 07:56:40,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:56:40,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:56:50,526 INFO [long-pulling] client count 0 + +2025-09-24 07:56:50,530 INFO toNotifyTaskSize = 0 + +2025-09-24 07:56:50,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:56:50,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:57:00,528 INFO [long-pulling] client count 0 + +2025-09-24 07:57:00,532 INFO toNotifyTaskSize = 0 + +2025-09-24 07:57:00,532 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:57:00,532 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:57:10,529 INFO [long-pulling] client count 0 + +2025-09-24 07:57:10,532 INFO toNotifyTaskSize = 0 + +2025-09-24 07:57:10,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:57:10,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:57:20,529 INFO [long-pulling] client count 0 + +2025-09-24 07:57:20,535 INFO toNotifyTaskSize = 0 + +2025-09-24 07:57:20,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:57:20,535 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:57:30,531 INFO [long-pulling] client count 0 + +2025-09-24 07:57:30,536 INFO toNotifyTaskSize = 0 + +2025-09-24 07:57:30,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:57:30,537 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:57:40,533 INFO [long-pulling] client count 0 + +2025-09-24 07:57:40,539 INFO toNotifyTaskSize = 0 + +2025-09-24 07:57:40,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:57:40,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:57:50,534 INFO [long-pulling] client count 0 + +2025-09-24 07:57:50,539 INFO toNotifyTaskSize = 0 + +2025-09-24 07:57:50,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:57:50,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:58:00,535 INFO [long-pulling] client count 0 + +2025-09-24 07:58:00,541 INFO toNotifyTaskSize = 0 + +2025-09-24 07:58:00,541 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:58:00,541 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:58:10,537 INFO [long-pulling] client count 0 + +2025-09-24 07:58:10,542 INFO toNotifyTaskSize = 0 + +2025-09-24 07:58:10,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:58:10,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:58:20,538 INFO [long-pulling] client count 0 + +2025-09-24 07:58:20,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:58:20,544 INFO toNotifyTaskSize = 0 + +2025-09-24 07:58:20,544 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:58:30,539 INFO [long-pulling] client count 0 + +2025-09-24 07:58:30,544 INFO toNotifyTaskSize = 0 + +2025-09-24 07:58:30,544 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:58:30,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:58:40,540 INFO [long-pulling] client count 0 + +2025-09-24 07:58:40,544 INFO toNotifyTaskSize = 0 + +2025-09-24 07:58:40,544 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:58:40,560 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:58:50,541 INFO [long-pulling] client count 0 + +2025-09-24 07:58:50,547 INFO toNotifyTaskSize = 0 + +2025-09-24 07:58:50,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:58:50,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:59:00,542 INFO [long-pulling] client count 0 + +2025-09-24 07:59:00,548 INFO toNotifyTaskSize = 0 + +2025-09-24 07:59:00,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:59:00,564 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:59:10,542 INFO [long-pulling] client count 0 + +2025-09-24 07:59:10,549 INFO toNotifyTaskSize = 0 + +2025-09-24 07:59:10,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:59:10,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:59:20,543 INFO [long-pulling] client count 0 + +2025-09-24 07:59:20,551 INFO toNotifyTaskSize = 0 + +2025-09-24 07:59:20,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:59:20,567 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:59:30,543 INFO [long-pulling] client count 0 + +2025-09-24 07:59:30,552 INFO toNotifyTaskSize = 0 + +2025-09-24 07:59:30,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:59:30,569 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:59:40,545 INFO [long-pulling] client count 0 + +2025-09-24 07:59:40,552 INFO toNotifyTaskSize = 0 + +2025-09-24 07:59:40,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:59:40,570 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 07:59:50,546 INFO [long-pulling] client count 0 + +2025-09-24 07:59:50,554 INFO toNotifyTaskSize = 0 + +2025-09-24 07:59:50,554 INFO toClientNotifyTaskSize = 0 + +2025-09-24 07:59:50,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:00:00,547 INFO [long-pulling] client count 0 + +2025-09-24 08:00:00,555 INFO toNotifyTaskSize = 0 + +2025-09-24 08:00:00,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:00:00,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:00:10,548 INFO [long-pulling] client count 0 + +2025-09-24 08:00:10,557 INFO toNotifyTaskSize = 0 + +2025-09-24 08:00:10,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:00:10,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:00:20,549 INFO [long-pulling] client count 0 + +2025-09-24 08:00:20,557 INFO toNotifyTaskSize = 0 + +2025-09-24 08:00:20,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:00:20,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:00:30,549 INFO [long-pulling] client count 0 + +2025-09-24 08:00:30,558 INFO toNotifyTaskSize = 0 + +2025-09-24 08:00:30,558 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:00:30,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:00:40,550 INFO [long-pulling] client count 0 + +2025-09-24 08:00:40,560 INFO toNotifyTaskSize = 0 + +2025-09-24 08:00:40,560 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:00:40,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:00:50,553 INFO [long-pulling] client count 0 + +2025-09-24 08:00:50,561 INFO toNotifyTaskSize = 0 + +2025-09-24 08:00:50,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:00:50,580 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:01:00,553 INFO [long-pulling] client count 0 + +2025-09-24 08:01:00,562 INFO toNotifyTaskSize = 0 + +2025-09-24 08:01:00,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:01:00,580 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:01:10,555 INFO [long-pulling] client count 0 + +2025-09-24 08:01:10,563 INFO toNotifyTaskSize = 0 + +2025-09-24 08:01:10,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:01:10,581 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:01:20,557 INFO [long-pulling] client count 0 + +2025-09-24 08:01:20,565 INFO toNotifyTaskSize = 0 + +2025-09-24 08:01:20,565 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:01:20,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:01:30,559 INFO [long-pulling] client count 0 + +2025-09-24 08:01:30,566 INFO toNotifyTaskSize = 0 + +2025-09-24 08:01:30,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:01:30,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:01:40,560 INFO [long-pulling] client count 0 + +2025-09-24 08:01:40,568 INFO toNotifyTaskSize = 0 + +2025-09-24 08:01:40,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:01:40,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:01:50,561 INFO [long-pulling] client count 0 + +2025-09-24 08:01:50,568 INFO toNotifyTaskSize = 0 + +2025-09-24 08:01:50,569 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:01:50,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:02:00,562 INFO [long-pulling] client count 0 + +2025-09-24 08:02:00,569 INFO toNotifyTaskSize = 0 + +2025-09-24 08:02:00,570 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:02:00,587 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:02:10,564 INFO [long-pulling] client count 0 + +2025-09-24 08:02:10,570 INFO toNotifyTaskSize = 0 + +2025-09-24 08:02:10,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:02:10,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:02:20,564 INFO [long-pulling] client count 0 + +2025-09-24 08:02:20,572 INFO toNotifyTaskSize = 0 + +2025-09-24 08:02:20,572 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:02:20,589 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:02:30,564 INFO [long-pulling] client count 0 + +2025-09-24 08:02:30,574 INFO toNotifyTaskSize = 0 + +2025-09-24 08:02:30,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:02:30,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:02:40,566 INFO [long-pulling] client count 0 + +2025-09-24 08:02:40,574 INFO toNotifyTaskSize = 0 + +2025-09-24 08:02:40,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:02:40,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:02:50,566 INFO [long-pulling] client count 0 + +2025-09-24 08:02:50,575 INFO toNotifyTaskSize = 0 + +2025-09-24 08:02:50,575 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:02:50,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:03:00,568 INFO [long-pulling] client count 0 + +2025-09-24 08:03:00,577 INFO toNotifyTaskSize = 0 + +2025-09-24 08:03:00,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:03:00,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:03:10,570 INFO [long-pulling] client count 0 + +2025-09-24 08:03:10,578 INFO toNotifyTaskSize = 0 + +2025-09-24 08:03:10,578 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:03:10,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:03:20,571 INFO [long-pulling] client count 0 + +2025-09-24 08:03:20,582 INFO toNotifyTaskSize = 0 + +2025-09-24 08:03:20,582 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:03:20,597 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:03:30,573 INFO [long-pulling] client count 0 + +2025-09-24 08:03:30,584 INFO toNotifyTaskSize = 0 + +2025-09-24 08:03:30,584 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:03:30,597 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:03:40,576 INFO [long-pulling] client count 0 + +2025-09-24 08:03:40,585 INFO toNotifyTaskSize = 0 + +2025-09-24 08:03:40,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:03:40,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:03:50,577 INFO [long-pulling] client count 0 + +2025-09-24 08:03:50,585 INFO toNotifyTaskSize = 0 + +2025-09-24 08:03:50,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:03:50,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:04:00,578 INFO [long-pulling] client count 0 + +2025-09-24 08:04:00,586 INFO toNotifyTaskSize = 0 + +2025-09-24 08:04:00,586 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:04:00,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:04:10,578 INFO [long-pulling] client count 0 + +2025-09-24 08:04:10,588 INFO toNotifyTaskSize = 0 + +2025-09-24 08:04:10,588 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:04:10,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:04:20,579 INFO [long-pulling] client count 0 + +2025-09-24 08:04:20,590 INFO toNotifyTaskSize = 0 + +2025-09-24 08:04:20,590 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:04:20,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:04:30,579 INFO [long-pulling] client count 0 + +2025-09-24 08:04:30,591 INFO toNotifyTaskSize = 0 + +2025-09-24 08:04:30,591 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:04:30,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:04:40,581 INFO [long-pulling] client count 0 + +2025-09-24 08:04:40,591 INFO toNotifyTaskSize = 0 + +2025-09-24 08:04:40,592 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:04:40,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:04:50,583 INFO [long-pulling] client count 0 + +2025-09-24 08:04:50,594 INFO toNotifyTaskSize = 0 + +2025-09-24 08:04:50,594 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:04:50,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:05:00,584 INFO [long-pulling] client count 0 + +2025-09-24 08:05:00,596 INFO toNotifyTaskSize = 0 + +2025-09-24 08:05:00,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:05:00,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:05:10,586 INFO [long-pulling] client count 0 + +2025-09-24 08:05:10,598 INFO toNotifyTaskSize = 0 + +2025-09-24 08:05:10,598 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:05:10,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:05:20,588 INFO [long-pulling] client count 0 + +2025-09-24 08:05:20,599 INFO toNotifyTaskSize = 0 + +2025-09-24 08:05:20,599 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:05:20,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:05:30,589 INFO [long-pulling] client count 0 + +2025-09-24 08:05:30,600 INFO toNotifyTaskSize = 0 + +2025-09-24 08:05:30,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:05:30,614 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:05:40,590 INFO [long-pulling] client count 0 + +2025-09-24 08:05:40,600 INFO toNotifyTaskSize = 0 + +2025-09-24 08:05:40,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:05:40,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:05:50,591 INFO [long-pulling] client count 0 + +2025-09-24 08:05:50,601 INFO toNotifyTaskSize = 0 + +2025-09-24 08:05:50,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:05:50,619 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:06:00,592 INFO [long-pulling] client count 0 + +2025-09-24 08:06:00,603 INFO toNotifyTaskSize = 0 + +2025-09-24 08:06:00,603 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:06:00,619 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:06:10,595 INFO [long-pulling] client count 0 + +2025-09-24 08:06:10,604 INFO toNotifyTaskSize = 0 + +2025-09-24 08:06:10,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:06:10,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:06:20,595 INFO [long-pulling] client count 0 + +2025-09-24 08:06:20,605 INFO toNotifyTaskSize = 0 + +2025-09-24 08:06:20,605 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:06:20,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:06:30,595 INFO [long-pulling] client count 0 + +2025-09-24 08:06:30,605 INFO toNotifyTaskSize = 0 + +2025-09-24 08:06:30,605 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:06:30,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:06:40,597 INFO [long-pulling] client count 0 + +2025-09-24 08:06:40,607 INFO toNotifyTaskSize = 0 + +2025-09-24 08:06:40,607 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:06:40,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:06:50,599 INFO [long-pulling] client count 0 + +2025-09-24 08:06:50,609 INFO toNotifyTaskSize = 0 + +2025-09-24 08:06:50,609 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:06:50,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:07:00,600 INFO [long-pulling] client count 0 + +2025-09-24 08:07:00,609 INFO toNotifyTaskSize = 0 + +2025-09-24 08:07:00,610 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:07:00,625 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:07:10,601 INFO [long-pulling] client count 0 + +2025-09-24 08:07:10,610 INFO toNotifyTaskSize = 0 + +2025-09-24 08:07:10,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:07:10,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:07:20,601 INFO [long-pulling] client count 0 + +2025-09-24 08:07:20,613 INFO toNotifyTaskSize = 0 + +2025-09-24 08:07:20,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:07:20,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:07:30,601 INFO [long-pulling] client count 0 + +2025-09-24 08:07:30,615 INFO toNotifyTaskSize = 0 + +2025-09-24 08:07:30,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:07:30,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:07:40,602 INFO [long-pulling] client count 0 + +2025-09-24 08:07:40,615 INFO toNotifyTaskSize = 0 + +2025-09-24 08:07:40,616 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:07:40,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:07:50,604 INFO [long-pulling] client count 0 + +2025-09-24 08:07:50,616 INFO toNotifyTaskSize = 0 + +2025-09-24 08:07:50,616 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:07:50,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:08:00,606 INFO [long-pulling] client count 0 + +2025-09-24 08:08:00,618 INFO toNotifyTaskSize = 0 + +2025-09-24 08:08:00,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:08:00,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:08:10,608 INFO [long-pulling] client count 0 + +2025-09-24 08:08:10,620 INFO toNotifyTaskSize = 0 + +2025-09-24 08:08:10,620 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:08:10,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:08:20,610 INFO [long-pulling] client count 0 + +2025-09-24 08:08:20,622 INFO toNotifyTaskSize = 0 + +2025-09-24 08:08:20,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:08:20,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:08:30,611 INFO [long-pulling] client count 0 + +2025-09-24 08:08:30,624 INFO toNotifyTaskSize = 0 + +2025-09-24 08:08:30,624 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:08:30,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:08:40,611 INFO [long-pulling] client count 0 + +2025-09-24 08:08:40,625 INFO toNotifyTaskSize = 0 + +2025-09-24 08:08:40,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:08:40,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:08:50,611 INFO [long-pulling] client count 0 + +2025-09-24 08:08:50,625 INFO toNotifyTaskSize = 0 + +2025-09-24 08:08:50,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:08:50,639 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:09:00,612 INFO [long-pulling] client count 0 + +2025-09-24 08:09:00,626 INFO toNotifyTaskSize = 0 + +2025-09-24 08:09:00,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:09:00,639 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:09:10,613 INFO [long-pulling] client count 0 + +2025-09-24 08:09:10,627 INFO toNotifyTaskSize = 0 + +2025-09-24 08:09:10,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:09:10,640 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:09:20,613 INFO [long-pulling] client count 0 + +2025-09-24 08:09:20,628 INFO toNotifyTaskSize = 0 + +2025-09-24 08:09:20,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:09:20,640 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:09:30,614 INFO [long-pulling] client count 0 + +2025-09-24 08:09:30,629 INFO toNotifyTaskSize = 0 + +2025-09-24 08:09:30,629 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:09:30,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:09:40,615 INFO [long-pulling] client count 0 + +2025-09-24 08:09:40,630 INFO toNotifyTaskSize = 0 + +2025-09-24 08:09:40,630 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:09:40,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:09:50,616 INFO [long-pulling] client count 0 + +2025-09-24 08:09:50,631 INFO toNotifyTaskSize = 0 + +2025-09-24 08:09:50,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:09:50,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:10:00,617 INFO [long-pulling] client count 0 + +2025-09-24 08:10:00,632 INFO toNotifyTaskSize = 0 + +2025-09-24 08:10:00,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:10:00,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:10:10,618 INFO [long-pulling] client count 0 + +2025-09-24 08:10:10,633 INFO toNotifyTaskSize = 0 + +2025-09-24 08:10:10,633 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:10:10,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:10:20,618 INFO [long-pulling] client count 0 + +2025-09-24 08:10:20,634 INFO toNotifyTaskSize = 0 + +2025-09-24 08:10:20,634 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:10:20,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:10:30,619 INFO [long-pulling] client count 0 + +2025-09-24 08:10:30,635 INFO toNotifyTaskSize = 0 + +2025-09-24 08:10:30,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:10:30,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:10:40,620 INFO [long-pulling] client count 0 + +2025-09-24 08:10:40,636 INFO toNotifyTaskSize = 0 + +2025-09-24 08:10:40,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:10:40,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:10:50,622 INFO [long-pulling] client count 0 + +2025-09-24 08:10:50,636 INFO toNotifyTaskSize = 0 + +2025-09-24 08:10:50,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:10:50,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:11:00,622 INFO [long-pulling] client count 0 + +2025-09-24 08:11:00,637 INFO toNotifyTaskSize = 0 + +2025-09-24 08:11:00,637 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:11:00,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:11:10,625 INFO [long-pulling] client count 0 + +2025-09-24 08:11:10,637 INFO toNotifyTaskSize = 0 + +2025-09-24 08:11:10,637 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:11:10,651 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:11:20,626 INFO [long-pulling] client count 0 + +2025-09-24 08:11:20,639 INFO toNotifyTaskSize = 0 + +2025-09-24 08:11:20,639 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:11:20,653 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:11:30,627 INFO [long-pulling] client count 0 + +2025-09-24 08:11:30,640 INFO toNotifyTaskSize = 0 + +2025-09-24 08:11:30,640 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:11:30,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:11:40,628 INFO [long-pulling] client count 0 + +2025-09-24 08:11:40,640 INFO toNotifyTaskSize = 0 + +2025-09-24 08:11:40,640 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:11:40,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:11:50,629 INFO [long-pulling] client count 0 + +2025-09-24 08:11:50,640 INFO toNotifyTaskSize = 0 + +2025-09-24 08:11:50,641 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:11:50,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:12:00,631 INFO [long-pulling] client count 0 + +2025-09-24 08:12:00,641 INFO toNotifyTaskSize = 0 + +2025-09-24 08:12:00,641 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:12:00,656 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:12:10,633 INFO [long-pulling] client count 0 + +2025-09-24 08:12:10,643 INFO toNotifyTaskSize = 0 + +2025-09-24 08:12:10,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:12:10,658 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:12:20,634 INFO [long-pulling] client count 0 + +2025-09-24 08:12:20,644 INFO toNotifyTaskSize = 0 + +2025-09-24 08:12:20,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:12:20,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:12:30,635 INFO [long-pulling] client count 0 + +2025-09-24 08:12:30,644 INFO toNotifyTaskSize = 0 + +2025-09-24 08:12:30,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:12:30,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:12:40,637 INFO [long-pulling] client count 0 + +2025-09-24 08:12:40,645 INFO toNotifyTaskSize = 0 + +2025-09-24 08:12:40,645 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:12:40,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:12:50,639 INFO [long-pulling] client count 0 + +2025-09-24 08:12:50,647 INFO toNotifyTaskSize = 0 + +2025-09-24 08:12:50,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:12:50,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:13:00,639 INFO [long-pulling] client count 0 + +2025-09-24 08:13:00,649 INFO toNotifyTaskSize = 0 + +2025-09-24 08:13:00,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:13:00,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:13:10,641 INFO [long-pulling] client count 0 + +2025-09-24 08:13:10,650 INFO toNotifyTaskSize = 0 + +2025-09-24 08:13:10,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:13:10,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:13:20,643 INFO [long-pulling] client count 0 + +2025-09-24 08:13:20,650 INFO toNotifyTaskSize = 0 + +2025-09-24 08:13:20,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:13:20,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:13:30,643 INFO [long-pulling] client count 0 + +2025-09-24 08:13:30,652 INFO toNotifyTaskSize = 0 + +2025-09-24 08:13:30,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:13:30,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:13:40,646 INFO [long-pulling] client count 0 + +2025-09-24 08:13:40,654 INFO toNotifyTaskSize = 0 + +2025-09-24 08:13:40,654 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:13:40,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:13:50,648 INFO [long-pulling] client count 0 + +2025-09-24 08:13:50,655 INFO toNotifyTaskSize = 0 + +2025-09-24 08:13:50,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:13:50,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:14:00,650 INFO [long-pulling] client count 0 + +2025-09-24 08:14:00,655 INFO toNotifyTaskSize = 0 + +2025-09-24 08:14:00,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:14:00,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:14:10,651 INFO [long-pulling] client count 0 + +2025-09-24 08:14:10,657 INFO toNotifyTaskSize = 0 + +2025-09-24 08:14:10,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:14:10,674 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:14:20,653 INFO [long-pulling] client count 0 + +2025-09-24 08:14:20,658 INFO toNotifyTaskSize = 0 + +2025-09-24 08:14:20,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:14:20,675 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:14:30,653 INFO [long-pulling] client count 0 + +2025-09-24 08:14:30,659 INFO toNotifyTaskSize = 0 + +2025-09-24 08:14:30,659 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:14:30,677 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:14:40,655 INFO [long-pulling] client count 0 + +2025-09-24 08:14:40,661 INFO toNotifyTaskSize = 0 + +2025-09-24 08:14:40,661 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:14:40,677 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:14:50,658 INFO [long-pulling] client count 0 + +2025-09-24 08:14:50,661 INFO toNotifyTaskSize = 0 + +2025-09-24 08:14:50,661 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:14:50,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:15:00,660 INFO [long-pulling] client count 0 + +2025-09-24 08:15:00,662 INFO toNotifyTaskSize = 0 + +2025-09-24 08:15:00,662 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:15:00,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:15:10,661 INFO [long-pulling] client count 0 + +2025-09-24 08:15:10,663 INFO toNotifyTaskSize = 0 + +2025-09-24 08:15:10,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:15:10,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:15:20,662 INFO [long-pulling] client count 0 + +2025-09-24 08:15:20,664 INFO toNotifyTaskSize = 0 + +2025-09-24 08:15:20,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:15:20,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:15:30,663 INFO [long-pulling] client count 0 + +2025-09-24 08:15:30,664 INFO toNotifyTaskSize = 0 + +2025-09-24 08:15:30,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:15:30,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:15:40,665 INFO [long-pulling] client count 0 + +2025-09-24 08:15:40,665 INFO toNotifyTaskSize = 0 + +2025-09-24 08:15:40,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:15:40,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:15:50,665 INFO [long-pulling] client count 0 + +2025-09-24 08:15:50,665 INFO toNotifyTaskSize = 0 + +2025-09-24 08:15:50,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:15:50,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:16:00,666 INFO [long-pulling] client count 0 + +2025-09-24 08:16:00,666 INFO toNotifyTaskSize = 0 + +2025-09-24 08:16:00,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:16:00,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:16:10,668 INFO [long-pulling] client count 0 + +2025-09-24 08:16:10,668 INFO toNotifyTaskSize = 0 + +2025-09-24 08:16:10,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:16:10,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:16:20,670 INFO [long-pulling] client count 0 + +2025-09-24 08:16:20,670 INFO toNotifyTaskSize = 0 + +2025-09-24 08:16:20,670 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:16:20,689 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:16:30,671 INFO [long-pulling] client count 0 + +2025-09-24 08:16:30,671 INFO toNotifyTaskSize = 0 + +2025-09-24 08:16:30,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:16:30,691 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:16:40,671 INFO [long-pulling] client count 0 + +2025-09-24 08:16:40,671 INFO toNotifyTaskSize = 0 + +2025-09-24 08:16:40,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:16:40,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:16:50,671 INFO [long-pulling] client count 0 + +2025-09-24 08:16:50,672 INFO toNotifyTaskSize = 0 + +2025-09-24 08:16:50,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:16:50,695 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:17:00,672 INFO [long-pulling] client count 0 + +2025-09-24 08:17:00,672 INFO toNotifyTaskSize = 0 + +2025-09-24 08:17:00,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:17:00,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:17:10,672 INFO [long-pulling] client count 0 + +2025-09-24 08:17:10,672 INFO toNotifyTaskSize = 0 + +2025-09-24 08:17:10,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:17:10,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:17:20,674 INFO [long-pulling] client count 0 + +2025-09-24 08:17:20,674 INFO toNotifyTaskSize = 0 + +2025-09-24 08:17:20,675 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:17:20,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:17:30,675 INFO [long-pulling] client count 0 + +2025-09-24 08:17:30,675 INFO toNotifyTaskSize = 0 + +2025-09-24 08:17:30,675 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:17:30,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:17:40,677 INFO [long-pulling] client count 0 + +2025-09-24 08:17:40,677 INFO toNotifyTaskSize = 0 + +2025-09-24 08:17:40,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:17:40,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:17:50,677 INFO [long-pulling] client count 0 + +2025-09-24 08:17:50,677 INFO toNotifyTaskSize = 0 + +2025-09-24 08:17:50,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:17:50,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:18:00,678 INFO [long-pulling] client count 0 + +2025-09-24 08:18:00,678 INFO toNotifyTaskSize = 0 + +2025-09-24 08:18:00,678 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:18:00,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:18:10,680 INFO [long-pulling] client count 0 + +2025-09-24 08:18:10,680 INFO toNotifyTaskSize = 0 + +2025-09-24 08:18:10,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:18:10,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:18:20,681 INFO toNotifyTaskSize = 0 + +2025-09-24 08:18:20,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:18:20,684 INFO [long-pulling] client count 0 + +2025-09-24 08:18:20,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:18:30,682 INFO toNotifyTaskSize = 0 + +2025-09-24 08:18:30,683 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:18:30,684 INFO [long-pulling] client count 0 + +2025-09-24 08:18:30,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:18:40,685 INFO toNotifyTaskSize = 0 + +2025-09-24 08:18:40,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:18:40,685 INFO [long-pulling] client count 0 + +2025-09-24 08:18:40,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:18:50,687 INFO toNotifyTaskSize = 0 + +2025-09-24 08:18:50,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:18:50,687 INFO [long-pulling] client count 0 + +2025-09-24 08:18:50,704 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:19:00,688 INFO toNotifyTaskSize = 0 + +2025-09-24 08:19:00,688 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:19:00,688 INFO [long-pulling] client count 0 + +2025-09-24 08:19:00,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:19:10,688 INFO [long-pulling] client count 0 + +2025-09-24 08:19:10,688 INFO toNotifyTaskSize = 0 + +2025-09-24 08:19:10,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:19:10,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:19:20,689 INFO [long-pulling] client count 0 + +2025-09-24 08:19:20,689 INFO toNotifyTaskSize = 0 + +2025-09-24 08:19:20,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:19:20,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:19:30,690 INFO [long-pulling] client count 0 + +2025-09-24 08:19:30,690 INFO toNotifyTaskSize = 0 + +2025-09-24 08:19:30,691 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:19:30,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:19:40,692 INFO toNotifyTaskSize = 0 + +2025-09-24 08:19:40,692 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:19:40,692 INFO [long-pulling] client count 0 + +2025-09-24 08:19:40,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:19:50,693 INFO [long-pulling] client count 0 + +2025-09-24 08:19:50,693 INFO toNotifyTaskSize = 0 + +2025-09-24 08:19:50,693 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:19:50,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:20:00,694 INFO toNotifyTaskSize = 0 + +2025-09-24 08:20:00,694 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:20:00,694 INFO [long-pulling] client count 0 + +2025-09-24 08:20:00,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:20:10,695 INFO toNotifyTaskSize = 0 + +2025-09-24 08:20:10,695 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:20:10,695 INFO [long-pulling] client count 0 + +2025-09-24 08:20:10,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:20:20,695 INFO [long-pulling] client count 0 + +2025-09-24 08:20:20,695 INFO toNotifyTaskSize = 0 + +2025-09-24 08:20:20,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:20:20,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:20:30,697 INFO [long-pulling] client count 0 + +2025-09-24 08:20:30,697 INFO toNotifyTaskSize = 0 + +2025-09-24 08:20:30,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:20:30,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:20:40,698 INFO [long-pulling] client count 0 + +2025-09-24 08:20:40,698 INFO toNotifyTaskSize = 0 + +2025-09-24 08:20:40,699 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:20:40,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:20:50,700 INFO [long-pulling] client count 0 + +2025-09-24 08:20:50,700 INFO toNotifyTaskSize = 0 + +2025-09-24 08:20:50,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:20:50,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:21:00,701 INFO [long-pulling] client count 0 + +2025-09-24 08:21:00,701 INFO toNotifyTaskSize = 0 + +2025-09-24 08:21:00,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:21:00,720 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:21:10,703 INFO toNotifyTaskSize = 0 + +2025-09-24 08:21:10,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:21:10,703 INFO [long-pulling] client count 0 + +2025-09-24 08:21:10,720 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:21:20,705 INFO [long-pulling] client count 0 + +2025-09-24 08:21:20,705 INFO toNotifyTaskSize = 0 + +2025-09-24 08:21:20,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:21:20,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:21:30,706 INFO toNotifyTaskSize = 0 + +2025-09-24 08:21:30,707 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:21:30,706 INFO [long-pulling] client count 0 + +2025-09-24 08:21:30,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:21:40,707 INFO [long-pulling] client count 0 + +2025-09-24 08:21:40,707 INFO toNotifyTaskSize = 0 + +2025-09-24 08:21:40,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:21:40,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:21:50,709 INFO [long-pulling] client count 0 + +2025-09-24 08:21:50,709 INFO toNotifyTaskSize = 0 + +2025-09-24 08:21:50,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:21:50,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:22:00,710 INFO [long-pulling] client count 0 + +2025-09-24 08:22:00,710 INFO toNotifyTaskSize = 0 + +2025-09-24 08:22:00,710 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:22:00,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:22:10,710 INFO [long-pulling] client count 0 + +2025-09-24 08:22:10,710 INFO toNotifyTaskSize = 0 + +2025-09-24 08:22:10,710 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:22:10,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:22:20,710 INFO [long-pulling] client count 0 + +2025-09-24 08:22:20,711 INFO toNotifyTaskSize = 0 + +2025-09-24 08:22:20,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:22:20,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:22:30,711 INFO [long-pulling] client count 0 + +2025-09-24 08:22:30,711 INFO toNotifyTaskSize = 0 + +2025-09-24 08:22:30,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:22:30,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:22:40,712 INFO [long-pulling] client count 0 + +2025-09-24 08:22:40,712 INFO toNotifyTaskSize = 0 + +2025-09-24 08:22:40,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:22:40,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:22:50,712 INFO [long-pulling] client count 0 + +2025-09-24 08:22:50,713 INFO toNotifyTaskSize = 0 + +2025-09-24 08:22:50,713 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:22:50,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:23:00,713 INFO [long-pulling] client count 0 + +2025-09-24 08:23:00,714 INFO toNotifyTaskSize = 0 + +2025-09-24 08:23:00,714 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:23:00,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:23:10,716 INFO [long-pulling] client count 0 + +2025-09-24 08:23:10,716 INFO toNotifyTaskSize = 0 + +2025-09-24 08:23:10,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:23:10,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:23:20,716 INFO [long-pulling] client count 0 + +2025-09-24 08:23:20,716 INFO toNotifyTaskSize = 0 + +2025-09-24 08:23:20,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:23:20,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:23:30,717 INFO toNotifyTaskSize = 0 + +2025-09-24 08:23:30,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:23:30,717 INFO [long-pulling] client count 0 + +2025-09-24 08:23:30,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:23:40,719 INFO [long-pulling] client count 0 + +2025-09-24 08:23:40,719 INFO toNotifyTaskSize = 0 + +2025-09-24 08:23:40,719 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:23:40,736 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:23:50,719 INFO [long-pulling] client count 0 + +2025-09-24 08:23:50,720 INFO toNotifyTaskSize = 0 + +2025-09-24 08:23:50,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:23:50,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:24:00,719 INFO [long-pulling] client count 0 + +2025-09-24 08:24:00,721 INFO toNotifyTaskSize = 0 + +2025-09-24 08:24:00,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:24:00,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:24:10,720 INFO [long-pulling] client count 0 + +2025-09-24 08:24:10,721 INFO toNotifyTaskSize = 0 + +2025-09-24 08:24:10,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:24:10,738 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:24:20,722 INFO [long-pulling] client count 0 + +2025-09-24 08:24:20,722 INFO toNotifyTaskSize = 0 + +2025-09-24 08:24:20,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:24:20,738 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:24:30,722 INFO [long-pulling] client count 0 + +2025-09-24 08:24:30,722 INFO toNotifyTaskSize = 0 + +2025-09-24 08:24:30,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:24:30,738 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:24:40,723 INFO [long-pulling] client count 0 + +2025-09-24 08:24:40,723 INFO toNotifyTaskSize = 0 + +2025-09-24 08:24:40,724 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:24:40,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:24:50,724 INFO [long-pulling] client count 0 + +2025-09-24 08:24:50,724 INFO toNotifyTaskSize = 0 + +2025-09-24 08:24:50,724 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:24:50,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:25:00,725 INFO [long-pulling] client count 0 + +2025-09-24 08:25:00,725 INFO toNotifyTaskSize = 0 + +2025-09-24 08:25:00,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:25:00,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:25:10,725 INFO [long-pulling] client count 0 + +2025-09-24 08:25:10,726 INFO toNotifyTaskSize = 0 + +2025-09-24 08:25:10,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:25:10,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:25:20,726 INFO [long-pulling] client count 0 + +2025-09-24 08:25:20,726 INFO toNotifyTaskSize = 0 + +2025-09-24 08:25:20,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:25:20,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:25:30,727 INFO [long-pulling] client count 0 + +2025-09-24 08:25:30,727 INFO toNotifyTaskSize = 0 + +2025-09-24 08:25:30,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:25:30,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:25:40,728 INFO [long-pulling] client count 0 + +2025-09-24 08:25:40,728 INFO toNotifyTaskSize = 0 + +2025-09-24 08:25:40,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:25:40,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:25:50,729 INFO [long-pulling] client count 0 + +2025-09-24 08:25:50,729 INFO toNotifyTaskSize = 0 + +2025-09-24 08:25:50,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:25:50,747 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:26:00,731 INFO [long-pulling] client count 0 + +2025-09-24 08:26:00,731 INFO toNotifyTaskSize = 0 + +2025-09-24 08:26:00,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:26:00,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:26:10,732 INFO [long-pulling] client count 0 + +2025-09-24 08:26:10,732 INFO toNotifyTaskSize = 0 + +2025-09-24 08:26:10,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:26:10,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:26:20,734 INFO [long-pulling] client count 0 + +2025-09-24 08:26:20,734 INFO toNotifyTaskSize = 0 + +2025-09-24 08:26:20,734 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:26:20,751 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:26:30,735 INFO toNotifyTaskSize = 0 + +2025-09-24 08:26:30,735 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:26:30,735 INFO [long-pulling] client count 0 + +2025-09-24 08:26:30,753 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:26:40,735 INFO [long-pulling] client count 0 + +2025-09-24 08:26:40,735 INFO toNotifyTaskSize = 0 + +2025-09-24 08:26:40,735 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:26:40,754 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:26:50,735 INFO [long-pulling] client count 0 + +2025-09-24 08:26:50,736 INFO toNotifyTaskSize = 0 + +2025-09-24 08:26:50,736 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:26:50,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:27:00,737 INFO [long-pulling] client count 0 + +2025-09-24 08:27:00,737 INFO toNotifyTaskSize = 0 + +2025-09-24 08:27:00,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:27:00,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:27:10,738 INFO [long-pulling] client count 0 + +2025-09-24 08:27:10,738 INFO toNotifyTaskSize = 0 + +2025-09-24 08:27:10,738 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:27:10,758 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:27:20,739 INFO [long-pulling] client count 0 + +2025-09-24 08:27:20,739 INFO toNotifyTaskSize = 0 + +2025-09-24 08:27:20,739 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:27:20,760 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:27:30,740 INFO [long-pulling] client count 0 + +2025-09-24 08:27:30,740 INFO toNotifyTaskSize = 0 + +2025-09-24 08:27:30,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:27:30,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:27:40,740 INFO [long-pulling] client count 0 + +2025-09-24 08:27:40,741 INFO toNotifyTaskSize = 0 + +2025-09-24 08:27:40,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:27:40,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:27:50,741 INFO [long-pulling] client count 0 + +2025-09-24 08:27:50,741 INFO toNotifyTaskSize = 0 + +2025-09-24 08:27:50,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:27:50,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:28:00,741 INFO [long-pulling] client count 0 + +2025-09-24 08:28:00,742 INFO toNotifyTaskSize = 0 + +2025-09-24 08:28:00,742 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:28:00,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:28:10,743 INFO [long-pulling] client count 0 + +2025-09-24 08:28:10,743 INFO toNotifyTaskSize = 0 + +2025-09-24 08:28:10,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:28:10,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:28:20,744 INFO [long-pulling] client count 0 + +2025-09-24 08:28:20,744 INFO toNotifyTaskSize = 0 + +2025-09-24 08:28:20,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:28:20,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:28:30,746 INFO [long-pulling] client count 0 + +2025-09-24 08:28:30,746 INFO toNotifyTaskSize = 0 + +2025-09-24 08:28:30,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:28:30,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:28:40,747 INFO [long-pulling] client count 0 + +2025-09-24 08:28:40,747 INFO toNotifyTaskSize = 0 + +2025-09-24 08:28:40,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:28:40,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:28:50,749 INFO [long-pulling] client count 0 + +2025-09-24 08:28:50,749 INFO toNotifyTaskSize = 0 + +2025-09-24 08:28:50,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:28:50,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:29:00,749 INFO [long-pulling] client count 0 + +2025-09-24 08:29:00,749 INFO toNotifyTaskSize = 0 + +2025-09-24 08:29:00,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:29:00,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:29:10,751 INFO [long-pulling] client count 0 + +2025-09-24 08:29:10,751 INFO toNotifyTaskSize = 0 + +2025-09-24 08:29:10,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:29:10,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:29:20,752 INFO [long-pulling] client count 0 + +2025-09-24 08:29:20,752 INFO toNotifyTaskSize = 0 + +2025-09-24 08:29:20,753 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:29:20,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:29:30,754 INFO [long-pulling] client count 0 + +2025-09-24 08:29:30,754 INFO toNotifyTaskSize = 0 + +2025-09-24 08:29:30,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:29:30,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:29:40,756 INFO toNotifyTaskSize = 0 + +2025-09-24 08:29:40,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:29:40,756 INFO [long-pulling] client count 0 + +2025-09-24 08:29:40,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:29:50,758 INFO [long-pulling] client count 0 + +2025-09-24 08:29:50,758 INFO toNotifyTaskSize = 0 + +2025-09-24 08:29:50,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:29:50,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:30:00,758 INFO [long-pulling] client count 0 + +2025-09-24 08:30:00,758 INFO toNotifyTaskSize = 0 + +2025-09-24 08:30:00,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:30:00,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:30:10,759 INFO [long-pulling] client count 0 + +2025-09-24 08:30:10,759 INFO toNotifyTaskSize = 0 + +2025-09-24 08:30:10,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:30:10,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:30:20,760 INFO [long-pulling] client count 0 + +2025-09-24 08:30:20,760 INFO toNotifyTaskSize = 0 + +2025-09-24 08:30:20,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:30:20,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:30:30,760 INFO toNotifyTaskSize = 0 + +2025-09-24 08:30:30,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:30:30,761 INFO [long-pulling] client count 0 + +2025-09-24 08:30:30,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:30:40,763 INFO [long-pulling] client count 0 + +2025-09-24 08:30:40,763 INFO toNotifyTaskSize = 0 + +2025-09-24 08:30:40,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:30:40,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:30:50,763 INFO toNotifyTaskSize = 0 + +2025-09-24 08:30:50,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:30:50,764 INFO [long-pulling] client count 0 + +2025-09-24 08:30:50,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:31:00,764 INFO [long-pulling] client count 0 + +2025-09-24 08:31:00,764 INFO toNotifyTaskSize = 0 + +2025-09-24 08:31:00,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:31:00,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:31:10,766 INFO [long-pulling] client count 0 + +2025-09-24 08:31:10,766 INFO toNotifyTaskSize = 0 + +2025-09-24 08:31:10,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:31:10,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:31:20,768 INFO [long-pulling] client count 0 + +2025-09-24 08:31:20,768 INFO toNotifyTaskSize = 0 + +2025-09-24 08:31:20,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:31:20,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:31:30,768 INFO [long-pulling] client count 0 + +2025-09-24 08:31:30,768 INFO toNotifyTaskSize = 0 + +2025-09-24 08:31:30,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:31:30,791 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:31:40,770 INFO [long-pulling] client count 0 + +2025-09-24 08:31:40,770 INFO toNotifyTaskSize = 0 + +2025-09-24 08:31:40,770 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:31:40,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:31:50,770 INFO [long-pulling] client count 0 + +2025-09-24 08:31:50,771 INFO toNotifyTaskSize = 0 + +2025-09-24 08:31:50,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:31:50,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:32:00,771 INFO [long-pulling] client count 0 + +2025-09-24 08:32:00,771 INFO toNotifyTaskSize = 0 + +2025-09-24 08:32:00,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:32:00,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:32:10,772 INFO [long-pulling] client count 0 + +2025-09-24 08:32:10,772 INFO toNotifyTaskSize = 0 + +2025-09-24 08:32:10,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:32:10,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:32:20,773 INFO [long-pulling] client count 0 + +2025-09-24 08:32:20,773 INFO toNotifyTaskSize = 0 + +2025-09-24 08:32:20,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:32:20,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:32:30,773 INFO [long-pulling] client count 0 + +2025-09-24 08:32:30,773 INFO toNotifyTaskSize = 0 + +2025-09-24 08:32:30,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:32:30,798 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:32:40,775 INFO [long-pulling] client count 0 + +2025-09-24 08:32:40,775 INFO toNotifyTaskSize = 0 + +2025-09-24 08:32:40,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:32:40,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:32:50,775 INFO [long-pulling] client count 0 + +2025-09-24 08:32:50,775 INFO toNotifyTaskSize = 0 + +2025-09-24 08:32:50,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:32:50,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:33:00,775 INFO [long-pulling] client count 0 + +2025-09-24 08:33:00,776 INFO toNotifyTaskSize = 0 + +2025-09-24 08:33:00,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:33:00,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:33:10,776 INFO [long-pulling] client count 0 + +2025-09-24 08:33:10,776 INFO toNotifyTaskSize = 0 + +2025-09-24 08:33:10,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:33:10,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:33:20,776 INFO [long-pulling] client count 0 + +2025-09-24 08:33:20,776 INFO toNotifyTaskSize = 0 + +2025-09-24 08:33:20,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:33:20,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:33:30,778 INFO [long-pulling] client count 0 + +2025-09-24 08:33:30,778 INFO toNotifyTaskSize = 0 + +2025-09-24 08:33:30,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:33:30,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:33:40,778 INFO [long-pulling] client count 0 + +2025-09-24 08:33:40,779 INFO toNotifyTaskSize = 0 + +2025-09-24 08:33:40,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:33:40,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:33:50,780 INFO [long-pulling] client count 0 + +2025-09-24 08:33:50,780 INFO toNotifyTaskSize = 0 + +2025-09-24 08:33:50,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:33:50,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:34:00,783 INFO [long-pulling] client count 0 + +2025-09-24 08:34:00,783 INFO toNotifyTaskSize = 0 + +2025-09-24 08:34:00,783 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:34:00,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:34:10,785 INFO [long-pulling] client count 0 + +2025-09-24 08:34:10,785 INFO toNotifyTaskSize = 0 + +2025-09-24 08:34:10,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:34:10,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:34:20,785 INFO [long-pulling] client count 0 + +2025-09-24 08:34:20,785 INFO toNotifyTaskSize = 0 + +2025-09-24 08:34:20,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:34:20,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:34:30,786 INFO [long-pulling] client count 0 + +2025-09-24 08:34:30,786 INFO toNotifyTaskSize = 0 + +2025-09-24 08:34:30,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:34:30,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:34:40,787 INFO [long-pulling] client count 0 + +2025-09-24 08:34:40,787 INFO toNotifyTaskSize = 0 + +2025-09-24 08:34:40,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:34:40,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:34:50,787 INFO [long-pulling] client count 0 + +2025-09-24 08:34:50,788 INFO toNotifyTaskSize = 0 + +2025-09-24 08:34:50,788 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:34:50,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:35:00,788 INFO [long-pulling] client count 0 + +2025-09-24 08:35:00,788 INFO toNotifyTaskSize = 0 + +2025-09-24 08:35:00,789 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:35:00,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:35:10,789 INFO [long-pulling] client count 0 + +2025-09-24 08:35:10,790 INFO toNotifyTaskSize = 0 + +2025-09-24 08:35:10,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:35:10,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:35:20,789 INFO [long-pulling] client count 0 + +2025-09-24 08:35:20,791 INFO toNotifyTaskSize = 0 + +2025-09-24 08:35:20,791 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:35:20,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:35:30,791 INFO [long-pulling] client count 0 + +2025-09-24 08:35:30,792 INFO toNotifyTaskSize = 0 + +2025-09-24 08:35:30,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:35:30,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:35:40,793 INFO [long-pulling] client count 0 + +2025-09-24 08:35:40,793 INFO toNotifyTaskSize = 0 + +2025-09-24 08:35:40,793 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:35:40,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:35:50,793 INFO [long-pulling] client count 0 + +2025-09-24 08:35:50,793 INFO toNotifyTaskSize = 0 + +2025-09-24 08:35:50,793 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:35:50,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:36:00,794 INFO [long-pulling] client count 0 + +2025-09-24 08:36:00,795 INFO toNotifyTaskSize = 0 + +2025-09-24 08:36:00,795 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:36:00,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:36:10,796 INFO [long-pulling] client count 0 + +2025-09-24 08:36:10,796 INFO toNotifyTaskSize = 0 + +2025-09-24 08:36:10,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:36:10,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:36:20,796 INFO [long-pulling] client count 0 + +2025-09-24 08:36:20,796 INFO toNotifyTaskSize = 0 + +2025-09-24 08:36:20,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:36:20,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:36:30,796 INFO [long-pulling] client count 0 + +2025-09-24 08:36:30,797 INFO toNotifyTaskSize = 0 + +2025-09-24 08:36:30,797 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:36:30,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:36:40,797 INFO toNotifyTaskSize = 0 + +2025-09-24 08:36:40,797 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:36:40,797 INFO [long-pulling] client count 0 + +2025-09-24 08:36:40,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:36:50,798 INFO [long-pulling] client count 0 + +2025-09-24 08:36:50,798 INFO toNotifyTaskSize = 0 + +2025-09-24 08:36:50,798 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:36:50,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:37:00,799 INFO [long-pulling] client count 0 + +2025-09-24 08:37:00,799 INFO toNotifyTaskSize = 0 + +2025-09-24 08:37:00,799 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:37:00,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:37:10,799 INFO toNotifyTaskSize = 0 + +2025-09-24 08:37:10,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:37:10,799 INFO [long-pulling] client count 0 + +2025-09-24 08:37:10,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:37:20,800 INFO toNotifyTaskSize = 0 + +2025-09-24 08:37:20,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:37:20,800 INFO [long-pulling] client count 0 + +2025-09-24 08:37:20,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:37:30,801 INFO toNotifyTaskSize = 0 + +2025-09-24 08:37:30,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:37:30,801 INFO [long-pulling] client count 0 + +2025-09-24 08:37:30,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:37:40,803 INFO toNotifyTaskSize = 0 + +2025-09-24 08:37:40,803 INFO [long-pulling] client count 0 + +2025-09-24 08:37:40,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:37:40,836 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:37:50,805 INFO [long-pulling] client count 0 + +2025-09-24 08:37:50,805 INFO toNotifyTaskSize = 0 + +2025-09-24 08:37:50,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:37:50,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:38:00,807 INFO [long-pulling] client count 0 + +2025-09-24 08:38:00,807 INFO toNotifyTaskSize = 0 + +2025-09-24 08:38:00,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:38:00,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:38:10,807 INFO toNotifyTaskSize = 0 + +2025-09-24 08:38:10,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:38:10,808 INFO [long-pulling] client count 0 + +2025-09-24 08:38:10,839 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:38:20,810 INFO toNotifyTaskSize = 0 + +2025-09-24 08:38:20,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:38:20,810 INFO [long-pulling] client count 0 + +2025-09-24 08:38:20,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:38:30,810 INFO toNotifyTaskSize = 0 + +2025-09-24 08:38:30,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:38:30,810 INFO [long-pulling] client count 0 + +2025-09-24 08:38:30,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:38:40,812 INFO [long-pulling] client count 0 + +2025-09-24 08:38:40,812 INFO toNotifyTaskSize = 0 + +2025-09-24 08:38:40,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:38:40,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:38:50,813 INFO [long-pulling] client count 0 + +2025-09-24 08:38:50,813 INFO toNotifyTaskSize = 0 + +2025-09-24 08:38:50,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:38:50,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:39:00,813 INFO [long-pulling] client count 0 + +2025-09-24 08:39:00,813 INFO toNotifyTaskSize = 0 + +2025-09-24 08:39:00,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:39:00,845 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:39:10,815 INFO [long-pulling] client count 0 + +2025-09-24 08:39:10,815 INFO toNotifyTaskSize = 0 + +2025-09-24 08:39:10,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:39:10,846 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:39:20,816 INFO [long-pulling] client count 0 + +2025-09-24 08:39:20,816 INFO toNotifyTaskSize = 0 + +2025-09-24 08:39:20,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:39:20,847 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:39:30,817 INFO [long-pulling] client count 0 + +2025-09-24 08:39:30,817 INFO toNotifyTaskSize = 0 + +2025-09-24 08:39:30,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:39:30,848 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:39:40,819 INFO [long-pulling] client count 0 + +2025-09-24 08:39:40,819 INFO toNotifyTaskSize = 0 + +2025-09-24 08:39:40,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:39:40,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:39:50,822 INFO [long-pulling] client count 0 + +2025-09-24 08:39:50,822 INFO toNotifyTaskSize = 0 + +2025-09-24 08:39:50,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:39:50,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:40:00,823 INFO [long-pulling] client count 0 + +2025-09-24 08:40:00,823 INFO toNotifyTaskSize = 0 + +2025-09-24 08:40:00,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:40:00,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:40:10,825 INFO [long-pulling] client count 0 + +2025-09-24 08:40:10,825 INFO toNotifyTaskSize = 0 + +2025-09-24 08:40:10,826 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:40:10,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:40:20,827 INFO [long-pulling] client count 0 + +2025-09-24 08:40:20,827 INFO toNotifyTaskSize = 0 + +2025-09-24 08:40:20,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:40:20,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:40:30,828 INFO [long-pulling] client count 0 + +2025-09-24 08:40:30,828 INFO toNotifyTaskSize = 0 + +2025-09-24 08:40:30,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:40:30,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:40:40,829 INFO [long-pulling] client count 0 + +2025-09-24 08:40:40,829 INFO toNotifyTaskSize = 0 + +2025-09-24 08:40:40,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:40:40,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:40:50,829 INFO [long-pulling] client count 0 + +2025-09-24 08:40:50,830 INFO toNotifyTaskSize = 0 + +2025-09-24 08:40:50,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:40:50,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:41:00,830 INFO [long-pulling] client count 0 + +2025-09-24 08:41:00,830 INFO toNotifyTaskSize = 0 + +2025-09-24 08:41:00,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:41:00,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:41:10,831 INFO toNotifyTaskSize = 0 + +2025-09-24 08:41:10,831 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:41:10,831 INFO [long-pulling] client count 0 + +2025-09-24 08:41:10,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:41:20,831 INFO [long-pulling] client count 0 + +2025-09-24 08:41:20,831 INFO toNotifyTaskSize = 0 + +2025-09-24 08:41:20,831 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:41:20,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:41:30,832 INFO [long-pulling] client count 0 + +2025-09-24 08:41:30,832 INFO toNotifyTaskSize = 0 + +2025-09-24 08:41:30,833 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:41:30,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:41:40,835 INFO [long-pulling] client count 0 + +2025-09-24 08:41:40,835 INFO toNotifyTaskSize = 0 + +2025-09-24 08:41:40,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:41:40,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:41:50,835 INFO [long-pulling] client count 0 + +2025-09-24 08:41:50,835 INFO toNotifyTaskSize = 0 + +2025-09-24 08:41:50,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:41:50,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:42:00,836 INFO toNotifyTaskSize = 0 + +2025-09-24 08:42:00,836 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:42:00,836 INFO [long-pulling] client count 0 + +2025-09-24 08:42:00,870 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:42:10,836 INFO [long-pulling] client count 0 + +2025-09-24 08:42:10,836 INFO toNotifyTaskSize = 0 + +2025-09-24 08:42:10,837 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:42:10,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:42:20,838 INFO [long-pulling] client count 0 + +2025-09-24 08:42:20,838 INFO toNotifyTaskSize = 0 + +2025-09-24 08:42:20,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:42:20,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:42:30,839 INFO [long-pulling] client count 0 + +2025-09-24 08:42:30,840 INFO toNotifyTaskSize = 0 + +2025-09-24 08:42:30,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:42:30,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:42:40,840 INFO [long-pulling] client count 0 + +2025-09-24 08:42:40,841 INFO toNotifyTaskSize = 0 + +2025-09-24 08:42:40,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:42:40,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:42:50,842 INFO [long-pulling] client count 0 + +2025-09-24 08:42:50,842 INFO toNotifyTaskSize = 0 + +2025-09-24 08:42:50,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:42:50,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:43:00,842 INFO [long-pulling] client count 0 + +2025-09-24 08:43:00,842 INFO toNotifyTaskSize = 0 + +2025-09-24 08:43:00,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:43:00,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:43:10,843 INFO [long-pulling] client count 0 + +2025-09-24 08:43:10,843 INFO toNotifyTaskSize = 0 + +2025-09-24 08:43:10,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:43:10,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:43:20,844 INFO [long-pulling] client count 0 + +2025-09-24 08:43:20,844 INFO toNotifyTaskSize = 0 + +2025-09-24 08:43:20,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:43:20,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:43:30,846 INFO toNotifyTaskSize = 0 + +2025-09-24 08:43:30,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:43:30,846 INFO [long-pulling] client count 0 + +2025-09-24 08:43:30,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:43:40,847 INFO toNotifyTaskSize = 0 + +2025-09-24 08:43:40,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:43:40,848 INFO [long-pulling] client count 0 + +2025-09-24 08:43:40,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:43:50,847 INFO toNotifyTaskSize = 0 + +2025-09-24 08:43:50,848 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:43:50,848 INFO [long-pulling] client count 0 + +2025-09-24 08:43:50,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:44:00,849 INFO toNotifyTaskSize = 0 + +2025-09-24 08:44:00,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:44:00,849 INFO [long-pulling] client count 0 + +2025-09-24 08:44:00,883 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:44:10,849 INFO [long-pulling] client count 0 + +2025-09-24 08:44:10,849 INFO toNotifyTaskSize = 0 + +2025-09-24 08:44:10,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:44:10,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:44:20,851 INFO [long-pulling] client count 0 + +2025-09-24 08:44:20,851 INFO toNotifyTaskSize = 0 + +2025-09-24 08:44:20,851 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:44:20,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:44:30,853 INFO [long-pulling] client count 0 + +2025-09-24 08:44:30,853 INFO toNotifyTaskSize = 0 + +2025-09-24 08:44:30,855 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:44:30,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:44:40,855 INFO [long-pulling] client count 0 + +2025-09-24 08:44:40,855 INFO toNotifyTaskSize = 0 + +2025-09-24 08:44:40,855 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:44:40,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:44:50,857 INFO [long-pulling] client count 0 + +2025-09-24 08:44:50,857 INFO toNotifyTaskSize = 0 + +2025-09-24 08:44:50,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:44:50,887 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:45:00,859 INFO [long-pulling] client count 0 + +2025-09-24 08:45:00,859 INFO toNotifyTaskSize = 0 + +2025-09-24 08:45:00,859 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:45:00,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:45:10,860 INFO [long-pulling] client count 0 + +2025-09-24 08:45:10,860 INFO toNotifyTaskSize = 0 + +2025-09-24 08:45:10,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:45:10,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:45:20,861 INFO [long-pulling] client count 0 + +2025-09-24 08:45:20,861 INFO toNotifyTaskSize = 0 + +2025-09-24 08:45:20,862 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:45:20,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:45:30,862 INFO toNotifyTaskSize = 0 + +2025-09-24 08:45:30,862 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:45:30,862 INFO [long-pulling] client count 0 + +2025-09-24 08:45:30,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:45:40,863 INFO [long-pulling] client count 0 + +2025-09-24 08:45:40,863 INFO toNotifyTaskSize = 0 + +2025-09-24 08:45:40,863 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:45:40,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:45:50,863 INFO [long-pulling] client count 0 + +2025-09-24 08:45:50,863 INFO toNotifyTaskSize = 0 + +2025-09-24 08:45:50,864 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:45:50,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:46:00,864 INFO [long-pulling] client count 0 + +2025-09-24 08:46:00,864 INFO toNotifyTaskSize = 0 + +2025-09-24 08:46:00,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:46:00,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:46:10,865 INFO [long-pulling] client count 0 + +2025-09-24 08:46:10,865 INFO toNotifyTaskSize = 0 + +2025-09-24 08:46:10,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:46:10,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:46:20,866 INFO [long-pulling] client count 0 + +2025-09-24 08:46:20,866 INFO toNotifyTaskSize = 0 + +2025-09-24 08:46:20,866 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:46:20,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:46:30,868 INFO [long-pulling] client count 0 + +2025-09-24 08:46:30,868 INFO toNotifyTaskSize = 0 + +2025-09-24 08:46:30,868 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:46:30,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:46:40,869 INFO [long-pulling] client count 0 + +2025-09-24 08:46:40,869 INFO toNotifyTaskSize = 0 + +2025-09-24 08:46:40,870 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:46:40,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:46:50,870 INFO [long-pulling] client count 0 + +2025-09-24 08:46:50,870 INFO toNotifyTaskSize = 0 + +2025-09-24 08:46:50,870 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:46:50,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:47:00,872 INFO [long-pulling] client count 0 + +2025-09-24 08:47:00,872 INFO toNotifyTaskSize = 0 + +2025-09-24 08:47:00,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:47:00,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:47:10,873 INFO toNotifyTaskSize = 0 + +2025-09-24 08:47:10,873 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:47:10,873 INFO [long-pulling] client count 0 + +2025-09-24 08:47:10,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:47:20,875 INFO [long-pulling] client count 0 + +2025-09-24 08:47:20,875 INFO toNotifyTaskSize = 0 + +2025-09-24 08:47:20,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:47:20,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:47:30,876 INFO toNotifyTaskSize = 0 + +2025-09-24 08:47:30,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:47:30,876 INFO [long-pulling] client count 0 + +2025-09-24 08:47:30,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:47:40,877 INFO [long-pulling] client count 0 + +2025-09-24 08:47:40,877 INFO toNotifyTaskSize = 0 + +2025-09-24 08:47:40,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:47:40,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:47:50,879 INFO toNotifyTaskSize = 0 + +2025-09-24 08:47:50,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:47:50,879 INFO [long-pulling] client count 0 + +2025-09-24 08:47:50,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:48:00,879 INFO [long-pulling] client count 0 + +2025-09-24 08:48:00,879 INFO toNotifyTaskSize = 0 + +2025-09-24 08:48:00,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:48:00,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:48:10,881 INFO [long-pulling] client count 0 + +2025-09-24 08:48:10,881 INFO toNotifyTaskSize = 0 + +2025-09-24 08:48:10,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:48:10,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:48:20,882 INFO [long-pulling] client count 0 + +2025-09-24 08:48:20,882 INFO toNotifyTaskSize = 0 + +2025-09-24 08:48:20,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:48:20,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:48:30,882 INFO [long-pulling] client count 0 + +2025-09-24 08:48:30,882 INFO toNotifyTaskSize = 0 + +2025-09-24 08:48:30,883 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:48:30,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:48:40,885 INFO [long-pulling] client count 0 + +2025-09-24 08:48:40,885 INFO toNotifyTaskSize = 0 + +2025-09-24 08:48:40,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:48:40,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:48:50,886 INFO [long-pulling] client count 0 + +2025-09-24 08:48:50,886 INFO toNotifyTaskSize = 0 + +2025-09-24 08:48:50,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:48:50,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:49:00,887 INFO [long-pulling] client count 0 + +2025-09-24 08:49:00,887 INFO toNotifyTaskSize = 0 + +2025-09-24 08:49:00,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:49:00,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:49:10,889 INFO toNotifyTaskSize = 0 + +2025-09-24 08:49:10,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:49:10,889 INFO [long-pulling] client count 0 + +2025-09-24 08:49:10,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:49:20,889 INFO [long-pulling] client count 0 + +2025-09-24 08:49:20,889 INFO toNotifyTaskSize = 0 + +2025-09-24 08:49:20,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:49:20,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:49:30,890 INFO [long-pulling] client count 0 + +2025-09-24 08:49:30,890 INFO toNotifyTaskSize = 0 + +2025-09-24 08:49:30,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:49:30,922 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:49:40,890 INFO [long-pulling] client count 0 + +2025-09-24 08:49:40,890 INFO toNotifyTaskSize = 0 + +2025-09-24 08:49:40,891 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:49:40,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:49:50,891 INFO [long-pulling] client count 0 + +2025-09-24 08:49:50,891 INFO toNotifyTaskSize = 0 + +2025-09-24 08:49:50,892 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:49:50,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:50:00,892 INFO [long-pulling] client count 0 + +2025-09-24 08:50:00,892 INFO toNotifyTaskSize = 0 + +2025-09-24 08:50:00,892 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:50:00,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:50:10,894 INFO [long-pulling] client count 0 + +2025-09-24 08:50:10,894 INFO toNotifyTaskSize = 0 + +2025-09-24 08:50:10,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:50:10,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:50:20,896 INFO [long-pulling] client count 0 + +2025-09-24 08:50:20,896 INFO toNotifyTaskSize = 0 + +2025-09-24 08:50:20,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:50:20,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:50:30,896 INFO [long-pulling] client count 0 + +2025-09-24 08:50:30,896 INFO toNotifyTaskSize = 0 + +2025-09-24 08:50:30,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:50:30,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:50:40,899 INFO [long-pulling] client count 0 + +2025-09-24 08:50:40,899 INFO toNotifyTaskSize = 0 + +2025-09-24 08:50:40,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:50:40,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:50:50,900 INFO [long-pulling] client count 0 + +2025-09-24 08:50:50,900 INFO toNotifyTaskSize = 0 + +2025-09-24 08:50:50,900 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:50:50,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:51:00,902 INFO [long-pulling] client count 0 + +2025-09-24 08:51:00,902 INFO toNotifyTaskSize = 0 + +2025-09-24 08:51:00,902 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:51:00,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:51:10,903 INFO [long-pulling] client count 0 + +2025-09-24 08:51:10,903 INFO toNotifyTaskSize = 0 + +2025-09-24 08:51:10,903 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:51:10,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:51:20,904 INFO [long-pulling] client count 0 + +2025-09-24 08:51:20,904 INFO toNotifyTaskSize = 0 + +2025-09-24 08:51:20,904 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:51:20,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:51:30,905 INFO [long-pulling] client count 0 + +2025-09-24 08:51:30,905 INFO toNotifyTaskSize = 0 + +2025-09-24 08:51:30,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:51:30,935 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:51:40,907 INFO [long-pulling] client count 0 + +2025-09-24 08:51:40,907 INFO toNotifyTaskSize = 0 + +2025-09-24 08:51:40,907 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:51:40,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:51:50,909 INFO [long-pulling] client count 0 + +2025-09-24 08:51:50,909 INFO toNotifyTaskSize = 0 + +2025-09-24 08:51:50,909 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:51:50,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:52:00,910 INFO [long-pulling] client count 0 + +2025-09-24 08:52:00,910 INFO toNotifyTaskSize = 0 + +2025-09-24 08:52:00,910 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:52:00,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:52:10,910 INFO [long-pulling] client count 0 + +2025-09-24 08:52:10,910 INFO toNotifyTaskSize = 0 + +2025-09-24 08:52:10,911 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:52:10,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:52:20,912 INFO [long-pulling] client count 0 + +2025-09-24 08:52:20,912 INFO toNotifyTaskSize = 0 + +2025-09-24 08:52:20,912 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:52:20,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:52:30,912 INFO [long-pulling] client count 0 + +2025-09-24 08:52:30,913 INFO toNotifyTaskSize = 0 + +2025-09-24 08:52:30,913 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:52:30,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:52:40,914 INFO [long-pulling] client count 0 + +2025-09-24 08:52:40,914 INFO toNotifyTaskSize = 0 + +2025-09-24 08:52:40,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:52:40,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:52:50,915 INFO [long-pulling] client count 0 + +2025-09-24 08:52:50,916 INFO toNotifyTaskSize = 0 + +2025-09-24 08:52:50,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:52:50,945 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:53:00,916 INFO [long-pulling] client count 0 + +2025-09-24 08:53:00,916 INFO toNotifyTaskSize = 0 + +2025-09-24 08:53:00,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:53:00,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:53:10,918 INFO [long-pulling] client count 0 + +2025-09-24 08:53:10,918 INFO toNotifyTaskSize = 0 + +2025-09-24 08:53:10,918 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:53:10,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:53:20,918 INFO [long-pulling] client count 0 + +2025-09-24 08:53:20,919 INFO toNotifyTaskSize = 0 + +2025-09-24 08:53:20,919 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:53:20,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:53:30,920 INFO [long-pulling] client count 0 + +2025-09-24 08:53:30,920 INFO toNotifyTaskSize = 0 + +2025-09-24 08:53:30,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:53:30,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:53:40,923 INFO [long-pulling] client count 0 + +2025-09-24 08:53:40,923 INFO toNotifyTaskSize = 0 + +2025-09-24 08:53:40,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:53:40,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:53:50,923 INFO [long-pulling] client count 0 + +2025-09-24 08:53:50,923 INFO toNotifyTaskSize = 0 + +2025-09-24 08:53:50,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:53:50,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:54:00,923 INFO [long-pulling] client count 0 + +2025-09-24 08:54:00,924 INFO toNotifyTaskSize = 0 + +2025-09-24 08:54:00,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:54:00,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:54:10,924 INFO toNotifyTaskSize = 0 + +2025-09-24 08:54:10,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:54:10,924 INFO [long-pulling] client count 0 + +2025-09-24 08:54:10,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:54:20,926 INFO [long-pulling] client count 0 + +2025-09-24 08:54:20,926 INFO toNotifyTaskSize = 0 + +2025-09-24 08:54:20,926 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:54:20,955 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:54:30,926 INFO [long-pulling] client count 0 + +2025-09-24 08:54:30,926 INFO toNotifyTaskSize = 0 + +2025-09-24 08:54:30,927 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:54:30,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:54:40,928 INFO [long-pulling] client count 0 + +2025-09-24 08:54:40,928 INFO toNotifyTaskSize = 0 + +2025-09-24 08:54:40,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:54:40,957 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:54:50,930 INFO [long-pulling] client count 0 + +2025-09-24 08:54:50,930 INFO toNotifyTaskSize = 0 + +2025-09-24 08:54:50,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:54:50,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:55:00,931 INFO [long-pulling] client count 0 + +2025-09-24 08:55:00,931 INFO toNotifyTaskSize = 0 + +2025-09-24 08:55:00,931 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:55:00,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:55:10,931 INFO [long-pulling] client count 0 + +2025-09-24 08:55:10,932 INFO toNotifyTaskSize = 0 + +2025-09-24 08:55:10,932 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:55:10,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:55:20,932 INFO [long-pulling] client count 0 + +2025-09-24 08:55:20,933 INFO toNotifyTaskSize = 0 + +2025-09-24 08:55:20,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:55:20,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:55:30,932 INFO [long-pulling] client count 0 + +2025-09-24 08:55:30,933 INFO toNotifyTaskSize = 0 + +2025-09-24 08:55:30,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:55:30,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:55:40,935 INFO [long-pulling] client count 0 + +2025-09-24 08:55:40,935 INFO toNotifyTaskSize = 0 + +2025-09-24 08:55:40,935 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:55:40,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:55:50,935 INFO [long-pulling] client count 0 + +2025-09-24 08:55:50,936 INFO toNotifyTaskSize = 0 + +2025-09-24 08:55:50,936 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:55:50,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:56:00,936 INFO [long-pulling] client count 0 + +2025-09-24 08:56:00,936 INFO toNotifyTaskSize = 0 + +2025-09-24 08:56:00,936 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:56:00,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:56:10,936 INFO [long-pulling] client count 0 + +2025-09-24 08:56:10,938 INFO toNotifyTaskSize = 0 + +2025-09-24 08:56:10,938 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:56:10,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:56:20,937 INFO [long-pulling] client count 0 + +2025-09-24 08:56:20,939 INFO toNotifyTaskSize = 0 + +2025-09-24 08:56:20,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:56:20,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:56:30,938 INFO [long-pulling] client count 0 + +2025-09-24 08:56:30,939 INFO toNotifyTaskSize = 0 + +2025-09-24 08:56:30,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:56:30,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:56:40,940 INFO [long-pulling] client count 0 + +2025-09-24 08:56:40,940 INFO toNotifyTaskSize = 0 + +2025-09-24 08:56:40,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:56:40,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:56:50,941 INFO [long-pulling] client count 0 + +2025-09-24 08:56:50,941 INFO toNotifyTaskSize = 0 + +2025-09-24 08:56:50,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:56:50,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:57:00,941 INFO [long-pulling] client count 0 + +2025-09-24 08:57:00,942 INFO toNotifyTaskSize = 0 + +2025-09-24 08:57:00,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:57:00,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:57:10,942 INFO [long-pulling] client count 0 + +2025-09-24 08:57:10,943 INFO toNotifyTaskSize = 0 + +2025-09-24 08:57:10,943 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:57:10,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:57:20,942 INFO [long-pulling] client count 0 + +2025-09-24 08:57:20,943 INFO toNotifyTaskSize = 0 + +2025-09-24 08:57:20,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:57:20,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:57:30,942 INFO [long-pulling] client count 0 + +2025-09-24 08:57:30,944 INFO toNotifyTaskSize = 0 + +2025-09-24 08:57:30,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:57:30,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:57:40,945 INFO [long-pulling] client count 0 + +2025-09-24 08:57:40,945 INFO toNotifyTaskSize = 0 + +2025-09-24 08:57:40,945 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:57:40,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:57:50,945 INFO [long-pulling] client count 0 + +2025-09-24 08:57:50,945 INFO toNotifyTaskSize = 0 + +2025-09-24 08:57:50,946 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:57:50,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:58:00,947 INFO [long-pulling] client count 0 + +2025-09-24 08:58:00,948 INFO toNotifyTaskSize = 0 + +2025-09-24 08:58:00,948 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:58:00,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:58:10,948 INFO [long-pulling] client count 0 + +2025-09-24 08:58:10,948 INFO toNotifyTaskSize = 0 + +2025-09-24 08:58:10,948 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:58:10,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:58:20,948 INFO [long-pulling] client count 0 + +2025-09-24 08:58:20,949 INFO toNotifyTaskSize = 0 + +2025-09-24 08:58:20,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:58:20,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:58:30,949 INFO [long-pulling] client count 0 + +2025-09-24 08:58:30,949 INFO toNotifyTaskSize = 0 + +2025-09-24 08:58:30,950 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:58:30,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:58:40,951 INFO toNotifyTaskSize = 0 + +2025-09-24 08:58:40,951 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:58:40,951 INFO [long-pulling] client count 0 + +2025-09-24 08:58:40,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:58:50,951 INFO toNotifyTaskSize = 0 + +2025-09-24 08:58:50,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:58:50,952 INFO [long-pulling] client count 0 + +2025-09-24 08:58:50,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:59:00,952 INFO [long-pulling] client count 0 + +2025-09-24 08:59:00,952 INFO toNotifyTaskSize = 0 + +2025-09-24 08:59:00,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:59:00,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:59:10,952 INFO [long-pulling] client count 0 + +2025-09-24 08:59:10,953 INFO toNotifyTaskSize = 0 + +2025-09-24 08:59:10,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:59:10,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:59:20,953 INFO [long-pulling] client count 0 + +2025-09-24 08:59:20,953 INFO toNotifyTaskSize = 0 + +2025-09-24 08:59:20,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:59:20,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:59:30,953 INFO [long-pulling] client count 0 + +2025-09-24 08:59:30,954 INFO toNotifyTaskSize = 0 + +2025-09-24 08:59:30,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:59:30,987 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:59:40,954 INFO [long-pulling] client count 0 + +2025-09-24 08:59:40,954 INFO toNotifyTaskSize = 0 + +2025-09-24 08:59:40,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:59:40,987 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 08:59:50,954 INFO [long-pulling] client count 0 + +2025-09-24 08:59:50,955 INFO toNotifyTaskSize = 0 + +2025-09-24 08:59:50,955 INFO toClientNotifyTaskSize = 0 + +2025-09-24 08:59:50,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:00:00,955 INFO [long-pulling] client count 0 + +2025-09-24 09:00:00,955 INFO toNotifyTaskSize = 0 + +2025-09-24 09:00:00,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:00:00,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:00:10,956 INFO [long-pulling] client count 0 + +2025-09-24 09:00:10,956 INFO toNotifyTaskSize = 0 + +2025-09-24 09:00:10,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:00:10,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:00:20,957 INFO [long-pulling] client count 0 + +2025-09-24 09:00:20,957 INFO toNotifyTaskSize = 0 + +2025-09-24 09:00:20,957 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:00:20,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:00:30,957 INFO [long-pulling] client count 0 + +2025-09-24 09:00:30,958 INFO toNotifyTaskSize = 0 + +2025-09-24 09:00:30,958 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:00:30,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:00:40,959 INFO [long-pulling] client count 0 + +2025-09-24 09:00:40,959 INFO toNotifyTaskSize = 0 + +2025-09-24 09:00:40,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:00:40,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:00:50,959 INFO [long-pulling] client count 0 + +2025-09-24 09:00:50,959 INFO toNotifyTaskSize = 0 + +2025-09-24 09:00:50,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:00:50,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:01:00,959 INFO [long-pulling] client count 0 + +2025-09-24 09:01:00,960 INFO toNotifyTaskSize = 0 + +2025-09-24 09:01:00,960 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:01:00,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:01:10,961 INFO [long-pulling] client count 0 + +2025-09-24 09:01:10,961 INFO toNotifyTaskSize = 0 + +2025-09-24 09:01:10,961 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:01:10,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:01:20,962 INFO [long-pulling] client count 0 + +2025-09-24 09:01:20,962 INFO toNotifyTaskSize = 0 + +2025-09-24 09:01:20,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:01:21,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:01:30,963 INFO toNotifyTaskSize = 0 + +2025-09-24 09:01:30,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:01:30,963 INFO [long-pulling] client count 0 + +2025-09-24 09:01:31,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:01:40,964 INFO [long-pulling] client count 0 + +2025-09-24 09:01:40,964 INFO toNotifyTaskSize = 0 + +2025-09-24 09:01:40,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:01:41,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:01:50,966 INFO [long-pulling] client count 0 + +2025-09-24 09:01:50,966 INFO toNotifyTaskSize = 0 + +2025-09-24 09:01:50,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:01:51,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:02:00,967 INFO [long-pulling] client count 0 + +2025-09-24 09:02:00,967 INFO toNotifyTaskSize = 0 + +2025-09-24 09:02:00,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:02:01,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:02:10,967 INFO [long-pulling] client count 0 + +2025-09-24 09:02:10,967 INFO toNotifyTaskSize = 0 + +2025-09-24 09:02:10,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:02:11,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:02:20,968 INFO [long-pulling] client count 0 + +2025-09-24 09:02:20,968 INFO toNotifyTaskSize = 0 + +2025-09-24 09:02:20,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:02:21,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:02:30,970 INFO [long-pulling] client count 0 + +2025-09-24 09:02:30,970 INFO toNotifyTaskSize = 0 + +2025-09-24 09:02:30,971 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:02:31,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:02:40,972 INFO [long-pulling] client count 0 + +2025-09-24 09:02:40,972 INFO toNotifyTaskSize = 0 + +2025-09-24 09:02:40,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:02:41,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:02:50,972 INFO [long-pulling] client count 0 + +2025-09-24 09:02:50,972 INFO toNotifyTaskSize = 0 + +2025-09-24 09:02:50,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:02:51,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:03:00,972 INFO [long-pulling] client count 0 + +2025-09-24 09:03:00,973 INFO toNotifyTaskSize = 0 + +2025-09-24 09:03:00,973 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:03:01,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:03:10,973 INFO [long-pulling] client count 0 + +2025-09-24 09:03:10,974 INFO toNotifyTaskSize = 0 + +2025-09-24 09:03:10,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:03:11,015 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:03:20,973 INFO [long-pulling] client count 0 + +2025-09-24 09:03:20,974 INFO toNotifyTaskSize = 0 + +2025-09-24 09:03:20,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:03:21,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:03:30,975 INFO [long-pulling] client count 0 + +2025-09-24 09:03:30,975 INFO toNotifyTaskSize = 0 + +2025-09-24 09:03:30,976 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:03:31,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:03:40,977 INFO [long-pulling] client count 0 + +2025-09-24 09:03:40,977 INFO toNotifyTaskSize = 0 + +2025-09-24 09:03:40,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:03:41,019 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:03:50,978 INFO [long-pulling] client count 0 + +2025-09-24 09:03:50,978 INFO toNotifyTaskSize = 0 + +2025-09-24 09:03:50,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:03:51,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:04:00,980 INFO [long-pulling] client count 0 + +2025-09-24 09:04:00,980 INFO toNotifyTaskSize = 0 + +2025-09-24 09:04:00,980 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:04:01,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:04:10,982 INFO [long-pulling] client count 0 + +2025-09-24 09:04:10,982 INFO toNotifyTaskSize = 0 + +2025-09-24 09:04:10,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:04:11,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:04:20,982 INFO [long-pulling] client count 0 + +2025-09-24 09:04:20,984 INFO toNotifyTaskSize = 0 + +2025-09-24 09:04:20,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:04:21,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:04:30,983 INFO [long-pulling] client count 0 + +2025-09-24 09:04:30,985 INFO toNotifyTaskSize = 0 + +2025-09-24 09:04:30,985 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:04:31,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:04:40,984 INFO [long-pulling] client count 0 + +2025-09-24 09:04:40,985 INFO toNotifyTaskSize = 0 + +2025-09-24 09:04:40,985 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:04:41,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:04:50,986 INFO [long-pulling] client count 0 + +2025-09-24 09:04:50,986 INFO toNotifyTaskSize = 0 + +2025-09-24 09:04:50,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:04:51,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:05:00,986 INFO [long-pulling] client count 0 + +2025-09-24 09:05:00,986 INFO toNotifyTaskSize = 0 + +2025-09-24 09:05:00,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:05:01,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:05:10,986 INFO [long-pulling] client count 0 + +2025-09-24 09:05:10,987 INFO toNotifyTaskSize = 0 + +2025-09-24 09:05:10,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:05:11,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:05:20,988 INFO [long-pulling] client count 0 + +2025-09-24 09:05:20,988 INFO toNotifyTaskSize = 0 + +2025-09-24 09:05:20,989 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:05:21,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:05:30,990 INFO [long-pulling] client count 0 + +2025-09-24 09:05:30,990 INFO toNotifyTaskSize = 0 + +2025-09-24 09:05:30,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:05:31,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:05:40,993 INFO [long-pulling] client count 0 + +2025-09-24 09:05:40,993 INFO toNotifyTaskSize = 0 + +2025-09-24 09:05:40,993 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:05:41,030 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:05:50,994 INFO [long-pulling] client count 0 + +2025-09-24 09:05:50,994 INFO toNotifyTaskSize = 0 + +2025-09-24 09:05:50,994 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:05:51,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:06:00,995 INFO [long-pulling] client count 0 + +2025-09-24 09:06:00,995 INFO toNotifyTaskSize = 0 + +2025-09-24 09:06:00,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:06:01,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:06:10,997 INFO [long-pulling] client count 0 + +2025-09-24 09:06:10,997 INFO toNotifyTaskSize = 0 + +2025-09-24 09:06:10,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:06:11,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:06:20,999 INFO [long-pulling] client count 0 + +2025-09-24 09:06:20,999 INFO toNotifyTaskSize = 0 + +2025-09-24 09:06:20,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:06:21,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:06:30,999 INFO [long-pulling] client count 0 + +2025-09-24 09:06:30,999 INFO toNotifyTaskSize = 0 + +2025-09-24 09:06:31,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:06:31,036 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:06:41,000 INFO toNotifyTaskSize = 0 + +2025-09-24 09:06:41,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:06:41,000 INFO [long-pulling] client count 0 + +2025-09-24 09:06:41,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:06:51,000 INFO toNotifyTaskSize = 0 + +2025-09-24 09:06:51,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:06:51,001 INFO [long-pulling] client count 0 + +2025-09-24 09:06:51,039 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:07:01,001 INFO toNotifyTaskSize = 0 + +2025-09-24 09:07:01,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:07:01,002 INFO [long-pulling] client count 0 + +2025-09-24 09:07:01,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:07:11,002 INFO toNotifyTaskSize = 0 + +2025-09-24 09:07:11,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:07:11,003 INFO [long-pulling] client count 0 + +2025-09-24 09:07:11,042 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:07:21,002 INFO toNotifyTaskSize = 0 + +2025-09-24 09:07:21,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:07:21,003 INFO [long-pulling] client count 0 + +2025-09-24 09:07:21,042 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:07:31,003 INFO toNotifyTaskSize = 0 + +2025-09-24 09:07:31,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:07:31,004 INFO [long-pulling] client count 0 + +2025-09-24 09:07:31,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:07:41,007 INFO toNotifyTaskSize = 0 + +2025-09-24 09:07:41,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:07:41,007 INFO [long-pulling] client count 0 + +2025-09-24 09:07:41,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:07:51,008 INFO [long-pulling] client count 0 + +2025-09-24 09:07:51,008 INFO toNotifyTaskSize = 0 + +2025-09-24 09:07:51,008 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:07:51,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:08:01,008 INFO [long-pulling] client count 0 + +2025-09-24 09:08:01,009 INFO toNotifyTaskSize = 0 + +2025-09-24 09:08:01,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:08:01,046 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:08:11,009 INFO [long-pulling] client count 0 + +2025-09-24 09:08:11,009 INFO toNotifyTaskSize = 0 + +2025-09-24 09:08:11,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:08:11,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:08:21,011 INFO [long-pulling] client count 0 + +2025-09-24 09:08:21,011 INFO toNotifyTaskSize = 0 + +2025-09-24 09:08:21,011 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:08:21,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:08:31,013 INFO [long-pulling] client count 0 + +2025-09-24 09:08:31,013 INFO toNotifyTaskSize = 0 + +2025-09-24 09:08:31,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:08:31,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:08:41,017 INFO [long-pulling] client count 0 + +2025-09-24 09:08:41,017 INFO toNotifyTaskSize = 0 + +2025-09-24 09:08:41,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:08:41,053 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:08:51,019 INFO toNotifyTaskSize = 0 + +2025-09-24 09:08:51,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:08:51,019 INFO [long-pulling] client count 0 + +2025-09-24 09:08:51,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:09:01,019 INFO toNotifyTaskSize = 0 + +2025-09-24 09:09:01,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:09:01,019 INFO [long-pulling] client count 0 + +2025-09-24 09:09:01,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:09:11,021 INFO [long-pulling] client count 0 + +2025-09-24 09:09:11,021 INFO toNotifyTaskSize = 0 + +2025-09-24 09:09:11,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:09:11,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:09:21,021 INFO [long-pulling] client count 0 + +2025-09-24 09:09:21,021 INFO toNotifyTaskSize = 0 + +2025-09-24 09:09:21,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:09:21,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:09:31,022 INFO [long-pulling] client count 0 + +2025-09-24 09:09:31,022 INFO toNotifyTaskSize = 0 + +2025-09-24 09:09:31,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:09:31,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:09:41,022 INFO [long-pulling] client count 0 + +2025-09-24 09:09:41,022 INFO toNotifyTaskSize = 0 + +2025-09-24 09:09:41,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:09:41,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:09:51,023 INFO [long-pulling] client count 0 + +2025-09-24 09:09:51,023 INFO toNotifyTaskSize = 0 + +2025-09-24 09:09:51,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:09:51,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:10:01,024 INFO [long-pulling] client count 0 + +2025-09-24 09:10:01,024 INFO toNotifyTaskSize = 0 + +2025-09-24 09:10:01,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:10:01,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:10:11,025 INFO [long-pulling] client count 0 + +2025-09-24 09:10:11,025 INFO toNotifyTaskSize = 0 + +2025-09-24 09:10:11,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:10:11,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:10:21,026 INFO [long-pulling] client count 0 + +2025-09-24 09:10:21,026 INFO toNotifyTaskSize = 0 + +2025-09-24 09:10:21,026 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:10:21,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:10:31,027 INFO [long-pulling] client count 0 + +2025-09-24 09:10:31,027 INFO toNotifyTaskSize = 0 + +2025-09-24 09:10:31,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:10:31,069 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:10:41,028 INFO [long-pulling] client count 0 + +2025-09-24 09:10:41,029 INFO toNotifyTaskSize = 0 + +2025-09-24 09:10:41,029 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:10:41,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:10:51,028 INFO [long-pulling] client count 0 + +2025-09-24 09:10:51,031 INFO toNotifyTaskSize = 0 + +2025-09-24 09:10:51,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:10:51,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:11:01,029 INFO [long-pulling] client count 0 + +2025-09-24 09:11:01,032 INFO toNotifyTaskSize = 0 + +2025-09-24 09:11:01,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:11:01,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:11:11,030 INFO [long-pulling] client count 0 + +2025-09-24 09:11:11,032 INFO toNotifyTaskSize = 0 + +2025-09-24 09:11:11,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:11:11,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:11:21,032 INFO [long-pulling] client count 0 + +2025-09-24 09:11:21,033 INFO toNotifyTaskSize = 0 + +2025-09-24 09:11:21,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:11:21,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:11:31,034 INFO [long-pulling] client count 0 + +2025-09-24 09:11:31,034 INFO toNotifyTaskSize = 0 + +2025-09-24 09:11:31,035 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:11:31,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:11:41,036 INFO toNotifyTaskSize = 0 + +2025-09-24 09:11:41,036 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:11:41,036 INFO [long-pulling] client count 0 + +2025-09-24 09:11:41,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:11:51,037 INFO toNotifyTaskSize = 0 + +2025-09-24 09:11:51,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:11:51,037 INFO [long-pulling] client count 0 + +2025-09-24 09:11:51,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:12:01,037 INFO toNotifyTaskSize = 0 + +2025-09-24 09:12:01,037 INFO [long-pulling] client count 0 + +2025-09-24 09:12:01,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:12:01,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:12:11,039 INFO [long-pulling] client count 0 + +2025-09-24 09:12:11,039 INFO toNotifyTaskSize = 0 + +2025-09-24 09:12:11,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:12:11,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:12:21,040 INFO [long-pulling] client count 0 + +2025-09-24 09:12:21,040 INFO toNotifyTaskSize = 0 + +2025-09-24 09:12:21,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:12:21,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:12:31,040 INFO toNotifyTaskSize = 0 + +2025-09-24 09:12:31,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:12:31,041 INFO [long-pulling] client count 0 + +2025-09-24 09:12:31,083 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:12:41,041 INFO toNotifyTaskSize = 0 + +2025-09-24 09:12:41,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:12:41,041 INFO [long-pulling] client count 0 + +2025-09-24 09:12:41,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:12:51,042 INFO [long-pulling] client count 0 + +2025-09-24 09:12:51,042 INFO toNotifyTaskSize = 0 + +2025-09-24 09:12:51,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:12:51,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:13:01,042 INFO [long-pulling] client count 0 + +2025-09-24 09:13:01,042 INFO toNotifyTaskSize = 0 + +2025-09-24 09:13:01,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:13:01,088 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:13:11,043 INFO [long-pulling] client count 0 + +2025-09-24 09:13:11,043 INFO toNotifyTaskSize = 0 + +2025-09-24 09:13:11,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:13:11,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:13:21,044 INFO toNotifyTaskSize = 0 + +2025-09-24 09:13:21,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:13:21,044 INFO [long-pulling] client count 0 + +2025-09-24 09:13:21,091 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:13:31,046 INFO toNotifyTaskSize = 0 + +2025-09-24 09:13:31,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:13:31,047 INFO [long-pulling] client count 0 + +2025-09-24 09:13:31,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:13:41,048 INFO toNotifyTaskSize = 0 + +2025-09-24 09:13:41,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:13:41,048 INFO [long-pulling] client count 0 + +2025-09-24 09:13:41,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:13:51,049 INFO [long-pulling] client count 0 + +2025-09-24 09:13:51,049 INFO toNotifyTaskSize = 0 + +2025-09-24 09:13:51,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:13:51,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:14:01,051 INFO [long-pulling] client count 0 + +2025-09-24 09:14:01,051 INFO toNotifyTaskSize = 0 + +2025-09-24 09:14:01,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:14:01,098 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:14:11,052 INFO [long-pulling] client count 0 + +2025-09-24 09:14:11,052 INFO toNotifyTaskSize = 0 + +2025-09-24 09:14:11,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:14:11,098 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:14:21,057 INFO [long-pulling] client count 0 + +2025-09-24 09:14:21,057 INFO toNotifyTaskSize = 0 + +2025-09-24 09:14:21,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:14:21,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:14:31,058 INFO [long-pulling] client count 0 + +2025-09-24 09:14:31,058 INFO toNotifyTaskSize = 0 + +2025-09-24 09:14:31,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:14:31,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:14:41,059 INFO [long-pulling] client count 0 + +2025-09-24 09:14:41,059 INFO toNotifyTaskSize = 0 + +2025-09-24 09:14:41,060 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:14:41,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:14:51,061 INFO [long-pulling] client count 0 + +2025-09-24 09:14:51,061 INFO toNotifyTaskSize = 0 + +2025-09-24 09:14:51,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:14:51,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:15:01,063 INFO [long-pulling] client count 0 + +2025-09-24 09:15:01,063 INFO toNotifyTaskSize = 0 + +2025-09-24 09:15:01,063 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:15:01,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:15:11,063 INFO [long-pulling] client count 0 + +2025-09-24 09:15:11,064 INFO toNotifyTaskSize = 0 + +2025-09-24 09:15:11,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:15:11,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:15:21,064 INFO [long-pulling] client count 0 + +2025-09-24 09:15:21,064 INFO toNotifyTaskSize = 0 + +2025-09-24 09:15:21,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:15:21,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:15:31,066 INFO [long-pulling] client count 0 + +2025-09-24 09:15:31,066 INFO toNotifyTaskSize = 0 + +2025-09-24 09:15:31,067 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:15:31,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:15:41,069 INFO [long-pulling] client count 0 + +2025-09-24 09:15:41,069 INFO toNotifyTaskSize = 0 + +2025-09-24 09:15:41,069 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:15:41,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:15:51,070 INFO [long-pulling] client count 0 + +2025-09-24 09:15:51,070 INFO toNotifyTaskSize = 0 + +2025-09-24 09:15:51,070 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:15:51,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:16:01,070 INFO [long-pulling] client count 0 + +2025-09-24 09:16:01,070 INFO toNotifyTaskSize = 0 + +2025-09-24 09:16:01,071 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:16:01,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:16:11,071 INFO [long-pulling] client count 0 + +2025-09-24 09:16:11,071 INFO toNotifyTaskSize = 0 + +2025-09-24 09:16:11,071 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:16:11,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:16:21,073 INFO [long-pulling] client count 0 + +2025-09-24 09:16:21,073 INFO toNotifyTaskSize = 0 + +2025-09-24 09:16:21,073 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:16:21,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:16:31,074 INFO toNotifyTaskSize = 0 + +2025-09-24 09:16:31,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:16:31,074 INFO [long-pulling] client count 0 + +2025-09-24 09:16:31,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:16:41,075 INFO toNotifyTaskSize = 0 + +2025-09-24 09:16:41,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:16:41,075 INFO [long-pulling] client count 0 + +2025-09-24 09:16:41,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:16:51,076 INFO [long-pulling] client count 0 + +2025-09-24 09:16:51,076 INFO toNotifyTaskSize = 0 + +2025-09-24 09:16:51,076 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:16:51,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:17:01,076 INFO [long-pulling] client count 0 + +2025-09-24 09:17:01,076 INFO toNotifyTaskSize = 0 + +2025-09-24 09:17:01,076 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:17:01,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:17:11,078 INFO [long-pulling] client count 0 + +2025-09-24 09:17:11,078 INFO toNotifyTaskSize = 0 + +2025-09-24 09:17:11,078 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:17:11,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:17:21,080 INFO [long-pulling] client count 0 + +2025-09-24 09:17:21,080 INFO toNotifyTaskSize = 0 + +2025-09-24 09:17:21,080 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:17:21,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:17:31,080 INFO [long-pulling] client count 0 + +2025-09-24 09:17:31,081 INFO toNotifyTaskSize = 0 + +2025-09-24 09:17:31,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:17:31,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:17:41,081 INFO [long-pulling] client count 0 + +2025-09-24 09:17:41,082 INFO toNotifyTaskSize = 0 + +2025-09-24 09:17:41,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:17:41,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:17:51,081 INFO [long-pulling] client count 0 + +2025-09-24 09:17:51,082 INFO toNotifyTaskSize = 0 + +2025-09-24 09:17:51,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:17:51,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:18:01,083 INFO [long-pulling] client count 0 + +2025-09-24 09:18:01,083 INFO toNotifyTaskSize = 0 + +2025-09-24 09:18:01,083 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:18:01,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:18:11,084 INFO [long-pulling] client count 0 + +2025-09-24 09:18:11,084 INFO toNotifyTaskSize = 0 + +2025-09-24 09:18:11,084 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:18:11,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:18:21,084 INFO [long-pulling] client count 0 + +2025-09-24 09:18:21,085 INFO toNotifyTaskSize = 0 + +2025-09-24 09:18:21,085 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:18:21,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:18:31,085 INFO toNotifyTaskSize = 0 + +2025-09-24 09:18:31,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:18:31,085 INFO [long-pulling] client count 0 + +2025-09-24 09:18:31,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:18:41,086 INFO [long-pulling] client count 0 + +2025-09-24 09:18:41,086 INFO toNotifyTaskSize = 0 + +2025-09-24 09:18:41,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:18:41,126 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:18:51,087 INFO [long-pulling] client count 0 + +2025-09-24 09:18:51,087 INFO toNotifyTaskSize = 0 + +2025-09-24 09:18:51,088 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:18:51,127 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:19:01,089 INFO [long-pulling] client count 0 + +2025-09-24 09:19:01,089 INFO toNotifyTaskSize = 0 + +2025-09-24 09:19:01,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:19:01,127 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:19:11,090 INFO toNotifyTaskSize = 0 + +2025-09-24 09:19:11,091 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:19:11,090 INFO [long-pulling] client count 0 + +2025-09-24 09:19:11,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:19:21,092 INFO [long-pulling] client count 0 + +2025-09-24 09:19:21,092 INFO toNotifyTaskSize = 0 + +2025-09-24 09:19:21,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:19:21,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:19:31,094 INFO [long-pulling] client count 0 + +2025-09-24 09:19:31,094 INFO toNotifyTaskSize = 0 + +2025-09-24 09:19:31,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:19:31,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:19:41,095 INFO toNotifyTaskSize = 0 + +2025-09-24 09:19:41,095 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:19:41,095 INFO [long-pulling] client count 0 + +2025-09-24 09:19:41,130 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:19:51,097 INFO toNotifyTaskSize = 0 + +2025-09-24 09:19:51,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:19:51,097 INFO [long-pulling] client count 0 + +2025-09-24 09:19:51,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:20:01,099 INFO toNotifyTaskSize = 0 + +2025-09-24 09:20:01,099 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:20:01,099 INFO [long-pulling] client count 0 + +2025-09-24 09:20:01,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:20:11,101 INFO toNotifyTaskSize = 0 + +2025-09-24 09:20:11,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:20:11,101 INFO [long-pulling] client count 0 + +2025-09-24 09:20:11,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:20:21,102 INFO toNotifyTaskSize = 0 + +2025-09-24 09:20:21,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:20:21,102 INFO [long-pulling] client count 0 + +2025-09-24 09:20:21,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:20:31,103 INFO [long-pulling] client count 0 + +2025-09-24 09:20:31,103 INFO toNotifyTaskSize = 0 + +2025-09-24 09:20:31,104 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:20:31,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:20:41,104 INFO [long-pulling] client count 0 + +2025-09-24 09:20:41,104 INFO toNotifyTaskSize = 0 + +2025-09-24 09:20:41,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:20:41,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:20:51,107 INFO [long-pulling] client count 0 + +2025-09-24 09:20:51,107 INFO toNotifyTaskSize = 0 + +2025-09-24 09:20:51,107 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:20:51,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:21:01,109 INFO [long-pulling] client count 0 + +2025-09-24 09:21:01,109 INFO toNotifyTaskSize = 0 + +2025-09-24 09:21:01,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:21:01,140 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:21:11,109 INFO [long-pulling] client count 0 + +2025-09-24 09:21:11,109 INFO toNotifyTaskSize = 0 + +2025-09-24 09:21:11,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:21:11,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:21:21,110 INFO [long-pulling] client count 0 + +2025-09-24 09:21:21,110 INFO toNotifyTaskSize = 0 + +2025-09-24 09:21:21,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:21:21,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:21:31,112 INFO [long-pulling] client count 0 + +2025-09-24 09:21:31,112 INFO toNotifyTaskSize = 0 + +2025-09-24 09:21:31,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:21:31,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:21:41,112 INFO [long-pulling] client count 0 + +2025-09-24 09:21:41,112 INFO toNotifyTaskSize = 0 + +2025-09-24 09:21:41,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:21:41,147 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:21:51,113 INFO [long-pulling] client count 0 + +2025-09-24 09:21:51,113 INFO toNotifyTaskSize = 0 + +2025-09-24 09:21:51,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:21:51,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:22:01,114 INFO [long-pulling] client count 0 + +2025-09-24 09:22:01,114 INFO toNotifyTaskSize = 0 + +2025-09-24 09:22:01,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:22:01,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:22:11,115 INFO [long-pulling] client count 0 + +2025-09-24 09:22:11,115 INFO toNotifyTaskSize = 0 + +2025-09-24 09:22:11,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:22:11,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:22:21,116 INFO [long-pulling] client count 0 + +2025-09-24 09:22:21,116 INFO toNotifyTaskSize = 0 + +2025-09-24 09:22:21,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:22:21,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:22:31,116 INFO [long-pulling] client count 0 + +2025-09-24 09:22:31,116 INFO toNotifyTaskSize = 0 + +2025-09-24 09:22:31,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:22:31,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:22:41,116 INFO [long-pulling] client count 0 + +2025-09-24 09:22:41,116 INFO toNotifyTaskSize = 0 + +2025-09-24 09:22:41,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:22:41,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:22:51,117 INFO [long-pulling] client count 0 + +2025-09-24 09:22:51,117 INFO toNotifyTaskSize = 0 + +2025-09-24 09:22:51,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:22:51,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:23:01,118 INFO [long-pulling] client count 0 + +2025-09-24 09:23:01,118 INFO toNotifyTaskSize = 0 + +2025-09-24 09:23:01,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:23:01,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:23:11,120 INFO [long-pulling] client count 0 + +2025-09-24 09:23:11,120 INFO toNotifyTaskSize = 0 + +2025-09-24 09:23:11,120 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:23:11,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:23:21,120 INFO [long-pulling] client count 0 + +2025-09-24 09:23:21,121 INFO toNotifyTaskSize = 0 + +2025-09-24 09:23:21,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:23:21,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:23:31,121 INFO [long-pulling] client count 0 + +2025-09-24 09:23:31,122 INFO toNotifyTaskSize = 0 + +2025-09-24 09:23:31,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:23:31,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:23:41,121 INFO [long-pulling] client count 0 + +2025-09-24 09:23:41,124 INFO toNotifyTaskSize = 0 + +2025-09-24 09:23:41,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:23:41,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:23:51,123 INFO [long-pulling] client count 0 + +2025-09-24 09:23:51,124 INFO toNotifyTaskSize = 0 + +2025-09-24 09:23:51,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:23:51,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:24:01,126 INFO [long-pulling] client count 0 + +2025-09-24 09:24:01,126 INFO toNotifyTaskSize = 0 + +2025-09-24 09:24:01,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:24:01,166 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:24:11,126 INFO [long-pulling] client count 0 + +2025-09-24 09:24:11,126 INFO toNotifyTaskSize = 0 + +2025-09-24 09:24:11,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:24:11,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:24:21,127 INFO toNotifyTaskSize = 0 + +2025-09-24 09:24:21,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:24:21,127 INFO [long-pulling] client count 0 + +2025-09-24 09:24:21,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:24:31,127 INFO toNotifyTaskSize = 0 + +2025-09-24 09:24:31,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:24:31,127 INFO [long-pulling] client count 0 + +2025-09-24 09:24:31,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:24:41,129 INFO toNotifyTaskSize = 0 + +2025-09-24 09:24:41,129 INFO [long-pulling] client count 0 + +2025-09-24 09:24:41,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:24:41,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:24:51,131 INFO [long-pulling] client count 0 + +2025-09-24 09:24:51,131 INFO toNotifyTaskSize = 0 + +2025-09-24 09:24:51,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:24:51,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:25:01,131 INFO [long-pulling] client count 0 + +2025-09-24 09:25:01,131 INFO toNotifyTaskSize = 0 + +2025-09-24 09:25:01,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:25:01,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:25:11,131 INFO [long-pulling] client count 0 + +2025-09-24 09:25:11,131 INFO toNotifyTaskSize = 0 + +2025-09-24 09:25:11,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:25:11,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:25:21,132 INFO [long-pulling] client count 0 + +2025-09-24 09:25:21,132 INFO toNotifyTaskSize = 0 + +2025-09-24 09:25:21,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:25:21,176 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:25:31,133 INFO [long-pulling] client count 0 + +2025-09-24 09:25:31,133 INFO toNotifyTaskSize = 0 + +2025-09-24 09:25:31,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:25:31,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:25:41,133 INFO [long-pulling] client count 0 + +2025-09-24 09:25:41,133 INFO toNotifyTaskSize = 0 + +2025-09-24 09:25:41,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:25:41,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:25:51,134 INFO [long-pulling] client count 0 + +2025-09-24 09:25:51,134 INFO toNotifyTaskSize = 0 + +2025-09-24 09:25:51,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:25:51,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:26:01,135 INFO [long-pulling] client count 0 + +2025-09-24 09:26:01,135 INFO toNotifyTaskSize = 0 + +2025-09-24 09:26:01,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:26:01,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:26:11,135 INFO [long-pulling] client count 0 + +2025-09-24 09:26:11,135 INFO toNotifyTaskSize = 0 + +2025-09-24 09:26:11,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:26:11,182 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:26:21,137 INFO [long-pulling] client count 0 + +2025-09-24 09:26:21,137 INFO toNotifyTaskSize = 0 + +2025-09-24 09:26:21,137 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:26:21,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:26:31,137 INFO [long-pulling] client count 0 + +2025-09-24 09:26:31,137 INFO toNotifyTaskSize = 0 + +2025-09-24 09:26:31,137 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:26:31,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:26:41,138 INFO [long-pulling] client count 0 + +2025-09-24 09:26:41,138 INFO toNotifyTaskSize = 0 + +2025-09-24 09:26:41,138 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:26:41,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:26:51,138 INFO [long-pulling] client count 0 + +2025-09-24 09:26:51,138 INFO toNotifyTaskSize = 0 + +2025-09-24 09:26:51,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:26:51,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:27:01,139 INFO [long-pulling] client count 0 + +2025-09-24 09:27:01,139 INFO toNotifyTaskSize = 0 + +2025-09-24 09:27:01,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:27:01,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:27:11,139 INFO [long-pulling] client count 0 + +2025-09-24 09:27:11,139 INFO toNotifyTaskSize = 0 + +2025-09-24 09:27:11,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:27:11,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:27:21,139 INFO [long-pulling] client count 0 + +2025-09-24 09:27:21,140 INFO toNotifyTaskSize = 0 + +2025-09-24 09:27:21,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:27:21,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:27:31,141 INFO [long-pulling] client count 0 + +2025-09-24 09:27:31,141 INFO toNotifyTaskSize = 0 + +2025-09-24 09:27:31,141 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:27:31,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:27:41,143 INFO [long-pulling] client count 0 + +2025-09-24 09:27:41,143 INFO toNotifyTaskSize = 0 + +2025-09-24 09:27:41,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:27:41,195 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:27:51,143 INFO [long-pulling] client count 0 + +2025-09-24 09:27:51,143 INFO toNotifyTaskSize = 0 + +2025-09-24 09:27:51,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:27:51,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:28:01,145 INFO [long-pulling] client count 0 + +2025-09-24 09:28:01,145 INFO toNotifyTaskSize = 0 + +2025-09-24 09:28:01,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:28:01,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:28:11,146 INFO [long-pulling] client count 0 + +2025-09-24 09:28:11,146 INFO toNotifyTaskSize = 0 + +2025-09-24 09:28:11,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:28:11,199 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:28:21,148 INFO [long-pulling] client count 0 + +2025-09-24 09:28:21,148 INFO toNotifyTaskSize = 0 + +2025-09-24 09:28:21,148 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:28:21,199 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:28:31,150 INFO [long-pulling] client count 0 + +2025-09-24 09:28:31,150 INFO toNotifyTaskSize = 0 + +2025-09-24 09:28:31,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:28:31,199 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:28:41,150 INFO [long-pulling] client count 0 + +2025-09-24 09:28:41,150 INFO toNotifyTaskSize = 0 + +2025-09-24 09:28:41,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:28:41,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:28:51,152 INFO [long-pulling] client count 0 + +2025-09-24 09:28:51,152 INFO toNotifyTaskSize = 0 + +2025-09-24 09:28:51,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:28:51,202 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:29:01,153 INFO [long-pulling] client count 0 + +2025-09-24 09:29:01,153 INFO toNotifyTaskSize = 0 + +2025-09-24 09:29:01,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:29:01,203 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:29:11,153 INFO [long-pulling] client count 0 + +2025-09-24 09:29:11,153 INFO toNotifyTaskSize = 0 + +2025-09-24 09:29:11,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:29:11,205 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:29:21,153 INFO [long-pulling] client count 0 + +2025-09-24 09:29:21,154 INFO toNotifyTaskSize = 0 + +2025-09-24 09:29:21,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:29:21,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:29:31,154 INFO [long-pulling] client count 0 + +2025-09-24 09:29:31,154 INFO toNotifyTaskSize = 0 + +2025-09-24 09:29:31,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:29:31,209 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:29:41,155 INFO [long-pulling] client count 0 + +2025-09-24 09:29:41,155 INFO toNotifyTaskSize = 0 + +2025-09-24 09:29:41,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:29:41,211 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:29:51,155 INFO [long-pulling] client count 0 + +2025-09-24 09:29:51,155 INFO toNotifyTaskSize = 0 + +2025-09-24 09:29:51,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:29:51,212 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:30:01,156 INFO [long-pulling] client count 0 + +2025-09-24 09:30:01,156 INFO toNotifyTaskSize = 0 + +2025-09-24 09:30:01,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:30:01,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:30:11,156 INFO [long-pulling] client count 0 + +2025-09-24 09:30:11,157 INFO toNotifyTaskSize = 0 + +2025-09-24 09:30:11,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:30:11,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:30:21,158 INFO [long-pulling] client count 0 + +2025-09-24 09:30:21,158 INFO toNotifyTaskSize = 0 + +2025-09-24 09:30:21,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:30:21,217 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:30:31,158 INFO [long-pulling] client count 0 + +2025-09-24 09:30:31,158 INFO toNotifyTaskSize = 0 + +2025-09-24 09:30:31,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:30:31,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:30:41,158 INFO [long-pulling] client count 0 + +2025-09-24 09:30:41,159 INFO toNotifyTaskSize = 0 + +2025-09-24 09:30:41,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:30:41,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:30:51,158 INFO [long-pulling] client count 0 + +2025-09-24 09:30:51,159 INFO toNotifyTaskSize = 0 + +2025-09-24 09:30:51,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:30:51,220 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:31:01,159 INFO [long-pulling] client count 0 + +2025-09-24 09:31:01,160 INFO toNotifyTaskSize = 0 + +2025-09-24 09:31:01,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:31:01,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:31:11,160 INFO [long-pulling] client count 0 + +2025-09-24 09:31:11,160 INFO toNotifyTaskSize = 0 + +2025-09-24 09:31:11,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:31:11,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:31:21,161 INFO [long-pulling] client count 0 + +2025-09-24 09:31:21,161 INFO toNotifyTaskSize = 0 + +2025-09-24 09:31:21,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:31:21,227 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:31:31,162 INFO toNotifyTaskSize = 0 + +2025-09-24 09:31:31,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:31:31,162 INFO [long-pulling] client count 0 + +2025-09-24 09:31:31,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:31:41,163 INFO [long-pulling] client count 0 + +2025-09-24 09:31:41,163 INFO toNotifyTaskSize = 0 + +2025-09-24 09:31:41,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:31:41,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:31:51,165 INFO [long-pulling] client count 0 + +2025-09-24 09:31:51,165 INFO toNotifyTaskSize = 0 + +2025-09-24 09:31:51,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:31:51,232 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:32:01,167 INFO [long-pulling] client count 0 + +2025-09-24 09:32:01,167 INFO toNotifyTaskSize = 0 + +2025-09-24 09:32:01,167 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:32:01,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:32:11,168 INFO toNotifyTaskSize = 0 + +2025-09-24 09:32:11,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:32:11,168 INFO [long-pulling] client count 0 + +2025-09-24 09:32:11,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:32:21,168 INFO toNotifyTaskSize = 0 + +2025-09-24 09:32:21,168 INFO [long-pulling] client count 0 + +2025-09-24 09:32:21,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:32:21,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:32:31,171 INFO [long-pulling] client count 0 + +2025-09-24 09:32:31,171 INFO toNotifyTaskSize = 0 + +2025-09-24 09:32:31,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:32:31,238 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:32:41,171 INFO [long-pulling] client count 0 + +2025-09-24 09:32:41,172 INFO toNotifyTaskSize = 0 + +2025-09-24 09:32:41,172 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:32:41,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:32:51,172 INFO [long-pulling] client count 0 + +2025-09-24 09:32:51,173 INFO toNotifyTaskSize = 0 + +2025-09-24 09:32:51,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:32:51,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:33:01,174 INFO toNotifyTaskSize = 0 + +2025-09-24 09:33:01,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:33:01,174 INFO [long-pulling] client count 0 + +2025-09-24 09:33:01,243 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:33:11,176 INFO [long-pulling] client count 0 + +2025-09-24 09:33:11,176 INFO toNotifyTaskSize = 0 + +2025-09-24 09:33:11,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:33:11,243 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:33:21,177 INFO [long-pulling] client count 0 + +2025-09-24 09:33:21,177 INFO toNotifyTaskSize = 0 + +2025-09-24 09:33:21,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:33:21,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:33:31,180 INFO [long-pulling] client count 0 + +2025-09-24 09:33:31,180 INFO toNotifyTaskSize = 0 + +2025-09-24 09:33:31,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:33:31,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:33:41,181 INFO [long-pulling] client count 0 + +2025-09-24 09:33:41,181 INFO toNotifyTaskSize = 0 + +2025-09-24 09:33:41,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:33:41,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:33:51,182 INFO [long-pulling] client count 0 + +2025-09-24 09:33:51,182 INFO toNotifyTaskSize = 0 + +2025-09-24 09:33:51,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:33:51,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:34:01,188 INFO [long-pulling] client count 0 + +2025-09-24 09:34:01,188 INFO toNotifyTaskSize = 0 + +2025-09-24 09:34:01,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:34:01,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:34:11,189 INFO [long-pulling] client count 0 + +2025-09-24 09:34:11,189 INFO toNotifyTaskSize = 0 + +2025-09-24 09:34:11,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:34:11,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:34:21,189 INFO [long-pulling] client count 0 + +2025-09-24 09:34:21,189 INFO toNotifyTaskSize = 0 + +2025-09-24 09:34:21,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:34:21,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:34:31,190 INFO [long-pulling] client count 0 + +2025-09-24 09:34:31,190 INFO toNotifyTaskSize = 0 + +2025-09-24 09:34:31,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:34:31,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:34:41,190 INFO [long-pulling] client count 0 + +2025-09-24 09:34:41,190 INFO toNotifyTaskSize = 0 + +2025-09-24 09:34:41,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:34:41,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:34:51,191 INFO [long-pulling] client count 0 + +2025-09-24 09:34:51,191 INFO toNotifyTaskSize = 0 + +2025-09-24 09:34:51,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:34:51,253 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:35:01,192 INFO [long-pulling] client count 0 + +2025-09-24 09:35:01,192 INFO toNotifyTaskSize = 0 + +2025-09-24 09:35:01,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:35:01,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:35:11,192 INFO [long-pulling] client count 0 + +2025-09-24 09:35:11,193 INFO toNotifyTaskSize = 0 + +2025-09-24 09:35:11,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:35:11,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:35:21,195 INFO toNotifyTaskSize = 0 + +2025-09-24 09:35:21,195 INFO [long-pulling] client count 0 + +2025-09-24 09:35:21,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:35:21,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:35:31,217 INFO toNotifyTaskSize = 0 + +2025-09-24 09:35:31,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:35:31,217 INFO [long-pulling] client count 0 + +2025-09-24 09:35:31,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:35:41,219 INFO [long-pulling] client count 0 + +2025-09-24 09:35:41,219 INFO toNotifyTaskSize = 0 + +2025-09-24 09:35:41,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:35:41,257 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:35:51,222 INFO toNotifyTaskSize = 0 + +2025-09-24 09:35:51,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:35:51,222 INFO [long-pulling] client count 0 + +2025-09-24 09:35:51,259 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:36:01,223 INFO toNotifyTaskSize = 0 + +2025-09-24 09:36:01,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:36:01,223 INFO [long-pulling] client count 0 + +2025-09-24 09:36:01,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:36:11,224 INFO toNotifyTaskSize = 0 + +2025-09-24 09:36:11,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:36:11,224 INFO [long-pulling] client count 0 + +2025-09-24 09:36:11,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:36:21,225 INFO toNotifyTaskSize = 0 + +2025-09-24 09:36:21,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:36:21,225 INFO [long-pulling] client count 0 + +2025-09-24 09:36:21,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:36:31,227 INFO [long-pulling] client count 0 + +2025-09-24 09:36:31,227 INFO toNotifyTaskSize = 0 + +2025-09-24 09:36:31,227 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:36:31,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:36:41,228 INFO toNotifyTaskSize = 0 + +2025-09-24 09:36:41,228 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:36:41,228 INFO [long-pulling] client count 0 + +2025-09-24 09:36:41,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:36:51,230 INFO toNotifyTaskSize = 0 + +2025-09-24 09:36:51,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:36:51,230 INFO [long-pulling] client count 0 + +2025-09-24 09:36:51,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:37:01,230 INFO [long-pulling] client count 0 + +2025-09-24 09:37:01,230 INFO toNotifyTaskSize = 0 + +2025-09-24 09:37:01,231 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:37:01,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:37:11,231 INFO [long-pulling] client count 0 + +2025-09-24 09:37:11,231 INFO toNotifyTaskSize = 0 + +2025-09-24 09:37:11,231 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:37:11,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:37:21,231 INFO toNotifyTaskSize = 0 + +2025-09-24 09:37:21,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:37:21,231 INFO [long-pulling] client count 0 + +2025-09-24 09:37:21,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:37:31,232 INFO [long-pulling] client count 0 + +2025-09-24 09:37:31,232 INFO toNotifyTaskSize = 0 + +2025-09-24 09:37:31,233 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:37:31,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:37:41,234 INFO [long-pulling] client count 0 + +2025-09-24 09:37:41,234 INFO toNotifyTaskSize = 0 + +2025-09-24 09:37:41,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:37:41,304 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:37:51,236 INFO [long-pulling] client count 0 + +2025-09-24 09:37:51,236 INFO toNotifyTaskSize = 0 + +2025-09-24 09:37:51,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:37:51,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:38:01,237 INFO [long-pulling] client count 0 + +2025-09-24 09:38:01,237 INFO toNotifyTaskSize = 0 + +2025-09-24 09:38:01,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:38:01,306 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:38:11,237 INFO [long-pulling] client count 0 + +2025-09-24 09:38:11,238 INFO toNotifyTaskSize = 0 + +2025-09-24 09:38:11,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:38:11,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:38:21,238 INFO [long-pulling] client count 0 + +2025-09-24 09:38:21,238 INFO toNotifyTaskSize = 0 + +2025-09-24 09:38:21,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:38:21,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:38:31,238 INFO [long-pulling] client count 0 + +2025-09-24 09:38:31,239 INFO toNotifyTaskSize = 0 + +2025-09-24 09:38:31,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:38:31,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:38:41,238 INFO [long-pulling] client count 0 + +2025-09-24 09:38:41,239 INFO toNotifyTaskSize = 0 + +2025-09-24 09:38:41,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:38:41,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:38:51,240 INFO [long-pulling] client count 0 + +2025-09-24 09:38:51,241 INFO toNotifyTaskSize = 0 + +2025-09-24 09:38:51,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:38:51,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:39:01,242 INFO [long-pulling] client count 0 + +2025-09-24 09:39:01,242 INFO toNotifyTaskSize = 0 + +2025-09-24 09:39:01,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:39:01,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:39:11,242 INFO [long-pulling] client count 0 + +2025-09-24 09:39:11,242 INFO toNotifyTaskSize = 0 + +2025-09-24 09:39:11,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:39:11,317 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:39:21,243 INFO [long-pulling] client count 0 + +2025-09-24 09:39:21,243 INFO toNotifyTaskSize = 0 + +2025-09-24 09:39:21,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:39:21,319 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:39:31,244 INFO [long-pulling] client count 0 + +2025-09-24 09:39:31,244 INFO toNotifyTaskSize = 0 + +2025-09-24 09:39:31,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:39:31,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:39:41,246 INFO [long-pulling] client count 0 + +2025-09-24 09:39:41,246 INFO toNotifyTaskSize = 0 + +2025-09-24 09:39:41,247 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:39:41,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:39:51,247 INFO toNotifyTaskSize = 0 + +2025-09-24 09:39:51,247 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:39:51,247 INFO [long-pulling] client count 0 + +2025-09-24 09:39:51,322 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:40:01,249 INFO [long-pulling] client count 0 + +2025-09-24 09:40:01,249 INFO toNotifyTaskSize = 0 + +2025-09-24 09:40:01,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:40:01,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:40:11,252 INFO [long-pulling] client count 0 + +2025-09-24 09:40:11,252 INFO toNotifyTaskSize = 0 + +2025-09-24 09:40:11,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:40:11,325 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:40:21,252 INFO toNotifyTaskSize = 0 + +2025-09-24 09:40:21,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:40:21,252 INFO [long-pulling] client count 0 + +2025-09-24 09:40:21,325 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:40:31,253 INFO toNotifyTaskSize = 0 + +2025-09-24 09:40:31,253 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:40:31,253 INFO [long-pulling] client count 0 + +2025-09-24 09:40:31,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:40:41,255 INFO toNotifyTaskSize = 0 + +2025-09-24 09:40:41,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:40:41,255 INFO [long-pulling] client count 0 + +2025-09-24 09:40:41,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:40:51,257 INFO toNotifyTaskSize = 0 + +2025-09-24 09:40:51,258 INFO [long-pulling] client count 0 + +2025-09-24 09:40:51,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:40:51,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:41:01,260 INFO [long-pulling] client count 0 + +2025-09-24 09:41:01,260 INFO toNotifyTaskSize = 0 + +2025-09-24 09:41:01,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:41:01,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:41:11,262 INFO [long-pulling] client count 0 + +2025-09-24 09:41:11,262 INFO toNotifyTaskSize = 0 + +2025-09-24 09:41:11,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:41:11,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:41:21,262 INFO [long-pulling] client count 0 + +2025-09-24 09:41:21,269 INFO toNotifyTaskSize = 0 + +2025-09-24 09:41:21,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:41:21,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:41:31,264 INFO [long-pulling] client count 0 + +2025-09-24 09:41:31,277 INFO toNotifyTaskSize = 0 + +2025-09-24 09:41:31,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:41:31,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:41:41,265 INFO [long-pulling] client count 0 + +2025-09-24 09:41:41,280 INFO toNotifyTaskSize = 0 + +2025-09-24 09:41:41,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:41:41,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:41:51,266 INFO [long-pulling] client count 0 + +2025-09-24 09:41:51,282 INFO toNotifyTaskSize = 0 + +2025-09-24 09:41:51,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:41:51,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:42:01,267 INFO [long-pulling] client count 0 + +2025-09-24 09:42:01,284 INFO toNotifyTaskSize = 0 + +2025-09-24 09:42:01,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:42:01,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:42:11,268 INFO [long-pulling] client count 0 + +2025-09-24 09:42:11,287 INFO toNotifyTaskSize = 0 + +2025-09-24 09:42:11,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:42:11,344 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:42:21,269 INFO [long-pulling] client count 0 + +2025-09-24 09:42:21,296 INFO toNotifyTaskSize = 0 + +2025-09-24 09:42:21,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:42:21,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:42:31,269 INFO [long-pulling] client count 0 + +2025-09-24 09:42:31,299 INFO toNotifyTaskSize = 0 + +2025-09-24 09:42:31,299 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:42:31,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:42:41,271 INFO [long-pulling] client count 0 + +2025-09-24 09:42:41,299 INFO toNotifyTaskSize = 0 + +2025-09-24 09:42:41,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:42:41,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:42:51,271 INFO [long-pulling] client count 0 + +2025-09-24 09:42:51,300 INFO toNotifyTaskSize = 0 + +2025-09-24 09:42:51,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:42:51,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:43:01,274 INFO [long-pulling] client count 0 + +2025-09-24 09:43:01,301 INFO toNotifyTaskSize = 0 + +2025-09-24 09:43:01,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:43:01,353 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:43:11,274 INFO [long-pulling] client count 0 + +2025-09-24 09:43:11,302 INFO toNotifyTaskSize = 0 + +2025-09-24 09:43:11,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:43:11,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:43:21,274 INFO [long-pulling] client count 0 + +2025-09-24 09:43:21,303 INFO toNotifyTaskSize = 0 + +2025-09-24 09:43:21,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:43:21,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:43:31,275 INFO [long-pulling] client count 0 + +2025-09-24 09:43:31,305 INFO toNotifyTaskSize = 0 + +2025-09-24 09:43:31,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:43:31,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:43:41,275 INFO [long-pulling] client count 0 + +2025-09-24 09:43:41,305 INFO toNotifyTaskSize = 0 + +2025-09-24 09:43:41,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:43:41,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:43:51,276 INFO [long-pulling] client count 0 + +2025-09-24 09:43:51,306 INFO toNotifyTaskSize = 0 + +2025-09-24 09:43:51,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:43:51,357 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:44:01,280 INFO [long-pulling] client count 0 + +2025-09-24 09:44:01,308 INFO toNotifyTaskSize = 0 + +2025-09-24 09:44:01,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:44:01,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:44:11,280 INFO [long-pulling] client count 0 + +2025-09-24 09:44:11,309 INFO toNotifyTaskSize = 0 + +2025-09-24 09:44:11,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:44:11,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:44:21,280 INFO [long-pulling] client count 0 + +2025-09-24 09:44:21,310 INFO toNotifyTaskSize = 0 + +2025-09-24 09:44:21,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:44:21,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:44:31,285 INFO [long-pulling] client count 0 + +2025-09-24 09:44:31,312 INFO toNotifyTaskSize = 0 + +2025-09-24 09:44:31,312 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:44:31,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:44:41,286 INFO [long-pulling] client count 0 + +2025-09-24 09:44:41,312 INFO toNotifyTaskSize = 0 + +2025-09-24 09:44:41,312 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:44:41,366 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:44:51,287 INFO [long-pulling] client count 0 + +2025-09-24 09:44:51,314 INFO toNotifyTaskSize = 0 + +2025-09-24 09:44:51,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:44:51,366 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:45:01,287 INFO [long-pulling] client count 0 + +2025-09-24 09:45:01,314 INFO toNotifyTaskSize = 0 + +2025-09-24 09:45:01,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:45:01,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:45:11,288 INFO [long-pulling] client count 0 + +2025-09-24 09:45:11,314 INFO toNotifyTaskSize = 0 + +2025-09-24 09:45:11,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:45:11,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:45:21,290 INFO [long-pulling] client count 0 + +2025-09-24 09:45:21,317 INFO toNotifyTaskSize = 0 + +2025-09-24 09:45:21,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:45:21,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:45:31,291 INFO [long-pulling] client count 0 + +2025-09-24 09:45:31,317 INFO toNotifyTaskSize = 0 + +2025-09-24 09:45:31,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:45:31,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:45:41,294 INFO [long-pulling] client count 0 + +2025-09-24 09:45:41,317 INFO toNotifyTaskSize = 0 + +2025-09-24 09:45:41,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:45:41,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:45:51,296 INFO [long-pulling] client count 0 + +2025-09-24 09:45:51,320 INFO toNotifyTaskSize = 0 + +2025-09-24 09:45:51,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:45:51,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:46:01,297 INFO [long-pulling] client count 0 + +2025-09-24 09:46:01,320 INFO toNotifyTaskSize = 0 + +2025-09-24 09:46:01,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:46:01,373 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:46:11,299 INFO [long-pulling] client count 0 + +2025-09-24 09:46:11,322 INFO toNotifyTaskSize = 0 + +2025-09-24 09:46:11,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:46:11,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:46:21,304 INFO [long-pulling] client count 0 + +2025-09-24 09:46:21,323 INFO toNotifyTaskSize = 0 + +2025-09-24 09:46:21,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:46:21,375 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:46:31,305 INFO [long-pulling] client count 0 + +2025-09-24 09:46:31,325 INFO toNotifyTaskSize = 0 + +2025-09-24 09:46:31,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:46:31,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:46:41,307 INFO [long-pulling] client count 0 + +2025-09-24 09:46:41,327 INFO toNotifyTaskSize = 0 + +2025-09-24 09:46:41,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:46:41,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:46:51,308 INFO [long-pulling] client count 0 + +2025-09-24 09:46:51,328 INFO toNotifyTaskSize = 0 + +2025-09-24 09:46:51,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:46:51,380 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:47:01,308 INFO [long-pulling] client count 0 + +2025-09-24 09:47:01,330 INFO toNotifyTaskSize = 0 + +2025-09-24 09:47:01,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:47:01,381 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:47:11,310 INFO [long-pulling] client count 0 + +2025-09-24 09:47:11,330 INFO toNotifyTaskSize = 0 + +2025-09-24 09:47:11,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:47:11,383 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:47:21,312 INFO [long-pulling] client count 0 + +2025-09-24 09:47:21,340 INFO toNotifyTaskSize = 0 + +2025-09-24 09:47:21,340 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:47:21,384 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:47:31,313 INFO [long-pulling] client count 0 + +2025-09-24 09:47:31,341 INFO toNotifyTaskSize = 0 + +2025-09-24 09:47:31,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:47:31,385 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:47:41,320 INFO [long-pulling] client count 0 + +2025-09-24 09:47:41,341 INFO toNotifyTaskSize = 0 + +2025-09-24 09:47:41,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:47:41,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:47:51,320 INFO [long-pulling] client count 0 + +2025-09-24 09:47:51,342 INFO toNotifyTaskSize = 0 + +2025-09-24 09:47:51,342 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:47:51,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:48:01,320 INFO [long-pulling] client count 0 + +2025-09-24 09:48:01,343 INFO toNotifyTaskSize = 0 + +2025-09-24 09:48:01,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:48:01,387 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:48:11,323 INFO [long-pulling] client count 0 + +2025-09-24 09:48:11,344 INFO toNotifyTaskSize = 0 + +2025-09-24 09:48:11,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:48:11,387 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:48:21,328 INFO [long-pulling] client count 0 + +2025-09-24 09:48:21,347 INFO toNotifyTaskSize = 0 + +2025-09-24 09:48:21,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:48:21,390 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:48:31,330 INFO [long-pulling] client count 0 + +2025-09-24 09:48:31,349 INFO toNotifyTaskSize = 0 + +2025-09-24 09:48:31,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:48:31,390 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:48:41,330 INFO [long-pulling] client count 0 + +2025-09-24 09:48:41,349 INFO toNotifyTaskSize = 0 + +2025-09-24 09:48:41,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:48:41,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:48:51,333 INFO [long-pulling] client count 0 + +2025-09-24 09:48:51,350 INFO toNotifyTaskSize = 0 + +2025-09-24 09:48:51,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:48:51,393 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:49:01,334 INFO [long-pulling] client count 0 + +2025-09-24 09:49:01,350 INFO toNotifyTaskSize = 0 + +2025-09-24 09:49:01,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:49:01,395 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:49:11,336 INFO [long-pulling] client count 0 + +2025-09-24 09:49:11,351 INFO toNotifyTaskSize = 0 + +2025-09-24 09:49:11,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:49:11,396 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:49:21,340 INFO [long-pulling] client count 0 + +2025-09-24 09:49:21,352 INFO toNotifyTaskSize = 0 + +2025-09-24 09:49:21,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:49:21,397 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:49:31,345 INFO [long-pulling] client count 0 + +2025-09-24 09:49:31,353 INFO toNotifyTaskSize = 0 + +2025-09-24 09:49:31,353 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:49:31,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:49:41,347 INFO [long-pulling] client count 0 + +2025-09-24 09:49:41,354 INFO toNotifyTaskSize = 0 + +2025-09-24 09:49:41,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:49:41,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:49:51,349 INFO [long-pulling] client count 0 + +2025-09-24 09:49:51,354 INFO toNotifyTaskSize = 0 + +2025-09-24 09:49:51,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:49:51,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:50:01,351 INFO [long-pulling] client count 0 + +2025-09-24 09:50:01,355 INFO toNotifyTaskSize = 0 + +2025-09-24 09:50:01,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:50:01,404 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:50:11,352 INFO [long-pulling] client count 0 + +2025-09-24 09:50:11,355 INFO toNotifyTaskSize = 0 + +2025-09-24 09:50:11,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:50:11,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:50:21,354 INFO [long-pulling] client count 0 + +2025-09-24 09:50:21,356 INFO toNotifyTaskSize = 0 + +2025-09-24 09:50:21,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:50:21,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:50:31,357 INFO [long-pulling] client count 0 + +2025-09-24 09:50:31,357 INFO toNotifyTaskSize = 0 + +2025-09-24 09:50:31,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:50:31,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:50:41,358 INFO [long-pulling] client count 0 + +2025-09-24 09:50:41,358 INFO toNotifyTaskSize = 0 + +2025-09-24 09:50:41,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:50:41,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:50:51,359 INFO [long-pulling] client count 0 + +2025-09-24 09:50:51,359 INFO toNotifyTaskSize = 0 + +2025-09-24 09:50:51,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:50:51,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:51:01,361 INFO [long-pulling] client count 0 + +2025-09-24 09:51:01,361 INFO toNotifyTaskSize = 0 + +2025-09-24 09:51:01,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:51:01,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:51:11,362 INFO [long-pulling] client count 0 + +2025-09-24 09:51:11,362 INFO toNotifyTaskSize = 0 + +2025-09-24 09:51:11,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:51:11,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:51:21,371 INFO [long-pulling] client count 0 + +2025-09-24 09:51:21,371 INFO toNotifyTaskSize = 0 + +2025-09-24 09:51:21,371 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:51:21,414 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:51:31,372 INFO [long-pulling] client count 0 + +2025-09-24 09:51:31,372 INFO toNotifyTaskSize = 0 + +2025-09-24 09:51:31,372 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:51:31,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:51:41,373 INFO [long-pulling] client count 0 + +2025-09-24 09:51:41,373 INFO toNotifyTaskSize = 0 + +2025-09-24 09:51:41,373 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:51:41,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:51:51,373 INFO [long-pulling] client count 0 + +2025-09-24 09:51:51,375 INFO toNotifyTaskSize = 0 + +2025-09-24 09:51:51,375 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:51:51,418 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:52:01,376 INFO [long-pulling] client count 0 + +2025-09-24 09:52:01,376 INFO toNotifyTaskSize = 0 + +2025-09-24 09:52:01,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:52:01,420 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:52:11,376 INFO [long-pulling] client count 0 + +2025-09-24 09:52:11,377 INFO toNotifyTaskSize = 0 + +2025-09-24 09:52:11,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:52:11,422 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:52:21,377 INFO [long-pulling] client count 0 + +2025-09-24 09:52:21,377 INFO toNotifyTaskSize = 0 + +2025-09-24 09:52:21,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:52:21,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:52:31,378 INFO [long-pulling] client count 0 + +2025-09-24 09:52:31,378 INFO toNotifyTaskSize = 0 + +2025-09-24 09:52:31,378 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:52:31,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:52:41,379 INFO toNotifyTaskSize = 0 + +2025-09-24 09:52:41,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:52:41,379 INFO [long-pulling] client count 0 + +2025-09-24 09:52:41,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:52:51,380 INFO [long-pulling] client count 0 + +2025-09-24 09:52:51,380 INFO toNotifyTaskSize = 0 + +2025-09-24 09:52:51,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:52:51,428 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:53:01,381 INFO [long-pulling] client count 0 + +2025-09-24 09:53:01,381 INFO toNotifyTaskSize = 0 + +2025-09-24 09:53:01,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:53:01,430 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:53:11,382 INFO [long-pulling] client count 0 + +2025-09-24 09:53:11,382 INFO toNotifyTaskSize = 0 + +2025-09-24 09:53:11,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:53:11,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:53:21,392 INFO toNotifyTaskSize = 0 + +2025-09-24 09:53:21,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:53:21,392 INFO [long-pulling] client count 0 + +2025-09-24 09:53:21,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:53:31,392 INFO [long-pulling] client count 0 + +2025-09-24 09:53:31,392 INFO toNotifyTaskSize = 0 + +2025-09-24 09:53:31,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:53:31,436 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:53:41,393 INFO [long-pulling] client count 0 + +2025-09-24 09:53:41,393 INFO toNotifyTaskSize = 0 + +2025-09-24 09:53:41,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:53:41,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:53:51,394 INFO [long-pulling] client count 0 + +2025-09-24 09:53:51,394 INFO toNotifyTaskSize = 0 + +2025-09-24 09:53:51,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:53:51,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:54:01,395 INFO [long-pulling] client count 0 + +2025-09-24 09:54:01,395 INFO toNotifyTaskSize = 0 + +2025-09-24 09:54:01,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:54:01,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:54:11,395 INFO [long-pulling] client count 0 + +2025-09-24 09:54:11,396 INFO toNotifyTaskSize = 0 + +2025-09-24 09:54:11,396 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:54:11,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:54:21,396 INFO [long-pulling] client count 0 + +2025-09-24 09:54:21,396 INFO toNotifyTaskSize = 0 + +2025-09-24 09:54:21,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:54:21,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:54:31,399 INFO [long-pulling] client count 0 + +2025-09-24 09:54:31,399 INFO toNotifyTaskSize = 0 + +2025-09-24 09:54:31,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:54:31,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:54:41,401 INFO [long-pulling] client count 0 + +2025-09-24 09:54:41,401 INFO toNotifyTaskSize = 0 + +2025-09-24 09:54:41,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:54:41,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:54:51,402 INFO [long-pulling] client count 0 + +2025-09-24 09:54:51,402 INFO toNotifyTaskSize = 0 + +2025-09-24 09:54:51,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:54:51,447 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:55:01,402 INFO [long-pulling] client count 0 + +2025-09-24 09:55:01,402 INFO toNotifyTaskSize = 0 + +2025-09-24 09:55:01,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:55:01,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:55:11,403 INFO [long-pulling] client count 0 + +2025-09-24 09:55:11,403 INFO toNotifyTaskSize = 0 + +2025-09-24 09:55:11,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:55:11,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:55:21,405 INFO [long-pulling] client count 0 + +2025-09-24 09:55:21,405 INFO toNotifyTaskSize = 0 + +2025-09-24 09:55:21,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:55:21,451 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:55:31,407 INFO [long-pulling] client count 0 + +2025-09-24 09:55:31,407 INFO toNotifyTaskSize = 0 + +2025-09-24 09:55:31,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:55:31,452 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:55:41,408 INFO [long-pulling] client count 0 + +2025-09-24 09:55:41,408 INFO toNotifyTaskSize = 0 + +2025-09-24 09:55:41,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:55:41,454 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:55:51,409 INFO [long-pulling] client count 0 + +2025-09-24 09:55:51,409 INFO toNotifyTaskSize = 0 + +2025-09-24 09:55:51,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:55:51,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:56:01,411 INFO [long-pulling] client count 0 + +2025-09-24 09:56:01,411 INFO toNotifyTaskSize = 0 + +2025-09-24 09:56:01,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:56:01,456 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:56:11,412 INFO [long-pulling] client count 0 + +2025-09-24 09:56:11,412 INFO toNotifyTaskSize = 0 + +2025-09-24 09:56:11,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:56:11,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:56:21,413 INFO [long-pulling] client count 0 + +2025-09-24 09:56:21,413 INFO toNotifyTaskSize = 0 + +2025-09-24 09:56:21,414 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:56:21,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:56:31,414 INFO [long-pulling] client count 0 + +2025-09-24 09:56:31,414 INFO toNotifyTaskSize = 0 + +2025-09-24 09:56:31,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:56:31,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:56:41,415 INFO [long-pulling] client count 0 + +2025-09-24 09:56:41,415 INFO toNotifyTaskSize = 0 + +2025-09-24 09:56:41,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:56:41,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:56:51,415 INFO [long-pulling] client count 0 + +2025-09-24 09:56:51,415 INFO toNotifyTaskSize = 0 + +2025-09-24 09:56:51,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:56:51,463 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:57:01,416 INFO [long-pulling] client count 0 + +2025-09-24 09:57:01,416 INFO toNotifyTaskSize = 0 + +2025-09-24 09:57:01,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:57:01,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:57:11,417 INFO [long-pulling] client count 0 + +2025-09-24 09:57:11,417 INFO toNotifyTaskSize = 0 + +2025-09-24 09:57:11,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:57:11,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:57:21,418 INFO [long-pulling] client count 0 + +2025-09-24 09:57:21,418 INFO toNotifyTaskSize = 0 + +2025-09-24 09:57:21,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:57:21,466 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:57:31,419 INFO [long-pulling] client count 0 + +2025-09-24 09:57:31,419 INFO toNotifyTaskSize = 0 + +2025-09-24 09:57:31,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:57:31,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:57:41,421 INFO [long-pulling] client count 0 + +2025-09-24 09:57:41,421 INFO toNotifyTaskSize = 0 + +2025-09-24 09:57:41,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:57:41,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:57:51,423 INFO toNotifyTaskSize = 0 + +2025-09-24 09:57:51,423 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:57:51,424 INFO [long-pulling] client count 0 + +2025-09-24 09:57:51,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:58:01,427 INFO [long-pulling] client count 0 + +2025-09-24 09:58:01,427 INFO toNotifyTaskSize = 0 + +2025-09-24 09:58:01,427 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:58:01,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:58:11,429 INFO [long-pulling] client count 0 + +2025-09-24 09:58:11,429 INFO toNotifyTaskSize = 0 + +2025-09-24 09:58:11,430 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:58:11,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:58:21,431 INFO [long-pulling] client count 0 + +2025-09-24 09:58:21,431 INFO toNotifyTaskSize = 0 + +2025-09-24 09:58:21,431 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:58:21,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:58:31,432 INFO toNotifyTaskSize = 0 + +2025-09-24 09:58:31,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:58:31,432 INFO [long-pulling] client count 0 + +2025-09-24 09:58:31,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:58:41,433 INFO [long-pulling] client count 0 + +2025-09-24 09:58:41,433 INFO toNotifyTaskSize = 0 + +2025-09-24 09:58:41,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:58:41,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:58:51,433 INFO [long-pulling] client count 0 + +2025-09-24 09:58:51,433 INFO toNotifyTaskSize = 0 + +2025-09-24 09:58:51,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:58:51,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:59:01,434 INFO [long-pulling] client count 0 + +2025-09-24 09:59:01,434 INFO toNotifyTaskSize = 0 + +2025-09-24 09:59:01,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:59:01,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:59:11,434 INFO [long-pulling] client count 0 + +2025-09-24 09:59:11,434 INFO toNotifyTaskSize = 0 + +2025-09-24 09:59:11,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:59:11,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:59:21,436 INFO [long-pulling] client count 0 + +2025-09-24 09:59:21,436 INFO toNotifyTaskSize = 0 + +2025-09-24 09:59:21,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:59:21,484 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:59:31,437 INFO [long-pulling] client count 0 + +2025-09-24 09:59:31,437 INFO toNotifyTaskSize = 0 + +2025-09-24 09:59:31,438 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:59:31,485 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:59:41,439 INFO [long-pulling] client count 0 + +2025-09-24 09:59:41,439 INFO toNotifyTaskSize = 0 + +2025-09-24 09:59:41,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:59:41,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 09:59:51,440 INFO [long-pulling] client count 0 + +2025-09-24 09:59:51,440 INFO toNotifyTaskSize = 0 + +2025-09-24 09:59:51,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 09:59:51,487 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:00:01,441 INFO [long-pulling] client count 0 + +2025-09-24 10:00:01,441 INFO toNotifyTaskSize = 0 + +2025-09-24 10:00:01,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:00:01,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:00:11,442 INFO toNotifyTaskSize = 0 + +2025-09-24 10:00:11,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:00:11,442 INFO [long-pulling] client count 0 + +2025-09-24 10:00:11,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:00:21,444 INFO [long-pulling] client count 0 + +2025-09-24 10:00:21,444 INFO toNotifyTaskSize = 0 + +2025-09-24 10:00:21,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:00:21,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:00:31,445 INFO [long-pulling] client count 0 + +2025-09-24 10:00:31,445 INFO toNotifyTaskSize = 0 + +2025-09-24 10:00:31,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:00:31,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:00:41,445 INFO [long-pulling] client count 0 + +2025-09-24 10:00:41,445 INFO toNotifyTaskSize = 0 + +2025-09-24 10:00:41,446 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:00:41,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:00:51,446 INFO [long-pulling] client count 0 + +2025-09-24 10:00:51,446 INFO toNotifyTaskSize = 0 + +2025-09-24 10:00:51,446 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:00:51,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:01:01,447 INFO [long-pulling] client count 0 + +2025-09-24 10:01:01,447 INFO toNotifyTaskSize = 0 + +2025-09-24 10:01:01,447 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:01:01,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:01:11,447 INFO [long-pulling] client count 0 + +2025-09-24 10:01:11,448 INFO toNotifyTaskSize = 0 + +2025-09-24 10:01:11,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:01:11,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:01:21,448 INFO [long-pulling] client count 0 + +2025-09-24 10:01:21,448 INFO toNotifyTaskSize = 0 + +2025-09-24 10:01:21,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:01:21,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:01:31,449 INFO [long-pulling] client count 0 + +2025-09-24 10:01:31,449 INFO toNotifyTaskSize = 0 + +2025-09-24 10:01:31,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:01:31,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:01:41,449 INFO [long-pulling] client count 0 + +2025-09-24 10:01:41,450 INFO toNotifyTaskSize = 0 + +2025-09-24 10:01:41,450 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:01:41,498 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:01:51,451 INFO [long-pulling] client count 0 + +2025-09-24 10:01:51,451 INFO toNotifyTaskSize = 0 + +2025-09-24 10:01:51,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:01:51,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:02:01,452 INFO [long-pulling] client count 0 + +2025-09-24 10:02:01,452 INFO toNotifyTaskSize = 0 + +2025-09-24 10:02:01,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:02:01,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:02:11,454 INFO [long-pulling] client count 0 + +2025-09-24 10:02:11,454 INFO toNotifyTaskSize = 0 + +2025-09-24 10:02:11,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:02:11,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:02:21,454 INFO [long-pulling] client count 0 + +2025-09-24 10:02:21,454 INFO toNotifyTaskSize = 0 + +2025-09-24 10:02:21,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:02:21,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:02:31,454 INFO [long-pulling] client count 0 + +2025-09-24 10:02:31,454 INFO toNotifyTaskSize = 0 + +2025-09-24 10:02:31,455 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:02:31,504 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:02:41,455 INFO toNotifyTaskSize = 0 + +2025-09-24 10:02:41,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:02:41,455 INFO [long-pulling] client count 0 + +2025-09-24 10:02:41,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:02:51,456 INFO [long-pulling] client count 0 + +2025-09-24 10:02:51,456 INFO toNotifyTaskSize = 0 + +2025-09-24 10:02:51,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:02:51,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:03:01,457 INFO [long-pulling] client count 0 + +2025-09-24 10:03:01,457 INFO toNotifyTaskSize = 0 + +2025-09-24 10:03:01,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:03:01,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:03:11,457 INFO [long-pulling] client count 0 + +2025-09-24 10:03:11,457 INFO toNotifyTaskSize = 0 + +2025-09-24 10:03:11,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:03:11,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:03:21,458 INFO toNotifyTaskSize = 0 + +2025-09-24 10:03:21,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:03:21,459 INFO [long-pulling] client count 0 + +2025-09-24 10:03:21,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:03:31,460 INFO [long-pulling] client count 0 + +2025-09-24 10:03:31,460 INFO toNotifyTaskSize = 0 + +2025-09-24 10:03:31,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:03:31,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:03:41,461 INFO [long-pulling] client count 0 + +2025-09-24 10:03:41,461 INFO toNotifyTaskSize = 0 + +2025-09-24 10:03:41,461 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:03:41,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:03:51,462 INFO [long-pulling] client count 0 + +2025-09-24 10:03:51,462 INFO toNotifyTaskSize = 0 + +2025-09-24 10:03:51,462 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:03:51,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:04:01,464 INFO [long-pulling] client count 0 + +2025-09-24 10:04:01,464 INFO toNotifyTaskSize = 0 + +2025-09-24 10:04:01,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:04:01,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:04:11,464 INFO [long-pulling] client count 0 + +2025-09-24 10:04:11,464 INFO toNotifyTaskSize = 0 + +2025-09-24 10:04:11,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:04:11,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:04:21,466 INFO [long-pulling] client count 0 + +2025-09-24 10:04:21,466 INFO toNotifyTaskSize = 0 + +2025-09-24 10:04:21,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:04:21,515 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:04:31,466 INFO [long-pulling] client count 0 + +2025-09-24 10:04:31,466 INFO toNotifyTaskSize = 0 + +2025-09-24 10:04:31,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:04:31,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:04:41,466 INFO toNotifyTaskSize = 0 + +2025-09-24 10:04:41,467 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:04:41,466 INFO [long-pulling] client count 0 + +2025-09-24 10:04:41,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:04:51,467 INFO toNotifyTaskSize = 0 + +2025-09-24 10:04:51,467 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:04:51,467 INFO [long-pulling] client count 0 + +2025-09-24 10:04:51,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:05:01,468 INFO [long-pulling] client count 0 + +2025-09-24 10:05:01,468 INFO toNotifyTaskSize = 0 + +2025-09-24 10:05:01,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:05:01,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:05:11,470 INFO [long-pulling] client count 0 + +2025-09-24 10:05:11,470 INFO toNotifyTaskSize = 0 + +2025-09-24 10:05:11,470 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:05:11,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:05:21,473 INFO [long-pulling] client count 0 + +2025-09-24 10:05:21,473 INFO toNotifyTaskSize = 0 + +2025-09-24 10:05:21,473 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:05:21,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:05:31,474 INFO toNotifyTaskSize = 0 + +2025-09-24 10:05:31,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:05:31,474 INFO [long-pulling] client count 0 + +2025-09-24 10:05:31,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:05:41,476 INFO [long-pulling] client count 0 + +2025-09-24 10:05:41,476 INFO toNotifyTaskSize = 0 + +2025-09-24 10:05:41,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:05:41,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:05:51,477 INFO [long-pulling] client count 0 + +2025-09-24 10:05:51,478 INFO toNotifyTaskSize = 0 + +2025-09-24 10:05:51,478 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:05:51,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:06:01,478 INFO [long-pulling] client count 0 + +2025-09-24 10:06:01,478 INFO toNotifyTaskSize = 0 + +2025-09-24 10:06:01,478 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:06:01,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:06:11,480 INFO [long-pulling] client count 0 + +2025-09-24 10:06:11,480 INFO toNotifyTaskSize = 0 + +2025-09-24 10:06:11,480 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:06:11,527 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:06:21,480 INFO [long-pulling] client count 0 + +2025-09-24 10:06:21,481 INFO toNotifyTaskSize = 0 + +2025-09-24 10:06:21,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:06:21,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:06:31,483 INFO [long-pulling] client count 0 + +2025-09-24 10:06:31,483 INFO toNotifyTaskSize = 0 + +2025-09-24 10:06:31,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:06:31,531 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:06:41,484 INFO [long-pulling] client count 0 + +2025-09-24 10:06:41,484 INFO toNotifyTaskSize = 0 + +2025-09-24 10:06:41,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:06:41,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:06:51,485 INFO [long-pulling] client count 0 + +2025-09-24 10:06:51,485 INFO toNotifyTaskSize = 0 + +2025-09-24 10:06:51,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:06:51,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:07:01,487 INFO [long-pulling] client count 0 + +2025-09-24 10:07:01,487 INFO toNotifyTaskSize = 0 + +2025-09-24 10:07:01,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:07:01,535 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:07:11,489 INFO [long-pulling] client count 0 + +2025-09-24 10:07:11,489 INFO toNotifyTaskSize = 0 + +2025-09-24 10:07:11,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:07:11,537 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:07:21,489 INFO [long-pulling] client count 0 + +2025-09-24 10:07:21,489 INFO toNotifyTaskSize = 0 + +2025-09-24 10:07:21,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:07:21,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:07:31,490 INFO [long-pulling] client count 0 + +2025-09-24 10:07:31,490 INFO toNotifyTaskSize = 0 + +2025-09-24 10:07:31,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:07:31,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:07:41,490 INFO [long-pulling] client count 0 + +2025-09-24 10:07:41,491 INFO toNotifyTaskSize = 0 + +2025-09-24 10:07:41,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:07:41,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:07:51,492 INFO toNotifyTaskSize = 0 + +2025-09-24 10:07:51,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:07:51,492 INFO [long-pulling] client count 0 + +2025-09-24 10:07:51,540 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:08:01,492 INFO [long-pulling] client count 0 + +2025-09-24 10:08:01,492 INFO toNotifyTaskSize = 0 + +2025-09-24 10:08:01,493 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:08:01,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:08:11,495 INFO [long-pulling] client count 0 + +2025-09-24 10:08:11,495 INFO toNotifyTaskSize = 0 + +2025-09-24 10:08:11,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:08:11,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:08:21,497 INFO [long-pulling] client count 0 + +2025-09-24 10:08:21,497 INFO toNotifyTaskSize = 0 + +2025-09-24 10:08:21,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:08:21,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:08:31,498 INFO [long-pulling] client count 0 + +2025-09-24 10:08:31,498 INFO toNotifyTaskSize = 0 + +2025-09-24 10:08:31,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:08:31,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:08:41,498 INFO [long-pulling] client count 0 + +2025-09-24 10:08:41,498 INFO toNotifyTaskSize = 0 + +2025-09-24 10:08:41,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:08:41,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:08:51,499 INFO [long-pulling] client count 0 + +2025-09-24 10:08:51,499 INFO toNotifyTaskSize = 0 + +2025-09-24 10:08:51,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:08:51,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:09:01,499 INFO [long-pulling] client count 0 + +2025-09-24 10:09:01,500 INFO toNotifyTaskSize = 0 + +2025-09-24 10:09:01,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:09:01,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:09:11,500 INFO [long-pulling] client count 0 + +2025-09-24 10:09:11,501 INFO toNotifyTaskSize = 0 + +2025-09-24 10:09:11,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:09:11,548 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:09:21,501 INFO [long-pulling] client count 0 + +2025-09-24 10:09:21,502 INFO toNotifyTaskSize = 0 + +2025-09-24 10:09:21,523 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:09:21,550 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:09:31,525 INFO [long-pulling] client count 0 + +2025-09-24 10:09:31,525 INFO toNotifyTaskSize = 0 + +2025-09-24 10:09:31,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:09:31,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:09:41,527 INFO [long-pulling] client count 0 + +2025-09-24 10:09:41,527 INFO toNotifyTaskSize = 0 + +2025-09-24 10:09:41,527 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:09:41,552 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:09:51,528 INFO [long-pulling] client count 0 + +2025-09-24 10:09:51,528 INFO toNotifyTaskSize = 0 + +2025-09-24 10:09:51,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:09:51,552 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:10:01,528 INFO toNotifyTaskSize = 0 + +2025-09-24 10:10:01,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:10:01,528 INFO [long-pulling] client count 0 + +2025-09-24 10:10:01,552 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:10:11,529 INFO [long-pulling] client count 0 + +2025-09-24 10:10:11,529 INFO toNotifyTaskSize = 0 + +2025-09-24 10:10:11,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:10:11,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:10:21,530 INFO [long-pulling] client count 0 + +2025-09-24 10:10:21,530 INFO toNotifyTaskSize = 0 + +2025-09-24 10:10:21,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:10:21,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:10:31,530 INFO toNotifyTaskSize = 0 + +2025-09-24 10:10:31,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:10:31,530 INFO [long-pulling] client count 0 + +2025-09-24 10:10:31,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:10:41,531 INFO [long-pulling] client count 0 + +2025-09-24 10:10:41,531 INFO toNotifyTaskSize = 0 + +2025-09-24 10:10:41,531 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:10:41,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:10:51,531 INFO [long-pulling] client count 0 + +2025-09-24 10:10:51,532 INFO toNotifyTaskSize = 0 + +2025-09-24 10:10:51,532 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:10:51,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:11:01,532 INFO [long-pulling] client count 0 + +2025-09-24 10:11:01,532 INFO toNotifyTaskSize = 0 + +2025-09-24 10:11:01,532 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:11:01,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:11:11,532 INFO [long-pulling] client count 0 + +2025-09-24 10:11:11,533 INFO toNotifyTaskSize = 0 + +2025-09-24 10:11:11,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:11:11,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:11:21,532 INFO [long-pulling] client count 0 + +2025-09-24 10:11:21,533 INFO toNotifyTaskSize = 0 + +2025-09-24 10:11:21,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:11:21,556 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:11:31,532 INFO [long-pulling] client count 0 + +2025-09-24 10:11:31,534 INFO toNotifyTaskSize = 0 + +2025-09-24 10:11:31,534 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:11:31,556 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:11:41,533 INFO [long-pulling] client count 0 + +2025-09-24 10:11:41,534 INFO toNotifyTaskSize = 0 + +2025-09-24 10:11:41,534 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:11:41,556 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:11:51,534 INFO [long-pulling] client count 0 + +2025-09-24 10:11:51,534 INFO toNotifyTaskSize = 0 + +2025-09-24 10:11:51,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:11:51,558 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:12:01,538 INFO toNotifyTaskSize = 0 + +2025-09-24 10:12:01,538 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:12:01,538 INFO [long-pulling] client count 0 + +2025-09-24 10:12:01,559 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:12:11,538 INFO toNotifyTaskSize = 0 + +2025-09-24 10:12:11,538 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:12:11,539 INFO [long-pulling] client count 0 + +2025-09-24 10:12:11,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:12:21,539 INFO [long-pulling] client count 0 + +2025-09-24 10:12:21,539 INFO toNotifyTaskSize = 0 + +2025-09-24 10:12:21,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:12:21,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:12:31,539 INFO [long-pulling] client count 0 + +2025-09-24 10:12:31,539 INFO toNotifyTaskSize = 0 + +2025-09-24 10:12:31,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:12:31,564 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:12:41,539 INFO [long-pulling] client count 0 + +2025-09-24 10:12:41,539 INFO toNotifyTaskSize = 0 + +2025-09-24 10:12:41,540 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:12:41,566 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:12:51,540 INFO [long-pulling] client count 0 + +2025-09-24 10:12:51,540 INFO toNotifyTaskSize = 0 + +2025-09-24 10:12:51,540 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:12:51,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:13:01,542 INFO [long-pulling] client count 0 + +2025-09-24 10:13:01,542 INFO toNotifyTaskSize = 0 + +2025-09-24 10:13:01,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:13:01,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:13:11,544 INFO [long-pulling] client count 0 + +2025-09-24 10:13:11,544 INFO toNotifyTaskSize = 0 + +2025-09-24 10:13:11,544 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:13:11,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:13:21,545 INFO [long-pulling] client count 0 + +2025-09-24 10:13:21,545 INFO toNotifyTaskSize = 0 + +2025-09-24 10:13:21,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:13:21,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:13:31,546 INFO toNotifyTaskSize = 0 + +2025-09-24 10:13:31,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:13:31,546 INFO [long-pulling] client count 0 + +2025-09-24 10:13:31,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:13:41,547 INFO [long-pulling] client count 0 + +2025-09-24 10:13:41,547 INFO toNotifyTaskSize = 0 + +2025-09-24 10:13:41,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:13:41,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:13:51,549 INFO [long-pulling] client count 0 + +2025-09-24 10:13:51,549 INFO toNotifyTaskSize = 0 + +2025-09-24 10:13:51,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:13:51,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:14:01,550 INFO [long-pulling] client count 0 + +2025-09-24 10:14:01,550 INFO toNotifyTaskSize = 0 + +2025-09-24 10:14:01,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:14:01,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:14:11,551 INFO [long-pulling] client count 0 + +2025-09-24 10:14:11,551 INFO toNotifyTaskSize = 0 + +2025-09-24 10:14:11,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:14:11,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:14:21,552 INFO [long-pulling] client count 0 + +2025-09-24 10:14:21,552 INFO toNotifyTaskSize = 0 + +2025-09-24 10:14:21,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:14:21,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:14:31,554 INFO [long-pulling] client count 0 + +2025-09-24 10:14:31,554 INFO toNotifyTaskSize = 0 + +2025-09-24 10:14:31,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:14:31,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:14:41,556 INFO toNotifyTaskSize = 0 + +2025-09-24 10:14:41,556 INFO [long-pulling] client count 0 + +2025-09-24 10:14:41,556 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:14:41,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:14:51,557 INFO [long-pulling] client count 0 + +2025-09-24 10:14:51,557 INFO toNotifyTaskSize = 0 + +2025-09-24 10:14:51,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:14:51,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:15:01,559 INFO [long-pulling] client count 0 + +2025-09-24 10:15:01,559 INFO toNotifyTaskSize = 0 + +2025-09-24 10:15:01,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:15:01,579 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:15:11,559 INFO [long-pulling] client count 0 + +2025-09-24 10:15:11,559 INFO toNotifyTaskSize = 0 + +2025-09-24 10:15:11,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:15:11,581 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:15:21,561 INFO [long-pulling] client count 0 + +2025-09-24 10:15:21,561 INFO toNotifyTaskSize = 0 + +2025-09-24 10:15:21,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:15:21,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:15:31,562 INFO [long-pulling] client count 0 + +2025-09-24 10:15:31,562 INFO toNotifyTaskSize = 0 + +2025-09-24 10:15:31,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:15:31,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:15:41,562 INFO [long-pulling] client count 0 + +2025-09-24 10:15:41,562 INFO toNotifyTaskSize = 0 + +2025-09-24 10:15:41,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:15:41,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:15:51,564 INFO [long-pulling] client count 0 + +2025-09-24 10:15:51,564 INFO toNotifyTaskSize = 0 + +2025-09-24 10:15:51,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:15:51,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:16:01,566 INFO [long-pulling] client count 0 + +2025-09-24 10:16:01,566 INFO toNotifyTaskSize = 0 + +2025-09-24 10:16:01,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:16:01,589 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:16:11,567 INFO [long-pulling] client count 0 + +2025-09-24 10:16:11,567 INFO toNotifyTaskSize = 0 + +2025-09-24 10:16:11,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:16:11,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:16:21,568 INFO [long-pulling] client count 0 + +2025-09-24 10:16:21,568 INFO toNotifyTaskSize = 0 + +2025-09-24 10:16:21,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:16:21,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:16:31,568 INFO [long-pulling] client count 0 + +2025-09-24 10:16:31,568 INFO toNotifyTaskSize = 0 + +2025-09-24 10:16:31,569 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:16:31,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:16:41,569 INFO [long-pulling] client count 0 + +2025-09-24 10:16:41,570 INFO toNotifyTaskSize = 0 + +2025-09-24 10:16:41,570 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:16:41,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:16:51,570 INFO [long-pulling] client count 0 + +2025-09-24 10:16:51,571 INFO toNotifyTaskSize = 0 + +2025-09-24 10:16:51,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:16:51,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:17:01,572 INFO [long-pulling] client count 0 + +2025-09-24 10:17:01,572 INFO toNotifyTaskSize = 0 + +2025-09-24 10:17:01,572 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:17:01,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:17:11,572 INFO [long-pulling] client count 0 + +2025-09-24 10:17:11,573 INFO toNotifyTaskSize = 0 + +2025-09-24 10:17:11,573 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:17:11,598 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:17:21,574 INFO [long-pulling] client count 0 + +2025-09-24 10:17:21,574 INFO toNotifyTaskSize = 0 + +2025-09-24 10:17:21,575 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:17:21,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:17:31,576 INFO [long-pulling] client count 0 + +2025-09-24 10:17:31,576 INFO toNotifyTaskSize = 0 + +2025-09-24 10:17:31,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:17:31,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:17:41,578 INFO [long-pulling] client count 0 + +2025-09-24 10:17:41,578 INFO toNotifyTaskSize = 0 + +2025-09-24 10:17:41,578 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:17:41,603 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:17:51,578 INFO [long-pulling] client count 0 + +2025-09-24 10:17:51,578 INFO toNotifyTaskSize = 0 + +2025-09-24 10:17:51,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:17:51,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:18:01,579 INFO [long-pulling] client count 0 + +2025-09-24 10:18:01,579 INFO toNotifyTaskSize = 0 + +2025-09-24 10:18:01,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:18:01,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:18:11,580 INFO [long-pulling] client count 0 + +2025-09-24 10:18:11,580 INFO toNotifyTaskSize = 0 + +2025-09-24 10:18:11,581 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:18:11,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:18:21,581 INFO [long-pulling] client count 0 + +2025-09-24 10:18:21,581 INFO toNotifyTaskSize = 0 + +2025-09-24 10:18:21,581 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:18:21,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:18:31,582 INFO [long-pulling] client count 0 + +2025-09-24 10:18:31,582 INFO toNotifyTaskSize = 0 + +2025-09-24 10:18:31,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:18:31,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:18:41,583 INFO [long-pulling] client count 0 + +2025-09-24 10:18:41,583 INFO toNotifyTaskSize = 0 + +2025-09-24 10:18:41,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:18:41,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:18:51,584 INFO [long-pulling] client count 0 + +2025-09-24 10:18:51,584 INFO toNotifyTaskSize = 0 + +2025-09-24 10:18:51,584 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:18:51,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:19:01,584 INFO [long-pulling] client count 0 + +2025-09-24 10:19:01,584 INFO toNotifyTaskSize = 0 + +2025-09-24 10:19:01,584 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:19:01,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:19:11,584 INFO [long-pulling] client count 0 + +2025-09-24 10:19:11,585 INFO toNotifyTaskSize = 0 + +2025-09-24 10:19:11,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:19:11,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:19:21,586 INFO [long-pulling] client count 0 + +2025-09-24 10:19:21,586 INFO toNotifyTaskSize = 0 + +2025-09-24 10:19:21,586 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:19:21,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:19:31,586 INFO toNotifyTaskSize = 0 + +2025-09-24 10:19:31,587 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:19:31,586 INFO [long-pulling] client count 0 + +2025-09-24 10:19:31,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:19:41,587 INFO toNotifyTaskSize = 0 + +2025-09-24 10:19:41,587 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:19:41,587 INFO [long-pulling] client count 0 + +2025-09-24 10:19:41,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:19:51,589 INFO [long-pulling] client count 0 + +2025-09-24 10:19:51,589 INFO toNotifyTaskSize = 0 + +2025-09-24 10:19:51,589 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:19:51,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:20:01,590 INFO [long-pulling] client count 0 + +2025-09-24 10:20:01,590 INFO toNotifyTaskSize = 0 + +2025-09-24 10:20:01,591 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:20:01,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:20:11,593 INFO [long-pulling] client count 0 + +2025-09-24 10:20:11,593 INFO toNotifyTaskSize = 0 + +2025-09-24 10:20:11,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:20:11,618 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:20:21,593 INFO [long-pulling] client count 0 + +2025-09-24 10:20:21,593 INFO toNotifyTaskSize = 0 + +2025-09-24 10:20:21,594 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:20:21,620 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:20:31,594 INFO [long-pulling] client count 0 + +2025-09-24 10:20:31,594 INFO toNotifyTaskSize = 0 + +2025-09-24 10:20:31,594 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:20:31,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:20:41,596 INFO [long-pulling] client count 0 + +2025-09-24 10:20:41,596 INFO toNotifyTaskSize = 0 + +2025-09-24 10:20:41,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:20:41,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:20:51,596 INFO [long-pulling] client count 0 + +2025-09-24 10:20:51,596 INFO toNotifyTaskSize = 0 + +2025-09-24 10:20:51,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:20:51,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:21:01,596 INFO [long-pulling] client count 0 + +2025-09-24 10:21:01,596 INFO toNotifyTaskSize = 0 + +2025-09-24 10:21:01,597 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:21:01,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:21:11,600 INFO [long-pulling] client count 0 + +2025-09-24 10:21:11,600 INFO toNotifyTaskSize = 0 + +2025-09-24 10:21:11,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:21:11,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:21:21,602 INFO [long-pulling] client count 0 + +2025-09-24 10:21:21,602 INFO toNotifyTaskSize = 0 + +2025-09-24 10:21:21,603 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:21:21,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:21:31,603 INFO [long-pulling] client count 0 + +2025-09-24 10:21:31,603 INFO toNotifyTaskSize = 0 + +2025-09-24 10:21:31,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:21:31,625 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:21:41,606 INFO [long-pulling] client count 0 + +2025-09-24 10:21:41,606 INFO toNotifyTaskSize = 0 + +2025-09-24 10:21:41,606 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:21:41,625 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:21:51,607 INFO [long-pulling] client count 0 + +2025-09-24 10:21:51,607 INFO toNotifyTaskSize = 0 + +2025-09-24 10:21:51,607 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:21:51,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:22:01,607 INFO [long-pulling] client count 0 + +2025-09-24 10:22:01,607 INFO toNotifyTaskSize = 0 + +2025-09-24 10:22:01,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:22:01,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:22:11,608 INFO [long-pulling] client count 0 + +2025-09-24 10:22:11,608 INFO toNotifyTaskSize = 0 + +2025-09-24 10:22:11,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:22:11,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:22:21,608 INFO [long-pulling] client count 0 + +2025-09-24 10:22:21,609 INFO toNotifyTaskSize = 0 + +2025-09-24 10:22:21,609 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:22:21,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:22:31,609 INFO [long-pulling] client count 0 + +2025-09-24 10:22:31,609 INFO toNotifyTaskSize = 0 + +2025-09-24 10:22:31,610 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:22:31,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:22:41,610 INFO [long-pulling] client count 0 + +2025-09-24 10:22:41,610 INFO toNotifyTaskSize = 0 + +2025-09-24 10:22:41,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:22:41,633 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:22:51,611 INFO [long-pulling] client count 0 + +2025-09-24 10:22:51,611 INFO toNotifyTaskSize = 0 + +2025-09-24 10:22:51,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:22:51,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:23:01,611 INFO [long-pulling] client count 0 + +2025-09-24 10:23:01,611 INFO toNotifyTaskSize = 0 + +2025-09-24 10:23:01,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:23:01,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:23:11,613 INFO [long-pulling] client count 0 + +2025-09-24 10:23:11,613 INFO toNotifyTaskSize = 0 + +2025-09-24 10:23:11,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:23:11,637 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:23:21,614 INFO [long-pulling] client count 0 + +2025-09-24 10:23:21,614 INFO toNotifyTaskSize = 0 + +2025-09-24 10:23:21,614 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:23:21,639 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:23:31,616 INFO [long-pulling] client count 0 + +2025-09-24 10:23:31,616 INFO toNotifyTaskSize = 0 + +2025-09-24 10:23:31,616 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:23:31,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:23:41,618 INFO [long-pulling] client count 0 + +2025-09-24 10:23:41,618 INFO toNotifyTaskSize = 0 + +2025-09-24 10:23:41,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:23:41,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:23:51,620 INFO [long-pulling] client count 0 + +2025-09-24 10:23:51,620 INFO toNotifyTaskSize = 0 + +2025-09-24 10:23:51,620 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:23:51,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:24:01,622 INFO [long-pulling] client count 0 + +2025-09-24 10:24:01,622 INFO toNotifyTaskSize = 0 + +2025-09-24 10:24:01,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:24:01,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:24:11,624 INFO [long-pulling] client count 0 + +2025-09-24 10:24:11,624 INFO toNotifyTaskSize = 0 + +2025-09-24 10:24:11,624 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:24:11,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:24:21,625 INFO [long-pulling] client count 0 + +2025-09-24 10:24:21,625 INFO toNotifyTaskSize = 0 + +2025-09-24 10:24:21,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:24:21,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:24:31,625 INFO [long-pulling] client count 0 + +2025-09-24 10:24:31,625 INFO toNotifyTaskSize = 0 + +2025-09-24 10:24:31,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:24:31,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:24:41,628 INFO toNotifyTaskSize = 0 + +2025-09-24 10:24:41,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:24:41,628 INFO [long-pulling] client count 0 + +2025-09-24 10:24:41,652 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:24:51,628 INFO toNotifyTaskSize = 0 + +2025-09-24 10:24:51,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:24:51,628 INFO [long-pulling] client count 0 + +2025-09-24 10:24:51,655 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:25:01,629 INFO toNotifyTaskSize = 0 + +2025-09-24 10:25:01,629 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:25:01,629 INFO [long-pulling] client count 0 + +2025-09-24 10:25:01,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:25:11,631 INFO toNotifyTaskSize = 0 + +2025-09-24 10:25:11,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:25:11,631 INFO [long-pulling] client count 0 + +2025-09-24 10:25:11,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:25:21,632 INFO toNotifyTaskSize = 0 + +2025-09-24 10:25:21,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:25:21,632 INFO [long-pulling] client count 0 + +2025-09-24 10:25:21,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:25:31,632 INFO [long-pulling] client count 0 + +2025-09-24 10:25:31,632 INFO toNotifyTaskSize = 0 + +2025-09-24 10:25:31,633 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:25:31,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:25:41,633 INFO [long-pulling] client count 0 + +2025-09-24 10:25:41,633 INFO toNotifyTaskSize = 0 + +2025-09-24 10:25:41,633 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:25:41,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:25:51,633 INFO [long-pulling] client count 0 + +2025-09-24 10:25:51,633 INFO toNotifyTaskSize = 0 + +2025-09-24 10:25:51,633 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:25:51,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:26:01,635 INFO [long-pulling] client count 0 + +2025-09-24 10:26:01,635 INFO toNotifyTaskSize = 0 + +2025-09-24 10:26:01,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:26:01,664 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:26:11,636 INFO [long-pulling] client count 0 + +2025-09-24 10:26:11,636 INFO toNotifyTaskSize = 0 + +2025-09-24 10:26:11,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:26:11,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:26:21,636 INFO [long-pulling] client count 0 + +2025-09-24 10:26:21,636 INFO toNotifyTaskSize = 0 + +2025-09-24 10:26:21,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:26:21,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:26:31,638 INFO [long-pulling] client count 0 + +2025-09-24 10:26:31,638 INFO toNotifyTaskSize = 0 + +2025-09-24 10:26:31,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:26:31,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:26:41,640 INFO [long-pulling] client count 0 + +2025-09-24 10:26:41,640 INFO toNotifyTaskSize = 0 + +2025-09-24 10:26:41,640 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:26:41,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:26:51,640 INFO [long-pulling] client count 0 + +2025-09-24 10:26:51,641 INFO toNotifyTaskSize = 0 + +2025-09-24 10:26:51,641 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:26:51,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:27:01,643 INFO [long-pulling] client count 0 + +2025-09-24 10:27:01,643 INFO toNotifyTaskSize = 0 + +2025-09-24 10:27:01,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:27:01,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:27:11,644 INFO [long-pulling] client count 0 + +2025-09-24 10:27:11,644 INFO toNotifyTaskSize = 0 + +2025-09-24 10:27:11,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:27:11,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:27:21,645 INFO [long-pulling] client count 0 + +2025-09-24 10:27:21,645 INFO toNotifyTaskSize = 0 + +2025-09-24 10:27:21,645 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:27:21,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:27:31,647 INFO [long-pulling] client count 0 + +2025-09-24 10:27:31,647 INFO toNotifyTaskSize = 0 + +2025-09-24 10:27:31,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:27:31,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:27:41,647 INFO toNotifyTaskSize = 0 + +2025-09-24 10:27:41,648 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:27:41,647 INFO [long-pulling] client count 0 + +2025-09-24 10:27:41,675 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:27:51,649 INFO [long-pulling] client count 0 + +2025-09-24 10:27:51,649 INFO toNotifyTaskSize = 0 + +2025-09-24 10:27:51,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:27:51,676 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:28:01,651 INFO [long-pulling] client count 0 + +2025-09-24 10:28:01,651 INFO toNotifyTaskSize = 0 + +2025-09-24 10:28:01,651 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:28:01,676 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:28:11,651 INFO [long-pulling] client count 0 + +2025-09-24 10:28:11,651 INFO toNotifyTaskSize = 0 + +2025-09-24 10:28:11,651 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:28:11,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:28:21,651 INFO [long-pulling] client count 0 + +2025-09-24 10:28:21,652 INFO toNotifyTaskSize = 0 + +2025-09-24 10:28:21,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:28:21,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:28:31,653 INFO [long-pulling] client count 0 + +2025-09-24 10:28:31,653 INFO toNotifyTaskSize = 0 + +2025-09-24 10:28:31,653 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:28:31,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:28:41,653 INFO [long-pulling] client count 0 + +2025-09-24 10:28:41,653 INFO toNotifyTaskSize = 0 + +2025-09-24 10:28:41,654 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:28:41,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:28:51,655 INFO toNotifyTaskSize = 0 + +2025-09-24 10:28:51,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:28:51,655 INFO [long-pulling] client count 0 + +2025-09-24 10:28:51,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:29:01,655 INFO toNotifyTaskSize = 0 + +2025-09-24 10:29:01,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:29:01,655 INFO [long-pulling] client count 0 + +2025-09-24 10:29:01,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:29:11,656 INFO [long-pulling] client count 0 + +2025-09-24 10:29:11,656 INFO toNotifyTaskSize = 0 + +2025-09-24 10:29:11,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:29:11,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:29:21,656 INFO [long-pulling] client count 0 + +2025-09-24 10:29:21,657 INFO toNotifyTaskSize = 0 + +2025-09-24 10:29:21,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:29:21,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:29:31,657 INFO [long-pulling] client count 0 + +2025-09-24 10:29:31,657 INFO toNotifyTaskSize = 0 + +2025-09-24 10:29:31,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:29:31,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:29:41,658 INFO [long-pulling] client count 0 + +2025-09-24 10:29:41,658 INFO toNotifyTaskSize = 0 + +2025-09-24 10:29:41,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:29:41,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:29:51,658 INFO [long-pulling] client count 0 + +2025-09-24 10:29:51,658 INFO toNotifyTaskSize = 0 + +2025-09-24 10:29:51,659 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:29:51,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:30:01,659 INFO [long-pulling] client count 0 + +2025-09-24 10:30:01,659 INFO toNotifyTaskSize = 0 + +2025-09-24 10:30:01,659 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:30:01,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:30:11,661 INFO toNotifyTaskSize = 0 + +2025-09-24 10:30:11,661 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:30:11,661 INFO [long-pulling] client count 0 + +2025-09-24 10:30:11,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:30:21,661 INFO [long-pulling] client count 0 + +2025-09-24 10:30:21,661 INFO toNotifyTaskSize = 0 + +2025-09-24 10:30:21,662 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:30:21,687 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:30:31,662 INFO toNotifyTaskSize = 0 + +2025-09-24 10:30:31,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:30:31,663 INFO [long-pulling] client count 0 + +2025-09-24 10:30:31,689 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:30:41,664 INFO [long-pulling] client count 0 + +2025-09-24 10:30:41,664 INFO toNotifyTaskSize = 0 + +2025-09-24 10:30:41,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:30:41,691 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:30:51,664 INFO [long-pulling] client count 0 + +2025-09-24 10:30:51,664 INFO toNotifyTaskSize = 0 + +2025-09-24 10:30:51,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:30:51,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:31:01,666 INFO [long-pulling] client count 0 + +2025-09-24 10:31:01,666 INFO toNotifyTaskSize = 0 + +2025-09-24 10:31:01,666 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:31:01,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:31:11,666 INFO [long-pulling] client count 0 + +2025-09-24 10:31:11,667 INFO toNotifyTaskSize = 0 + +2025-09-24 10:31:11,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:31:11,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:31:21,667 INFO [long-pulling] client count 0 + +2025-09-24 10:31:21,668 INFO toNotifyTaskSize = 0 + +2025-09-24 10:31:21,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:31:21,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:31:31,668 INFO [long-pulling] client count 0 + +2025-09-24 10:31:31,668 INFO toNotifyTaskSize = 0 + +2025-09-24 10:31:31,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:31:31,695 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:31:41,668 INFO [long-pulling] client count 0 + +2025-09-24 10:31:41,669 INFO toNotifyTaskSize = 0 + +2025-09-24 10:31:41,669 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:31:41,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:31:51,670 INFO [long-pulling] client count 0 + +2025-09-24 10:31:51,670 INFO toNotifyTaskSize = 0 + +2025-09-24 10:31:51,670 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:31:51,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:32:01,670 INFO [long-pulling] client count 0 + +2025-09-24 10:32:01,670 INFO toNotifyTaskSize = 0 + +2025-09-24 10:32:01,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:32:01,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:32:11,672 INFO [long-pulling] client count 0 + +2025-09-24 10:32:11,672 INFO toNotifyTaskSize = 0 + +2025-09-24 10:32:11,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:32:11,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:32:21,673 INFO [long-pulling] client count 0 + +2025-09-24 10:32:21,681 INFO toNotifyTaskSize = 0 + +2025-09-24 10:32:21,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:32:21,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:32:31,674 INFO [long-pulling] client count 0 + +2025-09-24 10:32:31,682 INFO toNotifyTaskSize = 0 + +2025-09-24 10:32:31,682 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:32:31,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:32:41,676 INFO [long-pulling] client count 0 + +2025-09-24 10:32:41,684 INFO toNotifyTaskSize = 0 + +2025-09-24 10:32:41,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:32:41,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:32:51,676 INFO [long-pulling] client count 0 + +2025-09-24 10:32:51,687 INFO toNotifyTaskSize = 0 + +2025-09-24 10:32:51,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:32:51,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:33:01,677 INFO [long-pulling] client count 0 + +2025-09-24 10:33:01,688 INFO toNotifyTaskSize = 0 + +2025-09-24 10:33:01,688 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:33:01,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:33:11,677 INFO [long-pulling] client count 0 + +2025-09-24 10:33:11,690 INFO toNotifyTaskSize = 0 + +2025-09-24 10:33:11,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:33:11,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:33:21,679 INFO [long-pulling] client count 0 + +2025-09-24 10:33:21,690 INFO toNotifyTaskSize = 0 + +2025-09-24 10:33:21,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:33:21,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:33:31,681 INFO [long-pulling] client count 0 + +2025-09-24 10:33:31,692 INFO toNotifyTaskSize = 0 + +2025-09-24 10:33:31,692 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:33:31,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:33:41,683 INFO [long-pulling] client count 0 + +2025-09-24 10:33:41,694 INFO toNotifyTaskSize = 0 + +2025-09-24 10:33:41,695 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:33:41,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:33:51,685 INFO [long-pulling] client count 0 + +2025-09-24 10:33:51,696 INFO toNotifyTaskSize = 0 + +2025-09-24 10:33:51,696 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:33:51,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:34:01,686 INFO [long-pulling] client count 0 + +2025-09-24 10:34:01,697 INFO toNotifyTaskSize = 0 + +2025-09-24 10:34:01,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:34:01,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:34:11,686 INFO [long-pulling] client count 0 + +2025-09-24 10:34:11,697 INFO toNotifyTaskSize = 0 + +2025-09-24 10:34:11,698 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:34:11,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:34:21,687 INFO [long-pulling] client count 0 + +2025-09-24 10:34:21,699 INFO toNotifyTaskSize = 0 + +2025-09-24 10:34:21,699 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:34:21,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:34:31,688 INFO [long-pulling] client count 0 + +2025-09-24 10:34:31,701 INFO toNotifyTaskSize = 0 + +2025-09-24 10:34:31,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:34:31,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:34:41,688 INFO [long-pulling] client count 0 + +2025-09-24 10:34:41,703 INFO toNotifyTaskSize = 0 + +2025-09-24 10:34:41,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:34:41,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:34:51,689 INFO [long-pulling] client count 0 + +2025-09-24 10:34:51,704 INFO toNotifyTaskSize = 0 + +2025-09-24 10:34:51,704 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:34:51,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:35:01,690 INFO [long-pulling] client count 0 + +2025-09-24 10:35:01,704 INFO toNotifyTaskSize = 0 + +2025-09-24 10:35:01,704 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:35:01,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:35:11,690 INFO [long-pulling] client count 0 + +2025-09-24 10:35:11,705 INFO toNotifyTaskSize = 0 + +2025-09-24 10:35:11,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:35:11,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:35:21,691 INFO [long-pulling] client count 0 + +2025-09-24 10:35:21,706 INFO toNotifyTaskSize = 0 + +2025-09-24 10:35:21,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:35:21,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:35:31,692 INFO [long-pulling] client count 0 + +2025-09-24 10:35:31,706 INFO toNotifyTaskSize = 0 + +2025-09-24 10:35:31,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:35:31,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:35:41,693 INFO [long-pulling] client count 0 + +2025-09-24 10:35:41,706 INFO toNotifyTaskSize = 0 + +2025-09-24 10:35:41,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:35:41,735 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:35:51,693 INFO [long-pulling] client count 0 + +2025-09-24 10:35:51,708 INFO toNotifyTaskSize = 0 + +2025-09-24 10:35:51,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:35:51,736 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:36:01,695 INFO [long-pulling] client count 0 + +2025-09-24 10:36:01,708 INFO toNotifyTaskSize = 0 + +2025-09-24 10:36:01,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:36:01,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:36:11,695 INFO [long-pulling] client count 0 + +2025-09-24 10:36:11,709 INFO toNotifyTaskSize = 0 + +2025-09-24 10:36:11,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:36:11,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:36:21,698 INFO [long-pulling] client count 0 + +2025-09-24 10:36:21,711 INFO toNotifyTaskSize = 0 + +2025-09-24 10:36:21,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:36:21,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:36:31,700 INFO [long-pulling] client count 0 + +2025-09-24 10:36:31,713 INFO toNotifyTaskSize = 0 + +2025-09-24 10:36:31,713 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:36:31,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:36:41,702 INFO [long-pulling] client count 0 + +2025-09-24 10:36:41,714 INFO toNotifyTaskSize = 0 + +2025-09-24 10:36:41,714 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:36:41,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:36:51,704 INFO [long-pulling] client count 0 + +2025-09-24 10:36:51,717 INFO toNotifyTaskSize = 0 + +2025-09-24 10:36:51,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:36:51,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:37:01,705 INFO [long-pulling] client count 0 + +2025-09-24 10:37:01,717 INFO toNotifyTaskSize = 0 + +2025-09-24 10:37:01,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:37:01,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:37:11,707 INFO [long-pulling] client count 0 + +2025-09-24 10:37:11,719 INFO toNotifyTaskSize = 0 + +2025-09-24 10:37:11,719 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:37:11,742 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:37:21,709 INFO [long-pulling] client count 0 + +2025-09-24 10:37:21,721 INFO toNotifyTaskSize = 0 + +2025-09-24 10:37:21,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:37:21,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:37:31,710 INFO [long-pulling] client count 0 + +2025-09-24 10:37:31,721 INFO toNotifyTaskSize = 0 + +2025-09-24 10:37:31,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:37:31,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:37:41,710 INFO [long-pulling] client count 0 + +2025-09-24 10:37:41,722 INFO toNotifyTaskSize = 0 + +2025-09-24 10:37:41,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:37:41,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:37:51,711 INFO [long-pulling] client count 0 + +2025-09-24 10:37:51,722 INFO toNotifyTaskSize = 0 + +2025-09-24 10:37:51,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:37:51,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:38:01,713 INFO [long-pulling] client count 0 + +2025-09-24 10:38:01,723 INFO toNotifyTaskSize = 0 + +2025-09-24 10:38:01,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:38:01,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:38:11,714 INFO [long-pulling] client count 0 + +2025-09-24 10:38:11,724 INFO toNotifyTaskSize = 0 + +2025-09-24 10:38:11,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:38:11,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:38:21,716 INFO [long-pulling] client count 0 + +2025-09-24 10:38:21,727 INFO toNotifyTaskSize = 0 + +2025-09-24 10:38:21,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:38:21,753 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:38:31,719 INFO [long-pulling] client count 0 + +2025-09-24 10:38:31,729 INFO toNotifyTaskSize = 0 + +2025-09-24 10:38:31,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:38:31,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:38:41,720 INFO [long-pulling] client count 0 + +2025-09-24 10:38:41,730 INFO toNotifyTaskSize = 0 + +2025-09-24 10:38:41,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:38:41,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:38:51,723 INFO [long-pulling] client count 0 + +2025-09-24 10:38:51,730 INFO toNotifyTaskSize = 0 + +2025-09-24 10:38:51,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:38:51,758 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:39:01,723 INFO [long-pulling] client count 0 + +2025-09-24 10:39:01,732 INFO toNotifyTaskSize = 0 + +2025-09-24 10:39:01,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:39:01,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:39:11,723 INFO [long-pulling] client count 0 + +2025-09-24 10:39:11,733 INFO toNotifyTaskSize = 0 + +2025-09-24 10:39:11,734 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:39:11,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:39:21,725 INFO [long-pulling] client count 0 + +2025-09-24 10:39:21,741 INFO toNotifyTaskSize = 0 + +2025-09-24 10:39:21,742 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:39:21,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:39:31,726 INFO [long-pulling] client count 0 + +2025-09-24 10:39:31,751 INFO toNotifyTaskSize = 0 + +2025-09-24 10:39:31,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:39:31,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:39:41,727 INFO [long-pulling] client count 0 + +2025-09-24 10:39:41,751 INFO toNotifyTaskSize = 0 + +2025-09-24 10:39:41,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:39:41,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:39:51,728 INFO [long-pulling] client count 0 + +2025-09-24 10:39:51,752 INFO toNotifyTaskSize = 0 + +2025-09-24 10:39:51,752 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:39:51,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:40:01,728 INFO [long-pulling] client count 0 + +2025-09-24 10:40:01,754 INFO toNotifyTaskSize = 0 + +2025-09-24 10:40:01,754 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:40:01,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:40:11,729 INFO [long-pulling] client count 0 + +2025-09-24 10:40:11,756 INFO toNotifyTaskSize = 0 + +2025-09-24 10:40:11,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:40:11,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:40:21,730 INFO [long-pulling] client count 0 + +2025-09-24 10:40:21,756 INFO toNotifyTaskSize = 0 + +2025-09-24 10:40:21,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:40:21,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:40:31,730 INFO [long-pulling] client count 0 + +2025-09-24 10:40:31,757 INFO toNotifyTaskSize = 0 + +2025-09-24 10:40:31,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:40:31,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:40:41,731 INFO [long-pulling] client count 0 + +2025-09-24 10:40:41,757 INFO toNotifyTaskSize = 0 + +2025-09-24 10:40:41,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:40:41,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:40:51,732 INFO [long-pulling] client count 0 + +2025-09-24 10:40:51,759 INFO toNotifyTaskSize = 0 + +2025-09-24 10:40:51,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:40:51,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:41:01,733 INFO [long-pulling] client count 0 + +2025-09-24 10:41:01,759 INFO toNotifyTaskSize = 0 + +2025-09-24 10:41:01,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:41:01,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:41:11,733 INFO [long-pulling] client count 0 + +2025-09-24 10:41:11,760 INFO toNotifyTaskSize = 0 + +2025-09-24 10:41:11,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:41:11,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:41:21,734 INFO [long-pulling] client count 0 + +2025-09-24 10:41:21,772 INFO toNotifyTaskSize = 0 + +2025-09-24 10:41:21,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:41:21,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:41:31,735 INFO [long-pulling] client count 0 + +2025-09-24 10:41:31,773 INFO toNotifyTaskSize = 0 + +2025-09-24 10:41:31,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:41:31,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:41:41,737 INFO [long-pulling] client count 0 + +2025-09-24 10:41:41,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:41:41,774 INFO toNotifyTaskSize = 0 + +2025-09-24 10:41:41,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:41:51,738 INFO [long-pulling] client count 0 + +2025-09-24 10:41:51,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:41:51,775 INFO toNotifyTaskSize = 0 + +2025-09-24 10:41:51,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:42:01,739 INFO [long-pulling] client count 0 + +2025-09-24 10:42:01,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:42:01,776 INFO toNotifyTaskSize = 0 + +2025-09-24 10:42:01,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:42:11,740 INFO [long-pulling] client count 0 + +2025-09-24 10:42:11,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:42:11,777 INFO toNotifyTaskSize = 0 + +2025-09-24 10:42:11,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:42:21,740 INFO [long-pulling] client count 0 + +2025-09-24 10:42:21,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:42:21,779 INFO toNotifyTaskSize = 0 + +2025-09-24 10:42:21,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:42:31,743 INFO [long-pulling] client count 0 + +2025-09-24 10:42:31,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:42:31,780 INFO toNotifyTaskSize = 0 + +2025-09-24 10:42:31,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:42:41,744 INFO [long-pulling] client count 0 + +2025-09-24 10:42:41,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:42:41,781 INFO toNotifyTaskSize = 0 + +2025-09-24 10:42:41,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:42:51,746 INFO [long-pulling] client count 0 + +2025-09-24 10:42:51,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:42:51,782 INFO toNotifyTaskSize = 0 + +2025-09-24 10:42:51,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:43:01,747 INFO [long-pulling] client count 0 + +2025-09-24 10:43:01,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:43:01,784 INFO toNotifyTaskSize = 0 + +2025-09-24 10:43:01,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:43:11,748 INFO [long-pulling] client count 0 + +2025-09-24 10:43:11,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:43:11,785 INFO toNotifyTaskSize = 0 + +2025-09-24 10:43:11,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:43:21,751 INFO [long-pulling] client count 0 + +2025-09-24 10:43:21,791 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:43:21,792 INFO toNotifyTaskSize = 0 + +2025-09-24 10:43:21,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:43:31,754 INFO [long-pulling] client count 0 + +2025-09-24 10:43:31,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:43:31,792 INFO toNotifyTaskSize = 0 + +2025-09-24 10:43:31,793 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:43:41,756 INFO [long-pulling] client count 0 + +2025-09-24 10:43:41,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:43:41,795 INFO toNotifyTaskSize = 0 + +2025-09-24 10:43:41,795 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:43:51,758 INFO [long-pulling] client count 0 + +2025-09-24 10:43:51,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:43:51,797 INFO toNotifyTaskSize = 0 + +2025-09-24 10:43:51,797 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:44:01,758 INFO [long-pulling] client count 0 + +2025-09-24 10:44:01,798 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:44:01,798 INFO toNotifyTaskSize = 0 + +2025-09-24 10:44:01,798 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:44:11,760 INFO [long-pulling] client count 0 + +2025-09-24 10:44:11,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:44:11,799 INFO toNotifyTaskSize = 0 + +2025-09-24 10:44:11,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:44:21,761 INFO [long-pulling] client count 0 + +2025-09-24 10:44:21,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:44:21,802 INFO toNotifyTaskSize = 0 + +2025-09-24 10:44:21,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:44:31,762 INFO [long-pulling] client count 0 + +2025-09-24 10:44:31,802 INFO toNotifyTaskSize = 0 + +2025-09-24 10:44:31,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:44:31,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:44:41,764 INFO [long-pulling] client count 0 + +2025-09-24 10:44:41,804 INFO toNotifyTaskSize = 0 + +2025-09-24 10:44:41,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:44:41,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:44:51,766 INFO [long-pulling] client count 0 + +2025-09-24 10:44:51,805 INFO toNotifyTaskSize = 0 + +2025-09-24 10:44:51,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:44:51,805 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:45:01,768 INFO [long-pulling] client count 0 + +2025-09-24 10:45:01,807 INFO toNotifyTaskSize = 0 + +2025-09-24 10:45:01,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:45:01,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:45:11,768 INFO [long-pulling] client count 0 + +2025-09-24 10:45:11,807 INFO toNotifyTaskSize = 0 + +2025-09-24 10:45:11,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:45:11,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:45:21,774 INFO [long-pulling] client count 0 + +2025-09-24 10:45:21,807 INFO toNotifyTaskSize = 0 + +2025-09-24 10:45:21,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:45:21,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:45:31,774 INFO [long-pulling] client count 0 + +2025-09-24 10:45:31,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:45:31,809 INFO toNotifyTaskSize = 0 + +2025-09-24 10:45:31,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:45:41,776 INFO [long-pulling] client count 0 + +2025-09-24 10:45:41,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:45:41,811 INFO toNotifyTaskSize = 0 + +2025-09-24 10:45:41,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:45:51,777 INFO [long-pulling] client count 0 + +2025-09-24 10:45:51,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:45:51,813 INFO toNotifyTaskSize = 0 + +2025-09-24 10:45:51,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:46:01,777 INFO [long-pulling] client count 0 + +2025-09-24 10:46:01,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:46:01,815 INFO toNotifyTaskSize = 0 + +2025-09-24 10:46:01,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:46:11,777 INFO [long-pulling] client count 0 + +2025-09-24 10:46:11,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:46:11,815 INFO toNotifyTaskSize = 0 + +2025-09-24 10:46:11,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:46:21,778 INFO [long-pulling] client count 0 + +2025-09-24 10:46:21,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:46:21,817 INFO toNotifyTaskSize = 0 + +2025-09-24 10:46:21,817 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:46:31,781 INFO [long-pulling] client count 0 + +2025-09-24 10:46:31,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:46:31,818 INFO toNotifyTaskSize = 0 + +2025-09-24 10:46:31,818 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:46:41,781 INFO [long-pulling] client count 0 + +2025-09-24 10:46:41,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:46:41,820 INFO toNotifyTaskSize = 0 + +2025-09-24 10:46:41,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:46:51,783 INFO [long-pulling] client count 0 + +2025-09-24 10:46:51,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:46:51,822 INFO toNotifyTaskSize = 0 + +2025-09-24 10:46:51,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:47:01,784 INFO [long-pulling] client count 0 + +2025-09-24 10:47:01,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:47:01,823 INFO toNotifyTaskSize = 0 + +2025-09-24 10:47:01,823 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:47:11,784 INFO [long-pulling] client count 0 + +2025-09-24 10:47:11,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:47:11,823 INFO toNotifyTaskSize = 0 + +2025-09-24 10:47:11,823 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:47:21,786 INFO [long-pulling] client count 0 + +2025-09-24 10:47:21,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:47:21,825 INFO toNotifyTaskSize = 0 + +2025-09-24 10:47:21,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:47:31,787 INFO [long-pulling] client count 0 + +2025-09-24 10:47:31,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:47:31,825 INFO toNotifyTaskSize = 0 + +2025-09-24 10:47:31,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:47:41,787 INFO [long-pulling] client count 0 + +2025-09-24 10:47:41,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:47:41,826 INFO toNotifyTaskSize = 0 + +2025-09-24 10:47:41,826 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:47:51,788 INFO [long-pulling] client count 0 + +2025-09-24 10:47:51,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:47:51,828 INFO toNotifyTaskSize = 0 + +2025-09-24 10:47:51,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:48:01,790 INFO [long-pulling] client count 0 + +2025-09-24 10:48:01,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:48:01,828 INFO toNotifyTaskSize = 0 + +2025-09-24 10:48:01,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:48:11,791 INFO [long-pulling] client count 0 + +2025-09-24 10:48:11,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:48:11,830 INFO toNotifyTaskSize = 0 + +2025-09-24 10:48:11,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:48:21,791 INFO [long-pulling] client count 0 + +2025-09-24 10:48:21,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:48:21,832 INFO toNotifyTaskSize = 0 + +2025-09-24 10:48:21,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:48:31,811 INFO [long-pulling] client count 0 + +2025-09-24 10:48:31,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:48:31,834 INFO toNotifyTaskSize = 0 + +2025-09-24 10:48:31,834 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:48:41,812 INFO [long-pulling] client count 0 + +2025-09-24 10:48:41,836 INFO toNotifyTaskSize = 0 + +2025-09-24 10:48:41,836 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:48:41,836 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:48:51,814 INFO [long-pulling] client count 0 + +2025-09-24 10:48:51,838 INFO toNotifyTaskSize = 0 + +2025-09-24 10:48:51,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:48:51,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:49:01,816 INFO [long-pulling] client count 0 + +2025-09-24 10:49:01,840 INFO toNotifyTaskSize = 0 + +2025-09-24 10:49:01,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:49:01,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:49:11,818 INFO [long-pulling] client count 0 + +2025-09-24 10:49:11,840 INFO toNotifyTaskSize = 0 + +2025-09-24 10:49:11,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:49:11,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:49:21,818 INFO [long-pulling] client count 0 + +2025-09-24 10:49:21,841 INFO toNotifyTaskSize = 0 + +2025-09-24 10:49:21,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:49:21,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:49:31,821 INFO [long-pulling] client count 0 + +2025-09-24 10:49:31,842 INFO toNotifyTaskSize = 0 + +2025-09-24 10:49:31,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:49:31,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:49:41,821 INFO [long-pulling] client count 0 + +2025-09-24 10:49:41,842 INFO toNotifyTaskSize = 0 + +2025-09-24 10:49:41,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:49:41,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:49:51,823 INFO [long-pulling] client count 0 + +2025-09-24 10:49:51,844 INFO toNotifyTaskSize = 0 + +2025-09-24 10:49:51,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:49:51,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:50:01,824 INFO [long-pulling] client count 0 + +2025-09-24 10:50:01,845 INFO toNotifyTaskSize = 0 + +2025-09-24 10:50:01,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:50:01,845 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:50:11,825 INFO [long-pulling] client count 0 + +2025-09-24 10:50:11,846 INFO toNotifyTaskSize = 0 + +2025-09-24 10:50:11,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:50:11,847 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:50:21,826 INFO [long-pulling] client count 0 + +2025-09-24 10:50:21,847 INFO toNotifyTaskSize = 0 + +2025-09-24 10:50:21,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:50:21,847 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:50:31,826 INFO [long-pulling] client count 0 + +2025-09-24 10:50:31,848 INFO toNotifyTaskSize = 0 + +2025-09-24 10:50:31,848 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:50:31,848 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:50:41,827 INFO [long-pulling] client count 0 + +2025-09-24 10:50:41,850 INFO toNotifyTaskSize = 0 + +2025-09-24 10:50:41,850 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:50:41,850 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:50:51,828 INFO [long-pulling] client count 0 + +2025-09-24 10:50:51,852 INFO toNotifyTaskSize = 0 + +2025-09-24 10:50:51,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:50:51,852 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:51:01,830 INFO [long-pulling] client count 0 + +2025-09-24 10:51:01,853 INFO toNotifyTaskSize = 0 + +2025-09-24 10:51:01,853 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:51:01,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:51:11,830 INFO [long-pulling] client count 0 + +2025-09-24 10:51:11,854 INFO toNotifyTaskSize = 0 + +2025-09-24 10:51:11,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:51:11,854 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:51:21,831 INFO [long-pulling] client count 0 + +2025-09-24 10:51:21,855 INFO toNotifyTaskSize = 0 + +2025-09-24 10:51:21,855 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:51:21,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:51:31,832 INFO [long-pulling] client count 0 + +2025-09-24 10:51:31,856 INFO toNotifyTaskSize = 0 + +2025-09-24 10:51:31,856 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:51:31,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:51:41,832 INFO [long-pulling] client count 0 + +2025-09-24 10:51:41,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:51:41,857 INFO toNotifyTaskSize = 0 + +2025-09-24 10:51:41,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:51:51,833 INFO [long-pulling] client count 0 + +2025-09-24 10:51:51,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:51:51,858 INFO toNotifyTaskSize = 0 + +2025-09-24 10:51:51,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:52:01,834 INFO [long-pulling] client count 0 + +2025-09-24 10:52:01,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:52:01,858 INFO toNotifyTaskSize = 0 + +2025-09-24 10:52:01,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:52:11,836 INFO [long-pulling] client count 0 + +2025-09-24 10:52:11,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:52:11,859 INFO toNotifyTaskSize = 0 + +2025-09-24 10:52:11,859 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:52:21,838 INFO [long-pulling] client count 0 + +2025-09-24 10:52:21,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:52:21,860 INFO toNotifyTaskSize = 0 + +2025-09-24 10:52:21,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:52:31,841 INFO [long-pulling] client count 0 + +2025-09-24 10:52:31,860 INFO toNotifyTaskSize = 0 + +2025-09-24 10:52:31,861 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:52:31,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:52:41,841 INFO [long-pulling] client count 0 + +2025-09-24 10:52:41,862 INFO toNotifyTaskSize = 0 + +2025-09-24 10:52:41,863 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:52:41,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:52:51,842 INFO [long-pulling] client count 0 + +2025-09-24 10:52:51,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:52:51,863 INFO toNotifyTaskSize = 0 + +2025-09-24 10:52:51,863 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:53:01,842 INFO [long-pulling] client count 0 + +2025-09-24 10:53:01,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:53:01,864 INFO toNotifyTaskSize = 0 + +2025-09-24 10:53:01,864 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:53:11,843 INFO [long-pulling] client count 0 + +2025-09-24 10:53:11,865 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:53:11,865 INFO toNotifyTaskSize = 0 + +2025-09-24 10:53:11,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:53:21,843 INFO [long-pulling] client count 0 + +2025-09-24 10:53:21,865 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:53:21,865 INFO toNotifyTaskSize = 0 + +2025-09-24 10:53:21,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:53:31,845 INFO [long-pulling] client count 0 + +2025-09-24 10:53:31,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:53:31,866 INFO toNotifyTaskSize = 0 + +2025-09-24 10:53:31,866 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:53:41,845 INFO [long-pulling] client count 0 + +2025-09-24 10:53:41,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:53:41,866 INFO toNotifyTaskSize = 0 + +2025-09-24 10:53:41,867 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:53:51,847 INFO [long-pulling] client count 0 + +2025-09-24 10:53:51,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:53:51,869 INFO toNotifyTaskSize = 0 + +2025-09-24 10:53:51,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:54:01,849 INFO [long-pulling] client count 0 + +2025-09-24 10:54:01,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:54:01,869 INFO toNotifyTaskSize = 0 + +2025-09-24 10:54:01,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:54:11,849 INFO [long-pulling] client count 0 + +2025-09-24 10:54:11,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:54:11,871 INFO toNotifyTaskSize = 0 + +2025-09-24 10:54:11,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:54:21,852 INFO [long-pulling] client count 0 + +2025-09-24 10:54:21,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:54:21,873 INFO toNotifyTaskSize = 0 + +2025-09-24 10:54:21,873 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:54:31,853 INFO [long-pulling] client count 0 + +2025-09-24 10:54:31,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:54:31,873 INFO toNotifyTaskSize = 0 + +2025-09-24 10:54:31,873 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:54:41,853 INFO [long-pulling] client count 0 + +2025-09-24 10:54:41,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:54:41,873 INFO toNotifyTaskSize = 0 + +2025-09-24 10:54:41,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:54:51,854 INFO [long-pulling] client count 0 + +2025-09-24 10:54:51,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:54:51,875 INFO toNotifyTaskSize = 0 + +2025-09-24 10:54:51,875 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:55:01,855 INFO [long-pulling] client count 0 + +2025-09-24 10:55:01,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:55:01,876 INFO toNotifyTaskSize = 0 + +2025-09-24 10:55:01,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:55:11,855 INFO [long-pulling] client count 0 + +2025-09-24 10:55:11,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:55:11,877 INFO toNotifyTaskSize = 0 + +2025-09-24 10:55:11,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:55:21,856 INFO [long-pulling] client count 0 + +2025-09-24 10:55:21,879 INFO toNotifyTaskSize = 0 + +2025-09-24 10:55:21,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:55:21,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:55:31,857 INFO [long-pulling] client count 0 + +2025-09-24 10:55:31,880 INFO toNotifyTaskSize = 0 + +2025-09-24 10:55:31,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:55:31,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:55:41,857 INFO [long-pulling] client count 0 + +2025-09-24 10:55:41,882 INFO toNotifyTaskSize = 0 + +2025-09-24 10:55:41,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:55:41,883 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:55:51,859 INFO [long-pulling] client count 0 + +2025-09-24 10:55:51,885 INFO toNotifyTaskSize = 0 + +2025-09-24 10:55:51,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:55:51,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:56:01,860 INFO [long-pulling] client count 0 + +2025-09-24 10:56:01,885 INFO toNotifyTaskSize = 0 + +2025-09-24 10:56:01,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:56:01,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:56:11,860 INFO [long-pulling] client count 0 + +2025-09-24 10:56:11,888 INFO toNotifyTaskSize = 0 + +2025-09-24 10:56:11,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:56:11,888 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:56:21,863 INFO [long-pulling] client count 0 + +2025-09-24 10:56:21,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:56:21,890 INFO toNotifyTaskSize = 0 + +2025-09-24 10:56:21,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:56:31,864 INFO [long-pulling] client count 0 + +2025-09-24 10:56:31,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:56:31,890 INFO toNotifyTaskSize = 0 + +2025-09-24 10:56:31,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:56:41,864 INFO [long-pulling] client count 0 + +2025-09-24 10:56:41,892 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:56:41,892 INFO toNotifyTaskSize = 0 + +2025-09-24 10:56:41,892 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:56:51,864 INFO [long-pulling] client count 0 + +2025-09-24 10:56:51,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:56:51,894 INFO toNotifyTaskSize = 0 + +2025-09-24 10:56:51,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:57:01,867 INFO [long-pulling] client count 0 + +2025-09-24 10:57:01,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:57:01,895 INFO toNotifyTaskSize = 0 + +2025-09-24 10:57:01,895 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:57:11,869 INFO [long-pulling] client count 0 + +2025-09-24 10:57:11,895 INFO toNotifyTaskSize = 0 + +2025-09-24 10:57:11,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:57:11,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:57:21,871 INFO [long-pulling] client count 0 + +2025-09-24 10:57:21,896 INFO toNotifyTaskSize = 0 + +2025-09-24 10:57:21,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:57:21,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:57:31,872 INFO [long-pulling] client count 0 + +2025-09-24 10:57:31,896 INFO toNotifyTaskSize = 0 + +2025-09-24 10:57:31,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:57:31,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:57:41,872 INFO [long-pulling] client count 0 + +2025-09-24 10:57:41,899 INFO toNotifyTaskSize = 0 + +2025-09-24 10:57:41,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:57:41,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:57:51,874 INFO [long-pulling] client count 0 + +2025-09-24 10:57:51,901 INFO toNotifyTaskSize = 0 + +2025-09-24 10:57:51,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:57:51,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:58:01,876 INFO [long-pulling] client count 0 + +2025-09-24 10:58:01,902 INFO toNotifyTaskSize = 0 + +2025-09-24 10:58:01,902 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:58:01,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:58:11,878 INFO [long-pulling] client count 0 + +2025-09-24 10:58:11,904 INFO toNotifyTaskSize = 0 + +2025-09-24 10:58:11,904 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:58:11,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:58:21,878 INFO [long-pulling] client count 0 + +2025-09-24 10:58:21,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:58:21,906 INFO toNotifyTaskSize = 0 + +2025-09-24 10:58:21,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:58:31,880 INFO [long-pulling] client count 0 + +2025-09-24 10:58:31,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:58:31,907 INFO toNotifyTaskSize = 0 + +2025-09-24 10:58:31,907 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:58:41,880 INFO [long-pulling] client count 0 + +2025-09-24 10:58:41,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:58:41,909 INFO toNotifyTaskSize = 0 + +2025-09-24 10:58:41,909 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:58:51,882 INFO [long-pulling] client count 0 + +2025-09-24 10:58:51,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:58:51,911 INFO toNotifyTaskSize = 0 + +2025-09-24 10:58:51,912 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:59:01,883 INFO [long-pulling] client count 0 + +2025-09-24 10:59:01,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:59:01,914 INFO toNotifyTaskSize = 0 + +2025-09-24 10:59:01,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:59:11,883 INFO [long-pulling] client count 0 + +2025-09-24 10:59:11,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:59:11,916 INFO toNotifyTaskSize = 0 + +2025-09-24 10:59:11,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:59:21,885 INFO [long-pulling] client count 0 + +2025-09-24 10:59:21,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:59:21,917 INFO toNotifyTaskSize = 0 + +2025-09-24 10:59:21,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:59:31,886 INFO [long-pulling] client count 0 + +2025-09-24 10:59:31,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:59:31,919 INFO toNotifyTaskSize = 0 + +2025-09-24 10:59:31,919 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:59:41,888 INFO [long-pulling] client count 0 + +2025-09-24 10:59:41,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:59:41,921 INFO toNotifyTaskSize = 0 + +2025-09-24 10:59:41,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 10:59:51,890 INFO [long-pulling] client count 0 + +2025-09-24 10:59:51,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 10:59:51,923 INFO toNotifyTaskSize = 0 + +2025-09-24 10:59:51,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:00:01,890 INFO [long-pulling] client count 0 + +2025-09-24 11:00:01,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:00:01,924 INFO toNotifyTaskSize = 0 + +2025-09-24 11:00:01,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:00:11,891 INFO [long-pulling] client count 0 + +2025-09-24 11:00:11,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:00:11,924 INFO toNotifyTaskSize = 0 + +2025-09-24 11:00:11,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:00:21,892 INFO [long-pulling] client count 0 + +2025-09-24 11:00:21,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:00:21,926 INFO toNotifyTaskSize = 0 + +2025-09-24 11:00:21,926 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:00:31,892 INFO [long-pulling] client count 0 + +2025-09-24 11:00:31,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:00:31,926 INFO toNotifyTaskSize = 0 + +2025-09-24 11:00:31,926 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:00:41,894 INFO [long-pulling] client count 0 + +2025-09-24 11:00:41,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:00:41,927 INFO toNotifyTaskSize = 0 + +2025-09-24 11:00:41,927 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:00:51,895 INFO [long-pulling] client count 0 + +2025-09-24 11:00:51,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:00:51,928 INFO toNotifyTaskSize = 0 + +2025-09-24 11:00:51,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:01:01,896 INFO [long-pulling] client count 0 + +2025-09-24 11:01:01,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:01:01,929 INFO toNotifyTaskSize = 0 + +2025-09-24 11:01:01,929 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:01:11,896 INFO [long-pulling] client count 0 + +2025-09-24 11:01:11,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:01:11,929 INFO toNotifyTaskSize = 0 + +2025-09-24 11:01:11,929 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:01:21,898 INFO [long-pulling] client count 0 + +2025-09-24 11:01:21,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:01:21,930 INFO toNotifyTaskSize = 0 + +2025-09-24 11:01:21,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:01:31,900 INFO [long-pulling] client count 0 + +2025-09-24 11:01:31,930 INFO toNotifyTaskSize = 0 + +2025-09-24 11:01:31,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:01:31,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:01:41,900 INFO [long-pulling] client count 0 + +2025-09-24 11:01:41,931 INFO toNotifyTaskSize = 0 + +2025-09-24 11:01:41,931 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:01:41,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:01:51,901 INFO [long-pulling] client count 0 + +2025-09-24 11:01:51,932 INFO toNotifyTaskSize = 0 + +2025-09-24 11:01:51,932 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:01:51,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:02:01,901 INFO [long-pulling] client count 0 + +2025-09-24 11:02:01,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:02:01,933 INFO toNotifyTaskSize = 0 + +2025-09-24 11:02:01,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:02:11,902 INFO [long-pulling] client count 0 + +2025-09-24 11:02:11,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:02:11,933 INFO toNotifyTaskSize = 0 + +2025-09-24 11:02:11,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:02:21,904 INFO [long-pulling] client count 0 + +2025-09-24 11:02:21,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:02:21,934 INFO toNotifyTaskSize = 0 + +2025-09-24 11:02:21,934 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:02:31,905 INFO [long-pulling] client count 0 + +2025-09-24 11:02:31,935 INFO toNotifyTaskSize = 0 + +2025-09-24 11:02:31,935 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:02:31,935 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:02:41,906 INFO [long-pulling] client count 0 + +2025-09-24 11:02:41,936 INFO toNotifyTaskSize = 0 + +2025-09-24 11:02:41,936 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:02:41,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:02:51,907 INFO [long-pulling] client count 0 + +2025-09-24 11:02:51,936 INFO toNotifyTaskSize = 0 + +2025-09-24 11:02:51,936 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:02:51,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:03:01,908 INFO [long-pulling] client count 0 + +2025-09-24 11:03:01,938 INFO toNotifyTaskSize = 0 + +2025-09-24 11:03:01,938 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:03:01,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:03:11,908 INFO [long-pulling] client count 0 + +2025-09-24 11:03:11,939 INFO toNotifyTaskSize = 0 + +2025-09-24 11:03:11,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:03:11,939 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:03:21,909 INFO [long-pulling] client count 0 + +2025-09-24 11:03:21,940 INFO toNotifyTaskSize = 0 + +2025-09-24 11:03:21,940 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:03:21,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:03:31,909 INFO [long-pulling] client count 0 + +2025-09-24 11:03:31,941 INFO toNotifyTaskSize = 0 + +2025-09-24 11:03:31,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:03:31,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:03:41,912 INFO [long-pulling] client count 0 + +2025-09-24 11:03:41,943 INFO toNotifyTaskSize = 0 + +2025-09-24 11:03:41,943 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:03:41,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:03:51,913 INFO [long-pulling] client count 0 + +2025-09-24 11:03:51,944 INFO toNotifyTaskSize = 0 + +2025-09-24 11:03:51,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:03:51,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:04:01,914 INFO [long-pulling] client count 0 + +2025-09-24 11:04:01,946 INFO toNotifyTaskSize = 0 + +2025-09-24 11:04:01,946 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:04:01,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:04:11,915 INFO [long-pulling] client count 0 + +2025-09-24 11:04:11,947 INFO toNotifyTaskSize = 0 + +2025-09-24 11:04:11,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:04:11,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:04:21,915 INFO [long-pulling] client count 0 + +2025-09-24 11:04:21,947 INFO toNotifyTaskSize = 0 + +2025-09-24 11:04:21,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:04:21,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:04:31,916 INFO [long-pulling] client count 0 + +2025-09-24 11:04:31,948 INFO toNotifyTaskSize = 0 + +2025-09-24 11:04:31,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:04:31,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:04:41,916 INFO [long-pulling] client count 0 + +2025-09-24 11:04:41,949 INFO toNotifyTaskSize = 0 + +2025-09-24 11:04:41,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:04:41,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:04:51,917 INFO [long-pulling] client count 0 + +2025-09-24 11:04:51,951 INFO toNotifyTaskSize = 0 + +2025-09-24 11:04:51,951 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:04:51,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:05:01,917 INFO [long-pulling] client count 0 + +2025-09-24 11:05:01,951 INFO toNotifyTaskSize = 0 + +2025-09-24 11:05:01,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:05:01,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:05:11,918 INFO [long-pulling] client count 0 + +2025-09-24 11:05:11,952 INFO toNotifyTaskSize = 0 + +2025-09-24 11:05:11,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:05:11,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:05:21,920 INFO [long-pulling] client count 0 + +2025-09-24 11:05:21,953 INFO toNotifyTaskSize = 0 + +2025-09-24 11:05:21,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:05:21,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:05:31,920 INFO [long-pulling] client count 0 + +2025-09-24 11:05:31,954 INFO toNotifyTaskSize = 0 + +2025-09-24 11:05:31,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:05:31,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:05:41,921 INFO [long-pulling] client count 0 + +2025-09-24 11:05:41,954 INFO toNotifyTaskSize = 0 + +2025-09-24 11:05:41,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:05:41,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:05:51,923 INFO [long-pulling] client count 0 + +2025-09-24 11:05:51,956 INFO toNotifyTaskSize = 0 + +2025-09-24 11:05:51,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:05:51,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:06:01,925 INFO [long-pulling] client count 0 + +2025-09-24 11:06:01,958 INFO toNotifyTaskSize = 0 + +2025-09-24 11:06:01,958 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:06:01,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:06:11,925 INFO [long-pulling] client count 0 + +2025-09-24 11:06:11,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:06:11,959 INFO toNotifyTaskSize = 0 + +2025-09-24 11:06:11,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:06:21,929 INFO [long-pulling] client count 0 + +2025-09-24 11:06:21,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:06:21,961 INFO toNotifyTaskSize = 0 + +2025-09-24 11:06:21,961 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:06:31,932 INFO [long-pulling] client count 0 + +2025-09-24 11:06:31,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:06:31,961 INFO toNotifyTaskSize = 0 + +2025-09-24 11:06:31,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:06:41,933 INFO [long-pulling] client count 0 + +2025-09-24 11:06:41,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:06:41,962 INFO toNotifyTaskSize = 0 + +2025-09-24 11:06:41,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:06:51,933 INFO [long-pulling] client count 0 + +2025-09-24 11:06:51,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:06:51,964 INFO toNotifyTaskSize = 0 + +2025-09-24 11:06:51,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:07:01,934 INFO [long-pulling] client count 0 + +2025-09-24 11:07:01,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:07:01,965 INFO toNotifyTaskSize = 0 + +2025-09-24 11:07:01,965 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:07:11,935 INFO [long-pulling] client count 0 + +2025-09-24 11:07:11,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:07:11,965 INFO toNotifyTaskSize = 0 + +2025-09-24 11:07:11,965 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:07:21,937 INFO [long-pulling] client count 0 + +2025-09-24 11:07:21,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:07:21,965 INFO toNotifyTaskSize = 0 + +2025-09-24 11:07:21,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:07:31,939 INFO [long-pulling] client count 0 + +2025-09-24 11:07:31,966 INFO toNotifyTaskSize = 0 + +2025-09-24 11:07:31,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:07:31,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:07:41,939 INFO [long-pulling] client count 0 + +2025-09-24 11:07:41,968 INFO toNotifyTaskSize = 0 + +2025-09-24 11:07:41,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:07:41,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:07:51,939 INFO [long-pulling] client count 0 + +2025-09-24 11:07:51,969 INFO toNotifyTaskSize = 0 + +2025-09-24 11:07:51,969 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:07:51,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:08:01,940 INFO [long-pulling] client count 0 + +2025-09-24 11:08:01,971 INFO toNotifyTaskSize = 0 + +2025-09-24 11:08:01,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:08:01,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:08:11,941 INFO [long-pulling] client count 0 + +2025-09-24 11:08:11,972 INFO toNotifyTaskSize = 0 + +2025-09-24 11:08:11,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:08:11,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:08:21,941 INFO [long-pulling] client count 0 + +2025-09-24 11:08:21,974 INFO toNotifyTaskSize = 0 + +2025-09-24 11:08:21,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:08:21,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:08:31,942 INFO [long-pulling] client count 0 + +2025-09-24 11:08:31,976 INFO toNotifyTaskSize = 0 + +2025-09-24 11:08:31,976 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:08:31,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:08:41,943 INFO [long-pulling] client count 0 + +2025-09-24 11:08:41,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:08:41,978 INFO toNotifyTaskSize = 0 + +2025-09-24 11:08:41,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:08:51,943 INFO [long-pulling] client count 0 + +2025-09-24 11:08:51,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:08:51,978 INFO toNotifyTaskSize = 0 + +2025-09-24 11:08:51,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:09:01,943 INFO [long-pulling] client count 0 + +2025-09-24 11:09:01,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:09:01,980 INFO toNotifyTaskSize = 0 + +2025-09-24 11:09:01,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:09:11,944 INFO [long-pulling] client count 0 + +2025-09-24 11:09:11,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:09:11,982 INFO toNotifyTaskSize = 0 + +2025-09-24 11:09:11,982 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:09:21,945 INFO [long-pulling] client count 0 + +2025-09-24 11:09:21,983 INFO toNotifyTaskSize = 0 + +2025-09-24 11:09:21,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:09:21,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:09:31,947 INFO [long-pulling] client count 0 + +2025-09-24 11:09:31,985 INFO toNotifyTaskSize = 0 + +2025-09-24 11:09:31,985 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:09:31,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:09:41,948 INFO [long-pulling] client count 0 + +2025-09-24 11:09:41,988 INFO toNotifyTaskSize = 0 + +2025-09-24 11:09:41,988 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:09:41,988 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:09:51,950 INFO [long-pulling] client count 0 + +2025-09-24 11:09:51,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:09:51,990 INFO toNotifyTaskSize = 0 + +2025-09-24 11:09:51,990 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:10:01,950 INFO [long-pulling] client count 0 + +2025-09-24 11:10:01,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:10:01,992 INFO toNotifyTaskSize = 0 + +2025-09-24 11:10:01,992 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:10:11,950 INFO [long-pulling] client count 0 + +2025-09-24 11:10:11,994 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:10:11,994 INFO toNotifyTaskSize = 0 + +2025-09-24 11:10:11,994 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:10:21,951 INFO [long-pulling] client count 0 + +2025-09-24 11:10:21,995 INFO toNotifyTaskSize = 0 + +2025-09-24 11:10:21,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:10:21,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:10:31,952 INFO [long-pulling] client count 0 + +2025-09-24 11:10:31,997 INFO toNotifyTaskSize = 0 + +2025-09-24 11:10:31,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:10:31,997 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:10:41,953 INFO [long-pulling] client count 0 + +2025-09-24 11:10:41,998 INFO toNotifyTaskSize = 0 + +2025-09-24 11:10:41,998 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:10:41,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:10:51,954 INFO [long-pulling] client count 0 + +2025-09-24 11:10:51,999 INFO toNotifyTaskSize = 0 + +2025-09-24 11:10:51,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:10:51,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:11:01,956 INFO [long-pulling] client count 0 + +2025-09-24 11:11:01,999 INFO toNotifyTaskSize = 0 + +2025-09-24 11:11:01,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:11:01,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:11:11,956 INFO [long-pulling] client count 0 + +2025-09-24 11:11:12,000 INFO toNotifyTaskSize = 0 + +2025-09-24 11:11:12,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:11:12,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:11:21,957 INFO [long-pulling] client count 0 + +2025-09-24 11:11:22,001 INFO toNotifyTaskSize = 0 + +2025-09-24 11:11:22,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:11:22,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:11:31,958 INFO [long-pulling] client count 0 + +2025-09-24 11:11:32,002 INFO toNotifyTaskSize = 0 + +2025-09-24 11:11:32,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:11:32,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:11:41,958 INFO [long-pulling] client count 0 + +2025-09-24 11:11:42,002 INFO toNotifyTaskSize = 0 + +2025-09-24 11:11:42,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:11:42,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:11:51,960 INFO [long-pulling] client count 0 + +2025-09-24 11:11:52,003 INFO toNotifyTaskSize = 0 + +2025-09-24 11:11:52,003 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:11:52,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:12:01,961 INFO [long-pulling] client count 0 + +2025-09-24 11:12:02,004 INFO toNotifyTaskSize = 0 + +2025-09-24 11:12:02,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:12:02,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:12:11,963 INFO [long-pulling] client count 0 + +2025-09-24 11:12:12,006 INFO toNotifyTaskSize = 0 + +2025-09-24 11:12:12,006 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:12:12,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:12:21,964 INFO [long-pulling] client count 0 + +2025-09-24 11:12:22,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:12:22,008 INFO toNotifyTaskSize = 0 + +2025-09-24 11:12:22,008 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:12:31,965 INFO [long-pulling] client count 0 + +2025-09-24 11:12:32,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:12:32,010 INFO toNotifyTaskSize = 0 + +2025-09-24 11:12:32,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:12:41,965 INFO [long-pulling] client count 0 + +2025-09-24 11:12:42,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:12:42,012 INFO toNotifyTaskSize = 0 + +2025-09-24 11:12:42,013 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:12:51,966 INFO [long-pulling] client count 0 + +2025-09-24 11:12:52,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:12:52,014 INFO toNotifyTaskSize = 0 + +2025-09-24 11:12:52,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:13:01,968 INFO [long-pulling] client count 0 + +2025-09-24 11:13:02,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:13:02,014 INFO toNotifyTaskSize = 0 + +2025-09-24 11:13:02,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:13:11,968 INFO [long-pulling] client count 0 + +2025-09-24 11:13:12,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:13:12,015 INFO toNotifyTaskSize = 0 + +2025-09-24 11:13:12,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:13:21,970 INFO [long-pulling] client count 0 + +2025-09-24 11:13:22,016 INFO toNotifyTaskSize = 0 + +2025-09-24 11:13:22,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:13:22,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:13:31,973 INFO [long-pulling] client count 0 + +2025-09-24 11:13:32,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:13:32,018 INFO toNotifyTaskSize = 0 + +2025-09-24 11:13:32,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:13:41,974 INFO [long-pulling] client count 0 + +2025-09-24 11:13:42,019 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:13:42,019 INFO toNotifyTaskSize = 0 + +2025-09-24 11:13:42,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:13:51,975 INFO [long-pulling] client count 0 + +2025-09-24 11:13:52,021 INFO toNotifyTaskSize = 0 + +2025-09-24 11:13:52,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:13:52,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:14:01,975 INFO [long-pulling] client count 0 + +2025-09-24 11:14:02,022 INFO toNotifyTaskSize = 0 + +2025-09-24 11:14:02,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:14:02,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:14:11,977 INFO [long-pulling] client count 0 + +2025-09-24 11:14:12,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:14:12,022 INFO toNotifyTaskSize = 0 + +2025-09-24 11:14:12,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:14:21,977 INFO [long-pulling] client count 0 + +2025-09-24 11:14:22,023 INFO toNotifyTaskSize = 0 + +2025-09-24 11:14:22,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:14:22,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:14:31,978 INFO [long-pulling] client count 0 + +2025-09-24 11:14:32,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:14:32,024 INFO toNotifyTaskSize = 0 + +2025-09-24 11:14:32,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:14:41,978 INFO [long-pulling] client count 0 + +2025-09-24 11:14:42,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:14:42,026 INFO toNotifyTaskSize = 0 + +2025-09-24 11:14:42,026 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:14:51,979 INFO [long-pulling] client count 0 + +2025-09-24 11:14:52,027 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:14:52,027 INFO toNotifyTaskSize = 0 + +2025-09-24 11:14:52,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:15:01,981 INFO [long-pulling] client count 0 + +2025-09-24 11:15:02,029 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:15:02,030 INFO toNotifyTaskSize = 0 + +2025-09-24 11:15:02,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:15:11,981 INFO [long-pulling] client count 0 + +2025-09-24 11:15:12,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:15:12,031 INFO toNotifyTaskSize = 0 + +2025-09-24 11:15:12,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:15:21,983 INFO [long-pulling] client count 0 + +2025-09-24 11:15:22,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:15:22,031 INFO toNotifyTaskSize = 0 + +2025-09-24 11:15:22,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:15:31,984 INFO [long-pulling] client count 0 + +2025-09-24 11:15:32,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:15:32,033 INFO toNotifyTaskSize = 0 + +2025-09-24 11:15:32,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:15:41,986 INFO [long-pulling] client count 0 + +2025-09-24 11:15:42,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:15:42,034 INFO toNotifyTaskSize = 0 + +2025-09-24 11:15:42,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:15:51,986 INFO [long-pulling] client count 0 + +2025-09-24 11:15:52,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:15:52,034 INFO toNotifyTaskSize = 0 + +2025-09-24 11:15:52,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:16:01,989 INFO [long-pulling] client count 0 + +2025-09-24 11:16:02,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:16:02,035 INFO toNotifyTaskSize = 0 + +2025-09-24 11:16:02,035 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:16:11,989 INFO [long-pulling] client count 0 + +2025-09-24 11:16:12,035 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:16:12,035 INFO toNotifyTaskSize = 0 + +2025-09-24 11:16:12,036 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:16:21,990 INFO [long-pulling] client count 0 + +2025-09-24 11:16:22,036 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:16:22,036 INFO toNotifyTaskSize = 0 + +2025-09-24 11:16:22,036 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:16:31,993 INFO [long-pulling] client count 0 + +2025-09-24 11:16:32,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:16:32,037 INFO toNotifyTaskSize = 0 + +2025-09-24 11:16:32,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:16:41,995 INFO [long-pulling] client count 0 + +2025-09-24 11:16:42,039 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:16:42,039 INFO toNotifyTaskSize = 0 + +2025-09-24 11:16:42,039 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:16:51,995 INFO [long-pulling] client count 0 + +2025-09-24 11:16:52,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:16:52,041 INFO toNotifyTaskSize = 0 + +2025-09-24 11:16:52,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:17:01,996 INFO [long-pulling] client count 0 + +2025-09-24 11:17:02,042 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:17:02,042 INFO toNotifyTaskSize = 0 + +2025-09-24 11:17:02,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:17:11,997 INFO [long-pulling] client count 0 + +2025-09-24 11:17:12,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:17:12,044 INFO toNotifyTaskSize = 0 + +2025-09-24 11:17:12,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:17:21,999 INFO [long-pulling] client count 0 + +2025-09-24 11:17:22,046 INFO toNotifyTaskSize = 0 + +2025-09-24 11:17:22,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:17:22,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:17:32,000 INFO [long-pulling] client count 0 + +2025-09-24 11:17:32,047 INFO toNotifyTaskSize = 0 + +2025-09-24 11:17:32,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:17:32,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:17:42,001 INFO [long-pulling] client count 0 + +2025-09-24 11:17:42,049 INFO toNotifyTaskSize = 0 + +2025-09-24 11:17:42,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:17:42,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:17:52,002 INFO [long-pulling] client count 0 + +2025-09-24 11:17:52,050 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:17:52,050 INFO toNotifyTaskSize = 0 + +2025-09-24 11:17:52,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:18:02,002 INFO [long-pulling] client count 0 + +2025-09-24 11:18:02,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:18:02,051 INFO toNotifyTaskSize = 0 + +2025-09-24 11:18:02,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:18:12,004 INFO [long-pulling] client count 0 + +2025-09-24 11:18:12,053 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:18:12,053 INFO toNotifyTaskSize = 0 + +2025-09-24 11:18:12,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:18:22,005 INFO [long-pulling] client count 0 + +2025-09-24 11:18:22,054 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:18:22,054 INFO toNotifyTaskSize = 0 + +2025-09-24 11:18:22,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:18:32,006 INFO [long-pulling] client count 0 + +2025-09-24 11:18:32,054 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:18:32,054 INFO toNotifyTaskSize = 0 + +2025-09-24 11:18:32,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:18:42,007 INFO [long-pulling] client count 0 + +2025-09-24 11:18:42,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:18:42,056 INFO toNotifyTaskSize = 0 + +2025-09-24 11:18:42,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:18:52,010 INFO [long-pulling] client count 0 + +2025-09-24 11:18:52,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:18:52,058 INFO toNotifyTaskSize = 0 + +2025-09-24 11:18:52,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:19:02,011 INFO [long-pulling] client count 0 + +2025-09-24 11:19:02,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:19:02,059 INFO toNotifyTaskSize = 0 + +2025-09-24 11:19:02,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:19:12,012 INFO [long-pulling] client count 0 + +2025-09-24 11:19:12,061 INFO toNotifyTaskSize = 0 + +2025-09-24 11:19:12,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:19:12,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:19:22,014 INFO [long-pulling] client count 0 + +2025-09-24 11:19:22,063 INFO toNotifyTaskSize = 0 + +2025-09-24 11:19:22,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:19:22,063 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:19:32,014 INFO [long-pulling] client count 0 + +2025-09-24 11:19:32,064 INFO toNotifyTaskSize = 0 + +2025-09-24 11:19:32,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:19:32,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:19:42,015 INFO [long-pulling] client count 0 + +2025-09-24 11:19:42,066 INFO toNotifyTaskSize = 0 + +2025-09-24 11:19:42,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:19:42,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:19:52,016 INFO [long-pulling] client count 0 + +2025-09-24 11:19:52,067 INFO toNotifyTaskSize = 0 + +2025-09-24 11:19:52,067 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:19:52,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:20:02,016 INFO [long-pulling] client count 0 + +2025-09-24 11:20:02,067 INFO toNotifyTaskSize = 0 + +2025-09-24 11:20:02,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:20:02,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:20:12,016 INFO [long-pulling] client count 0 + +2025-09-24 11:20:12,068 INFO toNotifyTaskSize = 0 + +2025-09-24 11:20:12,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:20:12,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:20:22,018 INFO [long-pulling] client count 0 + +2025-09-24 11:20:22,070 INFO toNotifyTaskSize = 0 + +2025-09-24 11:20:22,070 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:20:22,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:20:32,021 INFO [long-pulling] client count 0 + +2025-09-24 11:20:32,072 INFO toNotifyTaskSize = 0 + +2025-09-24 11:20:32,073 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:20:32,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:20:42,022 INFO [long-pulling] client count 0 + +2025-09-24 11:20:42,073 INFO toNotifyTaskSize = 0 + +2025-09-24 11:20:42,073 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:20:42,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:20:52,023 INFO [long-pulling] client count 0 + +2025-09-24 11:20:52,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:20:52,075 INFO toNotifyTaskSize = 0 + +2025-09-24 11:20:52,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:21:02,024 INFO [long-pulling] client count 0 + +2025-09-24 11:21:02,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:21:02,077 INFO toNotifyTaskSize = 0 + +2025-09-24 11:21:02,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:21:12,026 INFO [long-pulling] client count 0 + +2025-09-24 11:21:12,079 INFO toNotifyTaskSize = 0 + +2025-09-24 11:21:12,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:21:12,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:21:22,027 INFO [long-pulling] client count 0 + +2025-09-24 11:21:22,080 INFO toNotifyTaskSize = 0 + +2025-09-24 11:21:22,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:21:22,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:21:32,028 INFO [long-pulling] client count 0 + +2025-09-24 11:21:32,083 INFO toNotifyTaskSize = 0 + +2025-09-24 11:21:32,083 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:21:32,083 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:21:42,029 INFO [long-pulling] client count 0 + +2025-09-24 11:21:42,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:21:42,085 INFO toNotifyTaskSize = 0 + +2025-09-24 11:21:42,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:21:52,029 INFO [long-pulling] client count 0 + +2025-09-24 11:21:52,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:21:52,086 INFO toNotifyTaskSize = 0 + +2025-09-24 11:21:52,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:22:02,029 INFO [long-pulling] client count 0 + +2025-09-24 11:22:02,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:22:02,087 INFO toNotifyTaskSize = 0 + +2025-09-24 11:22:02,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:22:12,030 INFO [long-pulling] client count 0 + +2025-09-24 11:22:12,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:22:12,087 INFO toNotifyTaskSize = 0 + +2025-09-24 11:22:12,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:22:22,030 INFO [long-pulling] client count 0 + +2025-09-24 11:22:22,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:22:22,089 INFO toNotifyTaskSize = 0 + +2025-09-24 11:22:22,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:22:32,032 INFO [long-pulling] client count 0 + +2025-09-24 11:22:32,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:22:32,090 INFO toNotifyTaskSize = 0 + +2025-09-24 11:22:32,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:22:42,033 INFO [long-pulling] client count 0 + +2025-09-24 11:22:42,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:22:42,092 INFO toNotifyTaskSize = 0 + +2025-09-24 11:22:42,092 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:22:52,034 INFO [long-pulling] client count 0 + +2025-09-24 11:22:52,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:22:52,092 INFO toNotifyTaskSize = 0 + +2025-09-24 11:22:52,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:23:02,035 INFO [long-pulling] client count 0 + +2025-09-24 11:23:02,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:23:02,093 INFO toNotifyTaskSize = 0 + +2025-09-24 11:23:02,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:23:12,036 INFO [long-pulling] client count 0 + +2025-09-24 11:23:12,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:23:12,094 INFO toNotifyTaskSize = 0 + +2025-09-24 11:23:12,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:23:22,036 INFO [long-pulling] client count 0 + +2025-09-24 11:23:22,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:23:22,094 INFO toNotifyTaskSize = 0 + +2025-09-24 11:23:22,095 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:23:32,038 INFO [long-pulling] client count 0 + +2025-09-24 11:23:32,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:23:32,095 INFO toNotifyTaskSize = 0 + +2025-09-24 11:23:32,095 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:23:42,039 INFO [long-pulling] client count 0 + +2025-09-24 11:23:42,095 INFO toNotifyTaskSize = 0 + +2025-09-24 11:23:42,095 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:23:42,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:23:52,040 INFO [long-pulling] client count 0 + +2025-09-24 11:23:52,097 INFO toNotifyTaskSize = 0 + +2025-09-24 11:23:52,098 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:23:52,098 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:24:02,042 INFO [long-pulling] client count 0 + +2025-09-24 11:24:02,100 INFO toNotifyTaskSize = 0 + +2025-09-24 11:24:02,100 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:24:02,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:24:12,042 INFO [long-pulling] client count 0 + +2025-09-24 11:24:12,100 INFO toNotifyTaskSize = 0 + +2025-09-24 11:24:12,100 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:24:12,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:24:22,043 INFO [long-pulling] client count 0 + +2025-09-24 11:24:22,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:24:22,102 INFO toNotifyTaskSize = 0 + +2025-09-24 11:24:22,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:24:32,043 INFO [long-pulling] client count 0 + +2025-09-24 11:24:32,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:24:32,102 INFO toNotifyTaskSize = 0 + +2025-09-24 11:24:32,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:24:42,044 INFO [long-pulling] client count 0 + +2025-09-24 11:24:42,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:24:42,102 INFO toNotifyTaskSize = 0 + +2025-09-24 11:24:42,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:24:52,045 INFO [long-pulling] client count 0 + +2025-09-24 11:24:52,104 INFO toNotifyTaskSize = 0 + +2025-09-24 11:24:52,104 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:24:52,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:25:02,048 INFO [long-pulling] client count 0 + +2025-09-24 11:25:02,106 INFO toNotifyTaskSize = 0 + +2025-09-24 11:25:02,106 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:25:02,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:25:12,049 INFO [long-pulling] client count 0 + +2025-09-24 11:25:12,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:25:12,108 INFO toNotifyTaskSize = 0 + +2025-09-24 11:25:12,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:25:22,052 INFO [long-pulling] client count 0 + +2025-09-24 11:25:22,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:25:22,109 INFO toNotifyTaskSize = 0 + +2025-09-24 11:25:22,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:25:32,054 INFO [long-pulling] client count 0 + +2025-09-24 11:25:32,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:25:32,109 INFO toNotifyTaskSize = 0 + +2025-09-24 11:25:32,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:25:42,054 INFO [long-pulling] client count 0 + +2025-09-24 11:25:42,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:25:42,110 INFO toNotifyTaskSize = 0 + +2025-09-24 11:25:42,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:25:52,054 INFO [long-pulling] client count 0 + +2025-09-24 11:25:52,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:25:52,110 INFO toNotifyTaskSize = 0 + +2025-09-24 11:25:52,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:26:02,056 INFO [long-pulling] client count 0 + +2025-09-24 11:26:02,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:26:02,110 INFO toNotifyTaskSize = 0 + +2025-09-24 11:26:02,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:26:12,058 INFO [long-pulling] client count 0 + +2025-09-24 11:26:12,111 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:26:12,111 INFO toNotifyTaskSize = 0 + +2025-09-24 11:26:12,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:26:22,060 INFO [long-pulling] client count 0 + +2025-09-24 11:26:22,111 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:26:22,111 INFO toNotifyTaskSize = 0 + +2025-09-24 11:26:22,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:26:32,062 INFO [long-pulling] client count 0 + +2025-09-24 11:26:32,112 INFO toNotifyTaskSize = 0 + +2025-09-24 11:26:32,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:26:32,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:26:42,064 INFO [long-pulling] client count 0 + +2025-09-24 11:26:42,114 INFO toNotifyTaskSize = 0 + +2025-09-24 11:26:42,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:26:42,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:26:52,065 INFO [long-pulling] client count 0 + +2025-09-24 11:26:52,114 INFO toNotifyTaskSize = 0 + +2025-09-24 11:26:52,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:26:52,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:27:02,067 INFO [long-pulling] client count 0 + +2025-09-24 11:27:02,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:27:02,116 INFO toNotifyTaskSize = 0 + +2025-09-24 11:27:02,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:27:12,068 INFO [long-pulling] client count 0 + +2025-09-24 11:27:12,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:27:12,116 INFO toNotifyTaskSize = 0 + +2025-09-24 11:27:12,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:27:22,069 INFO [long-pulling] client count 0 + +2025-09-24 11:27:22,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:27:22,117 INFO toNotifyTaskSize = 0 + +2025-09-24 11:27:22,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:27:32,070 INFO [long-pulling] client count 0 + +2025-09-24 11:27:32,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:27:32,119 INFO toNotifyTaskSize = 0 + +2025-09-24 11:27:32,119 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:27:42,072 INFO [long-pulling] client count 0 + +2025-09-24 11:27:42,119 INFO toNotifyTaskSize = 0 + +2025-09-24 11:27:42,119 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:27:42,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:27:52,072 INFO [long-pulling] client count 0 + +2025-09-24 11:27:52,120 INFO toNotifyTaskSize = 0 + +2025-09-24 11:27:52,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:27:52,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:28:02,073 INFO [long-pulling] client count 0 + +2025-09-24 11:28:02,121 INFO toNotifyTaskSize = 0 + +2025-09-24 11:28:02,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:28:02,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:28:12,074 INFO [long-pulling] client count 0 + +2025-09-24 11:28:12,121 INFO toNotifyTaskSize = 0 + +2025-09-24 11:28:12,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:28:12,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:28:22,076 INFO [long-pulling] client count 0 + +2025-09-24 11:28:22,123 INFO toNotifyTaskSize = 0 + +2025-09-24 11:28:22,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:28:22,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:28:32,078 INFO [long-pulling] client count 0 + +2025-09-24 11:28:32,124 INFO toNotifyTaskSize = 0 + +2025-09-24 11:28:32,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:28:32,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:28:42,079 INFO [long-pulling] client count 0 + +2025-09-24 11:28:42,125 INFO toNotifyTaskSize = 0 + +2025-09-24 11:28:42,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:28:42,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:28:52,081 INFO [long-pulling] client count 0 + +2025-09-24 11:28:52,126 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:28:52,126 INFO toNotifyTaskSize = 0 + +2025-09-24 11:28:52,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:29:02,082 INFO [long-pulling] client count 0 + +2025-09-24 11:29:02,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:29:02,128 INFO toNotifyTaskSize = 0 + +2025-09-24 11:29:02,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:29:12,082 INFO [long-pulling] client count 0 + +2025-09-24 11:29:12,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:29:12,129 INFO toNotifyTaskSize = 0 + +2025-09-24 11:29:12,130 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:29:22,085 INFO [long-pulling] client count 0 + +2025-09-24 11:29:22,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:29:22,132 INFO toNotifyTaskSize = 0 + +2025-09-24 11:29:22,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:29:32,087 INFO [long-pulling] client count 0 + +2025-09-24 11:29:32,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:29:32,132 INFO toNotifyTaskSize = 0 + +2025-09-24 11:29:32,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:29:42,088 INFO [long-pulling] client count 0 + +2025-09-24 11:29:42,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:29:42,133 INFO toNotifyTaskSize = 0 + +2025-09-24 11:29:42,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:29:52,090 INFO [long-pulling] client count 0 + +2025-09-24 11:29:52,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:29:52,133 INFO toNotifyTaskSize = 0 + +2025-09-24 11:29:52,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:30:02,091 INFO [long-pulling] client count 0 + +2025-09-24 11:30:02,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:30:02,134 INFO toNotifyTaskSize = 0 + +2025-09-24 11:30:02,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:30:12,092 INFO [long-pulling] client count 0 + +2025-09-24 11:30:12,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:30:12,134 INFO toNotifyTaskSize = 0 + +2025-09-24 11:30:12,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:30:22,092 INFO [long-pulling] client count 0 + +2025-09-24 11:30:22,135 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:30:22,135 INFO toNotifyTaskSize = 0 + +2025-09-24 11:30:22,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:30:32,094 INFO [long-pulling] client count 0 + +2025-09-24 11:30:32,135 INFO toNotifyTaskSize = 0 + +2025-09-24 11:30:32,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:30:32,135 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:30:42,096 INFO [long-pulling] client count 0 + +2025-09-24 11:30:42,135 INFO toNotifyTaskSize = 0 + +2025-09-24 11:30:42,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:30:42,135 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:30:52,096 INFO [long-pulling] client count 0 + +2025-09-24 11:30:52,136 INFO toNotifyTaskSize = 0 + +2025-09-24 11:30:52,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:30:52,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:31:02,098 INFO [long-pulling] client count 0 + +2025-09-24 11:31:02,137 INFO toNotifyTaskSize = 0 + +2025-09-24 11:31:02,137 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:31:02,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:31:12,098 INFO [long-pulling] client count 0 + +2025-09-24 11:31:12,138 INFO toNotifyTaskSize = 0 + +2025-09-24 11:31:12,138 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:31:12,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:31:22,099 INFO [long-pulling] client count 0 + +2025-09-24 11:31:22,138 INFO toNotifyTaskSize = 0 + +2025-09-24 11:31:22,138 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:31:22,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:31:32,100 INFO [long-pulling] client count 0 + +2025-09-24 11:31:32,140 INFO toNotifyTaskSize = 0 + +2025-09-24 11:31:32,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:31:32,141 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:31:42,100 INFO [long-pulling] client count 0 + +2025-09-24 11:31:42,141 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:31:42,141 INFO toNotifyTaskSize = 0 + +2025-09-24 11:31:42,141 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:31:52,101 INFO [long-pulling] client count 0 + +2025-09-24 11:31:52,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:31:52,142 INFO toNotifyTaskSize = 0 + +2025-09-24 11:31:52,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:32:02,102 INFO [long-pulling] client count 0 + +2025-09-24 11:32:02,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:32:02,142 INFO toNotifyTaskSize = 0 + +2025-09-24 11:32:02,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:32:12,102 INFO [long-pulling] client count 0 + +2025-09-24 11:32:12,143 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:32:12,143 INFO toNotifyTaskSize = 0 + +2025-09-24 11:32:12,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:32:22,103 INFO [long-pulling] client count 0 + +2025-09-24 11:32:22,143 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:32:22,143 INFO toNotifyTaskSize = 0 + +2025-09-24 11:32:22,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:32:32,105 INFO [long-pulling] client count 0 + +2025-09-24 11:32:32,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:32:32,145 INFO toNotifyTaskSize = 0 + +2025-09-24 11:32:32,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:32:42,106 INFO [long-pulling] client count 0 + +2025-09-24 11:32:42,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:32:42,145 INFO toNotifyTaskSize = 0 + +2025-09-24 11:32:42,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:32:52,108 INFO [long-pulling] client count 0 + +2025-09-24 11:32:52,147 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:32:52,147 INFO toNotifyTaskSize = 0 + +2025-09-24 11:32:52,148 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:33:02,110 INFO [long-pulling] client count 0 + +2025-09-24 11:33:02,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:33:02,150 INFO toNotifyTaskSize = 0 + +2025-09-24 11:33:02,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:33:12,112 INFO [long-pulling] client count 0 + +2025-09-24 11:33:12,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:33:12,150 INFO toNotifyTaskSize = 0 + +2025-09-24 11:33:12,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:33:22,112 INFO [long-pulling] client count 0 + +2025-09-24 11:33:22,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:33:22,151 INFO toNotifyTaskSize = 0 + +2025-09-24 11:33:22,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:33:32,113 INFO [long-pulling] client count 0 + +2025-09-24 11:33:32,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:33:32,151 INFO toNotifyTaskSize = 0 + +2025-09-24 11:33:32,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:33:42,115 INFO [long-pulling] client count 0 + +2025-09-24 11:33:42,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:33:42,152 INFO toNotifyTaskSize = 0 + +2025-09-24 11:33:42,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:33:52,116 INFO [long-pulling] client count 0 + +2025-09-24 11:33:52,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:33:52,153 INFO toNotifyTaskSize = 0 + +2025-09-24 11:33:52,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:34:02,116 INFO [long-pulling] client count 0 + +2025-09-24 11:34:02,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:34:02,155 INFO toNotifyTaskSize = 0 + +2025-09-24 11:34:02,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:34:12,117 INFO [long-pulling] client count 0 + +2025-09-24 11:34:12,155 INFO toNotifyTaskSize = 0 + +2025-09-24 11:34:12,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:34:12,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:34:22,117 INFO [long-pulling] client count 0 + +2025-09-24 11:34:22,157 INFO toNotifyTaskSize = 0 + +2025-09-24 11:34:22,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:34:22,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:34:32,118 INFO [long-pulling] client count 0 + +2025-09-24 11:34:32,158 INFO toNotifyTaskSize = 0 + +2025-09-24 11:34:32,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:34:32,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:34:42,119 INFO [long-pulling] client count 0 + +2025-09-24 11:34:42,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:34:42,158 INFO toNotifyTaskSize = 0 + +2025-09-24 11:34:42,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:34:52,119 INFO [long-pulling] client count 0 + +2025-09-24 11:34:52,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:34:52,158 INFO toNotifyTaskSize = 0 + +2025-09-24 11:34:52,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:35:02,121 INFO [long-pulling] client count 0 + +2025-09-24 11:35:02,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:35:02,160 INFO toNotifyTaskSize = 0 + +2025-09-24 11:35:02,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:35:12,122 INFO [long-pulling] client count 0 + +2025-09-24 11:35:12,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:35:12,162 INFO toNotifyTaskSize = 0 + +2025-09-24 11:35:12,162 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:35:22,123 INFO [long-pulling] client count 0 + +2025-09-24 11:35:22,164 INFO toNotifyTaskSize = 0 + +2025-09-24 11:35:22,164 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:35:22,164 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:35:32,125 INFO [long-pulling] client count 0 + +2025-09-24 11:35:32,164 INFO toNotifyTaskSize = 0 + +2025-09-24 11:35:32,164 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:35:32,164 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:35:42,125 INFO [long-pulling] client count 0 + +2025-09-24 11:35:42,166 INFO toNotifyTaskSize = 0 + +2025-09-24 11:35:42,166 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:35:42,166 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:35:52,125 INFO [long-pulling] client count 0 + +2025-09-24 11:35:52,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:35:52,169 INFO toNotifyTaskSize = 0 + +2025-09-24 11:35:52,169 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:36:02,127 INFO [long-pulling] client count 0 + +2025-09-24 11:36:02,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:36:02,171 INFO toNotifyTaskSize = 0 + +2025-09-24 11:36:02,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:36:12,127 INFO [long-pulling] client count 0 + +2025-09-24 11:36:12,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:36:12,171 INFO toNotifyTaskSize = 0 + +2025-09-24 11:36:12,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:36:22,128 INFO [long-pulling] client count 0 + +2025-09-24 11:36:22,171 INFO toNotifyTaskSize = 0 + +2025-09-24 11:36:22,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:36:22,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:36:32,129 INFO [long-pulling] client count 0 + +2025-09-24 11:36:32,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:36:32,173 INFO toNotifyTaskSize = 0 + +2025-09-24 11:36:32,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:36:42,130 INFO [long-pulling] client count 0 + +2025-09-24 11:36:42,173 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:36:42,173 INFO toNotifyTaskSize = 0 + +2025-09-24 11:36:42,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:36:52,131 INFO [long-pulling] client count 0 + +2025-09-24 11:36:52,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:36:52,174 INFO toNotifyTaskSize = 0 + +2025-09-24 11:36:52,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:37:02,134 INFO [long-pulling] client count 0 + +2025-09-24 11:37:02,174 INFO toNotifyTaskSize = 0 + +2025-09-24 11:37:02,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:37:02,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:37:12,135 INFO [long-pulling] client count 0 + +2025-09-24 11:37:12,175 INFO toNotifyTaskSize = 0 + +2025-09-24 11:37:12,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:37:12,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:37:22,136 INFO [long-pulling] client count 0 + +2025-09-24 11:37:22,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:37:22,176 INFO toNotifyTaskSize = 0 + +2025-09-24 11:37:22,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:37:32,137 INFO [long-pulling] client count 0 + +2025-09-24 11:37:32,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:37:32,177 INFO toNotifyTaskSize = 0 + +2025-09-24 11:37:32,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:37:42,137 INFO [long-pulling] client count 0 + +2025-09-24 11:37:42,178 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:37:42,178 INFO toNotifyTaskSize = 0 + +2025-09-24 11:37:42,178 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:37:52,138 INFO [long-pulling] client count 0 + +2025-09-24 11:37:52,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:37:52,180 INFO toNotifyTaskSize = 0 + +2025-09-24 11:37:52,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:38:02,140 INFO [long-pulling] client count 0 + +2025-09-24 11:38:02,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:38:02,181 INFO toNotifyTaskSize = 0 + +2025-09-24 11:38:02,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:38:12,140 INFO [long-pulling] client count 0 + +2025-09-24 11:38:12,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:38:12,181 INFO toNotifyTaskSize = 0 + +2025-09-24 11:38:12,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:38:22,141 INFO [long-pulling] client count 0 + +2025-09-24 11:38:22,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:38:22,181 INFO toNotifyTaskSize = 0 + +2025-09-24 11:38:22,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:38:32,141 INFO [long-pulling] client count 0 + +2025-09-24 11:38:32,182 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:38:32,182 INFO toNotifyTaskSize = 0 + +2025-09-24 11:38:32,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:38:42,143 INFO [long-pulling] client count 0 + +2025-09-24 11:38:42,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:38:42,184 INFO toNotifyTaskSize = 0 + +2025-09-24 11:38:42,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:38:52,143 INFO [long-pulling] client count 0 + +2025-09-24 11:38:52,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:38:52,186 INFO toNotifyTaskSize = 0 + +2025-09-24 11:38:52,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:39:02,143 INFO [long-pulling] client count 0 + +2025-09-24 11:39:02,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:39:02,186 INFO toNotifyTaskSize = 0 + +2025-09-24 11:39:02,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:39:12,144 INFO [long-pulling] client count 0 + +2025-09-24 11:39:12,187 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:39:12,187 INFO toNotifyTaskSize = 0 + +2025-09-24 11:39:12,187 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:39:22,145 INFO [long-pulling] client count 0 + +2025-09-24 11:39:22,188 INFO toNotifyTaskSize = 0 + +2025-09-24 11:39:22,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:39:22,188 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:39:32,145 INFO [long-pulling] client count 0 + +2025-09-24 11:39:32,188 INFO toNotifyTaskSize = 0 + +2025-09-24 11:39:32,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:39:32,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:39:42,148 INFO [long-pulling] client count 0 + +2025-09-24 11:39:42,189 INFO toNotifyTaskSize = 0 + +2025-09-24 11:39:42,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:39:42,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:39:52,148 INFO [long-pulling] client count 0 + +2025-09-24 11:39:52,189 INFO toNotifyTaskSize = 0 + +2025-09-24 11:39:52,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:39:52,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:40:02,149 INFO [long-pulling] client count 0 + +2025-09-24 11:40:02,190 INFO toNotifyTaskSize = 0 + +2025-09-24 11:40:02,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:40:02,190 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:40:12,149 INFO [long-pulling] client count 0 + +2025-09-24 11:40:12,191 INFO toNotifyTaskSize = 0 + +2025-09-24 11:40:12,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:40:12,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:40:22,150 INFO [long-pulling] client count 0 + +2025-09-24 11:40:22,191 INFO toNotifyTaskSize = 0 + +2025-09-24 11:40:22,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:40:22,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:40:32,150 INFO [long-pulling] client count 0 + +2025-09-24 11:40:32,192 INFO toNotifyTaskSize = 0 + +2025-09-24 11:40:32,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:40:32,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:40:42,151 INFO [long-pulling] client count 0 + +2025-09-24 11:40:42,192 INFO toNotifyTaskSize = 0 + +2025-09-24 11:40:42,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:40:42,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:40:52,152 INFO [long-pulling] client count 0 + +2025-09-24 11:40:52,193 INFO toNotifyTaskSize = 0 + +2025-09-24 11:40:52,213 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:40:52,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:41:02,152 INFO [long-pulling] client count 0 + +2025-09-24 11:41:02,214 INFO toNotifyTaskSize = 0 + +2025-09-24 11:41:02,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:41:02,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:41:12,153 INFO [long-pulling] client count 0 + +2025-09-24 11:41:12,216 INFO toNotifyTaskSize = 0 + +2025-09-24 11:41:12,216 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:41:12,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:41:22,153 INFO [long-pulling] client count 0 + +2025-09-24 11:41:22,217 INFO toNotifyTaskSize = 0 + +2025-09-24 11:41:22,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:41:22,217 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:41:32,153 INFO [long-pulling] client count 0 + +2025-09-24 11:41:32,219 INFO toNotifyTaskSize = 0 + +2025-09-24 11:41:32,219 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:41:32,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:41:42,154 INFO [long-pulling] client count 0 + +2025-09-24 11:41:42,221 INFO toNotifyTaskSize = 0 + +2025-09-24 11:41:42,221 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:41:42,221 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:41:52,156 INFO [long-pulling] client count 0 + +2025-09-24 11:41:52,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:41:52,224 INFO toNotifyTaskSize = 0 + +2025-09-24 11:41:52,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:42:02,157 INFO [long-pulling] client count 0 + +2025-09-24 11:42:02,224 INFO toNotifyTaskSize = 0 + +2025-09-24 11:42:02,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:42:02,224 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:42:12,159 INFO [long-pulling] client count 0 + +2025-09-24 11:42:12,225 INFO toNotifyTaskSize = 0 + +2025-09-24 11:42:12,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:42:12,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:42:22,159 INFO [long-pulling] client count 0 + +2025-09-24 11:42:22,227 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:42:22,227 INFO toNotifyTaskSize = 0 + +2025-09-24 11:42:22,227 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:42:32,161 INFO [long-pulling] client count 0 + +2025-09-24 11:42:32,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:42:32,228 INFO toNotifyTaskSize = 0 + +2025-09-24 11:42:32,228 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:42:42,162 INFO [long-pulling] client count 0 + +2025-09-24 11:42:42,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:42:42,229 INFO toNotifyTaskSize = 0 + +2025-09-24 11:42:42,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:42:52,163 INFO [long-pulling] client count 0 + +2025-09-24 11:42:52,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:42:52,230 INFO toNotifyTaskSize = 0 + +2025-09-24 11:42:52,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:43:02,164 INFO [long-pulling] client count 0 + +2025-09-24 11:43:02,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:43:02,239 INFO toNotifyTaskSize = 0 + +2025-09-24 11:43:02,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:43:12,166 INFO [long-pulling] client count 0 + +2025-09-24 11:43:12,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:43:12,240 INFO toNotifyTaskSize = 0 + +2025-09-24 11:43:12,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:43:22,168 INFO [long-pulling] client count 0 + +2025-09-24 11:43:22,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:43:22,241 INFO toNotifyTaskSize = 0 + +2025-09-24 11:43:22,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:43:32,170 INFO [long-pulling] client count 0 + +2025-09-24 11:43:32,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:43:32,242 INFO toNotifyTaskSize = 0 + +2025-09-24 11:43:32,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:43:42,170 INFO [long-pulling] client count 0 + +2025-09-24 11:43:42,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:43:42,242 INFO toNotifyTaskSize = 0 + +2025-09-24 11:43:42,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:43:52,173 INFO [long-pulling] client count 0 + +2025-09-24 11:43:52,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:43:52,244 INFO toNotifyTaskSize = 0 + +2025-09-24 11:43:52,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:44:02,174 INFO [long-pulling] client count 0 + +2025-09-24 11:44:02,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:44:02,245 INFO toNotifyTaskSize = 0 + +2025-09-24 11:44:02,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:44:12,175 INFO [long-pulling] client count 0 + +2025-09-24 11:44:12,236 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:44:12,245 INFO toNotifyTaskSize = 0 + +2025-09-24 11:44:12,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:44:22,176 INFO [long-pulling] client count 0 + +2025-09-24 11:44:22,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:44:22,247 INFO toNotifyTaskSize = 0 + +2025-09-24 11:44:22,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:44:32,176 INFO [long-pulling] client count 0 + +2025-09-24 11:44:32,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:44:32,248 INFO toNotifyTaskSize = 0 + +2025-09-24 11:44:32,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:44:42,177 INFO [long-pulling] client count 0 + +2025-09-24 11:44:42,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:44:42,249 INFO toNotifyTaskSize = 0 + +2025-09-24 11:44:42,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:44:52,178 INFO [long-pulling] client count 0 + +2025-09-24 11:44:52,240 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:44:52,250 INFO toNotifyTaskSize = 0 + +2025-09-24 11:44:52,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:45:02,178 INFO [long-pulling] client count 0 + +2025-09-24 11:45:02,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:45:02,250 INFO toNotifyTaskSize = 0 + +2025-09-24 11:45:02,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:45:12,179 INFO [long-pulling] client count 0 + +2025-09-24 11:45:12,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:45:12,253 INFO toNotifyTaskSize = 0 + +2025-09-24 11:45:12,253 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:45:22,180 INFO [long-pulling] client count 0 + +2025-09-24 11:45:22,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:45:22,255 INFO toNotifyTaskSize = 0 + +2025-09-24 11:45:22,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:45:32,180 INFO [long-pulling] client count 0 + +2025-09-24 11:45:32,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:45:32,258 INFO toNotifyTaskSize = 0 + +2025-09-24 11:45:32,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:45:42,182 INFO [long-pulling] client count 0 + +2025-09-24 11:45:42,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:45:42,260 INFO toNotifyTaskSize = 0 + +2025-09-24 11:45:42,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:45:52,182 INFO [long-pulling] client count 0 + +2025-09-24 11:45:52,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:45:52,262 INFO toNotifyTaskSize = 0 + +2025-09-24 11:45:52,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:46:02,184 INFO [long-pulling] client count 0 + +2025-09-24 11:46:02,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:46:02,263 INFO toNotifyTaskSize = 0 + +2025-09-24 11:46:02,263 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:46:12,186 INFO [long-pulling] client count 0 + +2025-09-24 11:46:12,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:46:12,265 INFO toNotifyTaskSize = 0 + +2025-09-24 11:46:12,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:46:22,188 INFO [long-pulling] client count 0 + +2025-09-24 11:46:22,253 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:46:22,266 INFO toNotifyTaskSize = 0 + +2025-09-24 11:46:22,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:46:32,189 INFO [long-pulling] client count 0 + +2025-09-24 11:46:32,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:46:32,268 INFO toNotifyTaskSize = 0 + +2025-09-24 11:46:32,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:46:42,191 INFO [long-pulling] client count 0 + +2025-09-24 11:46:42,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:46:42,269 INFO toNotifyTaskSize = 0 + +2025-09-24 11:46:42,269 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:46:52,194 INFO [long-pulling] client count 0 + +2025-09-24 11:46:52,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:46:52,271 INFO toNotifyTaskSize = 0 + +2025-09-24 11:46:52,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:47:02,196 INFO [long-pulling] client count 0 + +2025-09-24 11:47:02,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:47:02,272 INFO toNotifyTaskSize = 0 + +2025-09-24 11:47:02,273 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:47:12,198 INFO [long-pulling] client count 0 + +2025-09-24 11:47:12,262 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:47:12,274 INFO toNotifyTaskSize = 0 + +2025-09-24 11:47:12,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:47:22,199 INFO [long-pulling] client count 0 + +2025-09-24 11:47:22,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:47:22,275 INFO toNotifyTaskSize = 0 + +2025-09-24 11:47:22,275 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:47:32,200 INFO [long-pulling] client count 0 + +2025-09-24 11:47:32,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:47:32,276 INFO toNotifyTaskSize = 0 + +2025-09-24 11:47:32,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:47:42,202 INFO [long-pulling] client count 0 + +2025-09-24 11:47:42,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:47:42,277 INFO toNotifyTaskSize = 0 + +2025-09-24 11:47:42,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:47:52,203 INFO [long-pulling] client count 0 + +2025-09-24 11:47:52,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:47:52,279 INFO toNotifyTaskSize = 0 + +2025-09-24 11:47:52,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:48:02,205 INFO [long-pulling] client count 0 + +2025-09-24 11:48:02,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:48:02,281 INFO toNotifyTaskSize = 0 + +2025-09-24 11:48:02,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:48:12,205 INFO [long-pulling] client count 0 + +2025-09-24 11:48:12,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:48:12,282 INFO toNotifyTaskSize = 0 + +2025-09-24 11:48:12,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:48:22,207 INFO [long-pulling] client count 0 + +2025-09-24 11:48:22,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:48:22,284 INFO toNotifyTaskSize = 0 + +2025-09-24 11:48:22,284 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:48:32,207 INFO [long-pulling] client count 0 + +2025-09-24 11:48:32,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:48:32,284 INFO toNotifyTaskSize = 0 + +2025-09-24 11:48:32,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:48:42,209 INFO [long-pulling] client count 0 + +2025-09-24 11:48:42,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:48:42,285 INFO toNotifyTaskSize = 0 + +2025-09-24 11:48:42,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:48:52,209 INFO [long-pulling] client count 0 + +2025-09-24 11:48:52,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:48:52,286 INFO toNotifyTaskSize = 0 + +2025-09-24 11:48:52,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:49:02,211 INFO [long-pulling] client count 0 + +2025-09-24 11:49:02,271 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:49:02,286 INFO toNotifyTaskSize = 0 + +2025-09-24 11:49:02,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:49:12,211 INFO [long-pulling] client count 0 + +2025-09-24 11:49:12,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:49:12,289 INFO toNotifyTaskSize = 0 + +2025-09-24 11:49:12,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:49:22,211 INFO [long-pulling] client count 0 + +2025-09-24 11:49:22,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:49:22,289 INFO toNotifyTaskSize = 0 + +2025-09-24 11:49:22,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:49:32,213 INFO [long-pulling] client count 0 + +2025-09-24 11:49:32,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:49:32,290 INFO toNotifyTaskSize = 0 + +2025-09-24 11:49:32,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:49:42,215 INFO [long-pulling] client count 0 + +2025-09-24 11:49:42,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:49:42,291 INFO toNotifyTaskSize = 0 + +2025-09-24 11:49:42,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:49:52,215 INFO [long-pulling] client count 0 + +2025-09-24 11:49:52,275 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:49:52,293 INFO toNotifyTaskSize = 0 + +2025-09-24 11:49:52,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:50:02,217 INFO [long-pulling] client count 0 + +2025-09-24 11:50:02,277 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:50:02,296 INFO toNotifyTaskSize = 0 + +2025-09-24 11:50:02,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:50:12,218 INFO [long-pulling] client count 0 + +2025-09-24 11:50:12,278 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:50:12,296 INFO toNotifyTaskSize = 0 + +2025-09-24 11:50:12,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:50:22,220 INFO [long-pulling] client count 0 + +2025-09-24 11:50:22,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:50:22,297 INFO toNotifyTaskSize = 0 + +2025-09-24 11:50:22,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:50:32,222 INFO [long-pulling] client count 0 + +2025-09-24 11:50:32,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:50:32,300 INFO toNotifyTaskSize = 0 + +2025-09-24 11:50:32,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:50:42,224 INFO [long-pulling] client count 0 + +2025-09-24 11:50:42,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:50:42,300 INFO toNotifyTaskSize = 0 + +2025-09-24 11:50:42,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:50:52,226 INFO [long-pulling] client count 0 + +2025-09-24 11:50:52,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:50:52,302 INFO toNotifyTaskSize = 0 + +2025-09-24 11:50:52,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:51:02,227 INFO [long-pulling] client count 0 + +2025-09-24 11:51:02,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:51:02,304 INFO toNotifyTaskSize = 0 + +2025-09-24 11:51:02,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:51:12,227 INFO [long-pulling] client count 0 + +2025-09-24 11:51:12,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:51:12,306 INFO toNotifyTaskSize = 0 + +2025-09-24 11:51:12,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:51:22,228 INFO [long-pulling] client count 0 + +2025-09-24 11:51:22,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:51:22,306 INFO toNotifyTaskSize = 0 + +2025-09-24 11:51:22,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:51:32,230 INFO [long-pulling] client count 0 + +2025-09-24 11:51:32,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:51:32,306 INFO toNotifyTaskSize = 0 + +2025-09-24 11:51:32,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:51:42,232 INFO [long-pulling] client count 0 + +2025-09-24 11:51:42,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:51:42,308 INFO toNotifyTaskSize = 0 + +2025-09-24 11:51:42,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:51:52,232 INFO [long-pulling] client count 0 + +2025-09-24 11:51:52,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:51:52,308 INFO toNotifyTaskSize = 0 + +2025-09-24 11:51:52,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:52:02,233 INFO [long-pulling] client count 0 + +2025-09-24 11:52:02,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:52:02,309 INFO toNotifyTaskSize = 0 + +2025-09-24 11:52:02,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:52:12,233 INFO [long-pulling] client count 0 + +2025-09-24 11:52:12,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:52:12,310 INFO toNotifyTaskSize = 0 + +2025-09-24 11:52:12,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:52:22,234 INFO [long-pulling] client count 0 + +2025-09-24 11:52:22,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:52:22,310 INFO toNotifyTaskSize = 0 + +2025-09-24 11:52:22,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:52:32,235 INFO [long-pulling] client count 0 + +2025-09-24 11:52:32,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:52:32,313 INFO toNotifyTaskSize = 0 + +2025-09-24 11:52:32,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:52:42,235 INFO [long-pulling] client count 0 + +2025-09-24 11:52:42,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:52:42,313 INFO toNotifyTaskSize = 0 + +2025-09-24 11:52:42,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:52:52,236 INFO [long-pulling] client count 0 + +2025-09-24 11:52:52,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:52:52,313 INFO toNotifyTaskSize = 0 + +2025-09-24 11:52:52,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:53:02,236 INFO [long-pulling] client count 0 + +2025-09-24 11:53:02,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:53:02,315 INFO toNotifyTaskSize = 0 + +2025-09-24 11:53:02,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:53:12,237 INFO [long-pulling] client count 0 + +2025-09-24 11:53:12,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:53:12,316 INFO toNotifyTaskSize = 0 + +2025-09-24 11:53:12,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:53:22,239 INFO [long-pulling] client count 0 + +2025-09-24 11:53:22,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:53:22,318 INFO toNotifyTaskSize = 0 + +2025-09-24 11:53:22,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:53:32,241 INFO [long-pulling] client count 0 + +2025-09-24 11:53:32,298 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:53:32,319 INFO toNotifyTaskSize = 0 + +2025-09-24 11:53:32,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:53:42,242 INFO [long-pulling] client count 0 + +2025-09-24 11:53:42,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:53:42,321 INFO toNotifyTaskSize = 0 + +2025-09-24 11:53:42,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:53:52,242 INFO [long-pulling] client count 0 + +2025-09-24 11:53:52,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:53:52,322 INFO toNotifyTaskSize = 0 + +2025-09-24 11:53:52,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:54:02,245 INFO [long-pulling] client count 0 + +2025-09-24 11:54:02,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:54:02,322 INFO toNotifyTaskSize = 0 + +2025-09-24 11:54:02,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:54:12,245 INFO [long-pulling] client count 0 + +2025-09-24 11:54:12,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:54:12,323 INFO toNotifyTaskSize = 0 + +2025-09-24 11:54:12,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:54:22,247 INFO [long-pulling] client count 0 + +2025-09-24 11:54:22,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:54:22,324 INFO toNotifyTaskSize = 0 + +2025-09-24 11:54:22,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:54:32,247 INFO [long-pulling] client count 0 + +2025-09-24 11:54:32,304 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:54:32,324 INFO toNotifyTaskSize = 0 + +2025-09-24 11:54:32,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:54:42,247 INFO [long-pulling] client count 0 + +2025-09-24 11:54:42,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:54:42,325 INFO toNotifyTaskSize = 0 + +2025-09-24 11:54:42,325 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:54:52,248 INFO [long-pulling] client count 0 + +2025-09-24 11:54:52,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:54:52,326 INFO toNotifyTaskSize = 0 + +2025-09-24 11:54:52,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:55:02,249 INFO [long-pulling] client count 0 + +2025-09-24 11:55:02,306 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:55:02,327 INFO toNotifyTaskSize = 0 + +2025-09-24 11:55:02,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:55:12,251 INFO [long-pulling] client count 0 + +2025-09-24 11:55:12,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:55:12,328 INFO toNotifyTaskSize = 0 + +2025-09-24 11:55:12,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:55:22,252 INFO [long-pulling] client count 0 + +2025-09-24 11:55:22,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:55:22,328 INFO toNotifyTaskSize = 0 + +2025-09-24 11:55:22,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:55:32,253 INFO [long-pulling] client count 0 + +2025-09-24 11:55:32,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:55:32,331 INFO toNotifyTaskSize = 0 + +2025-09-24 11:55:32,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:55:42,253 INFO [long-pulling] client count 0 + +2025-09-24 11:55:42,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:55:42,333 INFO toNotifyTaskSize = 0 + +2025-09-24 11:55:42,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:55:52,254 INFO [long-pulling] client count 0 + +2025-09-24 11:55:52,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:55:52,335 INFO toNotifyTaskSize = 0 + +2025-09-24 11:55:52,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:56:02,256 INFO [long-pulling] client count 0 + +2025-09-24 11:56:02,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:56:02,337 INFO toNotifyTaskSize = 0 + +2025-09-24 11:56:02,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:56:12,257 INFO [long-pulling] client count 0 + +2025-09-24 11:56:12,314 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:56:12,339 INFO toNotifyTaskSize = 0 + +2025-09-24 11:56:12,340 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:56:22,257 INFO [long-pulling] client count 0 + +2025-09-24 11:56:22,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:56:22,342 INFO toNotifyTaskSize = 0 + +2025-09-24 11:56:22,342 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:56:32,258 INFO [long-pulling] client count 0 + +2025-09-24 11:56:32,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:56:32,343 INFO toNotifyTaskSize = 0 + +2025-09-24 11:56:32,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:56:42,259 INFO [long-pulling] client count 0 + +2025-09-24 11:56:42,317 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:56:42,344 INFO toNotifyTaskSize = 0 + +2025-09-24 11:56:42,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:56:52,262 INFO [long-pulling] client count 0 + +2025-09-24 11:56:52,319 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:56:52,346 INFO toNotifyTaskSize = 0 + +2025-09-24 11:56:52,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:57:02,262 INFO [long-pulling] client count 0 + +2025-09-24 11:57:02,319 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:57:02,348 INFO toNotifyTaskSize = 0 + +2025-09-24 11:57:02,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:57:12,264 INFO [long-pulling] client count 0 + +2025-09-24 11:57:12,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:57:12,349 INFO toNotifyTaskSize = 0 + +2025-09-24 11:57:12,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:57:22,265 INFO [long-pulling] client count 0 + +2025-09-24 11:57:22,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:57:22,349 INFO toNotifyTaskSize = 0 + +2025-09-24 11:57:22,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:57:32,266 INFO [long-pulling] client count 0 + +2025-09-24 11:57:32,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:57:32,352 INFO toNotifyTaskSize = 0 + +2025-09-24 11:57:32,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:57:42,268 INFO [long-pulling] client count 0 + +2025-09-24 11:57:42,322 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:57:42,354 INFO toNotifyTaskSize = 0 + +2025-09-24 11:57:42,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:57:52,269 INFO [long-pulling] client count 0 + +2025-09-24 11:57:52,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:57:52,355 INFO toNotifyTaskSize = 0 + +2025-09-24 11:57:52,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:58:02,271 INFO [long-pulling] client count 0 + +2025-09-24 11:58:02,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:58:02,356 INFO toNotifyTaskSize = 0 + +2025-09-24 11:58:02,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:58:12,271 INFO [long-pulling] client count 0 + +2025-09-24 11:58:12,325 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:58:12,356 INFO toNotifyTaskSize = 0 + +2025-09-24 11:58:12,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:58:22,272 INFO [long-pulling] client count 0 + +2025-09-24 11:58:22,326 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:58:22,357 INFO toNotifyTaskSize = 0 + +2025-09-24 11:58:22,357 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:58:32,273 INFO [long-pulling] client count 0 + +2025-09-24 11:58:32,326 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:58:32,359 INFO toNotifyTaskSize = 0 + +2025-09-24 11:58:32,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:58:42,273 INFO [long-pulling] client count 0 + +2025-09-24 11:58:42,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:58:42,361 INFO toNotifyTaskSize = 0 + +2025-09-24 11:58:42,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:58:52,275 INFO [long-pulling] client count 0 + +2025-09-24 11:58:52,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:58:52,362 INFO toNotifyTaskSize = 0 + +2025-09-24 11:58:52,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:59:02,278 INFO [long-pulling] client count 0 + +2025-09-24 11:59:02,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:59:02,363 INFO toNotifyTaskSize = 0 + +2025-09-24 11:59:02,363 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:59:12,279 INFO [long-pulling] client count 0 + +2025-09-24 11:59:12,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:59:12,365 INFO toNotifyTaskSize = 0 + +2025-09-24 11:59:12,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:59:22,279 INFO [long-pulling] client count 0 + +2025-09-24 11:59:22,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:59:22,366 INFO toNotifyTaskSize = 0 + +2025-09-24 11:59:22,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:59:32,279 INFO [long-pulling] client count 0 + +2025-09-24 11:59:32,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:59:32,367 INFO toNotifyTaskSize = 0 + +2025-09-24 11:59:32,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:59:42,282 INFO [long-pulling] client count 0 + +2025-09-24 11:59:42,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:59:42,368 INFO toNotifyTaskSize = 0 + +2025-09-24 11:59:42,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 11:59:52,283 INFO [long-pulling] client count 0 + +2025-09-24 11:59:52,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 11:59:52,370 INFO toNotifyTaskSize = 0 + +2025-09-24 11:59:52,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:00:02,283 INFO [long-pulling] client count 0 + +2025-09-24 12:00:02,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:00:02,371 INFO toNotifyTaskSize = 0 + +2025-09-24 12:00:02,371 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:00:12,286 INFO [long-pulling] client count 0 + +2025-09-24 12:00:12,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:00:12,373 INFO toNotifyTaskSize = 0 + +2025-09-24 12:00:12,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:00:22,286 INFO [long-pulling] client count 0 + +2025-09-24 12:00:22,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:00:22,374 INFO toNotifyTaskSize = 0 + +2025-09-24 12:00:22,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:00:32,287 INFO [long-pulling] client count 0 + +2025-09-24 12:00:32,338 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:00:32,375 INFO toNotifyTaskSize = 0 + +2025-09-24 12:00:32,375 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:00:42,287 INFO [long-pulling] client count 0 + +2025-09-24 12:00:42,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:00:42,376 INFO toNotifyTaskSize = 0 + +2025-09-24 12:00:42,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:00:52,288 INFO [long-pulling] client count 0 + +2025-09-24 12:00:52,343 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:00:52,377 INFO toNotifyTaskSize = 0 + +2025-09-24 12:00:52,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:01:02,288 INFO [long-pulling] client count 0 + +2025-09-24 12:01:02,344 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:01:02,379 INFO toNotifyTaskSize = 0 + +2025-09-24 12:01:02,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:01:12,289 INFO [long-pulling] client count 0 + +2025-09-24 12:01:12,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:01:12,380 INFO toNotifyTaskSize = 0 + +2025-09-24 12:01:12,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:01:22,291 INFO [long-pulling] client count 0 + +2025-09-24 12:01:22,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:01:22,381 INFO toNotifyTaskSize = 0 + +2025-09-24 12:01:22,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:01:32,291 INFO [long-pulling] client count 0 + +2025-09-24 12:01:32,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:01:32,381 INFO toNotifyTaskSize = 0 + +2025-09-24 12:01:32,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:01:42,294 INFO [long-pulling] client count 0 + +2025-09-24 12:01:42,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:01:42,383 INFO toNotifyTaskSize = 0 + +2025-09-24 12:01:42,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:01:52,294 INFO [long-pulling] client count 0 + +2025-09-24 12:01:52,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:01:52,384 INFO toNotifyTaskSize = 0 + +2025-09-24 12:01:52,384 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:02:02,295 INFO [long-pulling] client count 0 + +2025-09-24 12:02:02,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:02:02,386 INFO toNotifyTaskSize = 0 + +2025-09-24 12:02:02,386 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:02:12,295 INFO [long-pulling] client count 0 + +2025-09-24 12:02:12,349 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:02:12,388 INFO toNotifyTaskSize = 0 + +2025-09-24 12:02:12,388 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:02:22,296 INFO [long-pulling] client count 0 + +2025-09-24 12:02:22,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:02:22,389 INFO toNotifyTaskSize = 0 + +2025-09-24 12:02:22,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:02:32,296 INFO [long-pulling] client count 0 + +2025-09-24 12:02:32,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:02:32,391 INFO toNotifyTaskSize = 0 + +2025-09-24 12:02:32,391 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:02:42,297 INFO [long-pulling] client count 0 + +2025-09-24 12:02:42,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:02:42,392 INFO toNotifyTaskSize = 0 + +2025-09-24 12:02:42,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:02:52,298 INFO [long-pulling] client count 0 + +2025-09-24 12:02:52,357 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:02:52,394 INFO toNotifyTaskSize = 0 + +2025-09-24 12:02:52,394 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:03:02,298 INFO [long-pulling] client count 0 + +2025-09-24 12:03:02,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:03:02,395 INFO toNotifyTaskSize = 0 + +2025-09-24 12:03:02,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:03:12,299 INFO [long-pulling] client count 0 + +2025-09-24 12:03:12,360 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:03:12,398 INFO toNotifyTaskSize = 0 + +2025-09-24 12:03:12,398 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:03:22,299 INFO [long-pulling] client count 0 + +2025-09-24 12:03:22,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:03:22,398 INFO toNotifyTaskSize = 0 + +2025-09-24 12:03:22,398 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:03:32,301 INFO [long-pulling] client count 0 + +2025-09-24 12:03:32,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:03:32,399 INFO toNotifyTaskSize = 0 + +2025-09-24 12:03:32,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:03:42,301 INFO [long-pulling] client count 0 + +2025-09-24 12:03:42,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:03:42,401 INFO toNotifyTaskSize = 0 + +2025-09-24 12:03:42,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:03:52,303 INFO [long-pulling] client count 0 + +2025-09-24 12:03:52,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:03:52,401 INFO toNotifyTaskSize = 0 + +2025-09-24 12:03:52,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:04:02,304 INFO [long-pulling] client count 0 + +2025-09-24 12:04:02,366 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:04:02,403 INFO toNotifyTaskSize = 0 + +2025-09-24 12:04:02,404 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:04:12,305 INFO [long-pulling] client count 0 + +2025-09-24 12:04:12,366 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:04:12,404 INFO toNotifyTaskSize = 0 + +2025-09-24 12:04:12,404 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:04:22,306 INFO [long-pulling] client count 0 + +2025-09-24 12:04:22,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:04:22,406 INFO toNotifyTaskSize = 0 + +2025-09-24 12:04:22,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:04:32,307 INFO [long-pulling] client count 0 + +2025-09-24 12:04:32,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:04:32,407 INFO toNotifyTaskSize = 0 + +2025-09-24 12:04:32,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:04:42,309 INFO [long-pulling] client count 0 + +2025-09-24 12:04:42,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:04:42,408 INFO toNotifyTaskSize = 0 + +2025-09-24 12:04:42,408 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:04:52,309 INFO [long-pulling] client count 0 + +2025-09-24 12:04:52,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:04:52,410 INFO toNotifyTaskSize = 0 + +2025-09-24 12:04:52,410 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:05:02,311 INFO [long-pulling] client count 0 + +2025-09-24 12:05:02,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:05:02,411 INFO toNotifyTaskSize = 0 + +2025-09-24 12:05:02,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:05:12,312 INFO [long-pulling] client count 0 + +2025-09-24 12:05:12,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:05:12,413 INFO toNotifyTaskSize = 0 + +2025-09-24 12:05:12,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:05:22,313 INFO [long-pulling] client count 0 + +2025-09-24 12:05:22,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:05:22,413 INFO toNotifyTaskSize = 0 + +2025-09-24 12:05:22,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:05:32,314 INFO [long-pulling] client count 0 + +2025-09-24 12:05:32,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:05:32,413 INFO toNotifyTaskSize = 0 + +2025-09-24 12:05:32,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:05:42,315 INFO [long-pulling] client count 0 + +2025-09-24 12:05:42,372 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:05:42,414 INFO toNotifyTaskSize = 0 + +2025-09-24 12:05:42,414 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:05:52,315 INFO [long-pulling] client count 0 + +2025-09-24 12:05:52,372 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:05:52,414 INFO toNotifyTaskSize = 0 + +2025-09-24 12:05:52,414 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:06:02,316 INFO [long-pulling] client count 0 + +2025-09-24 12:06:02,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:06:02,415 INFO toNotifyTaskSize = 0 + +2025-09-24 12:06:02,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:06:12,316 INFO [long-pulling] client count 0 + +2025-09-24 12:06:12,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:06:12,415 INFO toNotifyTaskSize = 0 + +2025-09-24 12:06:12,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:06:22,316 INFO [long-pulling] client count 0 + +2025-09-24 12:06:22,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:06:22,416 INFO toNotifyTaskSize = 0 + +2025-09-24 12:06:22,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:06:32,317 INFO [long-pulling] client count 0 + +2025-09-24 12:06:32,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:06:32,417 INFO toNotifyTaskSize = 0 + +2025-09-24 12:06:32,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:06:42,317 INFO [long-pulling] client count 0 + +2025-09-24 12:06:42,379 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:06:42,417 INFO toNotifyTaskSize = 0 + +2025-09-24 12:06:42,418 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:06:52,318 INFO [long-pulling] client count 0 + +2025-09-24 12:06:52,381 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:06:52,420 INFO toNotifyTaskSize = 0 + +2025-09-24 12:06:52,420 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:07:02,320 INFO [long-pulling] client count 0 + +2025-09-24 12:07:02,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:07:02,422 INFO toNotifyTaskSize = 0 + +2025-09-24 12:07:02,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:07:12,322 INFO [long-pulling] client count 0 + +2025-09-24 12:07:12,384 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:07:12,423 INFO toNotifyTaskSize = 0 + +2025-09-24 12:07:12,424 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:07:22,324 INFO [long-pulling] client count 0 + +2025-09-24 12:07:22,385 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:07:22,426 INFO toNotifyTaskSize = 0 + +2025-09-24 12:07:22,426 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:07:32,325 INFO [long-pulling] client count 0 + +2025-09-24 12:07:32,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:07:32,427 INFO toNotifyTaskSize = 0 + +2025-09-24 12:07:32,427 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:07:42,326 INFO [long-pulling] client count 0 + +2025-09-24 12:07:42,387 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:07:42,427 INFO toNotifyTaskSize = 0 + +2025-09-24 12:07:42,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:07:52,327 INFO [long-pulling] client count 0 + +2025-09-24 12:07:52,390 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:07:52,428 INFO toNotifyTaskSize = 0 + +2025-09-24 12:07:52,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:08:02,328 INFO [long-pulling] client count 0 + +2025-09-24 12:08:02,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:08:02,430 INFO toNotifyTaskSize = 0 + +2025-09-24 12:08:02,430 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:08:12,330 INFO [long-pulling] client count 0 + +2025-09-24 12:08:12,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:08:12,432 INFO toNotifyTaskSize = 0 + +2025-09-24 12:08:12,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:08:22,332 INFO [long-pulling] client count 0 + +2025-09-24 12:08:22,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:08:22,434 INFO toNotifyTaskSize = 0 + +2025-09-24 12:08:22,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:08:32,334 INFO [long-pulling] client count 0 + +2025-09-24 12:08:32,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:08:32,434 INFO toNotifyTaskSize = 0 + +2025-09-24 12:08:32,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:08:42,336 INFO [long-pulling] client count 0 + +2025-09-24 12:08:42,395 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:08:42,434 INFO toNotifyTaskSize = 0 + +2025-09-24 12:08:42,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:08:52,338 INFO [long-pulling] client count 0 + +2025-09-24 12:08:52,396 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:08:52,437 INFO toNotifyTaskSize = 0 + +2025-09-24 12:08:52,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:09:02,338 INFO [long-pulling] client count 0 + +2025-09-24 12:09:02,398 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:09:02,437 INFO toNotifyTaskSize = 0 + +2025-09-24 12:09:02,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:09:12,338 INFO [long-pulling] client count 0 + +2025-09-24 12:09:12,400 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:09:12,438 INFO toNotifyTaskSize = 0 + +2025-09-24 12:09:12,438 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:09:22,339 INFO [long-pulling] client count 0 + +2025-09-24 12:09:22,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:09:22,438 INFO toNotifyTaskSize = 0 + +2025-09-24 12:09:22,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:09:32,341 INFO [long-pulling] client count 0 + +2025-09-24 12:09:32,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:09:32,441 INFO toNotifyTaskSize = 0 + +2025-09-24 12:09:32,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:09:42,341 INFO [long-pulling] client count 0 + +2025-09-24 12:09:42,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:09:42,441 INFO toNotifyTaskSize = 0 + +2025-09-24 12:09:42,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:09:52,342 INFO [long-pulling] client count 0 + +2025-09-24 12:09:52,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:09:52,444 INFO toNotifyTaskSize = 0 + +2025-09-24 12:09:52,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:10:02,343 INFO [long-pulling] client count 0 + +2025-09-24 12:10:02,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:10:02,444 INFO toNotifyTaskSize = 0 + +2025-09-24 12:10:02,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:10:12,344 INFO [long-pulling] client count 0 + +2025-09-24 12:10:12,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:10:12,448 INFO toNotifyTaskSize = 0 + +2025-09-24 12:10:12,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:10:22,346 INFO [long-pulling] client count 0 + +2025-09-24 12:10:22,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:10:22,450 INFO toNotifyTaskSize = 0 + +2025-09-24 12:10:22,450 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:10:32,347 INFO [long-pulling] client count 0 + +2025-09-24 12:10:32,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:10:32,451 INFO toNotifyTaskSize = 0 + +2025-09-24 12:10:32,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:10:42,349 INFO [long-pulling] client count 0 + +2025-09-24 12:10:42,408 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:10:42,453 INFO toNotifyTaskSize = 0 + +2025-09-24 12:10:42,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:10:52,349 INFO [long-pulling] client count 0 + +2025-09-24 12:10:52,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:10:52,454 INFO toNotifyTaskSize = 0 + +2025-09-24 12:10:52,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:11:02,349 INFO [long-pulling] client count 0 + +2025-09-24 12:11:02,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:11:02,454 INFO toNotifyTaskSize = 0 + +2025-09-24 12:11:02,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:11:12,349 INFO [long-pulling] client count 0 + +2025-09-24 12:11:12,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:11:12,456 INFO toNotifyTaskSize = 0 + +2025-09-24 12:11:12,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:11:22,350 INFO [long-pulling] client count 0 + +2025-09-24 12:11:22,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:11:22,457 INFO toNotifyTaskSize = 0 + +2025-09-24 12:11:22,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:11:32,351 INFO [long-pulling] client count 0 + +2025-09-24 12:11:32,414 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:11:32,458 INFO toNotifyTaskSize = 0 + +2025-09-24 12:11:32,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:11:42,352 INFO [long-pulling] client count 0 + +2025-09-24 12:11:42,414 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:11:42,459 INFO toNotifyTaskSize = 0 + +2025-09-24 12:11:42,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:11:52,353 INFO [long-pulling] client count 0 + +2025-09-24 12:11:52,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:11:52,460 INFO toNotifyTaskSize = 0 + +2025-09-24 12:11:52,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:12:02,355 INFO [long-pulling] client count 0 + +2025-09-24 12:12:02,418 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:12:02,461 INFO toNotifyTaskSize = 0 + +2025-09-24 12:12:02,461 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:12:12,356 INFO [long-pulling] client count 0 + +2025-09-24 12:12:12,418 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:12:12,463 INFO toNotifyTaskSize = 0 + +2025-09-24 12:12:12,463 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:12:22,357 INFO [long-pulling] client count 0 + +2025-09-24 12:12:22,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:12:22,465 INFO toNotifyTaskSize = 0 + +2025-09-24 12:12:22,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:12:32,358 INFO [long-pulling] client count 0 + +2025-09-24 12:12:32,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:12:32,467 INFO toNotifyTaskSize = 0 + +2025-09-24 12:12:32,467 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:12:42,358 INFO [long-pulling] client count 0 + +2025-09-24 12:12:42,420 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:12:42,468 INFO toNotifyTaskSize = 0 + +2025-09-24 12:12:42,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:12:52,359 INFO [long-pulling] client count 0 + +2025-09-24 12:12:52,422 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:12:52,470 INFO toNotifyTaskSize = 0 + +2025-09-24 12:12:52,470 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:13:02,361 INFO [long-pulling] client count 0 + +2025-09-24 12:13:02,424 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:13:02,470 INFO toNotifyTaskSize = 0 + +2025-09-24 12:13:02,470 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:13:12,361 INFO [long-pulling] client count 0 + +2025-09-24 12:13:12,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:13:12,472 INFO toNotifyTaskSize = 0 + +2025-09-24 12:13:12,473 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:13:22,362 INFO [long-pulling] client count 0 + +2025-09-24 12:13:22,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:13:22,475 INFO toNotifyTaskSize = 0 + +2025-09-24 12:13:22,475 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:13:32,363 INFO [long-pulling] client count 0 + +2025-09-24 12:13:32,429 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:13:32,477 INFO toNotifyTaskSize = 0 + +2025-09-24 12:13:32,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:13:42,364 INFO [long-pulling] client count 0 + +2025-09-24 12:13:42,430 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:13:42,479 INFO toNotifyTaskSize = 0 + +2025-09-24 12:13:42,480 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:13:52,364 INFO [long-pulling] client count 0 + +2025-09-24 12:13:52,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:13:52,480 INFO toNotifyTaskSize = 0 + +2025-09-24 12:13:52,480 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:14:02,365 INFO [long-pulling] client count 0 + +2025-09-24 12:14:02,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:14:02,481 INFO toNotifyTaskSize = 0 + +2025-09-24 12:14:02,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:14:12,366 INFO [long-pulling] client count 0 + +2025-09-24 12:14:12,435 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:14:12,481 INFO toNotifyTaskSize = 0 + +2025-09-24 12:14:12,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:14:22,368 INFO [long-pulling] client count 0 + +2025-09-24 12:14:22,436 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:14:22,484 INFO toNotifyTaskSize = 0 + +2025-09-24 12:14:22,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:14:32,368 INFO [long-pulling] client count 0 + +2025-09-24 12:14:32,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:14:32,484 INFO toNotifyTaskSize = 0 + +2025-09-24 12:14:32,485 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:14:42,369 INFO [long-pulling] client count 0 + +2025-09-24 12:14:42,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:14:42,485 INFO toNotifyTaskSize = 0 + +2025-09-24 12:14:42,485 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:14:52,369 INFO [long-pulling] client count 0 + +2025-09-24 12:14:52,441 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:14:52,486 INFO toNotifyTaskSize = 0 + +2025-09-24 12:14:52,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:15:02,370 INFO [long-pulling] client count 0 + +2025-09-24 12:15:02,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:15:02,486 INFO toNotifyTaskSize = 0 + +2025-09-24 12:15:02,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:15:12,370 INFO [long-pulling] client count 0 + +2025-09-24 12:15:12,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:15:12,487 INFO toNotifyTaskSize = 0 + +2025-09-24 12:15:12,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:15:22,372 INFO [long-pulling] client count 0 + +2025-09-24 12:15:22,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:15:22,488 INFO toNotifyTaskSize = 0 + +2025-09-24 12:15:22,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:15:32,373 INFO [long-pulling] client count 0 + +2025-09-24 12:15:32,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:15:32,490 INFO toNotifyTaskSize = 0 + +2025-09-24 12:15:32,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:15:42,373 INFO [long-pulling] client count 0 + +2025-09-24 12:15:42,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:15:42,490 INFO toNotifyTaskSize = 0 + +2025-09-24 12:15:42,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:15:52,374 INFO [long-pulling] client count 0 + +2025-09-24 12:15:52,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:15:52,491 INFO toNotifyTaskSize = 0 + +2025-09-24 12:15:52,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:16:02,374 INFO [long-pulling] client count 0 + +2025-09-24 12:16:02,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:16:02,492 INFO toNotifyTaskSize = 0 + +2025-09-24 12:16:02,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:16:12,375 INFO [long-pulling] client count 0 + +2025-09-24 12:16:12,447 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:16:12,494 INFO toNotifyTaskSize = 0 + +2025-09-24 12:16:12,494 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:16:22,375 INFO [long-pulling] client count 0 + +2025-09-24 12:16:22,448 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:16:22,495 INFO toNotifyTaskSize = 0 + +2025-09-24 12:16:22,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:16:32,376 INFO [long-pulling] client count 0 + +2025-09-24 12:16:32,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:16:32,496 INFO toNotifyTaskSize = 0 + +2025-09-24 12:16:32,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:16:42,377 INFO [long-pulling] client count 0 + +2025-09-24 12:16:42,451 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:16:42,496 INFO toNotifyTaskSize = 0 + +2025-09-24 12:16:42,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:16:52,379 INFO [long-pulling] client count 0 + +2025-09-24 12:16:52,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:16:52,497 INFO toNotifyTaskSize = 0 + +2025-09-24 12:16:52,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:17:02,380 INFO [long-pulling] client count 0 + +2025-09-24 12:17:02,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:17:02,498 INFO toNotifyTaskSize = 0 + +2025-09-24 12:17:02,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:17:12,382 INFO [long-pulling] client count 0 + +2025-09-24 12:17:12,454 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:17:12,498 INFO toNotifyTaskSize = 0 + +2025-09-24 12:17:12,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:17:22,382 INFO [long-pulling] client count 0 + +2025-09-24 12:17:22,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:17:22,499 INFO toNotifyTaskSize = 0 + +2025-09-24 12:17:22,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:17:32,384 INFO [long-pulling] client count 0 + +2025-09-24 12:17:32,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:17:32,500 INFO toNotifyTaskSize = 0 + +2025-09-24 12:17:32,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:17:42,386 INFO [long-pulling] client count 0 + +2025-09-24 12:17:42,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:17:42,500 INFO toNotifyTaskSize = 0 + +2025-09-24 12:17:42,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:17:52,386 INFO [long-pulling] client count 0 + +2025-09-24 12:17:52,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:17:52,502 INFO toNotifyTaskSize = 0 + +2025-09-24 12:17:52,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:18:02,388 INFO [long-pulling] client count 0 + +2025-09-24 12:18:02,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:18:02,504 INFO toNotifyTaskSize = 0 + +2025-09-24 12:18:02,504 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:18:12,391 INFO [long-pulling] client count 0 + +2025-09-24 12:18:12,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:18:12,505 INFO toNotifyTaskSize = 0 + +2025-09-24 12:18:12,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:18:22,392 INFO [long-pulling] client count 0 + +2025-09-24 12:18:22,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:18:22,506 INFO toNotifyTaskSize = 0 + +2025-09-24 12:18:22,506 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:18:32,395 INFO [long-pulling] client count 0 + +2025-09-24 12:18:32,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:18:32,508 INFO toNotifyTaskSize = 0 + +2025-09-24 12:18:32,508 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:18:42,396 INFO [long-pulling] client count 0 + +2025-09-24 12:18:42,463 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:18:42,509 INFO toNotifyTaskSize = 0 + +2025-09-24 12:18:42,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:18:52,396 INFO [long-pulling] client count 0 + +2025-09-24 12:18:52,464 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:18:52,510 INFO toNotifyTaskSize = 0 + +2025-09-24 12:18:52,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:19:02,396 INFO [long-pulling] client count 0 + +2025-09-24 12:19:02,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:19:02,511 INFO toNotifyTaskSize = 0 + +2025-09-24 12:19:02,511 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:19:12,398 INFO [long-pulling] client count 0 + +2025-09-24 12:19:12,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:19:12,511 INFO toNotifyTaskSize = 0 + +2025-09-24 12:19:12,511 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:19:22,400 INFO [long-pulling] client count 0 + +2025-09-24 12:19:22,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:19:22,513 INFO toNotifyTaskSize = 0 + +2025-09-24 12:19:22,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:19:32,401 INFO [long-pulling] client count 0 + +2025-09-24 12:19:32,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:19:32,514 INFO toNotifyTaskSize = 0 + +2025-09-24 12:19:32,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:19:42,401 INFO [long-pulling] client count 0 + +2025-09-24 12:19:42,469 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:19:42,514 INFO toNotifyTaskSize = 0 + +2025-09-24 12:19:42,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:19:52,403 INFO [long-pulling] client count 0 + +2025-09-24 12:19:52,469 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:19:52,515 INFO toNotifyTaskSize = 0 + +2025-09-24 12:19:52,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:20:02,404 INFO [long-pulling] client count 0 + +2025-09-24 12:20:02,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:20:02,516 INFO toNotifyTaskSize = 0 + +2025-09-24 12:20:02,516 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:20:12,405 INFO [long-pulling] client count 0 + +2025-09-24 12:20:12,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:20:12,518 INFO toNotifyTaskSize = 0 + +2025-09-24 12:20:12,518 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:20:22,406 INFO [long-pulling] client count 0 + +2025-09-24 12:20:22,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:20:22,518 INFO toNotifyTaskSize = 0 + +2025-09-24 12:20:22,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:20:32,407 INFO [long-pulling] client count 0 + +2025-09-24 12:20:32,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:20:32,521 INFO toNotifyTaskSize = 0 + +2025-09-24 12:20:32,521 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:20:42,408 INFO [long-pulling] client count 0 + +2025-09-24 12:20:42,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:20:42,521 INFO toNotifyTaskSize = 0 + +2025-09-24 12:20:42,521 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:20:52,408 INFO [long-pulling] client count 0 + +2025-09-24 12:20:52,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:20:52,523 INFO toNotifyTaskSize = 0 + +2025-09-24 12:20:52,523 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:21:02,409 INFO [long-pulling] client count 0 + +2025-09-24 12:21:02,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:21:02,525 INFO toNotifyTaskSize = 0 + +2025-09-24 12:21:02,526 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:21:12,412 INFO [long-pulling] client count 0 + +2025-09-24 12:21:12,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:21:12,528 INFO toNotifyTaskSize = 0 + +2025-09-24 12:21:12,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:21:22,413 INFO [long-pulling] client count 0 + +2025-09-24 12:21:22,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:21:22,530 INFO toNotifyTaskSize = 0 + +2025-09-24 12:21:22,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:21:32,415 INFO [long-pulling] client count 0 + +2025-09-24 12:21:32,481 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:21:32,531 INFO toNotifyTaskSize = 0 + +2025-09-24 12:21:32,531 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:21:42,416 INFO [long-pulling] client count 0 + +2025-09-24 12:21:42,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:21:42,533 INFO toNotifyTaskSize = 0 + +2025-09-24 12:21:42,534 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:21:52,418 INFO [long-pulling] client count 0 + +2025-09-24 12:21:52,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:21:52,536 INFO toNotifyTaskSize = 0 + +2025-09-24 12:21:52,536 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:22:02,418 INFO [long-pulling] client count 0 + +2025-09-24 12:22:02,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:22:02,536 INFO toNotifyTaskSize = 0 + +2025-09-24 12:22:02,536 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:22:12,419 INFO [long-pulling] client count 0 + +2025-09-24 12:22:12,487 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:22:12,539 INFO toNotifyTaskSize = 0 + +2025-09-24 12:22:12,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:22:22,421 INFO [long-pulling] client count 0 + +2025-09-24 12:22:22,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:22:22,540 INFO toNotifyTaskSize = 0 + +2025-09-24 12:22:22,540 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:22:32,423 INFO [long-pulling] client count 0 + +2025-09-24 12:22:32,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:22:32,542 INFO toNotifyTaskSize = 0 + +2025-09-24 12:22:32,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:22:42,423 INFO [long-pulling] client count 0 + +2025-09-24 12:22:42,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:22:42,544 INFO toNotifyTaskSize = 0 + +2025-09-24 12:22:42,544 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:22:52,423 INFO [long-pulling] client count 0 + +2025-09-24 12:22:52,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:22:52,546 INFO toNotifyTaskSize = 0 + +2025-09-24 12:22:52,546 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:23:02,424 INFO [long-pulling] client count 0 + +2025-09-24 12:23:02,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:23:02,547 INFO toNotifyTaskSize = 0 + +2025-09-24 12:23:02,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:23:12,424 INFO [long-pulling] client count 0 + +2025-09-24 12:23:12,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:23:12,549 INFO toNotifyTaskSize = 0 + +2025-09-24 12:23:12,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:23:22,426 INFO [long-pulling] client count 0 + +2025-09-24 12:23:22,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:23:22,550 INFO toNotifyTaskSize = 0 + +2025-09-24 12:23:22,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:23:32,428 INFO [long-pulling] client count 0 + +2025-09-24 12:23:32,498 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:23:32,550 INFO toNotifyTaskSize = 0 + +2025-09-24 12:23:32,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:23:42,428 INFO [long-pulling] client count 0 + +2025-09-24 12:23:42,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:23:42,551 INFO toNotifyTaskSize = 0 + +2025-09-24 12:23:42,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:23:52,430 INFO [long-pulling] client count 0 + +2025-09-24 12:23:52,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:23:52,552 INFO toNotifyTaskSize = 0 + +2025-09-24 12:23:52,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:24:02,430 INFO [long-pulling] client count 0 + +2025-09-24 12:24:02,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:24:02,552 INFO toNotifyTaskSize = 0 + +2025-09-24 12:24:02,553 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:24:12,431 INFO [long-pulling] client count 0 + +2025-09-24 12:24:12,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:24:12,555 INFO toNotifyTaskSize = 0 + +2025-09-24 12:24:12,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:24:22,432 INFO [long-pulling] client count 0 + +2025-09-24 12:24:22,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:24:22,555 INFO toNotifyTaskSize = 0 + +2025-09-24 12:24:22,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:24:32,433 INFO [long-pulling] client count 0 + +2025-09-24 12:24:32,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:24:32,557 INFO toNotifyTaskSize = 0 + +2025-09-24 12:24:32,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:24:42,435 INFO [long-pulling] client count 0 + +2025-09-24 12:24:42,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:24:42,558 INFO toNotifyTaskSize = 0 + +2025-09-24 12:24:42,558 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:24:52,437 INFO [long-pulling] client count 0 + +2025-09-24 12:24:52,503 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:24:52,559 INFO toNotifyTaskSize = 0 + +2025-09-24 12:24:52,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:25:02,438 INFO [long-pulling] client count 0 + +2025-09-24 12:25:02,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:25:02,559 INFO toNotifyTaskSize = 0 + +2025-09-24 12:25:02,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:25:12,438 INFO [long-pulling] client count 0 + +2025-09-24 12:25:12,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:25:12,560 INFO toNotifyTaskSize = 0 + +2025-09-24 12:25:12,560 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:25:22,439 INFO [long-pulling] client count 0 + +2025-09-24 12:25:22,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:25:22,561 INFO toNotifyTaskSize = 0 + +2025-09-24 12:25:22,561 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:25:32,440 INFO [long-pulling] client count 0 + +2025-09-24 12:25:32,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:25:32,561 INFO toNotifyTaskSize = 0 + +2025-09-24 12:25:32,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:25:42,442 INFO [long-pulling] client count 0 + +2025-09-24 12:25:42,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:25:42,562 INFO toNotifyTaskSize = 0 + +2025-09-24 12:25:42,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:25:52,444 INFO [long-pulling] client count 0 + +2025-09-24 12:25:52,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:25:52,562 INFO toNotifyTaskSize = 0 + +2025-09-24 12:25:52,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:26:02,445 INFO [long-pulling] client count 0 + +2025-09-24 12:26:02,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:26:02,563 INFO toNotifyTaskSize = 0 + +2025-09-24 12:26:02,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:26:12,446 INFO [long-pulling] client count 0 + +2025-09-24 12:26:12,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:26:12,564 INFO toNotifyTaskSize = 0 + +2025-09-24 12:26:12,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:26:22,448 INFO [long-pulling] client count 0 + +2025-09-24 12:26:22,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:26:22,565 INFO toNotifyTaskSize = 0 + +2025-09-24 12:26:22,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:26:32,451 INFO [long-pulling] client count 0 + +2025-09-24 12:26:32,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:26:32,568 INFO toNotifyTaskSize = 0 + +2025-09-24 12:26:32,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:26:42,451 INFO [long-pulling] client count 0 + +2025-09-24 12:26:42,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:26:42,569 INFO toNotifyTaskSize = 0 + +2025-09-24 12:26:42,569 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:26:52,453 INFO [long-pulling] client count 0 + +2025-09-24 12:26:52,515 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:26:52,571 INFO toNotifyTaskSize = 0 + +2025-09-24 12:26:52,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:27:02,453 INFO [long-pulling] client count 0 + +2025-09-24 12:27:02,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:27:02,577 INFO toNotifyTaskSize = 0 + +2025-09-24 12:27:02,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:27:12,454 INFO [long-pulling] client count 0 + +2025-09-24 12:27:12,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:27:12,595 INFO toNotifyTaskSize = 0 + +2025-09-24 12:27:12,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:27:22,455 INFO [long-pulling] client count 0 + +2025-09-24 12:27:22,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:27:22,597 INFO toNotifyTaskSize = 0 + +2025-09-24 12:27:22,598 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:27:32,456 INFO [long-pulling] client count 0 + +2025-09-24 12:27:32,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:27:32,600 INFO toNotifyTaskSize = 0 + +2025-09-24 12:27:32,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:27:42,456 INFO [long-pulling] client count 0 + +2025-09-24 12:27:42,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:27:42,602 INFO toNotifyTaskSize = 0 + +2025-09-24 12:27:42,602 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:27:52,457 INFO [long-pulling] client count 0 + +2025-09-24 12:27:52,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:27:52,603 INFO toNotifyTaskSize = 0 + +2025-09-24 12:27:52,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:28:02,458 INFO [long-pulling] client count 0 + +2025-09-24 12:28:02,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:28:02,605 INFO toNotifyTaskSize = 0 + +2025-09-24 12:28:02,605 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:28:12,459 INFO [long-pulling] client count 0 + +2025-09-24 12:28:12,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:28:12,605 INFO toNotifyTaskSize = 0 + +2025-09-24 12:28:12,606 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:28:22,460 INFO [long-pulling] client count 0 + +2025-09-24 12:28:22,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:28:22,607 INFO toNotifyTaskSize = 0 + +2025-09-24 12:28:22,607 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:28:32,461 INFO [long-pulling] client count 0 + +2025-09-24 12:28:32,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:28:32,608 INFO toNotifyTaskSize = 0 + +2025-09-24 12:28:32,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:28:42,463 INFO [long-pulling] client count 0 + +2025-09-24 12:28:42,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:28:42,608 INFO toNotifyTaskSize = 0 + +2025-09-24 12:28:42,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:28:52,463 INFO [long-pulling] client count 0 + +2025-09-24 12:28:52,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:28:52,609 INFO toNotifyTaskSize = 0 + +2025-09-24 12:28:52,609 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:29:02,464 INFO [long-pulling] client count 0 + +2025-09-24 12:29:02,527 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:29:02,610 INFO toNotifyTaskSize = 0 + +2025-09-24 12:29:02,610 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:29:12,464 INFO [long-pulling] client count 0 + +2025-09-24 12:29:12,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:29:12,612 INFO toNotifyTaskSize = 0 + +2025-09-24 12:29:12,612 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:29:22,465 INFO [long-pulling] client count 0 + +2025-09-24 12:29:22,531 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:29:22,614 INFO toNotifyTaskSize = 0 + +2025-09-24 12:29:22,614 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:29:32,466 INFO [long-pulling] client count 0 + +2025-09-24 12:29:32,531 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:29:32,615 INFO toNotifyTaskSize = 0 + +2025-09-24 12:29:32,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:29:42,468 INFO [long-pulling] client count 0 + +2025-09-24 12:29:42,532 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:29:42,615 INFO toNotifyTaskSize = 0 + +2025-09-24 12:29:42,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:29:52,469 INFO [long-pulling] client count 0 + +2025-09-24 12:29:52,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:29:52,616 INFO toNotifyTaskSize = 0 + +2025-09-24 12:29:52,616 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:30:02,471 INFO [long-pulling] client count 0 + +2025-09-24 12:30:02,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:30:02,616 INFO toNotifyTaskSize = 0 + +2025-09-24 12:30:02,616 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:30:12,472 INFO [long-pulling] client count 0 + +2025-09-24 12:30:12,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:30:12,618 INFO toNotifyTaskSize = 0 + +2025-09-24 12:30:12,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:30:22,472 INFO [long-pulling] client count 0 + +2025-09-24 12:30:22,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:30:22,620 INFO toNotifyTaskSize = 0 + +2025-09-24 12:30:22,621 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:30:32,474 INFO [long-pulling] client count 0 + +2025-09-24 12:30:32,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:30:32,621 INFO toNotifyTaskSize = 0 + +2025-09-24 12:30:32,621 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:30:42,474 INFO [long-pulling] client count 0 + +2025-09-24 12:30:42,537 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:30:42,622 INFO toNotifyTaskSize = 0 + +2025-09-24 12:30:42,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:30:52,475 INFO [long-pulling] client count 0 + +2025-09-24 12:30:52,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:30:52,622 INFO toNotifyTaskSize = 0 + +2025-09-24 12:30:52,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:31:02,477 INFO [long-pulling] client count 0 + +2025-09-24 12:31:02,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:31:02,623 INFO toNotifyTaskSize = 0 + +2025-09-24 12:31:02,623 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:31:12,479 INFO [long-pulling] client count 0 + +2025-09-24 12:31:12,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:31:12,624 INFO toNotifyTaskSize = 0 + +2025-09-24 12:31:12,624 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:31:22,480 INFO [long-pulling] client count 0 + +2025-09-24 12:31:22,541 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:31:22,624 INFO toNotifyTaskSize = 0 + +2025-09-24 12:31:22,624 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:31:32,483 INFO [long-pulling] client count 0 + +2025-09-24 12:31:32,543 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:31:32,625 INFO toNotifyTaskSize = 0 + +2025-09-24 12:31:32,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:31:42,485 INFO [long-pulling] client count 0 + +2025-09-24 12:31:42,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:31:42,626 INFO toNotifyTaskSize = 0 + +2025-09-24 12:31:42,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:31:52,487 INFO [long-pulling] client count 0 + +2025-09-24 12:31:52,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:31:52,626 INFO toNotifyTaskSize = 0 + +2025-09-24 12:31:52,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:32:02,489 INFO [long-pulling] client count 0 + +2025-09-24 12:32:02,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:32:02,627 INFO toNotifyTaskSize = 0 + +2025-09-24 12:32:02,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:32:12,491 INFO [long-pulling] client count 0 + +2025-09-24 12:32:12,548 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:32:12,627 INFO toNotifyTaskSize = 0 + +2025-09-24 12:32:12,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:32:22,491 INFO [long-pulling] client count 0 + +2025-09-24 12:32:22,549 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:32:22,627 INFO toNotifyTaskSize = 0 + +2025-09-24 12:32:22,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:32:32,494 INFO [long-pulling] client count 0 + +2025-09-24 12:32:32,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:32:32,628 INFO toNotifyTaskSize = 0 + +2025-09-24 12:32:32,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:32:42,495 INFO [long-pulling] client count 0 + +2025-09-24 12:32:42,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:32:42,629 INFO toNotifyTaskSize = 0 + +2025-09-24 12:32:42,629 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:32:52,495 INFO [long-pulling] client count 0 + +2025-09-24 12:32:52,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:32:52,629 INFO toNotifyTaskSize = 0 + +2025-09-24 12:32:52,630 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:33:02,495 INFO [long-pulling] client count 0 + +2025-09-24 12:33:02,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:33:02,631 INFO toNotifyTaskSize = 0 + +2025-09-24 12:33:02,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:33:12,496 INFO [long-pulling] client count 0 + +2025-09-24 12:33:12,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:33:12,631 INFO toNotifyTaskSize = 0 + +2025-09-24 12:33:12,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:33:22,497 INFO [long-pulling] client count 0 + +2025-09-24 12:33:22,557 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:33:22,633 INFO toNotifyTaskSize = 0 + +2025-09-24 12:33:22,633 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:33:32,499 INFO [long-pulling] client count 0 + +2025-09-24 12:33:32,560 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:33:32,636 INFO toNotifyTaskSize = 0 + +2025-09-24 12:33:32,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:33:42,499 INFO [long-pulling] client count 0 + +2025-09-24 12:33:42,560 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:33:42,636 INFO toNotifyTaskSize = 0 + +2025-09-24 12:33:42,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:33:52,500 INFO [long-pulling] client count 0 + +2025-09-24 12:33:52,560 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:33:52,637 INFO toNotifyTaskSize = 0 + +2025-09-24 12:33:52,637 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:34:02,502 INFO [long-pulling] client count 0 + +2025-09-24 12:34:02,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:34:02,637 INFO toNotifyTaskSize = 0 + +2025-09-24 12:34:02,637 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:34:12,503 INFO [long-pulling] client count 0 + +2025-09-24 12:34:12,563 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:34:12,638 INFO toNotifyTaskSize = 0 + +2025-09-24 12:34:12,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:34:22,503 INFO [long-pulling] client count 0 + +2025-09-24 12:34:22,564 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:34:22,638 INFO toNotifyTaskSize = 0 + +2025-09-24 12:34:22,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:34:32,504 INFO [long-pulling] client count 0 + +2025-09-24 12:34:32,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:34:32,638 INFO toNotifyTaskSize = 0 + +2025-09-24 12:34:32,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:34:42,506 INFO [long-pulling] client count 0 + +2025-09-24 12:34:42,566 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:34:42,639 INFO toNotifyTaskSize = 0 + +2025-09-24 12:34:42,639 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:34:52,508 INFO [long-pulling] client count 0 + +2025-09-24 12:34:52,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:34:52,640 INFO toNotifyTaskSize = 0 + +2025-09-24 12:34:52,640 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:35:02,508 INFO [long-pulling] client count 0 + +2025-09-24 12:35:02,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:35:02,642 INFO toNotifyTaskSize = 0 + +2025-09-24 12:35:02,642 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:35:12,508 INFO [long-pulling] client count 0 + +2025-09-24 12:35:12,569 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:35:12,643 INFO toNotifyTaskSize = 0 + +2025-09-24 12:35:12,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:35:22,510 INFO [long-pulling] client count 0 + +2025-09-24 12:35:22,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:35:22,643 INFO toNotifyTaskSize = 0 + +2025-09-24 12:35:22,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:35:32,515 INFO [long-pulling] client count 0 + +2025-09-24 12:35:32,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:35:32,643 INFO toNotifyTaskSize = 0 + +2025-09-24 12:35:32,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:35:42,516 INFO [long-pulling] client count 0 + +2025-09-24 12:35:42,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:35:42,645 INFO toNotifyTaskSize = 0 + +2025-09-24 12:35:42,645 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:35:52,516 INFO [long-pulling] client count 0 + +2025-09-24 12:35:52,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:35:52,646 INFO toNotifyTaskSize = 0 + +2025-09-24 12:35:52,646 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:36:02,517 INFO [long-pulling] client count 0 + +2025-09-24 12:36:02,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:36:02,646 INFO toNotifyTaskSize = 0 + +2025-09-24 12:36:02,646 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:36:12,519 INFO [long-pulling] client count 0 + +2025-09-24 12:36:12,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:36:12,646 INFO toNotifyTaskSize = 0 + +2025-09-24 12:36:12,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:36:22,519 INFO [long-pulling] client count 0 + +2025-09-24 12:36:22,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:36:22,647 INFO toNotifyTaskSize = 0 + +2025-09-24 12:36:22,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:36:32,520 INFO [long-pulling] client count 0 + +2025-09-24 12:36:32,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:36:32,647 INFO toNotifyTaskSize = 0 + +2025-09-24 12:36:32,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:36:42,521 INFO [long-pulling] client count 0 + +2025-09-24 12:36:42,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:36:42,648 INFO toNotifyTaskSize = 0 + +2025-09-24 12:36:42,648 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:36:52,521 INFO [long-pulling] client count 0 + +2025-09-24 12:36:52,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:36:52,648 INFO toNotifyTaskSize = 0 + +2025-09-24 12:36:52,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:37:02,521 INFO [long-pulling] client count 0 + +2025-09-24 12:37:02,579 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:37:02,649 INFO toNotifyTaskSize = 0 + +2025-09-24 12:37:02,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:37:12,522 INFO [long-pulling] client count 0 + +2025-09-24 12:37:12,580 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:37:12,649 INFO toNotifyTaskSize = 0 + +2025-09-24 12:37:12,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:37:22,523 INFO [long-pulling] client count 0 + +2025-09-24 12:37:22,581 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:37:22,650 INFO toNotifyTaskSize = 0 + +2025-09-24 12:37:22,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:37:32,524 INFO [long-pulling] client count 0 + +2025-09-24 12:37:32,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:37:32,651 INFO toNotifyTaskSize = 0 + +2025-09-24 12:37:32,651 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:37:42,525 INFO [long-pulling] client count 0 + +2025-09-24 12:37:42,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:37:42,651 INFO toNotifyTaskSize = 0 + +2025-09-24 12:37:42,651 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:37:52,526 INFO [long-pulling] client count 0 + +2025-09-24 12:37:52,584 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:37:52,651 INFO toNotifyTaskSize = 0 + +2025-09-24 12:37:52,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:38:02,527 INFO [long-pulling] client count 0 + +2025-09-24 12:38:02,584 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:38:02,654 INFO toNotifyTaskSize = 0 + +2025-09-24 12:38:02,654 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:38:12,527 INFO [long-pulling] client count 0 + +2025-09-24 12:38:12,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:38:12,654 INFO toNotifyTaskSize = 0 + +2025-09-24 12:38:12,654 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:38:22,529 INFO [long-pulling] client count 0 + +2025-09-24 12:38:22,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:38:22,654 INFO toNotifyTaskSize = 0 + +2025-09-24 12:38:22,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:38:32,530 INFO [long-pulling] client count 0 + +2025-09-24 12:38:32,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:38:32,655 INFO toNotifyTaskSize = 0 + +2025-09-24 12:38:32,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:38:42,531 INFO [long-pulling] client count 0 + +2025-09-24 12:38:42,587 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:38:42,655 INFO toNotifyTaskSize = 0 + +2025-09-24 12:38:42,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:38:52,532 INFO [long-pulling] client count 0 + +2025-09-24 12:38:52,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:38:52,656 INFO toNotifyTaskSize = 0 + +2025-09-24 12:38:52,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:39:02,533 INFO [long-pulling] client count 0 + +2025-09-24 12:39:02,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:39:02,656 INFO toNotifyTaskSize = 0 + +2025-09-24 12:39:02,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:39:12,534 INFO [long-pulling] client count 0 + +2025-09-24 12:39:12,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:39:12,661 INFO toNotifyTaskSize = 0 + +2025-09-24 12:39:12,661 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:39:22,535 INFO [long-pulling] client count 0 + +2025-09-24 12:39:22,592 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:39:22,663 INFO toNotifyTaskSize = 0 + +2025-09-24 12:39:22,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:39:32,536 INFO [long-pulling] client count 0 + +2025-09-24 12:39:32,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:39:32,663 INFO toNotifyTaskSize = 0 + +2025-09-24 12:39:32,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:39:42,536 INFO [long-pulling] client count 0 + +2025-09-24 12:39:42,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:39:42,664 INFO toNotifyTaskSize = 0 + +2025-09-24 12:39:42,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:39:52,537 INFO [long-pulling] client count 0 + +2025-09-24 12:39:52,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:39:52,664 INFO toNotifyTaskSize = 0 + +2025-09-24 12:39:52,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:40:02,538 INFO [long-pulling] client count 0 + +2025-09-24 12:40:02,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:40:02,665 INFO toNotifyTaskSize = 0 + +2025-09-24 12:40:02,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:40:12,539 INFO [long-pulling] client count 0 + +2025-09-24 12:40:12,598 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:40:12,666 INFO toNotifyTaskSize = 0 + +2025-09-24 12:40:12,666 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:40:22,540 INFO [long-pulling] client count 0 + +2025-09-24 12:40:22,598 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:40:22,666 INFO toNotifyTaskSize = 0 + +2025-09-24 12:40:22,666 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:40:32,541 INFO [long-pulling] client count 0 + +2025-09-24 12:40:32,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:40:32,666 INFO toNotifyTaskSize = 0 + +2025-09-24 12:40:32,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:40:42,542 INFO [long-pulling] client count 0 + +2025-09-24 12:40:42,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:40:42,667 INFO toNotifyTaskSize = 0 + +2025-09-24 12:40:42,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:40:52,543 INFO [long-pulling] client count 0 + +2025-09-24 12:40:52,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:40:52,667 INFO toNotifyTaskSize = 0 + +2025-09-24 12:40:52,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:41:02,544 INFO [long-pulling] client count 0 + +2025-09-24 12:41:02,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:41:02,667 INFO toNotifyTaskSize = 0 + +2025-09-24 12:41:02,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:41:12,546 INFO [long-pulling] client count 0 + +2025-09-24 12:41:12,605 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:41:12,668 INFO toNotifyTaskSize = 0 + +2025-09-24 12:41:12,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:41:22,547 INFO [long-pulling] client count 0 + +2025-09-24 12:41:22,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:41:22,669 INFO toNotifyTaskSize = 0 + +2025-09-24 12:41:22,669 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:41:32,548 INFO [long-pulling] client count 0 + +2025-09-24 12:41:32,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:41:32,671 INFO toNotifyTaskSize = 0 + +2025-09-24 12:41:32,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:41:42,550 INFO [long-pulling] client count 0 + +2025-09-24 12:41:42,608 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:41:42,671 INFO toNotifyTaskSize = 0 + +2025-09-24 12:41:42,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:41:52,550 INFO [long-pulling] client count 0 + +2025-09-24 12:41:52,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:41:52,671 INFO toNotifyTaskSize = 0 + +2025-09-24 12:41:52,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:42:02,551 INFO [long-pulling] client count 0 + +2025-09-24 12:42:02,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:42:02,672 INFO toNotifyTaskSize = 0 + +2025-09-24 12:42:02,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:42:12,554 INFO [long-pulling] client count 0 + +2025-09-24 12:42:12,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:42:12,672 INFO toNotifyTaskSize = 0 + +2025-09-24 12:42:12,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:42:22,555 INFO [long-pulling] client count 0 + +2025-09-24 12:42:22,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:42:22,673 INFO toNotifyTaskSize = 0 + +2025-09-24 12:42:22,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:42:32,556 INFO [long-pulling] client count 0 + +2025-09-24 12:42:32,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:42:32,673 INFO toNotifyTaskSize = 0 + +2025-09-24 12:42:32,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:42:42,557 INFO [long-pulling] client count 0 + +2025-09-24 12:42:42,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:42:42,674 INFO toNotifyTaskSize = 0 + +2025-09-24 12:42:42,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:42:52,558 INFO [long-pulling] client count 0 + +2025-09-24 12:42:52,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:42:52,674 INFO toNotifyTaskSize = 0 + +2025-09-24 12:42:52,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:43:02,558 INFO [long-pulling] client count 0 + +2025-09-24 12:43:02,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:43:02,675 INFO toNotifyTaskSize = 0 + +2025-09-24 12:43:02,675 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:43:12,559 INFO [long-pulling] client count 0 + +2025-09-24 12:43:12,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:43:12,675 INFO toNotifyTaskSize = 0 + +2025-09-24 12:43:12,676 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:43:22,561 INFO [long-pulling] client count 0 + +2025-09-24 12:43:22,618 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:43:22,676 INFO toNotifyTaskSize = 0 + +2025-09-24 12:43:22,676 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:43:32,562 INFO [long-pulling] client count 0 + +2025-09-24 12:43:32,620 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:43:32,676 INFO toNotifyTaskSize = 0 + +2025-09-24 12:43:32,676 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:43:42,563 INFO [long-pulling] client count 0 + +2025-09-24 12:43:42,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:43:42,677 INFO toNotifyTaskSize = 0 + +2025-09-24 12:43:42,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:43:52,565 INFO [long-pulling] client count 0 + +2025-09-24 12:43:52,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:43:52,677 INFO toNotifyTaskSize = 0 + +2025-09-24 12:43:52,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:44:02,566 INFO [long-pulling] client count 0 + +2025-09-24 12:44:02,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:44:02,678 INFO toNotifyTaskSize = 0 + +2025-09-24 12:44:02,678 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:44:12,567 INFO [long-pulling] client count 0 + +2025-09-24 12:44:12,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:44:12,679 INFO toNotifyTaskSize = 0 + +2025-09-24 12:44:12,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:44:22,568 INFO [long-pulling] client count 0 + +2025-09-24 12:44:22,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:44:22,679 INFO toNotifyTaskSize = 0 + +2025-09-24 12:44:22,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:44:32,568 INFO [long-pulling] client count 0 + +2025-09-24 12:44:32,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:44:32,680 INFO toNotifyTaskSize = 0 + +2025-09-24 12:44:32,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:44:42,569 INFO [long-pulling] client count 0 + +2025-09-24 12:44:42,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:44:42,680 INFO toNotifyTaskSize = 0 + +2025-09-24 12:44:42,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:44:52,570 INFO [long-pulling] client count 0 + +2025-09-24 12:44:52,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:44:52,681 INFO toNotifyTaskSize = 0 + +2025-09-24 12:44:52,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:45:02,570 INFO [long-pulling] client count 0 + +2025-09-24 12:45:02,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:45:02,681 INFO toNotifyTaskSize = 0 + +2025-09-24 12:45:02,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:45:12,570 INFO [long-pulling] client count 0 + +2025-09-24 12:45:12,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:45:12,682 INFO toNotifyTaskSize = 0 + +2025-09-24 12:45:12,682 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:45:22,571 INFO [long-pulling] client count 0 + +2025-09-24 12:45:22,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:45:22,684 INFO toNotifyTaskSize = 0 + +2025-09-24 12:45:22,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:45:32,572 INFO [long-pulling] client count 0 + +2025-09-24 12:45:32,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:45:32,684 INFO toNotifyTaskSize = 0 + +2025-09-24 12:45:32,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:45:42,572 INFO [long-pulling] client count 0 + +2025-09-24 12:45:42,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:45:42,686 INFO toNotifyTaskSize = 0 + +2025-09-24 12:45:42,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:45:52,572 INFO [long-pulling] client count 0 + +2025-09-24 12:45:52,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:45:52,689 INFO toNotifyTaskSize = 0 + +2025-09-24 12:45:52,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:46:02,573 INFO [long-pulling] client count 0 + +2025-09-24 12:46:02,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:46:02,690 INFO toNotifyTaskSize = 0 + +2025-09-24 12:46:02,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:46:12,574 INFO [long-pulling] client count 0 + +2025-09-24 12:46:12,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:46:12,692 INFO toNotifyTaskSize = 0 + +2025-09-24 12:46:12,693 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:46:22,574 INFO [long-pulling] client count 0 + +2025-09-24 12:46:22,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:46:22,693 INFO toNotifyTaskSize = 0 + +2025-09-24 12:46:22,693 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:46:32,575 INFO [long-pulling] client count 0 + +2025-09-24 12:46:32,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:46:32,695 INFO toNotifyTaskSize = 0 + +2025-09-24 12:46:32,695 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:46:42,575 INFO [long-pulling] client count 0 + +2025-09-24 12:46:42,633 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:46:42,696 INFO toNotifyTaskSize = 0 + +2025-09-24 12:46:42,696 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:46:52,576 INFO [long-pulling] client count 0 + +2025-09-24 12:46:52,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:46:52,697 INFO toNotifyTaskSize = 0 + +2025-09-24 12:46:52,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:47:02,577 INFO [long-pulling] client count 0 + +2025-09-24 12:47:02,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:47:02,698 INFO toNotifyTaskSize = 0 + +2025-09-24 12:47:02,698 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:47:12,577 INFO [long-pulling] client count 0 + +2025-09-24 12:47:12,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:47:12,700 INFO toNotifyTaskSize = 0 + +2025-09-24 12:47:12,700 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:47:22,577 INFO [long-pulling] client count 0 + +2025-09-24 12:47:22,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:47:22,701 INFO toNotifyTaskSize = 0 + +2025-09-24 12:47:22,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:47:32,578 INFO [long-pulling] client count 0 + +2025-09-24 12:47:32,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:47:32,702 INFO toNotifyTaskSize = 0 + +2025-09-24 12:47:32,702 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:47:42,579 INFO [long-pulling] client count 0 + +2025-09-24 12:47:42,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:47:42,702 INFO toNotifyTaskSize = 0 + +2025-09-24 12:47:42,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:47:52,579 INFO [long-pulling] client count 0 + +2025-09-24 12:47:52,637 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:47:52,703 INFO toNotifyTaskSize = 0 + +2025-09-24 12:47:52,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:48:02,580 INFO [long-pulling] client count 0 + +2025-09-24 12:48:02,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:48:02,704 INFO toNotifyTaskSize = 0 + +2025-09-24 12:48:02,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:48:12,581 INFO [long-pulling] client count 0 + +2025-09-24 12:48:12,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:48:12,705 INFO toNotifyTaskSize = 0 + +2025-09-24 12:48:12,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:48:22,581 INFO [long-pulling] client count 0 + +2025-09-24 12:48:22,640 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:48:22,706 INFO toNotifyTaskSize = 0 + +2025-09-24 12:48:22,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:48:32,583 INFO [long-pulling] client count 0 + +2025-09-24 12:48:32,641 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:48:32,708 INFO toNotifyTaskSize = 0 + +2025-09-24 12:48:32,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:48:42,584 INFO [long-pulling] client count 0 + +2025-09-24 12:48:42,641 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:48:42,708 INFO toNotifyTaskSize = 0 + +2025-09-24 12:48:42,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:48:52,587 INFO [long-pulling] client count 0 + +2025-09-24 12:48:52,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:48:52,710 INFO toNotifyTaskSize = 0 + +2025-09-24 12:48:52,710 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:49:02,587 INFO [long-pulling] client count 0 + +2025-09-24 12:49:02,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:49:02,710 INFO toNotifyTaskSize = 0 + +2025-09-24 12:49:02,710 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:49:12,589 INFO [long-pulling] client count 0 + +2025-09-24 12:49:12,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:49:12,711 INFO toNotifyTaskSize = 0 + +2025-09-24 12:49:12,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:49:22,591 INFO [long-pulling] client count 0 + +2025-09-24 12:49:22,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:49:22,712 INFO toNotifyTaskSize = 0 + +2025-09-24 12:49:22,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:49:32,592 INFO [long-pulling] client count 0 + +2025-09-24 12:49:32,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:49:32,713 INFO toNotifyTaskSize = 0 + +2025-09-24 12:49:32,713 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:49:42,592 INFO [long-pulling] client count 0 + +2025-09-24 12:49:42,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:49:42,713 INFO toNotifyTaskSize = 0 + +2025-09-24 12:49:42,713 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:49:52,593 INFO [long-pulling] client count 0 + +2025-09-24 12:49:52,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:49:52,714 INFO toNotifyTaskSize = 0 + +2025-09-24 12:49:52,714 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:50:02,595 INFO [long-pulling] client count 0 + +2025-09-24 12:50:02,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:50:02,715 INFO toNotifyTaskSize = 0 + +2025-09-24 12:50:02,715 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:50:12,595 INFO [long-pulling] client count 0 + +2025-09-24 12:50:12,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:50:12,716 INFO toNotifyTaskSize = 0 + +2025-09-24 12:50:12,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:50:22,597 INFO [long-pulling] client count 0 + +2025-09-24 12:50:22,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:50:22,716 INFO toNotifyTaskSize = 0 + +2025-09-24 12:50:22,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:50:32,598 INFO [long-pulling] client count 0 + +2025-09-24 12:50:32,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:50:32,717 INFO toNotifyTaskSize = 0 + +2025-09-24 12:50:32,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:50:42,600 INFO [long-pulling] client count 0 + +2025-09-24 12:50:42,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:50:42,718 INFO toNotifyTaskSize = 0 + +2025-09-24 12:50:42,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:50:52,601 INFO [long-pulling] client count 0 + +2025-09-24 12:50:52,648 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:50:52,719 INFO toNotifyTaskSize = 0 + +2025-09-24 12:50:52,719 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:51:02,602 INFO [long-pulling] client count 0 + +2025-09-24 12:51:02,648 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:51:02,720 INFO toNotifyTaskSize = 0 + +2025-09-24 12:51:02,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:51:12,603 INFO [long-pulling] client count 0 + +2025-09-24 12:51:12,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:51:12,721 INFO toNotifyTaskSize = 0 + +2025-09-24 12:51:12,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:51:22,604 INFO [long-pulling] client count 0 + +2025-09-24 12:51:22,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:51:22,723 INFO toNotifyTaskSize = 0 + +2025-09-24 12:51:22,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:51:32,607 INFO [long-pulling] client count 0 + +2025-09-24 12:51:32,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:51:32,723 INFO toNotifyTaskSize = 0 + +2025-09-24 12:51:32,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:51:42,608 INFO [long-pulling] client count 0 + +2025-09-24 12:51:42,651 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:51:42,725 INFO toNotifyTaskSize = 0 + +2025-09-24 12:51:42,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:51:52,609 INFO [long-pulling] client count 0 + +2025-09-24 12:51:52,651 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:51:52,726 INFO toNotifyTaskSize = 0 + +2025-09-24 12:51:52,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:52:02,610 INFO [long-pulling] client count 0 + +2025-09-24 12:52:02,652 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:52:02,726 INFO toNotifyTaskSize = 0 + +2025-09-24 12:52:02,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:52:12,611 INFO [long-pulling] client count 0 + +2025-09-24 12:52:12,652 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:52:12,727 INFO toNotifyTaskSize = 0 + +2025-09-24 12:52:12,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:52:22,612 INFO [long-pulling] client count 0 + +2025-09-24 12:52:22,653 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:52:22,728 INFO toNotifyTaskSize = 0 + +2025-09-24 12:52:22,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:52:32,613 INFO [long-pulling] client count 0 + +2025-09-24 12:52:32,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:52:32,729 INFO toNotifyTaskSize = 0 + +2025-09-24 12:52:32,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:52:42,613 INFO [long-pulling] client count 0 + +2025-09-24 12:52:42,655 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:52:42,730 INFO toNotifyTaskSize = 0 + +2025-09-24 12:52:42,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:52:52,614 INFO [long-pulling] client count 0 + +2025-09-24 12:52:52,656 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:52:52,730 INFO toNotifyTaskSize = 0 + +2025-09-24 12:52:52,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:53:02,616 INFO [long-pulling] client count 0 + +2025-09-24 12:53:02,656 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:53:02,731 INFO toNotifyTaskSize = 0 + +2025-09-24 12:53:02,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:53:12,618 INFO [long-pulling] client count 0 + +2025-09-24 12:53:12,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:53:12,732 INFO toNotifyTaskSize = 0 + +2025-09-24 12:53:12,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:53:22,619 INFO [long-pulling] client count 0 + +2025-09-24 12:53:22,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:53:22,733 INFO toNotifyTaskSize = 0 + +2025-09-24 12:53:22,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:53:32,620 INFO [long-pulling] client count 0 + +2025-09-24 12:53:32,658 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:53:32,734 INFO toNotifyTaskSize = 0 + +2025-09-24 12:53:32,734 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:53:42,620 INFO [long-pulling] client count 0 + +2025-09-24 12:53:42,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:53:42,736 INFO toNotifyTaskSize = 0 + +2025-09-24 12:53:42,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:53:52,621 INFO [long-pulling] client count 0 + +2025-09-24 12:53:52,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:53:52,739 INFO toNotifyTaskSize = 0 + +2025-09-24 12:53:52,739 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:54:02,622 INFO [long-pulling] client count 0 + +2025-09-24 12:54:02,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:54:02,741 INFO toNotifyTaskSize = 0 + +2025-09-24 12:54:02,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:54:12,623 INFO [long-pulling] client count 0 + +2025-09-24 12:54:12,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:54:12,744 INFO toNotifyTaskSize = 0 + +2025-09-24 12:54:12,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:54:22,624 INFO [long-pulling] client count 0 + +2025-09-24 12:54:22,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:54:22,746 INFO toNotifyTaskSize = 0 + +2025-09-24 12:54:22,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:54:32,625 INFO [long-pulling] client count 0 + +2025-09-24 12:54:32,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:54:32,748 INFO toNotifyTaskSize = 0 + +2025-09-24 12:54:32,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:54:42,626 INFO [long-pulling] client count 0 + +2025-09-24 12:54:42,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:54:42,750 INFO toNotifyTaskSize = 0 + +2025-09-24 12:54:42,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:54:52,626 INFO [long-pulling] client count 0 + +2025-09-24 12:54:52,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:54:52,752 INFO toNotifyTaskSize = 0 + +2025-09-24 12:54:52,752 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:55:02,628 INFO [long-pulling] client count 0 + +2025-09-24 12:55:02,664 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:55:02,755 INFO toNotifyTaskSize = 0 + +2025-09-24 12:55:02,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:55:12,629 INFO [long-pulling] client count 0 + +2025-09-24 12:55:12,664 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:55:12,757 INFO toNotifyTaskSize = 0 + +2025-09-24 12:55:12,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:55:22,629 INFO [long-pulling] client count 0 + +2025-09-24 12:55:22,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:55:22,760 INFO toNotifyTaskSize = 0 + +2025-09-24 12:55:22,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:55:32,631 INFO [long-pulling] client count 0 + +2025-09-24 12:55:32,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:55:32,761 INFO toNotifyTaskSize = 0 + +2025-09-24 12:55:32,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:55:42,631 INFO [long-pulling] client count 0 + +2025-09-24 12:55:42,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:55:42,762 INFO toNotifyTaskSize = 0 + +2025-09-24 12:55:42,762 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:55:52,632 INFO [long-pulling] client count 0 + +2025-09-24 12:55:52,666 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:55:52,763 INFO toNotifyTaskSize = 0 + +2025-09-24 12:55:52,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:56:02,633 INFO [long-pulling] client count 0 + +2025-09-24 12:56:02,666 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:56:02,764 INFO toNotifyTaskSize = 0 + +2025-09-24 12:56:02,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:56:12,633 INFO [long-pulling] client count 0 + +2025-09-24 12:56:12,666 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:56:12,764 INFO toNotifyTaskSize = 0 + +2025-09-24 12:56:12,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:56:22,635 INFO [long-pulling] client count 0 + +2025-09-24 12:56:22,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:56:22,766 INFO toNotifyTaskSize = 0 + +2025-09-24 12:56:22,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:56:32,635 INFO [long-pulling] client count 0 + +2025-09-24 12:56:32,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:56:32,766 INFO toNotifyTaskSize = 0 + +2025-09-24 12:56:32,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:56:42,636 INFO [long-pulling] client count 0 + +2025-09-24 12:56:42,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:56:42,767 INFO toNotifyTaskSize = 0 + +2025-09-24 12:56:42,767 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:56:52,636 INFO [long-pulling] client count 0 + +2025-09-24 12:56:52,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:56:52,768 INFO toNotifyTaskSize = 0 + +2025-09-24 12:56:52,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:57:02,637 INFO [long-pulling] client count 0 + +2025-09-24 12:57:02,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:57:02,769 INFO toNotifyTaskSize = 0 + +2025-09-24 12:57:02,769 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:57:12,639 INFO [long-pulling] client count 0 + +2025-09-24 12:57:12,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:57:12,770 INFO toNotifyTaskSize = 0 + +2025-09-24 12:57:12,770 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:57:22,639 INFO [long-pulling] client count 0 + +2025-09-24 12:57:22,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:57:22,770 INFO toNotifyTaskSize = 0 + +2025-09-24 12:57:22,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:57:32,640 INFO [long-pulling] client count 0 + +2025-09-24 12:57:32,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:57:32,773 INFO toNotifyTaskSize = 0 + +2025-09-24 12:57:32,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:57:42,640 INFO [long-pulling] client count 0 + +2025-09-24 12:57:42,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:57:42,774 INFO toNotifyTaskSize = 0 + +2025-09-24 12:57:42,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:57:52,641 INFO [long-pulling] client count 0 + +2025-09-24 12:57:52,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:57:52,774 INFO toNotifyTaskSize = 0 + +2025-09-24 12:57:52,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:58:02,642 INFO [long-pulling] client count 0 + +2025-09-24 12:58:02,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:58:02,776 INFO toNotifyTaskSize = 0 + +2025-09-24 12:58:02,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:58:12,642 INFO [long-pulling] client count 0 + +2025-09-24 12:58:12,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:58:12,777 INFO toNotifyTaskSize = 0 + +2025-09-24 12:58:12,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:58:22,642 INFO [long-pulling] client count 0 + +2025-09-24 12:58:22,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:58:22,777 INFO toNotifyTaskSize = 0 + +2025-09-24 12:58:22,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:58:32,646 INFO [long-pulling] client count 0 + +2025-09-24 12:58:32,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:58:32,778 INFO toNotifyTaskSize = 0 + +2025-09-24 12:58:32,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:58:42,647 INFO [long-pulling] client count 0 + +2025-09-24 12:58:42,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:58:42,779 INFO toNotifyTaskSize = 0 + +2025-09-24 12:58:42,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:58:52,648 INFO [long-pulling] client count 0 + +2025-09-24 12:58:52,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:58:52,781 INFO toNotifyTaskSize = 0 + +2025-09-24 12:58:52,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:59:02,648 INFO [long-pulling] client count 0 + +2025-09-24 12:59:02,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:59:02,781 INFO toNotifyTaskSize = 0 + +2025-09-24 12:59:02,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:59:12,649 INFO [long-pulling] client count 0 + +2025-09-24 12:59:12,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:59:12,782 INFO toNotifyTaskSize = 0 + +2025-09-24 12:59:12,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:59:22,649 INFO [long-pulling] client count 0 + +2025-09-24 12:59:22,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:59:22,783 INFO toNotifyTaskSize = 0 + +2025-09-24 12:59:22,783 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:59:32,650 INFO [long-pulling] client count 0 + +2025-09-24 12:59:32,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:59:32,785 INFO toNotifyTaskSize = 0 + +2025-09-24 12:59:32,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:59:42,652 INFO [long-pulling] client count 0 + +2025-09-24 12:59:42,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:59:42,786 INFO toNotifyTaskSize = 0 + +2025-09-24 12:59:42,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 12:59:52,652 INFO [long-pulling] client count 0 + +2025-09-24 12:59:52,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 12:59:52,787 INFO toNotifyTaskSize = 0 + +2025-09-24 12:59:52,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:00:02,652 INFO [long-pulling] client count 0 + +2025-09-24 13:00:02,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:00:02,789 INFO toNotifyTaskSize = 0 + +2025-09-24 13:00:02,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:00:12,653 INFO [long-pulling] client count 0 + +2025-09-24 13:00:12,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:00:12,792 INFO toNotifyTaskSize = 0 + +2025-09-24 13:00:12,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:00:22,653 INFO [long-pulling] client count 0 + +2025-09-24 13:00:22,691 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:00:22,794 INFO toNotifyTaskSize = 0 + +2025-09-24 13:00:22,794 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:00:32,654 INFO [long-pulling] client count 0 + +2025-09-24 13:00:32,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:00:32,796 INFO toNotifyTaskSize = 0 + +2025-09-24 13:00:32,797 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:00:42,654 INFO [long-pulling] client count 0 + +2025-09-24 13:00:42,693 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:00:42,799 INFO toNotifyTaskSize = 0 + +2025-09-24 13:00:42,799 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:00:52,655 INFO [long-pulling] client count 0 + +2025-09-24 13:00:52,693 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:00:52,800 INFO toNotifyTaskSize = 0 + +2025-09-24 13:00:52,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:01:02,656 INFO [long-pulling] client count 0 + +2025-09-24 13:01:02,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:01:02,803 INFO toNotifyTaskSize = 0 + +2025-09-24 13:01:02,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:01:12,656 INFO [long-pulling] client count 0 + +2025-09-24 13:01:12,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:01:12,803 INFO toNotifyTaskSize = 0 + +2025-09-24 13:01:12,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:01:22,657 INFO [long-pulling] client count 0 + +2025-09-24 13:01:22,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:01:22,804 INFO toNotifyTaskSize = 0 + +2025-09-24 13:01:22,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:01:32,657 INFO [long-pulling] client count 0 + +2025-09-24 13:01:32,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:01:32,805 INFO toNotifyTaskSize = 0 + +2025-09-24 13:01:32,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:01:42,658 INFO [long-pulling] client count 0 + +2025-09-24 13:01:42,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:01:42,805 INFO toNotifyTaskSize = 0 + +2025-09-24 13:01:42,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:01:52,658 INFO [long-pulling] client count 0 + +2025-09-24 13:01:52,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:01:52,807 INFO toNotifyTaskSize = 0 + +2025-09-24 13:01:52,808 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:02:02,660 INFO [long-pulling] client count 0 + +2025-09-24 13:02:02,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:02:02,809 INFO toNotifyTaskSize = 0 + +2025-09-24 13:02:02,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:02:12,662 INFO [long-pulling] client count 0 + +2025-09-24 13:02:12,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:02:12,811 INFO toNotifyTaskSize = 0 + +2025-09-24 13:02:12,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:02:22,663 INFO [long-pulling] client count 0 + +2025-09-24 13:02:22,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:02:22,813 INFO toNotifyTaskSize = 0 + +2025-09-24 13:02:22,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:02:32,664 INFO [long-pulling] client count 0 + +2025-09-24 13:02:32,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:02:32,814 INFO toNotifyTaskSize = 0 + +2025-09-24 13:02:32,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:02:42,665 INFO [long-pulling] client count 0 + +2025-09-24 13:02:42,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:02:42,815 INFO toNotifyTaskSize = 0 + +2025-09-24 13:02:42,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:02:52,665 INFO [long-pulling] client count 0 + +2025-09-24 13:02:52,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:02:52,816 INFO toNotifyTaskSize = 0 + +2025-09-24 13:02:52,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:03:02,666 INFO [long-pulling] client count 0 + +2025-09-24 13:03:02,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:03:02,817 INFO toNotifyTaskSize = 0 + +2025-09-24 13:03:02,817 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:03:12,667 INFO [long-pulling] client count 0 + +2025-09-24 13:03:12,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:03:12,819 INFO toNotifyTaskSize = 0 + +2025-09-24 13:03:12,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:03:22,668 INFO [long-pulling] client count 0 + +2025-09-24 13:03:22,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:03:22,819 INFO toNotifyTaskSize = 0 + +2025-09-24 13:03:22,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:03:32,669 INFO [long-pulling] client count 0 + +2025-09-24 13:03:32,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:03:32,820 INFO toNotifyTaskSize = 0 + +2025-09-24 13:03:32,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:03:42,670 INFO [long-pulling] client count 0 + +2025-09-24 13:03:42,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:03:42,820 INFO toNotifyTaskSize = 0 + +2025-09-24 13:03:42,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:03:52,670 INFO [long-pulling] client count 0 + +2025-09-24 13:03:52,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:03:52,821 INFO toNotifyTaskSize = 0 + +2025-09-24 13:03:52,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:04:02,672 INFO [long-pulling] client count 0 + +2025-09-24 13:04:02,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:04:02,822 INFO toNotifyTaskSize = 0 + +2025-09-24 13:04:02,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:04:12,674 INFO [long-pulling] client count 0 + +2025-09-24 13:04:12,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:04:12,822 INFO toNotifyTaskSize = 0 + +2025-09-24 13:04:12,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:04:22,674 INFO [long-pulling] client count 0 + +2025-09-24 13:04:22,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:04:22,828 INFO toNotifyTaskSize = 0 + +2025-09-24 13:04:22,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:04:32,676 INFO [long-pulling] client count 0 + +2025-09-24 13:04:32,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:04:32,830 INFO toNotifyTaskSize = 0 + +2025-09-24 13:04:32,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:04:42,678 INFO [long-pulling] client count 0 + +2025-09-24 13:04:42,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:04:42,831 INFO toNotifyTaskSize = 0 + +2025-09-24 13:04:42,831 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:04:52,678 INFO [long-pulling] client count 0 + +2025-09-24 13:04:52,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:04:52,831 INFO toNotifyTaskSize = 0 + +2025-09-24 13:04:52,831 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:05:02,680 INFO [long-pulling] client count 0 + +2025-09-24 13:05:02,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:05:02,832 INFO toNotifyTaskSize = 0 + +2025-09-24 13:05:02,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:05:12,680 INFO [long-pulling] client count 0 + +2025-09-24 13:05:12,720 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:05:12,833 INFO toNotifyTaskSize = 0 + +2025-09-24 13:05:12,833 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:05:22,682 INFO [long-pulling] client count 0 + +2025-09-24 13:05:22,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:05:22,834 INFO toNotifyTaskSize = 0 + +2025-09-24 13:05:22,834 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:05:32,683 INFO [long-pulling] client count 0 + +2025-09-24 13:05:32,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:05:32,835 INFO toNotifyTaskSize = 0 + +2025-09-24 13:05:32,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:05:42,684 INFO [long-pulling] client count 0 + +2025-09-24 13:05:42,724 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:05:42,837 INFO toNotifyTaskSize = 0 + +2025-09-24 13:05:42,837 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:05:52,684 INFO [long-pulling] client count 0 + +2025-09-24 13:05:52,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:05:52,838 INFO toNotifyTaskSize = 0 + +2025-09-24 13:05:52,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:06:02,684 INFO [long-pulling] client count 0 + +2025-09-24 13:06:02,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:06:02,839 INFO toNotifyTaskSize = 0 + +2025-09-24 13:06:02,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:06:12,685 INFO [long-pulling] client count 0 + +2025-09-24 13:06:12,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:06:12,842 INFO toNotifyTaskSize = 0 + +2025-09-24 13:06:12,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:06:22,687 INFO [long-pulling] client count 0 + +2025-09-24 13:06:22,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:06:22,844 INFO toNotifyTaskSize = 0 + +2025-09-24 13:06:22,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:06:32,687 INFO [long-pulling] client count 0 + +2025-09-24 13:06:32,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:06:32,846 INFO toNotifyTaskSize = 0 + +2025-09-24 13:06:32,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:06:42,689 INFO [long-pulling] client count 0 + +2025-09-24 13:06:42,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:06:42,847 INFO toNotifyTaskSize = 0 + +2025-09-24 13:06:42,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:06:52,691 INFO [long-pulling] client count 0 + +2025-09-24 13:06:52,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:06:52,849 INFO toNotifyTaskSize = 0 + +2025-09-24 13:06:52,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:07:02,692 INFO [long-pulling] client count 0 + +2025-09-24 13:07:02,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:07:02,849 INFO toNotifyTaskSize = 0 + +2025-09-24 13:07:02,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:07:12,692 INFO [long-pulling] client count 0 + +2025-09-24 13:07:12,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:07:12,850 INFO toNotifyTaskSize = 0 + +2025-09-24 13:07:12,850 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:07:22,693 INFO [long-pulling] client count 0 + +2025-09-24 13:07:22,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:07:22,850 INFO toNotifyTaskSize = 0 + +2025-09-24 13:07:22,851 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:07:32,695 INFO [long-pulling] client count 0 + +2025-09-24 13:07:32,735 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:07:32,853 INFO toNotifyTaskSize = 0 + +2025-09-24 13:07:32,853 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:07:42,695 INFO [long-pulling] client count 0 + +2025-09-24 13:07:42,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:07:42,855 INFO toNotifyTaskSize = 0 + +2025-09-24 13:07:42,855 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:07:52,696 INFO [long-pulling] client count 0 + +2025-09-24 13:07:52,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:07:52,857 INFO toNotifyTaskSize = 0 + +2025-09-24 13:07:52,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:08:02,697 INFO [long-pulling] client count 0 + +2025-09-24 13:08:02,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:08:02,859 INFO toNotifyTaskSize = 0 + +2025-09-24 13:08:02,859 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:08:12,697 INFO [long-pulling] client count 0 + +2025-09-24 13:08:12,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:08:12,860 INFO toNotifyTaskSize = 0 + +2025-09-24 13:08:12,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:08:22,698 INFO [long-pulling] client count 0 + +2025-09-24 13:08:22,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:08:22,860 INFO toNotifyTaskSize = 0 + +2025-09-24 13:08:22,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:08:32,699 INFO [long-pulling] client count 0 + +2025-09-24 13:08:32,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:08:32,862 INFO toNotifyTaskSize = 0 + +2025-09-24 13:08:32,862 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:08:42,700 INFO [long-pulling] client count 0 + +2025-09-24 13:08:42,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:08:42,864 INFO toNotifyTaskSize = 0 + +2025-09-24 13:08:42,864 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:08:52,702 INFO [long-pulling] client count 0 + +2025-09-24 13:08:52,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:08:52,865 INFO toNotifyTaskSize = 0 + +2025-09-24 13:08:52,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:09:02,703 INFO [long-pulling] client count 0 + +2025-09-24 13:09:02,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:09:02,866 INFO toNotifyTaskSize = 0 + +2025-09-24 13:09:02,866 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:09:12,705 INFO [long-pulling] client count 0 + +2025-09-24 13:09:12,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:09:12,867 INFO toNotifyTaskSize = 0 + +2025-09-24 13:09:12,867 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:09:22,708 INFO [long-pulling] client count 0 + +2025-09-24 13:09:22,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:09:22,867 INFO toNotifyTaskSize = 0 + +2025-09-24 13:09:22,867 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:09:32,709 INFO [long-pulling] client count 0 + +2025-09-24 13:09:32,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:09:32,868 INFO toNotifyTaskSize = 0 + +2025-09-24 13:09:32,868 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:09:42,711 INFO [long-pulling] client count 0 + +2025-09-24 13:09:42,751 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:09:42,868 INFO toNotifyTaskSize = 0 + +2025-09-24 13:09:42,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:09:52,712 INFO [long-pulling] client count 0 + +2025-09-24 13:09:52,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:09:52,869 INFO toNotifyTaskSize = 0 + +2025-09-24 13:09:52,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:10:02,712 INFO [long-pulling] client count 0 + +2025-09-24 13:10:02,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:10:02,872 INFO toNotifyTaskSize = 0 + +2025-09-24 13:10:02,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:10:12,714 INFO [long-pulling] client count 0 + +2025-09-24 13:10:12,754 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:10:12,872 INFO toNotifyTaskSize = 0 + +2025-09-24 13:10:12,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:10:22,716 INFO [long-pulling] client count 0 + +2025-09-24 13:10:22,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:10:22,874 INFO toNotifyTaskSize = 0 + +2025-09-24 13:10:22,875 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:10:32,717 INFO [long-pulling] client count 0 + +2025-09-24 13:10:32,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:10:32,875 INFO toNotifyTaskSize = 0 + +2025-09-24 13:10:32,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:10:42,718 INFO [long-pulling] client count 0 + +2025-09-24 13:10:42,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:10:42,878 INFO toNotifyTaskSize = 0 + +2025-09-24 13:10:42,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:10:52,720 INFO [long-pulling] client count 0 + +2025-09-24 13:10:52,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:10:52,878 INFO toNotifyTaskSize = 0 + +2025-09-24 13:10:52,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:11:02,721 INFO [long-pulling] client count 0 + +2025-09-24 13:11:02,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:11:02,878 INFO toNotifyTaskSize = 0 + +2025-09-24 13:11:02,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:11:12,723 INFO [long-pulling] client count 0 + +2025-09-24 13:11:12,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:11:12,880 INFO toNotifyTaskSize = 0 + +2025-09-24 13:11:12,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:11:22,725 INFO [long-pulling] client count 0 + +2025-09-24 13:11:22,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:11:22,881 INFO toNotifyTaskSize = 0 + +2025-09-24 13:11:22,881 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:11:32,727 INFO [long-pulling] client count 0 + +2025-09-24 13:11:32,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:11:32,883 INFO toNotifyTaskSize = 0 + +2025-09-24 13:11:32,883 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:11:42,728 INFO [long-pulling] client count 0 + +2025-09-24 13:11:42,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:11:42,885 INFO toNotifyTaskSize = 0 + +2025-09-24 13:11:42,886 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:11:52,728 INFO [long-pulling] client count 0 + +2025-09-24 13:11:52,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:11:52,888 INFO toNotifyTaskSize = 0 + +2025-09-24 13:11:52,888 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:12:02,730 INFO [long-pulling] client count 0 + +2025-09-24 13:12:02,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:12:02,889 INFO toNotifyTaskSize = 0 + +2025-09-24 13:12:02,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:12:12,731 INFO [long-pulling] client count 0 + +2025-09-24 13:12:12,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:12:12,889 INFO toNotifyTaskSize = 0 + +2025-09-24 13:12:12,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:12:22,731 INFO [long-pulling] client count 0 + +2025-09-24 13:12:22,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:12:22,890 INFO toNotifyTaskSize = 0 + +2025-09-24 13:12:22,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:12:32,733 INFO [long-pulling] client count 0 + +2025-09-24 13:12:32,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:12:32,892 INFO toNotifyTaskSize = 0 + +2025-09-24 13:12:32,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:12:42,735 INFO [long-pulling] client count 0 + +2025-09-24 13:12:42,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:12:42,893 INFO toNotifyTaskSize = 0 + +2025-09-24 13:12:42,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:12:52,735 INFO [long-pulling] client count 0 + +2025-09-24 13:12:52,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:12:52,894 INFO toNotifyTaskSize = 0 + +2025-09-24 13:12:52,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:13:02,737 INFO [long-pulling] client count 0 + +2025-09-24 13:13:02,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:13:02,897 INFO toNotifyTaskSize = 0 + +2025-09-24 13:13:02,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:13:12,737 INFO [long-pulling] client count 0 + +2025-09-24 13:13:12,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:13:12,899 INFO toNotifyTaskSize = 0 + +2025-09-24 13:13:12,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:13:22,740 INFO [long-pulling] client count 0 + +2025-09-24 13:13:22,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:13:22,901 INFO toNotifyTaskSize = 0 + +2025-09-24 13:13:22,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:13:32,742 INFO [long-pulling] client count 0 + +2025-09-24 13:13:32,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:13:32,902 INFO toNotifyTaskSize = 0 + +2025-09-24 13:13:32,902 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:13:42,743 INFO [long-pulling] client count 0 + +2025-09-24 13:13:42,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:13:42,904 INFO toNotifyTaskSize = 0 + +2025-09-24 13:13:42,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:13:52,744 INFO [long-pulling] client count 0 + +2025-09-24 13:13:52,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:13:52,905 INFO toNotifyTaskSize = 0 + +2025-09-24 13:13:52,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:14:02,745 INFO [long-pulling] client count 0 + +2025-09-24 13:14:02,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:14:02,906 INFO toNotifyTaskSize = 0 + +2025-09-24 13:14:02,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:14:12,746 INFO [long-pulling] client count 0 + +2025-09-24 13:14:12,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:14:12,906 INFO toNotifyTaskSize = 0 + +2025-09-24 13:14:12,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:14:22,747 INFO [long-pulling] client count 0 + +2025-09-24 13:14:22,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:14:22,908 INFO toNotifyTaskSize = 0 + +2025-09-24 13:14:22,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:14:32,748 INFO [long-pulling] client count 0 + +2025-09-24 13:14:32,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:14:32,910 INFO toNotifyTaskSize = 0 + +2025-09-24 13:14:32,910 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:14:42,749 INFO [long-pulling] client count 0 + +2025-09-24 13:14:42,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:14:42,910 INFO toNotifyTaskSize = 0 + +2025-09-24 13:14:42,910 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:14:52,751 INFO [long-pulling] client count 0 + +2025-09-24 13:14:52,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:14:52,911 INFO toNotifyTaskSize = 0 + +2025-09-24 13:14:52,911 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:15:02,752 INFO [long-pulling] client count 0 + +2025-09-24 13:15:02,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:15:02,911 INFO toNotifyTaskSize = 0 + +2025-09-24 13:15:02,911 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:15:12,753 INFO [long-pulling] client count 0 + +2025-09-24 13:15:12,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:15:12,913 INFO toNotifyTaskSize = 0 + +2025-09-24 13:15:12,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:15:22,755 INFO [long-pulling] client count 0 + +2025-09-24 13:15:22,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:15:22,915 INFO toNotifyTaskSize = 0 + +2025-09-24 13:15:22,915 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:15:32,755 INFO [long-pulling] client count 0 + +2025-09-24 13:15:32,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:15:32,917 INFO toNotifyTaskSize = 0 + +2025-09-24 13:15:32,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:15:42,757 INFO [long-pulling] client count 0 + +2025-09-24 13:15:42,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:15:42,919 INFO toNotifyTaskSize = 0 + +2025-09-24 13:15:42,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:15:52,759 INFO [long-pulling] client count 0 + +2025-09-24 13:15:52,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:15:52,920 INFO toNotifyTaskSize = 0 + +2025-09-24 13:15:52,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:16:02,759 INFO [long-pulling] client count 0 + +2025-09-24 13:16:02,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:16:02,923 INFO toNotifyTaskSize = 0 + +2025-09-24 13:16:02,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:16:12,760 INFO [long-pulling] client count 0 + +2025-09-24 13:16:12,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:16:12,923 INFO toNotifyTaskSize = 0 + +2025-09-24 13:16:12,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:16:22,761 INFO [long-pulling] client count 0 + +2025-09-24 13:16:22,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:16:22,924 INFO toNotifyTaskSize = 0 + +2025-09-24 13:16:22,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:16:32,762 INFO [long-pulling] client count 0 + +2025-09-24 13:16:32,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:16:32,926 INFO toNotifyTaskSize = 0 + +2025-09-24 13:16:32,926 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:16:42,764 INFO [long-pulling] client count 0 + +2025-09-24 13:16:42,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:16:42,928 INFO toNotifyTaskSize = 0 + +2025-09-24 13:16:42,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:16:52,765 INFO [long-pulling] client count 0 + +2025-09-24 13:16:52,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:16:52,930 INFO toNotifyTaskSize = 0 + +2025-09-24 13:16:52,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:17:02,767 INFO [long-pulling] client count 0 + +2025-09-24 13:17:02,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:17:02,932 INFO toNotifyTaskSize = 0 + +2025-09-24 13:17:02,932 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:17:12,767 INFO [long-pulling] client count 0 + +2025-09-24 13:17:12,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:17:12,933 INFO toNotifyTaskSize = 0 + +2025-09-24 13:17:12,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:17:22,768 INFO [long-pulling] client count 0 + +2025-09-24 13:17:22,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:17:22,935 INFO toNotifyTaskSize = 0 + +2025-09-24 13:17:22,935 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:17:32,769 INFO [long-pulling] client count 0 + +2025-09-24 13:17:32,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:17:32,936 INFO toNotifyTaskSize = 0 + +2025-09-24 13:17:32,936 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:17:42,770 INFO [long-pulling] client count 0 + +2025-09-24 13:17:42,805 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:17:42,937 INFO toNotifyTaskSize = 0 + +2025-09-24 13:17:42,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:17:52,771 INFO [long-pulling] client count 0 + +2025-09-24 13:17:52,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:17:52,937 INFO toNotifyTaskSize = 0 + +2025-09-24 13:17:52,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:18:02,772 INFO [long-pulling] client count 0 + +2025-09-24 13:18:02,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:18:02,938 INFO toNotifyTaskSize = 0 + +2025-09-24 13:18:02,938 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:18:12,774 INFO [long-pulling] client count 0 + +2025-09-24 13:18:12,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:18:12,938 INFO toNotifyTaskSize = 0 + +2025-09-24 13:18:12,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:18:22,775 INFO [long-pulling] client count 0 + +2025-09-24 13:18:22,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:18:22,940 INFO toNotifyTaskSize = 0 + +2025-09-24 13:18:22,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:18:32,781 INFO [long-pulling] client count 0 + +2025-09-24 13:18:32,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:18:32,942 INFO toNotifyTaskSize = 0 + +2025-09-24 13:18:32,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:18:42,782 INFO [long-pulling] client count 0 + +2025-09-24 13:18:42,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:18:42,942 INFO toNotifyTaskSize = 0 + +2025-09-24 13:18:42,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:18:52,784 INFO [long-pulling] client count 0 + +2025-09-24 13:18:52,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:18:52,944 INFO toNotifyTaskSize = 0 + +2025-09-24 13:18:52,945 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:19:02,785 INFO [long-pulling] client count 0 + +2025-09-24 13:19:02,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:19:02,946 INFO toNotifyTaskSize = 0 + +2025-09-24 13:19:02,946 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:19:12,785 INFO [long-pulling] client count 0 + +2025-09-24 13:19:12,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:19:12,946 INFO toNotifyTaskSize = 0 + +2025-09-24 13:19:12,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:19:22,787 INFO [long-pulling] client count 0 + +2025-09-24 13:19:22,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:19:22,947 INFO toNotifyTaskSize = 0 + +2025-09-24 13:19:22,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:19:32,788 INFO [long-pulling] client count 0 + +2025-09-24 13:19:32,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:19:32,949 INFO toNotifyTaskSize = 0 + +2025-09-24 13:19:32,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:19:42,790 INFO [long-pulling] client count 0 + +2025-09-24 13:19:42,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:19:42,949 INFO toNotifyTaskSize = 0 + +2025-09-24 13:19:42,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:19:52,790 INFO [long-pulling] client count 0 + +2025-09-24 13:19:52,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:19:52,951 INFO toNotifyTaskSize = 0 + +2025-09-24 13:19:52,951 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:20:02,791 INFO [long-pulling] client count 0 + +2025-09-24 13:20:02,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:20:02,952 INFO toNotifyTaskSize = 0 + +2025-09-24 13:20:02,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:20:12,793 INFO [long-pulling] client count 0 + +2025-09-24 13:20:12,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:20:12,952 INFO toNotifyTaskSize = 0 + +2025-09-24 13:20:12,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:20:22,794 INFO [long-pulling] client count 0 + +2025-09-24 13:20:22,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:20:22,953 INFO toNotifyTaskSize = 0 + +2025-09-24 13:20:22,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:20:32,795 INFO [long-pulling] client count 0 + +2025-09-24 13:20:32,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:20:32,954 INFO toNotifyTaskSize = 0 + +2025-09-24 13:20:32,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:20:42,796 INFO [long-pulling] client count 0 + +2025-09-24 13:20:42,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:20:42,956 INFO toNotifyTaskSize = 0 + +2025-09-24 13:20:42,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:20:52,798 INFO [long-pulling] client count 0 + +2025-09-24 13:20:52,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:20:52,957 INFO toNotifyTaskSize = 0 + +2025-09-24 13:20:52,957 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:21:02,799 INFO [long-pulling] client count 0 + +2025-09-24 13:21:02,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:21:02,958 INFO toNotifyTaskSize = 0 + +2025-09-24 13:21:02,958 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:21:12,800 INFO [long-pulling] client count 0 + +2025-09-24 13:21:12,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:21:12,959 INFO toNotifyTaskSize = 0 + +2025-09-24 13:21:12,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:21:22,802 INFO [long-pulling] client count 0 + +2025-09-24 13:21:22,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:21:22,961 INFO toNotifyTaskSize = 0 + +2025-09-24 13:21:22,961 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:21:32,803 INFO [long-pulling] client count 0 + +2025-09-24 13:21:32,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:21:32,962 INFO toNotifyTaskSize = 0 + +2025-09-24 13:21:32,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:21:42,803 INFO [long-pulling] client count 0 + +2025-09-24 13:21:42,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:21:42,964 INFO toNotifyTaskSize = 0 + +2025-09-24 13:21:42,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:21:52,804 INFO [long-pulling] client count 0 + +2025-09-24 13:21:52,836 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:21:52,966 INFO toNotifyTaskSize = 0 + +2025-09-24 13:21:52,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:22:02,805 INFO [long-pulling] client count 0 + +2025-09-24 13:22:02,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:22:02,967 INFO toNotifyTaskSize = 0 + +2025-09-24 13:22:02,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:22:12,805 INFO [long-pulling] client count 0 + +2025-09-24 13:22:12,839 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:22:12,969 INFO toNotifyTaskSize = 0 + +2025-09-24 13:22:12,969 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:22:22,805 INFO [long-pulling] client count 0 + +2025-09-24 13:22:22,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:22:22,970 INFO toNotifyTaskSize = 0 + +2025-09-24 13:22:22,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:22:32,806 INFO [long-pulling] client count 0 + +2025-09-24 13:22:32,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:22:32,970 INFO toNotifyTaskSize = 0 + +2025-09-24 13:22:32,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:22:42,808 INFO [long-pulling] client count 0 + +2025-09-24 13:22:42,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:22:42,971 INFO toNotifyTaskSize = 0 + +2025-09-24 13:22:42,971 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:22:52,808 INFO [long-pulling] client count 0 + +2025-09-24 13:22:52,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:22:52,971 INFO toNotifyTaskSize = 0 + +2025-09-24 13:22:52,971 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:23:02,809 INFO [long-pulling] client count 0 + +2025-09-24 13:23:02,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:23:02,972 INFO toNotifyTaskSize = 0 + +2025-09-24 13:23:02,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:23:12,811 INFO [long-pulling] client count 0 + +2025-09-24 13:23:12,847 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:23:12,974 INFO toNotifyTaskSize = 0 + +2025-09-24 13:23:12,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:23:22,812 INFO [long-pulling] client count 0 + +2025-09-24 13:23:22,847 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:23:22,977 INFO toNotifyTaskSize = 0 + +2025-09-24 13:23:22,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:23:32,813 INFO [long-pulling] client count 0 + +2025-09-24 13:23:32,849 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:23:32,977 INFO toNotifyTaskSize = 0 + +2025-09-24 13:23:32,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:23:42,816 INFO [long-pulling] client count 0 + +2025-09-24 13:23:42,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:23:42,979 INFO toNotifyTaskSize = 0 + +2025-09-24 13:23:42,979 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:23:52,817 INFO [long-pulling] client count 0 + +2025-09-24 13:23:52,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:23:52,979 INFO toNotifyTaskSize = 0 + +2025-09-24 13:23:52,980 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:24:02,819 INFO [long-pulling] client count 0 + +2025-09-24 13:24:02,854 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:24:02,981 INFO toNotifyTaskSize = 0 + +2025-09-24 13:24:02,982 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:24:12,820 INFO [long-pulling] client count 0 + +2025-09-24 13:24:12,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:24:12,983 INFO toNotifyTaskSize = 0 + +2025-09-24 13:24:12,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:24:22,820 INFO [long-pulling] client count 0 + +2025-09-24 13:24:22,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:24:22,985 INFO toNotifyTaskSize = 0 + +2025-09-24 13:24:22,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:24:32,821 INFO [long-pulling] client count 0 + +2025-09-24 13:24:32,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:24:32,986 INFO toNotifyTaskSize = 0 + +2025-09-24 13:24:32,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:24:42,823 INFO [long-pulling] client count 0 + +2025-09-24 13:24:42,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:24:42,987 INFO toNotifyTaskSize = 0 + +2025-09-24 13:24:42,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:24:52,825 INFO [long-pulling] client count 0 + +2025-09-24 13:24:52,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:24:52,987 INFO toNotifyTaskSize = 0 + +2025-09-24 13:24:52,988 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:25:02,826 INFO [long-pulling] client count 0 + +2025-09-24 13:25:02,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:25:02,990 INFO toNotifyTaskSize = 0 + +2025-09-24 13:25:02,990 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:25:12,826 INFO [long-pulling] client count 0 + +2025-09-24 13:25:12,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:25:12,992 INFO toNotifyTaskSize = 0 + +2025-09-24 13:25:12,992 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:25:22,828 INFO [long-pulling] client count 0 + +2025-09-24 13:25:22,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:25:22,994 INFO toNotifyTaskSize = 0 + +2025-09-24 13:25:22,994 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:25:32,828 INFO [long-pulling] client count 0 + +2025-09-24 13:25:32,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:25:32,996 INFO toNotifyTaskSize = 0 + +2025-09-24 13:25:32,996 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:25:42,831 INFO [long-pulling] client count 0 + +2025-09-24 13:25:42,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:25:42,996 INFO toNotifyTaskSize = 0 + +2025-09-24 13:25:42,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:25:52,833 INFO [long-pulling] client count 0 + +2025-09-24 13:25:52,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:25:52,997 INFO toNotifyTaskSize = 0 + +2025-09-24 13:25:52,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:26:02,835 INFO [long-pulling] client count 0 + +2025-09-24 13:26:02,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:26:02,999 INFO toNotifyTaskSize = 0 + +2025-09-24 13:26:02,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:26:12,837 INFO [long-pulling] client count 0 + +2025-09-24 13:26:12,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:26:13,000 INFO toNotifyTaskSize = 0 + +2025-09-24 13:26:13,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:26:22,837 INFO [long-pulling] client count 0 + +2025-09-24 13:26:22,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:26:23,000 INFO toNotifyTaskSize = 0 + +2025-09-24 13:26:23,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:26:32,837 INFO [long-pulling] client count 0 + +2025-09-24 13:26:32,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:26:33,002 INFO toNotifyTaskSize = 0 + +2025-09-24 13:26:33,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:26:42,838 INFO [long-pulling] client count 0 + +2025-09-24 13:26:42,870 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:26:43,003 INFO toNotifyTaskSize = 0 + +2025-09-24 13:26:43,003 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:26:52,839 INFO [long-pulling] client count 0 + +2025-09-24 13:26:52,870 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:26:53,004 INFO toNotifyTaskSize = 0 + +2025-09-24 13:26:53,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:27:02,842 INFO [long-pulling] client count 0 + +2025-09-24 13:27:02,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:27:03,005 INFO toNotifyTaskSize = 0 + +2025-09-24 13:27:03,005 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:27:12,843 INFO [long-pulling] client count 0 + +2025-09-24 13:27:12,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:27:13,005 INFO toNotifyTaskSize = 0 + +2025-09-24 13:27:13,005 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:27:22,843 INFO [long-pulling] client count 0 + +2025-09-24 13:27:22,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:27:23,007 INFO toNotifyTaskSize = 0 + +2025-09-24 13:27:23,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:27:32,845 INFO [long-pulling] client count 0 + +2025-09-24 13:27:32,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:27:33,009 INFO toNotifyTaskSize = 0 + +2025-09-24 13:27:33,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:27:42,846 INFO [long-pulling] client count 0 + +2025-09-24 13:27:42,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:27:43,010 INFO toNotifyTaskSize = 0 + +2025-09-24 13:27:43,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:27:52,848 INFO [long-pulling] client count 0 + +2025-09-24 13:27:52,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:27:53,012 INFO toNotifyTaskSize = 0 + +2025-09-24 13:27:53,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:28:02,849 INFO [long-pulling] client count 0 + +2025-09-24 13:28:02,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:28:03,014 INFO toNotifyTaskSize = 0 + +2025-09-24 13:28:03,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:28:12,852 INFO [long-pulling] client count 0 + +2025-09-24 13:28:12,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:28:13,014 INFO toNotifyTaskSize = 0 + +2025-09-24 13:28:13,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:28:22,852 INFO [long-pulling] client count 0 + +2025-09-24 13:28:22,883 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:28:23,016 INFO toNotifyTaskSize = 0 + +2025-09-24 13:28:23,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:28:32,854 INFO [long-pulling] client count 0 + +2025-09-24 13:28:32,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:28:33,016 INFO toNotifyTaskSize = 0 + +2025-09-24 13:28:33,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:28:42,854 INFO [long-pulling] client count 0 + +2025-09-24 13:28:42,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:28:43,017 INFO toNotifyTaskSize = 0 + +2025-09-24 13:28:43,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:28:52,854 INFO [long-pulling] client count 0 + +2025-09-24 13:28:52,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:28:53,017 INFO toNotifyTaskSize = 0 + +2025-09-24 13:28:53,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:29:02,857 INFO [long-pulling] client count 0 + +2025-09-24 13:29:02,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:29:03,018 INFO toNotifyTaskSize = 0 + +2025-09-24 13:29:03,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:29:12,859 INFO [long-pulling] client count 0 + +2025-09-24 13:29:12,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:29:13,019 INFO toNotifyTaskSize = 0 + +2025-09-24 13:29:13,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:29:22,859 INFO [long-pulling] client count 0 + +2025-09-24 13:29:22,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:29:23,021 INFO toNotifyTaskSize = 0 + +2025-09-24 13:29:23,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:29:32,860 INFO [long-pulling] client count 0 + +2025-09-24 13:29:32,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:29:33,021 INFO toNotifyTaskSize = 0 + +2025-09-24 13:29:33,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:29:42,860 INFO [long-pulling] client count 0 + +2025-09-24 13:29:42,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:29:43,022 INFO toNotifyTaskSize = 0 + +2025-09-24 13:29:43,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:29:52,862 INFO [long-pulling] client count 0 + +2025-09-24 13:29:52,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:29:53,022 INFO toNotifyTaskSize = 0 + +2025-09-24 13:29:53,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:30:02,863 INFO [long-pulling] client count 0 + +2025-09-24 13:30:02,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:30:03,023 INFO toNotifyTaskSize = 0 + +2025-09-24 13:30:03,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:30:12,865 INFO [long-pulling] client count 0 + +2025-09-24 13:30:12,892 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:30:13,025 INFO toNotifyTaskSize = 0 + +2025-09-24 13:30:13,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:30:22,866 INFO [long-pulling] client count 0 + +2025-09-24 13:30:22,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:30:23,026 INFO toNotifyTaskSize = 0 + +2025-09-24 13:30:23,026 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:30:32,867 INFO [long-pulling] client count 0 + +2025-09-24 13:30:32,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:30:33,028 INFO toNotifyTaskSize = 0 + +2025-09-24 13:30:33,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:30:42,868 INFO [long-pulling] client count 0 + +2025-09-24 13:30:42,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:30:43,030 INFO toNotifyTaskSize = 0 + +2025-09-24 13:30:43,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:30:52,870 INFO [long-pulling] client count 0 + +2025-09-24 13:30:52,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:30:53,032 INFO toNotifyTaskSize = 0 + +2025-09-24 13:30:53,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:31:02,871 INFO [long-pulling] client count 0 + +2025-09-24 13:31:02,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:31:03,033 INFO toNotifyTaskSize = 0 + +2025-09-24 13:31:03,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:31:12,871 INFO [long-pulling] client count 0 + +2025-09-24 13:31:12,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:31:13,034 INFO toNotifyTaskSize = 0 + +2025-09-24 13:31:13,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:31:22,873 INFO [long-pulling] client count 0 + +2025-09-24 13:31:22,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:31:23,035 INFO toNotifyTaskSize = 0 + +2025-09-24 13:31:23,035 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:31:32,875 INFO [long-pulling] client count 0 + +2025-09-24 13:31:32,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:31:33,037 INFO toNotifyTaskSize = 0 + +2025-09-24 13:31:33,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:31:42,875 INFO [long-pulling] client count 0 + +2025-09-24 13:31:42,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:31:43,039 INFO toNotifyTaskSize = 0 + +2025-09-24 13:31:43,039 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:31:52,878 INFO [long-pulling] client count 0 + +2025-09-24 13:31:52,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:31:53,040 INFO toNotifyTaskSize = 0 + +2025-09-24 13:31:53,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:32:02,880 INFO [long-pulling] client count 0 + +2025-09-24 13:32:02,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:32:03,041 INFO toNotifyTaskSize = 0 + +2025-09-24 13:32:03,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:32:12,881 INFO [long-pulling] client count 0 + +2025-09-24 13:32:12,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:32:13,042 INFO toNotifyTaskSize = 0 + +2025-09-24 13:32:13,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:32:22,883 INFO [long-pulling] client count 0 + +2025-09-24 13:32:22,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:32:23,043 INFO toNotifyTaskSize = 0 + +2025-09-24 13:32:23,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:32:32,884 INFO [long-pulling] client count 0 + +2025-09-24 13:32:32,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:32:33,043 INFO toNotifyTaskSize = 0 + +2025-09-24 13:32:33,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:32:42,884 INFO [long-pulling] client count 0 + +2025-09-24 13:32:42,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:32:43,044 INFO toNotifyTaskSize = 0 + +2025-09-24 13:32:43,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:32:52,886 INFO [long-pulling] client count 0 + +2025-09-24 13:32:52,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:32:53,046 INFO toNotifyTaskSize = 0 + +2025-09-24 13:32:53,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:33:02,887 INFO [long-pulling] client count 0 + +2025-09-24 13:33:02,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:33:03,048 INFO toNotifyTaskSize = 0 + +2025-09-24 13:33:03,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:33:12,889 INFO [long-pulling] client count 0 + +2025-09-24 13:33:12,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:33:13,048 INFO toNotifyTaskSize = 0 + +2025-09-24 13:33:13,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:33:22,889 INFO [long-pulling] client count 0 + +2025-09-24 13:33:22,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:33:23,051 INFO toNotifyTaskSize = 0 + +2025-09-24 13:33:23,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:33:32,890 INFO [long-pulling] client count 0 + +2025-09-24 13:33:32,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:33:33,053 INFO toNotifyTaskSize = 0 + +2025-09-24 13:33:33,053 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:33:42,890 INFO [long-pulling] client count 0 + +2025-09-24 13:33:42,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:33:43,055 INFO toNotifyTaskSize = 0 + +2025-09-24 13:33:43,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:33:52,891 INFO [long-pulling] client count 0 + +2025-09-24 13:33:52,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:33:53,058 INFO toNotifyTaskSize = 0 + +2025-09-24 13:33:53,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:34:02,891 INFO [long-pulling] client count 0 + +2025-09-24 13:34:02,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:34:03,058 INFO toNotifyTaskSize = 0 + +2025-09-24 13:34:03,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:34:12,891 INFO [long-pulling] client count 0 + +2025-09-24 13:34:12,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:34:13,059 INFO toNotifyTaskSize = 0 + +2025-09-24 13:34:13,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:34:22,894 INFO [long-pulling] client count 0 + +2025-09-24 13:34:22,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:34:23,059 INFO toNotifyTaskSize = 0 + +2025-09-24 13:34:23,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:34:32,896 INFO [long-pulling] client count 0 + +2025-09-24 13:34:32,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:34:33,061 INFO toNotifyTaskSize = 0 + +2025-09-24 13:34:33,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:34:42,898 INFO [long-pulling] client count 0 + +2025-09-24 13:34:42,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:34:43,078 INFO toNotifyTaskSize = 0 + +2025-09-24 13:34:43,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:34:52,900 INFO [long-pulling] client count 0 + +2025-09-24 13:34:52,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:34:53,079 INFO toNotifyTaskSize = 0 + +2025-09-24 13:34:53,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:35:02,902 INFO [long-pulling] client count 0 + +2025-09-24 13:35:02,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:35:03,081 INFO toNotifyTaskSize = 0 + +2025-09-24 13:35:03,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:35:12,904 INFO [long-pulling] client count 0 + +2025-09-24 13:35:12,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:35:13,082 INFO toNotifyTaskSize = 0 + +2025-09-24 13:35:13,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:35:22,906 INFO [long-pulling] client count 0 + +2025-09-24 13:35:22,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:35:23,082 INFO toNotifyTaskSize = 0 + +2025-09-24 13:35:23,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:35:32,908 INFO [long-pulling] client count 0 + +2025-09-24 13:35:32,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:35:33,082 INFO toNotifyTaskSize = 0 + +2025-09-24 13:35:33,083 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:35:42,910 INFO [long-pulling] client count 0 + +2025-09-24 13:35:42,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:35:43,085 INFO toNotifyTaskSize = 0 + +2025-09-24 13:35:43,085 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:35:52,910 INFO [long-pulling] client count 0 + +2025-09-24 13:35:52,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:35:53,087 INFO toNotifyTaskSize = 0 + +2025-09-24 13:35:53,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:36:02,912 INFO [long-pulling] client count 0 + +2025-09-24 13:36:02,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:36:03,089 INFO toNotifyTaskSize = 0 + +2025-09-24 13:36:03,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:36:12,914 INFO [long-pulling] client count 0 + +2025-09-24 13:36:12,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:36:13,089 INFO toNotifyTaskSize = 0 + +2025-09-24 13:36:13,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:36:22,915 INFO [long-pulling] client count 0 + +2025-09-24 13:36:22,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:36:23,092 INFO toNotifyTaskSize = 0 + +2025-09-24 13:36:23,092 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:36:32,917 INFO [long-pulling] client count 0 + +2025-09-24 13:36:32,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:36:33,092 INFO toNotifyTaskSize = 0 + +2025-09-24 13:36:33,092 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:36:42,917 INFO [long-pulling] client count 0 + +2025-09-24 13:36:42,935 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:36:43,092 INFO toNotifyTaskSize = 0 + +2025-09-24 13:36:43,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:36:52,919 INFO [long-pulling] client count 0 + +2025-09-24 13:36:52,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:36:53,095 INFO toNotifyTaskSize = 0 + +2025-09-24 13:36:53,095 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:37:02,921 INFO [long-pulling] client count 0 + +2025-09-24 13:37:02,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:37:03,097 INFO toNotifyTaskSize = 0 + +2025-09-24 13:37:03,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:37:12,923 INFO [long-pulling] client count 0 + +2025-09-24 13:37:12,939 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:37:13,098 INFO toNotifyTaskSize = 0 + +2025-09-24 13:37:13,098 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:37:22,924 INFO [long-pulling] client count 0 + +2025-09-24 13:37:22,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:37:23,099 INFO toNotifyTaskSize = 0 + +2025-09-24 13:37:23,099 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:37:32,925 INFO [long-pulling] client count 0 + +2025-09-24 13:37:32,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:37:33,101 INFO toNotifyTaskSize = 0 + +2025-09-24 13:37:33,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:37:42,926 INFO [long-pulling] client count 0 + +2025-09-24 13:37:42,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:37:43,103 INFO toNotifyTaskSize = 0 + +2025-09-24 13:37:43,103 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:37:52,926 INFO [long-pulling] client count 0 + +2025-09-24 13:37:52,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:37:53,104 INFO toNotifyTaskSize = 0 + +2025-09-24 13:37:53,104 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:38:02,927 INFO [long-pulling] client count 0 + +2025-09-24 13:38:02,945 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:38:03,106 INFO toNotifyTaskSize = 0 + +2025-09-24 13:38:03,106 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:38:12,928 INFO [long-pulling] client count 0 + +2025-09-24 13:38:12,945 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:38:13,106 INFO toNotifyTaskSize = 0 + +2025-09-24 13:38:13,106 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:38:22,928 INFO [long-pulling] client count 0 + +2025-09-24 13:38:22,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:38:23,107 INFO toNotifyTaskSize = 0 + +2025-09-24 13:38:23,107 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:38:32,931 INFO [long-pulling] client count 0 + +2025-09-24 13:38:32,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:38:33,109 INFO toNotifyTaskSize = 0 + +2025-09-24 13:38:33,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:38:42,933 INFO [long-pulling] client count 0 + +2025-09-24 13:38:42,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:38:43,110 INFO toNotifyTaskSize = 0 + +2025-09-24 13:38:43,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:38:52,935 INFO [long-pulling] client count 0 + +2025-09-24 13:38:52,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:38:53,110 INFO toNotifyTaskSize = 0 + +2025-09-24 13:38:53,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:39:02,936 INFO [long-pulling] client count 0 + +2025-09-24 13:39:02,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:39:03,111 INFO toNotifyTaskSize = 0 + +2025-09-24 13:39:03,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:39:12,938 INFO [long-pulling] client count 0 + +2025-09-24 13:39:12,950 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:39:13,111 INFO toNotifyTaskSize = 0 + +2025-09-24 13:39:13,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:39:22,940 INFO [long-pulling] client count 0 + +2025-09-24 13:39:22,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:39:23,113 INFO toNotifyTaskSize = 0 + +2025-09-24 13:39:23,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:39:32,943 INFO [long-pulling] client count 0 + +2025-09-24 13:39:32,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:39:33,115 INFO toNotifyTaskSize = 0 + +2025-09-24 13:39:33,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:39:42,943 INFO [long-pulling] client count 0 + +2025-09-24 13:39:42,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:39:43,116 INFO toNotifyTaskSize = 0 + +2025-09-24 13:39:43,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:39:52,945 INFO [long-pulling] client count 0 + +2025-09-24 13:39:52,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:39:53,118 INFO toNotifyTaskSize = 0 + +2025-09-24 13:39:53,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:40:02,947 INFO [long-pulling] client count 0 + +2025-09-24 13:40:02,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:40:03,120 INFO toNotifyTaskSize = 0 + +2025-09-24 13:40:03,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:40:12,949 INFO [long-pulling] client count 0 + +2025-09-24 13:40:12,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:40:13,121 INFO toNotifyTaskSize = 0 + +2025-09-24 13:40:13,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:40:22,951 INFO [long-pulling] client count 0 + +2025-09-24 13:40:22,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:40:23,122 INFO toNotifyTaskSize = 0 + +2025-09-24 13:40:23,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:40:32,952 INFO [long-pulling] client count 0 + +2025-09-24 13:40:32,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:40:33,122 INFO toNotifyTaskSize = 0 + +2025-09-24 13:40:33,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:40:42,953 INFO [long-pulling] client count 0 + +2025-09-24 13:40:42,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:40:43,123 INFO toNotifyTaskSize = 0 + +2025-09-24 13:40:43,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:40:52,953 INFO [long-pulling] client count 0 + +2025-09-24 13:40:52,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:40:53,124 INFO toNotifyTaskSize = 0 + +2025-09-24 13:40:53,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:41:02,955 INFO [long-pulling] client count 0 + +2025-09-24 13:41:02,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:41:03,127 INFO toNotifyTaskSize = 0 + +2025-09-24 13:41:03,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:41:12,955 INFO [long-pulling] client count 0 + +2025-09-24 13:41:12,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:41:13,127 INFO toNotifyTaskSize = 0 + +2025-09-24 13:41:13,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:41:22,957 INFO [long-pulling] client count 0 + +2025-09-24 13:41:22,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:41:23,128 INFO toNotifyTaskSize = 0 + +2025-09-24 13:41:23,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:41:32,958 INFO [long-pulling] client count 0 + +2025-09-24 13:41:32,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:41:33,130 INFO toNotifyTaskSize = 0 + +2025-09-24 13:41:33,130 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:41:42,958 INFO [long-pulling] client count 0 + +2025-09-24 13:41:42,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:41:43,131 INFO toNotifyTaskSize = 0 + +2025-09-24 13:41:43,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:41:52,960 INFO [long-pulling] client count 0 + +2025-09-24 13:41:52,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:41:53,131 INFO toNotifyTaskSize = 0 + +2025-09-24 13:41:53,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:42:02,962 INFO [long-pulling] client count 0 + +2025-09-24 13:42:02,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:42:03,131 INFO toNotifyTaskSize = 0 + +2025-09-24 13:42:03,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:42:12,963 INFO [long-pulling] client count 0 + +2025-09-24 13:42:12,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:42:13,133 INFO toNotifyTaskSize = 0 + +2025-09-24 13:42:13,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:42:22,964 INFO [long-pulling] client count 0 + +2025-09-24 13:42:22,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:42:23,134 INFO toNotifyTaskSize = 0 + +2025-09-24 13:42:23,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:42:32,964 INFO [long-pulling] client count 0 + +2025-09-24 13:42:32,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:42:33,135 INFO toNotifyTaskSize = 0 + +2025-09-24 13:42:33,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:42:42,965 INFO [long-pulling] client count 0 + +2025-09-24 13:42:42,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:42:43,135 INFO toNotifyTaskSize = 0 + +2025-09-24 13:42:43,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:42:52,966 INFO [long-pulling] client count 0 + +2025-09-24 13:42:52,973 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:42:53,136 INFO toNotifyTaskSize = 0 + +2025-09-24 13:42:53,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:43:02,966 INFO [long-pulling] client count 0 + +2025-09-24 13:43:02,973 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:43:03,138 INFO toNotifyTaskSize = 0 + +2025-09-24 13:43:03,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:43:12,967 INFO [long-pulling] client count 0 + +2025-09-24 13:43:12,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:43:13,139 INFO toNotifyTaskSize = 0 + +2025-09-24 13:43:13,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:43:22,968 INFO [long-pulling] client count 0 + +2025-09-24 13:43:22,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:43:23,139 INFO toNotifyTaskSize = 0 + +2025-09-24 13:43:23,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:43:32,969 INFO [long-pulling] client count 0 + +2025-09-24 13:43:32,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:43:33,142 INFO toNotifyTaskSize = 0 + +2025-09-24 13:43:33,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:43:42,971 INFO [long-pulling] client count 0 + +2025-09-24 13:43:42,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:43:43,142 INFO toNotifyTaskSize = 0 + +2025-09-24 13:43:43,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:43:52,972 INFO [long-pulling] client count 0 + +2025-09-24 13:43:52,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:43:53,142 INFO toNotifyTaskSize = 0 + +2025-09-24 13:43:53,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:44:02,972 INFO [long-pulling] client count 0 + +2025-09-24 13:44:02,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:44:03,144 INFO toNotifyTaskSize = 0 + +2025-09-24 13:44:03,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:44:12,974 INFO [long-pulling] client count 0 + +2025-09-24 13:44:12,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:44:13,146 INFO toNotifyTaskSize = 0 + +2025-09-24 13:44:13,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:44:22,974 INFO [long-pulling] client count 0 + +2025-09-24 13:44:22,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:44:23,146 INFO toNotifyTaskSize = 0 + +2025-09-24 13:44:23,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:44:32,976 INFO [long-pulling] client count 0 + +2025-09-24 13:44:32,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:44:33,147 INFO toNotifyTaskSize = 0 + +2025-09-24 13:44:33,147 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:44:42,977 INFO [long-pulling] client count 0 + +2025-09-24 13:44:42,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:44:43,148 INFO toNotifyTaskSize = 0 + +2025-09-24 13:44:43,148 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:44:52,978 INFO [long-pulling] client count 0 + +2025-09-24 13:44:52,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:44:53,149 INFO toNotifyTaskSize = 0 + +2025-09-24 13:44:53,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:45:02,980 INFO [long-pulling] client count 0 + +2025-09-24 13:45:02,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:45:03,151 INFO toNotifyTaskSize = 0 + +2025-09-24 13:45:03,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:45:12,980 INFO [long-pulling] client count 0 + +2025-09-24 13:45:12,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:45:13,152 INFO toNotifyTaskSize = 0 + +2025-09-24 13:45:13,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:45:22,982 INFO [long-pulling] client count 0 + +2025-09-24 13:45:22,988 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:45:23,152 INFO toNotifyTaskSize = 0 + +2025-09-24 13:45:23,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:45:32,983 INFO [long-pulling] client count 0 + +2025-09-24 13:45:32,988 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:45:33,154 INFO toNotifyTaskSize = 0 + +2025-09-24 13:45:33,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:45:42,984 INFO [long-pulling] client count 0 + +2025-09-24 13:45:42,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:45:43,155 INFO toNotifyTaskSize = 0 + +2025-09-24 13:45:43,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:45:52,985 INFO [long-pulling] client count 0 + +2025-09-24 13:45:52,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:45:53,157 INFO toNotifyTaskSize = 0 + +2025-09-24 13:45:53,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:46:02,985 INFO [long-pulling] client count 0 + +2025-09-24 13:46:02,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:46:03,158 INFO toNotifyTaskSize = 0 + +2025-09-24 13:46:03,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:46:12,986 INFO [long-pulling] client count 0 + +2025-09-24 13:46:12,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:46:13,159 INFO toNotifyTaskSize = 0 + +2025-09-24 13:46:13,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:46:22,987 INFO [long-pulling] client count 0 + +2025-09-24 13:46:22,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:46:23,160 INFO toNotifyTaskSize = 0 + +2025-09-24 13:46:23,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:46:32,988 INFO [long-pulling] client count 0 + +2025-09-24 13:46:32,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:46:33,160 INFO toNotifyTaskSize = 0 + +2025-09-24 13:46:33,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:46:42,989 INFO [long-pulling] client count 0 + +2025-09-24 13:46:42,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:46:43,160 INFO toNotifyTaskSize = 0 + +2025-09-24 13:46:43,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:46:52,991 INFO [long-pulling] client count 0 + +2025-09-24 13:46:52,994 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:46:53,162 INFO toNotifyTaskSize = 0 + +2025-09-24 13:46:53,162 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:47:02,991 INFO [long-pulling] client count 0 + +2025-09-24 13:47:02,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:47:03,163 INFO toNotifyTaskSize = 0 + +2025-09-24 13:47:03,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:47:12,993 INFO [long-pulling] client count 0 + +2025-09-24 13:47:12,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:47:13,165 INFO toNotifyTaskSize = 0 + +2025-09-24 13:47:13,166 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:47:22,993 INFO [long-pulling] client count 0 + +2025-09-24 13:47:22,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:47:23,167 INFO toNotifyTaskSize = 0 + +2025-09-24 13:47:23,167 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:47:32,995 INFO [long-pulling] client count 0 + +2025-09-24 13:47:33,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:47:33,169 INFO toNotifyTaskSize = 0 + +2025-09-24 13:47:33,169 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:47:42,995 INFO [long-pulling] client count 0 + +2025-09-24 13:47:43,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:47:43,171 INFO toNotifyTaskSize = 0 + +2025-09-24 13:47:43,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:47:52,996 INFO [long-pulling] client count 0 + +2025-09-24 13:47:53,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:47:53,173 INFO toNotifyTaskSize = 0 + +2025-09-24 13:47:53,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:48:02,997 INFO [long-pulling] client count 0 + +2025-09-24 13:48:03,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:48:03,173 INFO toNotifyTaskSize = 0 + +2025-09-24 13:48:03,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:48:12,999 INFO [long-pulling] client count 0 + +2025-09-24 13:48:13,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:48:13,174 INFO toNotifyTaskSize = 0 + +2025-09-24 13:48:13,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:48:23,000 INFO [long-pulling] client count 0 + +2025-09-24 13:48:23,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:48:23,174 INFO toNotifyTaskSize = 0 + +2025-09-24 13:48:23,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:48:33,001 INFO [long-pulling] client count 0 + +2025-09-24 13:48:33,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:48:33,175 INFO toNotifyTaskSize = 0 + +2025-09-24 13:48:33,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:48:43,001 INFO [long-pulling] client count 0 + +2025-09-24 13:48:43,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:48:43,175 INFO toNotifyTaskSize = 0 + +2025-09-24 13:48:43,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:48:53,002 INFO [long-pulling] client count 0 + +2025-09-24 13:48:53,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:48:53,176 INFO toNotifyTaskSize = 0 + +2025-09-24 13:48:53,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:49:03,002 INFO [long-pulling] client count 0 + +2025-09-24 13:49:03,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:49:03,177 INFO toNotifyTaskSize = 0 + +2025-09-24 13:49:03,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:49:13,003 INFO [long-pulling] client count 0 + +2025-09-24 13:49:13,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:49:13,179 INFO toNotifyTaskSize = 0 + +2025-09-24 13:49:13,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:49:23,005 INFO [long-pulling] client count 0 + +2025-09-24 13:49:23,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:49:23,181 INFO toNotifyTaskSize = 0 + +2025-09-24 13:49:23,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:49:33,006 INFO [long-pulling] client count 0 + +2025-09-24 13:49:33,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:49:33,183 INFO toNotifyTaskSize = 0 + +2025-09-24 13:49:33,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:49:43,008 INFO [long-pulling] client count 0 + +2025-09-24 13:49:43,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:49:43,184 INFO toNotifyTaskSize = 0 + +2025-09-24 13:49:43,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:49:53,008 INFO [long-pulling] client count 0 + +2025-09-24 13:49:53,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:49:53,184 INFO toNotifyTaskSize = 0 + +2025-09-24 13:49:53,185 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:50:03,008 INFO [long-pulling] client count 0 + +2025-09-24 13:50:03,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:50:03,186 INFO toNotifyTaskSize = 0 + +2025-09-24 13:50:03,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:50:13,009 INFO [long-pulling] client count 0 + +2025-09-24 13:50:13,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:50:13,187 INFO toNotifyTaskSize = 0 + +2025-09-24 13:50:13,187 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:50:23,011 INFO [long-pulling] client count 0 + +2025-09-24 13:50:23,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:50:23,187 INFO toNotifyTaskSize = 0 + +2025-09-24 13:50:23,187 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:50:33,014 INFO [long-pulling] client count 0 + +2025-09-24 13:50:33,025 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:50:33,189 INFO toNotifyTaskSize = 0 + +2025-09-24 13:50:33,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:50:43,014 INFO [long-pulling] client count 0 + +2025-09-24 13:50:43,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:50:43,189 INFO toNotifyTaskSize = 0 + +2025-09-24 13:50:43,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:50:53,015 INFO [long-pulling] client count 0 + +2025-09-24 13:50:53,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:50:53,191 INFO toNotifyTaskSize = 0 + +2025-09-24 13:50:53,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:51:03,016 INFO [long-pulling] client count 0 + +2025-09-24 13:51:03,026 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:51:03,191 INFO toNotifyTaskSize = 0 + +2025-09-24 13:51:03,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:51:13,018 INFO [long-pulling] client count 0 + +2025-09-24 13:51:13,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:51:13,192 INFO toNotifyTaskSize = 0 + +2025-09-24 13:51:13,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:51:23,019 INFO [long-pulling] client count 0 + +2025-09-24 13:51:23,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:51:23,192 INFO toNotifyTaskSize = 0 + +2025-09-24 13:51:23,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:51:33,020 INFO [long-pulling] client count 0 + +2025-09-24 13:51:33,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:51:33,193 INFO toNotifyTaskSize = 0 + +2025-09-24 13:51:33,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:51:43,021 INFO [long-pulling] client count 0 + +2025-09-24 13:51:43,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:51:43,194 INFO toNotifyTaskSize = 0 + +2025-09-24 13:51:43,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:51:53,021 INFO [long-pulling] client count 0 + +2025-09-24 13:51:53,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:51:53,195 INFO toNotifyTaskSize = 0 + +2025-09-24 13:51:53,195 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:52:03,021 INFO [long-pulling] client count 0 + +2025-09-24 13:52:03,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:52:03,196 INFO toNotifyTaskSize = 0 + +2025-09-24 13:52:03,196 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:52:13,022 INFO [long-pulling] client count 0 + +2025-09-24 13:52:13,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:52:13,196 INFO toNotifyTaskSize = 0 + +2025-09-24 13:52:13,196 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:52:23,023 INFO [long-pulling] client count 0 + +2025-09-24 13:52:23,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:52:23,196 INFO toNotifyTaskSize = 0 + +2025-09-24 13:52:23,196 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:52:33,023 INFO [long-pulling] client count 0 + +2025-09-24 13:52:33,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:52:33,197 INFO toNotifyTaskSize = 0 + +2025-09-24 13:52:33,197 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:52:43,023 INFO [long-pulling] client count 0 + +2025-09-24 13:52:43,035 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:52:43,198 INFO toNotifyTaskSize = 0 + +2025-09-24 13:52:43,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:52:53,026 INFO [long-pulling] client count 0 + +2025-09-24 13:52:53,036 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:52:53,198 INFO toNotifyTaskSize = 0 + +2025-09-24 13:52:53,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:53:03,027 INFO [long-pulling] client count 0 + +2025-09-24 13:53:03,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:53:03,200 INFO toNotifyTaskSize = 0 + +2025-09-24 13:53:03,200 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:53:13,029 INFO [long-pulling] client count 0 + +2025-09-24 13:53:13,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:53:13,200 INFO toNotifyTaskSize = 0 + +2025-09-24 13:53:13,201 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:53:23,030 INFO [long-pulling] client count 0 + +2025-09-24 13:53:23,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:53:23,202 INFO toNotifyTaskSize = 0 + +2025-09-24 13:53:23,203 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:53:33,032 INFO [long-pulling] client count 0 + +2025-09-24 13:53:33,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:53:33,203 INFO toNotifyTaskSize = 0 + +2025-09-24 13:53:33,203 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:53:43,033 INFO [long-pulling] client count 0 + +2025-09-24 13:53:43,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:53:43,204 INFO toNotifyTaskSize = 0 + +2025-09-24 13:53:43,204 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:53:53,033 INFO [long-pulling] client count 0 + +2025-09-24 13:53:53,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:53:53,204 INFO toNotifyTaskSize = 0 + +2025-09-24 13:53:53,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:54:03,033 INFO [long-pulling] client count 0 + +2025-09-24 13:54:03,046 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:54:03,205 INFO toNotifyTaskSize = 0 + +2025-09-24 13:54:03,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:54:13,034 INFO [long-pulling] client count 0 + +2025-09-24 13:54:13,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:54:13,205 INFO toNotifyTaskSize = 0 + +2025-09-24 13:54:13,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:54:23,035 INFO [long-pulling] client count 0 + +2025-09-24 13:54:23,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:54:23,206 INFO toNotifyTaskSize = 0 + +2025-09-24 13:54:23,206 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:54:33,037 INFO [long-pulling] client count 0 + +2025-09-24 13:54:33,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:54:33,207 INFO toNotifyTaskSize = 0 + +2025-09-24 13:54:33,207 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:54:43,039 INFO [long-pulling] client count 0 + +2025-09-24 13:54:43,052 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:54:43,209 INFO toNotifyTaskSize = 0 + +2025-09-24 13:54:43,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:54:53,041 INFO [long-pulling] client count 0 + +2025-09-24 13:54:53,052 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:54:53,210 INFO toNotifyTaskSize = 0 + +2025-09-24 13:54:53,210 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:55:03,041 INFO [long-pulling] client count 0 + +2025-09-24 13:55:03,053 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:55:03,211 INFO toNotifyTaskSize = 0 + +2025-09-24 13:55:03,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:55:13,042 INFO [long-pulling] client count 0 + +2025-09-24 13:55:13,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:55:13,211 INFO toNotifyTaskSize = 0 + +2025-09-24 13:55:13,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:55:23,044 INFO [long-pulling] client count 0 + +2025-09-24 13:55:23,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:55:23,212 INFO toNotifyTaskSize = 0 + +2025-09-24 13:55:23,212 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:55:33,046 INFO [long-pulling] client count 0 + +2025-09-24 13:55:33,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:55:33,214 INFO toNotifyTaskSize = 0 + +2025-09-24 13:55:33,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:55:43,048 INFO [long-pulling] client count 0 + +2025-09-24 13:55:43,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:55:43,214 INFO toNotifyTaskSize = 0 + +2025-09-24 13:55:43,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:55:53,048 INFO [long-pulling] client count 0 + +2025-09-24 13:55:53,062 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:55:53,216 INFO toNotifyTaskSize = 0 + +2025-09-24 13:55:53,216 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:56:03,049 INFO [long-pulling] client count 0 + +2025-09-24 13:56:03,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:56:03,217 INFO toNotifyTaskSize = 0 + +2025-09-24 13:56:03,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:56:13,049 INFO [long-pulling] client count 0 + +2025-09-24 13:56:13,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:56:13,217 INFO toNotifyTaskSize = 0 + +2025-09-24 13:56:13,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:56:23,050 INFO [long-pulling] client count 0 + +2025-09-24 13:56:23,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:56:23,217 INFO toNotifyTaskSize = 0 + +2025-09-24 13:56:23,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:56:33,051 INFO [long-pulling] client count 0 + +2025-09-24 13:56:33,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:56:33,220 INFO toNotifyTaskSize = 0 + +2025-09-24 13:56:33,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:56:43,052 INFO [long-pulling] client count 0 + +2025-09-24 13:56:43,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:56:43,222 INFO toNotifyTaskSize = 0 + +2025-09-24 13:56:43,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:56:53,054 INFO [long-pulling] client count 0 + +2025-09-24 13:56:53,069 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:56:53,224 INFO toNotifyTaskSize = 0 + +2025-09-24 13:56:53,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:57:03,056 INFO [long-pulling] client count 0 + +2025-09-24 13:57:03,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:57:03,224 INFO toNotifyTaskSize = 0 + +2025-09-24 13:57:03,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:57:13,057 INFO [long-pulling] client count 0 + +2025-09-24 13:57:13,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:57:13,227 INFO toNotifyTaskSize = 0 + +2025-09-24 13:57:13,227 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:57:23,058 INFO [long-pulling] client count 0 + +2025-09-24 13:57:23,074 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:57:23,229 INFO toNotifyTaskSize = 0 + +2025-09-24 13:57:23,229 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:57:33,060 INFO [long-pulling] client count 0 + +2025-09-24 13:57:33,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:57:33,230 INFO toNotifyTaskSize = 0 + +2025-09-24 13:57:33,231 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:57:43,060 INFO [long-pulling] client count 0 + +2025-09-24 13:57:43,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:57:43,232 INFO toNotifyTaskSize = 0 + +2025-09-24 13:57:43,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:57:53,060 INFO [long-pulling] client count 0 + +2025-09-24 13:57:53,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:57:53,234 INFO toNotifyTaskSize = 0 + +2025-09-24 13:57:53,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:58:03,062 INFO [long-pulling] client count 0 + +2025-09-24 13:58:03,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:58:03,236 INFO toNotifyTaskSize = 0 + +2025-09-24 13:58:03,236 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:58:13,063 INFO [long-pulling] client count 0 + +2025-09-24 13:58:13,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:58:13,238 INFO toNotifyTaskSize = 0 + +2025-09-24 13:58:13,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:58:23,063 INFO [long-pulling] client count 0 + +2025-09-24 13:58:23,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:58:23,240 INFO toNotifyTaskSize = 0 + +2025-09-24 13:58:23,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:58:33,064 INFO [long-pulling] client count 0 + +2025-09-24 13:58:33,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:58:33,241 INFO toNotifyTaskSize = 0 + +2025-09-24 13:58:33,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:58:43,064 INFO [long-pulling] client count 0 + +2025-09-24 13:58:43,080 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:58:43,243 INFO toNotifyTaskSize = 0 + +2025-09-24 13:58:43,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:58:53,065 INFO [long-pulling] client count 0 + +2025-09-24 13:58:53,080 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:58:53,245 INFO toNotifyTaskSize = 0 + +2025-09-24 13:58:53,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:59:03,067 INFO [long-pulling] client count 0 + +2025-09-24 13:59:03,082 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:59:03,248 INFO toNotifyTaskSize = 0 + +2025-09-24 13:59:03,248 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:59:13,067 INFO [long-pulling] client count 0 + +2025-09-24 13:59:13,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:59:13,250 INFO toNotifyTaskSize = 0 + +2025-09-24 13:59:13,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:59:23,067 INFO [long-pulling] client count 0 + +2025-09-24 13:59:23,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:59:23,252 INFO toNotifyTaskSize = 0 + +2025-09-24 13:59:23,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:59:33,068 INFO [long-pulling] client count 0 + +2025-09-24 13:59:33,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:59:33,253 INFO toNotifyTaskSize = 0 + +2025-09-24 13:59:33,253 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:59:43,070 INFO [long-pulling] client count 0 + +2025-09-24 13:59:43,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:59:43,254 INFO toNotifyTaskSize = 0 + +2025-09-24 13:59:43,254 INFO toClientNotifyTaskSize = 0 + +2025-09-24 13:59:53,071 INFO [long-pulling] client count 0 + +2025-09-24 13:59:53,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 13:59:53,256 INFO toNotifyTaskSize = 0 + +2025-09-24 13:59:53,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:00:03,071 INFO [long-pulling] client count 0 + +2025-09-24 14:00:03,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:00:03,257 INFO toNotifyTaskSize = 0 + +2025-09-24 14:00:03,257 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:00:13,072 INFO [long-pulling] client count 0 + +2025-09-24 14:00:13,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:00:13,257 INFO toNotifyTaskSize = 0 + +2025-09-24 14:00:13,257 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:00:23,073 INFO [long-pulling] client count 0 + +2025-09-24 14:00:23,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:00:23,258 INFO toNotifyTaskSize = 0 + +2025-09-24 14:00:23,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:00:33,074 INFO [long-pulling] client count 0 + +2025-09-24 14:00:33,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:00:33,260 INFO toNotifyTaskSize = 0 + +2025-09-24 14:00:33,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:00:43,074 INFO [long-pulling] client count 0 + +2025-09-24 14:00:43,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:00:43,260 INFO toNotifyTaskSize = 0 + +2025-09-24 14:00:43,261 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:00:53,074 INFO [long-pulling] client count 0 + +2025-09-24 14:00:53,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:00:53,261 INFO toNotifyTaskSize = 0 + +2025-09-24 14:00:53,261 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:01:03,076 INFO [long-pulling] client count 0 + +2025-09-24 14:01:03,098 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:01:03,262 INFO toNotifyTaskSize = 0 + +2025-09-24 14:01:03,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:01:13,077 INFO [long-pulling] client count 0 + +2025-09-24 14:01:13,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:01:13,264 INFO toNotifyTaskSize = 0 + +2025-09-24 14:01:13,264 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:01:23,080 INFO [long-pulling] client count 0 + +2025-09-24 14:01:23,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:01:23,265 INFO toNotifyTaskSize = 0 + +2025-09-24 14:01:23,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:01:33,082 INFO [long-pulling] client count 0 + +2025-09-24 14:01:33,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:01:33,266 INFO toNotifyTaskSize = 0 + +2025-09-24 14:01:33,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:01:43,084 INFO [long-pulling] client count 0 + +2025-09-24 14:01:43,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:01:43,268 INFO toNotifyTaskSize = 0 + +2025-09-24 14:01:43,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:01:53,085 INFO [long-pulling] client count 0 + +2025-09-24 14:01:53,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:01:53,270 INFO toNotifyTaskSize = 0 + +2025-09-24 14:01:53,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:02:03,087 INFO [long-pulling] client count 0 + +2025-09-24 14:02:03,103 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:02:03,271 INFO toNotifyTaskSize = 0 + +2025-09-24 14:02:03,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:02:13,089 INFO [long-pulling] client count 0 + +2025-09-24 14:02:13,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:02:13,272 INFO toNotifyTaskSize = 0 + +2025-09-24 14:02:13,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:02:23,090 INFO [long-pulling] client count 0 + +2025-09-24 14:02:23,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:02:23,273 INFO toNotifyTaskSize = 0 + +2025-09-24 14:02:23,273 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:02:33,093 INFO [long-pulling] client count 0 + +2025-09-24 14:02:33,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:02:33,275 INFO toNotifyTaskSize = 0 + +2025-09-24 14:02:33,275 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:02:43,094 INFO [long-pulling] client count 0 + +2025-09-24 14:02:43,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:02:43,275 INFO toNotifyTaskSize = 0 + +2025-09-24 14:02:43,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:02:53,096 INFO [long-pulling] client count 0 + +2025-09-24 14:02:53,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:02:53,276 INFO toNotifyTaskSize = 0 + +2025-09-24 14:02:53,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:03:03,097 INFO [long-pulling] client count 0 + +2025-09-24 14:03:03,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:03:03,277 INFO toNotifyTaskSize = 0 + +2025-09-24 14:03:03,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:03:13,099 INFO [long-pulling] client count 0 + +2025-09-24 14:03:13,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:03:13,277 INFO toNotifyTaskSize = 0 + +2025-09-24 14:03:13,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:03:23,101 INFO [long-pulling] client count 0 + +2025-09-24 14:03:23,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:03:23,278 INFO toNotifyTaskSize = 0 + +2025-09-24 14:03:23,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:03:33,103 INFO [long-pulling] client count 0 + +2025-09-24 14:03:33,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:03:33,278 INFO toNotifyTaskSize = 0 + +2025-09-24 14:03:33,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:03:43,105 INFO [long-pulling] client count 0 + +2025-09-24 14:03:43,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:03:43,279 INFO toNotifyTaskSize = 0 + +2025-09-24 14:03:43,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:03:53,105 INFO [long-pulling] client count 0 + +2025-09-24 14:03:53,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:03:53,279 INFO toNotifyTaskSize = 0 + +2025-09-24 14:03:53,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:04:03,108 INFO [long-pulling] client count 0 + +2025-09-24 14:04:03,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:04:03,280 INFO toNotifyTaskSize = 0 + +2025-09-24 14:04:03,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:04:13,108 INFO [long-pulling] client count 0 + +2025-09-24 14:04:13,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:04:13,281 INFO toNotifyTaskSize = 0 + +2025-09-24 14:04:13,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:04:23,108 INFO [long-pulling] client count 0 + +2025-09-24 14:04:23,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:04:23,281 INFO toNotifyTaskSize = 0 + +2025-09-24 14:04:23,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:04:33,112 INFO [long-pulling] client count 0 + +2025-09-24 14:04:33,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:04:33,283 INFO toNotifyTaskSize = 0 + +2025-09-24 14:04:33,283 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:04:43,112 INFO [long-pulling] client count 0 + +2025-09-24 14:04:43,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:04:43,284 INFO toNotifyTaskSize = 0 + +2025-09-24 14:04:43,284 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:04:53,115 INFO [long-pulling] client count 0 + +2025-09-24 14:04:53,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:04:53,286 INFO toNotifyTaskSize = 0 + +2025-09-24 14:04:53,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:05:03,116 INFO [long-pulling] client count 0 + +2025-09-24 14:05:03,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:05:03,287 INFO toNotifyTaskSize = 0 + +2025-09-24 14:05:03,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:05:13,118 INFO [long-pulling] client count 0 + +2025-09-24 14:05:13,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:05:13,289 INFO toNotifyTaskSize = 0 + +2025-09-24 14:05:13,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:05:23,119 INFO [long-pulling] client count 0 + +2025-09-24 14:05:23,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:05:23,290 INFO toNotifyTaskSize = 0 + +2025-09-24 14:05:23,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:05:33,122 INFO [long-pulling] client count 0 + +2025-09-24 14:05:33,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:05:33,290 INFO toNotifyTaskSize = 0 + +2025-09-24 14:05:33,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:05:43,124 INFO [long-pulling] client count 0 + +2025-09-24 14:05:43,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:05:43,291 INFO toNotifyTaskSize = 0 + +2025-09-24 14:05:43,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:05:53,125 INFO [long-pulling] client count 0 + +2025-09-24 14:05:53,130 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:05:53,294 INFO toNotifyTaskSize = 0 + +2025-09-24 14:05:53,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:06:03,126 INFO [long-pulling] client count 0 + +2025-09-24 14:06:03,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:06:03,296 INFO toNotifyTaskSize = 0 + +2025-09-24 14:06:03,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:06:13,128 INFO [long-pulling] client count 0 + +2025-09-24 14:06:13,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:06:13,298 INFO toNotifyTaskSize = 0 + +2025-09-24 14:06:13,299 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:06:23,130 INFO [long-pulling] client count 0 + +2025-09-24 14:06:23,135 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:06:23,300 INFO toNotifyTaskSize = 0 + +2025-09-24 14:06:23,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:06:33,132 INFO [long-pulling] client count 0 + +2025-09-24 14:06:33,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:06:33,301 INFO toNotifyTaskSize = 0 + +2025-09-24 14:06:33,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:06:43,134 INFO [long-pulling] client count 0 + +2025-09-24 14:06:43,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:06:43,303 INFO toNotifyTaskSize = 0 + +2025-09-24 14:06:43,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:06:53,136 INFO [long-pulling] client count 0 + +2025-09-24 14:06:53,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:06:53,305 INFO toNotifyTaskSize = 0 + +2025-09-24 14:06:53,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:07:03,136 INFO [long-pulling] client count 0 + +2025-09-24 14:07:03,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:07:03,306 INFO toNotifyTaskSize = 0 + +2025-09-24 14:07:03,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:07:13,138 INFO [long-pulling] client count 0 + +2025-09-24 14:07:13,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:07:13,307 INFO toNotifyTaskSize = 0 + +2025-09-24 14:07:13,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:07:23,139 INFO [long-pulling] client count 0 + +2025-09-24 14:07:23,139 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:07:23,309 INFO toNotifyTaskSize = 0 + +2025-09-24 14:07:23,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:07:33,142 INFO [long-pulling] client count 0 + +2025-09-24 14:07:33,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:07:33,311 INFO toNotifyTaskSize = 0 + +2025-09-24 14:07:33,312 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:07:43,143 INFO [long-pulling] client count 0 + +2025-09-24 14:07:43,143 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:07:43,314 INFO toNotifyTaskSize = 0 + +2025-09-24 14:07:43,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:07:53,145 INFO [long-pulling] client count 0 + +2025-09-24 14:07:53,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:07:53,316 INFO toNotifyTaskSize = 0 + +2025-09-24 14:07:53,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:08:03,147 INFO [long-pulling] client count 0 + +2025-09-24 14:08:03,147 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:08:03,318 INFO toNotifyTaskSize = 0 + +2025-09-24 14:08:03,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:08:13,148 INFO [long-pulling] client count 0 + +2025-09-24 14:08:13,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:08:13,319 INFO toNotifyTaskSize = 0 + +2025-09-24 14:08:13,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:08:23,148 INFO [long-pulling] client count 0 + +2025-09-24 14:08:23,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:08:23,320 INFO toNotifyTaskSize = 0 + +2025-09-24 14:08:23,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:08:33,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:08:33,151 INFO [long-pulling] client count 0 + +2025-09-24 14:08:33,322 INFO toNotifyTaskSize = 0 + +2025-09-24 14:08:33,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:08:43,154 INFO [long-pulling] client count 0 + +2025-09-24 14:08:43,154 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:08:43,324 INFO toNotifyTaskSize = 0 + +2025-09-24 14:08:43,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:08:53,154 INFO [long-pulling] client count 0 + +2025-09-24 14:08:53,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:08:53,326 INFO toNotifyTaskSize = 0 + +2025-09-24 14:08:53,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:09:03,156 INFO [long-pulling] client count 0 + +2025-09-24 14:09:03,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:09:03,328 INFO toNotifyTaskSize = 0 + +2025-09-24 14:09:03,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:09:13,157 INFO [long-pulling] client count 0 + +2025-09-24 14:09:13,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:09:13,330 INFO toNotifyTaskSize = 0 + +2025-09-24 14:09:13,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:09:23,158 INFO [long-pulling] client count 0 + +2025-09-24 14:09:23,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:09:23,333 INFO toNotifyTaskSize = 0 + +2025-09-24 14:09:23,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:09:33,160 INFO [long-pulling] client count 0 + +2025-09-24 14:09:33,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:09:33,335 INFO toNotifyTaskSize = 0 + +2025-09-24 14:09:33,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:09:43,162 INFO [long-pulling] client count 0 + +2025-09-24 14:09:43,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:09:43,338 INFO toNotifyTaskSize = 0 + +2025-09-24 14:09:43,338 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:09:53,163 INFO [long-pulling] client count 0 + +2025-09-24 14:09:53,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:09:53,338 INFO toNotifyTaskSize = 0 + +2025-09-24 14:09:53,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:10:03,165 INFO [long-pulling] client count 0 + +2025-09-24 14:10:03,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:10:03,339 INFO toNotifyTaskSize = 0 + +2025-09-24 14:10:03,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:10:13,168 INFO [long-pulling] client count 0 + +2025-09-24 14:10:13,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:10:13,339 INFO toNotifyTaskSize = 0 + +2025-09-24 14:10:13,340 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:10:23,169 INFO [long-pulling] client count 0 + +2025-09-24 14:10:23,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:10:23,341 INFO toNotifyTaskSize = 0 + +2025-09-24 14:10:23,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:10:33,172 INFO [long-pulling] client count 0 + +2025-09-24 14:10:33,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:10:33,343 INFO toNotifyTaskSize = 0 + +2025-09-24 14:10:33,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:10:43,173 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:10:43,173 INFO [long-pulling] client count 0 + +2025-09-24 14:10:43,344 INFO toNotifyTaskSize = 0 + +2025-09-24 14:10:43,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:10:53,175 INFO [long-pulling] client count 0 + +2025-09-24 14:10:53,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:10:53,344 INFO toNotifyTaskSize = 0 + +2025-09-24 14:10:53,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:11:03,176 INFO [long-pulling] client count 0 + +2025-09-24 14:11:03,176 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:11:03,346 INFO toNotifyTaskSize = 0 + +2025-09-24 14:11:03,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:11:13,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:11:13,177 INFO [long-pulling] client count 0 + +2025-09-24 14:11:13,348 INFO toNotifyTaskSize = 0 + +2025-09-24 14:11:13,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:11:23,180 INFO [long-pulling] client count 0 + +2025-09-24 14:11:23,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:11:23,351 INFO toNotifyTaskSize = 0 + +2025-09-24 14:11:23,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:11:33,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:11:33,181 INFO [long-pulling] client count 0 + +2025-09-24 14:11:33,352 INFO toNotifyTaskSize = 0 + +2025-09-24 14:11:33,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:11:43,182 INFO [long-pulling] client count 0 + +2025-09-24 14:11:43,182 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:11:43,354 INFO toNotifyTaskSize = 0 + +2025-09-24 14:11:43,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:11:53,184 INFO [long-pulling] client count 0 + +2025-09-24 14:11:53,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:11:53,355 INFO toNotifyTaskSize = 0 + +2025-09-24 14:11:53,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:12:03,186 INFO [long-pulling] client count 0 + +2025-09-24 14:12:03,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:12:03,357 INFO toNotifyTaskSize = 0 + +2025-09-24 14:12:03,357 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:12:13,188 INFO [long-pulling] client count 0 + +2025-09-24 14:12:13,188 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:12:13,359 INFO toNotifyTaskSize = 0 + +2025-09-24 14:12:13,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:12:23,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:12:23,189 INFO [long-pulling] client count 0 + +2025-09-24 14:12:23,359 INFO toNotifyTaskSize = 0 + +2025-09-24 14:12:23,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:12:33,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:12:33,193 INFO [long-pulling] client count 0 + +2025-09-24 14:12:33,360 INFO toNotifyTaskSize = 0 + +2025-09-24 14:12:33,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:12:43,195 INFO [long-pulling] client count 0 + +2025-09-24 14:12:43,195 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:12:43,361 INFO toNotifyTaskSize = 0 + +2025-09-24 14:12:43,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:12:53,195 INFO [long-pulling] client count 0 + +2025-09-24 14:12:53,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:12:53,361 INFO toNotifyTaskSize = 0 + +2025-09-24 14:12:53,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:13:03,196 INFO [long-pulling] client count 0 + +2025-09-24 14:13:03,197 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:13:03,362 INFO toNotifyTaskSize = 0 + +2025-09-24 14:13:03,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:13:13,197 INFO [long-pulling] client count 0 + +2025-09-24 14:13:13,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:13:13,363 INFO toNotifyTaskSize = 0 + +2025-09-24 14:13:13,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:13:23,197 INFO [long-pulling] client count 0 + +2025-09-24 14:13:23,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:13:23,364 INFO toNotifyTaskSize = 0 + +2025-09-24 14:13:23,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:13:33,199 INFO [long-pulling] client count 0 + +2025-09-24 14:13:33,199 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:13:33,367 INFO toNotifyTaskSize = 0 + +2025-09-24 14:13:33,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:13:43,199 INFO [long-pulling] client count 0 + +2025-09-24 14:13:43,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:13:43,367 INFO toNotifyTaskSize = 0 + +2025-09-24 14:13:43,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:13:53,200 INFO [long-pulling] client count 0 + +2025-09-24 14:13:53,201 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:13:53,367 INFO toNotifyTaskSize = 0 + +2025-09-24 14:13:53,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:14:03,202 INFO [long-pulling] client count 0 + +2025-09-24 14:14:03,202 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:14:03,370 INFO toNotifyTaskSize = 0 + +2025-09-24 14:14:03,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:14:13,203 INFO [long-pulling] client count 0 + +2025-09-24 14:14:13,203 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:14:13,370 INFO toNotifyTaskSize = 0 + +2025-09-24 14:14:13,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:14:23,203 INFO [long-pulling] client count 0 + +2025-09-24 14:14:23,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:14:23,372 INFO toNotifyTaskSize = 0 + +2025-09-24 14:14:23,372 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:14:33,204 INFO [long-pulling] client count 0 + +2025-09-24 14:14:33,205 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:14:33,373 INFO toNotifyTaskSize = 0 + +2025-09-24 14:14:33,373 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:14:43,205 INFO [long-pulling] client count 0 + +2025-09-24 14:14:43,205 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:14:43,374 INFO toNotifyTaskSize = 0 + +2025-09-24 14:14:43,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:14:53,207 INFO [long-pulling] client count 0 + +2025-09-24 14:14:53,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:14:53,376 INFO toNotifyTaskSize = 0 + +2025-09-24 14:14:53,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:15:03,207 INFO [long-pulling] client count 0 + +2025-09-24 14:15:03,208 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:15:03,377 INFO toNotifyTaskSize = 0 + +2025-09-24 14:15:03,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:15:13,208 INFO [long-pulling] client count 0 + +2025-09-24 14:15:13,208 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:15:13,378 INFO toNotifyTaskSize = 0 + +2025-09-24 14:15:13,378 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:15:23,210 INFO [long-pulling] client count 0 + +2025-09-24 14:15:23,210 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:15:23,378 INFO toNotifyTaskSize = 0 + +2025-09-24 14:15:23,378 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:15:33,212 INFO [long-pulling] client count 0 + +2025-09-24 14:15:33,212 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:15:33,379 INFO toNotifyTaskSize = 0 + +2025-09-24 14:15:33,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:15:43,213 INFO [long-pulling] client count 0 + +2025-09-24 14:15:43,213 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:15:43,380 INFO toNotifyTaskSize = 0 + +2025-09-24 14:15:43,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:15:53,214 INFO [long-pulling] client count 0 + +2025-09-24 14:15:53,214 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:15:53,381 INFO toNotifyTaskSize = 0 + +2025-09-24 14:15:53,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:16:03,214 INFO [long-pulling] client count 0 + +2025-09-24 14:16:03,215 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:16:03,382 INFO toNotifyTaskSize = 0 + +2025-09-24 14:16:03,382 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:16:13,215 INFO [long-pulling] client count 0 + +2025-09-24 14:16:13,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:16:13,384 INFO toNotifyTaskSize = 0 + +2025-09-24 14:16:13,384 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:16:23,216 INFO [long-pulling] client count 0 + +2025-09-24 14:16:23,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:16:23,385 INFO toNotifyTaskSize = 0 + +2025-09-24 14:16:23,385 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:16:33,217 INFO [long-pulling] client count 0 + +2025-09-24 14:16:33,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:16:33,387 INFO toNotifyTaskSize = 0 + +2025-09-24 14:16:33,387 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:16:43,218 INFO [long-pulling] client count 0 + +2025-09-24 14:16:43,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:16:43,389 INFO toNotifyTaskSize = 0 + +2025-09-24 14:16:43,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:16:53,218 INFO [long-pulling] client count 0 + +2025-09-24 14:16:53,220 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:16:53,390 INFO toNotifyTaskSize = 0 + +2025-09-24 14:16:53,390 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:17:03,219 INFO [long-pulling] client count 0 + +2025-09-24 14:17:03,221 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:17:03,390 INFO toNotifyTaskSize = 0 + +2025-09-24 14:17:03,390 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:17:13,220 INFO [long-pulling] client count 0 + +2025-09-24 14:17:13,224 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:17:13,392 INFO toNotifyTaskSize = 0 + +2025-09-24 14:17:13,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:17:23,221 INFO [long-pulling] client count 0 + +2025-09-24 14:17:23,226 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:17:23,392 INFO toNotifyTaskSize = 0 + +2025-09-24 14:17:23,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:17:33,222 INFO [long-pulling] client count 0 + +2025-09-24 14:17:33,227 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:17:33,393 INFO toNotifyTaskSize = 0 + +2025-09-24 14:17:33,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:17:43,223 INFO [long-pulling] client count 0 + +2025-09-24 14:17:43,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:17:43,394 INFO toNotifyTaskSize = 0 + +2025-09-24 14:17:43,394 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:17:53,225 INFO [long-pulling] client count 0 + +2025-09-24 14:17:53,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:17:53,394 INFO toNotifyTaskSize = 0 + +2025-09-24 14:17:53,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:18:03,226 INFO [long-pulling] client count 0 + +2025-09-24 14:18:03,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:18:03,396 INFO toNotifyTaskSize = 0 + +2025-09-24 14:18:03,396 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:18:13,226 INFO [long-pulling] client count 0 + +2025-09-24 14:18:13,232 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:18:13,396 INFO toNotifyTaskSize = 0 + +2025-09-24 14:18:13,396 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:18:23,228 INFO [long-pulling] client count 0 + +2025-09-24 14:18:23,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:18:23,397 INFO toNotifyTaskSize = 0 + +2025-09-24 14:18:23,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:18:33,229 INFO [long-pulling] client count 0 + +2025-09-24 14:18:33,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:18:33,398 INFO toNotifyTaskSize = 0 + +2025-09-24 14:18:33,398 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:18:43,230 INFO [long-pulling] client count 0 + +2025-09-24 14:18:43,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:18:43,399 INFO toNotifyTaskSize = 0 + +2025-09-24 14:18:43,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:18:53,230 INFO [long-pulling] client count 0 + +2025-09-24 14:18:53,238 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:18:53,399 INFO toNotifyTaskSize = 0 + +2025-09-24 14:18:53,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:19:03,231 INFO [long-pulling] client count 0 + +2025-09-24 14:19:03,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:19:03,401 INFO toNotifyTaskSize = 0 + +2025-09-24 14:19:03,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:19:13,231 INFO [long-pulling] client count 0 + +2025-09-24 14:19:13,240 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:19:13,403 INFO toNotifyTaskSize = 0 + +2025-09-24 14:19:13,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:19:23,233 INFO [long-pulling] client count 0 + +2025-09-24 14:19:23,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:19:23,404 INFO toNotifyTaskSize = 0 + +2025-09-24 14:19:23,404 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:19:33,234 INFO [long-pulling] client count 0 + +2025-09-24 14:19:33,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:19:33,405 INFO toNotifyTaskSize = 0 + +2025-09-24 14:19:33,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:19:43,234 INFO [long-pulling] client count 0 + +2025-09-24 14:19:43,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:19:43,405 INFO toNotifyTaskSize = 0 + +2025-09-24 14:19:43,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:19:53,235 INFO [long-pulling] client count 0 + +2025-09-24 14:19:53,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:19:53,405 INFO toNotifyTaskSize = 0 + +2025-09-24 14:19:53,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:20:03,235 INFO [long-pulling] client count 0 + +2025-09-24 14:20:03,243 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:20:03,406 INFO toNotifyTaskSize = 0 + +2025-09-24 14:20:03,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:20:13,237 INFO [long-pulling] client count 0 + +2025-09-24 14:20:13,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:20:13,407 INFO toNotifyTaskSize = 0 + +2025-09-24 14:20:13,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:20:23,237 INFO [long-pulling] client count 0 + +2025-09-24 14:20:23,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:20:23,407 INFO toNotifyTaskSize = 0 + +2025-09-24 14:20:23,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:20:33,239 INFO [long-pulling] client count 0 + +2025-09-24 14:20:33,247 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:20:33,409 INFO toNotifyTaskSize = 0 + +2025-09-24 14:20:33,410 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:20:43,240 INFO [long-pulling] client count 0 + +2025-09-24 14:20:43,247 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:20:43,412 INFO toNotifyTaskSize = 0 + +2025-09-24 14:20:43,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:20:53,240 INFO [long-pulling] client count 0 + +2025-09-24 14:20:53,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:20:53,414 INFO toNotifyTaskSize = 0 + +2025-09-24 14:20:53,414 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:21:03,240 INFO [long-pulling] client count 0 + +2025-09-24 14:21:03,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:21:03,416 INFO toNotifyTaskSize = 0 + +2025-09-24 14:21:03,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:21:13,241 INFO [long-pulling] client count 0 + +2025-09-24 14:21:13,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:21:13,416 INFO toNotifyTaskSize = 0 + +2025-09-24 14:21:13,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:21:23,243 INFO [long-pulling] client count 0 + +2025-09-24 14:21:23,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:21:23,417 INFO toNotifyTaskSize = 0 + +2025-09-24 14:21:23,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:21:33,244 INFO [long-pulling] client count 0 + +2025-09-24 14:21:33,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:21:33,417 INFO toNotifyTaskSize = 0 + +2025-09-24 14:21:33,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:21:43,245 INFO [long-pulling] client count 0 + +2025-09-24 14:21:43,253 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:21:43,419 INFO toNotifyTaskSize = 0 + +2025-09-24 14:21:43,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:21:53,247 INFO [long-pulling] client count 0 + +2025-09-24 14:21:53,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:21:53,419 INFO toNotifyTaskSize = 0 + +2025-09-24 14:21:53,420 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:22:03,247 INFO [long-pulling] client count 0 + +2025-09-24 14:22:03,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:22:03,421 INFO toNotifyTaskSize = 0 + +2025-09-24 14:22:03,421 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:22:13,247 INFO [long-pulling] client count 0 + +2025-09-24 14:22:13,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:22:13,421 INFO toNotifyTaskSize = 0 + +2025-09-24 14:22:13,421 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:22:23,248 INFO [long-pulling] client count 0 + +2025-09-24 14:22:23,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:22:23,422 INFO toNotifyTaskSize = 0 + +2025-09-24 14:22:23,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:22:33,249 INFO [long-pulling] client count 0 + +2025-09-24 14:22:33,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:22:33,422 INFO toNotifyTaskSize = 0 + +2025-09-24 14:22:33,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:22:43,249 INFO [long-pulling] client count 0 + +2025-09-24 14:22:43,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:22:43,425 INFO toNotifyTaskSize = 0 + +2025-09-24 14:22:43,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:22:53,249 INFO [long-pulling] client count 0 + +2025-09-24 14:22:53,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:22:53,425 INFO toNotifyTaskSize = 0 + +2025-09-24 14:22:53,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:23:03,250 INFO [long-pulling] client count 0 + +2025-09-24 14:23:03,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:23:03,426 INFO toNotifyTaskSize = 0 + +2025-09-24 14:23:03,426 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:23:13,251 INFO [long-pulling] client count 0 + +2025-09-24 14:23:13,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:23:13,428 INFO toNotifyTaskSize = 0 + +2025-09-24 14:23:13,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:23:23,252 INFO [long-pulling] client count 0 + +2025-09-24 14:23:23,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:23:23,430 INFO toNotifyTaskSize = 0 + +2025-09-24 14:23:23,430 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:23:33,257 INFO [long-pulling] client count 0 + +2025-09-24 14:23:33,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:23:33,431 INFO toNotifyTaskSize = 0 + +2025-09-24 14:23:33,431 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:23:43,258 INFO [long-pulling] client count 0 + +2025-09-24 14:23:43,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:23:43,431 INFO toNotifyTaskSize = 0 + +2025-09-24 14:23:43,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:23:53,258 INFO [long-pulling] client count 0 + +2025-09-24 14:23:53,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:23:53,432 INFO toNotifyTaskSize = 0 + +2025-09-24 14:23:53,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:24:03,259 INFO [long-pulling] client count 0 + +2025-09-24 14:24:03,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:24:03,433 INFO toNotifyTaskSize = 0 + +2025-09-24 14:24:03,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:24:13,260 INFO [long-pulling] client count 0 + +2025-09-24 14:24:13,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:24:13,435 INFO toNotifyTaskSize = 0 + +2025-09-24 14:24:13,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:24:23,260 INFO [long-pulling] client count 0 + +2025-09-24 14:24:23,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:24:23,436 INFO toNotifyTaskSize = 0 + +2025-09-24 14:24:23,436 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:24:33,261 INFO [long-pulling] client count 0 + +2025-09-24 14:24:33,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:24:33,436 INFO toNotifyTaskSize = 0 + +2025-09-24 14:24:33,436 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:24:43,261 INFO [long-pulling] client count 0 + +2025-09-24 14:24:43,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:24:43,437 INFO toNotifyTaskSize = 0 + +2025-09-24 14:24:43,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:24:53,262 INFO [long-pulling] client count 0 + +2025-09-24 14:24:53,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:24:53,438 INFO toNotifyTaskSize = 0 + +2025-09-24 14:24:53,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:25:03,262 INFO [long-pulling] client count 0 + +2025-09-24 14:25:03,271 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:25:03,439 INFO toNotifyTaskSize = 0 + +2025-09-24 14:25:03,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:25:13,264 INFO [long-pulling] client count 0 + +2025-09-24 14:25:13,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:25:13,441 INFO toNotifyTaskSize = 0 + +2025-09-24 14:25:13,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:25:23,265 INFO [long-pulling] client count 0 + +2025-09-24 14:25:23,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:25:23,443 INFO toNotifyTaskSize = 0 + +2025-09-24 14:25:23,443 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:25:33,267 INFO [long-pulling] client count 0 + +2025-09-24 14:25:33,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:25:33,445 INFO toNotifyTaskSize = 0 + +2025-09-24 14:25:33,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:25:43,269 INFO [long-pulling] client count 0 + +2025-09-24 14:25:43,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:25:43,445 INFO toNotifyTaskSize = 0 + +2025-09-24 14:25:43,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:25:53,270 INFO [long-pulling] client count 0 + +2025-09-24 14:25:53,278 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:25:53,445 INFO toNotifyTaskSize = 0 + +2025-09-24 14:25:53,446 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:26:03,271 INFO [long-pulling] client count 0 + +2025-09-24 14:26:03,279 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:26:03,448 INFO toNotifyTaskSize = 0 + +2025-09-24 14:26:03,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:26:13,273 INFO [long-pulling] client count 0 + +2025-09-24 14:26:13,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:26:13,448 INFO toNotifyTaskSize = 0 + +2025-09-24 14:26:13,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:26:23,274 INFO [long-pulling] client count 0 + +2025-09-24 14:26:23,282 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:26:23,449 INFO toNotifyTaskSize = 0 + +2025-09-24 14:26:23,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:26:33,274 INFO [long-pulling] client count 0 + +2025-09-24 14:26:33,283 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:26:33,451 INFO toNotifyTaskSize = 0 + +2025-09-24 14:26:33,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:26:43,276 INFO [long-pulling] client count 0 + +2025-09-24 14:26:43,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:26:43,451 INFO toNotifyTaskSize = 0 + +2025-09-24 14:26:43,452 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:26:53,276 INFO [long-pulling] client count 0 + +2025-09-24 14:26:53,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:26:53,453 INFO toNotifyTaskSize = 0 + +2025-09-24 14:26:53,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:27:03,277 INFO [long-pulling] client count 0 + +2025-09-24 14:27:03,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:27:03,454 INFO toNotifyTaskSize = 0 + +2025-09-24 14:27:03,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:27:13,278 INFO [long-pulling] client count 0 + +2025-09-24 14:27:13,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:27:13,454 INFO toNotifyTaskSize = 0 + +2025-09-24 14:27:13,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:27:23,281 INFO [long-pulling] client count 0 + +2025-09-24 14:27:23,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:27:23,456 INFO toNotifyTaskSize = 0 + +2025-09-24 14:27:23,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:27:33,283 INFO [long-pulling] client count 0 + +2025-09-24 14:27:33,290 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:27:33,456 INFO toNotifyTaskSize = 0 + +2025-09-24 14:27:33,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:27:43,285 INFO [long-pulling] client count 0 + +2025-09-24 14:27:43,290 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:27:43,457 INFO toNotifyTaskSize = 0 + +2025-09-24 14:27:43,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:27:53,287 INFO [long-pulling] client count 0 + +2025-09-24 14:27:53,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:27:53,459 INFO toNotifyTaskSize = 0 + +2025-09-24 14:27:53,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:28:03,287 INFO [long-pulling] client count 0 + +2025-09-24 14:28:03,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:28:03,459 INFO toNotifyTaskSize = 0 + +2025-09-24 14:28:03,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:28:13,287 INFO [long-pulling] client count 0 + +2025-09-24 14:28:13,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:28:13,460 INFO toNotifyTaskSize = 0 + +2025-09-24 14:28:13,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:28:23,288 INFO [long-pulling] client count 0 + +2025-09-24 14:28:23,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:28:23,462 INFO toNotifyTaskSize = 0 + +2025-09-24 14:28:23,462 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:28:33,290 INFO [long-pulling] client count 0 + +2025-09-24 14:28:33,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:28:33,462 INFO toNotifyTaskSize = 0 + +2025-09-24 14:28:33,462 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:28:43,293 INFO [long-pulling] client count 0 + +2025-09-24 14:28:43,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:28:43,464 INFO toNotifyTaskSize = 0 + +2025-09-24 14:28:43,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:28:53,295 INFO [long-pulling] client count 0 + +2025-09-24 14:28:53,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:28:53,465 INFO toNotifyTaskSize = 0 + +2025-09-24 14:28:53,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:29:03,295 INFO [long-pulling] client count 0 + +2025-09-24 14:29:03,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:29:03,465 INFO toNotifyTaskSize = 0 + +2025-09-24 14:29:03,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:29:13,313 INFO [long-pulling] client count 0 + +2025-09-24 14:29:13,314 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:29:13,466 INFO toNotifyTaskSize = 0 + +2025-09-24 14:29:13,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:29:23,315 INFO [long-pulling] client count 0 + +2025-09-24 14:29:23,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:29:23,468 INFO toNotifyTaskSize = 0 + +2025-09-24 14:29:23,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:29:33,318 INFO [long-pulling] client count 0 + +2025-09-24 14:29:33,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:29:33,468 INFO toNotifyTaskSize = 0 + +2025-09-24 14:29:33,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:29:43,320 INFO [long-pulling] client count 0 + +2025-09-24 14:29:43,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:29:43,469 INFO toNotifyTaskSize = 0 + +2025-09-24 14:29:43,469 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:29:53,321 INFO [long-pulling] client count 0 + +2025-09-24 14:29:53,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:29:53,471 INFO toNotifyTaskSize = 0 + +2025-09-24 14:29:53,471 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:30:03,322 INFO [long-pulling] client count 0 + +2025-09-24 14:30:03,322 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:30:03,471 INFO toNotifyTaskSize = 0 + +2025-09-24 14:30:03,472 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:30:13,323 INFO [long-pulling] client count 0 + +2025-09-24 14:30:13,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:30:13,472 INFO toNotifyTaskSize = 0 + +2025-09-24 14:30:13,472 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:30:23,324 INFO [long-pulling] client count 0 + +2025-09-24 14:30:23,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:30:23,474 INFO toNotifyTaskSize = 0 + +2025-09-24 14:30:23,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:30:33,326 INFO [long-pulling] client count 0 + +2025-09-24 14:30:33,326 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:30:33,475 INFO toNotifyTaskSize = 0 + +2025-09-24 14:30:33,475 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:30:43,329 INFO [long-pulling] client count 0 + +2025-09-24 14:30:43,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:30:43,476 INFO toNotifyTaskSize = 0 + +2025-09-24 14:30:43,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:30:53,329 INFO [long-pulling] client count 0 + +2025-09-24 14:30:53,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:30:53,477 INFO toNotifyTaskSize = 0 + +2025-09-24 14:30:53,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:31:03,330 INFO [long-pulling] client count 0 + +2025-09-24 14:31:03,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:31:03,479 INFO toNotifyTaskSize = 0 + +2025-09-24 14:31:03,479 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:31:13,330 INFO [long-pulling] client count 0 + +2025-09-24 14:31:13,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:31:13,480 INFO toNotifyTaskSize = 0 + +2025-09-24 14:31:13,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:31:23,330 INFO [long-pulling] client count 0 + +2025-09-24 14:31:23,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:31:23,481 INFO toNotifyTaskSize = 0 + +2025-09-24 14:31:23,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:31:33,331 INFO [long-pulling] client count 0 + +2025-09-24 14:31:33,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:31:33,482 INFO toNotifyTaskSize = 0 + +2025-09-24 14:31:33,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:31:43,333 INFO [long-pulling] client count 0 + +2025-09-24 14:31:43,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:31:43,484 INFO toNotifyTaskSize = 0 + +2025-09-24 14:31:43,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:31:53,334 INFO [long-pulling] client count 0 + +2025-09-24 14:31:53,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:31:53,484 INFO toNotifyTaskSize = 0 + +2025-09-24 14:31:53,485 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:32:03,334 INFO [long-pulling] client count 0 + +2025-09-24 14:32:03,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:32:03,487 INFO toNotifyTaskSize = 0 + +2025-09-24 14:32:03,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:32:13,335 INFO [long-pulling] client count 0 + +2025-09-24 14:32:13,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:32:13,487 INFO toNotifyTaskSize = 0 + +2025-09-24 14:32:13,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:32:23,336 INFO [long-pulling] client count 0 + +2025-09-24 14:32:23,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:32:23,489 INFO toNotifyTaskSize = 0 + +2025-09-24 14:32:23,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:32:33,337 INFO [long-pulling] client count 0 + +2025-09-24 14:32:33,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:32:33,490 INFO toNotifyTaskSize = 0 + +2025-09-24 14:32:33,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:32:43,339 INFO [long-pulling] client count 0 + +2025-09-24 14:32:43,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:32:43,490 INFO toNotifyTaskSize = 0 + +2025-09-24 14:32:43,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:32:53,339 INFO [long-pulling] client count 0 + +2025-09-24 14:32:53,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:32:53,491 INFO toNotifyTaskSize = 0 + +2025-09-24 14:32:53,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:33:03,340 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:33:03,340 INFO [long-pulling] client count 0 + +2025-09-24 14:33:03,492 INFO toNotifyTaskSize = 0 + +2025-09-24 14:33:03,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:33:13,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:33:13,341 INFO [long-pulling] client count 0 + +2025-09-24 14:33:13,492 INFO toNotifyTaskSize = 0 + +2025-09-24 14:33:13,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:33:23,341 INFO [long-pulling] client count 0 + +2025-09-24 14:33:23,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:33:23,494 INFO toNotifyTaskSize = 0 + +2025-09-24 14:33:23,494 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:33:33,342 INFO [long-pulling] client count 0 + +2025-09-24 14:33:33,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:33:33,495 INFO toNotifyTaskSize = 0 + +2025-09-24 14:33:33,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:33:43,343 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:33:43,343 INFO [long-pulling] client count 0 + +2025-09-24 14:33:43,496 INFO toNotifyTaskSize = 0 + +2025-09-24 14:33:43,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:33:53,345 INFO [long-pulling] client count 0 + +2025-09-24 14:33:53,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:33:53,497 INFO toNotifyTaskSize = 0 + +2025-09-24 14:33:53,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:34:03,346 INFO [long-pulling] client count 0 + +2025-09-24 14:34:03,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:34:03,497 INFO toNotifyTaskSize = 0 + +2025-09-24 14:34:03,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:34:13,346 INFO [long-pulling] client count 0 + +2025-09-24 14:34:13,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:34:13,499 INFO toNotifyTaskSize = 0 + +2025-09-24 14:34:13,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:34:23,347 INFO [long-pulling] client count 0 + +2025-09-24 14:34:23,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:34:23,500 INFO toNotifyTaskSize = 0 + +2025-09-24 14:34:23,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:34:33,348 INFO [long-pulling] client count 0 + +2025-09-24 14:34:33,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:34:33,500 INFO toNotifyTaskSize = 0 + +2025-09-24 14:34:33,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:34:43,348 INFO [long-pulling] client count 0 + +2025-09-24 14:34:43,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:34:43,501 INFO toNotifyTaskSize = 0 + +2025-09-24 14:34:43,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:34:53,349 INFO [long-pulling] client count 0 + +2025-09-24 14:34:53,349 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:34:53,503 INFO toNotifyTaskSize = 0 + +2025-09-24 14:34:53,503 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:35:03,350 INFO [long-pulling] client count 0 + +2025-09-24 14:35:03,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:35:03,504 INFO toNotifyTaskSize = 0 + +2025-09-24 14:35:03,504 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:35:13,351 INFO [long-pulling] client count 0 + +2025-09-24 14:35:13,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:35:13,505 INFO toNotifyTaskSize = 0 + +2025-09-24 14:35:13,506 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:35:23,352 INFO [long-pulling] client count 0 + +2025-09-24 14:35:23,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:35:23,508 INFO toNotifyTaskSize = 0 + +2025-09-24 14:35:23,508 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:35:33,354 INFO [long-pulling] client count 0 + +2025-09-24 14:35:33,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:35:33,508 INFO toNotifyTaskSize = 0 + +2025-09-24 14:35:33,508 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:35:43,354 INFO [long-pulling] client count 0 + +2025-09-24 14:35:43,355 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:35:43,508 INFO toNotifyTaskSize = 0 + +2025-09-24 14:35:43,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:35:53,356 INFO [long-pulling] client count 0 + +2025-09-24 14:35:53,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:35:53,509 INFO toNotifyTaskSize = 0 + +2025-09-24 14:35:53,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:36:03,357 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:36:03,358 INFO [long-pulling] client count 0 + +2025-09-24 14:36:03,510 INFO toNotifyTaskSize = 0 + +2025-09-24 14:36:03,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:36:13,358 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:36:13,358 INFO [long-pulling] client count 0 + +2025-09-24 14:36:13,511 INFO toNotifyTaskSize = 0 + +2025-09-24 14:36:13,511 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:36:23,358 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:36:23,359 INFO [long-pulling] client count 0 + +2025-09-24 14:36:23,512 INFO toNotifyTaskSize = 0 + +2025-09-24 14:36:23,512 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:36:33,361 INFO [long-pulling] client count 0 + +2025-09-24 14:36:33,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:36:33,512 INFO toNotifyTaskSize = 0 + +2025-09-24 14:36:33,512 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:36:43,362 INFO [long-pulling] client count 0 + +2025-09-24 14:36:43,362 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:36:43,514 INFO toNotifyTaskSize = 0 + +2025-09-24 14:36:43,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:36:53,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:36:53,363 INFO [long-pulling] client count 0 + +2025-09-24 14:36:53,515 INFO toNotifyTaskSize = 0 + +2025-09-24 14:36:53,516 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:37:03,364 INFO [long-pulling] client count 0 + +2025-09-24 14:37:03,364 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:37:03,517 INFO toNotifyTaskSize = 0 + +2025-09-24 14:37:03,517 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:37:13,364 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:37:13,364 INFO [long-pulling] client count 0 + +2025-09-24 14:37:13,519 INFO toNotifyTaskSize = 0 + +2025-09-24 14:37:13,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:37:23,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:37:23,365 INFO [long-pulling] client count 0 + +2025-09-24 14:37:23,520 INFO toNotifyTaskSize = 0 + +2025-09-24 14:37:23,520 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:37:33,367 INFO [long-pulling] client count 0 + +2025-09-24 14:37:33,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:37:33,522 INFO toNotifyTaskSize = 0 + +2025-09-24 14:37:33,522 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:37:43,368 INFO [long-pulling] client count 0 + +2025-09-24 14:37:43,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:37:43,524 INFO toNotifyTaskSize = 0 + +2025-09-24 14:37:43,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:37:53,368 INFO [long-pulling] client count 0 + +2025-09-24 14:37:53,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:37:53,526 INFO toNotifyTaskSize = 0 + +2025-09-24 14:37:53,526 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:38:03,369 INFO [long-pulling] client count 0 + +2025-09-24 14:38:03,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:38:03,526 INFO toNotifyTaskSize = 0 + +2025-09-24 14:38:03,526 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:38:13,369 INFO [long-pulling] client count 0 + +2025-09-24 14:38:13,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:38:13,528 INFO toNotifyTaskSize = 0 + +2025-09-24 14:38:13,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:38:23,369 INFO [long-pulling] client count 0 + +2025-09-24 14:38:23,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:38:23,530 INFO toNotifyTaskSize = 0 + +2025-09-24 14:38:23,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:38:33,371 INFO [long-pulling] client count 0 + +2025-09-24 14:38:33,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:38:33,531 INFO toNotifyTaskSize = 0 + +2025-09-24 14:38:33,532 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:38:43,371 INFO [long-pulling] client count 0 + +2025-09-24 14:38:43,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:38:43,533 INFO toNotifyTaskSize = 0 + +2025-09-24 14:38:43,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:38:53,372 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:38:53,372 INFO [long-pulling] client count 0 + +2025-09-24 14:38:53,534 INFO toNotifyTaskSize = 0 + +2025-09-24 14:38:53,534 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:39:03,374 INFO [long-pulling] client count 0 + +2025-09-24 14:39:03,375 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:39:03,534 INFO toNotifyTaskSize = 0 + +2025-09-24 14:39:03,534 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:39:13,375 INFO [long-pulling] client count 0 + +2025-09-24 14:39:13,375 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:39:13,536 INFO toNotifyTaskSize = 0 + +2025-09-24 14:39:13,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:39:23,375 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:39:23,376 INFO [long-pulling] client count 0 + +2025-09-24 14:39:23,537 INFO toNotifyTaskSize = 0 + +2025-09-24 14:39:23,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:39:33,377 INFO [long-pulling] client count 0 + +2025-09-24 14:39:33,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:39:33,539 INFO toNotifyTaskSize = 0 + +2025-09-24 14:39:33,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:39:43,378 INFO [long-pulling] client count 0 + +2025-09-24 14:39:43,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:39:43,540 INFO toNotifyTaskSize = 0 + +2025-09-24 14:39:43,540 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:39:53,380 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:39:53,380 INFO [long-pulling] client count 0 + +2025-09-24 14:39:53,542 INFO toNotifyTaskSize = 0 + +2025-09-24 14:39:53,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:40:03,380 INFO [long-pulling] client count 0 + +2025-09-24 14:40:03,380 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:40:03,542 INFO toNotifyTaskSize = 0 + +2025-09-24 14:40:03,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:40:13,381 INFO [long-pulling] client count 0 + +2025-09-24 14:40:13,381 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:40:13,543 INFO toNotifyTaskSize = 0 + +2025-09-24 14:40:13,543 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:40:23,382 INFO [long-pulling] client count 0 + +2025-09-24 14:40:23,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:40:23,545 INFO toNotifyTaskSize = 0 + +2025-09-24 14:40:23,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:40:33,384 INFO [long-pulling] client count 0 + +2025-09-24 14:40:33,384 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:40:33,547 INFO toNotifyTaskSize = 0 + +2025-09-24 14:40:33,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:40:43,384 INFO [long-pulling] client count 0 + +2025-09-24 14:40:43,384 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:40:43,547 INFO toNotifyTaskSize = 0 + +2025-09-24 14:40:43,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:40:53,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:40:53,386 INFO [long-pulling] client count 0 + +2025-09-24 14:40:53,548 INFO toNotifyTaskSize = 0 + +2025-09-24 14:40:53,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:41:03,388 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:41:03,388 INFO [long-pulling] client count 0 + +2025-09-24 14:41:03,548 INFO toNotifyTaskSize = 0 + +2025-09-24 14:41:03,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:41:13,389 INFO [long-pulling] client count 0 + +2025-09-24 14:41:13,389 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:41:13,548 INFO toNotifyTaskSize = 0 + +2025-09-24 14:41:13,548 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:41:23,389 INFO [long-pulling] client count 0 + +2025-09-24 14:41:23,389 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:41:23,550 INFO toNotifyTaskSize = 0 + +2025-09-24 14:41:23,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:41:33,391 INFO [long-pulling] client count 0 + +2025-09-24 14:41:33,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:41:33,551 INFO toNotifyTaskSize = 0 + +2025-09-24 14:41:33,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:41:43,393 INFO [long-pulling] client count 0 + +2025-09-24 14:41:43,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:41:43,552 INFO toNotifyTaskSize = 0 + +2025-09-24 14:41:43,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:41:53,394 INFO [long-pulling] client count 0 + +2025-09-24 14:41:53,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:41:53,552 INFO toNotifyTaskSize = 0 + +2025-09-24 14:41:53,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:42:03,396 INFO [long-pulling] client count 0 + +2025-09-24 14:42:03,396 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:42:03,554 INFO toNotifyTaskSize = 0 + +2025-09-24 14:42:03,554 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:42:13,398 INFO [long-pulling] client count 0 + +2025-09-24 14:42:13,398 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:42:13,556 INFO toNotifyTaskSize = 0 + +2025-09-24 14:42:13,556 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:42:23,398 INFO [long-pulling] client count 0 + +2025-09-24 14:42:23,398 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:42:23,557 INFO toNotifyTaskSize = 0 + +2025-09-24 14:42:23,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:42:33,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:42:33,401 INFO [long-pulling] client count 0 + +2025-09-24 14:42:33,558 INFO toNotifyTaskSize = 0 + +2025-09-24 14:42:33,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:42:43,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:42:43,401 INFO [long-pulling] client count 0 + +2025-09-24 14:42:43,559 INFO toNotifyTaskSize = 0 + +2025-09-24 14:42:43,560 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:42:53,401 INFO [long-pulling] client count 0 + +2025-09-24 14:42:53,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:42:53,560 INFO toNotifyTaskSize = 0 + +2025-09-24 14:42:53,560 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:43:03,401 INFO [long-pulling] client count 0 + +2025-09-24 14:43:03,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:43:03,562 INFO toNotifyTaskSize = 0 + +2025-09-24 14:43:03,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:43:13,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:43:13,402 INFO [long-pulling] client count 0 + +2025-09-24 14:43:13,562 INFO toNotifyTaskSize = 0 + +2025-09-24 14:43:13,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:43:23,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:43:23,402 INFO [long-pulling] client count 0 + +2025-09-24 14:43:23,564 INFO toNotifyTaskSize = 0 + +2025-09-24 14:43:23,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:43:33,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:43:33,404 INFO [long-pulling] client count 0 + +2025-09-24 14:43:33,566 INFO toNotifyTaskSize = 0 + +2025-09-24 14:43:33,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:43:43,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:43:43,404 INFO [long-pulling] client count 0 + +2025-09-24 14:43:43,566 INFO toNotifyTaskSize = 0 + +2025-09-24 14:43:43,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:43:53,406 INFO [long-pulling] client count 0 + +2025-09-24 14:43:53,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:43:53,567 INFO toNotifyTaskSize = 0 + +2025-09-24 14:43:53,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:44:03,406 INFO [long-pulling] client count 0 + +2025-09-24 14:44:03,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:44:03,568 INFO toNotifyTaskSize = 0 + +2025-09-24 14:44:03,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:44:13,407 INFO [long-pulling] client count 0 + +2025-09-24 14:44:13,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:44:13,568 INFO toNotifyTaskSize = 0 + +2025-09-24 14:44:13,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:44:23,407 INFO [long-pulling] client count 0 + +2025-09-24 14:44:23,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:44:23,569 INFO toNotifyTaskSize = 0 + +2025-09-24 14:44:23,569 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:44:33,409 INFO [long-pulling] client count 0 + +2025-09-24 14:44:33,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:44:33,571 INFO toNotifyTaskSize = 0 + +2025-09-24 14:44:33,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:44:43,409 INFO [long-pulling] client count 0 + +2025-09-24 14:44:43,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:44:43,572 INFO toNotifyTaskSize = 0 + +2025-09-24 14:44:43,572 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:44:53,410 INFO [long-pulling] client count 0 + +2025-09-24 14:44:53,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:44:53,573 INFO toNotifyTaskSize = 0 + +2025-09-24 14:44:53,573 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:45:03,411 INFO [long-pulling] client count 0 + +2025-09-24 14:45:03,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:45:03,573 INFO toNotifyTaskSize = 0 + +2025-09-24 14:45:03,573 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:45:13,411 INFO [long-pulling] client count 0 + +2025-09-24 14:45:13,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:45:13,576 INFO toNotifyTaskSize = 0 + +2025-09-24 14:45:13,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:45:23,412 INFO [long-pulling] client count 0 + +2025-09-24 14:45:23,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:45:23,577 INFO toNotifyTaskSize = 0 + +2025-09-24 14:45:23,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:45:33,414 INFO [long-pulling] client count 0 + +2025-09-24 14:45:33,418 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:45:33,577 INFO toNotifyTaskSize = 0 + +2025-09-24 14:45:33,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:45:43,415 INFO [long-pulling] client count 0 + +2025-09-24 14:45:43,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:45:43,578 INFO toNotifyTaskSize = 0 + +2025-09-24 14:45:43,578 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:45:53,417 INFO [long-pulling] client count 0 + +2025-09-24 14:45:53,421 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:45:53,579 INFO toNotifyTaskSize = 0 + +2025-09-24 14:45:53,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:46:03,418 INFO [long-pulling] client count 0 + +2025-09-24 14:46:03,421 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:46:03,579 INFO toNotifyTaskSize = 0 + +2025-09-24 14:46:03,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:46:13,418 INFO [long-pulling] client count 0 + +2025-09-24 14:46:13,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:46:13,581 INFO toNotifyTaskSize = 0 + +2025-09-24 14:46:13,581 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:46:23,420 INFO [long-pulling] client count 0 + +2025-09-24 14:46:23,424 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:46:23,583 INFO toNotifyTaskSize = 0 + +2025-09-24 14:46:23,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:46:33,421 INFO [long-pulling] client count 0 + +2025-09-24 14:46:33,426 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:46:33,583 INFO toNotifyTaskSize = 0 + +2025-09-24 14:46:33,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:46:43,421 INFO [long-pulling] client count 0 + +2025-09-24 14:46:43,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:46:43,584 INFO toNotifyTaskSize = 0 + +2025-09-24 14:46:43,584 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:46:53,421 INFO [long-pulling] client count 0 + +2025-09-24 14:46:53,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:46:53,585 INFO toNotifyTaskSize = 0 + +2025-09-24 14:46:53,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:47:03,424 INFO [long-pulling] client count 0 + +2025-09-24 14:47:03,428 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:47:03,585 INFO toNotifyTaskSize = 0 + +2025-09-24 14:47:03,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:47:13,425 INFO [long-pulling] client count 0 + +2025-09-24 14:47:13,430 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:47:13,585 INFO toNotifyTaskSize = 0 + +2025-09-24 14:47:13,586 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:47:23,427 INFO [long-pulling] client count 0 + +2025-09-24 14:47:23,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:47:23,588 INFO toNotifyTaskSize = 0 + +2025-09-24 14:47:23,588 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:47:33,429 INFO [long-pulling] client count 0 + +2025-09-24 14:47:33,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:47:33,590 INFO toNotifyTaskSize = 0 + +2025-09-24 14:47:33,590 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:47:43,430 INFO [long-pulling] client count 0 + +2025-09-24 14:47:43,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:47:43,592 INFO toNotifyTaskSize = 0 + +2025-09-24 14:47:43,592 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:47:53,430 INFO [long-pulling] client count 0 + +2025-09-24 14:47:53,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:47:53,593 INFO toNotifyTaskSize = 0 + +2025-09-24 14:47:53,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:48:03,431 INFO [long-pulling] client count 0 + +2025-09-24 14:48:03,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:48:03,593 INFO toNotifyTaskSize = 0 + +2025-09-24 14:48:03,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:48:13,433 INFO [long-pulling] client count 0 + +2025-09-24 14:48:13,436 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:48:13,593 INFO toNotifyTaskSize = 0 + +2025-09-24 14:48:13,594 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:48:23,435 INFO [long-pulling] client count 0 + +2025-09-24 14:48:23,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:48:23,594 INFO toNotifyTaskSize = 0 + +2025-09-24 14:48:23,594 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:48:33,437 INFO [long-pulling] client count 0 + +2025-09-24 14:48:33,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:48:33,595 INFO toNotifyTaskSize = 0 + +2025-09-24 14:48:33,595 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:48:43,438 INFO [long-pulling] client count 0 + +2025-09-24 14:48:43,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:48:43,597 INFO toNotifyTaskSize = 0 + +2025-09-24 14:48:43,597 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:48:53,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:48:53,440 INFO [long-pulling] client count 0 + +2025-09-24 14:48:53,599 INFO toNotifyTaskSize = 0 + +2025-09-24 14:48:53,599 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:49:03,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:49:03,442 INFO [long-pulling] client count 0 + +2025-09-24 14:49:03,599 INFO toNotifyTaskSize = 0 + +2025-09-24 14:49:03,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:49:13,444 INFO [long-pulling] client count 0 + +2025-09-24 14:49:13,444 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:49:13,600 INFO toNotifyTaskSize = 0 + +2025-09-24 14:49:13,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:49:23,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:49:23,445 INFO [long-pulling] client count 0 + +2025-09-24 14:49:23,600 INFO toNotifyTaskSize = 0 + +2025-09-24 14:49:23,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:49:33,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:49:33,446 INFO [long-pulling] client count 0 + +2025-09-24 14:49:33,601 INFO toNotifyTaskSize = 0 + +2025-09-24 14:49:33,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:49:43,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:49:43,447 INFO [long-pulling] client count 0 + +2025-09-24 14:49:43,601 INFO toNotifyTaskSize = 0 + +2025-09-24 14:49:43,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:49:53,448 INFO [long-pulling] client count 0 + +2025-09-24 14:49:53,448 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:49:53,604 INFO toNotifyTaskSize = 0 + +2025-09-24 14:49:53,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:50:03,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:50:03,449 INFO [long-pulling] client count 0 + +2025-09-24 14:50:03,604 INFO toNotifyTaskSize = 0 + +2025-09-24 14:50:03,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:50:13,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:50:13,449 INFO [long-pulling] client count 0 + +2025-09-24 14:50:13,606 INFO toNotifyTaskSize = 0 + +2025-09-24 14:50:13,606 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:50:23,450 INFO [long-pulling] client count 0 + +2025-09-24 14:50:23,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:50:23,607 INFO toNotifyTaskSize = 0 + +2025-09-24 14:50:23,607 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:50:33,453 INFO [long-pulling] client count 0 + +2025-09-24 14:50:33,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:50:33,609 INFO toNotifyTaskSize = 0 + +2025-09-24 14:50:33,609 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:50:43,454 INFO [long-pulling] client count 0 + +2025-09-24 14:50:43,454 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:50:43,609 INFO toNotifyTaskSize = 0 + +2025-09-24 14:50:43,609 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:50:53,454 INFO [long-pulling] client count 0 + +2025-09-24 14:50:53,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:50:53,610 INFO toNotifyTaskSize = 0 + +2025-09-24 14:50:53,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:51:03,455 INFO [long-pulling] client count 0 + +2025-09-24 14:51:03,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:51:03,613 INFO toNotifyTaskSize = 0 + +2025-09-24 14:51:03,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:51:13,455 INFO [long-pulling] client count 0 + +2025-09-24 14:51:13,456 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:51:13,614 INFO toNotifyTaskSize = 0 + +2025-09-24 14:51:13,614 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:51:23,457 INFO [long-pulling] client count 0 + +2025-09-24 14:51:23,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:51:23,614 INFO toNotifyTaskSize = 0 + +2025-09-24 14:51:23,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:51:33,459 INFO [long-pulling] client count 0 + +2025-09-24 14:51:33,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:51:33,615 INFO toNotifyTaskSize = 0 + +2025-09-24 14:51:33,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:51:43,461 INFO [long-pulling] client count 0 + +2025-09-24 14:51:43,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:51:43,616 INFO toNotifyTaskSize = 0 + +2025-09-24 14:51:43,616 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:51:53,462 INFO [long-pulling] client count 0 + +2025-09-24 14:51:53,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:51:53,616 INFO toNotifyTaskSize = 0 + +2025-09-24 14:51:53,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:52:03,463 INFO [long-pulling] client count 0 + +2025-09-24 14:52:03,463 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:52:03,617 INFO toNotifyTaskSize = 0 + +2025-09-24 14:52:03,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:52:13,464 INFO [long-pulling] client count 0 + +2025-09-24 14:52:13,464 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:52:13,617 INFO toNotifyTaskSize = 0 + +2025-09-24 14:52:13,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:52:23,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:52:23,465 INFO [long-pulling] client count 0 + +2025-09-24 14:52:23,618 INFO toNotifyTaskSize = 0 + +2025-09-24 14:52:23,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:52:33,466 INFO [long-pulling] client count 0 + +2025-09-24 14:52:33,466 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:52:33,619 INFO toNotifyTaskSize = 0 + +2025-09-24 14:52:33,619 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:52:43,467 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:52:43,467 INFO [long-pulling] client count 0 + +2025-09-24 14:52:43,619 INFO toNotifyTaskSize = 0 + +2025-09-24 14:52:43,619 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:52:53,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:52:53,468 INFO [long-pulling] client count 0 + +2025-09-24 14:52:53,620 INFO toNotifyTaskSize = 0 + +2025-09-24 14:52:53,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:53:03,468 INFO [long-pulling] client count 0 + +2025-09-24 14:53:03,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:53:03,627 INFO toNotifyTaskSize = 0 + +2025-09-24 14:53:03,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:53:13,470 INFO [long-pulling] client count 0 + +2025-09-24 14:53:13,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:53:13,628 INFO toNotifyTaskSize = 0 + +2025-09-24 14:53:13,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:53:23,472 INFO [long-pulling] client count 0 + +2025-09-24 14:53:23,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:53:23,628 INFO toNotifyTaskSize = 0 + +2025-09-24 14:53:23,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:53:33,475 INFO [long-pulling] client count 0 + +2025-09-24 14:53:33,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:53:33,630 INFO toNotifyTaskSize = 0 + +2025-09-24 14:53:33,630 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:53:43,475 INFO [long-pulling] client count 0 + +2025-09-24 14:53:43,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:53:43,632 INFO toNotifyTaskSize = 0 + +2025-09-24 14:53:43,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:53:53,476 INFO [long-pulling] client count 0 + +2025-09-24 14:53:53,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:53:53,633 INFO toNotifyTaskSize = 0 + +2025-09-24 14:53:53,633 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:54:03,477 INFO [long-pulling] client count 0 + +2025-09-24 14:54:03,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:54:03,634 INFO toNotifyTaskSize = 0 + +2025-09-24 14:54:03,634 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:54:13,478 INFO [long-pulling] client count 0 + +2025-09-24 14:54:13,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:54:13,635 INFO toNotifyTaskSize = 0 + +2025-09-24 14:54:13,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:54:23,479 INFO [long-pulling] client count 0 + +2025-09-24 14:54:23,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:54:23,637 INFO toNotifyTaskSize = 0 + +2025-09-24 14:54:23,637 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:54:33,480 INFO [long-pulling] client count 0 + +2025-09-24 14:54:33,480 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:54:33,637 INFO toNotifyTaskSize = 0 + +2025-09-24 14:54:33,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:54:43,482 INFO [long-pulling] client count 0 + +2025-09-24 14:54:43,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:54:43,639 INFO toNotifyTaskSize = 0 + +2025-09-24 14:54:43,639 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:54:53,482 INFO [long-pulling] client count 0 + +2025-09-24 14:54:53,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:54:53,641 INFO toNotifyTaskSize = 0 + +2025-09-24 14:54:53,641 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:55:03,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:55:03,483 INFO [long-pulling] client count 0 + +2025-09-24 14:55:03,643 INFO toNotifyTaskSize = 0 + +2025-09-24 14:55:03,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:55:13,485 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:55:13,485 INFO [long-pulling] client count 0 + +2025-09-24 14:55:13,645 INFO toNotifyTaskSize = 0 + +2025-09-24 14:55:13,645 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:55:23,485 INFO [long-pulling] client count 0 + +2025-09-24 14:55:23,485 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:55:23,647 INFO toNotifyTaskSize = 0 + +2025-09-24 14:55:23,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:55:33,486 INFO [long-pulling] client count 0 + +2025-09-24 14:55:33,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:55:33,649 INFO toNotifyTaskSize = 0 + +2025-09-24 14:55:33,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:55:43,488 INFO [long-pulling] client count 0 + +2025-09-24 14:55:43,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:55:43,649 INFO toNotifyTaskSize = 0 + +2025-09-24 14:55:43,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:55:53,488 INFO [long-pulling] client count 0 + +2025-09-24 14:55:53,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:55:53,650 INFO toNotifyTaskSize = 0 + +2025-09-24 14:55:53,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:56:03,489 INFO [long-pulling] client count 0 + +2025-09-24 14:56:03,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:56:03,650 INFO toNotifyTaskSize = 0 + +2025-09-24 14:56:03,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:56:13,490 INFO [long-pulling] client count 0 + +2025-09-24 14:56:13,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:56:13,652 INFO toNotifyTaskSize = 0 + +2025-09-24 14:56:13,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:56:23,490 INFO [long-pulling] client count 0 + +2025-09-24 14:56:23,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:56:23,652 INFO toNotifyTaskSize = 0 + +2025-09-24 14:56:23,653 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:56:33,492 INFO [long-pulling] client count 0 + +2025-09-24 14:56:33,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:56:33,653 INFO toNotifyTaskSize = 0 + +2025-09-24 14:56:33,653 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:56:43,492 INFO [long-pulling] client count 0 + +2025-09-24 14:56:43,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:56:43,655 INFO toNotifyTaskSize = 0 + +2025-09-24 14:56:43,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:56:53,492 INFO [long-pulling] client count 0 + +2025-09-24 14:56:53,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:56:53,657 INFO toNotifyTaskSize = 0 + +2025-09-24 14:56:53,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:57:03,493 INFO [long-pulling] client count 0 + +2025-09-24 14:57:03,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:57:03,658 INFO toNotifyTaskSize = 0 + +2025-09-24 14:57:03,659 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:57:13,493 INFO [long-pulling] client count 0 + +2025-09-24 14:57:13,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:57:13,660 INFO toNotifyTaskSize = 0 + +2025-09-24 14:57:13,660 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:57:23,493 INFO [long-pulling] client count 0 + +2025-09-24 14:57:23,493 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:57:23,661 INFO toNotifyTaskSize = 0 + +2025-09-24 14:57:23,661 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:57:33,494 INFO [long-pulling] client count 0 + +2025-09-24 14:57:33,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:57:33,663 INFO toNotifyTaskSize = 0 + +2025-09-24 14:57:33,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:57:43,494 INFO [long-pulling] client count 0 + +2025-09-24 14:57:43,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:57:43,663 INFO toNotifyTaskSize = 0 + +2025-09-24 14:57:43,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:57:53,494 INFO [long-pulling] client count 0 + +2025-09-24 14:57:53,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:57:53,665 INFO toNotifyTaskSize = 0 + +2025-09-24 14:57:53,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:58:03,495 INFO [long-pulling] client count 0 + +2025-09-24 14:58:03,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:58:03,667 INFO toNotifyTaskSize = 0 + +2025-09-24 14:58:03,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:58:13,497 INFO [long-pulling] client count 0 + +2025-09-24 14:58:13,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:58:13,668 INFO toNotifyTaskSize = 0 + +2025-09-24 14:58:13,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:58:23,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:58:23,502 INFO [long-pulling] client count 0 + +2025-09-24 14:58:23,668 INFO toNotifyTaskSize = 0 + +2025-09-24 14:58:23,669 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:58:33,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:58:33,503 INFO [long-pulling] client count 0 + +2025-09-24 14:58:33,669 INFO toNotifyTaskSize = 0 + +2025-09-24 14:58:33,669 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:58:43,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:58:43,504 INFO [long-pulling] client count 0 + +2025-09-24 14:58:43,671 INFO toNotifyTaskSize = 0 + +2025-09-24 14:58:43,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:58:53,503 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:58:53,504 INFO [long-pulling] client count 0 + +2025-09-24 14:58:53,672 INFO toNotifyTaskSize = 0 + +2025-09-24 14:58:53,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:59:03,505 INFO [long-pulling] client count 0 + +2025-09-24 14:59:03,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:59:03,674 INFO toNotifyTaskSize = 0 + +2025-09-24 14:59:03,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:59:13,505 INFO [long-pulling] client count 0 + +2025-09-24 14:59:13,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:59:13,675 INFO toNotifyTaskSize = 0 + +2025-09-24 14:59:13,675 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:59:23,506 INFO [long-pulling] client count 0 + +2025-09-24 14:59:23,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:59:23,676 INFO toNotifyTaskSize = 0 + +2025-09-24 14:59:23,676 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:59:33,509 INFO [long-pulling] client count 0 + +2025-09-24 14:59:33,509 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:59:33,677 INFO toNotifyTaskSize = 0 + +2025-09-24 14:59:33,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:59:43,510 INFO [long-pulling] client count 0 + +2025-09-24 14:59:43,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:59:43,678 INFO toNotifyTaskSize = 0 + +2025-09-24 14:59:43,678 INFO toClientNotifyTaskSize = 0 + +2025-09-24 14:59:53,510 INFO [long-pulling] client count 0 + +2025-09-24 14:59:53,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 14:59:53,679 INFO toNotifyTaskSize = 0 + +2025-09-24 14:59:53,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:00:03,512 INFO [long-pulling] client count 0 + +2025-09-24 15:00:03,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:00:03,679 INFO toNotifyTaskSize = 0 + +2025-09-24 15:00:03,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:00:13,514 INFO [long-pulling] client count 0 + +2025-09-24 15:00:13,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:00:13,680 INFO toNotifyTaskSize = 0 + +2025-09-24 15:00:13,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:00:23,514 INFO [long-pulling] client count 0 + +2025-09-24 15:00:23,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:00:23,681 INFO toNotifyTaskSize = 0 + +2025-09-24 15:00:23,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:00:33,517 INFO [long-pulling] client count 0 + +2025-09-24 15:00:33,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:00:33,683 INFO toNotifyTaskSize = 0 + +2025-09-24 15:00:33,683 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:00:43,518 INFO [long-pulling] client count 0 + +2025-09-24 15:00:43,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:00:43,683 INFO toNotifyTaskSize = 0 + +2025-09-24 15:00:43,683 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:00:53,519 INFO [long-pulling] client count 0 + +2025-09-24 15:00:53,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:00:53,684 INFO toNotifyTaskSize = 0 + +2025-09-24 15:00:53,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:01:03,519 INFO [long-pulling] client count 0 + +2025-09-24 15:01:03,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:01:03,684 INFO toNotifyTaskSize = 0 + +2025-09-24 15:01:03,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:01:13,520 INFO [long-pulling] client count 0 + +2025-09-24 15:01:13,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:01:13,685 INFO toNotifyTaskSize = 0 + +2025-09-24 15:01:13,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:01:23,520 INFO [long-pulling] client count 0 + +2025-09-24 15:01:23,520 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:01:23,685 INFO toNotifyTaskSize = 0 + +2025-09-24 15:01:23,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:01:33,523 INFO [long-pulling] client count 0 + +2025-09-24 15:01:33,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:01:33,686 INFO toNotifyTaskSize = 0 + +2025-09-24 15:01:33,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:01:43,525 INFO [long-pulling] client count 0 + +2025-09-24 15:01:43,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:01:43,689 INFO toNotifyTaskSize = 0 + +2025-09-24 15:01:43,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:01:53,526 INFO [long-pulling] client count 0 + +2025-09-24 15:01:53,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:01:53,691 INFO toNotifyTaskSize = 0 + +2025-09-24 15:01:53,691 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:02:03,527 INFO [long-pulling] client count 0 + +2025-09-24 15:02:03,527 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:02:03,693 INFO toNotifyTaskSize = 0 + +2025-09-24 15:02:03,693 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:02:13,530 INFO [long-pulling] client count 0 + +2025-09-24 15:02:13,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:02:13,694 INFO toNotifyTaskSize = 0 + +2025-09-24 15:02:13,694 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:02:23,534 INFO [long-pulling] client count 0 + +2025-09-24 15:02:23,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:02:23,695 INFO toNotifyTaskSize = 0 + +2025-09-24 15:02:23,695 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:02:33,537 INFO [long-pulling] client count 0 + +2025-09-24 15:02:33,537 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:02:33,696 INFO toNotifyTaskSize = 0 + +2025-09-24 15:02:33,696 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:02:43,537 INFO [long-pulling] client count 0 + +2025-09-24 15:02:43,537 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:02:43,698 INFO toNotifyTaskSize = 0 + +2025-09-24 15:02:43,698 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:02:53,539 INFO [long-pulling] client count 0 + +2025-09-24 15:02:53,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:02:53,699 INFO toNotifyTaskSize = 0 + +2025-09-24 15:02:53,700 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:03:03,540 INFO [long-pulling] client count 0 + +2025-09-24 15:03:03,540 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:03:03,701 INFO toNotifyTaskSize = 0 + +2025-09-24 15:03:03,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:03:13,542 INFO [long-pulling] client count 0 + +2025-09-24 15:03:13,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:03:13,701 INFO toNotifyTaskSize = 0 + +2025-09-24 15:03:13,702 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:03:23,544 INFO [long-pulling] client count 0 + +2025-09-24 15:03:23,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:03:23,703 INFO toNotifyTaskSize = 0 + +2025-09-24 15:03:23,704 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:03:33,547 INFO [long-pulling] client count 0 + +2025-09-24 15:03:33,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:03:33,706 INFO toNotifyTaskSize = 0 + +2025-09-24 15:03:33,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:03:43,547 INFO [long-pulling] client count 0 + +2025-09-24 15:03:43,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:03:43,708 INFO toNotifyTaskSize = 0 + +2025-09-24 15:03:43,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:03:53,548 INFO [long-pulling] client count 0 + +2025-09-24 15:03:53,548 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:03:53,710 INFO toNotifyTaskSize = 0 + +2025-09-24 15:03:53,710 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:04:03,548 INFO [long-pulling] client count 0 + +2025-09-24 15:04:03,549 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:04:03,712 INFO toNotifyTaskSize = 0 + +2025-09-24 15:04:03,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:04:13,551 INFO [long-pulling] client count 0 + +2025-09-24 15:04:13,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:04:13,714 INFO toNotifyTaskSize = 0 + +2025-09-24 15:04:13,714 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:04:23,551 INFO [long-pulling] client count 0 + +2025-09-24 15:04:23,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:04:23,715 INFO toNotifyTaskSize = 0 + +2025-09-24 15:04:23,715 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:04:33,552 INFO [long-pulling] client count 0 + +2025-09-24 15:04:33,552 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:04:33,717 INFO toNotifyTaskSize = 0 + +2025-09-24 15:04:33,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:04:43,554 INFO [long-pulling] client count 0 + +2025-09-24 15:04:43,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:04:43,717 INFO toNotifyTaskSize = 0 + +2025-09-24 15:04:43,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:04:53,555 INFO [long-pulling] client count 0 + +2025-09-24 15:04:53,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:04:53,719 INFO toNotifyTaskSize = 0 + +2025-09-24 15:04:53,719 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:05:03,555 INFO [long-pulling] client count 0 + +2025-09-24 15:05:03,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:05:03,720 INFO toNotifyTaskSize = 0 + +2025-09-24 15:05:03,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:05:13,557 INFO [long-pulling] client count 0 + +2025-09-24 15:05:13,557 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:05:13,721 INFO toNotifyTaskSize = 0 + +2025-09-24 15:05:13,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:05:23,559 INFO [long-pulling] client count 0 + +2025-09-24 15:05:23,559 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:05:23,722 INFO toNotifyTaskSize = 0 + +2025-09-24 15:05:23,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:05:33,560 INFO [long-pulling] client count 0 + +2025-09-24 15:05:33,560 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:05:33,723 INFO toNotifyTaskSize = 0 + +2025-09-24 15:05:33,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:05:43,561 INFO [long-pulling] client count 0 + +2025-09-24 15:05:43,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:05:43,723 INFO toNotifyTaskSize = 0 + +2025-09-24 15:05:43,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:05:53,562 INFO [long-pulling] client count 0 + +2025-09-24 15:05:53,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:05:53,724 INFO toNotifyTaskSize = 0 + +2025-09-24 15:05:53,724 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:06:03,562 INFO [long-pulling] client count 0 + +2025-09-24 15:06:03,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:06:03,725 INFO toNotifyTaskSize = 0 + +2025-09-24 15:06:03,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:06:13,565 INFO [long-pulling] client count 0 + +2025-09-24 15:06:13,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:06:13,726 INFO toNotifyTaskSize = 0 + +2025-09-24 15:06:13,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:06:23,566 INFO [long-pulling] client count 0 + +2025-09-24 15:06:23,566 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:06:23,727 INFO toNotifyTaskSize = 0 + +2025-09-24 15:06:23,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:06:33,567 INFO [long-pulling] client count 0 + +2025-09-24 15:06:33,567 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:06:33,729 INFO toNotifyTaskSize = 0 + +2025-09-24 15:06:33,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:06:43,570 INFO [long-pulling] client count 0 + +2025-09-24 15:06:43,570 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:06:43,730 INFO toNotifyTaskSize = 0 + +2025-09-24 15:06:43,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:06:53,571 INFO [long-pulling] client count 0 + +2025-09-24 15:06:53,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:06:53,732 INFO toNotifyTaskSize = 0 + +2025-09-24 15:06:53,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:07:03,571 INFO [long-pulling] client count 0 + +2025-09-24 15:07:03,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:07:03,733 INFO toNotifyTaskSize = 0 + +2025-09-24 15:07:03,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:07:13,573 INFO [long-pulling] client count 0 + +2025-09-24 15:07:13,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:07:13,734 INFO toNotifyTaskSize = 0 + +2025-09-24 15:07:13,734 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:07:23,575 INFO [long-pulling] client count 0 + +2025-09-24 15:07:23,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:07:23,736 INFO toNotifyTaskSize = 0 + +2025-09-24 15:07:23,736 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:07:33,577 INFO [long-pulling] client count 0 + +2025-09-24 15:07:33,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:07:33,736 INFO toNotifyTaskSize = 0 + +2025-09-24 15:07:33,736 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:07:43,578 INFO [long-pulling] client count 0 + +2025-09-24 15:07:43,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:07:43,736 INFO toNotifyTaskSize = 0 + +2025-09-24 15:07:43,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:07:53,579 INFO [long-pulling] client count 0 + +2025-09-24 15:07:53,579 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:07:53,737 INFO toNotifyTaskSize = 0 + +2025-09-24 15:07:53,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:08:03,581 INFO [long-pulling] client count 0 + +2025-09-24 15:08:03,581 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:08:03,739 INFO toNotifyTaskSize = 0 + +2025-09-24 15:08:03,739 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:08:13,583 INFO [long-pulling] client count 0 + +2025-09-24 15:08:13,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:08:13,740 INFO toNotifyTaskSize = 0 + +2025-09-24 15:08:13,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:08:23,584 INFO [long-pulling] client count 0 + +2025-09-24 15:08:23,584 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:08:23,740 INFO toNotifyTaskSize = 0 + +2025-09-24 15:08:23,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:08:33,584 INFO [long-pulling] client count 0 + +2025-09-24 15:08:33,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:08:33,740 INFO toNotifyTaskSize = 0 + +2025-09-24 15:08:33,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:08:43,584 INFO [long-pulling] client count 0 + +2025-09-24 15:08:43,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:08:43,741 INFO toNotifyTaskSize = 0 + +2025-09-24 15:08:43,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:08:53,586 INFO [long-pulling] client count 0 + +2025-09-24 15:08:53,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:08:53,743 INFO toNotifyTaskSize = 0 + +2025-09-24 15:08:53,743 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:09:03,586 INFO [long-pulling] client count 0 + +2025-09-24 15:09:03,587 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:09:03,745 INFO toNotifyTaskSize = 0 + +2025-09-24 15:09:03,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:09:13,587 INFO [long-pulling] client count 0 + +2025-09-24 15:09:13,587 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:09:13,746 INFO toNotifyTaskSize = 0 + +2025-09-24 15:09:13,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:09:23,587 INFO [long-pulling] client count 0 + +2025-09-24 15:09:23,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:09:23,749 INFO toNotifyTaskSize = 0 + +2025-09-24 15:09:23,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:09:33,589 INFO [long-pulling] client count 0 + +2025-09-24 15:09:33,589 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:09:33,749 INFO toNotifyTaskSize = 0 + +2025-09-24 15:09:33,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:09:43,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:09:43,590 INFO [long-pulling] client count 0 + +2025-09-24 15:09:43,750 INFO toNotifyTaskSize = 0 + +2025-09-24 15:09:43,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:09:53,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:09:53,591 INFO [long-pulling] client count 0 + +2025-09-24 15:09:53,750 INFO toNotifyTaskSize = 0 + +2025-09-24 15:09:53,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:10:03,592 INFO [long-pulling] client count 0 + +2025-09-24 15:10:03,592 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:10:03,751 INFO toNotifyTaskSize = 0 + +2025-09-24 15:10:03,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:10:13,592 INFO [long-pulling] client count 0 + +2025-09-24 15:10:13,592 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:10:13,751 INFO toNotifyTaskSize = 0 + +2025-09-24 15:10:13,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:10:23,592 INFO [long-pulling] client count 0 + +2025-09-24 15:10:23,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:10:23,753 INFO toNotifyTaskSize = 0 + +2025-09-24 15:10:23,753 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:10:33,593 INFO [long-pulling] client count 0 + +2025-09-24 15:10:33,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:10:33,754 INFO toNotifyTaskSize = 0 + +2025-09-24 15:10:33,754 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:10:43,593 INFO [long-pulling] client count 0 + +2025-09-24 15:10:43,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:10:43,755 INFO toNotifyTaskSize = 0 + +2025-09-24 15:10:43,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:10:53,595 INFO [long-pulling] client count 0 + +2025-09-24 15:10:53,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:10:53,756 INFO toNotifyTaskSize = 0 + +2025-09-24 15:10:53,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:11:03,595 INFO [long-pulling] client count 0 + +2025-09-24 15:11:03,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:11:03,756 INFO toNotifyTaskSize = 0 + +2025-09-24 15:11:03,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:11:13,596 INFO [long-pulling] client count 0 + +2025-09-24 15:11:13,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:11:13,757 INFO toNotifyTaskSize = 0 + +2025-09-24 15:11:13,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:11:23,597 INFO [long-pulling] client count 0 + +2025-09-24 15:11:23,597 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:11:23,757 INFO toNotifyTaskSize = 0 + +2025-09-24 15:11:23,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:11:33,598 INFO [long-pulling] client count 0 + +2025-09-24 15:11:33,598 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:11:33,758 INFO toNotifyTaskSize = 0 + +2025-09-24 15:11:33,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:11:43,599 INFO [long-pulling] client count 0 + +2025-09-24 15:11:43,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:11:43,758 INFO toNotifyTaskSize = 0 + +2025-09-24 15:11:43,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:11:53,601 INFO [long-pulling] client count 0 + +2025-09-24 15:11:53,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:11:53,760 INFO toNotifyTaskSize = 0 + +2025-09-24 15:11:53,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:12:03,601 INFO [long-pulling] client count 0 + +2025-09-24 15:12:03,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:12:03,761 INFO toNotifyTaskSize = 0 + +2025-09-24 15:12:03,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:12:13,603 INFO [long-pulling] client count 0 + +2025-09-24 15:12:13,603 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:12:13,761 INFO toNotifyTaskSize = 0 + +2025-09-24 15:12:13,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:12:23,605 INFO [long-pulling] client count 0 + +2025-09-24 15:12:23,605 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:12:23,761 INFO toNotifyTaskSize = 0 + +2025-09-24 15:12:23,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:12:33,606 INFO [long-pulling] client count 0 + +2025-09-24 15:12:33,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:12:33,762 INFO toNotifyTaskSize = 0 + +2025-09-24 15:12:33,762 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:12:43,606 INFO [long-pulling] client count 0 + +2025-09-24 15:12:43,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:12:43,762 INFO toNotifyTaskSize = 0 + +2025-09-24 15:12:43,762 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:12:53,609 INFO [long-pulling] client count 0 + +2025-09-24 15:12:53,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:12:53,763 INFO toNotifyTaskSize = 0 + +2025-09-24 15:12:53,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:13:03,611 INFO [long-pulling] client count 0 + +2025-09-24 15:13:03,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:13:03,763 INFO toNotifyTaskSize = 0 + +2025-09-24 15:13:03,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:13:13,611 INFO [long-pulling] client count 0 + +2025-09-24 15:13:13,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:13:13,763 INFO toNotifyTaskSize = 0 + +2025-09-24 15:13:13,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:13:23,612 INFO [long-pulling] client count 0 + +2025-09-24 15:13:23,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:13:23,765 INFO toNotifyTaskSize = 0 + +2025-09-24 15:13:23,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:13:33,612 INFO [long-pulling] client count 0 + +2025-09-24 15:13:33,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:13:33,767 INFO toNotifyTaskSize = 0 + +2025-09-24 15:13:33,767 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:13:43,612 INFO [long-pulling] client count 0 + +2025-09-24 15:13:43,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:13:43,768 INFO toNotifyTaskSize = 0 + +2025-09-24 15:13:43,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:13:53,613 INFO [long-pulling] client count 0 + +2025-09-24 15:13:53,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:13:53,768 INFO toNotifyTaskSize = 0 + +2025-09-24 15:13:53,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:14:03,615 INFO [long-pulling] client count 0 + +2025-09-24 15:14:03,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:14:03,771 INFO toNotifyTaskSize = 0 + +2025-09-24 15:14:03,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:14:13,615 INFO [long-pulling] client count 0 + +2025-09-24 15:14:13,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:14:13,771 INFO toNotifyTaskSize = 0 + +2025-09-24 15:14:13,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:14:23,617 INFO [long-pulling] client count 0 + +2025-09-24 15:14:23,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:14:23,772 INFO toNotifyTaskSize = 0 + +2025-09-24 15:14:23,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:14:33,618 INFO [long-pulling] client count 0 + +2025-09-24 15:14:33,618 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:14:33,774 INFO toNotifyTaskSize = 0 + +2025-09-24 15:14:33,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:14:43,620 INFO [long-pulling] client count 0 + +2025-09-24 15:14:43,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:14:43,774 INFO toNotifyTaskSize = 0 + +2025-09-24 15:14:43,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:14:53,621 INFO [long-pulling] client count 0 + +2025-09-24 15:14:53,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:14:53,775 INFO toNotifyTaskSize = 0 + +2025-09-24 15:14:53,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:15:03,621 INFO [long-pulling] client count 0 + +2025-09-24 15:15:03,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:15:03,776 INFO toNotifyTaskSize = 0 + +2025-09-24 15:15:03,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:15:13,623 INFO [long-pulling] client count 0 + +2025-09-24 15:15:13,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:15:13,776 INFO toNotifyTaskSize = 0 + +2025-09-24 15:15:13,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:15:23,625 INFO [long-pulling] client count 0 + +2025-09-24 15:15:23,625 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:15:23,778 INFO toNotifyTaskSize = 0 + +2025-09-24 15:15:23,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:15:33,626 INFO [long-pulling] client count 0 + +2025-09-24 15:15:33,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:15:33,780 INFO toNotifyTaskSize = 0 + +2025-09-24 15:15:33,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:15:43,627 INFO [long-pulling] client count 0 + +2025-09-24 15:15:43,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:15:43,782 INFO toNotifyTaskSize = 0 + +2025-09-24 15:15:43,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:15:53,628 INFO [long-pulling] client count 0 + +2025-09-24 15:15:53,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:15:53,784 INFO toNotifyTaskSize = 0 + +2025-09-24 15:15:53,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:16:03,629 INFO [long-pulling] client count 0 + +2025-09-24 15:16:03,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:16:03,785 INFO toNotifyTaskSize = 0 + +2025-09-24 15:16:03,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:16:13,629 INFO [long-pulling] client count 0 + +2025-09-24 15:16:13,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:16:13,785 INFO toNotifyTaskSize = 0 + +2025-09-24 15:16:13,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:16:23,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:16:23,629 INFO [long-pulling] client count 0 + +2025-09-24 15:16:23,787 INFO toNotifyTaskSize = 0 + +2025-09-24 15:16:23,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:16:33,630 INFO [long-pulling] client count 0 + +2025-09-24 15:16:33,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:16:33,787 INFO toNotifyTaskSize = 0 + +2025-09-24 15:16:33,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:16:43,630 INFO [long-pulling] client count 0 + +2025-09-24 15:16:43,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:16:43,787 INFO toNotifyTaskSize = 0 + +2025-09-24 15:16:43,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:16:53,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:16:53,631 INFO [long-pulling] client count 0 + +2025-09-24 15:16:53,788 INFO toNotifyTaskSize = 0 + +2025-09-24 15:16:53,788 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:17:03,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:17:03,631 INFO [long-pulling] client count 0 + +2025-09-24 15:17:03,788 INFO toNotifyTaskSize = 0 + +2025-09-24 15:17:03,788 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:17:13,633 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:17:13,633 INFO [long-pulling] client count 0 + +2025-09-24 15:17:13,789 INFO toNotifyTaskSize = 0 + +2025-09-24 15:17:13,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:17:23,634 INFO [long-pulling] client count 0 + +2025-09-24 15:17:23,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:17:23,790 INFO toNotifyTaskSize = 0 + +2025-09-24 15:17:23,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:17:33,636 INFO [long-pulling] client count 0 + +2025-09-24 15:17:33,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:17:33,792 INFO toNotifyTaskSize = 0 + +2025-09-24 15:17:33,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:17:43,638 INFO [long-pulling] client count 0 + +2025-09-24 15:17:43,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:17:43,794 INFO toNotifyTaskSize = 0 + +2025-09-24 15:17:43,794 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:17:53,639 INFO [long-pulling] client count 0 + +2025-09-24 15:17:53,639 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:17:53,795 INFO toNotifyTaskSize = 0 + +2025-09-24 15:17:53,795 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:18:03,640 INFO [long-pulling] client count 0 + +2025-09-24 15:18:03,640 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:18:03,796 INFO toNotifyTaskSize = 0 + +2025-09-24 15:18:03,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:18:13,641 INFO [long-pulling] client count 0 + +2025-09-24 15:18:13,641 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:18:13,798 INFO toNotifyTaskSize = 0 + +2025-09-24 15:18:13,798 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:18:23,643 INFO [long-pulling] client count 0 + +2025-09-24 15:18:23,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:18:23,799 INFO toNotifyTaskSize = 0 + +2025-09-24 15:18:23,799 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:18:33,644 INFO [long-pulling] client count 0 + +2025-09-24 15:18:33,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:18:33,800 INFO toNotifyTaskSize = 0 + +2025-09-24 15:18:33,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:18:43,645 INFO [long-pulling] client count 0 + +2025-09-24 15:18:43,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:18:43,801 INFO toNotifyTaskSize = 0 + +2025-09-24 15:18:43,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:18:53,646 INFO [long-pulling] client count 0 + +2025-09-24 15:18:53,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:18:53,803 INFO toNotifyTaskSize = 0 + +2025-09-24 15:18:53,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:19:03,646 INFO [long-pulling] client count 0 + +2025-09-24 15:19:03,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:19:03,805 INFO toNotifyTaskSize = 0 + +2025-09-24 15:19:03,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:19:13,648 INFO [long-pulling] client count 0 + +2025-09-24 15:19:13,648 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:19:13,806 INFO toNotifyTaskSize = 0 + +2025-09-24 15:19:13,806 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:19:23,651 INFO [long-pulling] client count 0 + +2025-09-24 15:19:23,651 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:19:23,807 INFO toNotifyTaskSize = 0 + +2025-09-24 15:19:23,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:19:33,652 INFO [long-pulling] client count 0 + +2025-09-24 15:19:33,653 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:19:33,808 INFO toNotifyTaskSize = 0 + +2025-09-24 15:19:33,808 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:19:43,653 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:19:43,653 INFO [long-pulling] client count 0 + +2025-09-24 15:19:43,809 INFO toNotifyTaskSize = 0 + +2025-09-24 15:19:43,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:19:53,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:19:53,654 INFO [long-pulling] client count 0 + +2025-09-24 15:19:53,809 INFO toNotifyTaskSize = 0 + +2025-09-24 15:19:53,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:20:03,655 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:20:03,655 INFO [long-pulling] client count 0 + +2025-09-24 15:20:03,810 INFO toNotifyTaskSize = 0 + +2025-09-24 15:20:03,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:20:13,656 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:20:13,656 INFO [long-pulling] client count 0 + +2025-09-24 15:20:13,810 INFO toNotifyTaskSize = 0 + +2025-09-24 15:20:13,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:20:23,656 INFO [long-pulling] client count 0 + +2025-09-24 15:20:23,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:20:23,812 INFO toNotifyTaskSize = 0 + +2025-09-24 15:20:23,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:20:33,658 INFO [long-pulling] client count 0 + +2025-09-24 15:20:33,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:20:33,813 INFO toNotifyTaskSize = 0 + +2025-09-24 15:20:33,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:20:43,660 INFO [long-pulling] client count 0 + +2025-09-24 15:20:43,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:20:43,813 INFO toNotifyTaskSize = 0 + +2025-09-24 15:20:43,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:20:53,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:20:53,661 INFO [long-pulling] client count 0 + +2025-09-24 15:20:53,814 INFO toNotifyTaskSize = 0 + +2025-09-24 15:20:53,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:21:03,662 INFO [long-pulling] client count 0 + +2025-09-24 15:21:03,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:21:03,814 INFO toNotifyTaskSize = 0 + +2025-09-24 15:21:03,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:21:13,663 INFO [long-pulling] client count 0 + +2025-09-24 15:21:13,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:21:13,814 INFO toNotifyTaskSize = 0 + +2025-09-24 15:21:13,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:21:23,664 INFO [long-pulling] client count 0 + +2025-09-24 15:21:23,664 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:21:23,815 INFO toNotifyTaskSize = 0 + +2025-09-24 15:21:23,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:21:33,666 INFO [long-pulling] client count 0 + +2025-09-24 15:21:33,666 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:21:33,816 INFO toNotifyTaskSize = 0 + +2025-09-24 15:21:33,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:21:43,667 INFO [long-pulling] client count 0 + +2025-09-24 15:21:43,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:21:43,817 INFO toNotifyTaskSize = 0 + +2025-09-24 15:21:43,817 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:21:53,668 INFO [long-pulling] client count 0 + +2025-09-24 15:21:53,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:21:53,818 INFO toNotifyTaskSize = 0 + +2025-09-24 15:21:53,818 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:22:03,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:22:03,668 INFO [long-pulling] client count 0 + +2025-09-24 15:22:03,819 INFO toNotifyTaskSize = 0 + +2025-09-24 15:22:03,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:22:13,669 INFO [long-pulling] client count 0 + +2025-09-24 15:22:13,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:22:13,819 INFO toNotifyTaskSize = 0 + +2025-09-24 15:22:13,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:22:23,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:22:23,671 INFO [long-pulling] client count 0 + +2025-09-24 15:22:23,820 INFO toNotifyTaskSize = 0 + +2025-09-24 15:22:23,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:22:33,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:22:33,671 INFO [long-pulling] client count 0 + +2025-09-24 15:22:33,820 INFO toNotifyTaskSize = 0 + +2025-09-24 15:22:33,820 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:22:43,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:22:43,672 INFO [long-pulling] client count 0 + +2025-09-24 15:22:43,821 INFO toNotifyTaskSize = 0 + +2025-09-24 15:22:43,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:22:53,673 INFO [long-pulling] client count 0 + +2025-09-24 15:22:53,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:22:53,821 INFO toNotifyTaskSize = 0 + +2025-09-24 15:22:53,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:23:03,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:23:03,673 INFO [long-pulling] client count 0 + +2025-09-24 15:23:03,822 INFO toNotifyTaskSize = 0 + +2025-09-24 15:23:03,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:23:13,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:23:13,673 INFO [long-pulling] client count 0 + +2025-09-24 15:23:13,822 INFO toNotifyTaskSize = 0 + +2025-09-24 15:23:13,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:23:23,675 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:23:23,676 INFO [long-pulling] client count 0 + +2025-09-24 15:23:23,824 INFO toNotifyTaskSize = 0 + +2025-09-24 15:23:23,824 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:23:33,677 INFO [long-pulling] client count 0 + +2025-09-24 15:23:33,677 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:23:33,824 INFO toNotifyTaskSize = 0 + +2025-09-24 15:23:33,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:23:43,680 INFO [long-pulling] client count 0 + +2025-09-24 15:23:43,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:23:43,825 INFO toNotifyTaskSize = 0 + +2025-09-24 15:23:43,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:23:53,681 INFO [long-pulling] client count 0 + +2025-09-24 15:23:53,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:23:53,825 INFO toNotifyTaskSize = 0 + +2025-09-24 15:23:53,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:24:03,681 INFO [long-pulling] client count 0 + +2025-09-24 15:24:03,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:24:03,826 INFO toNotifyTaskSize = 0 + +2025-09-24 15:24:03,826 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:24:13,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:24:13,683 INFO [long-pulling] client count 0 + +2025-09-24 15:24:13,827 INFO toNotifyTaskSize = 0 + +2025-09-24 15:24:13,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:24:23,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:24:23,683 INFO [long-pulling] client count 0 + +2025-09-24 15:24:23,828 INFO toNotifyTaskSize = 0 + +2025-09-24 15:24:23,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:24:33,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:24:33,684 INFO [long-pulling] client count 0 + +2025-09-24 15:24:33,830 INFO toNotifyTaskSize = 0 + +2025-09-24 15:24:33,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:24:43,684 INFO [long-pulling] client count 0 + +2025-09-24 15:24:43,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:24:43,831 INFO toNotifyTaskSize = 0 + +2025-09-24 15:24:43,831 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:24:53,685 INFO [long-pulling] client count 0 + +2025-09-24 15:24:53,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:24:53,831 INFO toNotifyTaskSize = 0 + +2025-09-24 15:24:53,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:25:03,686 INFO [long-pulling] client count 0 + +2025-09-24 15:25:03,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:25:03,832 INFO toNotifyTaskSize = 0 + +2025-09-24 15:25:03,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:25:13,686 INFO [long-pulling] client count 0 + +2025-09-24 15:25:13,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:25:13,832 INFO toNotifyTaskSize = 0 + +2025-09-24 15:25:13,833 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:25:23,688 INFO [long-pulling] client count 0 + +2025-09-24 15:25:23,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:25:23,834 INFO toNotifyTaskSize = 0 + +2025-09-24 15:25:23,834 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:25:33,689 INFO [long-pulling] client count 0 + +2025-09-24 15:25:33,689 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:25:33,834 INFO toNotifyTaskSize = 0 + +2025-09-24 15:25:33,834 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:25:43,689 INFO [long-pulling] client count 0 + +2025-09-24 15:25:43,689 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:25:43,835 INFO toNotifyTaskSize = 0 + +2025-09-24 15:25:43,836 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:25:53,690 INFO [long-pulling] client count 0 + +2025-09-24 15:25:53,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:25:53,837 INFO toNotifyTaskSize = 0 + +2025-09-24 15:25:53,837 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:26:03,690 INFO [long-pulling] client count 0 + +2025-09-24 15:26:03,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:26:03,837 INFO toNotifyTaskSize = 0 + +2025-09-24 15:26:03,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:26:13,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:26:13,692 INFO [long-pulling] client count 0 + +2025-09-24 15:26:13,840 INFO toNotifyTaskSize = 0 + +2025-09-24 15:26:13,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:26:23,694 INFO [long-pulling] client count 0 + +2025-09-24 15:26:23,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:26:23,840 INFO toNotifyTaskSize = 0 + +2025-09-24 15:26:23,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:26:33,694 INFO [long-pulling] client count 0 + +2025-09-24 15:26:33,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:26:33,841 INFO toNotifyTaskSize = 0 + +2025-09-24 15:26:33,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:26:43,694 INFO [long-pulling] client count 0 + +2025-09-24 15:26:43,694 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:26:43,841 INFO toNotifyTaskSize = 0 + +2025-09-24 15:26:43,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:26:53,696 INFO [long-pulling] client count 0 + +2025-09-24 15:26:53,696 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:26:53,842 INFO toNotifyTaskSize = 0 + +2025-09-24 15:26:53,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:27:03,697 INFO [long-pulling] client count 0 + +2025-09-24 15:27:03,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:27:03,842 INFO toNotifyTaskSize = 0 + +2025-09-24 15:27:03,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:27:13,697 INFO [long-pulling] client count 0 + +2025-09-24 15:27:13,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:27:13,843 INFO toNotifyTaskSize = 0 + +2025-09-24 15:27:13,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:27:23,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:27:23,698 INFO [long-pulling] client count 0 + +2025-09-24 15:27:23,845 INFO toNotifyTaskSize = 0 + +2025-09-24 15:27:23,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:27:33,699 INFO [long-pulling] client count 0 + +2025-09-24 15:27:33,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:27:33,845 INFO toNotifyTaskSize = 0 + +2025-09-24 15:27:33,846 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:27:43,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:27:43,701 INFO [long-pulling] client count 0 + +2025-09-24 15:27:43,847 INFO toNotifyTaskSize = 0 + +2025-09-24 15:27:43,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:27:53,701 INFO [long-pulling] client count 0 + +2025-09-24 15:27:53,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:27:53,848 INFO toNotifyTaskSize = 0 + +2025-09-24 15:27:53,848 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:28:03,704 INFO [long-pulling] client count 0 + +2025-09-24 15:28:03,704 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:28:03,849 INFO toNotifyTaskSize = 0 + +2025-09-24 15:28:03,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:28:13,705 INFO [long-pulling] client count 0 + +2025-09-24 15:28:13,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:28:13,849 INFO toNotifyTaskSize = 0 + +2025-09-24 15:28:13,850 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:28:23,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:28:23,706 INFO [long-pulling] client count 0 + +2025-09-24 15:28:23,851 INFO toNotifyTaskSize = 0 + +2025-09-24 15:28:23,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:28:33,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:28:33,706 INFO [long-pulling] client count 0 + +2025-09-24 15:28:33,852 INFO toNotifyTaskSize = 0 + +2025-09-24 15:28:33,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:28:43,707 INFO [long-pulling] client count 0 + +2025-09-24 15:28:43,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:28:43,852 INFO toNotifyTaskSize = 0 + +2025-09-24 15:28:43,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:28:53,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:28:53,708 INFO [long-pulling] client count 0 + +2025-09-24 15:28:53,853 INFO toNotifyTaskSize = 0 + +2025-09-24 15:28:53,853 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:29:03,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:29:03,709 INFO [long-pulling] client count 0 + +2025-09-24 15:29:03,853 INFO toNotifyTaskSize = 0 + +2025-09-24 15:29:03,853 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:29:13,709 INFO [long-pulling] client count 0 + +2025-09-24 15:29:13,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:29:13,853 INFO toNotifyTaskSize = 0 + +2025-09-24 15:29:13,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:29:23,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:29:23,711 INFO [long-pulling] client count 0 + +2025-09-24 15:29:23,856 INFO toNotifyTaskSize = 0 + +2025-09-24 15:29:23,856 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:29:33,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:29:33,712 INFO [long-pulling] client count 0 + +2025-09-24 15:29:33,858 INFO toNotifyTaskSize = 0 + +2025-09-24 15:29:33,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:29:43,713 INFO [long-pulling] client count 0 + +2025-09-24 15:29:43,713 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:29:43,861 INFO toNotifyTaskSize = 0 + +2025-09-24 15:29:43,861 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:29:53,715 INFO [long-pulling] client count 0 + +2025-09-24 15:29:53,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:29:53,863 INFO toNotifyTaskSize = 0 + +2025-09-24 15:29:53,863 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:30:03,716 INFO [long-pulling] client count 0 + +2025-09-24 15:30:03,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:30:03,865 INFO toNotifyTaskSize = 0 + +2025-09-24 15:30:03,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:30:13,717 INFO [long-pulling] client count 0 + +2025-09-24 15:30:13,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:30:13,865 INFO toNotifyTaskSize = 0 + +2025-09-24 15:30:13,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:30:23,718 INFO [long-pulling] client count 0 + +2025-09-24 15:30:23,718 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:30:23,866 INFO toNotifyTaskSize = 0 + +2025-09-24 15:30:23,866 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:30:33,719 INFO [long-pulling] client count 0 + +2025-09-24 15:30:33,720 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:30:33,866 INFO toNotifyTaskSize = 0 + +2025-09-24 15:30:33,867 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:30:43,721 INFO [long-pulling] client count 0 + +2025-09-24 15:30:43,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:30:43,867 INFO toNotifyTaskSize = 0 + +2025-09-24 15:30:43,867 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:30:53,722 INFO [long-pulling] client count 0 + +2025-09-24 15:30:53,722 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:30:53,869 INFO toNotifyTaskSize = 0 + +2025-09-24 15:30:53,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:31:03,722 INFO [long-pulling] client count 0 + +2025-09-24 15:31:03,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:31:03,869 INFO toNotifyTaskSize = 0 + +2025-09-24 15:31:03,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:31:13,724 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:31:13,724 INFO [long-pulling] client count 0 + +2025-09-24 15:31:13,871 INFO toNotifyTaskSize = 0 + +2025-09-24 15:31:13,871 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:31:23,726 INFO [long-pulling] client count 0 + +2025-09-24 15:31:23,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:31:23,872 INFO toNotifyTaskSize = 0 + +2025-09-24 15:31:23,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:31:33,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:31:33,726 INFO [long-pulling] client count 0 + +2025-09-24 15:31:33,872 INFO toNotifyTaskSize = 0 + +2025-09-24 15:31:33,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:31:43,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:31:43,727 INFO [long-pulling] client count 0 + +2025-09-24 15:31:43,874 INFO toNotifyTaskSize = 0 + +2025-09-24 15:31:43,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:31:53,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:31:53,728 INFO [long-pulling] client count 0 + +2025-09-24 15:31:53,875 INFO toNotifyTaskSize = 0 + +2025-09-24 15:31:53,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:32:03,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:32:03,729 INFO [long-pulling] client count 0 + +2025-09-24 15:32:03,878 INFO toNotifyTaskSize = 0 + +2025-09-24 15:32:03,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:32:13,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:32:13,729 INFO [long-pulling] client count 0 + +2025-09-24 15:32:13,880 INFO toNotifyTaskSize = 0 + +2025-09-24 15:32:13,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:32:23,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:32:23,730 INFO [long-pulling] client count 0 + +2025-09-24 15:32:23,882 INFO toNotifyTaskSize = 0 + +2025-09-24 15:32:23,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:32:33,731 INFO [long-pulling] client count 0 + +2025-09-24 15:32:33,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:32:33,882 INFO toNotifyTaskSize = 0 + +2025-09-24 15:32:33,883 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:32:43,733 INFO [long-pulling] client count 0 + +2025-09-24 15:32:43,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:32:43,885 INFO toNotifyTaskSize = 0 + +2025-09-24 15:32:43,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:32:53,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:32:53,734 INFO [long-pulling] client count 0 + +2025-09-24 15:32:53,887 INFO toNotifyTaskSize = 0 + +2025-09-24 15:32:53,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:33:03,735 INFO [long-pulling] client count 0 + +2025-09-24 15:33:03,735 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:33:03,888 INFO toNotifyTaskSize = 0 + +2025-09-24 15:33:03,888 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:33:13,736 INFO [long-pulling] client count 0 + +2025-09-24 15:33:13,736 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:33:13,889 INFO toNotifyTaskSize = 0 + +2025-09-24 15:33:13,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:33:23,737 INFO [long-pulling] client count 0 + +2025-09-24 15:33:23,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:33:23,890 INFO toNotifyTaskSize = 0 + +2025-09-24 15:33:23,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:33:33,737 INFO [long-pulling] client count 0 + +2025-09-24 15:33:33,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:33:33,892 INFO toNotifyTaskSize = 0 + +2025-09-24 15:33:33,892 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:33:43,739 INFO [long-pulling] client count 0 + +2025-09-24 15:33:43,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:33:43,893 INFO toNotifyTaskSize = 0 + +2025-09-24 15:33:43,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:33:53,740 INFO [long-pulling] client count 0 + +2025-09-24 15:33:53,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:33:53,894 INFO toNotifyTaskSize = 0 + +2025-09-24 15:33:53,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:34:03,742 INFO [long-pulling] client count 0 + +2025-09-24 15:34:03,742 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:34:03,895 INFO toNotifyTaskSize = 0 + +2025-09-24 15:34:03,895 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:34:13,744 INFO [long-pulling] client count 0 + +2025-09-24 15:34:13,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:34:13,896 INFO toNotifyTaskSize = 0 + +2025-09-24 15:34:13,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:34:23,747 INFO [long-pulling] client count 0 + +2025-09-24 15:34:23,747 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:34:23,898 INFO toNotifyTaskSize = 0 + +2025-09-24 15:34:23,898 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:34:33,749 INFO [long-pulling] client count 0 + +2025-09-24 15:34:33,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:34:33,900 INFO toNotifyTaskSize = 0 + +2025-09-24 15:34:33,900 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:34:43,751 INFO [long-pulling] client count 0 + +2025-09-24 15:34:43,751 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:34:43,904 INFO toNotifyTaskSize = 0 + +2025-09-24 15:34:43,904 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:34:53,753 INFO [long-pulling] client count 0 + +2025-09-24 15:34:53,753 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:34:53,906 INFO toNotifyTaskSize = 0 + +2025-09-24 15:34:53,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:35:03,755 INFO [long-pulling] client count 0 + +2025-09-24 15:35:03,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:35:03,908 INFO toNotifyTaskSize = 0 + +2025-09-24 15:35:03,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:35:13,756 INFO [long-pulling] client count 0 + +2025-09-24 15:35:13,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:35:13,908 INFO toNotifyTaskSize = 0 + +2025-09-24 15:35:13,909 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:35:23,757 INFO [long-pulling] client count 0 + +2025-09-24 15:35:23,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:35:23,909 INFO toNotifyTaskSize = 0 + +2025-09-24 15:35:23,909 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:35:33,758 INFO [long-pulling] client count 0 + +2025-09-24 15:35:33,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:35:33,910 INFO toNotifyTaskSize = 0 + +2025-09-24 15:35:33,910 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:35:43,761 INFO [long-pulling] client count 0 + +2025-09-24 15:35:43,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:35:43,910 INFO toNotifyTaskSize = 0 + +2025-09-24 15:35:43,910 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:35:53,761 INFO [long-pulling] client count 0 + +2025-09-24 15:35:53,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:35:53,911 INFO toNotifyTaskSize = 0 + +2025-09-24 15:35:53,911 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:36:03,762 INFO [long-pulling] client count 0 + +2025-09-24 15:36:03,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:36:03,911 INFO toNotifyTaskSize = 0 + +2025-09-24 15:36:03,912 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:36:13,765 INFO [long-pulling] client count 0 + +2025-09-24 15:36:13,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:36:13,912 INFO toNotifyTaskSize = 0 + +2025-09-24 15:36:13,912 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:36:23,766 INFO [long-pulling] client count 0 + +2025-09-24 15:36:23,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:36:23,913 INFO toNotifyTaskSize = 0 + +2025-09-24 15:36:23,913 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:36:33,767 INFO [long-pulling] client count 0 + +2025-09-24 15:36:33,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:36:33,914 INFO toNotifyTaskSize = 0 + +2025-09-24 15:36:33,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:36:43,769 INFO [long-pulling] client count 0 + +2025-09-24 15:36:43,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:36:43,915 INFO toNotifyTaskSize = 0 + +2025-09-24 15:36:43,915 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:36:53,770 INFO [long-pulling] client count 0 + +2025-09-24 15:36:53,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:36:53,915 INFO toNotifyTaskSize = 0 + +2025-09-24 15:36:53,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:37:03,773 INFO [long-pulling] client count 0 + +2025-09-24 15:37:03,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:37:03,916 INFO toNotifyTaskSize = 0 + +2025-09-24 15:37:03,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:37:13,775 INFO [long-pulling] client count 0 + +2025-09-24 15:37:13,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:37:13,918 INFO toNotifyTaskSize = 0 + +2025-09-24 15:37:13,918 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:37:23,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:37:23,776 INFO [long-pulling] client count 0 + +2025-09-24 15:37:23,920 INFO toNotifyTaskSize = 0 + +2025-09-24 15:37:23,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:37:33,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:37:33,779 INFO [long-pulling] client count 0 + +2025-09-24 15:37:33,920 INFO toNotifyTaskSize = 0 + +2025-09-24 15:37:33,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:37:43,780 INFO [long-pulling] client count 0 + +2025-09-24 15:37:43,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:37:43,921 INFO toNotifyTaskSize = 0 + +2025-09-24 15:37:43,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:37:53,781 INFO [long-pulling] client count 0 + +2025-09-24 15:37:53,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:37:53,923 INFO toNotifyTaskSize = 0 + +2025-09-24 15:37:53,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:38:03,782 INFO [long-pulling] client count 0 + +2025-09-24 15:38:03,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:38:03,923 INFO toNotifyTaskSize = 0 + +2025-09-24 15:38:03,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:38:13,782 INFO [long-pulling] client count 0 + +2025-09-24 15:38:13,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:38:13,924 INFO toNotifyTaskSize = 0 + +2025-09-24 15:38:13,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:38:23,783 INFO [long-pulling] client count 0 + +2025-09-24 15:38:23,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:38:23,924 INFO toNotifyTaskSize = 0 + +2025-09-24 15:38:23,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:38:33,784 INFO [long-pulling] client count 0 + +2025-09-24 15:38:33,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:38:33,925 INFO toNotifyTaskSize = 0 + +2025-09-24 15:38:33,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:38:43,784 INFO [long-pulling] client count 0 + +2025-09-24 15:38:43,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:38:43,925 INFO toNotifyTaskSize = 0 + +2025-09-24 15:38:43,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:38:53,785 INFO [long-pulling] client count 0 + +2025-09-24 15:38:53,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:38:53,926 INFO toNotifyTaskSize = 0 + +2025-09-24 15:38:53,926 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:39:03,785 INFO [long-pulling] client count 0 + +2025-09-24 15:39:03,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:39:03,927 INFO toNotifyTaskSize = 0 + +2025-09-24 15:39:03,927 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:39:13,785 INFO [long-pulling] client count 0 + +2025-09-24 15:39:13,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:39:13,929 INFO toNotifyTaskSize = 0 + +2025-09-24 15:39:13,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:39:23,787 INFO [long-pulling] client count 0 + +2025-09-24 15:39:23,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:39:23,930 INFO toNotifyTaskSize = 0 + +2025-09-24 15:39:23,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:39:33,788 INFO [long-pulling] client count 0 + +2025-09-24 15:39:33,789 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:39:33,935 INFO toNotifyTaskSize = 0 + +2025-09-24 15:39:33,936 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:39:43,789 INFO [long-pulling] client count 0 + +2025-09-24 15:39:43,789 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:39:43,937 INFO toNotifyTaskSize = 0 + +2025-09-24 15:39:43,938 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:39:53,790 INFO [long-pulling] client count 0 + +2025-09-24 15:39:53,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:39:53,938 INFO toNotifyTaskSize = 0 + +2025-09-24 15:39:53,938 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:40:03,791 INFO [long-pulling] client count 0 + +2025-09-24 15:40:03,791 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:40:03,939 INFO toNotifyTaskSize = 0 + +2025-09-24 15:40:03,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:40:13,793 INFO [long-pulling] client count 0 + +2025-09-24 15:40:13,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:40:13,941 INFO toNotifyTaskSize = 0 + +2025-09-24 15:40:13,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:40:23,793 INFO [long-pulling] client count 0 + +2025-09-24 15:40:23,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:40:23,941 INFO toNotifyTaskSize = 0 + +2025-09-24 15:40:23,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:40:33,794 INFO [long-pulling] client count 0 + +2025-09-24 15:40:33,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:40:33,943 INFO toNotifyTaskSize = 0 + +2025-09-24 15:40:33,943 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:40:43,795 INFO [long-pulling] client count 0 + +2025-09-24 15:40:43,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:40:43,944 INFO toNotifyTaskSize = 0 + +2025-09-24 15:40:43,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:40:53,795 INFO [long-pulling] client count 0 + +2025-09-24 15:40:53,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:40:53,945 INFO toNotifyTaskSize = 0 + +2025-09-24 15:40:53,945 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:41:03,795 INFO [long-pulling] client count 0 + +2025-09-24 15:41:03,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:41:03,946 INFO toNotifyTaskSize = 0 + +2025-09-24 15:41:03,946 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:41:13,797 INFO [long-pulling] client count 0 + +2025-09-24 15:41:13,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:41:13,948 INFO toNotifyTaskSize = 0 + +2025-09-24 15:41:13,948 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:41:23,799 INFO [long-pulling] client count 0 + +2025-09-24 15:41:23,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:41:23,948 INFO toNotifyTaskSize = 0 + +2025-09-24 15:41:23,948 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:41:33,800 INFO [long-pulling] client count 0 + +2025-09-24 15:41:33,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:41:33,949 INFO toNotifyTaskSize = 0 + +2025-09-24 15:41:33,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:41:43,800 INFO [long-pulling] client count 0 + +2025-09-24 15:41:43,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:41:43,949 INFO toNotifyTaskSize = 0 + +2025-09-24 15:41:43,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:41:53,800 INFO [long-pulling] client count 0 + +2025-09-24 15:41:53,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:41:53,951 INFO toNotifyTaskSize = 0 + +2025-09-24 15:41:53,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:42:03,801 INFO [long-pulling] client count 0 + +2025-09-24 15:42:03,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:42:03,953 INFO toNotifyTaskSize = 0 + +2025-09-24 15:42:03,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:42:13,802 INFO [long-pulling] client count 0 + +2025-09-24 15:42:13,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:42:13,955 INFO toNotifyTaskSize = 0 + +2025-09-24 15:42:13,955 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:42:23,804 INFO [long-pulling] client count 0 + +2025-09-24 15:42:23,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:42:23,955 INFO toNotifyTaskSize = 0 + +2025-09-24 15:42:23,955 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:42:33,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:42:33,805 INFO [long-pulling] client count 0 + +2025-09-24 15:42:33,956 INFO toNotifyTaskSize = 0 + +2025-09-24 15:42:33,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:42:43,806 INFO [long-pulling] client count 0 + +2025-09-24 15:42:43,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:42:43,956 INFO toNotifyTaskSize = 0 + +2025-09-24 15:42:43,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:42:53,808 INFO [long-pulling] client count 0 + +2025-09-24 15:42:53,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:42:53,957 INFO toNotifyTaskSize = 0 + +2025-09-24 15:42:53,957 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:43:03,810 INFO [long-pulling] client count 0 + +2025-09-24 15:43:03,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:43:03,959 INFO toNotifyTaskSize = 0 + +2025-09-24 15:43:03,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:43:13,812 INFO [long-pulling] client count 0 + +2025-09-24 15:43:13,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:43:13,960 INFO toNotifyTaskSize = 0 + +2025-09-24 15:43:13,960 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:43:23,814 INFO [long-pulling] client count 0 + +2025-09-24 15:43:23,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:43:23,962 INFO toNotifyTaskSize = 0 + +2025-09-24 15:43:23,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:43:33,816 INFO [long-pulling] client count 0 + +2025-09-24 15:43:33,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:43:33,963 INFO toNotifyTaskSize = 0 + +2025-09-24 15:43:33,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:43:43,818 INFO [long-pulling] client count 0 + +2025-09-24 15:43:43,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:43:43,964 INFO toNotifyTaskSize = 0 + +2025-09-24 15:43:43,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:43:53,818 INFO [long-pulling] client count 0 + +2025-09-24 15:43:53,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:43:53,966 INFO toNotifyTaskSize = 0 + +2025-09-24 15:43:53,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:44:03,819 INFO [long-pulling] client count 0 + +2025-09-24 15:44:03,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:44:03,966 INFO toNotifyTaskSize = 0 + +2025-09-24 15:44:03,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:44:13,819 INFO [long-pulling] client count 0 + +2025-09-24 15:44:13,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:44:13,967 INFO toNotifyTaskSize = 0 + +2025-09-24 15:44:13,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:44:23,820 INFO [long-pulling] client count 0 + +2025-09-24 15:44:23,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:44:23,968 INFO toNotifyTaskSize = 0 + +2025-09-24 15:44:23,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:44:33,823 INFO [long-pulling] client count 0 + +2025-09-24 15:44:33,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:44:33,968 INFO toNotifyTaskSize = 0 + +2025-09-24 15:44:33,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:44:43,823 INFO [long-pulling] client count 0 + +2025-09-24 15:44:43,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:44:43,970 INFO toNotifyTaskSize = 0 + +2025-09-24 15:44:43,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:44:53,826 INFO [long-pulling] client count 0 + +2025-09-24 15:44:53,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:44:53,972 INFO toNotifyTaskSize = 0 + +2025-09-24 15:44:53,973 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:45:03,827 INFO [long-pulling] client count 0 + +2025-09-24 15:45:03,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:45:03,974 INFO toNotifyTaskSize = 0 + +2025-09-24 15:45:03,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:45:13,827 INFO [long-pulling] client count 0 + +2025-09-24 15:45:13,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:45:13,976 INFO toNotifyTaskSize = 0 + +2025-09-24 15:45:13,976 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:45:23,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:45:23,828 INFO [long-pulling] client count 0 + +2025-09-24 15:45:23,978 INFO toNotifyTaskSize = 0 + +2025-09-24 15:45:23,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:45:33,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:45:33,830 INFO [long-pulling] client count 0 + +2025-09-24 15:45:33,978 INFO toNotifyTaskSize = 0 + +2025-09-24 15:45:33,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:45:43,831 INFO [long-pulling] client count 0 + +2025-09-24 15:45:43,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:45:43,981 INFO toNotifyTaskSize = 0 + +2025-09-24 15:45:43,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:45:53,832 INFO [long-pulling] client count 0 + +2025-09-24 15:45:53,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:45:53,983 INFO toNotifyTaskSize = 0 + +2025-09-24 15:45:53,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:46:03,832 INFO [long-pulling] client count 0 + +2025-09-24 15:46:03,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:46:03,983 INFO toNotifyTaskSize = 0 + +2025-09-24 15:46:03,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:46:13,833 INFO [long-pulling] client count 0 + +2025-09-24 15:46:13,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:46:13,983 INFO toNotifyTaskSize = 0 + +2025-09-24 15:46:13,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:46:23,835 INFO [long-pulling] client count 0 + +2025-09-24 15:46:23,835 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:46:23,986 INFO toNotifyTaskSize = 0 + +2025-09-24 15:46:23,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:46:33,838 INFO [long-pulling] client count 0 + +2025-09-24 15:46:33,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:46:33,988 INFO toNotifyTaskSize = 0 + +2025-09-24 15:46:33,988 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:46:43,839 INFO [long-pulling] client count 0 + +2025-09-24 15:46:43,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:46:43,988 INFO toNotifyTaskSize = 0 + +2025-09-24 15:46:43,989 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:46:53,840 INFO [long-pulling] client count 0 + +2025-09-24 15:46:53,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:46:53,990 INFO toNotifyTaskSize = 0 + +2025-09-24 15:46:53,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:47:03,841 INFO [long-pulling] client count 0 + +2025-09-24 15:47:03,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:47:03,991 INFO toNotifyTaskSize = 0 + +2025-09-24 15:47:03,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:47:13,841 INFO [long-pulling] client count 0 + +2025-09-24 15:47:13,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:47:13,992 INFO toNotifyTaskSize = 0 + +2025-09-24 15:47:13,992 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:47:23,841 INFO [long-pulling] client count 0 + +2025-09-24 15:47:23,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:47:23,994 INFO toNotifyTaskSize = 0 + +2025-09-24 15:47:23,994 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:47:33,844 INFO [long-pulling] client count 0 + +2025-09-24 15:47:33,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:47:33,995 INFO toNotifyTaskSize = 0 + +2025-09-24 15:47:33,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:47:43,845 INFO [long-pulling] client count 0 + +2025-09-24 15:47:43,845 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:47:43,995 INFO toNotifyTaskSize = 0 + +2025-09-24 15:47:43,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:47:53,847 INFO [long-pulling] client count 0 + +2025-09-24 15:47:53,847 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:47:53,995 INFO toNotifyTaskSize = 0 + +2025-09-24 15:47:53,996 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:48:03,847 INFO [long-pulling] client count 0 + +2025-09-24 15:48:03,848 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:48:03,996 INFO toNotifyTaskSize = 0 + +2025-09-24 15:48:03,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:48:13,848 INFO [long-pulling] client count 0 + +2025-09-24 15:48:13,848 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:48:13,997 INFO toNotifyTaskSize = 0 + +2025-09-24 15:48:13,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:48:23,850 INFO [long-pulling] client count 0 + +2025-09-24 15:48:23,850 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:48:23,999 INFO toNotifyTaskSize = 0 + +2025-09-24 15:48:23,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:48:33,850 INFO [long-pulling] client count 0 + +2025-09-24 15:48:33,850 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:48:33,999 INFO toNotifyTaskSize = 0 + +2025-09-24 15:48:34,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:48:43,851 INFO [long-pulling] client count 0 + +2025-09-24 15:48:43,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:48:44,000 INFO toNotifyTaskSize = 0 + +2025-09-24 15:48:44,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:48:53,851 INFO [long-pulling] client count 0 + +2025-09-24 15:48:53,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:48:54,001 INFO toNotifyTaskSize = 0 + +2025-09-24 15:48:54,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:49:03,852 INFO [long-pulling] client count 0 + +2025-09-24 15:49:03,852 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:49:04,001 INFO toNotifyTaskSize = 0 + +2025-09-24 15:49:04,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:49:13,852 INFO [long-pulling] client count 0 + +2025-09-24 15:49:13,852 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:49:14,002 INFO toNotifyTaskSize = 0 + +2025-09-24 15:49:14,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:49:23,853 INFO [long-pulling] client count 0 + +2025-09-24 15:49:23,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:49:24,002 INFO toNotifyTaskSize = 0 + +2025-09-24 15:49:24,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:49:33,854 INFO [long-pulling] client count 0 + +2025-09-24 15:49:33,854 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:49:34,003 INFO toNotifyTaskSize = 0 + +2025-09-24 15:49:34,003 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:49:43,854 INFO [long-pulling] client count 0 + +2025-09-24 15:49:43,854 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:49:44,005 INFO toNotifyTaskSize = 0 + +2025-09-24 15:49:44,006 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:49:53,855 INFO [long-pulling] client count 0 + +2025-09-24 15:49:53,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:49:54,007 INFO toNotifyTaskSize = 0 + +2025-09-24 15:49:54,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:50:03,855 INFO [long-pulling] client count 0 + +2025-09-24 15:50:03,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:50:04,007 INFO toNotifyTaskSize = 0 + +2025-09-24 15:50:04,008 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:50:13,856 INFO [long-pulling] client count 0 + +2025-09-24 15:50:13,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:50:14,009 INFO toNotifyTaskSize = 0 + +2025-09-24 15:50:14,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:50:23,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:50:23,857 INFO [long-pulling] client count 0 + +2025-09-24 15:50:24,009 INFO toNotifyTaskSize = 0 + +2025-09-24 15:50:24,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:50:33,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:50:33,858 INFO [long-pulling] client count 0 + +2025-09-24 15:50:34,009 INFO toNotifyTaskSize = 0 + +2025-09-24 15:50:34,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:50:43,859 INFO [long-pulling] client count 0 + +2025-09-24 15:50:43,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:50:44,010 INFO toNotifyTaskSize = 0 + +2025-09-24 15:50:44,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:50:53,859 INFO [long-pulling] client count 0 + +2025-09-24 15:50:53,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:50:54,010 INFO toNotifyTaskSize = 0 + +2025-09-24 15:50:54,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:51:03,860 INFO [long-pulling] client count 0 + +2025-09-24 15:51:03,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:51:04,011 INFO toNotifyTaskSize = 0 + +2025-09-24 15:51:04,011 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:51:13,860 INFO [long-pulling] client count 0 + +2025-09-24 15:51:13,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:51:14,011 INFO toNotifyTaskSize = 0 + +2025-09-24 15:51:14,011 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:51:23,860 INFO [long-pulling] client count 0 + +2025-09-24 15:51:23,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:51:24,011 INFO toNotifyTaskSize = 0 + +2025-09-24 15:51:24,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:51:33,861 INFO [long-pulling] client count 0 + +2025-09-24 15:51:33,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:51:34,012 INFO toNotifyTaskSize = 0 + +2025-09-24 15:51:34,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:51:43,861 INFO [long-pulling] client count 0 + +2025-09-24 15:51:43,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:51:44,013 INFO toNotifyTaskSize = 0 + +2025-09-24 15:51:44,013 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:51:53,862 INFO [long-pulling] client count 0 + +2025-09-24 15:51:53,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:51:54,014 INFO toNotifyTaskSize = 0 + +2025-09-24 15:51:54,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:52:03,863 INFO [long-pulling] client count 0 + +2025-09-24 15:52:03,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:52:04,015 INFO toNotifyTaskSize = 0 + +2025-09-24 15:52:04,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:52:13,864 INFO [long-pulling] client count 0 + +2025-09-24 15:52:13,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:52:14,016 INFO toNotifyTaskSize = 0 + +2025-09-24 15:52:14,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:52:23,865 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:52:23,865 INFO [long-pulling] client count 0 + +2025-09-24 15:52:24,017 INFO toNotifyTaskSize = 0 + +2025-09-24 15:52:24,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:52:33,866 INFO [long-pulling] client count 0 + +2025-09-24 15:52:33,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:52:34,017 INFO toNotifyTaskSize = 0 + +2025-09-24 15:52:34,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:52:43,868 INFO [long-pulling] client count 0 + +2025-09-24 15:52:43,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:52:44,020 INFO toNotifyTaskSize = 0 + +2025-09-24 15:52:44,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:52:53,868 INFO [long-pulling] client count 0 + +2025-09-24 15:52:53,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:52:54,021 INFO toNotifyTaskSize = 0 + +2025-09-24 15:52:54,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:53:03,869 INFO [long-pulling] client count 0 + +2025-09-24 15:53:03,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:53:04,022 INFO toNotifyTaskSize = 0 + +2025-09-24 15:53:04,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:53:13,869 INFO [long-pulling] client count 0 + +2025-09-24 15:53:13,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:53:14,022 INFO toNotifyTaskSize = 0 + +2025-09-24 15:53:14,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:53:23,869 INFO [long-pulling] client count 0 + +2025-09-24 15:53:23,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:53:24,025 INFO toNotifyTaskSize = 0 + +2025-09-24 15:53:24,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:53:33,871 INFO [long-pulling] client count 0 + +2025-09-24 15:53:33,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:53:34,026 INFO toNotifyTaskSize = 0 + +2025-09-24 15:53:34,027 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:53:43,871 INFO [long-pulling] client count 0 + +2025-09-24 15:53:43,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:53:44,027 INFO toNotifyTaskSize = 0 + +2025-09-24 15:53:44,027 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:53:53,872 INFO [long-pulling] client count 0 + +2025-09-24 15:53:53,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:53:54,028 INFO toNotifyTaskSize = 0 + +2025-09-24 15:53:54,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:54:03,872 INFO [long-pulling] client count 0 + +2025-09-24 15:54:03,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:54:04,030 INFO toNotifyTaskSize = 0 + +2025-09-24 15:54:04,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:54:13,873 INFO [long-pulling] client count 0 + +2025-09-24 15:54:13,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:54:14,032 INFO toNotifyTaskSize = 0 + +2025-09-24 15:54:14,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:54:23,873 INFO [long-pulling] client count 0 + +2025-09-24 15:54:23,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:54:24,034 INFO toNotifyTaskSize = 0 + +2025-09-24 15:54:24,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:54:33,874 INFO [long-pulling] client count 0 + +2025-09-24 15:54:33,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:54:34,034 INFO toNotifyTaskSize = 0 + +2025-09-24 15:54:34,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:54:43,874 INFO [long-pulling] client count 0 + +2025-09-24 15:54:43,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:54:44,036 INFO toNotifyTaskSize = 0 + +2025-09-24 15:54:44,036 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:54:53,875 INFO [long-pulling] client count 0 + +2025-09-24 15:54:53,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:54:54,037 INFO toNotifyTaskSize = 0 + +2025-09-24 15:54:54,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:55:03,876 INFO [long-pulling] client count 0 + +2025-09-24 15:55:03,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:55:04,038 INFO toNotifyTaskSize = 0 + +2025-09-24 15:55:04,038 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:55:13,876 INFO [long-pulling] client count 0 + +2025-09-24 15:55:13,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:55:14,039 INFO toNotifyTaskSize = 0 + +2025-09-24 15:55:14,039 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:55:23,877 INFO [long-pulling] client count 0 + +2025-09-24 15:55:23,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:55:24,039 INFO toNotifyTaskSize = 0 + +2025-09-24 15:55:24,039 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:55:33,877 INFO [long-pulling] client count 0 + +2025-09-24 15:55:33,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:55:34,041 INFO toNotifyTaskSize = 0 + +2025-09-24 15:55:34,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:55:43,877 INFO [long-pulling] client count 0 + +2025-09-24 15:55:43,878 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:55:44,042 INFO toNotifyTaskSize = 0 + +2025-09-24 15:55:44,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:55:53,877 INFO [long-pulling] client count 0 + +2025-09-24 15:55:53,878 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:55:54,043 INFO toNotifyTaskSize = 0 + +2025-09-24 15:55:54,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:56:03,878 INFO [long-pulling] client count 0 + +2025-09-24 15:56:03,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:56:04,045 INFO toNotifyTaskSize = 0 + +2025-09-24 15:56:04,045 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:56:13,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:56:13,879 INFO [long-pulling] client count 0 + +2025-09-24 15:56:14,046 INFO toNotifyTaskSize = 0 + +2025-09-24 15:56:14,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:56:23,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:56:23,880 INFO [long-pulling] client count 0 + +2025-09-24 15:56:24,047 INFO toNotifyTaskSize = 0 + +2025-09-24 15:56:24,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:56:33,880 INFO [long-pulling] client count 0 + +2025-09-24 15:56:33,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:56:34,048 INFO toNotifyTaskSize = 0 + +2025-09-24 15:56:34,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:56:43,881 INFO [long-pulling] client count 0 + +2025-09-24 15:56:43,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:56:44,049 INFO toNotifyTaskSize = 0 + +2025-09-24 15:56:44,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:56:53,881 INFO [long-pulling] client count 0 + +2025-09-24 15:56:53,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:56:54,049 INFO toNotifyTaskSize = 0 + +2025-09-24 15:56:54,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:57:03,882 INFO [long-pulling] client count 0 + +2025-09-24 15:57:03,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:57:04,050 INFO toNotifyTaskSize = 0 + +2025-09-24 15:57:04,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:57:13,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:57:13,882 INFO [long-pulling] client count 0 + +2025-09-24 15:57:14,050 INFO toNotifyTaskSize = 0 + +2025-09-24 15:57:14,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:57:23,882 INFO [long-pulling] client count 0 + +2025-09-24 15:57:23,883 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:57:24,052 INFO toNotifyTaskSize = 0 + +2025-09-24 15:57:24,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:57:33,884 INFO [long-pulling] client count 0 + +2025-09-24 15:57:33,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:57:34,054 INFO toNotifyTaskSize = 0 + +2025-09-24 15:57:34,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:57:43,884 INFO [long-pulling] client count 0 + +2025-09-24 15:57:43,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:57:44,055 INFO toNotifyTaskSize = 0 + +2025-09-24 15:57:44,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:57:53,885 INFO [long-pulling] client count 0 + +2025-09-24 15:57:53,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:57:54,056 INFO toNotifyTaskSize = 0 + +2025-09-24 15:57:54,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:58:03,886 INFO [long-pulling] client count 0 + +2025-09-24 15:58:03,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:58:04,057 INFO toNotifyTaskSize = 0 + +2025-09-24 15:58:04,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:58:13,887 INFO [long-pulling] client count 0 + +2025-09-24 15:58:13,887 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:58:14,058 INFO toNotifyTaskSize = 0 + +2025-09-24 15:58:14,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:58:23,887 INFO [long-pulling] client count 0 + +2025-09-24 15:58:23,887 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:58:24,059 INFO toNotifyTaskSize = 0 + +2025-09-24 15:58:24,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:58:33,887 INFO [long-pulling] client count 0 + +2025-09-24 15:58:33,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:58:34,059 INFO toNotifyTaskSize = 0 + +2025-09-24 15:58:34,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:58:43,888 INFO [long-pulling] client count 0 + +2025-09-24 15:58:43,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:58:44,060 INFO toNotifyTaskSize = 0 + +2025-09-24 15:58:44,060 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:58:53,888 INFO [long-pulling] client count 0 + +2025-09-24 15:58:53,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:58:54,060 INFO toNotifyTaskSize = 0 + +2025-09-24 15:58:54,060 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:59:03,889 INFO [long-pulling] client count 0 + +2025-09-24 15:59:03,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:59:04,061 INFO toNotifyTaskSize = 0 + +2025-09-24 15:59:04,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:59:13,890 INFO [long-pulling] client count 0 + +2025-09-24 15:59:13,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:59:14,064 INFO toNotifyTaskSize = 0 + +2025-09-24 15:59:14,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:59:23,890 INFO [long-pulling] client count 0 + +2025-09-24 15:59:23,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:59:24,064 INFO toNotifyTaskSize = 0 + +2025-09-24 15:59:24,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:59:33,890 INFO [long-pulling] client count 0 + +2025-09-24 15:59:33,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:59:34,066 INFO toNotifyTaskSize = 0 + +2025-09-24 15:59:34,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:59:43,890 INFO [long-pulling] client count 0 + +2025-09-24 15:59:43,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:59:44,068 INFO toNotifyTaskSize = 0 + +2025-09-24 15:59:44,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 15:59:53,892 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 15:59:53,892 INFO [long-pulling] client count 0 + +2025-09-24 15:59:54,070 INFO toNotifyTaskSize = 0 + +2025-09-24 15:59:54,070 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:00:03,893 INFO [long-pulling] client count 0 + +2025-09-24 16:00:03,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:00:04,072 INFO toNotifyTaskSize = 0 + +2025-09-24 16:00:04,072 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:00:13,893 INFO [long-pulling] client count 0 + +2025-09-24 16:00:13,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:00:14,074 INFO toNotifyTaskSize = 0 + +2025-09-24 16:00:14,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:00:23,894 INFO [long-pulling] client count 0 + +2025-09-24 16:00:23,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:00:24,075 INFO toNotifyTaskSize = 0 + +2025-09-24 16:00:24,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:00:33,895 INFO [long-pulling] client count 0 + +2025-09-24 16:00:33,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:00:34,077 INFO toNotifyTaskSize = 0 + +2025-09-24 16:00:34,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:00:43,895 INFO [long-pulling] client count 0 + +2025-09-24 16:00:43,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:00:44,079 INFO toNotifyTaskSize = 0 + +2025-09-24 16:00:44,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:00:53,895 INFO [long-pulling] client count 0 + +2025-09-24 16:00:53,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:00:54,081 INFO toNotifyTaskSize = 0 + +2025-09-24 16:00:54,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:01:03,897 INFO [long-pulling] client count 0 + +2025-09-24 16:01:03,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:01:04,081 INFO toNotifyTaskSize = 0 + +2025-09-24 16:01:04,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:01:13,897 INFO [long-pulling] client count 0 + +2025-09-24 16:01:13,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:01:14,082 INFO toNotifyTaskSize = 0 + +2025-09-24 16:01:14,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:01:23,898 INFO [long-pulling] client count 0 + +2025-09-24 16:01:23,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:01:24,083 INFO toNotifyTaskSize = 0 + +2025-09-24 16:01:24,083 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:01:33,899 INFO [long-pulling] client count 0 + +2025-09-24 16:01:33,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:01:34,084 INFO toNotifyTaskSize = 0 + +2025-09-24 16:01:34,084 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:01:43,900 INFO [long-pulling] client count 0 + +2025-09-24 16:01:43,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:01:44,086 INFO toNotifyTaskSize = 0 + +2025-09-24 16:01:44,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:01:53,900 INFO [long-pulling] client count 0 + +2025-09-24 16:01:53,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:01:54,087 INFO toNotifyTaskSize = 0 + +2025-09-24 16:01:54,088 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:02:03,900 INFO [long-pulling] client count 0 + +2025-09-24 16:02:03,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:02:04,088 INFO toNotifyTaskSize = 0 + +2025-09-24 16:02:04,088 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:02:13,901 INFO [long-pulling] client count 0 + +2025-09-24 16:02:13,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:02:14,090 INFO toNotifyTaskSize = 0 + +2025-09-24 16:02:14,091 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:02:23,902 INFO [long-pulling] client count 0 + +2025-09-24 16:02:23,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:02:24,091 INFO toNotifyTaskSize = 0 + +2025-09-24 16:02:24,091 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:02:33,903 INFO [long-pulling] client count 0 + +2025-09-24 16:02:33,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:02:34,093 INFO toNotifyTaskSize = 0 + +2025-09-24 16:02:34,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:02:43,903 INFO [long-pulling] client count 0 + +2025-09-24 16:02:43,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:02:44,094 INFO toNotifyTaskSize = 0 + +2025-09-24 16:02:44,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:02:53,904 INFO [long-pulling] client count 0 + +2025-09-24 16:02:53,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:02:54,096 INFO toNotifyTaskSize = 0 + +2025-09-24 16:02:54,096 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:03:03,904 INFO [long-pulling] client count 0 + +2025-09-24 16:03:03,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:03:04,096 INFO toNotifyTaskSize = 0 + +2025-09-24 16:03:04,096 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:03:13,905 INFO [long-pulling] client count 0 + +2025-09-24 16:03:13,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:03:14,098 INFO toNotifyTaskSize = 0 + +2025-09-24 16:03:14,098 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:03:23,905 INFO [long-pulling] client count 0 + +2025-09-24 16:03:23,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:03:24,098 INFO toNotifyTaskSize = 0 + +2025-09-24 16:03:24,098 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:03:33,905 INFO [long-pulling] client count 0 + +2025-09-24 16:03:33,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:03:34,099 INFO toNotifyTaskSize = 0 + +2025-09-24 16:03:34,099 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:03:43,906 INFO [long-pulling] client count 0 + +2025-09-24 16:03:43,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:03:44,101 INFO toNotifyTaskSize = 0 + +2025-09-24 16:03:44,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:03:53,906 INFO [long-pulling] client count 0 + +2025-09-24 16:03:53,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:03:54,101 INFO toNotifyTaskSize = 0 + +2025-09-24 16:03:54,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:04:03,906 INFO [long-pulling] client count 0 + +2025-09-24 16:04:03,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:04:04,102 INFO toNotifyTaskSize = 0 + +2025-09-24 16:04:04,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:04:13,907 INFO [long-pulling] client count 0 + +2025-09-24 16:04:13,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:04:14,102 INFO toNotifyTaskSize = 0 + +2025-09-24 16:04:14,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:04:23,908 INFO [long-pulling] client count 0 + +2025-09-24 16:04:23,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:04:24,105 INFO toNotifyTaskSize = 0 + +2025-09-24 16:04:24,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:04:33,909 INFO [long-pulling] client count 0 + +2025-09-24 16:04:33,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:04:34,107 INFO toNotifyTaskSize = 0 + +2025-09-24 16:04:34,107 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:04:43,909 INFO [long-pulling] client count 0 + +2025-09-24 16:04:43,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:04:44,107 INFO toNotifyTaskSize = 0 + +2025-09-24 16:04:44,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:04:53,910 INFO [long-pulling] client count 0 + +2025-09-24 16:04:53,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:04:54,109 INFO toNotifyTaskSize = 0 + +2025-09-24 16:04:54,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:05:03,910 INFO [long-pulling] client count 0 + +2025-09-24 16:05:03,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:05:04,111 INFO toNotifyTaskSize = 0 + +2025-09-24 16:05:04,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:05:13,910 INFO [long-pulling] client count 0 + +2025-09-24 16:05:13,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:05:14,114 INFO toNotifyTaskSize = 0 + +2025-09-24 16:05:14,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:05:23,910 INFO [long-pulling] client count 0 + +2025-09-24 16:05:23,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:05:24,114 INFO toNotifyTaskSize = 0 + +2025-09-24 16:05:24,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:05:33,912 INFO [long-pulling] client count 0 + +2025-09-24 16:05:33,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:05:34,115 INFO toNotifyTaskSize = 0 + +2025-09-24 16:05:34,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:05:43,912 INFO [long-pulling] client count 0 + +2025-09-24 16:05:43,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:05:44,117 INFO toNotifyTaskSize = 0 + +2025-09-24 16:05:44,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:05:53,912 INFO [long-pulling] client count 0 + +2025-09-24 16:05:53,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:05:54,118 INFO toNotifyTaskSize = 0 + +2025-09-24 16:05:54,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:06:03,915 INFO [long-pulling] client count 0 + +2025-09-24 16:06:03,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:06:04,118 INFO toNotifyTaskSize = 0 + +2025-09-24 16:06:04,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:06:13,916 INFO [long-pulling] client count 0 + +2025-09-24 16:06:13,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:06:14,119 INFO toNotifyTaskSize = 0 + +2025-09-24 16:06:14,119 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:06:23,917 INFO [long-pulling] client count 0 + +2025-09-24 16:06:23,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:06:24,120 INFO toNotifyTaskSize = 0 + +2025-09-24 16:06:24,120 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:06:33,918 INFO [long-pulling] client count 0 + +2025-09-24 16:06:33,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:06:34,122 INFO toNotifyTaskSize = 0 + +2025-09-24 16:06:34,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:06:43,919 INFO [long-pulling] client count 0 + +2025-09-24 16:06:43,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:06:44,122 INFO toNotifyTaskSize = 0 + +2025-09-24 16:06:44,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:06:53,919 INFO [long-pulling] client count 0 + +2025-09-24 16:06:53,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:06:54,123 INFO toNotifyTaskSize = 0 + +2025-09-24 16:06:54,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:07:03,920 INFO [long-pulling] client count 0 + +2025-09-24 16:07:03,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:07:04,123 INFO toNotifyTaskSize = 0 + +2025-09-24 16:07:04,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:07:13,920 INFO [long-pulling] client count 0 + +2025-09-24 16:07:13,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:07:14,124 INFO toNotifyTaskSize = 0 + +2025-09-24 16:07:14,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:07:23,920 INFO [long-pulling] client count 0 + +2025-09-24 16:07:23,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:07:24,126 INFO toNotifyTaskSize = 0 + +2025-09-24 16:07:24,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:07:33,923 INFO [long-pulling] client count 0 + +2025-09-24 16:07:33,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:07:34,128 INFO toNotifyTaskSize = 0 + +2025-09-24 16:07:34,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:07:43,923 INFO [long-pulling] client count 0 + +2025-09-24 16:07:43,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:07:44,128 INFO toNotifyTaskSize = 0 + +2025-09-24 16:07:44,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:07:53,925 INFO [long-pulling] client count 0 + +2025-09-24 16:07:53,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:07:54,130 INFO toNotifyTaskSize = 0 + +2025-09-24 16:07:54,130 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:08:03,927 INFO [long-pulling] client count 0 + +2025-09-24 16:08:03,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:08:04,133 INFO toNotifyTaskSize = 0 + +2025-09-24 16:08:04,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:08:13,928 INFO [long-pulling] client count 0 + +2025-09-24 16:08:13,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:08:14,134 INFO toNotifyTaskSize = 0 + +2025-09-24 16:08:14,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:08:23,928 INFO [long-pulling] client count 0 + +2025-09-24 16:08:23,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:08:24,135 INFO toNotifyTaskSize = 0 + +2025-09-24 16:08:24,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:08:33,929 INFO [long-pulling] client count 0 + +2025-09-24 16:08:33,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:08:34,135 INFO toNotifyTaskSize = 0 + +2025-09-24 16:08:34,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:08:43,929 INFO [long-pulling] client count 0 + +2025-09-24 16:08:43,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:08:44,135 INFO toNotifyTaskSize = 0 + +2025-09-24 16:08:44,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:08:53,932 INFO [long-pulling] client count 0 + +2025-09-24 16:08:53,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:08:54,136 INFO toNotifyTaskSize = 0 + +2025-09-24 16:08:54,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:09:03,946 INFO [long-pulling] client count 0 + +2025-09-24 16:09:03,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:09:04,136 INFO toNotifyTaskSize = 0 + +2025-09-24 16:09:04,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:09:13,947 INFO [long-pulling] client count 0 + +2025-09-24 16:09:13,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:09:14,137 INFO toNotifyTaskSize = 0 + +2025-09-24 16:09:14,137 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:09:23,948 INFO [long-pulling] client count 0 + +2025-09-24 16:09:23,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:09:24,138 INFO toNotifyTaskSize = 0 + +2025-09-24 16:09:24,138 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:09:33,950 INFO [long-pulling] client count 0 + +2025-09-24 16:09:33,950 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:09:34,140 INFO toNotifyTaskSize = 0 + +2025-09-24 16:09:34,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:09:43,952 INFO [long-pulling] client count 0 + +2025-09-24 16:09:43,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:09:44,142 INFO toNotifyTaskSize = 0 + +2025-09-24 16:09:44,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:09:53,952 INFO [long-pulling] client count 0 + +2025-09-24 16:09:53,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:09:54,143 INFO toNotifyTaskSize = 0 + +2025-09-24 16:09:54,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:10:03,952 INFO [long-pulling] client count 0 + +2025-09-24 16:10:03,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:10:04,143 INFO toNotifyTaskSize = 0 + +2025-09-24 16:10:04,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:10:13,954 INFO [long-pulling] client count 0 + +2025-09-24 16:10:13,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:10:14,143 INFO toNotifyTaskSize = 0 + +2025-09-24 16:10:14,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:10:23,955 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:10:23,955 INFO [long-pulling] client count 0 + +2025-09-24 16:10:24,144 INFO toNotifyTaskSize = 0 + +2025-09-24 16:10:24,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:10:33,957 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:10:33,957 INFO [long-pulling] client count 0 + +2025-09-24 16:10:34,145 INFO toNotifyTaskSize = 0 + +2025-09-24 16:10:34,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:10:43,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:10:43,958 INFO [long-pulling] client count 0 + +2025-09-24 16:10:44,145 INFO toNotifyTaskSize = 0 + +2025-09-24 16:10:44,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:10:53,958 INFO [long-pulling] client count 0 + +2025-09-24 16:10:53,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:10:54,146 INFO toNotifyTaskSize = 0 + +2025-09-24 16:10:54,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:11:03,959 INFO [long-pulling] client count 0 + +2025-09-24 16:11:03,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:11:04,148 INFO toNotifyTaskSize = 0 + +2025-09-24 16:11:04,148 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:11:13,960 INFO [long-pulling] client count 0 + +2025-09-24 16:11:13,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:11:14,150 INFO toNotifyTaskSize = 0 + +2025-09-24 16:11:14,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:11:23,960 INFO [long-pulling] client count 0 + +2025-09-24 16:11:23,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:11:24,151 INFO toNotifyTaskSize = 0 + +2025-09-24 16:11:24,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:11:33,962 INFO [long-pulling] client count 0 + +2025-09-24 16:11:33,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:11:34,153 INFO toNotifyTaskSize = 0 + +2025-09-24 16:11:34,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:11:43,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:11:43,963 INFO [long-pulling] client count 0 + +2025-09-24 16:11:44,154 INFO toNotifyTaskSize = 0 + +2025-09-24 16:11:44,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:11:53,964 INFO [long-pulling] client count 0 + +2025-09-24 16:11:53,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:11:54,155 INFO toNotifyTaskSize = 0 + +2025-09-24 16:11:54,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:12:03,964 INFO [long-pulling] client count 0 + +2025-09-24 16:12:03,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:12:04,155 INFO toNotifyTaskSize = 0 + +2025-09-24 16:12:04,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:12:13,964 INFO [long-pulling] client count 0 + +2025-09-24 16:12:13,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:12:14,158 INFO toNotifyTaskSize = 0 + +2025-09-24 16:12:14,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:12:23,965 INFO [long-pulling] client count 0 + +2025-09-24 16:12:23,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:12:24,158 INFO toNotifyTaskSize = 0 + +2025-09-24 16:12:24,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:12:33,966 INFO [long-pulling] client count 0 + +2025-09-24 16:12:33,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:12:34,158 INFO toNotifyTaskSize = 0 + +2025-09-24 16:12:34,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:12:43,968 INFO [long-pulling] client count 0 + +2025-09-24 16:12:43,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:12:44,161 INFO toNotifyTaskSize = 0 + +2025-09-24 16:12:44,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:12:53,968 INFO [long-pulling] client count 0 + +2025-09-24 16:12:53,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:12:54,161 INFO toNotifyTaskSize = 0 + +2025-09-24 16:12:54,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:13:03,969 INFO [long-pulling] client count 0 + +2025-09-24 16:13:03,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:13:04,163 INFO toNotifyTaskSize = 0 + +2025-09-24 16:13:04,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:13:13,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:13:13,971 INFO [long-pulling] client count 0 + +2025-09-24 16:13:14,165 INFO toNotifyTaskSize = 0 + +2025-09-24 16:13:14,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:13:23,972 INFO [long-pulling] client count 0 + +2025-09-24 16:13:23,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:13:24,165 INFO toNotifyTaskSize = 0 + +2025-09-24 16:13:24,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:13:33,975 INFO [long-pulling] client count 0 + +2025-09-24 16:13:33,975 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:13:34,167 INFO toNotifyTaskSize = 0 + +2025-09-24 16:13:34,167 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:13:43,976 INFO [long-pulling] client count 0 + +2025-09-24 16:13:43,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:13:44,168 INFO toNotifyTaskSize = 0 + +2025-09-24 16:13:44,169 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:13:53,976 INFO [long-pulling] client count 0 + +2025-09-24 16:13:53,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:13:54,170 INFO toNotifyTaskSize = 0 + +2025-09-24 16:13:54,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:14:03,977 INFO [long-pulling] client count 0 + +2025-09-24 16:14:03,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:14:04,171 INFO toNotifyTaskSize = 0 + +2025-09-24 16:14:04,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:14:13,978 INFO [long-pulling] client count 0 + +2025-09-24 16:14:13,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:14:14,173 INFO toNotifyTaskSize = 0 + +2025-09-24 16:14:14,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:14:23,978 INFO [long-pulling] client count 0 + +2025-09-24 16:14:23,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:14:24,174 INFO toNotifyTaskSize = 0 + +2025-09-24 16:14:24,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:14:33,980 INFO [long-pulling] client count 0 + +2025-09-24 16:14:33,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:14:34,174 INFO toNotifyTaskSize = 0 + +2025-09-24 16:14:34,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:14:43,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:14:43,981 INFO [long-pulling] client count 0 + +2025-09-24 16:14:44,176 INFO toNotifyTaskSize = 0 + +2025-09-24 16:14:44,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:14:53,982 INFO [long-pulling] client count 0 + +2025-09-24 16:14:53,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:14:54,178 INFO toNotifyTaskSize = 0 + +2025-09-24 16:14:54,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:15:03,983 INFO [long-pulling] client count 0 + +2025-09-24 16:15:03,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:15:04,179 INFO toNotifyTaskSize = 0 + +2025-09-24 16:15:04,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:15:13,984 INFO [long-pulling] client count 0 + +2025-09-24 16:15:13,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:15:14,181 INFO toNotifyTaskSize = 0 + +2025-09-24 16:15:14,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:15:23,985 INFO [long-pulling] client count 0 + +2025-09-24 16:15:23,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:15:24,183 INFO toNotifyTaskSize = 0 + +2025-09-24 16:15:24,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:15:33,987 INFO [long-pulling] client count 0 + +2025-09-24 16:15:33,987 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:15:34,184 INFO toNotifyTaskSize = 0 + +2025-09-24 16:15:34,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:15:43,988 INFO [long-pulling] client count 0 + +2025-09-24 16:15:43,988 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:15:44,186 INFO toNotifyTaskSize = 0 + +2025-09-24 16:15:44,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:15:53,989 INFO [long-pulling] client count 0 + +2025-09-24 16:15:53,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:15:54,188 INFO toNotifyTaskSize = 0 + +2025-09-24 16:15:54,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:16:03,990 INFO [long-pulling] client count 0 + +2025-09-24 16:16:03,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:16:04,189 INFO toNotifyTaskSize = 0 + +2025-09-24 16:16:04,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:16:13,991 INFO [long-pulling] client count 0 + +2025-09-24 16:16:13,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:16:14,190 INFO toNotifyTaskSize = 0 + +2025-09-24 16:16:14,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:16:23,991 INFO [long-pulling] client count 0 + +2025-09-24 16:16:23,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:16:24,190 INFO toNotifyTaskSize = 0 + +2025-09-24 16:16:24,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:16:33,993 INFO [long-pulling] client count 0 + +2025-09-24 16:16:33,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:16:34,190 INFO toNotifyTaskSize = 0 + +2025-09-24 16:16:34,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:16:43,995 INFO [long-pulling] client count 0 + +2025-09-24 16:16:43,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:16:44,192 INFO toNotifyTaskSize = 0 + +2025-09-24 16:16:44,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:16:53,995 INFO [long-pulling] client count 0 + +2025-09-24 16:16:53,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:16:54,194 INFO toNotifyTaskSize = 0 + +2025-09-24 16:16:54,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:17:03,997 INFO [long-pulling] client count 0 + +2025-09-24 16:17:03,997 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:17:04,194 INFO toNotifyTaskSize = 0 + +2025-09-24 16:17:04,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:17:13,998 INFO [long-pulling] client count 0 + +2025-09-24 16:17:13,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:17:14,195 INFO toNotifyTaskSize = 0 + +2025-09-24 16:17:14,195 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:17:23,998 INFO [long-pulling] client count 0 + +2025-09-24 16:17:23,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:17:24,195 INFO toNotifyTaskSize = 0 + +2025-09-24 16:17:24,195 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:17:34,000 INFO [long-pulling] client count 0 + +2025-09-24 16:17:34,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:17:34,196 INFO toNotifyTaskSize = 0 + +2025-09-24 16:17:34,197 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:17:44,001 INFO [long-pulling] client count 0 + +2025-09-24 16:17:44,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:17:44,197 INFO toNotifyTaskSize = 0 + +2025-09-24 16:17:44,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:17:54,002 INFO [long-pulling] client count 0 + +2025-09-24 16:17:54,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:17:54,198 INFO toNotifyTaskSize = 0 + +2025-09-24 16:17:54,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:18:04,003 INFO [long-pulling] client count 0 + +2025-09-24 16:18:04,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:18:04,198 INFO toNotifyTaskSize = 0 + +2025-09-24 16:18:04,199 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:18:14,004 INFO [long-pulling] client count 0 + +2025-09-24 16:18:14,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:18:14,199 INFO toNotifyTaskSize = 0 + +2025-09-24 16:18:14,199 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:18:24,005 INFO [long-pulling] client count 0 + +2025-09-24 16:18:24,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:18:24,200 INFO toNotifyTaskSize = 0 + +2025-09-24 16:18:24,200 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:18:34,005 INFO [long-pulling] client count 0 + +2025-09-24 16:18:34,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:18:34,200 INFO toNotifyTaskSize = 0 + +2025-09-24 16:18:34,200 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:18:44,005 INFO [long-pulling] client count 0 + +2025-09-24 16:18:44,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:18:44,202 INFO toNotifyTaskSize = 0 + +2025-09-24 16:18:44,202 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:18:54,006 INFO [long-pulling] client count 0 + +2025-09-24 16:18:54,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:18:54,204 INFO toNotifyTaskSize = 0 + +2025-09-24 16:18:54,204 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:19:04,006 INFO [long-pulling] client count 0 + +2025-09-24 16:19:04,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:19:04,205 INFO toNotifyTaskSize = 0 + +2025-09-24 16:19:04,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:19:14,007 INFO [long-pulling] client count 0 + +2025-09-24 16:19:14,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:19:14,205 INFO toNotifyTaskSize = 0 + +2025-09-24 16:19:14,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:19:24,008 INFO [long-pulling] client count 0 + +2025-09-24 16:19:24,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:19:24,206 INFO toNotifyTaskSize = 0 + +2025-09-24 16:19:24,206 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:19:34,010 INFO [long-pulling] client count 0 + +2025-09-24 16:19:34,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:19:34,206 INFO toNotifyTaskSize = 0 + +2025-09-24 16:19:34,206 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:19:44,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:19:44,011 INFO [long-pulling] client count 0 + +2025-09-24 16:19:44,206 INFO toNotifyTaskSize = 0 + +2025-09-24 16:19:44,207 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:19:54,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:19:54,011 INFO [long-pulling] client count 0 + +2025-09-24 16:19:54,207 INFO toNotifyTaskSize = 0 + +2025-09-24 16:19:54,207 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:20:04,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:20:04,012 INFO [long-pulling] client count 0 + +2025-09-24 16:20:04,208 INFO toNotifyTaskSize = 0 + +2025-09-24 16:20:04,208 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:20:14,012 INFO [long-pulling] client count 0 + +2025-09-24 16:20:14,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:20:14,211 INFO toNotifyTaskSize = 0 + +2025-09-24 16:20:14,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:20:24,013 INFO [long-pulling] client count 0 + +2025-09-24 16:20:24,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:20:24,213 INFO toNotifyTaskSize = 0 + +2025-09-24 16:20:24,213 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:20:34,015 INFO [long-pulling] client count 0 + +2025-09-24 16:20:34,015 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:20:34,215 INFO toNotifyTaskSize = 0 + +2025-09-24 16:20:34,215 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:20:44,017 INFO [long-pulling] client count 0 + +2025-09-24 16:20:44,017 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:20:44,215 INFO toNotifyTaskSize = 0 + +2025-09-24 16:20:44,216 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:20:54,018 INFO [long-pulling] client count 0 + +2025-09-24 16:20:54,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:20:54,218 INFO toNotifyTaskSize = 0 + +2025-09-24 16:20:54,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:21:04,019 INFO [long-pulling] client count 0 + +2025-09-24 16:21:04,019 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:21:04,219 INFO toNotifyTaskSize = 0 + +2025-09-24 16:21:04,219 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:21:14,019 INFO [long-pulling] client count 0 + +2025-09-24 16:21:14,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:21:14,221 INFO toNotifyTaskSize = 0 + +2025-09-24 16:21:14,221 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:21:24,019 INFO [long-pulling] client count 0 + +2025-09-24 16:21:24,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:21:24,222 INFO toNotifyTaskSize = 0 + +2025-09-24 16:21:24,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:21:34,021 INFO [long-pulling] client count 0 + +2025-09-24 16:21:34,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:21:34,223 INFO toNotifyTaskSize = 0 + +2025-09-24 16:21:34,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:21:44,021 INFO [long-pulling] client count 0 + +2025-09-24 16:21:44,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:21:44,225 INFO toNotifyTaskSize = 0 + +2025-09-24 16:21:44,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:21:54,022 INFO [long-pulling] client count 0 + +2025-09-24 16:21:54,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:21:54,226 INFO toNotifyTaskSize = 0 + +2025-09-24 16:21:54,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:22:04,023 INFO [long-pulling] client count 0 + +2025-09-24 16:22:04,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:22:04,227 INFO toNotifyTaskSize = 0 + +2025-09-24 16:22:04,227 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:22:14,024 INFO [long-pulling] client count 0 + +2025-09-24 16:22:14,025 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:22:14,229 INFO toNotifyTaskSize = 0 + +2025-09-24 16:22:14,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:22:24,025 INFO [long-pulling] client count 0 + +2025-09-24 16:22:24,025 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:22:24,232 INFO toNotifyTaskSize = 0 + +2025-09-24 16:22:24,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:22:34,027 INFO [long-pulling] client count 0 + +2025-09-24 16:22:34,027 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:22:34,232 INFO toNotifyTaskSize = 0 + +2025-09-24 16:22:34,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:22:44,029 INFO [long-pulling] client count 0 + +2025-09-24 16:22:44,029 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:22:44,233 INFO toNotifyTaskSize = 0 + +2025-09-24 16:22:44,233 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:22:54,032 INFO [long-pulling] client count 0 + +2025-09-24 16:22:54,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:22:54,234 INFO toNotifyTaskSize = 0 + +2025-09-24 16:22:54,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:23:04,032 INFO [long-pulling] client count 0 + +2025-09-24 16:23:04,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:23:04,234 INFO toNotifyTaskSize = 0 + +2025-09-24 16:23:04,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:23:14,033 INFO [long-pulling] client count 0 + +2025-09-24 16:23:14,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:23:14,236 INFO toNotifyTaskSize = 0 + +2025-09-24 16:23:14,236 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:23:24,034 INFO [long-pulling] client count 0 + +2025-09-24 16:23:24,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:23:24,238 INFO toNotifyTaskSize = 0 + +2025-09-24 16:23:24,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:23:34,035 INFO [long-pulling] client count 0 + +2025-09-24 16:23:34,035 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:23:34,239 INFO toNotifyTaskSize = 0 + +2025-09-24 16:23:34,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:23:44,037 INFO [long-pulling] client count 0 + +2025-09-24 16:23:44,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:23:44,240 INFO toNotifyTaskSize = 0 + +2025-09-24 16:23:44,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:23:54,037 INFO [long-pulling] client count 0 + +2025-09-24 16:23:54,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:23:54,241 INFO toNotifyTaskSize = 0 + +2025-09-24 16:23:54,241 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:24:04,037 INFO [long-pulling] client count 0 + +2025-09-24 16:24:04,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:24:04,242 INFO toNotifyTaskSize = 0 + +2025-09-24 16:24:04,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:24:14,038 INFO [long-pulling] client count 0 + +2025-09-24 16:24:14,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:24:14,242 INFO toNotifyTaskSize = 0 + +2025-09-24 16:24:14,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:24:24,040 INFO [long-pulling] client count 0 + +2025-09-24 16:24:24,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:24:24,242 INFO toNotifyTaskSize = 0 + +2025-09-24 16:24:24,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:24:34,040 INFO [long-pulling] client count 0 + +2025-09-24 16:24:34,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:24:34,243 INFO toNotifyTaskSize = 0 + +2025-09-24 16:24:34,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:24:44,041 INFO [long-pulling] client count 0 + +2025-09-24 16:24:44,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:24:44,243 INFO toNotifyTaskSize = 0 + +2025-09-24 16:24:44,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:24:54,043 INFO [long-pulling] client count 0 + +2025-09-24 16:24:54,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:24:54,244 INFO toNotifyTaskSize = 0 + +2025-09-24 16:24:54,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:25:04,044 INFO [long-pulling] client count 0 + +2025-09-24 16:25:04,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:25:04,245 INFO toNotifyTaskSize = 0 + +2025-09-24 16:25:04,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:25:14,044 INFO [long-pulling] client count 0 + +2025-09-24 16:25:14,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:25:14,247 INFO toNotifyTaskSize = 0 + +2025-09-24 16:25:14,247 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:25:24,045 INFO [long-pulling] client count 0 + +2025-09-24 16:25:24,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:25:24,251 INFO toNotifyTaskSize = 0 + +2025-09-24 16:25:24,251 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:25:34,046 INFO [long-pulling] client count 0 + +2025-09-24 16:25:34,046 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:25:34,252 INFO toNotifyTaskSize = 0 + +2025-09-24 16:25:34,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:25:44,048 INFO [long-pulling] client count 0 + +2025-09-24 16:25:44,048 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:25:44,254 INFO toNotifyTaskSize = 0 + +2025-09-24 16:25:44,254 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:25:54,049 INFO [long-pulling] client count 0 + +2025-09-24 16:25:54,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:25:54,256 INFO toNotifyTaskSize = 0 + +2025-09-24 16:25:54,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:26:04,049 INFO [long-pulling] client count 0 + +2025-09-24 16:26:04,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:26:04,257 INFO toNotifyTaskSize = 0 + +2025-09-24 16:26:04,257 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:26:14,049 INFO [long-pulling] client count 0 + +2025-09-24 16:26:14,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:26:14,259 INFO toNotifyTaskSize = 0 + +2025-09-24 16:26:14,259 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:26:24,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:26:24,051 INFO [long-pulling] client count 0 + +2025-09-24 16:26:24,261 INFO toNotifyTaskSize = 0 + +2025-09-24 16:26:24,261 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:26:34,053 INFO [long-pulling] client count 0 + +2025-09-24 16:26:34,053 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:26:34,263 INFO toNotifyTaskSize = 0 + +2025-09-24 16:26:34,263 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:26:44,055 INFO [long-pulling] client count 0 + +2025-09-24 16:26:44,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:26:44,265 INFO toNotifyTaskSize = 0 + +2025-09-24 16:26:44,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:26:54,056 INFO [long-pulling] client count 0 + +2025-09-24 16:26:54,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:26:54,265 INFO toNotifyTaskSize = 0 + +2025-09-24 16:26:54,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:27:04,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:27:04,058 INFO [long-pulling] client count 0 + +2025-09-24 16:27:04,266 INFO toNotifyTaskSize = 0 + +2025-09-24 16:27:04,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:27:14,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:27:14,058 INFO [long-pulling] client count 0 + +2025-09-24 16:27:14,268 INFO toNotifyTaskSize = 0 + +2025-09-24 16:27:14,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:27:24,060 INFO [long-pulling] client count 0 + +2025-09-24 16:27:24,060 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:27:24,270 INFO toNotifyTaskSize = 0 + +2025-09-24 16:27:24,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:27:34,062 INFO [long-pulling] client count 0 + +2025-09-24 16:27:34,063 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:27:34,272 INFO toNotifyTaskSize = 0 + +2025-09-24 16:27:34,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:27:44,063 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:27:44,063 INFO [long-pulling] client count 0 + +2025-09-24 16:27:44,272 INFO toNotifyTaskSize = 0 + +2025-09-24 16:27:44,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:27:54,063 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:27:54,064 INFO [long-pulling] client count 0 + +2025-09-24 16:27:54,274 INFO toNotifyTaskSize = 0 + +2025-09-24 16:27:54,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:28:04,065 INFO [long-pulling] client count 0 + +2025-09-24 16:28:04,065 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:28:04,274 INFO toNotifyTaskSize = 0 + +2025-09-24 16:28:04,275 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:28:14,066 INFO [long-pulling] client count 0 + +2025-09-24 16:28:14,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:28:14,275 INFO toNotifyTaskSize = 0 + +2025-09-24 16:28:14,275 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:28:24,067 INFO [long-pulling] client count 0 + +2025-09-24 16:28:24,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:28:24,277 INFO toNotifyTaskSize = 0 + +2025-09-24 16:28:24,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:28:34,068 INFO [long-pulling] client count 0 + +2025-09-24 16:28:34,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:28:34,278 INFO toNotifyTaskSize = 0 + +2025-09-24 16:28:34,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:28:44,070 INFO [long-pulling] client count 0 + +2025-09-24 16:28:44,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:28:44,279 INFO toNotifyTaskSize = 0 + +2025-09-24 16:28:44,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:28:54,070 INFO [long-pulling] client count 0 + +2025-09-24 16:28:54,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:28:54,280 INFO toNotifyTaskSize = 0 + +2025-09-24 16:28:54,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:29:04,071 INFO [long-pulling] client count 0 + +2025-09-24 16:29:04,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:29:04,281 INFO toNotifyTaskSize = 0 + +2025-09-24 16:29:04,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:29:14,071 INFO [long-pulling] client count 0 + +2025-09-24 16:29:14,072 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:29:14,282 INFO toNotifyTaskSize = 0 + +2025-09-24 16:29:14,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:29:24,073 INFO [long-pulling] client count 0 + +2025-09-24 16:29:24,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:29:24,282 INFO toNotifyTaskSize = 0 + +2025-09-24 16:29:24,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:29:34,074 INFO [long-pulling] client count 0 + +2025-09-24 16:29:34,074 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:29:34,283 INFO toNotifyTaskSize = 0 + +2025-09-24 16:29:34,283 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:29:44,075 INFO [long-pulling] client count 0 + +2025-09-24 16:29:44,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:29:44,286 INFO toNotifyTaskSize = 0 + +2025-09-24 16:29:44,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:29:54,076 INFO [long-pulling] client count 0 + +2025-09-24 16:29:54,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:29:54,287 INFO toNotifyTaskSize = 0 + +2025-09-24 16:29:54,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:30:04,076 INFO [long-pulling] client count 0 + +2025-09-24 16:30:04,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:30:04,290 INFO toNotifyTaskSize = 0 + +2025-09-24 16:30:04,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:30:14,076 INFO [long-pulling] client count 0 + +2025-09-24 16:30:14,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:30:14,292 INFO toNotifyTaskSize = 0 + +2025-09-24 16:30:14,292 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:30:24,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:30:24,077 INFO [long-pulling] client count 0 + +2025-09-24 16:30:24,293 INFO toNotifyTaskSize = 0 + +2025-09-24 16:30:24,293 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:30:34,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:30:34,077 INFO [long-pulling] client count 0 + +2025-09-24 16:30:34,295 INFO toNotifyTaskSize = 0 + +2025-09-24 16:30:34,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:30:44,078 INFO [long-pulling] client count 0 + +2025-09-24 16:30:44,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:30:44,297 INFO toNotifyTaskSize = 0 + +2025-09-24 16:30:44,297 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:30:54,079 INFO [long-pulling] client count 0 + +2025-09-24 16:30:54,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:30:54,298 INFO toNotifyTaskSize = 0 + +2025-09-24 16:30:54,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:31:04,081 INFO [long-pulling] client count 0 + +2025-09-24 16:31:04,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:31:04,299 INFO toNotifyTaskSize = 0 + +2025-09-24 16:31:04,299 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:31:14,081 INFO [long-pulling] client count 0 + +2025-09-24 16:31:14,082 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:31:14,301 INFO toNotifyTaskSize = 0 + +2025-09-24 16:31:14,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:31:24,083 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:31:24,083 INFO [long-pulling] client count 0 + +2025-09-24 16:31:24,301 INFO toNotifyTaskSize = 0 + +2025-09-24 16:31:24,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:31:34,084 INFO [long-pulling] client count 0 + +2025-09-24 16:31:34,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:31:34,302 INFO toNotifyTaskSize = 0 + +2025-09-24 16:31:34,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:31:44,085 INFO [long-pulling] client count 0 + +2025-09-24 16:31:44,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:31:44,303 INFO toNotifyTaskSize = 0 + +2025-09-24 16:31:44,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:31:54,087 INFO [long-pulling] client count 0 + +2025-09-24 16:31:54,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:31:54,304 INFO toNotifyTaskSize = 0 + +2025-09-24 16:31:54,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:32:04,088 INFO [long-pulling] client count 0 + +2025-09-24 16:32:04,088 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:32:04,305 INFO toNotifyTaskSize = 0 + +2025-09-24 16:32:04,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:32:14,090 INFO [long-pulling] client count 0 + +2025-09-24 16:32:14,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:32:14,306 INFO toNotifyTaskSize = 0 + +2025-09-24 16:32:14,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:32:24,093 INFO [long-pulling] client count 0 + +2025-09-24 16:32:24,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:32:24,307 INFO toNotifyTaskSize = 0 + +2025-09-24 16:32:24,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:32:34,093 INFO [long-pulling] client count 0 + +2025-09-24 16:32:34,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:32:34,308 INFO toNotifyTaskSize = 0 + +2025-09-24 16:32:34,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:32:44,095 INFO [long-pulling] client count 0 + +2025-09-24 16:32:44,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:32:44,308 INFO toNotifyTaskSize = 0 + +2025-09-24 16:32:44,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:32:54,097 INFO [long-pulling] client count 0 + +2025-09-24 16:32:54,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:32:54,310 INFO toNotifyTaskSize = 0 + +2025-09-24 16:32:54,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:33:04,098 INFO [long-pulling] client count 0 + +2025-09-24 16:33:04,098 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:33:04,311 INFO toNotifyTaskSize = 0 + +2025-09-24 16:33:04,311 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:33:14,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:33:14,100 INFO [long-pulling] client count 0 + +2025-09-24 16:33:14,312 INFO toNotifyTaskSize = 0 + +2025-09-24 16:33:14,312 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:33:24,102 INFO [long-pulling] client count 0 + +2025-09-24 16:33:24,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:33:24,312 INFO toNotifyTaskSize = 0 + +2025-09-24 16:33:24,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:33:34,104 INFO [long-pulling] client count 0 + +2025-09-24 16:33:34,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:33:34,313 INFO toNotifyTaskSize = 0 + +2025-09-24 16:33:34,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:33:44,106 INFO [long-pulling] client count 0 + +2025-09-24 16:33:44,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:33:44,315 INFO toNotifyTaskSize = 0 + +2025-09-24 16:33:44,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:33:54,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:33:54,107 INFO [long-pulling] client count 0 + +2025-09-24 16:33:54,315 INFO toNotifyTaskSize = 0 + +2025-09-24 16:33:54,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:34:04,107 INFO [long-pulling] client count 0 + +2025-09-24 16:34:04,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:34:04,317 INFO toNotifyTaskSize = 0 + +2025-09-24 16:34:04,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:34:14,109 INFO [long-pulling] client count 0 + +2025-09-24 16:34:14,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:34:14,319 INFO toNotifyTaskSize = 0 + +2025-09-24 16:34:14,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:34:24,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:34:24,110 INFO [long-pulling] client count 0 + +2025-09-24 16:34:24,320 INFO toNotifyTaskSize = 0 + +2025-09-24 16:34:24,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:34:34,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:34:34,113 INFO [long-pulling] client count 0 + +2025-09-24 16:34:34,321 INFO toNotifyTaskSize = 0 + +2025-09-24 16:34:34,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:34:44,113 INFO [long-pulling] client count 0 + +2025-09-24 16:34:44,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:34:44,321 INFO toNotifyTaskSize = 0 + +2025-09-24 16:34:44,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:34:54,114 INFO [long-pulling] client count 0 + +2025-09-24 16:34:54,115 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:34:54,322 INFO toNotifyTaskSize = 0 + +2025-09-24 16:34:54,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:35:04,116 INFO [long-pulling] client count 0 + +2025-09-24 16:35:04,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:35:04,322 INFO toNotifyTaskSize = 0 + +2025-09-24 16:35:04,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:35:14,117 INFO [long-pulling] client count 0 + +2025-09-24 16:35:14,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:35:14,323 INFO toNotifyTaskSize = 0 + +2025-09-24 16:35:14,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:35:24,117 INFO [long-pulling] client count 0 + +2025-09-24 16:35:24,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:35:24,323 INFO toNotifyTaskSize = 0 + +2025-09-24 16:35:24,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:35:34,119 INFO [long-pulling] client count 0 + +2025-09-24 16:35:34,120 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:35:34,324 INFO toNotifyTaskSize = 0 + +2025-09-24 16:35:34,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:35:44,120 INFO [long-pulling] client count 0 + +2025-09-24 16:35:44,120 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:35:44,324 INFO toNotifyTaskSize = 0 + +2025-09-24 16:35:44,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:35:54,122 INFO [long-pulling] client count 0 + +2025-09-24 16:35:54,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:35:54,325 INFO toNotifyTaskSize = 0 + +2025-09-24 16:35:54,325 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:36:04,122 INFO [long-pulling] client count 0 + +2025-09-24 16:36:04,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:36:04,327 INFO toNotifyTaskSize = 0 + +2025-09-24 16:36:04,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:36:14,123 INFO [long-pulling] client count 0 + +2025-09-24 16:36:14,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:36:14,330 INFO toNotifyTaskSize = 0 + +2025-09-24 16:36:14,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:36:24,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:36:24,124 INFO [long-pulling] client count 0 + +2025-09-24 16:36:24,330 INFO toNotifyTaskSize = 0 + +2025-09-24 16:36:24,330 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:36:34,125 INFO [long-pulling] client count 0 + +2025-09-24 16:36:34,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:36:34,332 INFO toNotifyTaskSize = 0 + +2025-09-24 16:36:34,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:36:44,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:36:44,125 INFO [long-pulling] client count 0 + +2025-09-24 16:36:44,332 INFO toNotifyTaskSize = 0 + +2025-09-24 16:36:44,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:36:54,127 INFO [long-pulling] client count 0 + +2025-09-24 16:36:54,127 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:36:54,333 INFO toNotifyTaskSize = 0 + +2025-09-24 16:36:54,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:37:04,127 INFO [long-pulling] client count 0 + +2025-09-24 16:37:04,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:37:04,339 INFO toNotifyTaskSize = 0 + +2025-09-24 16:37:04,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:37:14,128 INFO [long-pulling] client count 0 + +2025-09-24 16:37:14,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:37:14,340 INFO toNotifyTaskSize = 0 + +2025-09-24 16:37:14,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:37:24,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:37:24,131 INFO [long-pulling] client count 0 + +2025-09-24 16:37:24,341 INFO toNotifyTaskSize = 0 + +2025-09-24 16:37:24,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:37:34,142 INFO [long-pulling] client count 0 + +2025-09-24 16:37:34,142 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:37:34,342 INFO toNotifyTaskSize = 0 + +2025-09-24 16:37:34,342 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:37:44,143 INFO [long-pulling] client count 0 + +2025-09-24 16:37:44,143 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:37:44,343 INFO toNotifyTaskSize = 0 + +2025-09-24 16:37:44,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:37:54,143 INFO [long-pulling] client count 0 + +2025-09-24 16:37:54,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:37:54,343 INFO toNotifyTaskSize = 0 + +2025-09-24 16:37:54,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:38:04,144 INFO [long-pulling] client count 0 + +2025-09-24 16:38:04,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:38:04,344 INFO toNotifyTaskSize = 0 + +2025-09-24 16:38:04,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:38:14,145 INFO [long-pulling] client count 0 + +2025-09-24 16:38:14,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:38:14,344 INFO toNotifyTaskSize = 0 + +2025-09-24 16:38:14,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:38:24,146 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:38:24,146 INFO [long-pulling] client count 0 + +2025-09-24 16:38:24,345 INFO toNotifyTaskSize = 0 + +2025-09-24 16:38:24,345 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:38:34,146 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:38:34,147 INFO [long-pulling] client count 0 + +2025-09-24 16:38:34,345 INFO toNotifyTaskSize = 0 + +2025-09-24 16:38:34,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:38:44,147 INFO [long-pulling] client count 0 + +2025-09-24 16:38:44,147 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:38:44,346 INFO toNotifyTaskSize = 0 + +2025-09-24 16:38:44,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:38:54,147 INFO [long-pulling] client count 0 + +2025-09-24 16:38:54,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:38:54,346 INFO toNotifyTaskSize = 0 + +2025-09-24 16:38:54,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:39:04,148 INFO [long-pulling] client count 0 + +2025-09-24 16:39:04,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:39:04,347 INFO toNotifyTaskSize = 0 + +2025-09-24 16:39:04,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:39:14,148 INFO [long-pulling] client count 0 + +2025-09-24 16:39:14,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:39:14,348 INFO toNotifyTaskSize = 0 + +2025-09-24 16:39:14,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:39:24,149 INFO [long-pulling] client count 0 + +2025-09-24 16:39:24,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:39:24,348 INFO toNotifyTaskSize = 0 + +2025-09-24 16:39:24,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:39:34,149 INFO [long-pulling] client count 0 + +2025-09-24 16:39:34,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:39:34,349 INFO toNotifyTaskSize = 0 + +2025-09-24 16:39:34,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:39:44,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:39:44,151 INFO [long-pulling] client count 0 + +2025-09-24 16:39:44,349 INFO toNotifyTaskSize = 0 + +2025-09-24 16:39:44,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:39:54,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:39:54,151 INFO [long-pulling] client count 0 + +2025-09-24 16:39:54,349 INFO toNotifyTaskSize = 0 + +2025-09-24 16:39:54,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:40:04,152 INFO [long-pulling] client count 0 + +2025-09-24 16:40:04,152 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:40:04,350 INFO toNotifyTaskSize = 0 + +2025-09-24 16:40:04,350 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:40:14,153 INFO [long-pulling] client count 0 + +2025-09-24 16:40:14,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:40:14,350 INFO toNotifyTaskSize = 0 + +2025-09-24 16:40:14,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:40:24,155 INFO [long-pulling] client count 0 + +2025-09-24 16:40:24,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:40:24,351 INFO toNotifyTaskSize = 0 + +2025-09-24 16:40:24,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:40:34,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:40:34,156 INFO [long-pulling] client count 0 + +2025-09-24 16:40:34,351 INFO toNotifyTaskSize = 0 + +2025-09-24 16:40:34,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:40:44,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:40:44,159 INFO [long-pulling] client count 0 + +2025-09-24 16:40:44,353 INFO toNotifyTaskSize = 0 + +2025-09-24 16:40:44,353 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:40:54,159 INFO [long-pulling] client count 0 + +2025-09-24 16:40:54,159 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:40:54,353 INFO toNotifyTaskSize = 0 + +2025-09-24 16:40:54,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:41:04,161 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:41:04,162 INFO [long-pulling] client count 0 + +2025-09-24 16:41:04,355 INFO toNotifyTaskSize = 0 + +2025-09-24 16:41:04,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:41:14,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:41:14,163 INFO [long-pulling] client count 0 + +2025-09-24 16:41:14,356 INFO toNotifyTaskSize = 0 + +2025-09-24 16:41:14,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:41:24,164 INFO [long-pulling] client count 0 + +2025-09-24 16:41:24,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:41:24,357 INFO toNotifyTaskSize = 0 + +2025-09-24 16:41:24,357 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:41:34,165 INFO [long-pulling] client count 0 + +2025-09-24 16:41:34,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:41:34,358 INFO toNotifyTaskSize = 0 + +2025-09-24 16:41:34,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:41:44,167 INFO [long-pulling] client count 0 + +2025-09-24 16:41:44,167 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:41:44,358 INFO toNotifyTaskSize = 0 + +2025-09-24 16:41:44,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:41:54,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:41:54,168 INFO [long-pulling] client count 0 + +2025-09-24 16:41:54,359 INFO toNotifyTaskSize = 0 + +2025-09-24 16:41:54,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:42:04,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:42:04,169 INFO [long-pulling] client count 0 + +2025-09-24 16:42:04,360 INFO toNotifyTaskSize = 0 + +2025-09-24 16:42:04,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:42:14,170 INFO [long-pulling] client count 0 + +2025-09-24 16:42:14,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:42:14,361 INFO toNotifyTaskSize = 0 + +2025-09-24 16:42:14,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:42:24,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:42:24,171 INFO [long-pulling] client count 0 + +2025-09-24 16:42:24,361 INFO toNotifyTaskSize = 0 + +2025-09-24 16:42:24,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:42:34,172 INFO [long-pulling] client count 0 + +2025-09-24 16:42:34,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:42:34,363 INFO toNotifyTaskSize = 0 + +2025-09-24 16:42:34,363 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:42:44,172 INFO [long-pulling] client count 0 + +2025-09-24 16:42:44,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:42:44,363 INFO toNotifyTaskSize = 0 + +2025-09-24 16:42:44,363 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:42:54,174 INFO [long-pulling] client count 0 + +2025-09-24 16:42:54,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:42:54,364 INFO toNotifyTaskSize = 0 + +2025-09-24 16:42:54,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:43:04,174 INFO [long-pulling] client count 0 + +2025-09-24 16:43:04,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:43:04,365 INFO toNotifyTaskSize = 0 + +2025-09-24 16:43:04,365 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:43:14,175 INFO [long-pulling] client count 0 + +2025-09-24 16:43:14,175 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:43:14,366 INFO toNotifyTaskSize = 0 + +2025-09-24 16:43:14,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:43:24,177 INFO [long-pulling] client count 0 + +2025-09-24 16:43:24,178 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:43:24,367 INFO toNotifyTaskSize = 0 + +2025-09-24 16:43:24,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:43:34,178 INFO [long-pulling] client count 0 + +2025-09-24 16:43:34,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:43:34,369 INFO toNotifyTaskSize = 0 + +2025-09-24 16:43:34,369 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:43:44,179 INFO [long-pulling] client count 0 + +2025-09-24 16:43:44,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:43:44,369 INFO toNotifyTaskSize = 0 + +2025-09-24 16:43:44,369 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:43:54,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:43:54,180 INFO [long-pulling] client count 0 + +2025-09-24 16:43:54,370 INFO toNotifyTaskSize = 0 + +2025-09-24 16:43:54,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:44:04,180 INFO [long-pulling] client count 0 + +2025-09-24 16:44:04,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:44:04,371 INFO toNotifyTaskSize = 0 + +2025-09-24 16:44:04,371 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:44:14,181 INFO [long-pulling] client count 0 + +2025-09-24 16:44:14,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:44:14,372 INFO toNotifyTaskSize = 0 + +2025-09-24 16:44:14,372 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:44:24,181 INFO [long-pulling] client count 0 + +2025-09-24 16:44:24,183 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:44:24,374 INFO toNotifyTaskSize = 0 + +2025-09-24 16:44:24,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:44:34,183 INFO [long-pulling] client count 0 + +2025-09-24 16:44:34,183 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:44:34,374 INFO toNotifyTaskSize = 0 + +2025-09-24 16:44:34,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:44:44,184 INFO [long-pulling] client count 0 + +2025-09-24 16:44:44,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:44:44,376 INFO toNotifyTaskSize = 0 + +2025-09-24 16:44:44,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:44:54,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:44:54,185 INFO [long-pulling] client count 0 + +2025-09-24 16:44:54,376 INFO toNotifyTaskSize = 0 + +2025-09-24 16:44:54,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:45:04,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:45:04,187 INFO [long-pulling] client count 0 + +2025-09-24 16:45:04,377 INFO toNotifyTaskSize = 0 + +2025-09-24 16:45:04,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:45:14,187 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:45:14,187 INFO [long-pulling] client count 0 + +2025-09-24 16:45:14,378 INFO toNotifyTaskSize = 0 + +2025-09-24 16:45:14,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:45:24,189 INFO [long-pulling] client count 0 + +2025-09-24 16:45:24,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:45:24,379 INFO toNotifyTaskSize = 0 + +2025-09-24 16:45:24,379 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:45:34,190 INFO [long-pulling] client count 0 + +2025-09-24 16:45:34,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:45:34,380 INFO toNotifyTaskSize = 0 + +2025-09-24 16:45:34,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:45:44,191 INFO [long-pulling] client count 0 + +2025-09-24 16:45:44,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:45:44,381 INFO toNotifyTaskSize = 0 + +2025-09-24 16:45:44,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:45:54,191 INFO [long-pulling] client count 0 + +2025-09-24 16:45:54,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:45:54,381 INFO toNotifyTaskSize = 0 + +2025-09-24 16:45:54,381 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:46:04,208 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:46:04,224 INFO [long-pulling] client count 0 + +2025-09-24 16:46:04,401 INFO toNotifyTaskSize = 0 + +2025-09-24 16:46:04,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:46:14,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:46:14,235 INFO [long-pulling] client count 0 + +2025-09-24 16:46:14,402 INFO toNotifyTaskSize = 0 + +2025-09-24 16:46:14,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:46:24,226 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:46:24,235 INFO [long-pulling] client count 0 + +2025-09-24 16:46:24,402 INFO toNotifyTaskSize = 0 + +2025-09-24 16:46:24,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:46:34,227 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:46:34,237 INFO [long-pulling] client count 0 + +2025-09-24 16:46:34,403 INFO toNotifyTaskSize = 0 + +2025-09-24 16:46:34,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:46:44,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:46:44,239 INFO [long-pulling] client count 0 + +2025-09-24 16:46:44,405 INFO toNotifyTaskSize = 0 + +2025-09-24 16:46:44,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:46:54,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:46:54,239 INFO [long-pulling] client count 0 + +2025-09-24 16:46:54,405 INFO toNotifyTaskSize = 0 + +2025-09-24 16:46:54,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:47:04,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:47:04,240 INFO [long-pulling] client count 0 + +2025-09-24 16:47:04,407 INFO toNotifyTaskSize = 0 + +2025-09-24 16:47:04,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:47:14,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:47:14,240 INFO [long-pulling] client count 0 + +2025-09-24 16:47:14,408 INFO toNotifyTaskSize = 0 + +2025-09-24 16:47:14,408 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:47:24,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:47:24,241 INFO [long-pulling] client count 0 + +2025-09-24 16:47:24,408 INFO toNotifyTaskSize = 0 + +2025-09-24 16:47:24,408 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:47:34,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:47:34,243 INFO [long-pulling] client count 0 + +2025-09-24 16:47:34,409 INFO toNotifyTaskSize = 0 + +2025-09-24 16:47:34,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:47:44,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:47:44,244 INFO [long-pulling] client count 0 + +2025-09-24 16:47:44,409 INFO toNotifyTaskSize = 0 + +2025-09-24 16:47:44,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:47:54,236 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:47:54,244 INFO [long-pulling] client count 0 + +2025-09-24 16:47:54,411 INFO toNotifyTaskSize = 0 + +2025-09-24 16:47:54,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:48:04,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:48:04,246 INFO [long-pulling] client count 0 + +2025-09-24 16:48:04,412 INFO toNotifyTaskSize = 0 + +2025-09-24 16:48:04,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:48:14,237 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:48:14,246 INFO [long-pulling] client count 0 + +2025-09-24 16:48:14,414 INFO toNotifyTaskSize = 0 + +2025-09-24 16:48:14,414 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:48:24,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:48:24,247 INFO [long-pulling] client count 0 + +2025-09-24 16:48:24,415 INFO toNotifyTaskSize = 0 + +2025-09-24 16:48:24,416 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:48:34,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:48:34,248 INFO [long-pulling] client count 0 + +2025-09-24 16:48:34,417 INFO toNotifyTaskSize = 0 + +2025-09-24 16:48:34,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:48:44,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:48:44,249 INFO [long-pulling] client count 0 + +2025-09-24 16:48:44,417 INFO toNotifyTaskSize = 0 + +2025-09-24 16:48:44,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:48:54,240 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:48:54,250 INFO [long-pulling] client count 0 + +2025-09-24 16:48:54,419 INFO toNotifyTaskSize = 0 + +2025-09-24 16:48:54,420 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:49:04,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:49:04,251 INFO [long-pulling] client count 0 + +2025-09-24 16:49:04,421 INFO toNotifyTaskSize = 0 + +2025-09-24 16:49:04,421 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:49:14,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:49:14,253 INFO [long-pulling] client count 0 + +2025-09-24 16:49:14,422 INFO toNotifyTaskSize = 0 + +2025-09-24 16:49:14,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:49:24,243 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:49:24,253 INFO [long-pulling] client count 0 + +2025-09-24 16:49:24,422 INFO toNotifyTaskSize = 0 + +2025-09-24 16:49:24,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:49:34,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:49:34,255 INFO [long-pulling] client count 0 + +2025-09-24 16:49:34,422 INFO toNotifyTaskSize = 0 + +2025-09-24 16:49:34,423 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:49:44,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:49:44,256 INFO [long-pulling] client count 0 + +2025-09-24 16:49:44,423 INFO toNotifyTaskSize = 0 + +2025-09-24 16:49:44,423 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:49:54,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:49:54,257 INFO [long-pulling] client count 0 + +2025-09-24 16:49:54,424 INFO toNotifyTaskSize = 0 + +2025-09-24 16:49:54,424 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:50:04,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:50:04,258 INFO [long-pulling] client count 0 + +2025-09-24 16:50:04,425 INFO toNotifyTaskSize = 0 + +2025-09-24 16:50:04,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:50:14,246 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:50:14,259 INFO [long-pulling] client count 0 + +2025-09-24 16:50:14,425 INFO toNotifyTaskSize = 0 + +2025-09-24 16:50:14,426 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:50:24,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:50:24,260 INFO [long-pulling] client count 0 + +2025-09-24 16:50:24,426 INFO toNotifyTaskSize = 0 + +2025-09-24 16:50:24,426 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:50:34,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:50:34,261 INFO [long-pulling] client count 0 + +2025-09-24 16:50:34,428 INFO toNotifyTaskSize = 0 + +2025-09-24 16:50:34,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:50:44,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:50:44,262 INFO [long-pulling] client count 0 + +2025-09-24 16:50:44,430 INFO toNotifyTaskSize = 0 + +2025-09-24 16:50:44,430 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:50:54,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:50:54,263 INFO [long-pulling] client count 0 + +2025-09-24 16:50:54,432 INFO toNotifyTaskSize = 0 + +2025-09-24 16:50:54,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:51:04,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:51:04,263 INFO [long-pulling] client count 0 + +2025-09-24 16:51:04,434 INFO toNotifyTaskSize = 0 + +2025-09-24 16:51:04,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:51:14,254 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:51:14,263 INFO [long-pulling] client count 0 + +2025-09-24 16:51:14,435 INFO toNotifyTaskSize = 0 + +2025-09-24 16:51:14,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:51:24,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:51:24,265 INFO [long-pulling] client count 0 + +2025-09-24 16:51:24,437 INFO toNotifyTaskSize = 0 + +2025-09-24 16:51:24,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:51:34,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:51:34,265 INFO [long-pulling] client count 0 + +2025-09-24 16:51:34,438 INFO toNotifyTaskSize = 0 + +2025-09-24 16:51:34,438 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:51:44,257 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:51:44,266 INFO [long-pulling] client count 0 + +2025-09-24 16:51:44,440 INFO toNotifyTaskSize = 0 + +2025-09-24 16:51:44,440 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:51:54,259 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:51:54,266 INFO [long-pulling] client count 0 + +2025-09-24 16:51:54,441 INFO toNotifyTaskSize = 0 + +2025-09-24 16:51:54,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:52:04,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:52:04,267 INFO [long-pulling] client count 0 + +2025-09-24 16:52:04,442 INFO toNotifyTaskSize = 0 + +2025-09-24 16:52:04,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:52:14,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:52:14,267 INFO [long-pulling] client count 0 + +2025-09-24 16:52:14,442 INFO toNotifyTaskSize = 0 + +2025-09-24 16:52:14,443 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:52:24,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:52:24,267 INFO [long-pulling] client count 0 + +2025-09-24 16:52:24,444 INFO toNotifyTaskSize = 0 + +2025-09-24 16:52:24,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:52:34,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:52:34,269 INFO [long-pulling] client count 0 + +2025-09-24 16:52:34,445 INFO toNotifyTaskSize = 0 + +2025-09-24 16:52:34,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:52:44,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:52:44,270 INFO [long-pulling] client count 0 + +2025-09-24 16:52:44,448 INFO toNotifyTaskSize = 0 + +2025-09-24 16:52:44,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:52:54,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:52:54,271 INFO [long-pulling] client count 0 + +2025-09-24 16:52:54,448 INFO toNotifyTaskSize = 0 + +2025-09-24 16:52:54,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:53:04,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:53:04,271 INFO [long-pulling] client count 0 + +2025-09-24 16:53:04,450 INFO toNotifyTaskSize = 0 + +2025-09-24 16:53:04,450 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:53:14,270 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:53:14,273 INFO [long-pulling] client count 0 + +2025-09-24 16:53:14,452 INFO toNotifyTaskSize = 0 + +2025-09-24 16:53:14,452 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:53:24,270 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:53:24,274 INFO [long-pulling] client count 0 + +2025-09-24 16:53:24,453 INFO toNotifyTaskSize = 0 + +2025-09-24 16:53:24,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:53:34,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:53:34,276 INFO [long-pulling] client count 0 + +2025-09-24 16:53:34,455 INFO toNotifyTaskSize = 0 + +2025-09-24 16:53:34,455 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:53:44,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:53:44,277 INFO [long-pulling] client count 0 + +2025-09-24 16:53:44,457 INFO toNotifyTaskSize = 0 + +2025-09-24 16:53:44,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:53:54,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:53:54,278 INFO [long-pulling] client count 0 + +2025-09-24 16:53:54,457 INFO toNotifyTaskSize = 0 + +2025-09-24 16:53:54,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:54:04,275 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:54:04,279 INFO [long-pulling] client count 0 + +2025-09-24 16:54:04,458 INFO toNotifyTaskSize = 0 + +2025-09-24 16:54:04,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:54:14,275 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:54:14,280 INFO [long-pulling] client count 0 + +2025-09-24 16:54:14,459 INFO toNotifyTaskSize = 0 + +2025-09-24 16:54:14,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:54:24,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:54:24,281 INFO [long-pulling] client count 0 + +2025-09-24 16:54:24,459 INFO toNotifyTaskSize = 0 + +2025-09-24 16:54:24,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:54:34,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:54:34,281 INFO [long-pulling] client count 0 + +2025-09-24 16:54:34,461 INFO toNotifyTaskSize = 0 + +2025-09-24 16:54:34,461 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:54:44,278 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:54:44,282 INFO [long-pulling] client count 0 + +2025-09-24 16:54:44,462 INFO toNotifyTaskSize = 0 + +2025-09-24 16:54:44,462 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:54:54,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:54:54,284 INFO [long-pulling] client count 0 + +2025-09-24 16:54:54,463 INFO toNotifyTaskSize = 0 + +2025-09-24 16:54:54,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:55:04,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:55:04,284 INFO [long-pulling] client count 0 + +2025-09-24 16:55:04,465 INFO toNotifyTaskSize = 0 + +2025-09-24 16:55:04,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:55:14,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:55:14,285 INFO [long-pulling] client count 0 + +2025-09-24 16:55:14,466 INFO toNotifyTaskSize = 0 + +2025-09-24 16:55:14,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:55:24,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:55:24,285 INFO [long-pulling] client count 0 + +2025-09-24 16:55:24,467 INFO toNotifyTaskSize = 0 + +2025-09-24 16:55:24,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:55:34,282 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:55:34,285 INFO [long-pulling] client count 0 + +2025-09-24 16:55:34,468 INFO toNotifyTaskSize = 0 + +2025-09-24 16:55:34,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:55:44,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:55:44,286 INFO [long-pulling] client count 0 + +2025-09-24 16:55:44,468 INFO toNotifyTaskSize = 0 + +2025-09-24 16:55:44,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:55:54,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:55:54,286 INFO [long-pulling] client count 0 + +2025-09-24 16:55:54,470 INFO toNotifyTaskSize = 0 + +2025-09-24 16:55:54,470 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:56:04,286 INFO [long-pulling] client count 0 + +2025-09-24 16:56:04,286 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:56:04,472 INFO toNotifyTaskSize = 0 + +2025-09-24 16:56:04,472 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:56:14,288 INFO [long-pulling] client count 0 + +2025-09-24 16:56:14,288 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:56:14,474 INFO toNotifyTaskSize = 0 + +2025-09-24 16:56:14,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:56:24,289 INFO [long-pulling] client count 0 + +2025-09-24 16:56:24,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:56:24,475 INFO toNotifyTaskSize = 0 + +2025-09-24 16:56:24,476 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:56:34,289 INFO [long-pulling] client count 0 + +2025-09-24 16:56:34,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:56:34,476 INFO toNotifyTaskSize = 0 + +2025-09-24 16:56:34,476 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:56:44,291 INFO [long-pulling] client count 0 + +2025-09-24 16:56:44,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:56:44,479 INFO toNotifyTaskSize = 0 + +2025-09-24 16:56:44,479 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:56:54,292 INFO [long-pulling] client count 0 + +2025-09-24 16:56:54,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:56:54,479 INFO toNotifyTaskSize = 0 + +2025-09-24 16:56:54,479 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:57:04,293 INFO [long-pulling] client count 0 + +2025-09-24 16:57:04,293 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:57:04,479 INFO toNotifyTaskSize = 0 + +2025-09-24 16:57:04,480 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:57:14,294 INFO [long-pulling] client count 0 + +2025-09-24 16:57:14,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:57:14,480 INFO toNotifyTaskSize = 0 + +2025-09-24 16:57:14,480 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:57:24,295 INFO [long-pulling] client count 0 + +2025-09-24 16:57:24,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:57:24,482 INFO toNotifyTaskSize = 0 + +2025-09-24 16:57:24,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:57:34,297 INFO [long-pulling] client count 0 + +2025-09-24 16:57:34,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:57:34,484 INFO toNotifyTaskSize = 0 + +2025-09-24 16:57:34,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:57:44,299 INFO [long-pulling] client count 0 + +2025-09-24 16:57:44,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:57:44,484 INFO toNotifyTaskSize = 0 + +2025-09-24 16:57:44,485 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:57:54,299 INFO [long-pulling] client count 0 + +2025-09-24 16:57:54,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:57:54,486 INFO toNotifyTaskSize = 0 + +2025-09-24 16:57:54,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:58:04,301 INFO [long-pulling] client count 0 + +2025-09-24 16:58:04,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:58:04,486 INFO toNotifyTaskSize = 0 + +2025-09-24 16:58:04,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:58:14,303 INFO [long-pulling] client count 0 + +2025-09-24 16:58:14,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:58:14,488 INFO toNotifyTaskSize = 0 + +2025-09-24 16:58:14,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:58:24,305 INFO [long-pulling] client count 0 + +2025-09-24 16:58:24,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:58:24,491 INFO toNotifyTaskSize = 0 + +2025-09-24 16:58:24,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:58:34,307 INFO [long-pulling] client count 0 + +2025-09-24 16:58:34,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:58:34,491 INFO toNotifyTaskSize = 0 + +2025-09-24 16:58:34,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:58:44,308 INFO [long-pulling] client count 0 + +2025-09-24 16:58:44,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:58:44,492 INFO toNotifyTaskSize = 0 + +2025-09-24 16:58:44,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:58:54,309 INFO [long-pulling] client count 0 + +2025-09-24 16:58:54,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:58:54,494 INFO toNotifyTaskSize = 0 + +2025-09-24 16:58:54,494 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:59:04,311 INFO [long-pulling] client count 0 + +2025-09-24 16:59:04,311 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:59:04,495 INFO toNotifyTaskSize = 0 + +2025-09-24 16:59:04,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:59:14,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:59:14,312 INFO [long-pulling] client count 0 + +2025-09-24 16:59:14,495 INFO toNotifyTaskSize = 0 + +2025-09-24 16:59:14,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:59:24,312 INFO [long-pulling] client count 0 + +2025-09-24 16:59:24,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:59:24,496 INFO toNotifyTaskSize = 0 + +2025-09-24 16:59:24,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:59:34,313 INFO [long-pulling] client count 0 + +2025-09-24 16:59:34,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:59:34,498 INFO toNotifyTaskSize = 0 + +2025-09-24 16:59:34,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:59:44,313 INFO [long-pulling] client count 0 + +2025-09-24 16:59:44,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:59:44,498 INFO toNotifyTaskSize = 0 + +2025-09-24 16:59:44,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 16:59:54,315 INFO [long-pulling] client count 0 + +2025-09-24 16:59:54,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 16:59:54,501 INFO toNotifyTaskSize = 0 + +2025-09-24 16:59:54,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:00:04,315 INFO [long-pulling] client count 0 + +2025-09-24 17:00:04,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:00:04,502 INFO toNotifyTaskSize = 0 + +2025-09-24 17:00:04,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:00:14,318 INFO [long-pulling] client count 0 + +2025-09-24 17:00:14,318 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:00:14,504 INFO toNotifyTaskSize = 0 + +2025-09-24 17:00:14,504 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:00:24,320 INFO [long-pulling] client count 0 + +2025-09-24 17:00:24,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:00:24,506 INFO toNotifyTaskSize = 0 + +2025-09-24 17:00:24,506 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:00:34,322 INFO [long-pulling] client count 0 + +2025-09-24 17:00:34,322 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:00:34,508 INFO toNotifyTaskSize = 0 + +2025-09-24 17:00:34,508 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:00:44,322 INFO [long-pulling] client count 0 + +2025-09-24 17:00:44,323 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:00:44,511 INFO toNotifyTaskSize = 0 + +2025-09-24 17:00:44,511 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:00:54,324 INFO [long-pulling] client count 0 + +2025-09-24 17:00:54,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:00:54,512 INFO toNotifyTaskSize = 0 + +2025-09-24 17:00:54,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:01:04,325 INFO [long-pulling] client count 0 + +2025-09-24 17:01:04,325 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:01:04,515 INFO toNotifyTaskSize = 0 + +2025-09-24 17:01:04,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:01:14,325 INFO [long-pulling] client count 0 + +2025-09-24 17:01:14,325 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:01:14,517 INFO toNotifyTaskSize = 0 + +2025-09-24 17:01:14,517 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:01:24,327 INFO [long-pulling] client count 0 + +2025-09-24 17:01:24,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:01:24,519 INFO toNotifyTaskSize = 0 + +2025-09-24 17:01:24,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:01:34,327 INFO [long-pulling] client count 0 + +2025-09-24 17:01:34,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:01:34,521 INFO toNotifyTaskSize = 0 + +2025-09-24 17:01:34,522 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:01:44,328 INFO [long-pulling] client count 0 + +2025-09-24 17:01:44,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:01:44,524 INFO toNotifyTaskSize = 0 + +2025-09-24 17:01:44,524 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:01:54,330 INFO [long-pulling] client count 0 + +2025-09-24 17:01:54,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:01:54,524 INFO toNotifyTaskSize = 0 + +2025-09-24 17:01:54,524 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:02:04,332 INFO [long-pulling] client count 0 + +2025-09-24 17:02:04,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:02:04,526 INFO toNotifyTaskSize = 0 + +2025-09-24 17:02:04,526 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:02:14,333 INFO [long-pulling] client count 0 + +2025-09-24 17:02:14,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:02:14,528 INFO toNotifyTaskSize = 0 + +2025-09-24 17:02:14,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:02:24,335 INFO [long-pulling] client count 0 + +2025-09-24 17:02:24,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:02:24,530 INFO toNotifyTaskSize = 0 + +2025-09-24 17:02:24,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:02:34,337 INFO [long-pulling] client count 0 + +2025-09-24 17:02:34,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:02:34,531 INFO toNotifyTaskSize = 0 + +2025-09-24 17:02:34,531 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:02:44,338 INFO [long-pulling] client count 0 + +2025-09-24 17:02:44,338 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:02:44,531 INFO toNotifyTaskSize = 0 + +2025-09-24 17:02:44,531 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:02:54,338 INFO [long-pulling] client count 0 + +2025-09-24 17:02:54,338 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:02:54,533 INFO toNotifyTaskSize = 0 + +2025-09-24 17:02:54,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:03:04,339 INFO [long-pulling] client count 0 + +2025-09-24 17:03:04,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:03:04,534 INFO toNotifyTaskSize = 0 + +2025-09-24 17:03:04,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:03:14,340 INFO [long-pulling] client count 0 + +2025-09-24 17:03:14,340 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:03:14,535 INFO toNotifyTaskSize = 0 + +2025-09-24 17:03:14,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:03:24,340 INFO [long-pulling] client count 0 + +2025-09-24 17:03:24,340 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:03:24,535 INFO toNotifyTaskSize = 0 + +2025-09-24 17:03:24,536 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:03:34,342 INFO [long-pulling] client count 0 + +2025-09-24 17:03:34,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:03:34,536 INFO toNotifyTaskSize = 0 + +2025-09-24 17:03:34,536 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:03:44,344 INFO [long-pulling] client count 0 + +2025-09-24 17:03:44,344 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:03:44,536 INFO toNotifyTaskSize = 0 + +2025-09-24 17:03:44,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:03:54,345 INFO [long-pulling] client count 0 + +2025-09-24 17:03:54,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:03:54,539 INFO toNotifyTaskSize = 0 + +2025-09-24 17:03:54,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:04:04,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:04:04,345 INFO [long-pulling] client count 0 + +2025-09-24 17:04:04,539 INFO toNotifyTaskSize = 0 + +2025-09-24 17:04:04,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:04:14,347 INFO [long-pulling] client count 0 + +2025-09-24 17:04:14,347 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:04:14,542 INFO toNotifyTaskSize = 0 + +2025-09-24 17:04:14,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:04:24,350 INFO [long-pulling] client count 0 + +2025-09-24 17:04:24,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:04:24,544 INFO toNotifyTaskSize = 0 + +2025-09-24 17:04:24,544 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:04:34,351 INFO [long-pulling] client count 0 + +2025-09-24 17:04:34,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:04:34,545 INFO toNotifyTaskSize = 0 + +2025-09-24 17:04:34,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:04:44,352 INFO [long-pulling] client count 0 + +2025-09-24 17:04:44,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:04:44,547 INFO toNotifyTaskSize = 0 + +2025-09-24 17:04:44,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:04:54,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:04:54,352 INFO [long-pulling] client count 0 + +2025-09-24 17:04:54,549 INFO toNotifyTaskSize = 0 + +2025-09-24 17:04:54,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:05:04,353 INFO [long-pulling] client count 0 + +2025-09-24 17:05:04,353 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:05:04,550 INFO toNotifyTaskSize = 0 + +2025-09-24 17:05:04,550 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:05:14,353 INFO [long-pulling] client count 0 + +2025-09-24 17:05:14,353 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:05:14,552 INFO toNotifyTaskSize = 0 + +2025-09-24 17:05:14,552 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:05:24,354 INFO [long-pulling] client count 0 + +2025-09-24 17:05:24,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:05:24,552 INFO toNotifyTaskSize = 0 + +2025-09-24 17:05:24,553 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:05:34,355 INFO [long-pulling] client count 0 + +2025-09-24 17:05:34,355 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:05:34,555 INFO toNotifyTaskSize = 0 + +2025-09-24 17:05:34,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:05:44,356 INFO [long-pulling] client count 0 + +2025-09-24 17:05:44,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:05:44,555 INFO toNotifyTaskSize = 0 + +2025-09-24 17:05:44,556 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:05:54,356 INFO [long-pulling] client count 0 + +2025-09-24 17:05:54,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:05:54,557 INFO toNotifyTaskSize = 0 + +2025-09-24 17:05:54,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:06:04,357 INFO [long-pulling] client count 0 + +2025-09-24 17:06:04,357 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:06:04,558 INFO toNotifyTaskSize = 0 + +2025-09-24 17:06:04,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:06:14,358 INFO [long-pulling] client count 0 + +2025-09-24 17:06:14,358 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:06:14,559 INFO toNotifyTaskSize = 0 + +2025-09-24 17:06:14,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:06:24,360 INFO [long-pulling] client count 0 + +2025-09-24 17:06:24,360 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:06:24,561 INFO toNotifyTaskSize = 0 + +2025-09-24 17:06:24,561 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:06:34,361 INFO [long-pulling] client count 0 + +2025-09-24 17:06:34,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:06:34,562 INFO toNotifyTaskSize = 0 + +2025-09-24 17:06:34,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:06:44,363 INFO [long-pulling] client count 0 + +2025-09-24 17:06:44,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:06:44,562 INFO toNotifyTaskSize = 0 + +2025-09-24 17:06:44,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:06:54,364 INFO [long-pulling] client count 0 + +2025-09-24 17:06:54,364 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:06:54,564 INFO toNotifyTaskSize = 0 + +2025-09-24 17:06:54,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:07:04,365 INFO [long-pulling] client count 0 + +2025-09-24 17:07:04,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:07:04,565 INFO toNotifyTaskSize = 0 + +2025-09-24 17:07:04,565 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:07:14,365 INFO [long-pulling] client count 0 + +2025-09-24 17:07:14,366 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:07:14,565 INFO toNotifyTaskSize = 0 + +2025-09-24 17:07:14,565 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:07:24,366 INFO [long-pulling] client count 0 + +2025-09-24 17:07:24,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:07:24,566 INFO toNotifyTaskSize = 0 + +2025-09-24 17:07:24,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:07:34,369 INFO [long-pulling] client count 0 + +2025-09-24 17:07:34,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:07:34,566 INFO toNotifyTaskSize = 0 + +2025-09-24 17:07:34,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:07:44,369 INFO [long-pulling] client count 0 + +2025-09-24 17:07:44,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:07:44,567 INFO toNotifyTaskSize = 0 + +2025-09-24 17:07:44,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:07:54,370 INFO [long-pulling] client count 0 + +2025-09-24 17:07:54,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:07:54,569 INFO toNotifyTaskSize = 0 + +2025-09-24 17:07:54,569 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:08:04,371 INFO [long-pulling] client count 0 + +2025-09-24 17:08:04,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:08:04,569 INFO toNotifyTaskSize = 0 + +2025-09-24 17:08:04,569 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:08:14,371 INFO [long-pulling] client count 0 + +2025-09-24 17:08:14,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:08:14,571 INFO toNotifyTaskSize = 0 + +2025-09-24 17:08:14,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:08:24,373 INFO [long-pulling] client count 0 + +2025-09-24 17:08:24,373 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:08:24,573 INFO toNotifyTaskSize = 0 + +2025-09-24 17:08:24,573 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:08:34,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:08:34,374 INFO [long-pulling] client count 0 + +2025-09-24 17:08:34,574 INFO toNotifyTaskSize = 0 + +2025-09-24 17:08:34,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:08:44,376 INFO [long-pulling] client count 0 + +2025-09-24 17:08:44,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:08:44,576 INFO toNotifyTaskSize = 0 + +2025-09-24 17:08:44,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:08:54,379 INFO [long-pulling] client count 0 + +2025-09-24 17:08:54,379 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:08:54,578 INFO toNotifyTaskSize = 0 + +2025-09-24 17:08:54,578 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:09:04,381 INFO [long-pulling] client count 0 + +2025-09-24 17:09:04,381 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:09:04,579 INFO toNotifyTaskSize = 0 + +2025-09-24 17:09:04,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:09:14,381 INFO [long-pulling] client count 0 + +2025-09-24 17:09:14,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:09:14,581 INFO toNotifyTaskSize = 0 + +2025-09-24 17:09:14,581 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:09:24,384 INFO [long-pulling] client count 0 + +2025-09-24 17:09:24,385 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:09:24,582 INFO toNotifyTaskSize = 0 + +2025-09-24 17:09:24,582 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:09:34,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:09:34,386 INFO [long-pulling] client count 0 + +2025-09-24 17:09:34,582 INFO toNotifyTaskSize = 0 + +2025-09-24 17:09:34,582 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:09:44,386 INFO [long-pulling] client count 0 + +2025-09-24 17:09:44,386 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:09:44,584 INFO toNotifyTaskSize = 0 + +2025-09-24 17:09:44,584 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:09:54,388 INFO [long-pulling] client count 0 + +2025-09-24 17:09:54,388 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:09:54,584 INFO toNotifyTaskSize = 0 + +2025-09-24 17:09:54,584 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:10:04,390 INFO [long-pulling] client count 0 + +2025-09-24 17:10:04,391 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:10:04,585 INFO toNotifyTaskSize = 0 + +2025-09-24 17:10:04,585 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:10:14,391 INFO [long-pulling] client count 0 + +2025-09-24 17:10:14,391 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:10:14,587 INFO toNotifyTaskSize = 0 + +2025-09-24 17:10:14,587 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:10:24,391 INFO [long-pulling] client count 0 + +2025-09-24 17:10:24,391 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:10:24,587 INFO toNotifyTaskSize = 0 + +2025-09-24 17:10:24,588 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:10:34,392 INFO [long-pulling] client count 0 + +2025-09-24 17:10:34,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:10:34,588 INFO toNotifyTaskSize = 0 + +2025-09-24 17:10:34,588 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:10:44,395 INFO [long-pulling] client count 0 + +2025-09-24 17:10:44,395 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:10:44,590 INFO toNotifyTaskSize = 0 + +2025-09-24 17:10:44,590 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:10:54,395 INFO [long-pulling] client count 0 + +2025-09-24 17:10:54,395 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:10:54,591 INFO toNotifyTaskSize = 0 + +2025-09-24 17:10:54,591 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:11:04,396 INFO [long-pulling] client count 0 + +2025-09-24 17:11:04,396 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:11:04,592 INFO toNotifyTaskSize = 0 + +2025-09-24 17:11:04,592 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:11:14,397 INFO [long-pulling] client count 0 + +2025-09-24 17:11:14,397 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:11:14,594 INFO toNotifyTaskSize = 0 + +2025-09-24 17:11:14,595 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:11:24,398 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:11:24,398 INFO [long-pulling] client count 0 + +2025-09-24 17:11:24,596 INFO toNotifyTaskSize = 0 + +2025-09-24 17:11:24,596 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:11:34,399 INFO [long-pulling] client count 0 + +2025-09-24 17:11:34,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:11:34,597 INFO toNotifyTaskSize = 0 + +2025-09-24 17:11:34,597 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:11:44,399 INFO [long-pulling] client count 0 + +2025-09-24 17:11:44,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:11:44,599 INFO toNotifyTaskSize = 0 + +2025-09-24 17:11:44,599 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:11:54,400 INFO [long-pulling] client count 0 + +2025-09-24 17:11:54,400 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:11:54,599 INFO toNotifyTaskSize = 0 + +2025-09-24 17:11:54,599 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:12:04,402 INFO [long-pulling] client count 0 + +2025-09-24 17:12:04,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:12:04,602 INFO toNotifyTaskSize = 0 + +2025-09-24 17:12:04,602 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:12:14,402 INFO [long-pulling] client count 0 + +2025-09-24 17:12:14,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:12:14,603 INFO toNotifyTaskSize = 0 + +2025-09-24 17:12:14,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:12:24,403 INFO [long-pulling] client count 0 + +2025-09-24 17:12:24,404 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:12:24,604 INFO toNotifyTaskSize = 0 + +2025-09-24 17:12:24,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:12:34,404 INFO [long-pulling] client count 0 + +2025-09-24 17:12:34,404 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:12:34,606 INFO toNotifyTaskSize = 0 + +2025-09-24 17:12:34,606 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:12:44,405 INFO [long-pulling] client count 0 + +2025-09-24 17:12:44,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:12:44,606 INFO toNotifyTaskSize = 0 + +2025-09-24 17:12:44,607 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:12:54,405 INFO [long-pulling] client count 0 + +2025-09-24 17:12:54,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:12:54,608 INFO toNotifyTaskSize = 0 + +2025-09-24 17:12:54,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:13:04,406 INFO [long-pulling] client count 0 + +2025-09-24 17:13:04,406 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:13:04,610 INFO toNotifyTaskSize = 0 + +2025-09-24 17:13:04,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:13:14,407 INFO [long-pulling] client count 0 + +2025-09-24 17:13:14,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:13:14,613 INFO toNotifyTaskSize = 0 + +2025-09-24 17:13:14,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:13:24,407 INFO [long-pulling] client count 0 + +2025-09-24 17:13:24,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:13:24,613 INFO toNotifyTaskSize = 0 + +2025-09-24 17:13:24,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:13:34,408 INFO [long-pulling] client count 0 + +2025-09-24 17:13:34,408 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:13:34,615 INFO toNotifyTaskSize = 0 + +2025-09-24 17:13:34,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:13:44,410 INFO [long-pulling] client count 0 + +2025-09-24 17:13:44,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:13:44,617 INFO toNotifyTaskSize = 0 + +2025-09-24 17:13:44,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:13:54,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:13:54,411 INFO [long-pulling] client count 0 + +2025-09-24 17:13:54,618 INFO toNotifyTaskSize = 0 + +2025-09-24 17:13:54,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:14:04,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:14:04,412 INFO [long-pulling] client count 0 + +2025-09-24 17:14:04,619 INFO toNotifyTaskSize = 0 + +2025-09-24 17:14:04,619 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:14:14,413 INFO [long-pulling] client count 0 + +2025-09-24 17:14:14,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:14:14,620 INFO toNotifyTaskSize = 0 + +2025-09-24 17:14:14,620 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:14:24,413 INFO [long-pulling] client count 0 + +2025-09-24 17:14:24,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:14:24,621 INFO toNotifyTaskSize = 0 + +2025-09-24 17:14:24,621 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:14:34,415 INFO [long-pulling] client count 0 + +2025-09-24 17:14:34,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:14:34,621 INFO toNotifyTaskSize = 0 + +2025-09-24 17:14:34,621 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:14:44,417 INFO [long-pulling] client count 0 + +2025-09-24 17:14:44,417 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:14:44,621 INFO toNotifyTaskSize = 0 + +2025-09-24 17:14:44,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:14:54,419 INFO [long-pulling] client count 0 + +2025-09-24 17:14:54,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:14:54,622 INFO toNotifyTaskSize = 0 + +2025-09-24 17:14:54,623 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:15:04,420 INFO [long-pulling] client count 0 + +2025-09-24 17:15:04,420 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:15:04,623 INFO toNotifyTaskSize = 0 + +2025-09-24 17:15:04,623 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:15:14,422 INFO [long-pulling] client count 0 + +2025-09-24 17:15:14,422 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:15:14,625 INFO toNotifyTaskSize = 0 + +2025-09-24 17:15:14,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:15:24,423 INFO [long-pulling] client count 0 + +2025-09-24 17:15:24,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:15:24,627 INFO toNotifyTaskSize = 0 + +2025-09-24 17:15:24,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:15:34,425 INFO [long-pulling] client count 0 + +2025-09-24 17:15:34,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:15:34,628 INFO toNotifyTaskSize = 0 + +2025-09-24 17:15:34,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:15:44,426 INFO [long-pulling] client count 0 + +2025-09-24 17:15:44,426 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:15:44,630 INFO toNotifyTaskSize = 0 + +2025-09-24 17:15:44,630 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:15:54,428 INFO [long-pulling] client count 0 + +2025-09-24 17:15:54,428 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:15:54,631 INFO toNotifyTaskSize = 0 + +2025-09-24 17:15:54,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:16:04,431 INFO [long-pulling] client count 0 + +2025-09-24 17:16:04,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:16:04,633 INFO toNotifyTaskSize = 0 + +2025-09-24 17:16:04,633 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:16:14,432 INFO [long-pulling] client count 0 + +2025-09-24 17:16:14,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:16:14,634 INFO toNotifyTaskSize = 0 + +2025-09-24 17:16:14,634 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:16:24,433 INFO [long-pulling] client count 0 + +2025-09-24 17:16:24,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:16:24,636 INFO toNotifyTaskSize = 0 + +2025-09-24 17:16:24,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:16:34,434 INFO [long-pulling] client count 0 + +2025-09-24 17:16:34,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:16:34,638 INFO toNotifyTaskSize = 0 + +2025-09-24 17:16:34,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:16:44,435 INFO [long-pulling] client count 0 + +2025-09-24 17:16:44,435 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:16:44,640 INFO toNotifyTaskSize = 0 + +2025-09-24 17:16:44,640 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:16:54,435 INFO [long-pulling] client count 0 + +2025-09-24 17:16:54,436 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:16:54,642 INFO toNotifyTaskSize = 0 + +2025-09-24 17:16:54,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:17:04,436 INFO [long-pulling] client count 0 + +2025-09-24 17:17:04,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:17:04,645 INFO toNotifyTaskSize = 0 + +2025-09-24 17:17:04,645 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:17:14,438 INFO [long-pulling] client count 0 + +2025-09-24 17:17:14,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:17:14,647 INFO toNotifyTaskSize = 0 + +2025-09-24 17:17:14,647 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:17:24,438 INFO [long-pulling] client count 0 + +2025-09-24 17:17:24,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:17:24,649 INFO toNotifyTaskSize = 0 + +2025-09-24 17:17:24,649 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:17:34,439 INFO [long-pulling] client count 0 + +2025-09-24 17:17:34,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:17:34,650 INFO toNotifyTaskSize = 0 + +2025-09-24 17:17:34,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:17:44,440 INFO [long-pulling] client count 0 + +2025-09-24 17:17:44,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:17:44,651 INFO toNotifyTaskSize = 0 + +2025-09-24 17:17:44,651 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:17:54,441 INFO [long-pulling] client count 0 + +2025-09-24 17:17:54,441 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:17:54,652 INFO toNotifyTaskSize = 0 + +2025-09-24 17:17:54,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:18:04,443 INFO [long-pulling] client count 0 + +2025-09-24 17:18:04,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:18:04,653 INFO toNotifyTaskSize = 0 + +2025-09-24 17:18:04,653 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:18:14,445 INFO [long-pulling] client count 0 + +2025-09-24 17:18:14,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:18:14,654 INFO toNotifyTaskSize = 0 + +2025-09-24 17:18:14,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:18:24,445 INFO [long-pulling] client count 0 + +2025-09-24 17:18:24,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:18:24,655 INFO toNotifyTaskSize = 0 + +2025-09-24 17:18:24,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:18:34,447 INFO [long-pulling] client count 0 + +2025-09-24 17:18:34,447 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:18:34,655 INFO toNotifyTaskSize = 0 + +2025-09-24 17:18:34,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:18:44,447 INFO [long-pulling] client count 0 + +2025-09-24 17:18:44,447 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:18:44,656 INFO toNotifyTaskSize = 0 + +2025-09-24 17:18:44,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:18:54,449 INFO [long-pulling] client count 0 + +2025-09-24 17:18:54,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:18:54,656 INFO toNotifyTaskSize = 0 + +2025-09-24 17:18:54,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:19:04,450 INFO [long-pulling] client count 0 + +2025-09-24 17:19:04,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:19:04,657 INFO toNotifyTaskSize = 0 + +2025-09-24 17:19:04,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:19:14,450 INFO [long-pulling] client count 0 + +2025-09-24 17:19:14,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:19:14,658 INFO toNotifyTaskSize = 0 + +2025-09-24 17:19:14,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:19:24,451 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:19:24,452 INFO [long-pulling] client count 0 + +2025-09-24 17:19:24,659 INFO toNotifyTaskSize = 0 + +2025-09-24 17:19:24,660 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:19:34,453 INFO [long-pulling] client count 0 + +2025-09-24 17:19:34,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:19:34,660 INFO toNotifyTaskSize = 0 + +2025-09-24 17:19:34,660 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:19:44,455 INFO [long-pulling] client count 0 + +2025-09-24 17:19:44,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:19:44,662 INFO toNotifyTaskSize = 0 + +2025-09-24 17:19:44,662 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:19:54,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:19:54,455 INFO [long-pulling] client count 0 + +2025-09-24 17:19:54,662 INFO toNotifyTaskSize = 0 + +2025-09-24 17:19:54,662 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:20:04,456 INFO [long-pulling] client count 0 + +2025-09-24 17:20:04,456 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:20:04,664 INFO toNotifyTaskSize = 0 + +2025-09-24 17:20:04,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:20:14,457 INFO [long-pulling] client count 0 + +2025-09-24 17:20:14,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:20:14,665 INFO toNotifyTaskSize = 0 + +2025-09-24 17:20:14,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:20:24,457 INFO [long-pulling] client count 0 + +2025-09-24 17:20:24,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:20:24,666 INFO toNotifyTaskSize = 0 + +2025-09-24 17:20:24,666 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:20:34,458 INFO [long-pulling] client count 0 + +2025-09-24 17:20:34,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:20:34,667 INFO toNotifyTaskSize = 0 + +2025-09-24 17:20:34,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:20:44,460 INFO [long-pulling] client count 0 + +2025-09-24 17:20:44,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:20:44,668 INFO toNotifyTaskSize = 0 + +2025-09-24 17:20:44,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:20:54,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:20:54,460 INFO [long-pulling] client count 0 + +2025-09-24 17:20:54,670 INFO toNotifyTaskSize = 0 + +2025-09-24 17:20:54,670 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:21:04,461 INFO [long-pulling] client count 0 + +2025-09-24 17:21:04,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:21:04,671 INFO toNotifyTaskSize = 0 + +2025-09-24 17:21:04,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:21:14,463 INFO [long-pulling] client count 0 + +2025-09-24 17:21:14,463 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:21:14,672 INFO toNotifyTaskSize = 0 + +2025-09-24 17:21:14,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:21:24,464 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:21:24,464 INFO [long-pulling] client count 0 + +2025-09-24 17:21:24,672 INFO toNotifyTaskSize = 0 + +2025-09-24 17:21:24,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:21:34,465 INFO [long-pulling] client count 0 + +2025-09-24 17:21:34,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:21:34,673 INFO toNotifyTaskSize = 0 + +2025-09-24 17:21:34,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:21:44,468 INFO [long-pulling] client count 0 + +2025-09-24 17:21:44,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:21:44,673 INFO toNotifyTaskSize = 0 + +2025-09-24 17:21:44,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:21:54,468 INFO [long-pulling] client count 0 + +2025-09-24 17:21:54,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:21:54,674 INFO toNotifyTaskSize = 0 + +2025-09-24 17:21:54,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:22:04,469 INFO [long-pulling] client count 0 + +2025-09-24 17:22:04,469 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:22:04,674 INFO toNotifyTaskSize = 0 + +2025-09-24 17:22:04,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:22:14,470 INFO [long-pulling] client count 0 + +2025-09-24 17:22:14,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:22:14,674 INFO toNotifyTaskSize = 0 + +2025-09-24 17:22:14,675 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:22:24,471 INFO [long-pulling] client count 0 + +2025-09-24 17:22:24,471 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:22:24,675 INFO toNotifyTaskSize = 0 + +2025-09-24 17:22:24,676 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:22:34,473 INFO [long-pulling] client count 0 + +2025-09-24 17:22:34,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:22:34,677 INFO toNotifyTaskSize = 0 + +2025-09-24 17:22:34,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:22:44,473 INFO [long-pulling] client count 0 + +2025-09-24 17:22:44,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:22:44,678 INFO toNotifyTaskSize = 0 + +2025-09-24 17:22:44,678 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:22:54,474 INFO [long-pulling] client count 0 + +2025-09-24 17:22:54,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:22:54,679 INFO toNotifyTaskSize = 0 + +2025-09-24 17:22:54,679 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:23:04,474 INFO [long-pulling] client count 0 + +2025-09-24 17:23:04,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:23:04,680 INFO toNotifyTaskSize = 0 + +2025-09-24 17:23:04,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:23:14,474 INFO [long-pulling] client count 0 + +2025-09-24 17:23:14,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:23:14,681 INFO toNotifyTaskSize = 0 + +2025-09-24 17:23:14,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:23:24,476 INFO [long-pulling] client count 0 + +2025-09-24 17:23:24,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:23:24,682 INFO toNotifyTaskSize = 0 + +2025-09-24 17:23:24,682 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:23:34,477 INFO [long-pulling] client count 0 + +2025-09-24 17:23:34,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:23:34,683 INFO toNotifyTaskSize = 0 + +2025-09-24 17:23:34,683 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:23:44,478 INFO [long-pulling] client count 0 + +2025-09-24 17:23:44,478 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:23:44,683 INFO toNotifyTaskSize = 0 + +2025-09-24 17:23:44,684 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:23:54,478 INFO [long-pulling] client count 0 + +2025-09-24 17:23:54,478 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:23:54,685 INFO toNotifyTaskSize = 0 + +2025-09-24 17:23:54,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:24:04,479 INFO [long-pulling] client count 0 + +2025-09-24 17:24:04,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:24:04,685 INFO toNotifyTaskSize = 0 + +2025-09-24 17:24:04,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:24:14,479 INFO [long-pulling] client count 0 + +2025-09-24 17:24:14,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:24:14,686 INFO toNotifyTaskSize = 0 + +2025-09-24 17:24:14,686 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:24:24,480 INFO [long-pulling] client count 0 + +2025-09-24 17:24:24,480 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:24:24,686 INFO toNotifyTaskSize = 0 + +2025-09-24 17:24:24,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:24:34,483 INFO [long-pulling] client count 0 + +2025-09-24 17:24:34,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:24:34,687 INFO toNotifyTaskSize = 0 + +2025-09-24 17:24:34,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:24:44,484 INFO [long-pulling] client count 0 + +2025-09-24 17:24:44,484 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:24:44,689 INFO toNotifyTaskSize = 0 + +2025-09-24 17:24:44,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:24:54,485 INFO [long-pulling] client count 0 + +2025-09-24 17:24:54,485 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:24:54,690 INFO toNotifyTaskSize = 0 + +2025-09-24 17:24:54,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:25:04,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:25:04,486 INFO [long-pulling] client count 0 + +2025-09-24 17:25:04,692 INFO toNotifyTaskSize = 0 + +2025-09-24 17:25:04,692 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:25:14,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:25:14,487 INFO [long-pulling] client count 0 + +2025-09-24 17:25:14,694 INFO toNotifyTaskSize = 0 + +2025-09-24 17:25:14,694 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:25:24,487 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:25:24,488 INFO [long-pulling] client count 0 + +2025-09-24 17:25:24,696 INFO toNotifyTaskSize = 0 + +2025-09-24 17:25:24,696 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:25:34,489 INFO [long-pulling] client count 0 + +2025-09-24 17:25:34,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:25:34,697 INFO toNotifyTaskSize = 0 + +2025-09-24 17:25:34,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:25:44,490 INFO [long-pulling] client count 0 + +2025-09-24 17:25:44,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:25:44,699 INFO toNotifyTaskSize = 0 + +2025-09-24 17:25:44,699 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:25:54,492 INFO [long-pulling] client count 0 + +2025-09-24 17:25:54,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:25:54,701 INFO toNotifyTaskSize = 0 + +2025-09-24 17:25:54,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:26:04,492 INFO [long-pulling] client count 0 + +2025-09-24 17:26:04,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:26:04,702 INFO toNotifyTaskSize = 0 + +2025-09-24 17:26:04,702 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:26:14,494 INFO [long-pulling] client count 0 + +2025-09-24 17:26:14,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:26:14,704 INFO toNotifyTaskSize = 0 + +2025-09-24 17:26:14,704 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:26:24,495 INFO [long-pulling] client count 0 + +2025-09-24 17:26:24,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:26:24,704 INFO toNotifyTaskSize = 0 + +2025-09-24 17:26:24,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:26:34,495 INFO [long-pulling] client count 0 + +2025-09-24 17:26:34,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:26:34,706 INFO toNotifyTaskSize = 0 + +2025-09-24 17:26:34,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:26:44,496 INFO [long-pulling] client count 0 + +2025-09-24 17:26:44,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:26:44,706 INFO toNotifyTaskSize = 0 + +2025-09-24 17:26:44,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:26:54,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:26:54,496 INFO [long-pulling] client count 0 + +2025-09-24 17:26:54,707 INFO toNotifyTaskSize = 0 + +2025-09-24 17:26:54,707 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:27:04,498 INFO [long-pulling] client count 0 + +2025-09-24 17:27:04,498 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:27:04,709 INFO toNotifyTaskSize = 0 + +2025-09-24 17:27:04,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:27:14,499 INFO [long-pulling] client count 0 + +2025-09-24 17:27:14,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:27:14,711 INFO toNotifyTaskSize = 0 + +2025-09-24 17:27:14,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:27:24,501 INFO [long-pulling] client count 0 + +2025-09-24 17:27:24,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:27:24,712 INFO toNotifyTaskSize = 0 + +2025-09-24 17:27:24,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:27:34,503 INFO [long-pulling] client count 0 + +2025-09-24 17:27:34,503 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:27:34,714 INFO toNotifyTaskSize = 0 + +2025-09-24 17:27:34,714 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:27:44,503 INFO [long-pulling] client count 0 + +2025-09-24 17:27:44,503 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:27:44,715 INFO toNotifyTaskSize = 0 + +2025-09-24 17:27:44,715 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:27:54,504 INFO [long-pulling] client count 0 + +2025-09-24 17:27:54,504 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:27:54,716 INFO toNotifyTaskSize = 0 + +2025-09-24 17:27:54,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:28:04,505 INFO [long-pulling] client count 0 + +2025-09-24 17:28:04,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:28:04,716 INFO toNotifyTaskSize = 0 + +2025-09-24 17:28:04,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:28:14,506 INFO [long-pulling] client count 0 + +2025-09-24 17:28:14,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:28:14,717 INFO toNotifyTaskSize = 0 + +2025-09-24 17:28:14,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:28:24,507 INFO [long-pulling] client count 0 + +2025-09-24 17:28:24,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:28:24,718 INFO toNotifyTaskSize = 0 + +2025-09-24 17:28:24,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:28:34,508 INFO [long-pulling] client count 0 + +2025-09-24 17:28:34,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:28:34,720 INFO toNotifyTaskSize = 0 + +2025-09-24 17:28:34,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:28:44,508 INFO [long-pulling] client count 0 + +2025-09-24 17:28:44,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:28:44,720 INFO toNotifyTaskSize = 0 + +2025-09-24 17:28:44,720 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:28:54,509 INFO [long-pulling] client count 0 + +2025-09-24 17:28:54,509 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:28:54,720 INFO toNotifyTaskSize = 0 + +2025-09-24 17:28:54,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:29:04,509 INFO [long-pulling] client count 0 + +2025-09-24 17:29:04,509 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:29:04,721 INFO toNotifyTaskSize = 0 + +2025-09-24 17:29:04,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:29:14,509 INFO [long-pulling] client count 0 + +2025-09-24 17:29:14,509 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:29:14,721 INFO toNotifyTaskSize = 0 + +2025-09-24 17:29:14,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:29:24,510 INFO [long-pulling] client count 0 + +2025-09-24 17:29:24,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:29:24,722 INFO toNotifyTaskSize = 0 + +2025-09-24 17:29:24,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:29:34,510 INFO [long-pulling] client count 0 + +2025-09-24 17:29:34,510 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:29:34,722 INFO toNotifyTaskSize = 0 + +2025-09-24 17:29:34,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:29:44,511 INFO [long-pulling] client count 0 + +2025-09-24 17:29:44,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:29:44,723 INFO toNotifyTaskSize = 0 + +2025-09-24 17:29:44,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:29:54,511 INFO [long-pulling] client count 0 + +2025-09-24 17:29:54,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:29:54,724 INFO toNotifyTaskSize = 0 + +2025-09-24 17:29:54,724 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:30:04,512 INFO [long-pulling] client count 0 + +2025-09-24 17:30:04,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:30:04,725 INFO toNotifyTaskSize = 0 + +2025-09-24 17:30:04,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:30:14,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:30:14,512 INFO [long-pulling] client count 0 + +2025-09-24 17:30:14,727 INFO toNotifyTaskSize = 0 + +2025-09-24 17:30:14,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:30:24,513 INFO [long-pulling] client count 0 + +2025-09-24 17:30:24,513 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:30:24,729 INFO toNotifyTaskSize = 0 + +2025-09-24 17:30:24,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:30:34,514 INFO [long-pulling] client count 0 + +2025-09-24 17:30:34,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:30:34,729 INFO toNotifyTaskSize = 0 + +2025-09-24 17:30:34,729 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:30:44,516 INFO [long-pulling] client count 0 + +2025-09-24 17:30:44,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:30:44,730 INFO toNotifyTaskSize = 0 + +2025-09-24 17:30:44,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:30:54,516 INFO [long-pulling] client count 0 + +2025-09-24 17:30:54,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:30:54,730 INFO toNotifyTaskSize = 0 + +2025-09-24 17:30:54,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:31:04,516 INFO [long-pulling] client count 0 + +2025-09-24 17:31:04,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:31:04,731 INFO toNotifyTaskSize = 0 + +2025-09-24 17:31:04,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:31:14,517 INFO [long-pulling] client count 0 + +2025-09-24 17:31:14,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:31:14,731 INFO toNotifyTaskSize = 0 + +2025-09-24 17:31:14,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:31:24,517 INFO [long-pulling] client count 0 + +2025-09-24 17:31:24,522 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:31:24,731 INFO toNotifyTaskSize = 0 + +2025-09-24 17:31:24,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:31:34,519 INFO [long-pulling] client count 0 + +2025-09-24 17:31:34,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:31:34,732 INFO toNotifyTaskSize = 0 + +2025-09-24 17:31:34,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:31:44,522 INFO [long-pulling] client count 0 + +2025-09-24 17:31:44,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:31:44,733 INFO toNotifyTaskSize = 0 + +2025-09-24 17:31:44,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:31:54,523 INFO [long-pulling] client count 0 + +2025-09-24 17:31:54,528 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:31:54,734 INFO toNotifyTaskSize = 0 + +2025-09-24 17:31:54,734 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:32:04,524 INFO [long-pulling] client count 0 + +2025-09-24 17:32:04,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:32:04,737 INFO toNotifyTaskSize = 0 + +2025-09-24 17:32:04,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:32:14,524 INFO [long-pulling] client count 0 + +2025-09-24 17:32:14,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:32:14,737 INFO toNotifyTaskSize = 0 + +2025-09-24 17:32:14,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:32:24,525 INFO [long-pulling] client count 0 + +2025-09-24 17:32:24,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:32:24,742 INFO toNotifyTaskSize = 0 + +2025-09-24 17:32:24,742 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:32:34,527 INFO [long-pulling] client count 0 + +2025-09-24 17:32:34,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:32:34,743 INFO toNotifyTaskSize = 0 + +2025-09-24 17:32:34,743 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:32:44,528 INFO [long-pulling] client count 0 + +2025-09-24 17:32:44,532 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:32:44,745 INFO toNotifyTaskSize = 0 + +2025-09-24 17:32:44,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:32:54,530 INFO [long-pulling] client count 0 + +2025-09-24 17:32:54,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:32:54,745 INFO toNotifyTaskSize = 0 + +2025-09-24 17:32:54,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:33:04,532 INFO [long-pulling] client count 0 + +2025-09-24 17:33:04,535 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:33:04,746 INFO toNotifyTaskSize = 0 + +2025-09-24 17:33:04,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:33:14,533 INFO [long-pulling] client count 0 + +2025-09-24 17:33:14,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:33:14,746 INFO toNotifyTaskSize = 0 + +2025-09-24 17:33:14,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:33:24,535 INFO [long-pulling] client count 0 + +2025-09-24 17:33:24,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:33:24,747 INFO toNotifyTaskSize = 0 + +2025-09-24 17:33:24,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:33:34,538 INFO [long-pulling] client count 0 + +2025-09-24 17:33:34,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:33:34,747 INFO toNotifyTaskSize = 0 + +2025-09-24 17:33:34,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:33:44,538 INFO [long-pulling] client count 0 + +2025-09-24 17:33:44,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:33:44,748 INFO toNotifyTaskSize = 0 + +2025-09-24 17:33:44,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:33:54,539 INFO [long-pulling] client count 0 + +2025-09-24 17:33:54,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:33:54,748 INFO toNotifyTaskSize = 0 + +2025-09-24 17:33:54,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:34:04,539 INFO [long-pulling] client count 0 + +2025-09-24 17:34:04,540 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:34:04,749 INFO toNotifyTaskSize = 0 + +2025-09-24 17:34:04,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:34:14,541 INFO [long-pulling] client count 0 + +2025-09-24 17:34:14,541 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:34:14,751 INFO toNotifyTaskSize = 0 + +2025-09-24 17:34:14,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:34:24,542 INFO [long-pulling] client count 0 + +2025-09-24 17:34:24,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:34:24,752 INFO toNotifyTaskSize = 0 + +2025-09-24 17:34:24,752 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:34:34,544 INFO [long-pulling] client count 0 + +2025-09-24 17:34:34,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:34:34,753 INFO toNotifyTaskSize = 0 + +2025-09-24 17:34:34,753 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:34:44,544 INFO [long-pulling] client count 0 + +2025-09-24 17:34:44,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:34:44,755 INFO toNotifyTaskSize = 0 + +2025-09-24 17:34:44,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:34:54,545 INFO [long-pulling] client count 0 + +2025-09-24 17:34:54,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:34:54,755 INFO toNotifyTaskSize = 0 + +2025-09-24 17:34:54,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:35:04,546 INFO [long-pulling] client count 0 + +2025-09-24 17:35:04,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:35:04,758 INFO toNotifyTaskSize = 0 + +2025-09-24 17:35:04,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:35:14,546 INFO [long-pulling] client count 0 + +2025-09-24 17:35:14,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:35:14,760 INFO toNotifyTaskSize = 0 + +2025-09-24 17:35:14,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:35:24,546 INFO [long-pulling] client count 0 + +2025-09-24 17:35:24,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:35:24,760 INFO toNotifyTaskSize = 0 + +2025-09-24 17:35:24,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:35:34,548 INFO [long-pulling] client count 0 + +2025-09-24 17:35:34,548 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:35:34,761 INFO toNotifyTaskSize = 0 + +2025-09-24 17:35:34,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:35:44,548 INFO [long-pulling] client count 0 + +2025-09-24 17:35:44,549 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:35:44,763 INFO toNotifyTaskSize = 0 + +2025-09-24 17:35:44,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:35:54,549 INFO [long-pulling] client count 0 + +2025-09-24 17:35:54,550 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:35:54,763 INFO toNotifyTaskSize = 0 + +2025-09-24 17:35:54,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:36:04,551 INFO [long-pulling] client count 0 + +2025-09-24 17:36:04,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:36:04,764 INFO toNotifyTaskSize = 0 + +2025-09-24 17:36:04,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:36:14,551 INFO [long-pulling] client count 0 + +2025-09-24 17:36:14,552 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:36:14,766 INFO toNotifyTaskSize = 0 + +2025-09-24 17:36:14,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:36:24,554 INFO [long-pulling] client count 0 + +2025-09-24 17:36:24,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:36:24,768 INFO toNotifyTaskSize = 0 + +2025-09-24 17:36:24,769 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:36:34,554 INFO [long-pulling] client count 0 + +2025-09-24 17:36:34,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:36:34,771 INFO toNotifyTaskSize = 0 + +2025-09-24 17:36:34,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:36:44,555 INFO [long-pulling] client count 0 + +2025-09-24 17:36:44,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:36:44,773 INFO toNotifyTaskSize = 0 + +2025-09-24 17:36:44,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:36:54,555 INFO [long-pulling] client count 0 + +2025-09-24 17:36:54,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:36:54,774 INFO toNotifyTaskSize = 0 + +2025-09-24 17:36:54,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:37:04,558 INFO [long-pulling] client count 0 + +2025-09-24 17:37:04,558 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:37:04,774 INFO toNotifyTaskSize = 0 + +2025-09-24 17:37:04,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:37:14,558 INFO [long-pulling] client count 0 + +2025-09-24 17:37:14,558 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:37:14,775 INFO toNotifyTaskSize = 0 + +2025-09-24 17:37:14,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:37:24,561 INFO [long-pulling] client count 0 + +2025-09-24 17:37:24,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:37:24,776 INFO toNotifyTaskSize = 0 + +2025-09-24 17:37:24,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:37:34,561 INFO [long-pulling] client count 0 + +2025-09-24 17:37:34,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:37:34,778 INFO toNotifyTaskSize = 0 + +2025-09-24 17:37:34,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:37:44,562 INFO [long-pulling] client count 0 + +2025-09-24 17:37:44,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:37:44,780 INFO toNotifyTaskSize = 0 + +2025-09-24 17:37:44,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:37:54,562 INFO [long-pulling] client count 0 + +2025-09-24 17:37:54,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:37:54,781 INFO toNotifyTaskSize = 0 + +2025-09-24 17:37:54,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:38:04,563 INFO [long-pulling] client count 0 + +2025-09-24 17:38:04,564 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:38:04,781 INFO toNotifyTaskSize = 0 + +2025-09-24 17:38:04,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:38:14,564 INFO [long-pulling] client count 0 + +2025-09-24 17:38:14,564 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:38:14,782 INFO toNotifyTaskSize = 0 + +2025-09-24 17:38:14,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:38:24,565 INFO [long-pulling] client count 0 + +2025-09-24 17:38:24,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:38:24,784 INFO toNotifyTaskSize = 0 + +2025-09-24 17:38:24,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:38:34,566 INFO [long-pulling] client count 0 + +2025-09-24 17:38:34,566 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:38:34,786 INFO toNotifyTaskSize = 0 + +2025-09-24 17:38:34,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:38:44,567 INFO [long-pulling] client count 0 + +2025-09-24 17:38:44,567 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:38:44,786 INFO toNotifyTaskSize = 0 + +2025-09-24 17:38:44,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:38:54,569 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:38:54,569 INFO [long-pulling] client count 0 + +2025-09-24 17:38:54,786 INFO toNotifyTaskSize = 0 + +2025-09-24 17:38:54,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:39:04,571 INFO [long-pulling] client count 0 + +2025-09-24 17:39:04,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:39:04,789 INFO toNotifyTaskSize = 0 + +2025-09-24 17:39:04,789 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:39:14,571 INFO [long-pulling] client count 0 + +2025-09-24 17:39:14,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:39:14,789 INFO toNotifyTaskSize = 0 + +2025-09-24 17:39:14,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:39:24,572 INFO [long-pulling] client count 0 + +2025-09-24 17:39:24,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:39:24,791 INFO toNotifyTaskSize = 0 + +2025-09-24 17:39:24,791 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:39:34,574 INFO [long-pulling] client count 0 + +2025-09-24 17:39:34,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:39:34,793 INFO toNotifyTaskSize = 0 + +2025-09-24 17:39:34,793 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:39:44,574 INFO [long-pulling] client count 0 + +2025-09-24 17:39:44,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:39:44,794 INFO toNotifyTaskSize = 0 + +2025-09-24 17:39:44,794 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:39:54,574 INFO [long-pulling] client count 0 + +2025-09-24 17:39:54,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:39:54,796 INFO toNotifyTaskSize = 0 + +2025-09-24 17:39:54,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:40:04,576 INFO [long-pulling] client count 0 + +2025-09-24 17:40:04,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:40:04,796 INFO toNotifyTaskSize = 0 + +2025-09-24 17:40:04,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:40:14,577 INFO [long-pulling] client count 0 + +2025-09-24 17:40:14,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:40:14,797 INFO toNotifyTaskSize = 0 + +2025-09-24 17:40:14,797 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:40:24,579 INFO [long-pulling] client count 0 + +2025-09-24 17:40:24,580 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:40:24,798 INFO toNotifyTaskSize = 0 + +2025-09-24 17:40:24,798 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:40:34,582 INFO [long-pulling] client count 0 + +2025-09-24 17:40:34,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:40:34,800 INFO toNotifyTaskSize = 0 + +2025-09-24 17:40:34,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:40:44,582 INFO [long-pulling] client count 0 + +2025-09-24 17:40:44,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:40:44,801 INFO toNotifyTaskSize = 0 + +2025-09-24 17:40:44,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:40:54,583 INFO [long-pulling] client count 0 + +2025-09-24 17:40:54,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:40:54,802 INFO toNotifyTaskSize = 0 + +2025-09-24 17:40:54,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:41:04,583 INFO [long-pulling] client count 0 + +2025-09-24 17:41:04,584 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:41:04,804 INFO toNotifyTaskSize = 0 + +2025-09-24 17:41:04,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:41:14,584 INFO [long-pulling] client count 0 + +2025-09-24 17:41:14,584 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:41:14,805 INFO toNotifyTaskSize = 0 + +2025-09-24 17:41:14,805 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:41:24,585 INFO [long-pulling] client count 0 + +2025-09-24 17:41:24,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:41:24,807 INFO toNotifyTaskSize = 0 + +2025-09-24 17:41:24,807 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:41:34,588 INFO [long-pulling] client count 0 + +2025-09-24 17:41:34,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:41:34,808 INFO toNotifyTaskSize = 0 + +2025-09-24 17:41:34,808 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:41:44,588 INFO [long-pulling] client count 0 + +2025-09-24 17:41:44,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:41:44,809 INFO toNotifyTaskSize = 0 + +2025-09-24 17:41:44,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:41:54,589 INFO [long-pulling] client count 0 + +2025-09-24 17:41:54,589 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:41:54,809 INFO toNotifyTaskSize = 0 + +2025-09-24 17:41:54,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:42:04,589 INFO [long-pulling] client count 0 + +2025-09-24 17:42:04,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:42:04,810 INFO toNotifyTaskSize = 0 + +2025-09-24 17:42:04,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:42:14,590 INFO [long-pulling] client count 0 + +2025-09-24 17:42:14,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:42:14,812 INFO toNotifyTaskSize = 0 + +2025-09-24 17:42:14,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:42:24,591 INFO [long-pulling] client count 0 + +2025-09-24 17:42:24,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:42:24,812 INFO toNotifyTaskSize = 0 + +2025-09-24 17:42:24,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:42:34,592 INFO [long-pulling] client count 0 + +2025-09-24 17:42:34,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:42:34,814 INFO toNotifyTaskSize = 0 + +2025-09-24 17:42:34,814 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:42:44,594 INFO [long-pulling] client count 0 + +2025-09-24 17:42:44,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:42:44,814 INFO toNotifyTaskSize = 0 + +2025-09-24 17:42:44,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:42:54,594 INFO [long-pulling] client count 0 + +2025-09-24 17:42:54,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:42:54,817 INFO toNotifyTaskSize = 0 + +2025-09-24 17:42:54,817 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:43:04,595 INFO [long-pulling] client count 0 + +2025-09-24 17:43:04,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:43:04,818 INFO toNotifyTaskSize = 0 + +2025-09-24 17:43:04,818 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:43:14,595 INFO [long-pulling] client count 0 + +2025-09-24 17:43:14,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:43:14,818 INFO toNotifyTaskSize = 0 + +2025-09-24 17:43:14,818 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:43:24,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:43:24,596 INFO [long-pulling] client count 0 + +2025-09-24 17:43:24,819 INFO toNotifyTaskSize = 0 + +2025-09-24 17:43:24,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:43:34,597 INFO [long-pulling] client count 0 + +2025-09-24 17:43:34,597 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:43:34,819 INFO toNotifyTaskSize = 0 + +2025-09-24 17:43:34,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:43:44,599 INFO [long-pulling] client count 0 + +2025-09-24 17:43:44,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:43:44,821 INFO toNotifyTaskSize = 0 + +2025-09-24 17:43:44,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:43:54,600 INFO [long-pulling] client count 0 + +2025-09-24 17:43:54,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:43:54,823 INFO toNotifyTaskSize = 0 + +2025-09-24 17:43:54,823 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:44:04,602 INFO [long-pulling] client count 0 + +2025-09-24 17:44:04,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:44:04,824 INFO toNotifyTaskSize = 0 + +2025-09-24 17:44:04,824 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:44:14,602 INFO [long-pulling] client count 0 + +2025-09-24 17:44:14,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:44:14,824 INFO toNotifyTaskSize = 0 + +2025-09-24 17:44:14,825 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:44:24,603 INFO [long-pulling] client count 0 + +2025-09-24 17:44:24,603 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:44:24,826 INFO toNotifyTaskSize = 0 + +2025-09-24 17:44:24,826 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:44:34,605 INFO [long-pulling] client count 0 + +2025-09-24 17:44:34,605 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:44:34,827 INFO toNotifyTaskSize = 0 + +2025-09-24 17:44:34,827 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:44:44,606 INFO [long-pulling] client count 0 + +2025-09-24 17:44:44,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:44:44,827 INFO toNotifyTaskSize = 0 + +2025-09-24 17:44:44,827 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:44:54,607 INFO [long-pulling] client count 0 + +2025-09-24 17:44:54,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:44:54,829 INFO toNotifyTaskSize = 0 + +2025-09-24 17:44:54,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:45:04,608 INFO [long-pulling] client count 0 + +2025-09-24 17:45:04,608 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:45:04,830 INFO toNotifyTaskSize = 0 + +2025-09-24 17:45:04,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:45:14,609 INFO [long-pulling] client count 0 + +2025-09-24 17:45:14,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:45:14,830 INFO toNotifyTaskSize = 0 + +2025-09-24 17:45:14,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:45:24,610 INFO [long-pulling] client count 0 + +2025-09-24 17:45:24,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:45:24,830 INFO toNotifyTaskSize = 0 + +2025-09-24 17:45:24,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:45:34,613 INFO [long-pulling] client count 0 + +2025-09-24 17:45:34,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:45:34,831 INFO toNotifyTaskSize = 0 + +2025-09-24 17:45:34,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:45:44,615 INFO [long-pulling] client count 0 + +2025-09-24 17:45:44,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:45:44,832 INFO toNotifyTaskSize = 0 + +2025-09-24 17:45:44,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:45:54,617 INFO [long-pulling] client count 0 + +2025-09-24 17:45:54,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:45:54,833 INFO toNotifyTaskSize = 0 + +2025-09-24 17:45:54,833 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:46:04,619 INFO [long-pulling] client count 0 + +2025-09-24 17:46:04,619 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:46:04,834 INFO toNotifyTaskSize = 0 + +2025-09-24 17:46:04,834 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:46:14,621 INFO [long-pulling] client count 0 + +2025-09-24 17:46:14,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:46:14,834 INFO toNotifyTaskSize = 0 + +2025-09-24 17:46:14,834 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:46:24,622 INFO [long-pulling] client count 0 + +2025-09-24 17:46:24,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:46:24,836 INFO toNotifyTaskSize = 0 + +2025-09-24 17:46:24,836 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:46:34,623 INFO [long-pulling] client count 0 + +2025-09-24 17:46:34,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:46:34,838 INFO toNotifyTaskSize = 0 + +2025-09-24 17:46:34,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:46:44,623 INFO [long-pulling] client count 0 + +2025-09-24 17:46:44,624 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:46:44,839 INFO toNotifyTaskSize = 0 + +2025-09-24 17:46:44,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:46:54,626 INFO [long-pulling] client count 0 + +2025-09-24 17:46:54,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:46:54,840 INFO toNotifyTaskSize = 0 + +2025-09-24 17:46:54,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:47:04,626 INFO [long-pulling] client count 0 + +2025-09-24 17:47:04,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:47:04,841 INFO toNotifyTaskSize = 0 + +2025-09-24 17:47:04,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:47:14,627 INFO [long-pulling] client count 0 + +2025-09-24 17:47:14,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:47:14,841 INFO toNotifyTaskSize = 0 + +2025-09-24 17:47:14,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:47:24,627 INFO [long-pulling] client count 0 + +2025-09-24 17:47:24,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:47:24,842 INFO toNotifyTaskSize = 0 + +2025-09-24 17:47:24,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:47:34,628 INFO [long-pulling] client count 0 + +2025-09-24 17:47:34,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:47:34,842 INFO toNotifyTaskSize = 0 + +2025-09-24 17:47:34,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:47:44,630 INFO [long-pulling] client count 0 + +2025-09-24 17:47:44,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:47:44,843 INFO toNotifyTaskSize = 0 + +2025-09-24 17:47:44,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:47:54,630 INFO [long-pulling] client count 0 + +2025-09-24 17:47:54,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:47:54,844 INFO toNotifyTaskSize = 0 + +2025-09-24 17:47:54,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:48:04,631 INFO [long-pulling] client count 0 + +2025-09-24 17:48:04,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:48:04,845 INFO toNotifyTaskSize = 0 + +2025-09-24 17:48:04,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:48:14,632 INFO [long-pulling] client count 0 + +2025-09-24 17:48:14,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:48:14,847 INFO toNotifyTaskSize = 0 + +2025-09-24 17:48:14,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:48:24,632 INFO [long-pulling] client count 0 + +2025-09-24 17:48:24,633 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:48:24,848 INFO toNotifyTaskSize = 0 + +2025-09-24 17:48:24,848 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:48:34,633 INFO [long-pulling] client count 0 + +2025-09-24 17:48:34,633 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:48:34,849 INFO toNotifyTaskSize = 0 + +2025-09-24 17:48:34,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:48:44,635 INFO [long-pulling] client count 0 + +2025-09-24 17:48:44,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:48:44,849 INFO toNotifyTaskSize = 0 + +2025-09-24 17:48:44,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:48:54,635 INFO [long-pulling] client count 0 + +2025-09-24 17:48:54,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:48:54,849 INFO toNotifyTaskSize = 0 + +2025-09-24 17:48:54,849 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:49:04,636 INFO [long-pulling] client count 0 + +2025-09-24 17:49:04,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:49:04,850 INFO toNotifyTaskSize = 0 + +2025-09-24 17:49:04,850 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:49:14,638 INFO [long-pulling] client count 0 + +2025-09-24 17:49:14,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:49:14,851 INFO toNotifyTaskSize = 0 + +2025-09-24 17:49:14,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:49:24,639 INFO [long-pulling] client count 0 + +2025-09-24 17:49:24,639 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:49:24,852 INFO toNotifyTaskSize = 0 + +2025-09-24 17:49:24,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:49:34,640 INFO [long-pulling] client count 0 + +2025-09-24 17:49:34,640 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:49:34,852 INFO toNotifyTaskSize = 0 + +2025-09-24 17:49:34,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:49:44,641 INFO [long-pulling] client count 0 + +2025-09-24 17:49:44,641 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:49:44,853 INFO toNotifyTaskSize = 0 + +2025-09-24 17:49:44,853 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:49:54,642 INFO [long-pulling] client count 0 + +2025-09-24 17:49:54,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:49:54,854 INFO toNotifyTaskSize = 0 + +2025-09-24 17:49:54,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:50:04,643 INFO [long-pulling] client count 0 + +2025-09-24 17:50:04,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:50:04,854 INFO toNotifyTaskSize = 0 + +2025-09-24 17:50:04,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:50:14,643 INFO [long-pulling] client count 0 + +2025-09-24 17:50:14,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:50:14,856 INFO toNotifyTaskSize = 0 + +2025-09-24 17:50:14,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:50:24,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:50:24,646 INFO [long-pulling] client count 0 + +2025-09-24 17:50:24,857 INFO toNotifyTaskSize = 0 + +2025-09-24 17:50:24,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:50:34,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:50:34,646 INFO [long-pulling] client count 0 + +2025-09-24 17:50:34,858 INFO toNotifyTaskSize = 0 + +2025-09-24 17:50:34,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:50:44,648 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:50:44,648 INFO [long-pulling] client count 0 + +2025-09-24 17:50:44,860 INFO toNotifyTaskSize = 0 + +2025-09-24 17:50:44,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:50:54,649 INFO [long-pulling] client count 0 + +2025-09-24 17:50:54,649 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:50:54,860 INFO toNotifyTaskSize = 0 + +2025-09-24 17:50:54,861 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:51:04,650 INFO [long-pulling] client count 0 + +2025-09-24 17:51:04,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:51:04,861 INFO toNotifyTaskSize = 0 + +2025-09-24 17:51:04,861 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:51:14,651 INFO [long-pulling] client count 0 + +2025-09-24 17:51:14,651 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:51:14,863 INFO toNotifyTaskSize = 0 + +2025-09-24 17:51:14,863 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:51:24,653 INFO [long-pulling] client count 0 + +2025-09-24 17:51:24,653 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:51:24,865 INFO toNotifyTaskSize = 0 + +2025-09-24 17:51:24,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:51:34,654 INFO [long-pulling] client count 0 + +2025-09-24 17:51:34,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:51:34,865 INFO toNotifyTaskSize = 0 + +2025-09-24 17:51:34,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:51:44,655 INFO [long-pulling] client count 0 + +2025-09-24 17:51:44,655 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:51:44,866 INFO toNotifyTaskSize = 0 + +2025-09-24 17:51:44,866 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:51:54,655 INFO [long-pulling] client count 0 + +2025-09-24 17:51:54,655 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:51:54,868 INFO toNotifyTaskSize = 0 + +2025-09-24 17:51:54,868 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:52:04,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:52:04,657 INFO [long-pulling] client count 0 + +2025-09-24 17:52:04,869 INFO toNotifyTaskSize = 0 + +2025-09-24 17:52:04,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:52:14,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:52:14,658 INFO [long-pulling] client count 0 + +2025-09-24 17:52:14,870 INFO toNotifyTaskSize = 0 + +2025-09-24 17:52:14,870 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:52:24,658 INFO [long-pulling] client count 0 + +2025-09-24 17:52:24,658 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:52:24,872 INFO toNotifyTaskSize = 0 + +2025-09-24 17:52:24,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:52:34,659 INFO [long-pulling] client count 0 + +2025-09-24 17:52:34,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:52:34,874 INFO toNotifyTaskSize = 0 + +2025-09-24 17:52:34,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:52:44,660 INFO [long-pulling] client count 0 + +2025-09-24 17:52:44,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:52:44,874 INFO toNotifyTaskSize = 0 + +2025-09-24 17:52:44,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:52:54,662 INFO [long-pulling] client count 0 + +2025-09-24 17:52:54,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:52:54,877 INFO toNotifyTaskSize = 0 + +2025-09-24 17:52:54,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:53:04,663 INFO [long-pulling] client count 0 + +2025-09-24 17:53:04,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:53:04,878 INFO toNotifyTaskSize = 0 + +2025-09-24 17:53:04,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:53:14,663 INFO [long-pulling] client count 0 + +2025-09-24 17:53:14,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:53:14,878 INFO toNotifyTaskSize = 0 + +2025-09-24 17:53:14,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:53:24,663 INFO [long-pulling] client count 0 + +2025-09-24 17:53:24,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:53:24,880 INFO toNotifyTaskSize = 0 + +2025-09-24 17:53:24,881 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:53:34,665 INFO [long-pulling] client count 0 + +2025-09-24 17:53:34,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:53:34,882 INFO toNotifyTaskSize = 0 + +2025-09-24 17:53:34,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:53:44,667 INFO [long-pulling] client count 0 + +2025-09-24 17:53:44,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:53:44,883 INFO toNotifyTaskSize = 0 + +2025-09-24 17:53:44,883 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:53:54,668 INFO [long-pulling] client count 0 + +2025-09-24 17:53:54,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:53:54,884 INFO toNotifyTaskSize = 0 + +2025-09-24 17:53:54,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:54:04,670 INFO [long-pulling] client count 0 + +2025-09-24 17:54:04,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:54:04,885 INFO toNotifyTaskSize = 0 + +2025-09-24 17:54:04,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:54:14,671 INFO [long-pulling] client count 0 + +2025-09-24 17:54:14,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:54:14,885 INFO toNotifyTaskSize = 0 + +2025-09-24 17:54:14,886 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:54:24,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:54:24,674 INFO [long-pulling] client count 0 + +2025-09-24 17:54:24,887 INFO toNotifyTaskSize = 0 + +2025-09-24 17:54:24,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:54:34,675 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:54:34,675 INFO [long-pulling] client count 0 + +2025-09-24 17:54:34,887 INFO toNotifyTaskSize = 0 + +2025-09-24 17:54:34,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:54:44,677 INFO [long-pulling] client count 0 + +2025-09-24 17:54:44,677 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:54:44,889 INFO toNotifyTaskSize = 0 + +2025-09-24 17:54:44,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:54:54,677 INFO [long-pulling] client count 0 + +2025-09-24 17:54:54,677 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:54:54,889 INFO toNotifyTaskSize = 0 + +2025-09-24 17:54:54,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:55:04,679 INFO [long-pulling] client count 0 + +2025-09-24 17:55:04,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:55:04,890 INFO toNotifyTaskSize = 0 + +2025-09-24 17:55:04,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:55:14,681 INFO [long-pulling] client count 0 + +2025-09-24 17:55:14,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:55:14,891 INFO toNotifyTaskSize = 0 + +2025-09-24 17:55:14,891 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:55:24,681 INFO [long-pulling] client count 0 + +2025-09-24 17:55:24,682 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:55:24,892 INFO toNotifyTaskSize = 0 + +2025-09-24 17:55:24,892 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:55:34,683 INFO [long-pulling] client count 0 + +2025-09-24 17:55:34,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:55:34,892 INFO toNotifyTaskSize = 0 + +2025-09-24 17:55:34,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:55:44,683 INFO [long-pulling] client count 0 + +2025-09-24 17:55:44,683 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:55:44,893 INFO toNotifyTaskSize = 0 + +2025-09-24 17:55:44,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:55:54,684 INFO [long-pulling] client count 0 + +2025-09-24 17:55:54,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:55:54,895 INFO toNotifyTaskSize = 0 + +2025-09-24 17:55:54,895 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:56:04,685 INFO [long-pulling] client count 0 + +2025-09-24 17:56:04,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:56:04,895 INFO toNotifyTaskSize = 0 + +2025-09-24 17:56:04,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:56:14,687 INFO [long-pulling] client count 0 + +2025-09-24 17:56:14,687 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:56:14,896 INFO toNotifyTaskSize = 0 + +2025-09-24 17:56:14,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:56:24,689 INFO [long-pulling] client count 0 + +2025-09-24 17:56:24,689 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:56:24,896 INFO toNotifyTaskSize = 0 + +2025-09-24 17:56:24,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:56:34,690 INFO [long-pulling] client count 0 + +2025-09-24 17:56:34,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:56:34,897 INFO toNotifyTaskSize = 0 + +2025-09-24 17:56:34,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:56:44,692 INFO [long-pulling] client count 0 + +2025-09-24 17:56:44,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:56:44,897 INFO toNotifyTaskSize = 0 + +2025-09-24 17:56:44,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:56:54,692 INFO [long-pulling] client count 0 + +2025-09-24 17:56:54,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:56:54,898 INFO toNotifyTaskSize = 0 + +2025-09-24 17:56:54,898 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:57:04,693 INFO [long-pulling] client count 0 + +2025-09-24 17:57:04,693 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:57:04,899 INFO toNotifyTaskSize = 0 + +2025-09-24 17:57:04,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:57:14,693 INFO [long-pulling] client count 0 + +2025-09-24 17:57:14,693 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:57:14,901 INFO toNotifyTaskSize = 0 + +2025-09-24 17:57:14,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:57:24,695 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:57:24,695 INFO [long-pulling] client count 0 + +2025-09-24 17:57:24,901 INFO toNotifyTaskSize = 0 + +2025-09-24 17:57:24,902 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:57:34,698 INFO [long-pulling] client count 0 + +2025-09-24 17:57:34,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:57:34,902 INFO toNotifyTaskSize = 0 + +2025-09-24 17:57:34,902 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:57:44,698 INFO [long-pulling] client count 0 + +2025-09-24 17:57:44,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:57:44,904 INFO toNotifyTaskSize = 0 + +2025-09-24 17:57:44,904 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:57:54,699 INFO [long-pulling] client count 0 + +2025-09-24 17:57:54,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:57:54,906 INFO toNotifyTaskSize = 0 + +2025-09-24 17:57:54,906 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:58:04,699 INFO [long-pulling] client count 0 + +2025-09-24 17:58:04,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:58:04,908 INFO toNotifyTaskSize = 0 + +2025-09-24 17:58:04,909 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:58:14,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:58:14,700 INFO [long-pulling] client count 0 + +2025-09-24 17:58:14,909 INFO toNotifyTaskSize = 0 + +2025-09-24 17:58:14,910 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:58:24,700 INFO [long-pulling] client count 0 + +2025-09-24 17:58:24,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:58:24,912 INFO toNotifyTaskSize = 0 + +2025-09-24 17:58:24,912 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:58:34,702 INFO [long-pulling] client count 0 + +2025-09-24 17:58:34,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:58:34,914 INFO toNotifyTaskSize = 0 + +2025-09-24 17:58:34,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:58:44,702 INFO [long-pulling] client count 0 + +2025-09-24 17:58:44,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:58:44,915 INFO toNotifyTaskSize = 0 + +2025-09-24 17:58:44,915 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:58:54,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:58:54,702 INFO [long-pulling] client count 0 + +2025-09-24 17:58:54,917 INFO toNotifyTaskSize = 0 + +2025-09-24 17:58:54,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:59:04,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:59:04,703 INFO [long-pulling] client count 0 + +2025-09-24 17:59:04,917 INFO toNotifyTaskSize = 0 + +2025-09-24 17:59:04,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:59:14,705 INFO [long-pulling] client count 0 + +2025-09-24 17:59:14,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:59:14,919 INFO toNotifyTaskSize = 0 + +2025-09-24 17:59:14,919 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:59:24,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:59:24,705 INFO [long-pulling] client count 0 + +2025-09-24 17:59:24,920 INFO toNotifyTaskSize = 0 + +2025-09-24 17:59:24,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:59:34,707 INFO [long-pulling] client count 0 + +2025-09-24 17:59:34,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:59:34,922 INFO toNotifyTaskSize = 0 + +2025-09-24 17:59:34,922 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:59:44,707 INFO [long-pulling] client count 0 + +2025-09-24 17:59:44,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:59:44,925 INFO toNotifyTaskSize = 0 + +2025-09-24 17:59:44,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 17:59:54,708 INFO [long-pulling] client count 0 + +2025-09-24 17:59:54,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 17:59:54,925 INFO toNotifyTaskSize = 0 + +2025-09-24 17:59:54,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:00:04,709 INFO [long-pulling] client count 0 + +2025-09-24 18:00:04,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:00:04,927 INFO toNotifyTaskSize = 0 + +2025-09-24 18:00:04,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:00:14,709 INFO [long-pulling] client count 0 + +2025-09-24 18:00:14,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:00:14,928 INFO toNotifyTaskSize = 0 + +2025-09-24 18:00:14,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:00:24,710 INFO [long-pulling] client count 0 + +2025-09-24 18:00:24,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:00:24,928 INFO toNotifyTaskSize = 0 + +2025-09-24 18:00:24,928 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:00:34,710 INFO [long-pulling] client count 0 + +2025-09-24 18:00:34,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:00:34,929 INFO toNotifyTaskSize = 0 + +2025-09-24 18:00:34,929 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:00:44,711 INFO [long-pulling] client count 0 + +2025-09-24 18:00:44,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:00:44,929 INFO toNotifyTaskSize = 0 + +2025-09-24 18:00:44,929 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:00:54,711 INFO [long-pulling] client count 0 + +2025-09-24 18:00:54,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:00:54,930 INFO toNotifyTaskSize = 0 + +2025-09-24 18:00:54,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:01:04,714 INFO [long-pulling] client count 0 + +2025-09-24 18:01:04,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:01:04,932 INFO toNotifyTaskSize = 0 + +2025-09-24 18:01:04,932 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:01:14,714 INFO [long-pulling] client count 0 + +2025-09-24 18:01:14,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:01:14,934 INFO toNotifyTaskSize = 0 + +2025-09-24 18:01:14,934 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:01:24,715 INFO [long-pulling] client count 0 + +2025-09-24 18:01:24,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:01:24,934 INFO toNotifyTaskSize = 0 + +2025-09-24 18:01:24,934 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:01:34,716 INFO [long-pulling] client count 0 + +2025-09-24 18:01:34,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:01:34,936 INFO toNotifyTaskSize = 0 + +2025-09-24 18:01:34,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:01:44,717 INFO [long-pulling] client count 0 + +2025-09-24 18:01:44,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:01:44,939 INFO toNotifyTaskSize = 0 + +2025-09-24 18:01:44,939 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:01:54,717 INFO [long-pulling] client count 0 + +2025-09-24 18:01:54,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:01:54,941 INFO toNotifyTaskSize = 0 + +2025-09-24 18:01:54,941 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:02:04,717 INFO [long-pulling] client count 0 + +2025-09-24 18:02:04,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:02:04,943 INFO toNotifyTaskSize = 0 + +2025-09-24 18:02:04,943 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:02:14,719 INFO [long-pulling] client count 0 + +2025-09-24 18:02:14,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:02:14,944 INFO toNotifyTaskSize = 0 + +2025-09-24 18:02:14,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:02:24,721 INFO [long-pulling] client count 0 + +2025-09-24 18:02:24,721 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:02:24,946 INFO toNotifyTaskSize = 0 + +2025-09-24 18:02:24,946 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:02:34,723 INFO [long-pulling] client count 0 + +2025-09-24 18:02:34,723 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:02:34,946 INFO toNotifyTaskSize = 0 + +2025-09-24 18:02:34,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:02:44,726 INFO [long-pulling] client count 0 + +2025-09-24 18:02:44,726 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:02:44,949 INFO toNotifyTaskSize = 0 + +2025-09-24 18:02:44,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:02:54,728 INFO [long-pulling] client count 0 + +2025-09-24 18:02:54,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:02:54,950 INFO toNotifyTaskSize = 0 + +2025-09-24 18:02:54,951 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:03:04,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:03:04,729 INFO [long-pulling] client count 0 + +2025-09-24 18:03:04,952 INFO toNotifyTaskSize = 0 + +2025-09-24 18:03:04,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:03:14,730 INFO [long-pulling] client count 0 + +2025-09-24 18:03:14,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:03:14,953 INFO toNotifyTaskSize = 0 + +2025-09-24 18:03:14,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:03:24,731 INFO [long-pulling] client count 0 + +2025-09-24 18:03:24,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:03:24,955 INFO toNotifyTaskSize = 0 + +2025-09-24 18:03:24,955 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:03:34,732 INFO [long-pulling] client count 0 + +2025-09-24 18:03:34,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:03:34,958 INFO toNotifyTaskSize = 0 + +2025-09-24 18:03:34,958 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:03:44,733 INFO [long-pulling] client count 0 + +2025-09-24 18:03:44,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:03:44,960 INFO toNotifyTaskSize = 0 + +2025-09-24 18:03:44,960 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:03:54,734 INFO [long-pulling] client count 0 + +2025-09-24 18:03:54,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:03:54,960 INFO toNotifyTaskSize = 0 + +2025-09-24 18:03:54,961 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:04:04,735 INFO [long-pulling] client count 0 + +2025-09-24 18:04:04,747 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:04:04,962 INFO toNotifyTaskSize = 0 + +2025-09-24 18:04:04,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:04:14,735 INFO [long-pulling] client count 0 + +2025-09-24 18:04:14,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:04:14,962 INFO toNotifyTaskSize = 0 + +2025-09-24 18:04:14,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:04:24,737 INFO [long-pulling] client count 0 + +2025-09-24 18:04:24,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:04:24,963 INFO toNotifyTaskSize = 0 + +2025-09-24 18:04:24,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:04:34,739 INFO [long-pulling] client count 0 + +2025-09-24 18:04:34,751 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:04:34,964 INFO toNotifyTaskSize = 0 + +2025-09-24 18:04:34,964 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:04:44,741 INFO [long-pulling] client count 0 + +2025-09-24 18:04:44,753 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:04:44,967 INFO toNotifyTaskSize = 0 + +2025-09-24 18:04:44,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:04:54,741 INFO [long-pulling] client count 0 + +2025-09-24 18:04:54,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:04:54,968 INFO toNotifyTaskSize = 0 + +2025-09-24 18:04:54,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:05:04,742 INFO [long-pulling] client count 0 + +2025-09-24 18:05:04,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:05:04,968 INFO toNotifyTaskSize = 0 + +2025-09-24 18:05:04,969 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:05:14,743 INFO [long-pulling] client count 0 + +2025-09-24 18:05:14,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:05:14,970 INFO toNotifyTaskSize = 0 + +2025-09-24 18:05:14,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:05:24,743 INFO [long-pulling] client count 0 + +2025-09-24 18:05:24,758 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:05:24,971 INFO toNotifyTaskSize = 0 + +2025-09-24 18:05:24,971 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:05:34,745 INFO [long-pulling] client count 0 + +2025-09-24 18:05:34,760 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:05:34,971 INFO toNotifyTaskSize = 0 + +2025-09-24 18:05:34,971 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:05:44,746 INFO [long-pulling] client count 0 + +2025-09-24 18:05:44,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:05:44,973 INFO toNotifyTaskSize = 0 + +2025-09-24 18:05:44,973 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:05:54,746 INFO [long-pulling] client count 0 + +2025-09-24 18:05:54,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:05:54,974 INFO toNotifyTaskSize = 0 + +2025-09-24 18:05:54,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:06:04,747 INFO [long-pulling] client count 0 + +2025-09-24 18:06:04,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:06:04,974 INFO toNotifyTaskSize = 0 + +2025-09-24 18:06:04,975 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:06:14,747 INFO [long-pulling] client count 0 + +2025-09-24 18:06:14,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:06:14,977 INFO toNotifyTaskSize = 0 + +2025-09-24 18:06:14,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:06:24,749 INFO [long-pulling] client count 0 + +2025-09-24 18:06:24,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:06:24,979 INFO toNotifyTaskSize = 0 + +2025-09-24 18:06:24,979 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:06:34,751 INFO [long-pulling] client count 0 + +2025-09-24 18:06:34,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:06:34,979 INFO toNotifyTaskSize = 0 + +2025-09-24 18:06:34,979 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:06:44,751 INFO [long-pulling] client count 0 + +2025-09-24 18:06:44,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:06:44,981 INFO toNotifyTaskSize = 0 + +2025-09-24 18:06:44,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:06:54,753 INFO [long-pulling] client count 0 + +2025-09-24 18:06:54,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:06:54,982 INFO toNotifyTaskSize = 0 + +2025-09-24 18:06:54,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:07:04,755 INFO [long-pulling] client count 0 + +2025-09-24 18:07:04,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:07:04,983 INFO toNotifyTaskSize = 0 + +2025-09-24 18:07:04,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:07:14,756 INFO [long-pulling] client count 0 + +2025-09-24 18:07:14,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:07:14,983 INFO toNotifyTaskSize = 0 + +2025-09-24 18:07:14,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:07:24,757 INFO [long-pulling] client count 0 + +2025-09-24 18:07:24,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:07:24,984 INFO toNotifyTaskSize = 0 + +2025-09-24 18:07:24,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:07:34,759 INFO [long-pulling] client count 0 + +2025-09-24 18:07:34,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:07:34,986 INFO toNotifyTaskSize = 0 + +2025-09-24 18:07:34,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:07:44,759 INFO [long-pulling] client count 0 + +2025-09-24 18:07:44,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:07:44,987 INFO toNotifyTaskSize = 0 + +2025-09-24 18:07:44,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:07:54,761 INFO [long-pulling] client count 0 + +2025-09-24 18:07:54,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:07:54,989 INFO toNotifyTaskSize = 0 + +2025-09-24 18:07:54,989 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:08:04,763 INFO [long-pulling] client count 0 + +2025-09-24 18:08:04,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:08:04,990 INFO toNotifyTaskSize = 0 + +2025-09-24 18:08:04,990 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:08:14,763 INFO [long-pulling] client count 0 + +2025-09-24 18:08:14,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:08:14,990 INFO toNotifyTaskSize = 0 + +2025-09-24 18:08:14,990 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:08:24,765 INFO [long-pulling] client count 0 + +2025-09-24 18:08:24,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:08:24,991 INFO toNotifyTaskSize = 0 + +2025-09-24 18:08:24,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:08:34,765 INFO [long-pulling] client count 0 + +2025-09-24 18:08:34,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:08:34,991 INFO toNotifyTaskSize = 0 + +2025-09-24 18:08:34,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:08:44,766 INFO [long-pulling] client count 0 + +2025-09-24 18:08:44,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:08:44,994 INFO toNotifyTaskSize = 0 + +2025-09-24 18:08:44,994 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:08:54,766 INFO [long-pulling] client count 0 + +2025-09-24 18:08:54,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:08:54,994 INFO toNotifyTaskSize = 0 + +2025-09-24 18:08:54,994 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:09:04,767 INFO [long-pulling] client count 0 + +2025-09-24 18:09:04,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:09:04,994 INFO toNotifyTaskSize = 0 + +2025-09-24 18:09:04,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:09:14,769 INFO [long-pulling] client count 0 + +2025-09-24 18:09:14,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:09:14,996 INFO toNotifyTaskSize = 0 + +2025-09-24 18:09:14,996 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:09:24,770 INFO [long-pulling] client count 0 + +2025-09-24 18:09:24,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:09:24,996 INFO toNotifyTaskSize = 0 + +2025-09-24 18:09:24,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:09:34,772 INFO [long-pulling] client count 0 + +2025-09-24 18:09:34,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:09:34,997 INFO toNotifyTaskSize = 0 + +2025-09-24 18:09:34,997 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:09:44,772 INFO [long-pulling] client count 0 + +2025-09-24 18:09:44,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:09:44,999 INFO toNotifyTaskSize = 0 + +2025-09-24 18:09:45,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:09:54,773 INFO [long-pulling] client count 0 + +2025-09-24 18:09:54,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:09:55,000 INFO toNotifyTaskSize = 0 + +2025-09-24 18:09:55,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:10:04,773 INFO [long-pulling] client count 0 + +2025-09-24 18:10:04,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:10:05,000 INFO toNotifyTaskSize = 0 + +2025-09-24 18:10:05,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:10:14,775 INFO [long-pulling] client count 0 + +2025-09-24 18:10:14,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:10:15,001 INFO toNotifyTaskSize = 0 + +2025-09-24 18:10:15,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:10:24,775 INFO [long-pulling] client count 0 + +2025-09-24 18:10:24,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:10:25,002 INFO toNotifyTaskSize = 0 + +2025-09-24 18:10:25,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:10:34,778 INFO [long-pulling] client count 0 + +2025-09-24 18:10:34,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:10:35,004 INFO toNotifyTaskSize = 0 + +2025-09-24 18:10:35,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:10:44,778 INFO [long-pulling] client count 0 + +2025-09-24 18:10:44,789 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:10:45,004 INFO toNotifyTaskSize = 0 + +2025-09-24 18:10:45,005 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:10:54,780 INFO [long-pulling] client count 0 + +2025-09-24 18:10:54,791 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:10:55,007 INFO toNotifyTaskSize = 0 + +2025-09-24 18:10:55,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:11:04,781 INFO [long-pulling] client count 0 + +2025-09-24 18:11:04,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:11:05,009 INFO toNotifyTaskSize = 0 + +2025-09-24 18:11:05,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:11:14,783 INFO [long-pulling] client count 0 + +2025-09-24 18:11:14,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:11:15,010 INFO toNotifyTaskSize = 0 + +2025-09-24 18:11:15,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:11:24,785 INFO [long-pulling] client count 0 + +2025-09-24 18:11:24,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:11:25,010 INFO toNotifyTaskSize = 0 + +2025-09-24 18:11:25,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:11:34,786 INFO [long-pulling] client count 0 + +2025-09-24 18:11:34,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:11:35,011 INFO toNotifyTaskSize = 0 + +2025-09-24 18:11:35,011 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:11:44,788 INFO [long-pulling] client count 0 + +2025-09-24 18:11:44,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:11:45,012 INFO toNotifyTaskSize = 0 + +2025-09-24 18:11:45,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:11:54,790 INFO [long-pulling] client count 0 + +2025-09-24 18:11:54,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:11:55,012 INFO toNotifyTaskSize = 0 + +2025-09-24 18:11:55,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:12:04,792 INFO [long-pulling] client count 0 + +2025-09-24 18:12:04,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:12:05,013 INFO toNotifyTaskSize = 0 + +2025-09-24 18:12:05,013 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:12:14,792 INFO [long-pulling] client count 0 + +2025-09-24 18:12:14,798 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:12:15,016 INFO toNotifyTaskSize = 0 + +2025-09-24 18:12:15,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:12:24,792 INFO [long-pulling] client count 0 + +2025-09-24 18:12:24,798 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:12:25,017 INFO toNotifyTaskSize = 0 + +2025-09-24 18:12:25,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:12:34,795 INFO [long-pulling] client count 0 + +2025-09-24 18:12:34,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:12:35,018 INFO toNotifyTaskSize = 0 + +2025-09-24 18:12:35,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:12:44,795 INFO [long-pulling] client count 0 + +2025-09-24 18:12:44,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:12:45,019 INFO toNotifyTaskSize = 0 + +2025-09-24 18:12:45,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:12:54,796 INFO [long-pulling] client count 0 + +2025-09-24 18:12:54,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:12:55,020 INFO toNotifyTaskSize = 0 + +2025-09-24 18:12:55,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:13:04,797 INFO [long-pulling] client count 0 + +2025-09-24 18:13:04,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:13:05,021 INFO toNotifyTaskSize = 0 + +2025-09-24 18:13:05,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:13:14,797 INFO [long-pulling] client count 0 + +2025-09-24 18:13:14,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:13:15,021 INFO toNotifyTaskSize = 0 + +2025-09-24 18:13:15,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:13:24,798 INFO [long-pulling] client count 0 + +2025-09-24 18:13:24,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:13:25,022 INFO toNotifyTaskSize = 0 + +2025-09-24 18:13:25,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:13:34,801 INFO [long-pulling] client count 0 + +2025-09-24 18:13:34,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:13:35,022 INFO toNotifyTaskSize = 0 + +2025-09-24 18:13:35,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:13:44,802 INFO [long-pulling] client count 0 + +2025-09-24 18:13:44,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:13:45,023 INFO toNotifyTaskSize = 0 + +2025-09-24 18:13:45,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:13:54,802 INFO [long-pulling] client count 0 + +2025-09-24 18:13:54,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:13:55,023 INFO toNotifyTaskSize = 0 + +2025-09-24 18:13:55,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:14:04,804 INFO [long-pulling] client count 0 + +2025-09-24 18:14:04,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:14:05,024 INFO toNotifyTaskSize = 0 + +2025-09-24 18:14:05,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:14:14,806 INFO [long-pulling] client count 0 + +2025-09-24 18:14:14,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:14:15,024 INFO toNotifyTaskSize = 0 + +2025-09-24 18:14:15,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:14:24,807 INFO [long-pulling] client count 0 + +2025-09-24 18:14:24,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:14:25,024 INFO toNotifyTaskSize = 0 + +2025-09-24 18:14:25,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:14:34,810 INFO [long-pulling] client count 0 + +2025-09-24 18:14:34,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:14:35,025 INFO toNotifyTaskSize = 0 + +2025-09-24 18:14:35,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:14:44,810 INFO [long-pulling] client count 0 + +2025-09-24 18:14:44,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:14:45,025 INFO toNotifyTaskSize = 0 + +2025-09-24 18:14:45,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:14:54,811 INFO [long-pulling] client count 0 + +2025-09-24 18:14:54,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:14:55,026 INFO toNotifyTaskSize = 0 + +2025-09-24 18:14:55,026 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:15:04,813 INFO [long-pulling] client count 0 + +2025-09-24 18:15:04,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:15:05,027 INFO toNotifyTaskSize = 0 + +2025-09-24 18:15:05,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:15:14,814 INFO [long-pulling] client count 0 + +2025-09-24 18:15:14,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:15:15,028 INFO toNotifyTaskSize = 0 + +2025-09-24 18:15:15,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:15:24,815 INFO [long-pulling] client count 0 + +2025-09-24 18:15:24,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:15:25,029 INFO toNotifyTaskSize = 0 + +2025-09-24 18:15:25,029 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:15:34,817 INFO [long-pulling] client count 0 + +2025-09-24 18:15:34,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:15:35,029 INFO toNotifyTaskSize = 0 + +2025-09-24 18:15:35,029 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:15:44,818 INFO [long-pulling] client count 0 + +2025-09-24 18:15:44,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:15:45,030 INFO toNotifyTaskSize = 0 + +2025-09-24 18:15:45,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:15:54,819 INFO [long-pulling] client count 0 + +2025-09-24 18:15:54,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:15:55,030 INFO toNotifyTaskSize = 0 + +2025-09-24 18:15:55,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:16:04,821 INFO [long-pulling] client count 0 + +2025-09-24 18:16:04,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:16:05,031 INFO toNotifyTaskSize = 0 + +2025-09-24 18:16:05,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:16:14,821 INFO [long-pulling] client count 0 + +2025-09-24 18:16:14,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:16:15,031 INFO toNotifyTaskSize = 0 + +2025-09-24 18:16:15,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:16:24,821 INFO [long-pulling] client count 0 + +2025-09-24 18:16:24,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:16:25,031 INFO toNotifyTaskSize = 0 + +2025-09-24 18:16:25,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:16:34,823 INFO [long-pulling] client count 0 + +2025-09-24 18:16:34,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:16:35,032 INFO toNotifyTaskSize = 0 + +2025-09-24 18:16:35,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:16:44,824 INFO [long-pulling] client count 0 + +2025-09-24 18:16:44,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:16:45,032 INFO toNotifyTaskSize = 0 + +2025-09-24 18:16:45,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:16:54,826 INFO [long-pulling] client count 0 + +2025-09-24 18:16:54,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:16:55,033 INFO toNotifyTaskSize = 0 + +2025-09-24 18:16:55,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:17:04,827 INFO [long-pulling] client count 0 + +2025-09-24 18:17:04,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:17:05,034 INFO toNotifyTaskSize = 0 + +2025-09-24 18:17:05,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:17:14,827 INFO [long-pulling] client count 0 + +2025-09-24 18:17:14,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:17:15,034 INFO toNotifyTaskSize = 0 + +2025-09-24 18:17:15,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:17:24,828 INFO [long-pulling] client count 0 + +2025-09-24 18:17:24,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:17:25,040 INFO toNotifyTaskSize = 0 + +2025-09-24 18:17:25,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:17:34,830 INFO [long-pulling] client count 0 + +2025-09-24 18:17:34,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:17:35,040 INFO toNotifyTaskSize = 0 + +2025-09-24 18:17:35,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:17:44,831 INFO [long-pulling] client count 0 + +2025-09-24 18:17:44,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:17:45,042 INFO toNotifyTaskSize = 0 + +2025-09-24 18:17:45,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:17:54,832 INFO [long-pulling] client count 0 + +2025-09-24 18:17:54,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:17:55,042 INFO toNotifyTaskSize = 0 + +2025-09-24 18:17:55,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:18:04,832 INFO [long-pulling] client count 0 + +2025-09-24 18:18:04,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:18:05,042 INFO toNotifyTaskSize = 0 + +2025-09-24 18:18:05,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:18:14,833 INFO [long-pulling] client count 0 + +2025-09-24 18:18:14,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:18:15,042 INFO toNotifyTaskSize = 0 + +2025-09-24 18:18:15,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:18:24,834 INFO [long-pulling] client count 0 + +2025-09-24 18:18:24,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:18:25,043 INFO toNotifyTaskSize = 0 + +2025-09-24 18:18:25,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:18:34,837 INFO [long-pulling] client count 0 + +2025-09-24 18:18:34,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:18:35,043 INFO toNotifyTaskSize = 0 + +2025-09-24 18:18:35,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:18:44,838 INFO [long-pulling] client count 0 + +2025-09-24 18:18:44,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:18:45,044 INFO toNotifyTaskSize = 0 + +2025-09-24 18:18:45,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:18:54,839 INFO [long-pulling] client count 0 + +2025-09-24 18:18:54,839 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:18:55,044 INFO toNotifyTaskSize = 0 + +2025-09-24 18:18:55,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:19:04,840 INFO [long-pulling] client count 0 + +2025-09-24 18:19:04,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:19:05,045 INFO toNotifyTaskSize = 0 + +2025-09-24 18:19:05,045 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:19:14,841 INFO [long-pulling] client count 0 + +2025-09-24 18:19:14,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:19:15,045 INFO toNotifyTaskSize = 0 + +2025-09-24 18:19:15,045 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:19:24,842 INFO [long-pulling] client count 0 + +2025-09-24 18:19:24,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:19:25,046 INFO toNotifyTaskSize = 0 + +2025-09-24 18:19:25,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:19:34,844 INFO [long-pulling] client count 0 + +2025-09-24 18:19:34,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:19:35,047 INFO toNotifyTaskSize = 0 + +2025-09-24 18:19:35,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:19:44,845 INFO [long-pulling] client count 0 + +2025-09-24 18:19:44,845 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:19:45,048 INFO toNotifyTaskSize = 0 + +2025-09-24 18:19:45,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:19:54,846 INFO [long-pulling] client count 0 + +2025-09-24 18:19:54,846 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:19:55,048 INFO toNotifyTaskSize = 0 + +2025-09-24 18:19:55,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:20:04,848 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:20:04,848 INFO [long-pulling] client count 0 + +2025-09-24 18:20:05,050 INFO toNotifyTaskSize = 0 + +2025-09-24 18:20:05,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:20:14,849 INFO [long-pulling] client count 0 + +2025-09-24 18:20:14,849 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:20:15,051 INFO toNotifyTaskSize = 0 + +2025-09-24 18:20:15,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:20:24,850 INFO [long-pulling] client count 0 + +2025-09-24 18:20:24,850 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:20:25,051 INFO toNotifyTaskSize = 0 + +2025-09-24 18:20:25,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:20:34,850 INFO [long-pulling] client count 0 + +2025-09-24 18:20:34,850 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:20:35,052 INFO toNotifyTaskSize = 0 + +2025-09-24 18:20:35,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:20:44,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:20:44,851 INFO [long-pulling] client count 0 + +2025-09-24 18:20:45,052 INFO toNotifyTaskSize = 0 + +2025-09-24 18:20:45,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:20:54,852 INFO [long-pulling] client count 0 + +2025-09-24 18:20:54,852 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:20:55,054 INFO toNotifyTaskSize = 0 + +2025-09-24 18:20:55,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:21:04,853 INFO [long-pulling] client count 0 + +2025-09-24 18:21:04,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:21:05,054 INFO toNotifyTaskSize = 0 + +2025-09-24 18:21:05,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:21:14,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:21:14,855 INFO [long-pulling] client count 0 + +2025-09-24 18:21:15,055 INFO toNotifyTaskSize = 0 + +2025-09-24 18:21:15,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:21:24,855 INFO [long-pulling] client count 0 + +2025-09-24 18:21:24,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:21:25,055 INFO toNotifyTaskSize = 0 + +2025-09-24 18:21:25,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:21:34,856 INFO [long-pulling] client count 0 + +2025-09-24 18:21:34,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:21:35,055 INFO toNotifyTaskSize = 0 + +2025-09-24 18:21:35,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:21:44,858 INFO [long-pulling] client count 0 + +2025-09-24 18:21:44,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:21:45,056 INFO toNotifyTaskSize = 0 + +2025-09-24 18:21:45,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:21:54,858 INFO [long-pulling] client count 0 + +2025-09-24 18:21:54,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:21:55,057 INFO toNotifyTaskSize = 0 + +2025-09-24 18:21:55,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:22:04,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:22:04,860 INFO [long-pulling] client count 0 + +2025-09-24 18:22:05,057 INFO toNotifyTaskSize = 0 + +2025-09-24 18:22:05,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:22:14,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:22:14,860 INFO [long-pulling] client count 0 + +2025-09-24 18:22:15,057 INFO toNotifyTaskSize = 0 + +2025-09-24 18:22:15,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:22:24,862 INFO [long-pulling] client count 0 + +2025-09-24 18:22:24,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:22:25,057 INFO toNotifyTaskSize = 0 + +2025-09-24 18:22:25,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:22:34,862 INFO [long-pulling] client count 0 + +2025-09-24 18:22:34,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:22:35,058 INFO toNotifyTaskSize = 0 + +2025-09-24 18:22:35,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:22:44,863 INFO [long-pulling] client count 0 + +2025-09-24 18:22:44,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:22:45,059 INFO toNotifyTaskSize = 0 + +2025-09-24 18:22:45,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:22:54,863 INFO [long-pulling] client count 0 + +2025-09-24 18:22:54,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:22:55,060 INFO toNotifyTaskSize = 0 + +2025-09-24 18:22:55,060 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:23:04,864 INFO [long-pulling] client count 0 + +2025-09-24 18:23:04,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:23:05,061 INFO toNotifyTaskSize = 0 + +2025-09-24 18:23:05,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:23:14,865 INFO [long-pulling] client count 0 + +2025-09-24 18:23:14,865 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:23:15,061 INFO toNotifyTaskSize = 0 + +2025-09-24 18:23:15,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:23:24,867 INFO [long-pulling] client count 0 + +2025-09-24 18:23:24,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:23:25,062 INFO toNotifyTaskSize = 0 + +2025-09-24 18:23:25,062 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:23:34,869 INFO [long-pulling] client count 0 + +2025-09-24 18:23:34,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:23:35,062 INFO toNotifyTaskSize = 0 + +2025-09-24 18:23:35,062 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:23:44,871 INFO [long-pulling] client count 0 + +2025-09-24 18:23:44,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:23:45,064 INFO toNotifyTaskSize = 0 + +2025-09-24 18:23:45,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:23:54,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:23:54,871 INFO [long-pulling] client count 0 + +2025-09-24 18:23:55,064 INFO toNotifyTaskSize = 0 + +2025-09-24 18:23:55,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:24:04,873 INFO [long-pulling] client count 0 + +2025-09-24 18:24:04,873 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:24:05,065 INFO toNotifyTaskSize = 0 + +2025-09-24 18:24:05,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:24:14,875 INFO [long-pulling] client count 0 + +2025-09-24 18:24:14,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:24:15,065 INFO toNotifyTaskSize = 0 + +2025-09-24 18:24:15,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:24:24,877 INFO [long-pulling] client count 0 + +2025-09-24 18:24:24,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:24:25,066 INFO toNotifyTaskSize = 0 + +2025-09-24 18:24:25,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:24:34,879 INFO [long-pulling] client count 0 + +2025-09-24 18:24:34,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:24:35,066 INFO toNotifyTaskSize = 0 + +2025-09-24 18:24:35,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:24:44,881 INFO [long-pulling] client count 0 + +2025-09-24 18:24:44,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:24:45,067 INFO toNotifyTaskSize = 0 + +2025-09-24 18:24:45,067 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:24:54,882 INFO [long-pulling] client count 0 + +2025-09-24 18:24:54,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:24:55,067 INFO toNotifyTaskSize = 0 + +2025-09-24 18:24:55,067 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:25:04,882 INFO [long-pulling] client count 0 + +2025-09-24 18:25:04,883 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:25:05,068 INFO toNotifyTaskSize = 0 + +2025-09-24 18:25:05,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:25:14,882 INFO [long-pulling] client count 0 + +2025-09-24 18:25:14,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:25:15,068 INFO toNotifyTaskSize = 0 + +2025-09-24 18:25:15,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:25:24,885 INFO [long-pulling] client count 0 + +2025-09-24 18:25:24,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:25:25,068 INFO toNotifyTaskSize = 0 + +2025-09-24 18:25:25,069 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:25:34,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:25:34,886 INFO [long-pulling] client count 0 + +2025-09-24 18:25:35,069 INFO toNotifyTaskSize = 0 + +2025-09-24 18:25:35,069 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:25:44,888 INFO [long-pulling] client count 0 + +2025-09-24 18:25:44,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:25:45,069 INFO toNotifyTaskSize = 0 + +2025-09-24 18:25:45,085 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:25:54,889 INFO [long-pulling] client count 0 + +2025-09-24 18:25:54,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:25:55,086 INFO toNotifyTaskSize = 0 + +2025-09-24 18:25:55,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:26:04,890 INFO [long-pulling] client count 0 + +2025-09-24 18:26:04,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:26:05,087 INFO toNotifyTaskSize = 0 + +2025-09-24 18:26:05,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:26:14,891 INFO [long-pulling] client count 0 + +2025-09-24 18:26:14,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:26:15,089 INFO toNotifyTaskSize = 0 + +2025-09-24 18:26:15,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:26:24,891 INFO [long-pulling] client count 0 + +2025-09-24 18:26:24,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:26:25,089 INFO toNotifyTaskSize = 0 + +2025-09-24 18:26:25,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:26:34,892 INFO [long-pulling] client count 0 + +2025-09-24 18:26:34,892 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:26:35,089 INFO toNotifyTaskSize = 0 + +2025-09-24 18:26:35,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:26:44,893 INFO [long-pulling] client count 0 + +2025-09-24 18:26:44,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:26:45,090 INFO toNotifyTaskSize = 0 + +2025-09-24 18:26:45,091 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:26:54,894 INFO [long-pulling] client count 0 + +2025-09-24 18:26:54,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:26:55,093 INFO toNotifyTaskSize = 0 + +2025-09-24 18:26:55,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:27:04,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:27:04,895 INFO [long-pulling] client count 0 + +2025-09-24 18:27:05,094 INFO toNotifyTaskSize = 0 + +2025-09-24 18:27:05,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:27:14,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:27:14,896 INFO [long-pulling] client count 0 + +2025-09-24 18:27:15,094 INFO toNotifyTaskSize = 0 + +2025-09-24 18:27:15,095 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:27:24,896 INFO [long-pulling] client count 0 + +2025-09-24 18:27:24,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:27:25,095 INFO toNotifyTaskSize = 0 + +2025-09-24 18:27:25,095 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:27:34,902 INFO [long-pulling] client count 0 + +2025-09-24 18:27:34,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:27:35,096 INFO toNotifyTaskSize = 0 + +2025-09-24 18:27:35,096 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:27:44,904 INFO [long-pulling] client count 0 + +2025-09-24 18:27:44,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:27:45,097 INFO toNotifyTaskSize = 0 + +2025-09-24 18:27:45,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:27:54,906 INFO [long-pulling] client count 0 + +2025-09-24 18:27:54,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:27:55,099 INFO toNotifyTaskSize = 0 + +2025-09-24 18:27:55,099 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:28:04,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:28:04,907 INFO [long-pulling] client count 0 + +2025-09-24 18:28:05,101 INFO toNotifyTaskSize = 0 + +2025-09-24 18:28:05,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:28:14,908 INFO [long-pulling] client count 0 + +2025-09-24 18:28:14,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:28:15,102 INFO toNotifyTaskSize = 0 + +2025-09-24 18:28:15,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:28:24,908 INFO [long-pulling] client count 0 + +2025-09-24 18:28:24,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:28:25,104 INFO toNotifyTaskSize = 0 + +2025-09-24 18:28:25,104 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:28:34,910 INFO [long-pulling] client count 0 + +2025-09-24 18:28:34,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:28:35,106 INFO toNotifyTaskSize = 0 + +2025-09-24 18:28:35,106 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:28:44,912 INFO [long-pulling] client count 0 + +2025-09-24 18:28:44,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:28:45,108 INFO toNotifyTaskSize = 0 + +2025-09-24 18:28:45,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:28:54,913 INFO [long-pulling] client count 0 + +2025-09-24 18:28:54,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:28:55,108 INFO toNotifyTaskSize = 0 + +2025-09-24 18:28:55,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:29:04,913 INFO [long-pulling] client count 0 + +2025-09-24 18:29:04,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:29:05,111 INFO toNotifyTaskSize = 0 + +2025-09-24 18:29:05,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:29:14,915 INFO [long-pulling] client count 0 + +2025-09-24 18:29:14,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:29:15,111 INFO toNotifyTaskSize = 0 + +2025-09-24 18:29:15,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:29:24,915 INFO [long-pulling] client count 0 + +2025-09-24 18:29:24,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:29:25,112 INFO toNotifyTaskSize = 0 + +2025-09-24 18:29:25,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:29:34,917 INFO [long-pulling] client count 0 + +2025-09-24 18:29:34,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:29:35,112 INFO toNotifyTaskSize = 0 + +2025-09-24 18:29:35,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:29:44,919 INFO [long-pulling] client count 0 + +2025-09-24 18:29:44,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:29:45,114 INFO toNotifyTaskSize = 0 + +2025-09-24 18:29:45,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:29:54,920 INFO [long-pulling] client count 0 + +2025-09-24 18:29:54,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:29:55,115 INFO toNotifyTaskSize = 0 + +2025-09-24 18:29:55,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:30:04,920 INFO [long-pulling] client count 0 + +2025-09-24 18:30:04,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:30:05,117 INFO toNotifyTaskSize = 0 + +2025-09-24 18:30:05,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:30:14,923 INFO [long-pulling] client count 0 + +2025-09-24 18:30:14,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:30:15,119 INFO toNotifyTaskSize = 0 + +2025-09-24 18:30:15,120 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:30:24,924 INFO [long-pulling] client count 0 + +2025-09-24 18:30:24,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:30:25,121 INFO toNotifyTaskSize = 0 + +2025-09-24 18:30:25,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:30:34,926 INFO [long-pulling] client count 0 + +2025-09-24 18:30:34,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:30:35,123 INFO toNotifyTaskSize = 0 + +2025-09-24 18:30:35,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:30:44,928 INFO [long-pulling] client count 0 + +2025-09-24 18:30:44,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:30:45,123 INFO toNotifyTaskSize = 0 + +2025-09-24 18:30:45,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:30:54,928 INFO [long-pulling] client count 0 + +2025-09-24 18:30:54,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:30:55,124 INFO toNotifyTaskSize = 0 + +2025-09-24 18:30:55,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:31:04,930 INFO [long-pulling] client count 0 + +2025-09-24 18:31:04,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:31:05,125 INFO toNotifyTaskSize = 0 + +2025-09-24 18:31:05,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:31:14,932 INFO [long-pulling] client count 0 + +2025-09-24 18:31:14,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:31:15,125 INFO toNotifyTaskSize = 0 + +2025-09-24 18:31:15,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:31:24,934 INFO [long-pulling] client count 0 + +2025-09-24 18:31:24,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:31:25,127 INFO toNotifyTaskSize = 0 + +2025-09-24 18:31:25,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:31:34,935 INFO [long-pulling] client count 0 + +2025-09-24 18:31:34,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:31:35,128 INFO toNotifyTaskSize = 0 + +2025-09-24 18:31:35,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:31:44,937 INFO [long-pulling] client count 0 + +2025-09-24 18:31:44,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:31:45,130 INFO toNotifyTaskSize = 0 + +2025-09-24 18:31:45,130 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:31:54,938 INFO [long-pulling] client count 0 + +2025-09-24 18:31:54,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:31:55,130 INFO toNotifyTaskSize = 0 + +2025-09-24 18:31:55,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:32:04,939 INFO [long-pulling] client count 0 + +2025-09-24 18:32:04,939 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:32:05,131 INFO toNotifyTaskSize = 0 + +2025-09-24 18:32:05,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:32:14,939 INFO [long-pulling] client count 0 + +2025-09-24 18:32:14,939 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:32:15,132 INFO toNotifyTaskSize = 0 + +2025-09-24 18:32:15,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:32:24,940 INFO [long-pulling] client count 0 + +2025-09-24 18:32:24,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:32:25,133 INFO toNotifyTaskSize = 0 + +2025-09-24 18:32:25,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:32:34,941 INFO [long-pulling] client count 0 + +2025-09-24 18:32:34,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:32:35,133 INFO toNotifyTaskSize = 0 + +2025-09-24 18:32:35,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:32:44,943 INFO [long-pulling] client count 0 + +2025-09-24 18:32:44,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:32:45,134 INFO toNotifyTaskSize = 0 + +2025-09-24 18:32:45,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:32:54,944 INFO [long-pulling] client count 0 + +2025-09-24 18:32:54,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:32:55,136 INFO toNotifyTaskSize = 0 + +2025-09-24 18:32:55,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:33:04,946 INFO [long-pulling] client count 0 + +2025-09-24 18:33:04,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:33:05,137 INFO toNotifyTaskSize = 0 + +2025-09-24 18:33:05,137 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:33:14,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:33:14,948 INFO [long-pulling] client count 0 + +2025-09-24 18:33:15,138 INFO toNotifyTaskSize = 0 + +2025-09-24 18:33:15,138 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:33:24,948 INFO [long-pulling] client count 0 + +2025-09-24 18:33:24,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:33:25,140 INFO toNotifyTaskSize = 0 + +2025-09-24 18:33:25,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:33:34,949 INFO [long-pulling] client count 0 + +2025-09-24 18:33:34,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:33:35,142 INFO toNotifyTaskSize = 0 + +2025-09-24 18:33:35,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:33:44,949 INFO [long-pulling] client count 0 + +2025-09-24 18:33:44,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:33:45,142 INFO toNotifyTaskSize = 0 + +2025-09-24 18:33:45,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:33:54,951 INFO [long-pulling] client count 0 + +2025-09-24 18:33:54,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:33:55,143 INFO toNotifyTaskSize = 0 + +2025-09-24 18:33:55,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:34:04,951 INFO [long-pulling] client count 0 + +2025-09-24 18:34:04,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:34:05,145 INFO toNotifyTaskSize = 0 + +2025-09-24 18:34:05,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:34:14,953 INFO [long-pulling] client count 0 + +2025-09-24 18:34:14,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:34:15,146 INFO toNotifyTaskSize = 0 + +2025-09-24 18:34:15,147 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:34:24,953 INFO [long-pulling] client count 0 + +2025-09-24 18:34:24,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:34:25,147 INFO toNotifyTaskSize = 0 + +2025-09-24 18:34:25,147 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:34:34,954 INFO [long-pulling] client count 0 + +2025-09-24 18:34:34,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:34:35,149 INFO toNotifyTaskSize = 0 + +2025-09-24 18:34:35,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:34:44,955 INFO [long-pulling] client count 0 + +2025-09-24 18:34:44,955 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:34:45,151 INFO toNotifyTaskSize = 0 + +2025-09-24 18:34:45,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:34:54,957 INFO [long-pulling] client count 0 + +2025-09-24 18:34:54,957 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:34:55,152 INFO toNotifyTaskSize = 0 + +2025-09-24 18:34:55,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:35:04,958 INFO [long-pulling] client count 0 + +2025-09-24 18:35:04,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:35:05,153 INFO toNotifyTaskSize = 0 + +2025-09-24 18:35:05,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:35:14,959 INFO [long-pulling] client count 0 + +2025-09-24 18:35:14,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:35:15,154 INFO toNotifyTaskSize = 0 + +2025-09-24 18:35:15,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:35:24,959 INFO [long-pulling] client count 0 + +2025-09-24 18:35:24,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:35:25,154 INFO toNotifyTaskSize = 0 + +2025-09-24 18:35:25,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:35:34,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:35:34,961 INFO [long-pulling] client count 0 + +2025-09-24 18:35:35,155 INFO toNotifyTaskSize = 0 + +2025-09-24 18:35:35,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:35:44,963 INFO [long-pulling] client count 0 + +2025-09-24 18:35:44,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:35:45,156 INFO toNotifyTaskSize = 0 + +2025-09-24 18:35:45,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:35:54,964 INFO [long-pulling] client count 0 + +2025-09-24 18:35:54,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:35:55,158 INFO toNotifyTaskSize = 0 + +2025-09-24 18:35:55,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:36:04,965 INFO [long-pulling] client count 0 + +2025-09-24 18:36:04,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:36:05,159 INFO toNotifyTaskSize = 0 + +2025-09-24 18:36:05,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:36:14,965 INFO [long-pulling] client count 0 + +2025-09-24 18:36:14,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:36:15,159 INFO toNotifyTaskSize = 0 + +2025-09-24 18:36:15,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:36:24,966 INFO [long-pulling] client count 0 + +2025-09-24 18:36:24,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:36:25,160 INFO toNotifyTaskSize = 0 + +2025-09-24 18:36:25,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:36:34,968 INFO [long-pulling] client count 0 + +2025-09-24 18:36:34,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:36:35,160 INFO toNotifyTaskSize = 0 + +2025-09-24 18:36:35,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:36:44,970 INFO [long-pulling] client count 0 + +2025-09-24 18:36:44,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:36:45,161 INFO toNotifyTaskSize = 0 + +2025-09-24 18:36:45,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:36:54,970 INFO [long-pulling] client count 0 + +2025-09-24 18:36:54,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:36:55,163 INFO toNotifyTaskSize = 0 + +2025-09-24 18:36:55,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:37:04,970 INFO [long-pulling] client count 0 + +2025-09-24 18:37:04,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:37:05,164 INFO toNotifyTaskSize = 0 + +2025-09-24 18:37:05,164 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:37:14,972 INFO [long-pulling] client count 0 + +2025-09-24 18:37:14,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:37:15,165 INFO toNotifyTaskSize = 0 + +2025-09-24 18:37:15,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:37:24,974 INFO [long-pulling] client count 0 + +2025-09-24 18:37:24,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:37:25,165 INFO toNotifyTaskSize = 0 + +2025-09-24 18:37:25,165 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:37:34,974 INFO [long-pulling] client count 0 + +2025-09-24 18:37:34,975 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:37:35,167 INFO toNotifyTaskSize = 0 + +2025-09-24 18:37:35,167 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:37:44,975 INFO [long-pulling] client count 0 + +2025-09-24 18:37:44,975 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:37:45,168 INFO toNotifyTaskSize = 0 + +2025-09-24 18:37:45,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:37:54,977 INFO [long-pulling] client count 0 + +2025-09-24 18:37:54,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:37:55,169 INFO toNotifyTaskSize = 0 + +2025-09-24 18:37:55,169 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:38:04,977 INFO [long-pulling] client count 0 + +2025-09-24 18:38:04,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:38:05,170 INFO toNotifyTaskSize = 0 + +2025-09-24 18:38:05,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:38:14,978 INFO [long-pulling] client count 0 + +2025-09-24 18:38:14,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:38:15,170 INFO toNotifyTaskSize = 0 + +2025-09-24 18:38:15,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:38:24,980 INFO [long-pulling] client count 0 + +2025-09-24 18:38:24,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:38:25,172 INFO toNotifyTaskSize = 0 + +2025-09-24 18:38:25,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:38:34,981 INFO [long-pulling] client count 0 + +2025-09-24 18:38:34,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:38:35,174 INFO toNotifyTaskSize = 0 + +2025-09-24 18:38:35,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:38:44,981 INFO [long-pulling] client count 0 + +2025-09-24 18:38:44,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:38:45,175 INFO toNotifyTaskSize = 0 + +2025-09-24 18:38:45,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:38:54,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:38:54,983 INFO [long-pulling] client count 0 + +2025-09-24 18:38:55,176 INFO toNotifyTaskSize = 0 + +2025-09-24 18:38:55,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:39:04,984 INFO [long-pulling] client count 0 + +2025-09-24 18:39:04,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:39:05,178 INFO toNotifyTaskSize = 0 + +2025-09-24 18:39:05,178 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:39:14,985 INFO [long-pulling] client count 0 + +2025-09-24 18:39:14,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:39:15,179 INFO toNotifyTaskSize = 0 + +2025-09-24 18:39:15,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:39:24,986 INFO [long-pulling] client count 0 + +2025-09-24 18:39:24,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:39:25,179 INFO toNotifyTaskSize = 0 + +2025-09-24 18:39:25,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:39:34,989 INFO [long-pulling] client count 0 + +2025-09-24 18:39:34,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:39:35,180 INFO toNotifyTaskSize = 0 + +2025-09-24 18:39:35,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:39:44,991 INFO [long-pulling] client count 0 + +2025-09-24 18:39:44,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:39:45,181 INFO toNotifyTaskSize = 0 + +2025-09-24 18:39:45,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:39:54,991 INFO [long-pulling] client count 0 + +2025-09-24 18:39:54,991 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:39:55,181 INFO toNotifyTaskSize = 0 + +2025-09-24 18:39:55,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:40:04,992 INFO [long-pulling] client count 0 + +2025-09-24 18:40:04,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:40:05,182 INFO toNotifyTaskSize = 0 + +2025-09-24 18:40:05,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:40:14,993 INFO [long-pulling] client count 0 + +2025-09-24 18:40:14,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:40:15,182 INFO toNotifyTaskSize = 0 + +2025-09-24 18:40:15,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:40:24,995 INFO [long-pulling] client count 0 + +2025-09-24 18:40:24,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:40:25,182 INFO toNotifyTaskSize = 0 + +2025-09-24 18:40:25,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:40:34,998 INFO [long-pulling] client count 0 + +2025-09-24 18:40:34,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:40:35,183 INFO toNotifyTaskSize = 0 + +2025-09-24 18:40:35,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:40:45,000 INFO [long-pulling] client count 0 + +2025-09-24 18:40:45,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:40:45,183 INFO toNotifyTaskSize = 0 + +2025-09-24 18:40:45,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:40:55,000 INFO [long-pulling] client count 0 + +2025-09-24 18:40:55,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:40:55,184 INFO toNotifyTaskSize = 0 + +2025-09-24 18:40:55,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:41:05,001 INFO [long-pulling] client count 0 + +2025-09-24 18:41:05,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:41:05,185 INFO toNotifyTaskSize = 0 + +2025-09-24 18:41:05,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:41:15,002 INFO [long-pulling] client count 0 + +2025-09-24 18:41:15,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:41:15,188 INFO toNotifyTaskSize = 0 + +2025-09-24 18:41:15,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:41:25,003 INFO [long-pulling] client count 0 + +2025-09-24 18:41:25,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:41:25,188 INFO toNotifyTaskSize = 0 + +2025-09-24 18:41:25,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:41:35,004 INFO [long-pulling] client count 0 + +2025-09-24 18:41:35,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:41:35,189 INFO toNotifyTaskSize = 0 + +2025-09-24 18:41:35,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:41:45,005 INFO [long-pulling] client count 0 + +2025-09-24 18:41:45,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:41:45,189 INFO toNotifyTaskSize = 0 + +2025-09-24 18:41:45,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:41:55,006 INFO [long-pulling] client count 0 + +2025-09-24 18:41:55,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:41:55,191 INFO toNotifyTaskSize = 0 + +2025-09-24 18:41:55,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:42:05,007 INFO [long-pulling] client count 0 + +2025-09-24 18:42:05,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:42:05,191 INFO toNotifyTaskSize = 0 + +2025-09-24 18:42:05,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:42:15,008 INFO [long-pulling] client count 0 + +2025-09-24 18:42:15,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:42:15,192 INFO toNotifyTaskSize = 0 + +2025-09-24 18:42:15,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:42:25,009 INFO [long-pulling] client count 0 + +2025-09-24 18:42:25,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:42:25,192 INFO toNotifyTaskSize = 0 + +2025-09-24 18:42:25,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:42:35,012 INFO [long-pulling] client count 0 + +2025-09-24 18:42:35,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:42:35,192 INFO toNotifyTaskSize = 0 + +2025-09-24 18:42:35,193 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:42:45,012 INFO [long-pulling] client count 0 + +2025-09-24 18:42:45,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:42:45,194 INFO toNotifyTaskSize = 0 + +2025-09-24 18:42:45,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:42:55,012 INFO [long-pulling] client count 0 + +2025-09-24 18:42:55,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:42:55,194 INFO toNotifyTaskSize = 0 + +2025-09-24 18:42:55,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:43:05,014 INFO [long-pulling] client count 0 + +2025-09-24 18:43:05,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:43:05,195 INFO toNotifyTaskSize = 0 + +2025-09-24 18:43:05,195 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:43:15,014 INFO [long-pulling] client count 0 + +2025-09-24 18:43:15,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:43:15,197 INFO toNotifyTaskSize = 0 + +2025-09-24 18:43:15,197 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:43:25,016 INFO [long-pulling] client count 0 + +2025-09-24 18:43:25,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:43:25,198 INFO toNotifyTaskSize = 0 + +2025-09-24 18:43:25,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:43:35,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:43:35,018 INFO [long-pulling] client count 0 + +2025-09-24 18:43:35,198 INFO toNotifyTaskSize = 0 + +2025-09-24 18:43:35,198 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:43:45,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:43:45,018 INFO [long-pulling] client count 0 + +2025-09-24 18:43:45,199 INFO toNotifyTaskSize = 0 + +2025-09-24 18:43:45,199 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:43:55,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:43:55,020 INFO [long-pulling] client count 0 + +2025-09-24 18:43:55,201 INFO toNotifyTaskSize = 0 + +2025-09-24 18:43:55,201 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:44:05,021 INFO [long-pulling] client count 0 + +2025-09-24 18:44:05,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:44:05,202 INFO toNotifyTaskSize = 0 + +2025-09-24 18:44:05,202 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:44:15,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:44:15,021 INFO [long-pulling] client count 0 + +2025-09-24 18:44:15,202 INFO toNotifyTaskSize = 0 + +2025-09-24 18:44:15,203 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:44:25,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:44:25,022 INFO [long-pulling] client count 0 + +2025-09-24 18:44:25,205 INFO toNotifyTaskSize = 0 + +2025-09-24 18:44:25,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:44:35,037 INFO [long-pulling] client count 0 + +2025-09-24 18:44:35,037 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:44:35,207 INFO toNotifyTaskSize = 0 + +2025-09-24 18:44:35,207 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:44:45,038 INFO [long-pulling] client count 0 + +2025-09-24 18:44:45,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:44:45,208 INFO toNotifyTaskSize = 0 + +2025-09-24 18:44:45,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:44:55,038 INFO [long-pulling] client count 0 + +2025-09-24 18:44:55,039 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:44:55,209 INFO toNotifyTaskSize = 0 + +2025-09-24 18:44:55,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:45:05,039 INFO [long-pulling] client count 0 + +2025-09-24 18:45:05,039 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:45:05,209 INFO toNotifyTaskSize = 0 + +2025-09-24 18:45:05,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:45:15,039 INFO [long-pulling] client count 0 + +2025-09-24 18:45:15,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:45:15,210 INFO toNotifyTaskSize = 0 + +2025-09-24 18:45:15,210 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:45:25,040 INFO [long-pulling] client count 0 + +2025-09-24 18:45:25,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:45:25,211 INFO toNotifyTaskSize = 0 + +2025-09-24 18:45:25,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:45:35,040 INFO [long-pulling] client count 0 + +2025-09-24 18:45:35,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:45:35,223 INFO toNotifyTaskSize = 0 + +2025-09-24 18:45:35,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:45:45,041 INFO [long-pulling] client count 0 + +2025-09-24 18:45:45,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:45:45,223 INFO toNotifyTaskSize = 0 + +2025-09-24 18:45:45,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:45:55,041 INFO [long-pulling] client count 0 + +2025-09-24 18:45:55,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:45:55,224 INFO toNotifyTaskSize = 0 + +2025-09-24 18:45:55,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:46:05,041 INFO [long-pulling] client count 0 + +2025-09-24 18:46:05,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:46:05,225 INFO toNotifyTaskSize = 0 + +2025-09-24 18:46:05,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:46:15,043 INFO [long-pulling] client count 0 + +2025-09-24 18:46:15,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:46:15,225 INFO toNotifyTaskSize = 0 + +2025-09-24 18:46:15,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:46:25,043 INFO [long-pulling] client count 0 + +2025-09-24 18:46:25,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:46:25,226 INFO toNotifyTaskSize = 0 + +2025-09-24 18:46:25,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:46:35,044 INFO [long-pulling] client count 0 + +2025-09-24 18:46:35,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:46:35,228 INFO toNotifyTaskSize = 0 + +2025-09-24 18:46:35,228 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:46:45,044 INFO [long-pulling] client count 0 + +2025-09-24 18:46:45,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:46:45,228 INFO toNotifyTaskSize = 0 + +2025-09-24 18:46:45,229 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:46:55,044 INFO [long-pulling] client count 0 + +2025-09-24 18:46:55,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:46:55,229 INFO toNotifyTaskSize = 0 + +2025-09-24 18:46:55,229 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:47:05,045 INFO [long-pulling] client count 0 + +2025-09-24 18:47:05,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:47:05,230 INFO toNotifyTaskSize = 0 + +2025-09-24 18:47:05,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:47:15,046 INFO [long-pulling] client count 0 + +2025-09-24 18:47:15,046 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:47:15,230 INFO toNotifyTaskSize = 0 + +2025-09-24 18:47:15,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:47:25,047 INFO [long-pulling] client count 0 + +2025-09-24 18:47:25,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:47:25,232 INFO toNotifyTaskSize = 0 + +2025-09-24 18:47:25,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:47:35,048 INFO [long-pulling] client count 0 + +2025-09-24 18:47:35,048 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:47:35,234 INFO toNotifyTaskSize = 0 + +2025-09-24 18:47:35,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:47:45,048 INFO [long-pulling] client count 0 + +2025-09-24 18:47:45,048 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:47:45,235 INFO toNotifyTaskSize = 0 + +2025-09-24 18:47:45,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:47:55,048 INFO [long-pulling] client count 0 + +2025-09-24 18:47:55,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:47:55,236 INFO toNotifyTaskSize = 0 + +2025-09-24 18:47:55,236 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:48:05,049 INFO [long-pulling] client count 0 + +2025-09-24 18:48:05,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:48:05,236 INFO toNotifyTaskSize = 0 + +2025-09-24 18:48:05,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:48:15,049 INFO [long-pulling] client count 0 + +2025-09-24 18:48:15,050 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:48:15,238 INFO toNotifyTaskSize = 0 + +2025-09-24 18:48:15,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:48:25,050 INFO [long-pulling] client count 0 + +2025-09-24 18:48:25,050 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:48:25,239 INFO toNotifyTaskSize = 0 + +2025-09-24 18:48:25,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:48:35,051 INFO [long-pulling] client count 0 + +2025-09-24 18:48:35,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:48:35,241 INFO toNotifyTaskSize = 0 + +2025-09-24 18:48:35,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:48:45,052 INFO [long-pulling] client count 0 + +2025-09-24 18:48:45,053 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:48:45,242 INFO toNotifyTaskSize = 0 + +2025-09-24 18:48:45,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:48:55,053 INFO [long-pulling] client count 0 + +2025-09-24 18:48:55,054 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:48:55,243 INFO toNotifyTaskSize = 0 + +2025-09-24 18:48:55,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:49:05,054 INFO [long-pulling] client count 0 + +2025-09-24 18:49:05,054 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:49:05,243 INFO toNotifyTaskSize = 0 + +2025-09-24 18:49:05,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:49:15,054 INFO [long-pulling] client count 0 + +2025-09-24 18:49:15,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:49:15,244 INFO toNotifyTaskSize = 0 + +2025-09-24 18:49:15,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:49:25,055 INFO [long-pulling] client count 0 + +2025-09-24 18:49:25,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:49:25,245 INFO toNotifyTaskSize = 0 + +2025-09-24 18:49:25,245 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:49:35,056 INFO [long-pulling] client count 0 + +2025-09-24 18:49:35,056 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:49:35,246 INFO toNotifyTaskSize = 0 + +2025-09-24 18:49:35,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:49:45,057 INFO [long-pulling] client count 0 + +2025-09-24 18:49:45,057 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:49:45,247 INFO toNotifyTaskSize = 0 + +2025-09-24 18:49:45,247 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:49:55,058 INFO [long-pulling] client count 0 + +2025-09-24 18:49:55,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:49:55,249 INFO toNotifyTaskSize = 0 + +2025-09-24 18:49:55,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:50:05,058 INFO [long-pulling] client count 0 + +2025-09-24 18:50:05,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:50:05,251 INFO toNotifyTaskSize = 0 + +2025-09-24 18:50:05,251 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:50:15,059 INFO [long-pulling] client count 0 + +2025-09-24 18:50:15,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:50:15,252 INFO toNotifyTaskSize = 0 + +2025-09-24 18:50:15,252 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:50:25,059 INFO [long-pulling] client count 0 + +2025-09-24 18:50:25,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:50:25,253 INFO toNotifyTaskSize = 0 + +2025-09-24 18:50:25,253 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:50:35,062 INFO [long-pulling] client count 0 + +2025-09-24 18:50:35,062 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:50:35,255 INFO toNotifyTaskSize = 0 + +2025-09-24 18:50:35,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:50:45,063 INFO [long-pulling] client count 0 + +2025-09-24 18:50:45,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:50:45,256 INFO toNotifyTaskSize = 0 + +2025-09-24 18:50:45,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:50:55,064 INFO [long-pulling] client count 0 + +2025-09-24 18:50:55,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:50:55,256 INFO toNotifyTaskSize = 0 + +2025-09-24 18:50:55,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:51:05,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:51:05,064 INFO [long-pulling] client count 0 + +2025-09-24 18:51:05,258 INFO toNotifyTaskSize = 0 + +2025-09-24 18:51:05,258 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:51:15,065 INFO [long-pulling] client count 0 + +2025-09-24 18:51:15,065 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:51:15,259 INFO toNotifyTaskSize = 0 + +2025-09-24 18:51:15,259 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:51:25,067 INFO [long-pulling] client count 0 + +2025-09-24 18:51:25,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:51:25,259 INFO toNotifyTaskSize = 0 + +2025-09-24 18:51:25,259 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:51:35,069 INFO [long-pulling] client count 0 + +2025-09-24 18:51:35,069 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:51:35,259 INFO toNotifyTaskSize = 0 + +2025-09-24 18:51:35,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:51:45,070 INFO [long-pulling] client count 0 + +2025-09-24 18:51:45,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:51:45,260 INFO toNotifyTaskSize = 0 + +2025-09-24 18:51:45,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:51:55,071 INFO [long-pulling] client count 0 + +2025-09-24 18:51:55,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:51:55,262 INFO toNotifyTaskSize = 0 + +2025-09-24 18:51:55,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:52:05,072 INFO [long-pulling] client count 0 + +2025-09-24 18:52:05,072 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:52:05,263 INFO toNotifyTaskSize = 0 + +2025-09-24 18:52:05,263 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:52:15,073 INFO [long-pulling] client count 0 + +2025-09-24 18:52:15,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:52:15,263 INFO toNotifyTaskSize = 0 + +2025-09-24 18:52:15,264 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:52:25,074 INFO [long-pulling] client count 0 + +2025-09-24 18:52:25,074 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:52:25,265 INFO toNotifyTaskSize = 0 + +2025-09-24 18:52:25,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:52:35,074 INFO [long-pulling] client count 0 + +2025-09-24 18:52:35,074 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:52:35,266 INFO toNotifyTaskSize = 0 + +2025-09-24 18:52:35,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:52:45,075 INFO [long-pulling] client count 0 + +2025-09-24 18:52:45,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:52:45,267 INFO toNotifyTaskSize = 0 + +2025-09-24 18:52:45,267 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:52:55,076 INFO [long-pulling] client count 0 + +2025-09-24 18:52:55,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:52:55,268 INFO toNotifyTaskSize = 0 + +2025-09-24 18:52:55,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:53:05,078 INFO [long-pulling] client count 0 + +2025-09-24 18:53:05,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:53:05,268 INFO toNotifyTaskSize = 0 + +2025-09-24 18:53:05,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:53:15,079 INFO [long-pulling] client count 0 + +2025-09-24 18:53:15,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:53:15,269 INFO toNotifyTaskSize = 0 + +2025-09-24 18:53:15,269 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:53:25,081 INFO [long-pulling] client count 0 + +2025-09-24 18:53:25,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:53:25,269 INFO toNotifyTaskSize = 0 + +2025-09-24 18:53:25,269 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:53:35,083 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:53:35,083 INFO [long-pulling] client count 0 + +2025-09-24 18:53:35,271 INFO toNotifyTaskSize = 0 + +2025-09-24 18:53:35,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:53:45,084 INFO [long-pulling] client count 0 + +2025-09-24 18:53:45,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:53:45,273 INFO toNotifyTaskSize = 0 + +2025-09-24 18:53:45,273 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:53:55,084 INFO [long-pulling] client count 0 + +2025-09-24 18:53:55,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:53:55,274 INFO toNotifyTaskSize = 0 + +2025-09-24 18:53:55,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:54:05,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:54:05,085 INFO [long-pulling] client count 0 + +2025-09-24 18:54:05,274 INFO toNotifyTaskSize = 0 + +2025-09-24 18:54:05,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:54:15,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:54:15,087 INFO [long-pulling] client count 0 + +2025-09-24 18:54:15,276 INFO toNotifyTaskSize = 0 + +2025-09-24 18:54:15,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:54:25,088 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:54:25,088 INFO [long-pulling] client count 0 + +2025-09-24 18:54:25,276 INFO toNotifyTaskSize = 0 + +2025-09-24 18:54:25,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:54:35,088 INFO [long-pulling] client count 0 + +2025-09-24 18:54:35,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:54:35,277 INFO toNotifyTaskSize = 0 + +2025-09-24 18:54:35,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:54:45,090 INFO [long-pulling] client count 0 + +2025-09-24 18:54:45,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:54:45,278 INFO toNotifyTaskSize = 0 + +2025-09-24 18:54:45,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:54:55,093 INFO [long-pulling] client count 0 + +2025-09-24 18:54:55,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:54:55,280 INFO toNotifyTaskSize = 0 + +2025-09-24 18:54:55,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:55:05,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:55:05,094 INFO [long-pulling] client count 0 + +2025-09-24 18:55:05,281 INFO toNotifyTaskSize = 0 + +2025-09-24 18:55:05,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:55:15,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:55:15,094 INFO [long-pulling] client count 0 + +2025-09-24 18:55:15,282 INFO toNotifyTaskSize = 0 + +2025-09-24 18:55:15,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:55:25,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:55:25,096 INFO [long-pulling] client count 0 + +2025-09-24 18:55:25,282 INFO toNotifyTaskSize = 0 + +2025-09-24 18:55:25,283 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:55:35,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:55:35,097 INFO [long-pulling] client count 0 + +2025-09-24 18:55:35,285 INFO toNotifyTaskSize = 0 + +2025-09-24 18:55:35,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:55:45,097 INFO [long-pulling] client count 0 + +2025-09-24 18:55:45,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:55:45,285 INFO toNotifyTaskSize = 0 + +2025-09-24 18:55:45,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:55:55,098 INFO [long-pulling] client count 0 + +2025-09-24 18:55:55,098 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:55:55,287 INFO toNotifyTaskSize = 0 + +2025-09-24 18:55:55,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:56:05,100 INFO [long-pulling] client count 0 + +2025-09-24 18:56:05,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:56:05,287 INFO toNotifyTaskSize = 0 + +2025-09-24 18:56:05,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:56:15,101 INFO [long-pulling] client count 0 + +2025-09-24 18:56:15,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:56:15,288 INFO toNotifyTaskSize = 0 + +2025-09-24 18:56:15,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:56:25,103 INFO [long-pulling] client count 0 + +2025-09-24 18:56:25,103 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:56:25,288 INFO toNotifyTaskSize = 0 + +2025-09-24 18:56:25,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:56:35,105 INFO [long-pulling] client count 0 + +2025-09-24 18:56:35,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:56:35,290 INFO toNotifyTaskSize = 0 + +2025-09-24 18:56:35,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:56:45,107 INFO [long-pulling] client count 0 + +2025-09-24 18:56:45,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:56:45,291 INFO toNotifyTaskSize = 0 + +2025-09-24 18:56:45,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:56:55,108 INFO [long-pulling] client count 0 + +2025-09-24 18:56:55,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:56:55,293 INFO toNotifyTaskSize = 0 + +2025-09-24 18:56:55,293 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:57:05,110 INFO [long-pulling] client count 0 + +2025-09-24 18:57:05,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:57:05,293 INFO toNotifyTaskSize = 0 + +2025-09-24 18:57:05,293 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:57:15,110 INFO [long-pulling] client count 0 + +2025-09-24 18:57:15,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:57:15,295 INFO toNotifyTaskSize = 0 + +2025-09-24 18:57:15,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:57:25,113 INFO [long-pulling] client count 0 + +2025-09-24 18:57:25,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:57:25,297 INFO toNotifyTaskSize = 0 + +2025-09-24 18:57:25,297 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:57:35,114 INFO [long-pulling] client count 0 + +2025-09-24 18:57:35,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:57:35,297 INFO toNotifyTaskSize = 0 + +2025-09-24 18:57:35,297 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:57:45,116 INFO [long-pulling] client count 0 + +2025-09-24 18:57:45,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:57:45,298 INFO toNotifyTaskSize = 0 + +2025-09-24 18:57:45,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:57:55,118 INFO [long-pulling] client count 0 + +2025-09-24 18:57:55,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:57:55,298 INFO toNotifyTaskSize = 0 + +2025-09-24 18:57:55,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:58:05,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:58:05,119 INFO [long-pulling] client count 0 + +2025-09-24 18:58:05,300 INFO toNotifyTaskSize = 0 + +2025-09-24 18:58:05,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:58:15,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:58:15,119 INFO [long-pulling] client count 0 + +2025-09-24 18:58:15,301 INFO toNotifyTaskSize = 0 + +2025-09-24 18:58:15,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:58:25,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:58:25,119 INFO [long-pulling] client count 0 + +2025-09-24 18:58:25,301 INFO toNotifyTaskSize = 0 + +2025-09-24 18:58:25,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:58:35,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:58:35,122 INFO [long-pulling] client count 0 + +2025-09-24 18:58:35,302 INFO toNotifyTaskSize = 0 + +2025-09-24 18:58:35,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:58:45,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:58:45,122 INFO [long-pulling] client count 0 + +2025-09-24 18:58:45,302 INFO toNotifyTaskSize = 0 + +2025-09-24 18:58:45,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:58:55,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:58:55,123 INFO [long-pulling] client count 0 + +2025-09-24 18:58:55,303 INFO toNotifyTaskSize = 0 + +2025-09-24 18:58:55,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:59:05,124 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:59:05,124 INFO [long-pulling] client count 0 + +2025-09-24 18:59:05,304 INFO toNotifyTaskSize = 0 + +2025-09-24 18:59:05,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:59:15,126 INFO [long-pulling] client count 0 + +2025-09-24 18:59:15,126 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:59:15,304 INFO toNotifyTaskSize = 0 + +2025-09-24 18:59:15,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:59:25,127 INFO [long-pulling] client count 0 + +2025-09-24 18:59:25,127 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:59:25,305 INFO toNotifyTaskSize = 0 + +2025-09-24 18:59:25,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:59:35,128 INFO [long-pulling] client count 0 + +2025-09-24 18:59:35,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:59:35,305 INFO toNotifyTaskSize = 0 + +2025-09-24 18:59:35,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:59:45,129 INFO [long-pulling] client count 0 + +2025-09-24 18:59:45,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:59:45,307 INFO toNotifyTaskSize = 0 + +2025-09-24 18:59:45,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 18:59:55,130 INFO [long-pulling] client count 0 + +2025-09-24 18:59:55,130 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 18:59:55,308 INFO toNotifyTaskSize = 0 + +2025-09-24 18:59:55,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:00:05,131 INFO [long-pulling] client count 0 + +2025-09-24 19:00:05,131 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:00:05,310 INFO toNotifyTaskSize = 0 + +2025-09-24 19:00:05,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:00:15,131 INFO [long-pulling] client count 0 + +2025-09-24 19:00:15,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:00:15,310 INFO toNotifyTaskSize = 0 + +2025-09-24 19:00:15,311 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:00:25,132 INFO [long-pulling] client count 0 + +2025-09-24 19:00:25,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:00:25,311 INFO toNotifyTaskSize = 0 + +2025-09-24 19:00:25,311 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:00:35,133 INFO [long-pulling] client count 0 + +2025-09-24 19:00:35,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:00:35,313 INFO toNotifyTaskSize = 0 + +2025-09-24 19:00:35,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:00:45,135 INFO [long-pulling] client count 0 + +2025-09-24 19:00:45,135 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:00:45,313 INFO toNotifyTaskSize = 0 + +2025-09-24 19:00:45,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:00:55,137 INFO [long-pulling] client count 0 + +2025-09-24 19:00:55,137 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:00:55,315 INFO toNotifyTaskSize = 0 + +2025-09-24 19:00:55,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:01:05,139 INFO [long-pulling] client count 0 + +2025-09-24 19:01:05,139 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:01:05,317 INFO toNotifyTaskSize = 0 + +2025-09-24 19:01:05,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:01:15,140 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:01:15,140 INFO [long-pulling] client count 0 + +2025-09-24 19:01:15,319 INFO toNotifyTaskSize = 0 + +2025-09-24 19:01:15,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:01:25,141 INFO [long-pulling] client count 0 + +2025-09-24 19:01:25,141 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:01:25,321 INFO toNotifyTaskSize = 0 + +2025-09-24 19:01:25,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:01:35,143 INFO [long-pulling] client count 0 + +2025-09-24 19:01:35,143 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:01:35,321 INFO toNotifyTaskSize = 0 + +2025-09-24 19:01:35,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:01:45,143 INFO [long-pulling] client count 0 + +2025-09-24 19:01:45,143 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:01:45,322 INFO toNotifyTaskSize = 0 + +2025-09-24 19:01:45,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:01:55,145 INFO [long-pulling] client count 0 + +2025-09-24 19:01:55,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:01:55,324 INFO toNotifyTaskSize = 0 + +2025-09-24 19:01:55,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:02:05,145 INFO [long-pulling] client count 0 + +2025-09-24 19:02:05,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:02:05,326 INFO toNotifyTaskSize = 0 + +2025-09-24 19:02:05,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:02:15,147 INFO [long-pulling] client count 0 + +2025-09-24 19:02:15,147 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:02:15,327 INFO toNotifyTaskSize = 0 + +2025-09-24 19:02:15,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:02:25,147 INFO [long-pulling] client count 0 + +2025-09-24 19:02:25,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:02:25,329 INFO toNotifyTaskSize = 0 + +2025-09-24 19:02:25,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:02:35,149 INFO [long-pulling] client count 0 + +2025-09-24 19:02:35,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:02:35,329 INFO toNotifyTaskSize = 0 + +2025-09-24 19:02:35,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:02:45,150 INFO [long-pulling] client count 0 + +2025-09-24 19:02:45,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:02:45,331 INFO toNotifyTaskSize = 0 + +2025-09-24 19:02:45,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:02:55,151 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:02:55,151 INFO [long-pulling] client count 0 + +2025-09-24 19:02:55,332 INFO toNotifyTaskSize = 0 + +2025-09-24 19:02:55,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:03:05,152 INFO [long-pulling] client count 0 + +2025-09-24 19:03:05,152 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:03:05,334 INFO toNotifyTaskSize = 0 + +2025-09-24 19:03:05,334 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:03:15,152 INFO [long-pulling] client count 0 + +2025-09-24 19:03:15,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:03:15,335 INFO toNotifyTaskSize = 0 + +2025-09-24 19:03:15,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:03:25,153 INFO [long-pulling] client count 0 + +2025-09-24 19:03:25,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:03:25,335 INFO toNotifyTaskSize = 0 + +2025-09-24 19:03:25,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:03:35,154 INFO [long-pulling] client count 0 + +2025-09-24 19:03:35,154 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:03:35,337 INFO toNotifyTaskSize = 0 + +2025-09-24 19:03:35,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:03:45,156 INFO [long-pulling] client count 0 + +2025-09-24 19:03:45,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:03:45,339 INFO toNotifyTaskSize = 0 + +2025-09-24 19:03:45,340 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:03:55,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:03:55,156 INFO [long-pulling] client count 0 + +2025-09-24 19:03:55,340 INFO toNotifyTaskSize = 0 + +2025-09-24 19:03:55,340 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:04:05,156 INFO [long-pulling] client count 0 + +2025-09-24 19:04:05,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:04:05,341 INFO toNotifyTaskSize = 0 + +2025-09-24 19:04:05,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:04:15,157 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:04:15,157 INFO [long-pulling] client count 0 + +2025-09-24 19:04:15,341 INFO toNotifyTaskSize = 0 + +2025-09-24 19:04:15,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:04:25,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:04:25,158 INFO [long-pulling] client count 0 + +2025-09-24 19:04:25,343 INFO toNotifyTaskSize = 0 + +2025-09-24 19:04:25,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:04:35,160 INFO [long-pulling] client count 0 + +2025-09-24 19:04:35,160 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:04:35,344 INFO toNotifyTaskSize = 0 + +2025-09-24 19:04:35,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:04:45,161 INFO [long-pulling] client count 0 + +2025-09-24 19:04:45,161 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:04:45,346 INFO toNotifyTaskSize = 0 + +2025-09-24 19:04:45,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:04:55,162 INFO [long-pulling] client count 0 + +2025-09-24 19:04:55,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:04:55,347 INFO toNotifyTaskSize = 0 + +2025-09-24 19:04:55,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:05:05,162 INFO [long-pulling] client count 0 + +2025-09-24 19:05:05,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:05:05,348 INFO toNotifyTaskSize = 0 + +2025-09-24 19:05:05,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:05:15,164 INFO [long-pulling] client count 0 + +2025-09-24 19:05:15,164 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:05:15,348 INFO toNotifyTaskSize = 0 + +2025-09-24 19:05:15,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:05:25,165 INFO [long-pulling] client count 0 + +2025-09-24 19:05:25,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:05:25,351 INFO toNotifyTaskSize = 0 + +2025-09-24 19:05:25,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:05:35,165 INFO [long-pulling] client count 0 + +2025-09-24 19:05:35,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:05:35,353 INFO toNotifyTaskSize = 0 + +2025-09-24 19:05:35,353 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:05:45,165 INFO [long-pulling] client count 0 + +2025-09-24 19:05:45,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:05:45,354 INFO toNotifyTaskSize = 0 + +2025-09-24 19:05:45,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:05:55,166 INFO [long-pulling] client count 0 + +2025-09-24 19:05:55,166 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:05:55,356 INFO toNotifyTaskSize = 0 + +2025-09-24 19:05:55,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:06:05,168 INFO [long-pulling] client count 0 + +2025-09-24 19:06:05,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:06:05,358 INFO toNotifyTaskSize = 0 + +2025-09-24 19:06:05,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:06:15,169 INFO [long-pulling] client count 0 + +2025-09-24 19:06:15,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:06:15,360 INFO toNotifyTaskSize = 0 + +2025-09-24 19:06:15,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:06:25,170 INFO [long-pulling] client count 0 + +2025-09-24 19:06:25,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:06:25,361 INFO toNotifyTaskSize = 0 + +2025-09-24 19:06:25,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:06:35,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:06:35,170 INFO [long-pulling] client count 0 + +2025-09-24 19:06:35,362 INFO toNotifyTaskSize = 0 + +2025-09-24 19:06:35,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:06:45,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:06:45,172 INFO [long-pulling] client count 0 + +2025-09-24 19:06:45,364 INFO toNotifyTaskSize = 0 + +2025-09-24 19:06:45,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:06:55,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:06:55,172 INFO [long-pulling] client count 0 + +2025-09-24 19:06:55,365 INFO toNotifyTaskSize = 0 + +2025-09-24 19:06:55,365 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:07:05,173 INFO [long-pulling] client count 0 + +2025-09-24 19:07:05,173 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:07:05,366 INFO toNotifyTaskSize = 0 + +2025-09-24 19:07:05,366 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:07:15,174 INFO [long-pulling] client count 0 + +2025-09-24 19:07:15,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:07:15,367 INFO toNotifyTaskSize = 0 + +2025-09-24 19:07:15,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:07:25,176 INFO [long-pulling] client count 0 + +2025-09-24 19:07:25,176 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:07:25,368 INFO toNotifyTaskSize = 0 + +2025-09-24 19:07:25,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:07:35,176 INFO [long-pulling] client count 0 + +2025-09-24 19:07:35,176 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:07:35,368 INFO toNotifyTaskSize = 0 + +2025-09-24 19:07:35,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:07:45,177 INFO [long-pulling] client count 0 + +2025-09-24 19:07:45,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:07:45,368 INFO toNotifyTaskSize = 0 + +2025-09-24 19:07:45,369 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:07:55,177 INFO [long-pulling] client count 0 + +2025-09-24 19:07:55,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:07:55,370 INFO toNotifyTaskSize = 0 + +2025-09-24 19:07:55,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:08:05,178 INFO [long-pulling] client count 0 + +2025-09-24 19:08:05,178 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:08:05,371 INFO toNotifyTaskSize = 0 + +2025-09-24 19:08:05,372 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:08:15,179 INFO [long-pulling] client count 0 + +2025-09-24 19:08:15,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:08:15,373 INFO toNotifyTaskSize = 0 + +2025-09-24 19:08:15,373 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:08:25,179 INFO [long-pulling] client count 0 + +2025-09-24 19:08:25,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:08:25,373 INFO toNotifyTaskSize = 0 + +2025-09-24 19:08:25,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:08:35,181 INFO [long-pulling] client count 0 + +2025-09-24 19:08:35,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:08:35,374 INFO toNotifyTaskSize = 0 + +2025-09-24 19:08:35,374 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:08:45,182 INFO [long-pulling] client count 0 + +2025-09-24 19:08:45,182 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:08:45,376 INFO toNotifyTaskSize = 0 + +2025-09-24 19:08:45,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:08:55,182 INFO [long-pulling] client count 0 + +2025-09-24 19:08:55,182 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:08:55,377 INFO toNotifyTaskSize = 0 + +2025-09-24 19:08:55,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:09:05,183 INFO [long-pulling] client count 0 + +2025-09-24 19:09:05,183 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:09:05,380 INFO toNotifyTaskSize = 0 + +2025-09-24 19:09:05,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:09:15,184 INFO [long-pulling] client count 0 + +2025-09-24 19:09:15,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:09:15,382 INFO toNotifyTaskSize = 0 + +2025-09-24 19:09:15,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:09:25,184 INFO [long-pulling] client count 0 + +2025-09-24 19:09:25,184 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:09:25,383 INFO toNotifyTaskSize = 0 + +2025-09-24 19:09:25,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:09:35,185 INFO [long-pulling] client count 0 + +2025-09-24 19:09:35,185 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:09:35,384 INFO toNotifyTaskSize = 0 + +2025-09-24 19:09:35,384 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:09:45,186 INFO [long-pulling] client count 0 + +2025-09-24 19:09:45,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:09:45,386 INFO toNotifyTaskSize = 0 + +2025-09-24 19:09:45,386 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:09:55,188 INFO [long-pulling] client count 0 + +2025-09-24 19:09:55,188 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:09:55,388 INFO toNotifyTaskSize = 0 + +2025-09-24 19:09:55,388 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:10:05,189 INFO [long-pulling] client count 0 + +2025-09-24 19:10:05,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:10:05,389 INFO toNotifyTaskSize = 0 + +2025-09-24 19:10:05,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:10:15,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:10:15,189 INFO [long-pulling] client count 0 + +2025-09-24 19:10:15,390 INFO toNotifyTaskSize = 0 + +2025-09-24 19:10:15,390 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:10:25,191 INFO [long-pulling] client count 0 + +2025-09-24 19:10:25,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:10:25,392 INFO toNotifyTaskSize = 0 + +2025-09-24 19:10:25,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:10:35,191 INFO [long-pulling] client count 0 + +2025-09-24 19:10:35,191 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:10:35,392 INFO toNotifyTaskSize = 0 + +2025-09-24 19:10:35,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:10:45,192 INFO [long-pulling] client count 0 + +2025-09-24 19:10:45,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:10:45,393 INFO toNotifyTaskSize = 0 + +2025-09-24 19:10:45,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:10:55,194 INFO [long-pulling] client count 0 + +2025-09-24 19:10:55,193 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:10:55,393 INFO toNotifyTaskSize = 0 + +2025-09-24 19:10:55,393 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:11:05,194 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:11:05,194 INFO [long-pulling] client count 0 + +2025-09-24 19:11:05,395 INFO toNotifyTaskSize = 0 + +2025-09-24 19:11:05,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:11:15,196 INFO [long-pulling] client count 0 + +2025-09-24 19:11:15,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:11:15,396 INFO toNotifyTaskSize = 0 + +2025-09-24 19:11:15,396 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:11:25,196 INFO [long-pulling] client count 0 + +2025-09-24 19:11:25,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:11:25,398 INFO toNotifyTaskSize = 0 + +2025-09-24 19:11:25,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:11:35,196 INFO [long-pulling] client count 0 + +2025-09-24 19:11:35,197 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:11:35,400 INFO toNotifyTaskSize = 0 + +2025-09-24 19:11:35,400 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:11:45,197 INFO [long-pulling] client count 0 + +2025-09-24 19:11:45,197 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:11:45,401 INFO toNotifyTaskSize = 0 + +2025-09-24 19:11:45,401 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:11:55,198 INFO [long-pulling] client count 0 + +2025-09-24 19:11:55,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:11:55,402 INFO toNotifyTaskSize = 0 + +2025-09-24 19:11:55,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:12:05,198 INFO [long-pulling] client count 0 + +2025-09-24 19:12:05,199 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:12:05,403 INFO toNotifyTaskSize = 0 + +2025-09-24 19:12:05,403 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:12:15,200 INFO [long-pulling] client count 0 + +2025-09-24 19:12:15,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:12:15,404 INFO toNotifyTaskSize = 0 + +2025-09-24 19:12:15,404 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:12:25,200 INFO [long-pulling] client count 0 + +2025-09-24 19:12:25,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:12:25,406 INFO toNotifyTaskSize = 0 + +2025-09-24 19:12:25,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:12:35,202 INFO [long-pulling] client count 0 + +2025-09-24 19:12:35,202 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:12:35,408 INFO toNotifyTaskSize = 0 + +2025-09-24 19:12:35,408 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:12:45,204 INFO [long-pulling] client count 0 + +2025-09-24 19:12:45,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:12:45,409 INFO toNotifyTaskSize = 0 + +2025-09-24 19:12:45,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:12:55,204 INFO [long-pulling] client count 0 + +2025-09-24 19:12:55,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:12:55,410 INFO toNotifyTaskSize = 0 + +2025-09-24 19:12:55,410 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:13:05,205 INFO [long-pulling] client count 0 + +2025-09-24 19:13:05,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:13:05,412 INFO toNotifyTaskSize = 0 + +2025-09-24 19:13:05,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:13:15,206 INFO [long-pulling] client count 0 + +2025-09-24 19:13:15,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:13:15,414 INFO toNotifyTaskSize = 0 + +2025-09-24 19:13:15,414 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:13:25,206 INFO [long-pulling] client count 0 + +2025-09-24 19:13:25,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:13:25,417 INFO toNotifyTaskSize = 0 + +2025-09-24 19:13:25,417 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:13:35,207 INFO [long-pulling] client count 0 + +2025-09-24 19:13:35,208 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:13:35,419 INFO toNotifyTaskSize = 0 + +2025-09-24 19:13:35,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:13:45,208 INFO [long-pulling] client count 0 + +2025-09-24 19:13:45,209 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:13:45,420 INFO toNotifyTaskSize = 0 + +2025-09-24 19:13:45,420 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:13:55,209 INFO [long-pulling] client count 0 + +2025-09-24 19:13:55,209 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:13:55,421 INFO toNotifyTaskSize = 0 + +2025-09-24 19:13:55,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:14:05,210 INFO [long-pulling] client count 0 + +2025-09-24 19:14:05,210 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:14:05,422 INFO toNotifyTaskSize = 0 + +2025-09-24 19:14:05,422 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:14:15,211 INFO [long-pulling] client count 0 + +2025-09-24 19:14:15,211 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:14:15,424 INFO toNotifyTaskSize = 0 + +2025-09-24 19:14:15,424 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:14:25,212 INFO [long-pulling] client count 0 + +2025-09-24 19:14:25,213 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:14:25,425 INFO toNotifyTaskSize = 0 + +2025-09-24 19:14:25,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:14:35,215 INFO [long-pulling] client count 0 + +2025-09-24 19:14:35,215 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:14:35,427 INFO toNotifyTaskSize = 0 + +2025-09-24 19:14:35,427 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:14:45,215 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:14:45,215 INFO [long-pulling] client count 0 + +2025-09-24 19:14:45,428 INFO toNotifyTaskSize = 0 + +2025-09-24 19:14:45,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:14:55,216 INFO [long-pulling] client count 0 + +2025-09-24 19:14:55,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:14:55,429 INFO toNotifyTaskSize = 0 + +2025-09-24 19:14:55,430 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:15:05,216 INFO [long-pulling] client count 0 + +2025-09-24 19:15:05,217 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:15:05,432 INFO toNotifyTaskSize = 0 + +2025-09-24 19:15:05,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:15:15,217 INFO [long-pulling] client count 0 + +2025-09-24 19:15:15,217 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:15:15,432 INFO toNotifyTaskSize = 0 + +2025-09-24 19:15:15,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:15:25,219 INFO [long-pulling] client count 0 + +2025-09-24 19:15:25,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:15:25,433 INFO toNotifyTaskSize = 0 + +2025-09-24 19:15:25,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:15:35,221 INFO [long-pulling] client count 0 + +2025-09-24 19:15:35,221 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:15:35,435 INFO toNotifyTaskSize = 0 + +2025-09-24 19:15:35,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:15:45,223 INFO [long-pulling] client count 0 + +2025-09-24 19:15:45,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:15:45,435 INFO toNotifyTaskSize = 0 + +2025-09-24 19:15:45,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:15:55,224 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:15:55,224 INFO [long-pulling] client count 0 + +2025-09-24 19:15:55,436 INFO toNotifyTaskSize = 0 + +2025-09-24 19:15:55,436 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:16:05,224 INFO [long-pulling] client count 0 + +2025-09-24 19:16:05,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:16:05,438 INFO toNotifyTaskSize = 0 + +2025-09-24 19:16:05,438 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:16:15,225 INFO [long-pulling] client count 0 + +2025-09-24 19:16:15,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:16:15,439 INFO toNotifyTaskSize = 0 + +2025-09-24 19:16:15,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:16:25,227 INFO [long-pulling] client count 0 + +2025-09-24 19:16:25,227 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:16:25,441 INFO toNotifyTaskSize = 0 + +2025-09-24 19:16:25,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:16:35,228 INFO [long-pulling] client count 0 + +2025-09-24 19:16:35,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:16:35,442 INFO toNotifyTaskSize = 0 + +2025-09-24 19:16:35,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:16:45,228 INFO [long-pulling] client count 0 + +2025-09-24 19:16:45,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:16:45,442 INFO toNotifyTaskSize = 0 + +2025-09-24 19:16:45,442 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:16:55,229 INFO [long-pulling] client count 0 + +2025-09-24 19:16:55,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:16:55,443 INFO toNotifyTaskSize = 0 + +2025-09-24 19:16:55,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:17:05,229 INFO [long-pulling] client count 0 + +2025-09-24 19:17:05,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:17:05,446 INFO toNotifyTaskSize = 0 + +2025-09-24 19:17:05,446 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:17:15,230 INFO [long-pulling] client count 0 + +2025-09-24 19:17:15,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:17:15,448 INFO toNotifyTaskSize = 0 + +2025-09-24 19:17:15,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:17:25,231 INFO [long-pulling] client count 0 + +2025-09-24 19:17:25,231 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:17:25,448 INFO toNotifyTaskSize = 0 + +2025-09-24 19:17:25,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:17:35,233 INFO [long-pulling] client count 0 + +2025-09-24 19:17:35,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:17:35,449 INFO toNotifyTaskSize = 0 + +2025-09-24 19:17:35,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:17:45,234 INFO [long-pulling] client count 0 + +2025-09-24 19:17:45,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:17:45,451 INFO toNotifyTaskSize = 0 + +2025-09-24 19:17:45,451 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:17:55,234 INFO [long-pulling] client count 0 + +2025-09-24 19:17:55,234 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:17:55,452 INFO toNotifyTaskSize = 0 + +2025-09-24 19:17:55,452 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:18:05,236 INFO [long-pulling] client count 0 + +2025-09-24 19:18:05,236 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:18:05,452 INFO toNotifyTaskSize = 0 + +2025-09-24 19:18:05,452 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:18:15,238 INFO [long-pulling] client count 0 + +2025-09-24 19:18:15,238 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:18:15,453 INFO toNotifyTaskSize = 0 + +2025-09-24 19:18:15,453 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:18:25,239 INFO [long-pulling] client count 0 + +2025-09-24 19:18:25,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:18:25,454 INFO toNotifyTaskSize = 0 + +2025-09-24 19:18:25,455 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:18:35,239 INFO [long-pulling] client count 0 + +2025-09-24 19:18:35,240 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:18:35,456 INFO toNotifyTaskSize = 0 + +2025-09-24 19:18:35,456 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:18:45,241 INFO [long-pulling] client count 0 + +2025-09-24 19:18:45,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:18:45,458 INFO toNotifyTaskSize = 0 + +2025-09-24 19:18:45,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:18:55,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:18:55,242 INFO [long-pulling] client count 0 + +2025-09-24 19:18:55,460 INFO toNotifyTaskSize = 0 + +2025-09-24 19:18:55,460 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:19:05,244 INFO [long-pulling] client count 0 + +2025-09-24 19:19:05,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:19:05,462 INFO toNotifyTaskSize = 0 + +2025-09-24 19:19:05,462 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:19:15,245 INFO [long-pulling] client count 0 + +2025-09-24 19:19:15,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:19:15,464 INFO toNotifyTaskSize = 0 + +2025-09-24 19:19:15,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:19:25,247 INFO [long-pulling] client count 0 + +2025-09-24 19:19:25,247 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:19:25,466 INFO toNotifyTaskSize = 0 + +2025-09-24 19:19:25,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:19:35,248 INFO [long-pulling] client count 0 + +2025-09-24 19:19:35,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:19:35,468 INFO toNotifyTaskSize = 0 + +2025-09-24 19:19:35,468 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:19:45,248 INFO [long-pulling] client count 0 + +2025-09-24 19:19:45,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:19:45,469 INFO toNotifyTaskSize = 0 + +2025-09-24 19:19:45,469 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:19:55,250 INFO [long-pulling] client count 0 + +2025-09-24 19:19:55,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:19:55,471 INFO toNotifyTaskSize = 0 + +2025-09-24 19:19:55,471 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:20:05,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:20:05,251 INFO [long-pulling] client count 0 + +2025-09-24 19:20:05,473 INFO toNotifyTaskSize = 0 + +2025-09-24 19:20:05,473 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:20:15,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:20:15,251 INFO [long-pulling] client count 0 + +2025-09-24 19:20:15,474 INFO toNotifyTaskSize = 0 + +2025-09-24 19:20:15,474 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:20:25,254 INFO [long-pulling] client count 0 + +2025-09-24 19:20:25,254 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:20:25,475 INFO toNotifyTaskSize = 0 + +2025-09-24 19:20:25,475 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:20:35,254 INFO [long-pulling] client count 0 + +2025-09-24 19:20:35,254 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:20:35,477 INFO toNotifyTaskSize = 0 + +2025-09-24 19:20:35,478 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:20:45,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:20:45,256 INFO [long-pulling] client count 0 + +2025-09-24 19:20:45,478 INFO toNotifyTaskSize = 0 + +2025-09-24 19:20:45,478 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:20:55,258 INFO [long-pulling] client count 0 + +2025-09-24 19:20:55,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:20:55,480 INFO toNotifyTaskSize = 0 + +2025-09-24 19:20:55,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:21:05,258 INFO [long-pulling] client count 0 + +2025-09-24 19:21:05,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:21:05,483 INFO toNotifyTaskSize = 0 + +2025-09-24 19:21:05,483 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:21:15,259 INFO [long-pulling] client count 0 + +2025-09-24 19:21:15,259 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:21:15,483 INFO toNotifyTaskSize = 0 + +2025-09-24 19:21:15,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:21:25,259 INFO [long-pulling] client count 0 + +2025-09-24 19:21:25,259 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:21:25,486 INFO toNotifyTaskSize = 0 + +2025-09-24 19:21:25,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:21:35,260 INFO [long-pulling] client count 0 + +2025-09-24 19:21:35,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:21:35,486 INFO toNotifyTaskSize = 0 + +2025-09-24 19:21:35,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:21:45,260 INFO [long-pulling] client count 0 + +2025-09-24 19:21:45,260 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:21:45,487 INFO toNotifyTaskSize = 0 + +2025-09-24 19:21:45,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:21:55,261 INFO [long-pulling] client count 0 + +2025-09-24 19:21:55,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:21:55,488 INFO toNotifyTaskSize = 0 + +2025-09-24 19:21:55,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:22:05,262 INFO [long-pulling] client count 0 + +2025-09-24 19:22:05,262 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:22:05,489 INFO toNotifyTaskSize = 0 + +2025-09-24 19:22:05,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:22:15,263 INFO [long-pulling] client count 0 + +2025-09-24 19:22:15,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:22:15,490 INFO toNotifyTaskSize = 0 + +2025-09-24 19:22:15,490 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:22:25,263 INFO [long-pulling] client count 0 + +2025-09-24 19:22:25,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:22:25,491 INFO toNotifyTaskSize = 0 + +2025-09-24 19:22:25,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:22:35,264 INFO [long-pulling] client count 0 + +2025-09-24 19:22:35,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:22:35,492 INFO toNotifyTaskSize = 0 + +2025-09-24 19:22:35,492 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:22:45,265 INFO [long-pulling] client count 0 + +2025-09-24 19:22:45,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:22:45,493 INFO toNotifyTaskSize = 0 + +2025-09-24 19:22:45,493 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:22:55,265 INFO [long-pulling] client count 0 + +2025-09-24 19:22:55,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:22:55,494 INFO toNotifyTaskSize = 0 + +2025-09-24 19:22:55,494 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:23:05,266 INFO [long-pulling] client count 0 + +2025-09-24 19:23:05,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:23:05,494 INFO toNotifyTaskSize = 0 + +2025-09-24 19:23:05,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:23:15,266 INFO [long-pulling] client count 0 + +2025-09-24 19:23:15,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:23:15,495 INFO toNotifyTaskSize = 0 + +2025-09-24 19:23:15,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:23:25,267 INFO [long-pulling] client count 0 + +2025-09-24 19:23:25,267 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:23:25,495 INFO toNotifyTaskSize = 0 + +2025-09-24 19:23:25,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:23:35,267 INFO [long-pulling] client count 0 + +2025-09-24 19:23:35,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:23:35,498 INFO toNotifyTaskSize = 0 + +2025-09-24 19:23:35,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:23:45,268 INFO [long-pulling] client count 0 + +2025-09-24 19:23:45,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:23:45,498 INFO toNotifyTaskSize = 0 + +2025-09-24 19:23:45,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:23:55,269 INFO [long-pulling] client count 0 + +2025-09-24 19:23:55,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:23:55,499 INFO toNotifyTaskSize = 0 + +2025-09-24 19:23:55,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:24:05,271 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:24:05,271 INFO [long-pulling] client count 0 + +2025-09-24 19:24:05,500 INFO toNotifyTaskSize = 0 + +2025-09-24 19:24:05,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:24:15,273 INFO [long-pulling] client count 0 + +2025-09-24 19:24:15,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:24:15,500 INFO toNotifyTaskSize = 0 + +2025-09-24 19:24:15,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:24:25,273 INFO [long-pulling] client count 0 + +2025-09-24 19:24:25,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:24:25,501 INFO toNotifyTaskSize = 0 + +2025-09-24 19:24:25,501 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:24:35,274 INFO [long-pulling] client count 0 + +2025-09-24 19:24:35,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:24:35,501 INFO toNotifyTaskSize = 0 + +2025-09-24 19:24:35,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:24:45,275 INFO [long-pulling] client count 0 + +2025-09-24 19:24:45,275 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:24:45,502 INFO toNotifyTaskSize = 0 + +2025-09-24 19:24:45,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:24:55,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:24:55,276 INFO [long-pulling] client count 0 + +2025-09-24 19:24:55,503 INFO toNotifyTaskSize = 0 + +2025-09-24 19:24:55,503 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:25:05,277 INFO [long-pulling] client count 0 + +2025-09-24 19:25:05,277 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:25:05,505 INFO toNotifyTaskSize = 0 + +2025-09-24 19:25:05,505 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:25:15,279 INFO [long-pulling] client count 0 + +2025-09-24 19:25:15,279 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:25:15,507 INFO toNotifyTaskSize = 0 + +2025-09-24 19:25:15,507 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:25:25,280 INFO [long-pulling] client count 0 + +2025-09-24 19:25:25,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:25:25,508 INFO toNotifyTaskSize = 0 + +2025-09-24 19:25:25,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:25:35,281 INFO [long-pulling] client count 0 + +2025-09-24 19:25:35,281 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:25:35,509 INFO toNotifyTaskSize = 0 + +2025-09-24 19:25:35,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:25:45,282 INFO [long-pulling] client count 0 + +2025-09-24 19:25:45,282 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:25:45,509 INFO toNotifyTaskSize = 0 + +2025-09-24 19:25:45,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:25:55,283 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:25:55,283 INFO [long-pulling] client count 0 + +2025-09-24 19:25:55,510 INFO toNotifyTaskSize = 0 + +2025-09-24 19:25:55,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:26:05,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:26:05,284 INFO [long-pulling] client count 0 + +2025-09-24 19:26:05,512 INFO toNotifyTaskSize = 0 + +2025-09-24 19:26:05,512 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:26:15,284 INFO [long-pulling] client count 0 + +2025-09-24 19:26:15,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:26:15,514 INFO toNotifyTaskSize = 0 + +2025-09-24 19:26:15,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:26:25,285 INFO [long-pulling] client count 0 + +2025-09-24 19:26:25,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:26:25,514 INFO toNotifyTaskSize = 0 + +2025-09-24 19:26:25,514 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:26:35,285 INFO [long-pulling] client count 0 + +2025-09-24 19:26:35,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:26:35,515 INFO toNotifyTaskSize = 0 + +2025-09-24 19:26:35,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:26:45,287 INFO [long-pulling] client count 0 + +2025-09-24 19:26:45,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:26:45,515 INFO toNotifyTaskSize = 0 + +2025-09-24 19:26:45,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:26:55,287 INFO [long-pulling] client count 0 + +2025-09-24 19:26:55,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:26:55,517 INFO toNotifyTaskSize = 0 + +2025-09-24 19:26:55,517 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:27:05,289 INFO [long-pulling] client count 0 + +2025-09-24 19:27:05,289 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:27:05,518 INFO toNotifyTaskSize = 0 + +2025-09-24 19:27:05,518 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:27:15,291 INFO [long-pulling] client count 0 + +2025-09-24 19:27:15,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:27:15,518 INFO toNotifyTaskSize = 0 + +2025-09-24 19:27:15,518 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:27:25,292 INFO [long-pulling] client count 0 + +2025-09-24 19:27:25,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:27:25,519 INFO toNotifyTaskSize = 0 + +2025-09-24 19:27:25,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:27:35,295 INFO [long-pulling] client count 0 + +2025-09-24 19:27:35,295 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:27:35,521 INFO toNotifyTaskSize = 0 + +2025-09-24 19:27:35,521 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:27:45,297 INFO [long-pulling] client count 0 + +2025-09-24 19:27:45,298 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:27:45,522 INFO toNotifyTaskSize = 0 + +2025-09-24 19:27:45,522 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:27:55,299 INFO [long-pulling] client count 0 + +2025-09-24 19:27:55,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:27:55,522 INFO toNotifyTaskSize = 0 + +2025-09-24 19:27:55,522 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:28:05,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:28:05,299 INFO [long-pulling] client count 0 + +2025-09-24 19:28:05,524 INFO toNotifyTaskSize = 0 + +2025-09-24 19:28:05,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:28:15,299 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:28:15,299 INFO [long-pulling] client count 0 + +2025-09-24 19:28:15,525 INFO toNotifyTaskSize = 0 + +2025-09-24 19:28:15,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:28:25,300 INFO [long-pulling] client count 0 + +2025-09-24 19:28:25,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:28:25,525 INFO toNotifyTaskSize = 0 + +2025-09-24 19:28:25,525 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:28:35,301 INFO [long-pulling] client count 0 + +2025-09-24 19:28:35,301 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:28:35,526 INFO toNotifyTaskSize = 0 + +2025-09-24 19:28:35,526 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:28:45,303 INFO [long-pulling] client count 0 + +2025-09-24 19:28:45,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:28:45,528 INFO toNotifyTaskSize = 0 + +2025-09-24 19:28:45,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:28:55,304 INFO [long-pulling] client count 0 + +2025-09-24 19:28:55,304 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:28:55,528 INFO toNotifyTaskSize = 0 + +2025-09-24 19:28:55,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:29:05,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:29:05,305 INFO [long-pulling] client count 0 + +2025-09-24 19:29:05,529 INFO toNotifyTaskSize = 0 + +2025-09-24 19:29:05,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:29:15,306 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:29:15,306 INFO [long-pulling] client count 0 + +2025-09-24 19:29:15,530 INFO toNotifyTaskSize = 0 + +2025-09-24 19:29:15,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:29:25,306 INFO [long-pulling] client count 0 + +2025-09-24 19:29:25,306 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:29:25,532 INFO toNotifyTaskSize = 0 + +2025-09-24 19:29:25,532 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:29:35,307 INFO [long-pulling] client count 0 + +2025-09-24 19:29:35,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:29:35,533 INFO toNotifyTaskSize = 0 + +2025-09-24 19:29:35,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:29:45,307 INFO [long-pulling] client count 0 + +2025-09-24 19:29:45,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:29:45,533 INFO toNotifyTaskSize = 0 + +2025-09-24 19:29:45,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:29:55,307 INFO [long-pulling] client count 0 + +2025-09-24 19:29:55,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:29:55,534 INFO toNotifyTaskSize = 0 + +2025-09-24 19:29:55,534 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:30:05,308 INFO [long-pulling] client count 0 + +2025-09-24 19:30:05,308 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:30:05,534 INFO toNotifyTaskSize = 0 + +2025-09-24 19:30:05,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:30:15,309 INFO [long-pulling] client count 0 + +2025-09-24 19:30:15,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:30:15,535 INFO toNotifyTaskSize = 0 + +2025-09-24 19:30:15,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:30:25,310 INFO [long-pulling] client count 0 + +2025-09-24 19:30:25,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:30:25,537 INFO toNotifyTaskSize = 0 + +2025-09-24 19:30:25,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:30:35,313 INFO [long-pulling] client count 0 + +2025-09-24 19:30:35,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:30:35,537 INFO toNotifyTaskSize = 0 + +2025-09-24 19:30:35,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:30:45,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:30:45,315 INFO [long-pulling] client count 0 + +2025-09-24 19:30:45,538 INFO toNotifyTaskSize = 0 + +2025-09-24 19:30:45,538 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:30:55,317 INFO [long-pulling] client count 0 + +2025-09-24 19:30:55,317 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:30:55,538 INFO toNotifyTaskSize = 0 + +2025-09-24 19:30:55,538 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:31:05,320 INFO [long-pulling] client count 0 + +2025-09-24 19:31:05,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:31:05,540 INFO toNotifyTaskSize = 0 + +2025-09-24 19:31:05,540 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:31:15,322 INFO [long-pulling] client count 0 + +2025-09-24 19:31:15,322 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:31:15,542 INFO toNotifyTaskSize = 0 + +2025-09-24 19:31:15,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:31:25,324 INFO [long-pulling] client count 0 + +2025-09-24 19:31:25,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:31:25,543 INFO toNotifyTaskSize = 0 + +2025-09-24 19:31:25,543 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:31:35,327 INFO [long-pulling] client count 0 + +2025-09-24 19:31:35,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:31:35,545 INFO toNotifyTaskSize = 0 + +2025-09-24 19:31:35,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:31:45,329 INFO [long-pulling] client count 0 + +2025-09-24 19:31:45,329 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:31:45,546 INFO toNotifyTaskSize = 0 + +2025-09-24 19:31:45,546 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:31:55,331 INFO [long-pulling] client count 0 + +2025-09-24 19:31:55,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:31:55,547 INFO toNotifyTaskSize = 0 + +2025-09-24 19:31:55,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:32:05,331 INFO [long-pulling] client count 0 + +2025-09-24 19:32:05,331 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:32:05,547 INFO toNotifyTaskSize = 0 + +2025-09-24 19:32:05,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:32:15,332 INFO [long-pulling] client count 0 + +2025-09-24 19:32:15,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:32:15,549 INFO toNotifyTaskSize = 0 + +2025-09-24 19:32:15,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:32:25,332 INFO [long-pulling] client count 0 + +2025-09-24 19:32:25,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:32:25,549 INFO toNotifyTaskSize = 0 + +2025-09-24 19:32:25,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:32:35,333 INFO [long-pulling] client count 0 + +2025-09-24 19:32:35,333 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:32:35,551 INFO toNotifyTaskSize = 0 + +2025-09-24 19:32:35,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:32:45,333 INFO [long-pulling] client count 0 + +2025-09-24 19:32:45,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:32:45,553 INFO toNotifyTaskSize = 0 + +2025-09-24 19:32:45,553 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:32:55,335 INFO [long-pulling] client count 0 + +2025-09-24 19:32:55,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:32:55,554 INFO toNotifyTaskSize = 0 + +2025-09-24 19:32:55,554 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:33:05,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:33:05,337 INFO [long-pulling] client count 0 + +2025-09-24 19:33:05,556 INFO toNotifyTaskSize = 0 + +2025-09-24 19:33:05,556 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:33:15,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:33:15,337 INFO [long-pulling] client count 0 + +2025-09-24 19:33:15,556 INFO toNotifyTaskSize = 0 + +2025-09-24 19:33:15,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:33:25,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:33:25,337 INFO [long-pulling] client count 0 + +2025-09-24 19:33:25,557 INFO toNotifyTaskSize = 0 + +2025-09-24 19:33:25,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:33:35,337 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:33:35,338 INFO [long-pulling] client count 0 + +2025-09-24 19:33:35,558 INFO toNotifyTaskSize = 0 + +2025-09-24 19:33:35,558 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:33:45,338 INFO [long-pulling] client count 0 + +2025-09-24 19:33:45,338 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:33:45,558 INFO toNotifyTaskSize = 0 + +2025-09-24 19:33:45,558 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:33:55,338 INFO [long-pulling] client count 0 + +2025-09-24 19:33:55,338 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:33:55,558 INFO toNotifyTaskSize = 0 + +2025-09-24 19:33:55,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:34:05,340 INFO [long-pulling] client count 0 + +2025-09-24 19:34:05,340 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:34:05,559 INFO toNotifyTaskSize = 0 + +2025-09-24 19:34:05,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:34:15,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:34:15,341 INFO [long-pulling] client count 0 + +2025-09-24 19:34:15,559 INFO toNotifyTaskSize = 0 + +2025-09-24 19:34:15,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:34:25,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:34:25,342 INFO [long-pulling] client count 0 + +2025-09-24 19:34:25,560 INFO toNotifyTaskSize = 0 + +2025-09-24 19:34:25,560 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:34:35,343 INFO [long-pulling] client count 0 + +2025-09-24 19:34:35,343 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:34:35,560 INFO toNotifyTaskSize = 0 + +2025-09-24 19:34:35,560 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:34:45,344 INFO [long-pulling] client count 0 + +2025-09-24 19:34:45,344 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:34:45,560 INFO toNotifyTaskSize = 0 + +2025-09-24 19:34:45,561 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:34:55,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:34:55,345 INFO [long-pulling] client count 0 + +2025-09-24 19:34:55,562 INFO toNotifyTaskSize = 0 + +2025-09-24 19:34:55,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:35:05,345 INFO [long-pulling] client count 0 + +2025-09-24 19:35:05,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:35:05,562 INFO toNotifyTaskSize = 0 + +2025-09-24 19:35:05,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:35:15,346 INFO [long-pulling] client count 0 + +2025-09-24 19:35:15,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:35:15,564 INFO toNotifyTaskSize = 0 + +2025-09-24 19:35:15,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:35:25,346 INFO [long-pulling] client count 0 + +2025-09-24 19:35:25,346 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:35:25,565 INFO toNotifyTaskSize = 0 + +2025-09-24 19:35:25,565 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:35:35,347 INFO [long-pulling] client count 0 + +2025-09-24 19:35:35,347 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:35:35,566 INFO toNotifyTaskSize = 0 + +2025-09-24 19:35:35,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:35:45,348 INFO [long-pulling] client count 0 + +2025-09-24 19:35:45,349 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:35:45,568 INFO toNotifyTaskSize = 0 + +2025-09-24 19:35:45,568 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:35:55,349 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:35:55,349 INFO [long-pulling] client count 0 + +2025-09-24 19:35:55,570 INFO toNotifyTaskSize = 0 + +2025-09-24 19:35:55,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:36:05,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:36:05,351 INFO [long-pulling] client count 0 + +2025-09-24 19:36:05,573 INFO toNotifyTaskSize = 0 + +2025-09-24 19:36:05,573 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:36:15,351 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:36:15,352 INFO [long-pulling] client count 0 + +2025-09-24 19:36:15,573 INFO toNotifyTaskSize = 0 + +2025-09-24 19:36:15,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:36:25,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:36:25,352 INFO [long-pulling] client count 0 + +2025-09-24 19:36:25,576 INFO toNotifyTaskSize = 0 + +2025-09-24 19:36:25,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:36:35,353 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:36:35,353 INFO [long-pulling] client count 0 + +2025-09-24 19:36:35,576 INFO toNotifyTaskSize = 0 + +2025-09-24 19:36:35,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:36:45,353 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:36:45,354 INFO [long-pulling] client count 0 + +2025-09-24 19:36:45,576 INFO toNotifyTaskSize = 0 + +2025-09-24 19:36:45,576 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:36:55,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:36:55,354 INFO [long-pulling] client count 0 + +2025-09-24 19:36:55,579 INFO toNotifyTaskSize = 0 + +2025-09-24 19:36:55,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:37:05,356 INFO [long-pulling] client count 0 + +2025-09-24 19:37:05,360 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:37:05,581 INFO toNotifyTaskSize = 0 + +2025-09-24 19:37:05,581 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:37:15,356 INFO [long-pulling] client count 0 + +2025-09-24 19:37:15,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:37:15,583 INFO toNotifyTaskSize = 0 + +2025-09-24 19:37:15,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:37:25,358 INFO [long-pulling] client count 0 + +2025-09-24 19:37:25,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:37:25,583 INFO toNotifyTaskSize = 0 + +2025-09-24 19:37:25,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:37:35,360 INFO [long-pulling] client count 0 + +2025-09-24 19:37:35,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:37:35,585 INFO toNotifyTaskSize = 0 + +2025-09-24 19:37:35,586 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:37:45,360 INFO [long-pulling] client count 0 + +2025-09-24 19:37:45,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:37:45,586 INFO toNotifyTaskSize = 0 + +2025-09-24 19:37:45,586 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:37:55,361 INFO [long-pulling] client count 0 + +2025-09-24 19:37:55,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:37:55,587 INFO toNotifyTaskSize = 0 + +2025-09-24 19:37:55,587 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:38:05,363 INFO [long-pulling] client count 0 + +2025-09-24 19:38:05,368 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:38:05,587 INFO toNotifyTaskSize = 0 + +2025-09-24 19:38:05,588 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:38:15,363 INFO [long-pulling] client count 0 + +2025-09-24 19:38:15,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:38:15,589 INFO toNotifyTaskSize = 0 + +2025-09-24 19:38:15,589 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:38:25,366 INFO [long-pulling] client count 0 + +2025-09-24 19:38:25,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:38:25,590 INFO toNotifyTaskSize = 0 + +2025-09-24 19:38:25,590 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:38:35,369 INFO [long-pulling] client count 0 + +2025-09-24 19:38:35,370 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:38:35,591 INFO toNotifyTaskSize = 0 + +2025-09-24 19:38:35,591 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:38:45,370 INFO [long-pulling] client count 0 + +2025-09-24 19:38:45,372 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:38:45,592 INFO toNotifyTaskSize = 0 + +2025-09-24 19:38:45,592 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:38:55,370 INFO [long-pulling] client count 0 + +2025-09-24 19:38:55,373 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:38:55,593 INFO toNotifyTaskSize = 0 + +2025-09-24 19:38:55,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:39:05,372 INFO [long-pulling] client count 0 + +2025-09-24 19:39:05,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:39:05,595 INFO toNotifyTaskSize = 0 + +2025-09-24 19:39:05,595 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:39:15,373 INFO [long-pulling] client count 0 + +2025-09-24 19:39:15,374 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:39:15,598 INFO toNotifyTaskSize = 0 + +2025-09-24 19:39:15,598 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:39:25,375 INFO [long-pulling] client count 0 + +2025-09-24 19:39:25,375 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:39:25,599 INFO toNotifyTaskSize = 0 + +2025-09-24 19:39:25,599 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:39:35,377 INFO [long-pulling] client count 0 + +2025-09-24 19:39:35,377 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:39:35,602 INFO toNotifyTaskSize = 0 + +2025-09-24 19:39:35,602 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:39:45,378 INFO [long-pulling] client count 0 + +2025-09-24 19:39:45,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:39:45,603 INFO toNotifyTaskSize = 0 + +2025-09-24 19:39:45,603 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:39:55,379 INFO [long-pulling] client count 0 + +2025-09-24 19:39:55,379 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:39:55,604 INFO toNotifyTaskSize = 0 + +2025-09-24 19:39:55,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:40:05,381 INFO [long-pulling] client count 0 + +2025-09-24 19:40:05,381 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:40:05,605 INFO toNotifyTaskSize = 0 + +2025-09-24 19:40:05,605 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:40:15,383 INFO [long-pulling] client count 0 + +2025-09-24 19:40:15,383 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:40:15,606 INFO toNotifyTaskSize = 0 + +2025-09-24 19:40:15,606 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:40:25,385 INFO [long-pulling] client count 0 + +2025-09-24 19:40:25,385 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:40:25,608 INFO toNotifyTaskSize = 0 + +2025-09-24 19:40:25,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:40:35,387 INFO [long-pulling] client count 0 + +2025-09-24 19:40:35,387 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:40:35,610 INFO toNotifyTaskSize = 0 + +2025-09-24 19:40:35,610 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:40:45,389 INFO [long-pulling] client count 0 + +2025-09-24 19:40:45,389 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:40:45,610 INFO toNotifyTaskSize = 0 + +2025-09-24 19:40:45,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:40:55,390 INFO [long-pulling] client count 0 + +2025-09-24 19:40:55,390 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:40:55,612 INFO toNotifyTaskSize = 0 + +2025-09-24 19:40:55,612 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:41:05,392 INFO [long-pulling] client count 0 + +2025-09-24 19:41:05,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:41:05,613 INFO toNotifyTaskSize = 0 + +2025-09-24 19:41:05,613 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:41:15,394 INFO [long-pulling] client count 0 + +2025-09-24 19:41:15,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:41:15,613 INFO toNotifyTaskSize = 0 + +2025-09-24 19:41:15,614 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:41:25,395 INFO [long-pulling] client count 0 + +2025-09-24 19:41:25,395 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:41:25,616 INFO toNotifyTaskSize = 0 + +2025-09-24 19:41:25,616 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:41:35,397 INFO [long-pulling] client count 0 + +2025-09-24 19:41:35,397 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:41:35,618 INFO toNotifyTaskSize = 0 + +2025-09-24 19:41:35,618 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:41:45,397 INFO [long-pulling] client count 0 + +2025-09-24 19:41:45,398 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:41:45,619 INFO toNotifyTaskSize = 0 + +2025-09-24 19:41:45,619 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:41:55,398 INFO [long-pulling] client count 0 + +2025-09-24 19:41:55,398 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:41:55,620 INFO toNotifyTaskSize = 0 + +2025-09-24 19:41:55,620 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:42:05,399 INFO [long-pulling] client count 0 + +2025-09-24 19:42:05,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:42:05,622 INFO toNotifyTaskSize = 0 + +2025-09-24 19:42:05,623 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:42:15,399 INFO [long-pulling] client count 0 + +2025-09-24 19:42:15,399 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:42:15,624 INFO toNotifyTaskSize = 0 + +2025-09-24 19:42:15,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:42:25,400 INFO [long-pulling] client count 0 + +2025-09-24 19:42:25,400 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:42:25,626 INFO toNotifyTaskSize = 0 + +2025-09-24 19:42:25,626 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:42:35,401 INFO [long-pulling] client count 0 + +2025-09-24 19:42:35,401 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:42:35,628 INFO toNotifyTaskSize = 0 + +2025-09-24 19:42:35,628 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:42:45,403 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:42:45,403 INFO [long-pulling] client count 0 + +2025-09-24 19:42:45,630 INFO toNotifyTaskSize = 0 + +2025-09-24 19:42:45,630 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:42:55,404 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:42:55,404 INFO [long-pulling] client count 0 + +2025-09-24 19:42:55,632 INFO toNotifyTaskSize = 0 + +2025-09-24 19:42:55,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:43:05,405 INFO [long-pulling] client count 0 + +2025-09-24 19:43:05,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:43:05,634 INFO toNotifyTaskSize = 0 + +2025-09-24 19:43:05,634 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:43:15,407 INFO [long-pulling] client count 0 + +2025-09-24 19:43:15,408 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:43:15,635 INFO toNotifyTaskSize = 0 + +2025-09-24 19:43:15,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:43:25,408 INFO [long-pulling] client count 0 + +2025-09-24 19:43:25,408 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:43:25,635 INFO toNotifyTaskSize = 0 + +2025-09-24 19:43:25,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:43:35,410 INFO [long-pulling] client count 0 + +2025-09-24 19:43:35,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:43:35,637 INFO toNotifyTaskSize = 0 + +2025-09-24 19:43:35,637 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:43:45,411 INFO [long-pulling] client count 0 + +2025-09-24 19:43:45,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:43:45,638 INFO toNotifyTaskSize = 0 + +2025-09-24 19:43:45,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:43:55,412 INFO [long-pulling] client count 0 + +2025-09-24 19:43:55,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:43:55,638 INFO toNotifyTaskSize = 0 + +2025-09-24 19:43:55,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:44:05,413 INFO [long-pulling] client count 0 + +2025-09-24 19:44:05,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:44:05,640 INFO toNotifyTaskSize = 0 + +2025-09-24 19:44:05,640 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:44:15,413 INFO [long-pulling] client count 0 + +2025-09-24 19:44:15,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:44:15,641 INFO toNotifyTaskSize = 0 + +2025-09-24 19:44:15,641 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:44:25,413 INFO [long-pulling] client count 0 + +2025-09-24 19:44:25,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:44:25,643 INFO toNotifyTaskSize = 0 + +2025-09-24 19:44:25,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:44:35,415 INFO [long-pulling] client count 0 + +2025-09-24 19:44:35,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:44:35,643 INFO toNotifyTaskSize = 0 + +2025-09-24 19:44:35,643 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:44:45,415 INFO [long-pulling] client count 0 + +2025-09-24 19:44:45,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:44:45,644 INFO toNotifyTaskSize = 0 + +2025-09-24 19:44:45,644 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:44:55,416 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:44:55,416 INFO [long-pulling] client count 0 + +2025-09-24 19:44:55,646 INFO toNotifyTaskSize = 0 + +2025-09-24 19:44:55,646 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:45:05,417 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:45:05,417 INFO [long-pulling] client count 0 + +2025-09-24 19:45:05,647 INFO toNotifyTaskSize = 0 + +2025-09-24 19:45:05,648 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:45:15,419 INFO [long-pulling] client count 0 + +2025-09-24 19:45:15,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:45:15,648 INFO toNotifyTaskSize = 0 + +2025-09-24 19:45:15,648 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:45:25,420 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:45:25,420 INFO [long-pulling] client count 0 + +2025-09-24 19:45:25,649 INFO toNotifyTaskSize = 0 + +2025-09-24 19:45:25,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:45:35,424 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:45:35,424 INFO [long-pulling] client count 0 + +2025-09-24 19:45:35,650 INFO toNotifyTaskSize = 0 + +2025-09-24 19:45:35,650 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:45:45,424 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:45:45,424 INFO [long-pulling] client count 0 + +2025-09-24 19:45:45,651 INFO toNotifyTaskSize = 0 + +2025-09-24 19:45:45,651 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:45:55,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:45:55,425 INFO [long-pulling] client count 0 + +2025-09-24 19:45:55,651 INFO toNotifyTaskSize = 0 + +2025-09-24 19:45:55,651 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:46:05,426 INFO [long-pulling] client count 0 + +2025-09-24 19:46:05,426 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:46:05,652 INFO toNotifyTaskSize = 0 + +2025-09-24 19:46:05,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:46:15,427 INFO [long-pulling] client count 0 + +2025-09-24 19:46:15,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:46:15,652 INFO toNotifyTaskSize = 0 + +2025-09-24 19:46:15,652 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:46:25,428 INFO [long-pulling] client count 0 + +2025-09-24 19:46:25,428 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:46:25,653 INFO toNotifyTaskSize = 0 + +2025-09-24 19:46:25,653 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:46:35,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:46:35,431 INFO [long-pulling] client count 0 + +2025-09-24 19:46:35,653 INFO toNotifyTaskSize = 0 + +2025-09-24 19:46:35,653 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:46:45,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:46:45,432 INFO [long-pulling] client count 0 + +2025-09-24 19:46:45,655 INFO toNotifyTaskSize = 0 + +2025-09-24 19:46:45,655 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:46:55,432 INFO [long-pulling] client count 0 + +2025-09-24 19:46:55,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:46:55,656 INFO toNotifyTaskSize = 0 + +2025-09-24 19:46:55,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:47:05,435 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:47:05,435 INFO [long-pulling] client count 0 + +2025-09-24 19:47:05,657 INFO toNotifyTaskSize = 0 + +2025-09-24 19:47:05,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:47:15,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:47:15,437 INFO [long-pulling] client count 0 + +2025-09-24 19:47:15,660 INFO toNotifyTaskSize = 0 + +2025-09-24 19:47:15,660 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:47:25,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:47:25,437 INFO [long-pulling] client count 0 + +2025-09-24 19:47:25,660 INFO toNotifyTaskSize = 0 + +2025-09-24 19:47:25,660 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:47:35,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:47:35,439 INFO [long-pulling] client count 0 + +2025-09-24 19:47:35,662 INFO toNotifyTaskSize = 0 + +2025-09-24 19:47:35,663 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:47:45,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:47:45,439 INFO [long-pulling] client count 0 + +2025-09-24 19:47:45,664 INFO toNotifyTaskSize = 0 + +2025-09-24 19:47:45,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:47:55,439 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:47:55,440 INFO [long-pulling] client count 0 + +2025-09-24 19:47:55,665 INFO toNotifyTaskSize = 0 + +2025-09-24 19:47:55,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:48:05,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:48:05,442 INFO [long-pulling] client count 0 + +2025-09-24 19:48:05,665 INFO toNotifyTaskSize = 0 + +2025-09-24 19:48:05,665 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:48:15,443 INFO [long-pulling] client count 0 + +2025-09-24 19:48:15,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:48:15,666 INFO toNotifyTaskSize = 0 + +2025-09-24 19:48:15,666 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:48:25,445 INFO [long-pulling] client count 0 + +2025-09-24 19:48:25,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:48:25,668 INFO toNotifyTaskSize = 0 + +2025-09-24 19:48:25,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:48:35,446 INFO [long-pulling] client count 0 + +2025-09-24 19:48:35,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:48:35,668 INFO toNotifyTaskSize = 0 + +2025-09-24 19:48:35,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:48:45,449 INFO [long-pulling] client count 0 + +2025-09-24 19:48:45,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:48:45,669 INFO toNotifyTaskSize = 0 + +2025-09-24 19:48:45,669 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:48:55,449 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:48:55,449 INFO [long-pulling] client count 0 + +2025-09-24 19:48:55,671 INFO toNotifyTaskSize = 0 + +2025-09-24 19:48:55,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:49:05,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:49:05,450 INFO [long-pulling] client count 0 + +2025-09-24 19:49:05,672 INFO toNotifyTaskSize = 0 + +2025-09-24 19:49:05,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:49:15,450 INFO [long-pulling] client count 0 + +2025-09-24 19:49:15,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:49:15,672 INFO toNotifyTaskSize = 0 + +2025-09-24 19:49:15,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:49:25,452 INFO [long-pulling] client count 0 + +2025-09-24 19:49:25,452 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:49:25,674 INFO toNotifyTaskSize = 0 + +2025-09-24 19:49:25,674 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:49:35,452 INFO [long-pulling] client count 0 + +2025-09-24 19:49:35,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:49:35,676 INFO toNotifyTaskSize = 0 + +2025-09-24 19:49:35,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:49:45,454 INFO [long-pulling] client count 0 + +2025-09-24 19:49:45,454 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:49:45,677 INFO toNotifyTaskSize = 0 + +2025-09-24 19:49:45,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:49:55,455 INFO [long-pulling] client count 0 + +2025-09-24 19:49:55,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:49:55,679 INFO toNotifyTaskSize = 0 + +2025-09-24 19:49:55,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:50:05,456 INFO [long-pulling] client count 0 + +2025-09-24 19:50:05,456 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:50:05,680 INFO toNotifyTaskSize = 0 + +2025-09-24 19:50:05,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:50:15,457 INFO [long-pulling] client count 0 + +2025-09-24 19:50:15,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:50:15,682 INFO toNotifyTaskSize = 0 + +2025-09-24 19:50:15,682 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:50:25,458 INFO [long-pulling] client count 0 + +2025-09-24 19:50:25,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:50:25,683 INFO toNotifyTaskSize = 0 + +2025-09-24 19:50:25,683 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:50:35,461 INFO [long-pulling] client count 0 + +2025-09-24 19:50:35,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:50:35,685 INFO toNotifyTaskSize = 0 + +2025-09-24 19:50:35,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:50:45,462 INFO [long-pulling] client count 0 + +2025-09-24 19:50:45,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:50:45,685 INFO toNotifyTaskSize = 0 + +2025-09-24 19:50:45,686 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:50:55,464 INFO [long-pulling] client count 0 + +2025-09-24 19:50:55,464 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:50:55,687 INFO toNotifyTaskSize = 0 + +2025-09-24 19:50:55,688 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:51:05,467 INFO [long-pulling] client count 0 + +2025-09-24 19:51:05,467 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:51:05,689 INFO toNotifyTaskSize = 0 + +2025-09-24 19:51:05,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:51:15,469 INFO [long-pulling] client count 0 + +2025-09-24 19:51:15,469 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:51:15,691 INFO toNotifyTaskSize = 0 + +2025-09-24 19:51:15,691 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:51:25,470 INFO [long-pulling] client count 0 + +2025-09-24 19:51:25,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:51:25,693 INFO toNotifyTaskSize = 0 + +2025-09-24 19:51:25,693 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:51:35,473 INFO [long-pulling] client count 0 + +2025-09-24 19:51:35,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:51:35,693 INFO toNotifyTaskSize = 0 + +2025-09-24 19:51:35,693 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:51:45,473 INFO [long-pulling] client count 0 + +2025-09-24 19:51:45,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:51:45,694 INFO toNotifyTaskSize = 0 + +2025-09-24 19:51:45,694 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:51:55,474 INFO [long-pulling] client count 0 + +2025-09-24 19:51:55,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:51:55,696 INFO toNotifyTaskSize = 0 + +2025-09-24 19:51:55,696 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:52:05,475 INFO [long-pulling] client count 0 + +2025-09-24 19:52:05,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:52:05,697 INFO toNotifyTaskSize = 0 + +2025-09-24 19:52:05,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:52:15,475 INFO [long-pulling] client count 0 + +2025-09-24 19:52:15,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:52:15,699 INFO toNotifyTaskSize = 0 + +2025-09-24 19:52:15,699 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:52:25,476 INFO [long-pulling] client count 0 + +2025-09-24 19:52:25,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:52:25,699 INFO toNotifyTaskSize = 0 + +2025-09-24 19:52:25,699 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:52:35,477 INFO [long-pulling] client count 0 + +2025-09-24 19:52:35,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:52:35,699 INFO toNotifyTaskSize = 0 + +2025-09-24 19:52:35,700 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:52:45,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:52:45,479 INFO [long-pulling] client count 0 + +2025-09-24 19:52:45,700 INFO toNotifyTaskSize = 0 + +2025-09-24 19:52:45,700 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:52:55,481 INFO [long-pulling] client count 0 + +2025-09-24 19:52:55,481 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:52:55,700 INFO toNotifyTaskSize = 0 + +2025-09-24 19:52:55,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:53:05,481 INFO [long-pulling] client count 0 + +2025-09-24 19:53:05,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:53:05,701 INFO toNotifyTaskSize = 0 + +2025-09-24 19:53:05,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:53:15,482 INFO [long-pulling] client count 0 + +2025-09-24 19:53:15,482 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:53:15,702 INFO toNotifyTaskSize = 0 + +2025-09-24 19:53:15,702 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:53:25,485 INFO [long-pulling] client count 0 + +2025-09-24 19:53:25,485 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:53:25,703 INFO toNotifyTaskSize = 0 + +2025-09-24 19:53:25,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:53:35,488 INFO [long-pulling] client count 0 + +2025-09-24 19:53:35,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:53:35,705 INFO toNotifyTaskSize = 0 + +2025-09-24 19:53:35,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:53:45,488 INFO [long-pulling] client count 0 + +2025-09-24 19:53:45,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:53:45,705 INFO toNotifyTaskSize = 0 + +2025-09-24 19:53:45,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:53:55,489 INFO [long-pulling] client count 0 + +2025-09-24 19:53:55,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:53:55,706 INFO toNotifyTaskSize = 0 + +2025-09-24 19:53:55,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:54:05,491 INFO [long-pulling] client count 0 + +2025-09-24 19:54:05,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:54:05,708 INFO toNotifyTaskSize = 0 + +2025-09-24 19:54:05,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:54:15,492 INFO [long-pulling] client count 0 + +2025-09-24 19:54:15,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:54:15,709 INFO toNotifyTaskSize = 0 + +2025-09-24 19:54:15,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:54:25,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:54:25,494 INFO [long-pulling] client count 0 + +2025-09-24 19:54:25,709 INFO toNotifyTaskSize = 0 + +2025-09-24 19:54:25,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:54:35,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:54:35,494 INFO [long-pulling] client count 0 + +2025-09-24 19:54:35,709 INFO toNotifyTaskSize = 0 + +2025-09-24 19:54:35,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:54:45,496 INFO [long-pulling] client count 0 + +2025-09-24 19:54:45,497 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:54:45,710 INFO toNotifyTaskSize = 0 + +2025-09-24 19:54:45,710 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:54:55,499 INFO [long-pulling] client count 0 + +2025-09-24 19:54:55,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:54:55,711 INFO toNotifyTaskSize = 0 + +2025-09-24 19:54:55,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:55:05,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:55:05,501 INFO [long-pulling] client count 0 + +2025-09-24 19:55:05,713 INFO toNotifyTaskSize = 0 + +2025-09-24 19:55:05,713 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:55:15,501 INFO [long-pulling] client count 0 + +2025-09-24 19:55:15,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:55:15,715 INFO toNotifyTaskSize = 0 + +2025-09-24 19:55:15,715 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:55:25,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:55:25,502 INFO [long-pulling] client count 0 + +2025-09-24 19:55:25,717 INFO toNotifyTaskSize = 0 + +2025-09-24 19:55:25,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:55:35,504 INFO [long-pulling] client count 0 + +2025-09-24 19:55:35,504 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:55:35,717 INFO toNotifyTaskSize = 0 + +2025-09-24 19:55:35,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:55:45,505 INFO [long-pulling] client count 0 + +2025-09-24 19:55:45,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:55:45,718 INFO toNotifyTaskSize = 0 + +2025-09-24 19:55:45,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:55:55,506 INFO [long-pulling] client count 0 + +2025-09-24 19:55:55,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:55:55,718 INFO toNotifyTaskSize = 0 + +2025-09-24 19:55:55,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:56:05,507 INFO [long-pulling] client count 0 + +2025-09-24 19:56:05,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:56:05,720 INFO toNotifyTaskSize = 0 + +2025-09-24 19:56:05,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:56:15,508 INFO [long-pulling] client count 0 + +2025-09-24 19:56:15,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:56:15,722 INFO toNotifyTaskSize = 0 + +2025-09-24 19:56:15,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:56:25,509 INFO [long-pulling] client count 0 + +2025-09-24 19:56:25,509 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:56:25,725 INFO toNotifyTaskSize = 0 + +2025-09-24 19:56:25,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:56:35,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:56:35,512 INFO [long-pulling] client count 0 + +2025-09-24 19:56:35,726 INFO toNotifyTaskSize = 0 + +2025-09-24 19:56:35,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:56:45,514 INFO [long-pulling] client count 0 + +2025-09-24 19:56:45,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:56:45,726 INFO toNotifyTaskSize = 0 + +2025-09-24 19:56:45,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:56:55,515 INFO [long-pulling] client count 0 + +2025-09-24 19:56:55,515 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:56:55,727 INFO toNotifyTaskSize = 0 + +2025-09-24 19:56:55,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:57:05,515 INFO [long-pulling] client count 0 + +2025-09-24 19:57:05,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:57:05,727 INFO toNotifyTaskSize = 0 + +2025-09-24 19:57:05,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:57:15,517 INFO [long-pulling] client count 0 + +2025-09-24 19:57:15,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:57:15,728 INFO toNotifyTaskSize = 0 + +2025-09-24 19:57:15,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:57:25,519 INFO [long-pulling] client count 0 + +2025-09-24 19:57:25,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:57:25,730 INFO toNotifyTaskSize = 0 + +2025-09-24 19:57:25,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:57:35,521 INFO [long-pulling] client count 0 + +2025-09-24 19:57:35,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:57:35,730 INFO toNotifyTaskSize = 0 + +2025-09-24 19:57:35,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:57:45,522 INFO [long-pulling] client count 0 + +2025-09-24 19:57:45,522 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:57:45,731 INFO toNotifyTaskSize = 0 + +2025-09-24 19:57:45,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:57:55,522 INFO [long-pulling] client count 0 + +2025-09-24 19:57:55,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:57:55,732 INFO toNotifyTaskSize = 0 + +2025-09-24 19:57:55,732 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:58:05,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:58:05,525 INFO [long-pulling] client count 0 + +2025-09-24 19:58:05,733 INFO toNotifyTaskSize = 0 + +2025-09-24 19:58:05,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:58:15,526 INFO [long-pulling] client count 0 + +2025-09-24 19:58:15,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:58:15,735 INFO toNotifyTaskSize = 0 + +2025-09-24 19:58:15,735 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:58:25,526 INFO [long-pulling] client count 0 + +2025-09-24 19:58:25,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:58:25,737 INFO toNotifyTaskSize = 0 + +2025-09-24 19:58:25,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:58:35,529 INFO [long-pulling] client count 0 + +2025-09-24 19:58:35,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:58:35,737 INFO toNotifyTaskSize = 0 + +2025-09-24 19:58:35,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:58:45,530 INFO [long-pulling] client count 0 + +2025-09-24 19:58:45,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:58:45,738 INFO toNotifyTaskSize = 0 + +2025-09-24 19:58:45,738 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:58:55,530 INFO [long-pulling] client count 0 + +2025-09-24 19:58:55,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:58:55,740 INFO toNotifyTaskSize = 0 + +2025-09-24 19:58:55,740 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:59:05,531 INFO [long-pulling] client count 0 + +2025-09-24 19:59:05,531 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:59:05,742 INFO toNotifyTaskSize = 0 + +2025-09-24 19:59:05,742 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:59:15,533 INFO [long-pulling] client count 0 + +2025-09-24 19:59:15,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:59:15,743 INFO toNotifyTaskSize = 0 + +2025-09-24 19:59:15,743 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:59:25,533 INFO [long-pulling] client count 0 + +2025-09-24 19:59:25,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:59:25,745 INFO toNotifyTaskSize = 0 + +2025-09-24 19:59:25,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:59:35,535 INFO [long-pulling] client count 0 + +2025-09-24 19:59:35,535 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:59:35,745 INFO toNotifyTaskSize = 0 + +2025-09-24 19:59:35,745 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:59:45,535 INFO [long-pulling] client count 0 + +2025-09-24 19:59:45,535 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:59:45,747 INFO toNotifyTaskSize = 0 + +2025-09-24 19:59:45,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 19:59:55,538 INFO [long-pulling] client count 0 + +2025-09-24 19:59:55,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 19:59:55,747 INFO toNotifyTaskSize = 0 + +2025-09-24 19:59:55,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:00:05,539 INFO [long-pulling] client count 0 + +2025-09-24 20:00:05,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:00:05,748 INFO toNotifyTaskSize = 0 + +2025-09-24 20:00:05,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:00:15,541 INFO [long-pulling] client count 0 + +2025-09-24 20:00:15,541 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:00:15,751 INFO toNotifyTaskSize = 0 + +2025-09-24 20:00:15,752 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:00:25,541 INFO [long-pulling] client count 0 + +2025-09-24 20:00:25,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:00:25,752 INFO toNotifyTaskSize = 0 + +2025-09-24 20:00:25,753 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:00:35,542 INFO [long-pulling] client count 0 + +2025-09-24 20:00:35,542 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:00:35,754 INFO toNotifyTaskSize = 0 + +2025-09-24 20:00:35,754 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:00:45,545 INFO [long-pulling] client count 0 + +2025-09-24 20:00:45,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:00:45,755 INFO toNotifyTaskSize = 0 + +2025-09-24 20:00:45,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:00:55,547 INFO [long-pulling] client count 0 + +2025-09-24 20:00:55,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:00:55,757 INFO toNotifyTaskSize = 0 + +2025-09-24 20:00:55,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:01:05,548 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:01:05,548 INFO [long-pulling] client count 0 + +2025-09-24 20:01:05,758 INFO toNotifyTaskSize = 0 + +2025-09-24 20:01:05,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:01:15,549 INFO [long-pulling] client count 0 + +2025-09-24 20:01:15,549 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:01:15,759 INFO toNotifyTaskSize = 0 + +2025-09-24 20:01:15,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:01:25,550 INFO [long-pulling] client count 0 + +2025-09-24 20:01:25,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:01:25,760 INFO toNotifyTaskSize = 0 + +2025-09-24 20:01:25,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:01:35,553 INFO [long-pulling] client count 0 + +2025-09-24 20:01:35,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:01:35,760 INFO toNotifyTaskSize = 0 + +2025-09-24 20:01:35,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:01:45,553 INFO [long-pulling] client count 0 + +2025-09-24 20:01:45,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:01:45,760 INFO toNotifyTaskSize = 0 + +2025-09-24 20:01:45,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:01:55,554 INFO [long-pulling] client count 0 + +2025-09-24 20:01:55,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:01:55,762 INFO toNotifyTaskSize = 0 + +2025-09-24 20:01:55,762 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:02:05,554 INFO [long-pulling] client count 0 + +2025-09-24 20:02:05,554 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:02:05,763 INFO toNotifyTaskSize = 0 + +2025-09-24 20:02:05,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:02:15,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:02:15,555 INFO [long-pulling] client count 0 + +2025-09-24 20:02:15,763 INFO toNotifyTaskSize = 0 + +2025-09-24 20:02:15,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:02:25,556 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:02:25,556 INFO [long-pulling] client count 0 + +2025-09-24 20:02:25,765 INFO toNotifyTaskSize = 0 + +2025-09-24 20:02:25,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:02:35,557 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:02:35,558 INFO [long-pulling] client count 0 + +2025-09-24 20:02:35,766 INFO toNotifyTaskSize = 0 + +2025-09-24 20:02:35,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:02:45,558 INFO [long-pulling] client count 0 + +2025-09-24 20:02:45,558 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:02:45,766 INFO toNotifyTaskSize = 0 + +2025-09-24 20:02:45,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:02:55,559 INFO [long-pulling] client count 0 + +2025-09-24 20:02:55,559 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:02:55,767 INFO toNotifyTaskSize = 0 + +2025-09-24 20:02:55,767 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:03:05,561 INFO [long-pulling] client count 0 + +2025-09-24 20:03:05,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:03:05,767 INFO toNotifyTaskSize = 0 + +2025-09-24 20:03:05,767 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:03:15,561 INFO [long-pulling] client count 0 + +2025-09-24 20:03:15,561 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:03:15,768 INFO toNotifyTaskSize = 0 + +2025-09-24 20:03:15,769 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:03:25,562 INFO [long-pulling] client count 0 + +2025-09-24 20:03:25,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:03:25,769 INFO toNotifyTaskSize = 0 + +2025-09-24 20:03:25,769 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:03:35,563 INFO [long-pulling] client count 0 + +2025-09-24 20:03:35,563 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:03:35,770 INFO toNotifyTaskSize = 0 + +2025-09-24 20:03:35,770 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:03:45,565 INFO [long-pulling] client count 0 + +2025-09-24 20:03:45,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:03:45,770 INFO toNotifyTaskSize = 0 + +2025-09-24 20:03:45,770 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:03:55,565 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:03:55,565 INFO [long-pulling] client count 0 + +2025-09-24 20:03:55,772 INFO toNotifyTaskSize = 0 + +2025-09-24 20:03:55,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:04:05,567 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:04:05,567 INFO [long-pulling] client count 0 + +2025-09-24 20:04:05,773 INFO toNotifyTaskSize = 0 + +2025-09-24 20:04:05,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:04:15,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:04:15,568 INFO [long-pulling] client count 0 + +2025-09-24 20:04:15,773 INFO toNotifyTaskSize = 0 + +2025-09-24 20:04:15,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:04:25,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:04:25,568 INFO [long-pulling] client count 0 + +2025-09-24 20:04:25,775 INFO toNotifyTaskSize = 0 + +2025-09-24 20:04:25,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:04:35,570 INFO [long-pulling] client count 0 + +2025-09-24 20:04:35,570 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:04:35,776 INFO toNotifyTaskSize = 0 + +2025-09-24 20:04:35,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:04:45,572 INFO [long-pulling] client count 0 + +2025-09-24 20:04:45,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:04:45,779 INFO toNotifyTaskSize = 0 + +2025-09-24 20:04:45,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:04:55,573 INFO [long-pulling] client count 0 + +2025-09-24 20:04:55,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:04:55,780 INFO toNotifyTaskSize = 0 + +2025-09-24 20:04:55,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:05:05,575 INFO [long-pulling] client count 0 + +2025-09-24 20:05:05,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:05:05,782 INFO toNotifyTaskSize = 0 + +2025-09-24 20:05:05,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:05:15,577 INFO [long-pulling] client count 0 + +2025-09-24 20:05:15,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:05:15,783 INFO toNotifyTaskSize = 0 + +2025-09-24 20:05:15,783 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:05:25,577 INFO [long-pulling] client count 0 + +2025-09-24 20:05:25,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:05:25,784 INFO toNotifyTaskSize = 0 + +2025-09-24 20:05:25,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:05:35,578 INFO [long-pulling] client count 0 + +2025-09-24 20:05:35,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:05:35,784 INFO toNotifyTaskSize = 0 + +2025-09-24 20:05:35,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:05:45,580 INFO [long-pulling] client count 0 + +2025-09-24 20:05:45,580 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:05:45,784 INFO toNotifyTaskSize = 0 + +2025-09-24 20:05:45,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:05:55,581 INFO [long-pulling] client count 0 + +2025-09-24 20:05:55,581 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:05:55,785 INFO toNotifyTaskSize = 0 + +2025-09-24 20:05:55,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:06:05,582 INFO [long-pulling] client count 0 + +2025-09-24 20:06:05,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:06:05,785 INFO toNotifyTaskSize = 0 + +2025-09-24 20:06:05,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:06:15,583 INFO [long-pulling] client count 0 + +2025-09-24 20:06:15,583 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:06:15,787 INFO toNotifyTaskSize = 0 + +2025-09-24 20:06:15,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:06:25,585 INFO [long-pulling] client count 0 + +2025-09-24 20:06:25,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:06:25,787 INFO toNotifyTaskSize = 0 + +2025-09-24 20:06:25,788 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:06:35,586 INFO [long-pulling] client count 0 + +2025-09-24 20:06:35,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:06:35,788 INFO toNotifyTaskSize = 0 + +2025-09-24 20:06:35,788 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:06:45,587 INFO [long-pulling] client count 0 + +2025-09-24 20:06:45,587 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:06:45,789 INFO toNotifyTaskSize = 0 + +2025-09-24 20:06:45,789 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:06:55,588 INFO [long-pulling] client count 0 + +2025-09-24 20:06:55,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:06:55,789 INFO toNotifyTaskSize = 0 + +2025-09-24 20:06:55,791 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:07:05,589 INFO [long-pulling] client count 0 + +2025-09-24 20:07:05,589 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:07:05,793 INFO toNotifyTaskSize = 0 + +2025-09-24 20:07:05,793 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:07:15,590 INFO [long-pulling] client count 0 + +2025-09-24 20:07:15,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:07:15,793 INFO toNotifyTaskSize = 0 + +2025-09-24 20:07:15,794 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:07:25,590 INFO [long-pulling] client count 0 + +2025-09-24 20:07:25,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:07:25,796 INFO toNotifyTaskSize = 0 + +2025-09-24 20:07:25,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:07:35,592 INFO [long-pulling] client count 0 + +2025-09-24 20:07:35,592 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:07:35,800 INFO toNotifyTaskSize = 0 + +2025-09-24 20:07:35,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:07:45,592 INFO [long-pulling] client count 0 + +2025-09-24 20:07:45,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:07:45,802 INFO toNotifyTaskSize = 0 + +2025-09-24 20:07:45,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:07:55,593 INFO [long-pulling] client count 0 + +2025-09-24 20:07:55,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:07:55,805 INFO toNotifyTaskSize = 0 + +2025-09-24 20:07:55,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:08:05,594 INFO [long-pulling] client count 0 + +2025-09-24 20:08:05,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:08:05,813 INFO toNotifyTaskSize = 0 + +2025-09-24 20:08:05,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:08:15,595 INFO [long-pulling] client count 0 + +2025-09-24 20:08:15,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:08:15,813 INFO toNotifyTaskSize = 0 + +2025-09-24 20:08:15,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:08:25,596 INFO [long-pulling] client count 0 + +2025-09-24 20:08:25,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:08:25,815 INFO toNotifyTaskSize = 0 + +2025-09-24 20:08:25,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:08:35,597 INFO [long-pulling] client count 0 + +2025-09-24 20:08:35,597 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:08:35,816 INFO toNotifyTaskSize = 0 + +2025-09-24 20:08:35,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:08:45,599 INFO [long-pulling] client count 0 + +2025-09-24 20:08:45,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:08:45,818 INFO toNotifyTaskSize = 0 + +2025-09-24 20:08:45,818 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:08:55,599 INFO [long-pulling] client count 0 + +2025-09-24 20:08:55,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:08:55,819 INFO toNotifyTaskSize = 0 + +2025-09-24 20:08:55,819 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:09:05,599 INFO [long-pulling] client count 0 + +2025-09-24 20:09:05,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:09:05,820 INFO toNotifyTaskSize = 0 + +2025-09-24 20:09:05,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:09:15,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:09:15,601 INFO [long-pulling] client count 0 + +2025-09-24 20:09:15,821 INFO toNotifyTaskSize = 0 + +2025-09-24 20:09:15,821 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:09:25,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:09:25,601 INFO [long-pulling] client count 0 + +2025-09-24 20:09:25,821 INFO toNotifyTaskSize = 0 + +2025-09-24 20:09:25,822 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:09:35,602 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:09:35,602 INFO [long-pulling] client count 0 + +2025-09-24 20:09:35,824 INFO toNotifyTaskSize = 0 + +2025-09-24 20:09:35,824 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:09:45,604 INFO [long-pulling] client count 0 + +2025-09-24 20:09:45,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:09:45,824 INFO toNotifyTaskSize = 0 + +2025-09-24 20:09:45,824 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:09:55,605 INFO [long-pulling] client count 0 + +2025-09-24 20:09:55,605 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:09:55,826 INFO toNotifyTaskSize = 0 + +2025-09-24 20:09:55,826 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:10:05,605 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:10:05,605 INFO [long-pulling] client count 0 + +2025-09-24 20:10:05,828 INFO toNotifyTaskSize = 0 + +2025-09-24 20:10:05,828 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:10:15,607 INFO [long-pulling] client count 0 + +2025-09-24 20:10:15,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:10:15,828 INFO toNotifyTaskSize = 0 + +2025-09-24 20:10:15,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:10:25,607 INFO [long-pulling] client count 0 + +2025-09-24 20:10:25,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:10:25,829 INFO toNotifyTaskSize = 0 + +2025-09-24 20:10:25,829 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:10:35,609 INFO [long-pulling] client count 0 + +2025-09-24 20:10:35,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:10:35,829 INFO toNotifyTaskSize = 0 + +2025-09-24 20:10:35,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:10:45,609 INFO [long-pulling] client count 0 + +2025-09-24 20:10:45,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:10:45,830 INFO toNotifyTaskSize = 0 + +2025-09-24 20:10:45,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:10:55,612 INFO [long-pulling] client count 0 + +2025-09-24 20:10:55,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:10:55,830 INFO toNotifyTaskSize = 0 + +2025-09-24 20:10:55,830 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:11:05,612 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:11:05,612 INFO [long-pulling] client count 0 + +2025-09-24 20:11:05,831 INFO toNotifyTaskSize = 0 + +2025-09-24 20:11:05,832 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:11:15,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:11:15,613 INFO [long-pulling] client count 0 + +2025-09-24 20:11:15,833 INFO toNotifyTaskSize = 0 + +2025-09-24 20:11:15,833 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:11:25,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:11:25,613 INFO [long-pulling] client count 0 + +2025-09-24 20:11:25,835 INFO toNotifyTaskSize = 0 + +2025-09-24 20:11:25,835 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:11:35,614 INFO [long-pulling] client count 0 + +2025-09-24 20:11:35,614 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:11:35,836 INFO toNotifyTaskSize = 0 + +2025-09-24 20:11:35,836 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:11:45,616 INFO [long-pulling] client count 0 + +2025-09-24 20:11:45,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:11:45,837 INFO toNotifyTaskSize = 0 + +2025-09-24 20:11:45,837 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:11:55,616 INFO [long-pulling] client count 0 + +2025-09-24 20:11:55,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:11:55,837 INFO toNotifyTaskSize = 0 + +2025-09-24 20:11:55,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:12:05,617 INFO [long-pulling] client count 0 + +2025-09-24 20:12:05,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:12:05,839 INFO toNotifyTaskSize = 0 + +2025-09-24 20:12:05,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:12:15,619 INFO [long-pulling] client count 0 + +2025-09-24 20:12:15,619 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:12:15,840 INFO toNotifyTaskSize = 0 + +2025-09-24 20:12:15,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:12:25,621 INFO [long-pulling] client count 0 + +2025-09-24 20:12:25,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:12:25,842 INFO toNotifyTaskSize = 0 + +2025-09-24 20:12:25,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:12:35,622 INFO [long-pulling] client count 0 + +2025-09-24 20:12:35,622 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:12:35,843 INFO toNotifyTaskSize = 0 + +2025-09-24 20:12:35,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:12:45,625 INFO [long-pulling] client count 0 + +2025-09-24 20:12:45,625 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:12:45,844 INFO toNotifyTaskSize = 0 + +2025-09-24 20:12:45,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:12:55,626 INFO [long-pulling] client count 0 + +2025-09-24 20:12:55,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:12:55,845 INFO toNotifyTaskSize = 0 + +2025-09-24 20:12:55,845 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:13:05,626 INFO [long-pulling] client count 0 + +2025-09-24 20:13:05,626 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:13:05,845 INFO toNotifyTaskSize = 0 + +2025-09-24 20:13:05,846 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:13:15,627 INFO [long-pulling] client count 0 + +2025-09-24 20:13:15,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:13:15,847 INFO toNotifyTaskSize = 0 + +2025-09-24 20:13:15,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:13:25,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:13:25,629 INFO [long-pulling] client count 0 + +2025-09-24 20:13:25,847 INFO toNotifyTaskSize = 0 + +2025-09-24 20:13:25,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:13:35,632 INFO [long-pulling] client count 0 + +2025-09-24 20:13:35,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:13:35,847 INFO toNotifyTaskSize = 0 + +2025-09-24 20:13:35,847 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:13:45,634 INFO [long-pulling] client count 0 + +2025-09-24 20:13:45,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:13:45,848 INFO toNotifyTaskSize = 0 + +2025-09-24 20:13:45,848 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:13:55,636 INFO [long-pulling] client count 0 + +2025-09-24 20:13:55,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:13:55,850 INFO toNotifyTaskSize = 0 + +2025-09-24 20:13:55,850 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:14:05,636 INFO [long-pulling] client count 0 + +2025-09-24 20:14:05,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:14:05,852 INFO toNotifyTaskSize = 0 + +2025-09-24 20:14:05,852 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:14:15,637 INFO [long-pulling] client count 0 + +2025-09-24 20:14:15,637 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:14:15,854 INFO toNotifyTaskSize = 0 + +2025-09-24 20:14:15,854 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:14:25,638 INFO [long-pulling] client count 0 + +2025-09-24 20:14:25,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:14:25,856 INFO toNotifyTaskSize = 0 + +2025-09-24 20:14:25,856 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:14:35,641 INFO [long-pulling] client count 0 + +2025-09-24 20:14:35,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:14:35,856 INFO toNotifyTaskSize = 0 + +2025-09-24 20:14:35,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:14:45,642 INFO [long-pulling] client count 0 + +2025-09-24 20:14:45,642 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:14:45,857 INFO toNotifyTaskSize = 0 + +2025-09-24 20:14:45,857 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:14:55,643 INFO [long-pulling] client count 0 + +2025-09-24 20:14:55,643 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:14:55,858 INFO toNotifyTaskSize = 0 + +2025-09-24 20:14:55,858 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:15:05,644 INFO [long-pulling] client count 0 + +2025-09-24 20:15:05,644 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:15:05,860 INFO toNotifyTaskSize = 0 + +2025-09-24 20:15:05,860 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:15:15,645 INFO [long-pulling] client count 0 + +2025-09-24 20:15:15,645 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:15:15,862 INFO toNotifyTaskSize = 0 + +2025-09-24 20:15:15,862 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:15:25,645 INFO [long-pulling] client count 0 + +2025-09-24 20:15:25,646 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:15:25,862 INFO toNotifyTaskSize = 0 + +2025-09-24 20:15:25,863 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:15:35,647 INFO [long-pulling] client count 0 + +2025-09-24 20:15:35,647 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:15:35,864 INFO toNotifyTaskSize = 0 + +2025-09-24 20:15:35,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:15:45,647 INFO [long-pulling] client count 0 + +2025-09-24 20:15:45,648 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:15:45,865 INFO toNotifyTaskSize = 0 + +2025-09-24 20:15:45,865 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:15:55,650 INFO [long-pulling] client count 0 + +2025-09-24 20:15:55,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:15:55,867 INFO toNotifyTaskSize = 0 + +2025-09-24 20:15:55,867 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:16:05,650 INFO [long-pulling] client count 0 + +2025-09-24 20:16:05,650 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:16:05,868 INFO toNotifyTaskSize = 0 + +2025-09-24 20:16:05,868 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:16:15,652 INFO [long-pulling] client count 0 + +2025-09-24 20:16:15,652 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:16:15,869 INFO toNotifyTaskSize = 0 + +2025-09-24 20:16:15,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:16:25,654 INFO [long-pulling] client count 0 + +2025-09-24 20:16:25,654 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:16:25,869 INFO toNotifyTaskSize = 0 + +2025-09-24 20:16:25,869 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:16:35,656 INFO [long-pulling] client count 0 + +2025-09-24 20:16:35,656 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:16:35,870 INFO toNotifyTaskSize = 0 + +2025-09-24 20:16:35,870 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:16:45,656 INFO [long-pulling] client count 0 + +2025-09-24 20:16:45,656 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:16:45,871 INFO toNotifyTaskSize = 0 + +2025-09-24 20:16:45,871 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:16:55,657 INFO [long-pulling] client count 0 + +2025-09-24 20:16:55,657 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:16:55,871 INFO toNotifyTaskSize = 0 + +2025-09-24 20:16:55,871 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:17:05,658 INFO [long-pulling] client count 0 + +2025-09-24 20:17:05,658 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:17:05,872 INFO toNotifyTaskSize = 0 + +2025-09-24 20:17:05,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:17:15,659 INFO [long-pulling] client count 0 + +2025-09-24 20:17:15,659 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:17:15,874 INFO toNotifyTaskSize = 0 + +2025-09-24 20:17:15,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:17:25,661 INFO [long-pulling] client count 0 + +2025-09-24 20:17:25,661 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:17:25,875 INFO toNotifyTaskSize = 0 + +2025-09-24 20:17:25,875 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:17:35,662 INFO [long-pulling] client count 0 + +2025-09-24 20:17:35,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:17:35,877 INFO toNotifyTaskSize = 0 + +2025-09-24 20:17:35,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:17:45,664 INFO [long-pulling] client count 0 + +2025-09-24 20:17:45,664 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:17:45,877 INFO toNotifyTaskSize = 0 + +2025-09-24 20:17:45,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:17:55,665 INFO [long-pulling] client count 0 + +2025-09-24 20:17:55,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:17:55,879 INFO toNotifyTaskSize = 0 + +2025-09-24 20:17:55,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:18:05,665 INFO [long-pulling] client count 0 + +2025-09-24 20:18:05,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:18:05,880 INFO toNotifyTaskSize = 0 + +2025-09-24 20:18:05,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:18:15,665 INFO [long-pulling] client count 0 + +2025-09-24 20:18:15,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:18:15,882 INFO toNotifyTaskSize = 0 + +2025-09-24 20:18:15,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:18:25,666 INFO [long-pulling] client count 0 + +2025-09-24 20:18:25,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:18:25,882 INFO toNotifyTaskSize = 0 + +2025-09-24 20:18:25,883 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:18:35,668 INFO [long-pulling] client count 0 + +2025-09-24 20:18:35,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:18:35,884 INFO toNotifyTaskSize = 0 + +2025-09-24 20:18:35,884 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:18:45,669 INFO [long-pulling] client count 0 + +2025-09-24 20:18:45,669 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:18:45,885 INFO toNotifyTaskSize = 0 + +2025-09-24 20:18:45,886 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:18:55,670 INFO [long-pulling] client count 0 + +2025-09-24 20:18:55,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:18:55,887 INFO toNotifyTaskSize = 0 + +2025-09-24 20:18:55,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:19:05,671 INFO [long-pulling] client count 0 + +2025-09-24 20:19:05,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:19:05,889 INFO toNotifyTaskSize = 0 + +2025-09-24 20:19:05,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:19:15,672 INFO [long-pulling] client count 0 + +2025-09-24 20:19:15,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:19:15,890 INFO toNotifyTaskSize = 0 + +2025-09-24 20:19:15,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:19:25,672 INFO [long-pulling] client count 0 + +2025-09-24 20:19:25,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:19:25,892 INFO toNotifyTaskSize = 0 + +2025-09-24 20:19:25,892 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:19:35,673 INFO [long-pulling] client count 0 + +2025-09-24 20:19:35,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:19:35,893 INFO toNotifyTaskSize = 0 + +2025-09-24 20:19:35,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:19:45,675 INFO [long-pulling] client count 0 + +2025-09-24 20:19:45,675 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:19:45,894 INFO toNotifyTaskSize = 0 + +2025-09-24 20:19:45,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:19:55,676 INFO [long-pulling] client count 0 + +2025-09-24 20:19:55,676 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:19:55,897 INFO toNotifyTaskSize = 0 + +2025-09-24 20:19:55,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:20:05,678 INFO [long-pulling] client count 0 + +2025-09-24 20:20:05,678 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:20:05,898 INFO toNotifyTaskSize = 0 + +2025-09-24 20:20:05,899 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:20:15,679 INFO [long-pulling] client count 0 + +2025-09-24 20:20:15,679 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:20:15,901 INFO toNotifyTaskSize = 0 + +2025-09-24 20:20:15,901 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:20:25,679 INFO [long-pulling] client count 0 + +2025-09-24 20:20:25,680 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:20:25,901 INFO toNotifyTaskSize = 0 + +2025-09-24 20:20:25,902 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:20:35,681 INFO [long-pulling] client count 0 + +2025-09-24 20:20:35,681 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:20:35,903 INFO toNotifyTaskSize = 0 + +2025-09-24 20:20:35,903 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:20:45,686 INFO [long-pulling] client count 0 + +2025-09-24 20:20:45,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:20:45,905 INFO toNotifyTaskSize = 0 + +2025-09-24 20:20:45,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:20:55,687 INFO [long-pulling] client count 0 + +2025-09-24 20:20:55,687 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:20:55,905 INFO toNotifyTaskSize = 0 + +2025-09-24 20:20:55,905 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:21:05,688 INFO [long-pulling] client count 0 + +2025-09-24 20:21:05,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:21:05,906 INFO toNotifyTaskSize = 0 + +2025-09-24 20:21:05,907 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:21:15,690 INFO [long-pulling] client count 0 + +2025-09-24 20:21:15,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:21:15,907 INFO toNotifyTaskSize = 0 + +2025-09-24 20:21:15,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:21:25,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:21:25,692 INFO [long-pulling] client count 0 + +2025-09-24 20:21:25,908 INFO toNotifyTaskSize = 0 + +2025-09-24 20:21:25,908 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:21:35,695 INFO [long-pulling] client count 0 + +2025-09-24 20:21:35,695 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:21:35,909 INFO toNotifyTaskSize = 0 + +2025-09-24 20:21:35,909 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:21:45,696 INFO [long-pulling] client count 0 + +2025-09-24 20:21:45,696 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:21:45,911 INFO toNotifyTaskSize = 0 + +2025-09-24 20:21:45,911 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:21:55,697 INFO [long-pulling] client count 0 + +2025-09-24 20:21:55,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:21:55,912 INFO toNotifyTaskSize = 0 + +2025-09-24 20:21:55,912 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:22:05,698 INFO [long-pulling] client count 0 + +2025-09-24 20:22:05,698 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:22:05,913 INFO toNotifyTaskSize = 0 + +2025-09-24 20:22:05,913 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:22:15,700 INFO [long-pulling] client count 0 + +2025-09-24 20:22:15,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:22:15,914 INFO toNotifyTaskSize = 0 + +2025-09-24 20:22:15,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:22:25,701 INFO [long-pulling] client count 0 + +2025-09-24 20:22:25,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:22:25,914 INFO toNotifyTaskSize = 0 + +2025-09-24 20:22:25,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:22:35,701 INFO [long-pulling] client count 0 + +2025-09-24 20:22:35,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:22:35,915 INFO toNotifyTaskSize = 0 + +2025-09-24 20:22:35,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:22:45,701 INFO [long-pulling] client count 0 + +2025-09-24 20:22:45,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:22:45,917 INFO toNotifyTaskSize = 0 + +2025-09-24 20:22:45,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:22:55,702 INFO [long-pulling] client count 0 + +2025-09-24 20:22:55,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:22:55,920 INFO toNotifyTaskSize = 0 + +2025-09-24 20:22:55,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:23:05,703 INFO [long-pulling] client count 0 + +2025-09-24 20:23:05,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:23:05,921 INFO toNotifyTaskSize = 0 + +2025-09-24 20:23:05,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:23:15,703 INFO [long-pulling] client count 0 + +2025-09-24 20:23:15,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:23:15,921 INFO toNotifyTaskSize = 0 + +2025-09-24 20:23:15,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:23:25,703 INFO [long-pulling] client count 0 + +2025-09-24 20:23:25,704 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:23:25,922 INFO toNotifyTaskSize = 0 + +2025-09-24 20:23:25,922 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:23:35,704 INFO [long-pulling] client count 0 + +2025-09-24 20:23:35,704 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:23:35,923 INFO toNotifyTaskSize = 0 + +2025-09-24 20:23:35,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:23:45,705 INFO [long-pulling] client count 0 + +2025-09-24 20:23:45,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:23:45,923 INFO toNotifyTaskSize = 0 + +2025-09-24 20:23:45,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:23:55,705 INFO [long-pulling] client count 0 + +2025-09-24 20:23:55,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:23:55,925 INFO toNotifyTaskSize = 0 + +2025-09-24 20:23:55,925 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:24:05,705 INFO [long-pulling] client count 0 + +2025-09-24 20:24:05,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:24:05,927 INFO toNotifyTaskSize = 0 + +2025-09-24 20:24:05,927 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:24:15,707 INFO [long-pulling] client count 0 + +2025-09-24 20:24:15,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:24:15,929 INFO toNotifyTaskSize = 0 + +2025-09-24 20:24:15,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:24:25,708 INFO [long-pulling] client count 0 + +2025-09-24 20:24:25,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:24:25,930 INFO toNotifyTaskSize = 0 + +2025-09-24 20:24:25,930 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:24:35,708 INFO [long-pulling] client count 0 + +2025-09-24 20:24:35,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:24:35,931 INFO toNotifyTaskSize = 0 + +2025-09-24 20:24:35,932 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:24:45,709 INFO [long-pulling] client count 0 + +2025-09-24 20:24:45,709 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:24:45,932 INFO toNotifyTaskSize = 0 + +2025-09-24 20:24:45,932 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:24:55,711 INFO [long-pulling] client count 0 + +2025-09-24 20:24:55,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:24:55,932 INFO toNotifyTaskSize = 0 + +2025-09-24 20:24:55,932 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:25:05,711 INFO [long-pulling] client count 0 + +2025-09-24 20:25:05,711 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:25:05,933 INFO toNotifyTaskSize = 0 + +2025-09-24 20:25:05,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:25:15,712 INFO [long-pulling] client count 0 + +2025-09-24 20:25:15,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:25:15,933 INFO toNotifyTaskSize = 0 + +2025-09-24 20:25:15,933 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:25:25,714 INFO [long-pulling] client count 0 + +2025-09-24 20:25:25,714 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:25:25,934 INFO toNotifyTaskSize = 0 + +2025-09-24 20:25:25,935 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:25:35,715 INFO [long-pulling] client count 0 + +2025-09-24 20:25:35,715 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:25:35,937 INFO toNotifyTaskSize = 0 + +2025-09-24 20:25:35,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:25:45,715 INFO [long-pulling] client count 0 + +2025-09-24 20:25:45,716 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:25:45,937 INFO toNotifyTaskSize = 0 + +2025-09-24 20:25:45,937 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:25:55,717 INFO [long-pulling] client count 0 + +2025-09-24 20:25:55,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:25:55,939 INFO toNotifyTaskSize = 0 + +2025-09-24 20:25:55,940 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:26:05,717 INFO [long-pulling] client count 0 + +2025-09-24 20:26:05,717 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:26:05,942 INFO toNotifyTaskSize = 0 + +2025-09-24 20:26:05,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:26:15,719 INFO [long-pulling] client count 0 + +2025-09-24 20:26:15,719 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:26:15,942 INFO toNotifyTaskSize = 0 + +2025-09-24 20:26:15,942 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:26:25,720 INFO [long-pulling] client count 0 + +2025-09-24 20:26:25,720 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:26:25,943 INFO toNotifyTaskSize = 0 + +2025-09-24 20:26:25,943 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:26:35,722 INFO [long-pulling] client count 0 + +2025-09-24 20:26:35,722 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:26:35,944 INFO toNotifyTaskSize = 0 + +2025-09-24 20:26:35,944 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:26:45,722 INFO [long-pulling] client count 0 + +2025-09-24 20:26:45,722 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:26:45,945 INFO toNotifyTaskSize = 0 + +2025-09-24 20:26:45,945 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:26:55,724 INFO [long-pulling] client count 0 + +2025-09-24 20:26:55,724 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:26:55,946 INFO toNotifyTaskSize = 0 + +2025-09-24 20:26:55,946 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:27:05,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:27:05,725 INFO [long-pulling] client count 0 + +2025-09-24 20:27:05,947 INFO toNotifyTaskSize = 0 + +2025-09-24 20:27:05,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:27:15,725 INFO [long-pulling] client count 0 + +2025-09-24 20:27:15,725 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:27:15,947 INFO toNotifyTaskSize = 0 + +2025-09-24 20:27:15,947 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:27:25,727 INFO [long-pulling] client count 0 + +2025-09-24 20:27:25,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:27:25,949 INFO toNotifyTaskSize = 0 + +2025-09-24 20:27:25,949 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:27:35,728 INFO [long-pulling] client count 0 + +2025-09-24 20:27:35,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:27:35,950 INFO toNotifyTaskSize = 0 + +2025-09-24 20:27:35,950 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:27:45,729 INFO [long-pulling] client count 0 + +2025-09-24 20:27:45,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:27:45,950 INFO toNotifyTaskSize = 0 + +2025-09-24 20:27:45,950 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:27:55,729 INFO [long-pulling] client count 0 + +2025-09-24 20:27:55,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:27:55,952 INFO toNotifyTaskSize = 0 + +2025-09-24 20:27:55,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:28:05,731 INFO [long-pulling] client count 0 + +2025-09-24 20:28:05,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:28:05,952 INFO toNotifyTaskSize = 0 + +2025-09-24 20:28:05,952 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:28:15,732 INFO [long-pulling] client count 0 + +2025-09-24 20:28:15,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:28:15,952 INFO toNotifyTaskSize = 0 + +2025-09-24 20:28:15,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:28:25,732 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:28:25,732 INFO [long-pulling] client count 0 + +2025-09-24 20:28:25,953 INFO toNotifyTaskSize = 0 + +2025-09-24 20:28:25,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:28:35,733 INFO [long-pulling] client count 0 + +2025-09-24 20:28:35,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:28:35,953 INFO toNotifyTaskSize = 0 + +2025-09-24 20:28:35,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:28:45,734 INFO [long-pulling] client count 0 + +2025-09-24 20:28:45,734 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:28:45,953 INFO toNotifyTaskSize = 0 + +2025-09-24 20:28:45,953 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:28:55,734 INFO [long-pulling] client count 0 + +2025-09-24 20:28:55,735 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:28:55,954 INFO toNotifyTaskSize = 0 + +2025-09-24 20:28:55,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:29:05,736 INFO [long-pulling] client count 0 + +2025-09-24 20:29:05,736 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:29:05,954 INFO toNotifyTaskSize = 0 + +2025-09-24 20:29:05,954 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:29:15,738 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:29:15,738 INFO [long-pulling] client count 0 + +2025-09-24 20:29:15,956 INFO toNotifyTaskSize = 0 + +2025-09-24 20:29:15,956 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:29:25,740 INFO [long-pulling] client count 0 + +2025-09-24 20:29:25,740 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:29:25,958 INFO toNotifyTaskSize = 0 + +2025-09-24 20:29:25,958 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:29:35,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:29:35,741 INFO [long-pulling] client count 0 + +2025-09-24 20:29:35,958 INFO toNotifyTaskSize = 0 + +2025-09-24 20:29:35,958 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:29:45,741 INFO [long-pulling] client count 0 + +2025-09-24 20:29:45,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:29:45,959 INFO toNotifyTaskSize = 0 + +2025-09-24 20:29:45,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:29:55,743 INFO [long-pulling] client count 0 + +2025-09-24 20:29:55,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:29:55,959 INFO toNotifyTaskSize = 0 + +2025-09-24 20:29:55,959 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:30:05,745 INFO [long-pulling] client count 0 + +2025-09-24 20:30:05,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:30:05,960 INFO toNotifyTaskSize = 0 + +2025-09-24 20:30:05,960 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:30:15,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:30:15,745 INFO [long-pulling] client count 0 + +2025-09-24 20:30:15,960 INFO toNotifyTaskSize = 0 + +2025-09-24 20:30:15,961 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:30:25,746 INFO [long-pulling] client count 0 + +2025-09-24 20:30:25,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:30:25,961 INFO toNotifyTaskSize = 0 + +2025-09-24 20:30:25,961 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:30:35,748 INFO [long-pulling] client count 0 + +2025-09-24 20:30:35,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:30:35,962 INFO toNotifyTaskSize = 0 + +2025-09-24 20:30:35,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:30:45,749 INFO [long-pulling] client count 0 + +2025-09-24 20:30:45,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:30:45,962 INFO toNotifyTaskSize = 0 + +2025-09-24 20:30:45,962 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:30:55,749 INFO [long-pulling] client count 0 + +2025-09-24 20:30:55,749 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:30:55,963 INFO toNotifyTaskSize = 0 + +2025-09-24 20:30:55,963 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:31:05,750 INFO [long-pulling] client count 0 + +2025-09-24 20:31:05,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:31:05,964 INFO toNotifyTaskSize = 0 + +2025-09-24 20:31:05,965 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:31:15,750 INFO [long-pulling] client count 0 + +2025-09-24 20:31:15,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:31:15,966 INFO toNotifyTaskSize = 0 + +2025-09-24 20:31:15,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:31:25,750 INFO [long-pulling] client count 0 + +2025-09-24 20:31:25,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:31:25,968 INFO toNotifyTaskSize = 0 + +2025-09-24 20:31:25,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:31:35,752 INFO [long-pulling] client count 0 + +2025-09-24 20:31:35,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:31:35,969 INFO toNotifyTaskSize = 0 + +2025-09-24 20:31:35,969 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:31:45,754 INFO [long-pulling] client count 0 + +2025-09-24 20:31:45,754 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:31:45,969 INFO toNotifyTaskSize = 0 + +2025-09-24 20:31:45,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:31:55,754 INFO [long-pulling] client count 0 + +2025-09-24 20:31:55,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:31:55,972 INFO toNotifyTaskSize = 0 + +2025-09-24 20:31:55,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:32:05,755 INFO [long-pulling] client count 0 + +2025-09-24 20:32:05,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:32:05,972 INFO toNotifyTaskSize = 0 + +2025-09-24 20:32:05,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:32:15,756 INFO [long-pulling] client count 0 + +2025-09-24 20:32:15,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:32:15,974 INFO toNotifyTaskSize = 0 + +2025-09-24 20:32:15,975 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:32:25,757 INFO [long-pulling] client count 0 + +2025-09-24 20:32:25,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:32:25,976 INFO toNotifyTaskSize = 0 + +2025-09-24 20:32:25,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:32:35,759 INFO [long-pulling] client count 0 + +2025-09-24 20:32:35,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:32:35,977 INFO toNotifyTaskSize = 0 + +2025-09-24 20:32:35,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:32:45,761 INFO [long-pulling] client count 0 + +2025-09-24 20:32:45,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:32:45,979 INFO toNotifyTaskSize = 0 + +2025-09-24 20:32:45,979 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:32:55,761 INFO [long-pulling] client count 0 + +2025-09-24 20:32:55,761 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:32:55,980 INFO toNotifyTaskSize = 0 + +2025-09-24 20:32:55,980 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:33:05,761 INFO [long-pulling] client count 0 + +2025-09-24 20:33:05,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:33:05,981 INFO toNotifyTaskSize = 0 + +2025-09-24 20:33:05,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:33:15,764 INFO [long-pulling] client count 0 + +2025-09-24 20:33:15,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:33:15,983 INFO toNotifyTaskSize = 0 + +2025-09-24 20:33:15,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:33:25,765 INFO [long-pulling] client count 0 + +2025-09-24 20:33:25,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:33:25,984 INFO toNotifyTaskSize = 0 + +2025-09-24 20:33:25,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:33:35,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:33:35,766 INFO [long-pulling] client count 0 + +2025-09-24 20:33:35,986 INFO toNotifyTaskSize = 0 + +2025-09-24 20:33:35,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:33:45,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:33:45,767 INFO [long-pulling] client count 0 + +2025-09-24 20:33:45,988 INFO toNotifyTaskSize = 0 + +2025-09-24 20:33:45,988 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:33:55,768 INFO [long-pulling] client count 0 + +2025-09-24 20:33:55,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:33:55,990 INFO toNotifyTaskSize = 0 + +2025-09-24 20:33:55,990 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:34:05,769 INFO [long-pulling] client count 0 + +2025-09-24 20:34:05,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:34:05,992 INFO toNotifyTaskSize = 0 + +2025-09-24 20:34:05,992 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:34:15,769 INFO [long-pulling] client count 0 + +2025-09-24 20:34:15,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:34:15,993 INFO toNotifyTaskSize = 0 + +2025-09-24 20:34:15,993 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:34:25,770 INFO [long-pulling] client count 0 + +2025-09-24 20:34:25,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:34:25,994 INFO toNotifyTaskSize = 0 + +2025-09-24 20:34:25,994 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:34:35,771 INFO [long-pulling] client count 0 + +2025-09-24 20:34:35,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:34:35,996 INFO toNotifyTaskSize = 0 + +2025-09-24 20:34:35,996 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:34:45,772 INFO [long-pulling] client count 0 + +2025-09-24 20:34:45,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:34:45,998 INFO toNotifyTaskSize = 0 + +2025-09-24 20:34:45,998 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:34:55,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:34:55,774 INFO [long-pulling] client count 0 + +2025-09-24 20:34:56,000 INFO toNotifyTaskSize = 0 + +2025-09-24 20:34:56,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:35:05,774 INFO [long-pulling] client count 0 + +2025-09-24 20:35:05,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:35:06,000 INFO toNotifyTaskSize = 0 + +2025-09-24 20:35:06,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:35:15,775 INFO [long-pulling] client count 0 + +2025-09-24 20:35:15,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:35:16,001 INFO toNotifyTaskSize = 0 + +2025-09-24 20:35:16,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:35:25,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:35:25,779 INFO [long-pulling] client count 0 + +2025-09-24 20:35:26,002 INFO toNotifyTaskSize = 0 + +2025-09-24 20:35:26,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:35:35,782 INFO [long-pulling] client count 0 + +2025-09-24 20:35:35,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:35:36,002 INFO toNotifyTaskSize = 0 + +2025-09-24 20:35:36,002 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:35:45,783 INFO [long-pulling] client count 0 + +2025-09-24 20:35:45,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:35:46,003 INFO toNotifyTaskSize = 0 + +2025-09-24 20:35:46,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:35:55,785 INFO [long-pulling] client count 0 + +2025-09-24 20:35:55,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:35:56,006 INFO toNotifyTaskSize = 0 + +2025-09-24 20:35:56,006 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:36:05,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:36:05,786 INFO [long-pulling] client count 0 + +2025-09-24 20:36:06,007 INFO toNotifyTaskSize = 0 + +2025-09-24 20:36:06,007 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:36:15,787 INFO [long-pulling] client count 0 + +2025-09-24 20:36:15,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:36:16,009 INFO toNotifyTaskSize = 0 + +2025-09-24 20:36:16,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:36:25,787 INFO [long-pulling] client count 0 + +2025-09-24 20:36:25,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:36:26,009 INFO toNotifyTaskSize = 0 + +2025-09-24 20:36:26,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:36:35,788 INFO [long-pulling] client count 0 + +2025-09-24 20:36:35,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:36:36,010 INFO toNotifyTaskSize = 0 + +2025-09-24 20:36:36,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:36:45,790 INFO [long-pulling] client count 0 + +2025-09-24 20:36:45,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:36:46,010 INFO toNotifyTaskSize = 0 + +2025-09-24 20:36:46,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:36:55,791 INFO [long-pulling] client count 0 + +2025-09-24 20:36:55,791 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:36:56,012 INFO toNotifyTaskSize = 0 + +2025-09-24 20:36:56,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:37:05,792 INFO [long-pulling] client count 0 + +2025-09-24 20:37:05,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:37:06,012 INFO toNotifyTaskSize = 0 + +2025-09-24 20:37:06,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:37:15,792 INFO [long-pulling] client count 0 + +2025-09-24 20:37:15,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:37:16,013 INFO toNotifyTaskSize = 0 + +2025-09-24 20:37:16,013 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:37:25,793 INFO [long-pulling] client count 0 + +2025-09-24 20:37:25,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:37:26,014 INFO toNotifyTaskSize = 0 + +2025-09-24 20:37:26,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:37:35,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:37:35,795 INFO [long-pulling] client count 0 + +2025-09-24 20:37:36,016 INFO toNotifyTaskSize = 0 + +2025-09-24 20:37:36,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:37:45,796 INFO [long-pulling] client count 0 + +2025-09-24 20:37:45,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:37:46,018 INFO toNotifyTaskSize = 0 + +2025-09-24 20:37:46,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:37:55,797 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:37:55,797 INFO [long-pulling] client count 0 + +2025-09-24 20:37:56,018 INFO toNotifyTaskSize = 0 + +2025-09-24 20:37:56,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:38:05,799 INFO [long-pulling] client count 0 + +2025-09-24 20:38:05,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:38:06,019 INFO toNotifyTaskSize = 0 + +2025-09-24 20:38:06,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:38:15,801 INFO [long-pulling] client count 0 + +2025-09-24 20:38:15,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:38:16,020 INFO toNotifyTaskSize = 0 + +2025-09-24 20:38:16,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:38:25,803 INFO [long-pulling] client count 0 + +2025-09-24 20:38:25,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:38:26,020 INFO toNotifyTaskSize = 0 + +2025-09-24 20:38:26,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:38:35,804 INFO [long-pulling] client count 0 + +2025-09-24 20:38:35,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:38:36,021 INFO toNotifyTaskSize = 0 + +2025-09-24 20:38:36,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:38:45,807 INFO [long-pulling] client count 0 + +2025-09-24 20:38:45,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:38:46,022 INFO toNotifyTaskSize = 0 + +2025-09-24 20:38:46,022 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:38:55,808 INFO [long-pulling] client count 0 + +2025-09-24 20:38:55,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:38:56,023 INFO toNotifyTaskSize = 0 + +2025-09-24 20:38:56,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:39:05,809 INFO [long-pulling] client count 0 + +2025-09-24 20:39:05,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:39:06,023 INFO toNotifyTaskSize = 0 + +2025-09-24 20:39:06,023 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:39:15,809 INFO [long-pulling] client count 0 + +2025-09-24 20:39:15,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:39:16,024 INFO toNotifyTaskSize = 0 + +2025-09-24 20:39:16,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:39:25,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:39:25,810 INFO [long-pulling] client count 0 + +2025-09-24 20:39:26,024 INFO toNotifyTaskSize = 0 + +2025-09-24 20:39:26,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:39:35,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:39:35,812 INFO [long-pulling] client count 0 + +2025-09-24 20:39:36,024 INFO toNotifyTaskSize = 0 + +2025-09-24 20:39:36,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:39:45,813 INFO [long-pulling] client count 0 + +2025-09-24 20:39:45,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:39:46,025 INFO toNotifyTaskSize = 0 + +2025-09-24 20:39:46,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:39:55,813 INFO [long-pulling] client count 0 + +2025-09-24 20:39:55,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:39:56,026 INFO toNotifyTaskSize = 0 + +2025-09-24 20:39:56,027 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:40:05,813 INFO [long-pulling] client count 0 + +2025-09-24 20:40:05,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:40:06,028 INFO toNotifyTaskSize = 0 + +2025-09-24 20:40:06,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:40:15,814 INFO [long-pulling] client count 0 + +2025-09-24 20:40:15,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:40:16,028 INFO toNotifyTaskSize = 0 + +2025-09-24 20:40:16,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:40:25,814 INFO [long-pulling] client count 0 + +2025-09-24 20:40:25,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:40:26,028 INFO toNotifyTaskSize = 0 + +2025-09-24 20:40:26,028 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:40:35,817 INFO [long-pulling] client count 0 + +2025-09-24 20:40:35,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:40:36,030 INFO toNotifyTaskSize = 0 + +2025-09-24 20:40:36,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:40:45,818 INFO [long-pulling] client count 0 + +2025-09-24 20:40:45,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:40:46,031 INFO toNotifyTaskSize = 0 + +2025-09-24 20:40:46,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:40:55,820 INFO [long-pulling] client count 0 + +2025-09-24 20:40:55,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:40:56,032 INFO toNotifyTaskSize = 0 + +2025-09-24 20:40:56,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:41:05,820 INFO [long-pulling] client count 0 + +2025-09-24 20:41:05,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:41:06,032 INFO toNotifyTaskSize = 0 + +2025-09-24 20:41:06,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:41:15,820 INFO [long-pulling] client count 0 + +2025-09-24 20:41:15,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:41:16,033 INFO toNotifyTaskSize = 0 + +2025-09-24 20:41:16,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:41:25,822 INFO [long-pulling] client count 0 + +2025-09-24 20:41:25,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:41:26,033 INFO toNotifyTaskSize = 0 + +2025-09-24 20:41:26,033 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:41:35,824 INFO [long-pulling] client count 0 + +2025-09-24 20:41:35,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:41:36,034 INFO toNotifyTaskSize = 0 + +2025-09-24 20:41:36,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:41:45,824 INFO [long-pulling] client count 0 + +2025-09-24 20:41:45,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:41:46,034 INFO toNotifyTaskSize = 0 + +2025-09-24 20:41:46,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:41:55,825 INFO [long-pulling] client count 0 + +2025-09-24 20:41:55,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:41:56,035 INFO toNotifyTaskSize = 0 + +2025-09-24 20:41:56,035 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:42:05,827 INFO [long-pulling] client count 0 + +2025-09-24 20:42:05,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:42:06,035 INFO toNotifyTaskSize = 0 + +2025-09-24 20:42:06,035 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:42:15,828 INFO [long-pulling] client count 0 + +2025-09-24 20:42:15,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:42:16,039 INFO toNotifyTaskSize = 0 + +2025-09-24 20:42:16,039 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:42:25,829 INFO [long-pulling] client count 0 + +2025-09-24 20:42:25,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:42:26,039 INFO toNotifyTaskSize = 0 + +2025-09-24 20:42:26,039 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:42:35,829 INFO [long-pulling] client count 0 + +2025-09-24 20:42:35,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:42:36,040 INFO toNotifyTaskSize = 0 + +2025-09-24 20:42:36,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:42:45,830 INFO [long-pulling] client count 0 + +2025-09-24 20:42:45,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:42:46,040 INFO toNotifyTaskSize = 0 + +2025-09-24 20:42:46,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:42:55,831 INFO [long-pulling] client count 0 + +2025-09-24 20:42:55,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:42:56,041 INFO toNotifyTaskSize = 0 + +2025-09-24 20:42:56,041 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:43:05,832 INFO [long-pulling] client count 0 + +2025-09-24 20:43:05,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:43:06,041 INFO toNotifyTaskSize = 0 + +2025-09-24 20:43:06,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:43:15,833 INFO [long-pulling] client count 0 + +2025-09-24 20:43:15,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:43:16,042 INFO toNotifyTaskSize = 0 + +2025-09-24 20:43:16,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:43:25,834 INFO [long-pulling] client count 0 + +2025-09-24 20:43:25,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:43:26,042 INFO toNotifyTaskSize = 0 + +2025-09-24 20:43:26,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:43:35,835 INFO [long-pulling] client count 0 + +2025-09-24 20:43:35,835 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:43:36,043 INFO toNotifyTaskSize = 0 + +2025-09-24 20:43:36,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:43:45,836 INFO [long-pulling] client count 0 + +2025-09-24 20:43:45,836 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:43:46,043 INFO toNotifyTaskSize = 0 + +2025-09-24 20:43:46,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:43:55,836 INFO [long-pulling] client count 0 + +2025-09-24 20:43:55,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:43:56,043 INFO toNotifyTaskSize = 0 + +2025-09-24 20:43:56,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:44:05,838 INFO [long-pulling] client count 0 + +2025-09-24 20:44:05,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:44:06,045 INFO toNotifyTaskSize = 0 + +2025-09-24 20:44:06,045 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:44:15,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:44:15,838 INFO [long-pulling] client count 0 + +2025-09-24 20:44:16,046 INFO toNotifyTaskSize = 0 + +2025-09-24 20:44:16,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:44:25,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:44:25,860 INFO [long-pulling] client count 0 + +2025-09-24 20:44:26,046 INFO toNotifyTaskSize = 0 + +2025-09-24 20:44:26,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:44:35,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:44:35,860 INFO [long-pulling] client count 0 + +2025-09-24 20:44:36,046 INFO toNotifyTaskSize = 0 + +2025-09-24 20:44:36,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:44:45,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:44:45,861 INFO [long-pulling] client count 0 + +2025-09-24 20:44:46,047 INFO toNotifyTaskSize = 0 + +2025-09-24 20:44:46,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:44:55,862 INFO [long-pulling] client count 0 + +2025-09-24 20:44:55,862 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:44:56,047 INFO toNotifyTaskSize = 0 + +2025-09-24 20:44:56,047 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:45:05,863 INFO [long-pulling] client count 0 + +2025-09-24 20:45:05,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:45:06,049 INFO toNotifyTaskSize = 0 + +2025-09-24 20:45:06,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:45:15,866 INFO [long-pulling] client count 0 + +2025-09-24 20:45:15,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:45:16,049 INFO toNotifyTaskSize = 0 + +2025-09-24 20:45:16,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:45:25,866 INFO [long-pulling] client count 0 + +2025-09-24 20:45:25,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:45:26,049 INFO toNotifyTaskSize = 0 + +2025-09-24 20:45:26,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:45:35,868 INFO [long-pulling] client count 0 + +2025-09-24 20:45:35,868 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:45:36,050 INFO toNotifyTaskSize = 0 + +2025-09-24 20:45:36,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:45:45,869 INFO [long-pulling] client count 0 + +2025-09-24 20:45:45,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:45:46,050 INFO toNotifyTaskSize = 0 + +2025-09-24 20:45:46,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:45:55,869 INFO [long-pulling] client count 0 + +2025-09-24 20:45:55,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:45:56,051 INFO toNotifyTaskSize = 0 + +2025-09-24 20:45:56,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:46:05,872 INFO [long-pulling] client count 0 + +2025-09-24 20:46:05,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:46:06,051 INFO toNotifyTaskSize = 0 + +2025-09-24 20:46:06,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:46:15,872 INFO [long-pulling] client count 0 + +2025-09-24 20:46:15,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:46:16,052 INFO toNotifyTaskSize = 0 + +2025-09-24 20:46:16,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:46:25,874 INFO [long-pulling] client count 0 + +2025-09-24 20:46:25,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:46:26,052 INFO toNotifyTaskSize = 0 + +2025-09-24 20:46:26,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:46:35,875 INFO [long-pulling] client count 0 + +2025-09-24 20:46:35,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:46:36,053 INFO toNotifyTaskSize = 0 + +2025-09-24 20:46:36,053 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:46:45,875 INFO [long-pulling] client count 0 + +2025-09-24 20:46:45,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:46:46,053 INFO toNotifyTaskSize = 0 + +2025-09-24 20:46:46,053 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:46:55,877 INFO [long-pulling] client count 0 + +2025-09-24 20:46:55,877 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:46:56,053 INFO toNotifyTaskSize = 0 + +2025-09-24 20:46:56,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:47:05,878 INFO [long-pulling] client count 0 + +2025-09-24 20:47:05,878 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:47:06,054 INFO toNotifyTaskSize = 0 + +2025-09-24 20:47:06,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:47:15,880 INFO [long-pulling] client count 0 + +2025-09-24 20:47:15,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:47:16,055 INFO toNotifyTaskSize = 0 + +2025-09-24 20:47:16,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:47:25,881 INFO [long-pulling] client count 0 + +2025-09-24 20:47:25,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:47:26,056 INFO toNotifyTaskSize = 0 + +2025-09-24 20:47:26,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:47:35,882 INFO [long-pulling] client count 0 + +2025-09-24 20:47:35,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:47:36,057 INFO toNotifyTaskSize = 0 + +2025-09-24 20:47:36,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:47:45,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:47:45,884 INFO [long-pulling] client count 0 + +2025-09-24 20:47:46,059 INFO toNotifyTaskSize = 0 + +2025-09-24 20:47:46,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:47:55,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:47:55,885 INFO [long-pulling] client count 0 + +2025-09-24 20:47:56,060 INFO toNotifyTaskSize = 0 + +2025-09-24 20:47:56,060 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:48:05,886 INFO [long-pulling] client count 0 + +2025-09-24 20:48:05,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:48:06,060 INFO toNotifyTaskSize = 0 + +2025-09-24 20:48:06,060 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:48:15,887 INFO [long-pulling] client count 0 + +2025-09-24 20:48:15,887 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:48:16,061 INFO toNotifyTaskSize = 0 + +2025-09-24 20:48:16,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:48:25,889 INFO [long-pulling] client count 0 + +2025-09-24 20:48:25,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:48:26,061 INFO toNotifyTaskSize = 0 + +2025-09-24 20:48:26,062 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:48:35,889 INFO [long-pulling] client count 0 + +2025-09-24 20:48:35,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:48:36,062 INFO toNotifyTaskSize = 0 + +2025-09-24 20:48:36,062 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:48:45,891 INFO [long-pulling] client count 0 + +2025-09-24 20:48:45,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:48:46,063 INFO toNotifyTaskSize = 0 + +2025-09-24 20:48:46,063 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:48:55,892 INFO [long-pulling] client count 0 + +2025-09-24 20:48:55,892 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:48:56,064 INFO toNotifyTaskSize = 0 + +2025-09-24 20:48:56,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:49:05,893 INFO [long-pulling] client count 0 + +2025-09-24 20:49:05,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:49:06,064 INFO toNotifyTaskSize = 0 + +2025-09-24 20:49:06,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:49:15,893 INFO [long-pulling] client count 0 + +2025-09-24 20:49:15,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:49:16,065 INFO toNotifyTaskSize = 0 + +2025-09-24 20:49:16,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:49:25,894 INFO [long-pulling] client count 0 + +2025-09-24 20:49:25,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:49:26,066 INFO toNotifyTaskSize = 0 + +2025-09-24 20:49:26,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:49:35,895 INFO [long-pulling] client count 0 + +2025-09-24 20:49:35,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:49:36,067 INFO toNotifyTaskSize = 0 + +2025-09-24 20:49:36,067 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:49:45,896 INFO [long-pulling] client count 0 + +2025-09-24 20:49:45,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:49:46,067 INFO toNotifyTaskSize = 0 + +2025-09-24 20:49:46,067 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:49:55,897 INFO [long-pulling] client count 0 + +2025-09-24 20:49:55,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:49:56,068 INFO toNotifyTaskSize = 0 + +2025-09-24 20:49:56,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:50:05,897 INFO [long-pulling] client count 0 + +2025-09-24 20:50:05,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:50:06,070 INFO toNotifyTaskSize = 0 + +2025-09-24 20:50:06,071 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:50:15,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:50:15,899 INFO [long-pulling] client count 0 + +2025-09-24 20:50:16,071 INFO toNotifyTaskSize = 0 + +2025-09-24 20:50:16,071 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:50:25,900 INFO [long-pulling] client count 0 + +2025-09-24 20:50:25,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:50:26,073 INFO toNotifyTaskSize = 0 + +2025-09-24 20:50:26,073 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:50:35,901 INFO [long-pulling] client count 0 + +2025-09-24 20:50:35,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:50:36,073 INFO toNotifyTaskSize = 0 + +2025-09-24 20:50:36,074 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:50:45,901 INFO [long-pulling] client count 0 + +2025-09-24 20:50:45,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:50:46,075 INFO toNotifyTaskSize = 0 + +2025-09-24 20:50:46,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:50:55,902 INFO [long-pulling] client count 0 + +2025-09-24 20:50:55,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:50:56,076 INFO toNotifyTaskSize = 0 + +2025-09-24 20:50:56,076 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:51:05,904 INFO [long-pulling] client count 0 + +2025-09-24 20:51:05,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:51:06,077 INFO toNotifyTaskSize = 0 + +2025-09-24 20:51:06,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:51:15,905 INFO [long-pulling] client count 0 + +2025-09-24 20:51:15,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:51:16,078 INFO toNotifyTaskSize = 0 + +2025-09-24 20:51:16,078 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:51:25,908 INFO [long-pulling] client count 0 + +2025-09-24 20:51:25,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:51:26,079 INFO toNotifyTaskSize = 0 + +2025-09-24 20:51:26,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:51:35,909 INFO [long-pulling] client count 0 + +2025-09-24 20:51:35,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:51:36,080 INFO toNotifyTaskSize = 0 + +2025-09-24 20:51:36,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:51:45,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:51:45,909 INFO [long-pulling] client count 0 + +2025-09-24 20:51:46,083 INFO toNotifyTaskSize = 0 + +2025-09-24 20:51:46,083 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:51:55,910 INFO [long-pulling] client count 0 + +2025-09-24 20:51:55,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:51:56,084 INFO toNotifyTaskSize = 0 + +2025-09-24 20:51:56,084 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:52:05,910 INFO [long-pulling] client count 0 + +2025-09-24 20:52:05,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:52:06,085 INFO toNotifyTaskSize = 0 + +2025-09-24 20:52:06,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:52:15,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:52:15,911 INFO [long-pulling] client count 0 + +2025-09-24 20:52:16,086 INFO toNotifyTaskSize = 0 + +2025-09-24 20:52:16,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:52:25,913 INFO [long-pulling] client count 0 + +2025-09-24 20:52:25,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:52:26,087 INFO toNotifyTaskSize = 0 + +2025-09-24 20:52:26,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:52:35,915 INFO [long-pulling] client count 0 + +2025-09-24 20:52:35,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:52:36,088 INFO toNotifyTaskSize = 0 + +2025-09-24 20:52:36,088 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:52:45,917 INFO [long-pulling] client count 0 + +2025-09-24 20:52:45,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:52:46,090 INFO toNotifyTaskSize = 0 + +2025-09-24 20:52:46,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:52:55,918 INFO [long-pulling] client count 0 + +2025-09-24 20:52:55,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:52:56,092 INFO toNotifyTaskSize = 0 + +2025-09-24 20:52:56,092 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:53:05,920 INFO [long-pulling] client count 0 + +2025-09-24 20:53:05,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:53:06,093 INFO toNotifyTaskSize = 0 + +2025-09-24 20:53:06,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:53:15,921 INFO [long-pulling] client count 0 + +2025-09-24 20:53:15,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:53:16,094 INFO toNotifyTaskSize = 0 + +2025-09-24 20:53:16,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:53:25,922 INFO [long-pulling] client count 0 + +2025-09-24 20:53:25,922 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:53:26,096 INFO toNotifyTaskSize = 0 + +2025-09-24 20:53:26,096 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:53:35,924 INFO [long-pulling] client count 0 + +2025-09-24 20:53:35,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:53:36,098 INFO toNotifyTaskSize = 0 + +2025-09-24 20:53:36,098 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:53:45,924 INFO [long-pulling] client count 0 + +2025-09-24 20:53:45,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:53:46,100 INFO toNotifyTaskSize = 0 + +2025-09-24 20:53:46,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:53:55,926 INFO [long-pulling] client count 0 + +2025-09-24 20:53:55,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:53:56,103 INFO toNotifyTaskSize = 0 + +2025-09-24 20:53:56,103 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:54:05,927 INFO [long-pulling] client count 0 + +2025-09-24 20:54:05,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:54:06,104 INFO toNotifyTaskSize = 0 + +2025-09-24 20:54:06,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:54:15,929 INFO [long-pulling] client count 0 + +2025-09-24 20:54:15,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:54:16,105 INFO toNotifyTaskSize = 0 + +2025-09-24 20:54:16,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:54:25,930 INFO [long-pulling] client count 0 + +2025-09-24 20:54:25,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:54:26,107 INFO toNotifyTaskSize = 0 + +2025-09-24 20:54:26,107 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:54:35,932 INFO [long-pulling] client count 0 + +2025-09-24 20:54:35,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:54:36,108 INFO toNotifyTaskSize = 0 + +2025-09-24 20:54:36,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:54:45,933 INFO [long-pulling] client count 0 + +2025-09-24 20:54:45,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:54:46,108 INFO toNotifyTaskSize = 0 + +2025-09-24 20:54:46,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:54:55,935 INFO [long-pulling] client count 0 + +2025-09-24 20:54:55,935 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:54:56,108 INFO toNotifyTaskSize = 0 + +2025-09-24 20:54:56,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:55:05,936 INFO [long-pulling] client count 0 + +2025-09-24 20:55:05,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:55:06,109 INFO toNotifyTaskSize = 0 + +2025-09-24 20:55:06,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:55:15,936 INFO [long-pulling] client count 0 + +2025-09-24 20:55:15,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:55:16,110 INFO toNotifyTaskSize = 0 + +2025-09-24 20:55:16,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:55:25,939 INFO [long-pulling] client count 0 + +2025-09-24 20:55:25,939 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:55:26,112 INFO toNotifyTaskSize = 0 + +2025-09-24 20:55:26,113 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:55:35,940 INFO [long-pulling] client count 0 + +2025-09-24 20:55:35,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:55:36,115 INFO toNotifyTaskSize = 0 + +2025-09-24 20:55:36,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:55:45,940 INFO [long-pulling] client count 0 + +2025-09-24 20:55:45,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:55:46,117 INFO toNotifyTaskSize = 0 + +2025-09-24 20:55:46,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:55:55,941 INFO [long-pulling] client count 0 + +2025-09-24 20:55:55,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:55:56,118 INFO toNotifyTaskSize = 0 + +2025-09-24 20:55:56,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:56:05,943 INFO [long-pulling] client count 0 + +2025-09-24 20:56:05,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:56:06,120 INFO toNotifyTaskSize = 0 + +2025-09-24 20:56:06,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:56:15,943 INFO [long-pulling] client count 0 + +2025-09-24 20:56:15,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:56:16,123 INFO toNotifyTaskSize = 0 + +2025-09-24 20:56:16,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:56:25,945 INFO [long-pulling] client count 0 + +2025-09-24 20:56:25,945 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:56:26,123 INFO toNotifyTaskSize = 0 + +2025-09-24 20:56:26,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:56:35,945 INFO [long-pulling] client count 0 + +2025-09-24 20:56:35,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:56:36,125 INFO toNotifyTaskSize = 0 + +2025-09-24 20:56:36,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:56:45,946 INFO [long-pulling] client count 0 + +2025-09-24 20:56:45,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:56:46,126 INFO toNotifyTaskSize = 0 + +2025-09-24 20:56:46,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:56:55,948 INFO [long-pulling] client count 0 + +2025-09-24 20:56:55,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:56:56,128 INFO toNotifyTaskSize = 0 + +2025-09-24 20:56:56,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:57:05,949 INFO [long-pulling] client count 0 + +2025-09-24 20:57:05,949 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:57:06,129 INFO toNotifyTaskSize = 0 + +2025-09-24 20:57:06,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:57:15,949 INFO [long-pulling] client count 0 + +2025-09-24 20:57:15,950 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:57:16,129 INFO toNotifyTaskSize = 0 + +2025-09-24 20:57:16,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:57:25,950 INFO [long-pulling] client count 0 + +2025-09-24 20:57:25,951 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:57:26,131 INFO toNotifyTaskSize = 0 + +2025-09-24 20:57:26,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:57:35,951 INFO [long-pulling] client count 0 + +2025-09-24 20:57:35,952 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:57:36,132 INFO toNotifyTaskSize = 0 + +2025-09-24 20:57:36,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:57:45,951 INFO [long-pulling] client count 0 + +2025-09-24 20:57:45,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:57:46,132 INFO toNotifyTaskSize = 0 + +2025-09-24 20:57:46,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:57:55,952 INFO [long-pulling] client count 0 + +2025-09-24 20:57:55,955 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:57:56,133 INFO toNotifyTaskSize = 0 + +2025-09-24 20:57:56,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:58:05,953 INFO [long-pulling] client count 0 + +2025-09-24 20:58:05,955 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:58:06,134 INFO toNotifyTaskSize = 0 + +2025-09-24 20:58:06,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:58:15,953 INFO [long-pulling] client count 0 + +2025-09-24 20:58:15,957 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:58:16,136 INFO toNotifyTaskSize = 0 + +2025-09-24 20:58:16,136 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:58:25,954 INFO [long-pulling] client count 0 + +2025-09-24 20:58:25,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:58:26,138 INFO toNotifyTaskSize = 0 + +2025-09-24 20:58:26,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:58:35,955 INFO [long-pulling] client count 0 + +2025-09-24 20:58:35,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:58:36,139 INFO toNotifyTaskSize = 0 + +2025-09-24 20:58:36,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:58:45,955 INFO [long-pulling] client count 0 + +2025-09-24 20:58:45,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:58:46,139 INFO toNotifyTaskSize = 0 + +2025-09-24 20:58:46,139 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:58:55,955 INFO [long-pulling] client count 0 + +2025-09-24 20:58:55,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:58:56,140 INFO toNotifyTaskSize = 0 + +2025-09-24 20:58:56,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:59:05,956 INFO [long-pulling] client count 0 + +2025-09-24 20:59:05,962 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:59:06,140 INFO toNotifyTaskSize = 0 + +2025-09-24 20:59:06,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:59:15,958 INFO [long-pulling] client count 0 + +2025-09-24 20:59:15,963 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:59:16,140 INFO toNotifyTaskSize = 0 + +2025-09-24 20:59:16,140 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:59:25,959 INFO [long-pulling] client count 0 + +2025-09-24 20:59:25,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:59:26,142 INFO toNotifyTaskSize = 0 + +2025-09-24 20:59:26,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:59:35,960 INFO [long-pulling] client count 0 + +2025-09-24 20:59:35,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:59:36,142 INFO toNotifyTaskSize = 0 + +2025-09-24 20:59:36,142 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:59:45,961 INFO [long-pulling] client count 0 + +2025-09-24 20:59:45,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:59:46,143 INFO toNotifyTaskSize = 0 + +2025-09-24 20:59:46,143 INFO toClientNotifyTaskSize = 0 + +2025-09-24 20:59:55,961 INFO [long-pulling] client count 0 + +2025-09-24 20:59:55,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 20:59:56,143 INFO toNotifyTaskSize = 0 + +2025-09-24 20:59:56,144 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:00:05,962 INFO [long-pulling] client count 0 + +2025-09-24 21:00:05,967 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:00:06,145 INFO toNotifyTaskSize = 0 + +2025-09-24 21:00:06,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:00:15,963 INFO [long-pulling] client count 0 + +2025-09-24 21:00:15,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:00:16,145 INFO toNotifyTaskSize = 0 + +2025-09-24 21:00:16,145 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:00:25,964 INFO [long-pulling] client count 0 + +2025-09-24 21:00:25,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:00:26,146 INFO toNotifyTaskSize = 0 + +2025-09-24 21:00:26,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:00:35,965 INFO [long-pulling] client count 0 + +2025-09-24 21:00:35,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:00:36,147 INFO toNotifyTaskSize = 0 + +2025-09-24 21:00:36,147 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:00:45,965 INFO [long-pulling] client count 0 + +2025-09-24 21:00:45,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:00:46,149 INFO toNotifyTaskSize = 0 + +2025-09-24 21:00:46,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:00:55,967 INFO [long-pulling] client count 0 + +2025-09-24 21:00:55,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:00:56,151 INFO toNotifyTaskSize = 0 + +2025-09-24 21:00:56,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:01:05,968 INFO [long-pulling] client count 0 + +2025-09-24 21:01:05,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:01:06,151 INFO toNotifyTaskSize = 0 + +2025-09-24 21:01:06,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:01:15,968 INFO [long-pulling] client count 0 + +2025-09-24 21:01:15,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:01:16,153 INFO toNotifyTaskSize = 0 + +2025-09-24 21:01:16,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:01:25,970 INFO [long-pulling] client count 0 + +2025-09-24 21:01:25,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:01:26,154 INFO toNotifyTaskSize = 0 + +2025-09-24 21:01:26,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:01:35,971 INFO [long-pulling] client count 0 + +2025-09-24 21:01:35,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:01:36,154 INFO toNotifyTaskSize = 0 + +2025-09-24 21:01:36,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:01:45,971 INFO [long-pulling] client count 0 + +2025-09-24 21:01:45,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:01:46,156 INFO toNotifyTaskSize = 0 + +2025-09-24 21:01:46,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:01:55,973 INFO [long-pulling] client count 0 + +2025-09-24 21:01:55,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:01:56,157 INFO toNotifyTaskSize = 0 + +2025-09-24 21:01:56,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:02:05,975 INFO [long-pulling] client count 0 + +2025-09-24 21:02:05,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:02:06,158 INFO toNotifyTaskSize = 0 + +2025-09-24 21:02:06,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:02:15,975 INFO [long-pulling] client count 0 + +2025-09-24 21:02:15,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:02:16,160 INFO toNotifyTaskSize = 0 + +2025-09-24 21:02:16,161 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:02:25,976 INFO [long-pulling] client count 0 + +2025-09-24 21:02:25,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:02:26,162 INFO toNotifyTaskSize = 0 + +2025-09-24 21:02:26,162 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:02:35,978 INFO [long-pulling] client count 0 + +2025-09-24 21:02:35,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:02:36,163 INFO toNotifyTaskSize = 0 + +2025-09-24 21:02:36,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:02:45,978 INFO [long-pulling] client count 0 + +2025-09-24 21:02:45,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:02:46,164 INFO toNotifyTaskSize = 0 + +2025-09-24 21:02:46,164 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:02:55,979 INFO [long-pulling] client count 0 + +2025-09-24 21:02:55,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:02:56,164 INFO toNotifyTaskSize = 0 + +2025-09-24 21:02:56,164 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:03:05,981 INFO [long-pulling] client count 0 + +2025-09-24 21:03:05,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:03:06,166 INFO toNotifyTaskSize = 0 + +2025-09-24 21:03:06,166 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:03:15,982 INFO [long-pulling] client count 0 + +2025-09-24 21:03:15,988 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:03:16,166 INFO toNotifyTaskSize = 0 + +2025-09-24 21:03:16,167 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:03:25,984 INFO [long-pulling] client count 0 + +2025-09-24 21:03:25,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:03:26,168 INFO toNotifyTaskSize = 0 + +2025-09-24 21:03:26,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:03:35,986 INFO [long-pulling] client count 0 + +2025-09-24 21:03:35,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:03:36,170 INFO toNotifyTaskSize = 0 + +2025-09-24 21:03:36,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:03:45,986 INFO [long-pulling] client count 0 + +2025-09-24 21:03:45,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:03:46,171 INFO toNotifyTaskSize = 0 + +2025-09-24 21:03:46,172 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:03:55,986 INFO [long-pulling] client count 0 + +2025-09-24 21:03:55,994 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:03:56,173 INFO toNotifyTaskSize = 0 + +2025-09-24 21:03:56,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:04:05,988 INFO [long-pulling] client count 0 + +2025-09-24 21:04:05,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:04:06,175 INFO toNotifyTaskSize = 0 + +2025-09-24 21:04:06,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:04:15,990 INFO [long-pulling] client count 0 + +2025-09-24 21:04:15,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:04:16,175 INFO toNotifyTaskSize = 0 + +2025-09-24 21:04:16,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:04:25,991 INFO [long-pulling] client count 0 + +2025-09-24 21:04:25,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:04:26,177 INFO toNotifyTaskSize = 0 + +2025-09-24 21:04:26,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:04:35,992 INFO [long-pulling] client count 0 + +2025-09-24 21:04:35,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:04:36,180 INFO toNotifyTaskSize = 0 + +2025-09-24 21:04:36,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:04:45,993 INFO [long-pulling] client count 0 + +2025-09-24 21:04:45,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:04:46,180 INFO toNotifyTaskSize = 0 + +2025-09-24 21:04:46,180 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:04:55,994 INFO [long-pulling] client count 0 + +2025-09-24 21:04:55,999 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:04:56,182 INFO toNotifyTaskSize = 0 + +2025-09-24 21:04:56,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:05:05,996 INFO [long-pulling] client count 0 + +2025-09-24 21:05:06,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:05:06,184 INFO toNotifyTaskSize = 0 + +2025-09-24 21:05:06,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:05:15,997 INFO [long-pulling] client count 0 + +2025-09-24 21:05:16,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:05:16,184 INFO toNotifyTaskSize = 0 + +2025-09-24 21:05:16,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:05:25,998 INFO [long-pulling] client count 0 + +2025-09-24 21:05:26,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:05:26,186 INFO toNotifyTaskSize = 0 + +2025-09-24 21:05:26,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:05:35,998 INFO [long-pulling] client count 0 + +2025-09-24 21:05:36,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:05:36,188 INFO toNotifyTaskSize = 0 + +2025-09-24 21:05:36,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:05:45,999 INFO [long-pulling] client count 0 + +2025-09-24 21:05:46,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:05:46,190 INFO toNotifyTaskSize = 0 + +2025-09-24 21:05:46,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:05:56,000 INFO [long-pulling] client count 0 + +2025-09-24 21:05:56,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:05:56,192 INFO toNotifyTaskSize = 0 + +2025-09-24 21:05:56,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:06:06,000 INFO [long-pulling] client count 0 + +2025-09-24 21:06:06,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:06:06,194 INFO toNotifyTaskSize = 0 + +2025-09-24 21:06:06,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:06:16,000 INFO [long-pulling] client count 0 + +2025-09-24 21:06:16,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:06:16,196 INFO toNotifyTaskSize = 0 + +2025-09-24 21:06:16,201 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:06:26,001 INFO [long-pulling] client count 0 + +2025-09-24 21:06:26,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:06:26,203 INFO toNotifyTaskSize = 0 + +2025-09-24 21:06:26,203 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:06:36,001 INFO [long-pulling] client count 0 + +2025-09-24 21:06:36,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:06:36,204 INFO toNotifyTaskSize = 0 + +2025-09-24 21:06:36,204 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:06:46,002 INFO [long-pulling] client count 0 + +2025-09-24 21:06:46,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:06:46,204 INFO toNotifyTaskSize = 0 + +2025-09-24 21:06:46,205 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:06:56,002 INFO [long-pulling] client count 0 + +2025-09-24 21:06:56,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:06:56,206 INFO toNotifyTaskSize = 0 + +2025-09-24 21:06:56,207 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:07:06,003 INFO [long-pulling] client count 0 + +2025-09-24 21:07:06,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:07:06,209 INFO toNotifyTaskSize = 0 + +2025-09-24 21:07:06,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:07:16,003 INFO [long-pulling] client count 0 + +2025-09-24 21:07:16,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:07:16,209 INFO toNotifyTaskSize = 0 + +2025-09-24 21:07:16,209 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:07:26,003 INFO [long-pulling] client count 0 + +2025-09-24 21:07:26,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:07:26,211 INFO toNotifyTaskSize = 0 + +2025-09-24 21:07:26,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:07:36,005 INFO [long-pulling] client count 0 + +2025-09-24 21:07:36,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:07:36,211 INFO toNotifyTaskSize = 0 + +2025-09-24 21:07:36,211 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:07:46,005 INFO [long-pulling] client count 0 + +2025-09-24 21:07:46,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:07:46,212 INFO toNotifyTaskSize = 0 + +2025-09-24 21:07:46,212 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:07:56,006 INFO [long-pulling] client count 0 + +2025-09-24 21:07:56,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:07:56,214 INFO toNotifyTaskSize = 0 + +2025-09-24 21:07:56,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:08:06,006 INFO [long-pulling] client count 0 + +2025-09-24 21:08:06,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:08:06,214 INFO toNotifyTaskSize = 0 + +2025-09-24 21:08:06,214 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:08:16,007 INFO [long-pulling] client count 0 + +2025-09-24 21:08:16,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:08:16,215 INFO toNotifyTaskSize = 0 + +2025-09-24 21:08:16,215 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:08:26,008 INFO [long-pulling] client count 0 + +2025-09-24 21:08:26,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:08:26,217 INFO toNotifyTaskSize = 0 + +2025-09-24 21:08:26,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:08:36,009 INFO [long-pulling] client count 0 + +2025-09-24 21:08:36,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:08:36,217 INFO toNotifyTaskSize = 0 + +2025-09-24 21:08:36,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:08:46,010 INFO [long-pulling] client count 0 + +2025-09-24 21:08:46,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:08:46,219 INFO toNotifyTaskSize = 0 + +2025-09-24 21:08:46,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:08:56,010 INFO [long-pulling] client count 0 + +2025-09-24 21:08:56,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:08:56,220 INFO toNotifyTaskSize = 0 + +2025-09-24 21:08:56,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:09:06,010 INFO [long-pulling] client count 0 + +2025-09-24 21:09:06,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:09:06,221 INFO toNotifyTaskSize = 0 + +2025-09-24 21:09:06,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:09:16,011 INFO [long-pulling] client count 0 + +2025-09-24 21:09:16,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:09:16,222 INFO toNotifyTaskSize = 0 + +2025-09-24 21:09:16,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:09:26,011 INFO [long-pulling] client count 0 + +2025-09-24 21:09:26,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:09:26,223 INFO toNotifyTaskSize = 0 + +2025-09-24 21:09:26,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:09:36,011 INFO [long-pulling] client count 0 + +2025-09-24 21:09:36,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:09:36,224 INFO toNotifyTaskSize = 0 + +2025-09-24 21:09:36,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:09:46,012 INFO [long-pulling] client count 0 + +2025-09-24 21:09:46,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:09:46,225 INFO toNotifyTaskSize = 0 + +2025-09-24 21:09:46,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:09:56,012 INFO [long-pulling] client count 0 + +2025-09-24 21:09:56,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:09:56,225 INFO toNotifyTaskSize = 0 + +2025-09-24 21:09:56,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:10:06,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:10:06,013 INFO [long-pulling] client count 0 + +2025-09-24 21:10:06,226 INFO toNotifyTaskSize = 0 + +2025-09-24 21:10:06,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:10:16,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:10:16,016 INFO [long-pulling] client count 0 + +2025-09-24 21:10:16,226 INFO toNotifyTaskSize = 0 + +2025-09-24 21:10:16,227 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:10:26,016 INFO [long-pulling] client count 0 + +2025-09-24 21:10:26,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:10:26,229 INFO toNotifyTaskSize = 0 + +2025-09-24 21:10:26,229 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:10:36,017 INFO [long-pulling] client count 0 + +2025-09-24 21:10:36,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:10:36,230 INFO toNotifyTaskSize = 0 + +2025-09-24 21:10:36,231 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:10:46,018 INFO [long-pulling] client count 0 + +2025-09-24 21:10:46,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:10:46,231 INFO toNotifyTaskSize = 0 + +2025-09-24 21:10:46,231 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:10:56,018 INFO [long-pulling] client count 0 + +2025-09-24 21:10:56,019 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:10:56,231 INFO toNotifyTaskSize = 0 + +2025-09-24 21:10:56,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:11:06,018 INFO [long-pulling] client count 0 + +2025-09-24 21:11:06,019 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:11:06,234 INFO toNotifyTaskSize = 0 + +2025-09-24 21:11:06,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:11:16,019 INFO [long-pulling] client count 0 + +2025-09-24 21:11:16,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:11:16,234 INFO toNotifyTaskSize = 0 + +2025-09-24 21:11:16,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:11:26,019 INFO [long-pulling] client count 0 + +2025-09-24 21:11:26,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:11:26,234 INFO toNotifyTaskSize = 0 + +2025-09-24 21:11:26,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:11:36,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:11:36,021 INFO [long-pulling] client count 0 + +2025-09-24 21:11:36,235 INFO toNotifyTaskSize = 0 + +2025-09-24 21:11:36,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:11:46,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:11:46,022 INFO [long-pulling] client count 0 + +2025-09-24 21:11:46,235 INFO toNotifyTaskSize = 0 + +2025-09-24 21:11:46,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:11:56,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:11:56,022 INFO [long-pulling] client count 0 + +2025-09-24 21:11:56,237 INFO toNotifyTaskSize = 0 + +2025-09-24 21:11:56,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:12:06,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:12:06,023 INFO [long-pulling] client count 0 + +2025-09-24 21:12:06,237 INFO toNotifyTaskSize = 0 + +2025-09-24 21:12:06,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:12:16,022 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:12:16,023 INFO [long-pulling] client count 0 + +2025-09-24 21:12:16,238 INFO toNotifyTaskSize = 0 + +2025-09-24 21:12:16,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:12:26,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:12:26,024 INFO [long-pulling] client count 0 + +2025-09-24 21:12:26,239 INFO toNotifyTaskSize = 0 + +2025-09-24 21:12:26,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:12:36,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:12:36,024 INFO [long-pulling] client count 0 + +2025-09-24 21:12:36,242 INFO toNotifyTaskSize = 0 + +2025-09-24 21:12:36,242 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:12:46,024 INFO [long-pulling] client count 0 + +2025-09-24 21:12:46,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:12:46,242 INFO toNotifyTaskSize = 0 + +2025-09-24 21:12:46,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:12:56,027 INFO [long-pulling] client count 0 + +2025-09-24 21:12:56,027 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:12:56,243 INFO toNotifyTaskSize = 0 + +2025-09-24 21:12:56,243 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:13:06,027 INFO [long-pulling] client count 0 + +2025-09-24 21:13:06,027 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:13:06,244 INFO toNotifyTaskSize = 0 + +2025-09-24 21:13:06,244 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:13:16,027 INFO [long-pulling] client count 0 + +2025-09-24 21:13:16,027 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:13:16,246 INFO toNotifyTaskSize = 0 + +2025-09-24 21:13:16,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:13:26,028 INFO [long-pulling] client count 0 + +2025-09-24 21:13:26,028 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:13:26,246 INFO toNotifyTaskSize = 0 + +2025-09-24 21:13:26,246 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:13:36,029 INFO [long-pulling] client count 0 + +2025-09-24 21:13:36,029 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:13:36,249 INFO toNotifyTaskSize = 0 + +2025-09-24 21:13:36,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:13:46,029 INFO [long-pulling] client count 0 + +2025-09-24 21:13:46,029 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:13:46,249 INFO toNotifyTaskSize = 0 + +2025-09-24 21:13:46,249 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:13:56,030 INFO [long-pulling] client count 0 + +2025-09-24 21:13:56,030 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:13:56,250 INFO toNotifyTaskSize = 0 + +2025-09-24 21:13:56,250 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:14:06,030 INFO [long-pulling] client count 0 + +2025-09-24 21:14:06,030 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:14:06,252 INFO toNotifyTaskSize = 0 + +2025-09-24 21:14:06,253 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:14:16,030 INFO [long-pulling] client count 0 + +2025-09-24 21:14:16,030 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:14:16,255 INFO toNotifyTaskSize = 0 + +2025-09-24 21:14:16,255 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:14:26,030 INFO [long-pulling] client count 0 + +2025-09-24 21:14:26,031 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:14:26,256 INFO toNotifyTaskSize = 0 + +2025-09-24 21:14:26,256 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:14:36,032 INFO [long-pulling] client count 0 + +2025-09-24 21:14:36,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:14:36,257 INFO toNotifyTaskSize = 0 + +2025-09-24 21:14:36,257 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:14:46,032 INFO [long-pulling] client count 0 + +2025-09-24 21:14:46,032 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:14:46,259 INFO toNotifyTaskSize = 0 + +2025-09-24 21:14:46,259 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:14:56,033 INFO [long-pulling] client count 0 + +2025-09-24 21:14:56,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:14:56,259 INFO toNotifyTaskSize = 0 + +2025-09-24 21:14:56,260 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:15:06,033 INFO [long-pulling] client count 0 + +2025-09-24 21:15:06,033 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:15:06,261 INFO toNotifyTaskSize = 0 + +2025-09-24 21:15:06,261 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:15:16,034 INFO [long-pulling] client count 0 + +2025-09-24 21:15:16,034 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:15:16,261 INFO toNotifyTaskSize = 0 + +2025-09-24 21:15:16,261 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:15:26,035 INFO [long-pulling] client count 0 + +2025-09-24 21:15:26,035 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:15:26,262 INFO toNotifyTaskSize = 0 + +2025-09-24 21:15:26,262 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:15:36,038 INFO [long-pulling] client count 0 + +2025-09-24 21:15:36,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:15:36,263 INFO toNotifyTaskSize = 0 + +2025-09-24 21:15:36,263 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:15:46,038 INFO [long-pulling] client count 0 + +2025-09-24 21:15:46,038 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:15:46,263 INFO toNotifyTaskSize = 0 + +2025-09-24 21:15:46,263 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:15:56,040 INFO [long-pulling] client count 0 + +2025-09-24 21:15:56,040 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:15:56,264 INFO toNotifyTaskSize = 0 + +2025-09-24 21:15:56,264 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:16:06,040 INFO [long-pulling] client count 0 + +2025-09-24 21:16:06,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:16:06,265 INFO toNotifyTaskSize = 0 + +2025-09-24 21:16:06,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:16:16,042 INFO [long-pulling] client count 0 + +2025-09-24 21:16:16,042 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:16:16,266 INFO toNotifyTaskSize = 0 + +2025-09-24 21:16:16,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:16:26,042 INFO [long-pulling] client count 0 + +2025-09-24 21:16:26,042 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:16:26,268 INFO toNotifyTaskSize = 0 + +2025-09-24 21:16:26,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:16:36,044 INFO [long-pulling] client count 0 + +2025-09-24 21:16:36,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:16:36,269 INFO toNotifyTaskSize = 0 + +2025-09-24 21:16:36,269 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:16:46,046 INFO [long-pulling] client count 0 + +2025-09-24 21:16:46,046 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:16:46,269 INFO toNotifyTaskSize = 0 + +2025-09-24 21:16:46,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:16:56,047 INFO [long-pulling] client count 0 + +2025-09-24 21:16:56,047 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:16:56,272 INFO toNotifyTaskSize = 0 + +2025-09-24 21:16:56,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:17:06,048 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:17:06,048 INFO [long-pulling] client count 0 + +2025-09-24 21:17:06,274 INFO toNotifyTaskSize = 0 + +2025-09-24 21:17:06,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:17:16,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:17:16,049 INFO [long-pulling] client count 0 + +2025-09-24 21:17:16,276 INFO toNotifyTaskSize = 0 + +2025-09-24 21:17:16,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:17:26,049 INFO [long-pulling] client count 0 + +2025-09-24 21:17:26,049 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:17:26,277 INFO toNotifyTaskSize = 0 + +2025-09-24 21:17:26,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:17:36,050 INFO [long-pulling] client count 0 + +2025-09-24 21:17:36,050 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:17:36,279 INFO toNotifyTaskSize = 0 + +2025-09-24 21:17:36,279 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:17:46,050 INFO [long-pulling] client count 0 + +2025-09-24 21:17:46,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:17:46,281 INFO toNotifyTaskSize = 0 + +2025-09-24 21:17:46,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:17:56,051 INFO [long-pulling] client count 0 + +2025-09-24 21:17:56,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:17:56,282 INFO toNotifyTaskSize = 0 + +2025-09-24 21:17:56,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:18:06,051 INFO [long-pulling] client count 0 + +2025-09-24 21:18:06,051 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:18:06,282 INFO toNotifyTaskSize = 0 + +2025-09-24 21:18:06,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:18:16,052 INFO [long-pulling] client count 0 + +2025-09-24 21:18:16,052 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:18:16,283 INFO toNotifyTaskSize = 0 + +2025-09-24 21:18:16,283 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:18:26,063 INFO [long-pulling] client count 0 + +2025-09-24 21:18:26,063 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:18:26,285 INFO toNotifyTaskSize = 0 + +2025-09-24 21:18:26,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:18:36,066 INFO [long-pulling] client count 0 + +2025-09-24 21:18:36,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:18:36,287 INFO toNotifyTaskSize = 0 + +2025-09-24 21:18:36,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:18:46,066 INFO [long-pulling] client count 0 + +2025-09-24 21:18:46,066 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:18:46,288 INFO toNotifyTaskSize = 0 + +2025-09-24 21:18:46,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:18:56,067 INFO [long-pulling] client count 0 + +2025-09-24 21:18:56,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:18:56,289 INFO toNotifyTaskSize = 0 + +2025-09-24 21:18:56,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:19:06,067 INFO [long-pulling] client count 0 + +2025-09-24 21:19:06,067 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:19:06,290 INFO toNotifyTaskSize = 0 + +2025-09-24 21:19:06,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:19:16,069 INFO [long-pulling] client count 0 + +2025-09-24 21:19:16,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:19:16,292 INFO toNotifyTaskSize = 0 + +2025-09-24 21:19:16,292 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:19:26,071 INFO [long-pulling] client count 0 + +2025-09-24 21:19:26,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:19:26,295 INFO toNotifyTaskSize = 0 + +2025-09-24 21:19:26,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:19:36,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:19:36,071 INFO [long-pulling] client count 0 + +2025-09-24 21:19:36,295 INFO toNotifyTaskSize = 0 + +2025-09-24 21:19:36,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:19:46,072 INFO [long-pulling] client count 0 + +2025-09-24 21:19:46,072 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:19:46,297 INFO toNotifyTaskSize = 0 + +2025-09-24 21:19:46,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:19:56,073 INFO [long-pulling] client count 0 + +2025-09-24 21:19:56,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:19:56,298 INFO toNotifyTaskSize = 0 + +2025-09-24 21:19:56,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:20:06,075 INFO [long-pulling] client count 0 + +2025-09-24 21:20:06,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:20:06,299 INFO toNotifyTaskSize = 0 + +2025-09-24 21:20:06,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:20:16,077 INFO [long-pulling] client count 0 + +2025-09-24 21:20:16,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:20:16,300 INFO toNotifyTaskSize = 0 + +2025-09-24 21:20:16,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:20:26,077 INFO [long-pulling] client count 0 + +2025-09-24 21:20:26,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:20:26,300 INFO toNotifyTaskSize = 0 + +2025-09-24 21:20:26,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:20:36,079 INFO [long-pulling] client count 0 + +2025-09-24 21:20:36,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:20:36,301 INFO toNotifyTaskSize = 0 + +2025-09-24 21:20:36,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:20:46,080 INFO [long-pulling] client count 0 + +2025-09-24 21:20:46,080 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:20:46,301 INFO toNotifyTaskSize = 0 + +2025-09-24 21:20:46,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:20:56,080 INFO [long-pulling] client count 0 + +2025-09-24 21:20:56,080 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:20:56,302 INFO toNotifyTaskSize = 0 + +2025-09-24 21:20:56,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:21:06,082 INFO [long-pulling] client count 0 + +2025-09-24 21:21:06,082 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:21:06,305 INFO toNotifyTaskSize = 0 + +2025-09-24 21:21:06,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:21:16,084 INFO [long-pulling] client count 0 + +2025-09-24 21:21:16,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:21:16,306 INFO toNotifyTaskSize = 0 + +2025-09-24 21:21:16,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:21:26,085 INFO [long-pulling] client count 0 + +2025-09-24 21:21:26,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:21:26,307 INFO toNotifyTaskSize = 0 + +2025-09-24 21:21:26,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:21:36,085 INFO [long-pulling] client count 0 + +2025-09-24 21:21:36,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:21:36,308 INFO toNotifyTaskSize = 0 + +2025-09-24 21:21:36,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:21:46,087 INFO [long-pulling] client count 0 + +2025-09-24 21:21:46,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:21:46,308 INFO toNotifyTaskSize = 0 + +2025-09-24 21:21:46,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:21:56,088 INFO [long-pulling] client count 0 + +2025-09-24 21:21:56,088 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:21:56,310 INFO toNotifyTaskSize = 0 + +2025-09-24 21:21:56,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:22:06,089 INFO [long-pulling] client count 0 + +2025-09-24 21:22:06,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:22:06,312 INFO toNotifyTaskSize = 0 + +2025-09-24 21:22:06,312 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:22:16,090 INFO [long-pulling] client count 0 + +2025-09-24 21:22:16,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:22:16,312 INFO toNotifyTaskSize = 0 + +2025-09-24 21:22:16,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:22:26,091 INFO [long-pulling] client count 0 + +2025-09-24 21:22:26,091 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:22:26,314 INFO toNotifyTaskSize = 0 + +2025-09-24 21:22:26,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:22:36,092 INFO [long-pulling] client count 0 + +2025-09-24 21:22:36,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:22:36,314 INFO toNotifyTaskSize = 0 + +2025-09-24 21:22:36,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:22:46,093 INFO [long-pulling] client count 0 + +2025-09-24 21:22:46,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:22:46,315 INFO toNotifyTaskSize = 0 + +2025-09-24 21:22:46,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:22:56,094 INFO [long-pulling] client count 0 + +2025-09-24 21:22:56,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:22:56,316 INFO toNotifyTaskSize = 0 + +2025-09-24 21:22:56,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:23:06,096 INFO [long-pulling] client count 0 + +2025-09-24 21:23:06,096 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:23:06,317 INFO toNotifyTaskSize = 0 + +2025-09-24 21:23:06,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:23:16,097 INFO [long-pulling] client count 0 + +2025-09-24 21:23:16,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:23:16,318 INFO toNotifyTaskSize = 0 + +2025-09-24 21:23:16,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:23:26,098 INFO [long-pulling] client count 0 + +2025-09-24 21:23:26,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:23:26,320 INFO toNotifyTaskSize = 0 + +2025-09-24 21:23:26,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:23:36,100 INFO [long-pulling] client count 0 + +2025-09-24 21:23:36,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:23:36,321 INFO toNotifyTaskSize = 0 + +2025-09-24 21:23:36,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:23:46,102 INFO [long-pulling] client count 0 + +2025-09-24 21:23:46,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:23:46,322 INFO toNotifyTaskSize = 0 + +2025-09-24 21:23:46,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:23:56,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:23:56,102 INFO [long-pulling] client count 0 + +2025-09-24 21:23:56,322 INFO toNotifyTaskSize = 0 + +2025-09-24 21:23:56,322 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:24:06,104 INFO [long-pulling] client count 0 + +2025-09-24 21:24:06,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:24:06,323 INFO toNotifyTaskSize = 0 + +2025-09-24 21:24:06,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:24:16,105 INFO [long-pulling] client count 0 + +2025-09-24 21:24:16,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:24:16,326 INFO toNotifyTaskSize = 0 + +2025-09-24 21:24:16,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:24:26,105 INFO [long-pulling] client count 0 + +2025-09-24 21:24:26,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:24:26,326 INFO toNotifyTaskSize = 0 + +2025-09-24 21:24:26,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:24:36,106 INFO [long-pulling] client count 0 + +2025-09-24 21:24:36,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:24:36,326 INFO toNotifyTaskSize = 0 + +2025-09-24 21:24:36,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:24:46,108 INFO [long-pulling] client count 0 + +2025-09-24 21:24:46,108 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:24:46,327 INFO toNotifyTaskSize = 0 + +2025-09-24 21:24:46,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:24:56,110 INFO [long-pulling] client count 0 + +2025-09-24 21:24:56,110 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:24:56,328 INFO toNotifyTaskSize = 0 + +2025-09-24 21:24:56,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:25:06,112 INFO [long-pulling] client count 0 + +2025-09-24 21:25:06,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:25:06,328 INFO toNotifyTaskSize = 0 + +2025-09-24 21:25:06,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:25:16,114 INFO [long-pulling] client count 0 + +2025-09-24 21:25:16,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:25:16,329 INFO toNotifyTaskSize = 0 + +2025-09-24 21:25:16,329 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:25:26,116 INFO [long-pulling] client count 0 + +2025-09-24 21:25:26,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:25:26,331 INFO toNotifyTaskSize = 0 + +2025-09-24 21:25:26,331 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:25:36,117 INFO [long-pulling] client count 0 + +2025-09-24 21:25:36,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:25:36,332 INFO toNotifyTaskSize = 0 + +2025-09-24 21:25:36,332 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:25:46,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:25:46,118 INFO [long-pulling] client count 0 + +2025-09-24 21:25:46,333 INFO toNotifyTaskSize = 0 + +2025-09-24 21:25:46,333 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:25:56,118 INFO [long-pulling] client count 0 + +2025-09-24 21:25:56,119 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:25:56,334 INFO toNotifyTaskSize = 0 + +2025-09-24 21:25:56,334 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:26:06,120 INFO [long-pulling] client count 0 + +2025-09-24 21:26:06,120 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:26:06,334 INFO toNotifyTaskSize = 0 + +2025-09-24 21:26:06,334 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:26:16,121 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:26:16,121 INFO [long-pulling] client count 0 + +2025-09-24 21:26:16,335 INFO toNotifyTaskSize = 0 + +2025-09-24 21:26:16,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:26:26,122 INFO [long-pulling] client count 0 + +2025-09-24 21:26:26,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:26:26,335 INFO toNotifyTaskSize = 0 + +2025-09-24 21:26:26,335 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:26:36,122 INFO [long-pulling] client count 0 + +2025-09-24 21:26:36,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:26:36,336 INFO toNotifyTaskSize = 0 + +2025-09-24 21:26:36,336 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:26:46,122 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:26:46,123 INFO [long-pulling] client count 0 + +2025-09-24 21:26:46,337 INFO toNotifyTaskSize = 0 + +2025-09-24 21:26:46,337 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:26:56,123 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:26:56,123 INFO [long-pulling] client count 0 + +2025-09-24 21:26:56,339 INFO toNotifyTaskSize = 0 + +2025-09-24 21:26:56,339 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:27:06,125 INFO [long-pulling] client count 0 + +2025-09-24 21:27:06,125 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:27:06,341 INFO toNotifyTaskSize = 0 + +2025-09-24 21:27:06,341 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:27:16,126 INFO [long-pulling] client count 0 + +2025-09-24 21:27:16,126 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:27:16,342 INFO toNotifyTaskSize = 0 + +2025-09-24 21:27:16,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:27:26,126 INFO [long-pulling] client count 0 + +2025-09-24 21:27:26,126 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:27:26,345 INFO toNotifyTaskSize = 0 + +2025-09-24 21:27:26,345 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:27:36,128 INFO [long-pulling] client count 0 + +2025-09-24 21:27:36,128 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:27:36,347 INFO toNotifyTaskSize = 0 + +2025-09-24 21:27:36,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:27:46,129 INFO [long-pulling] client count 0 + +2025-09-24 21:27:46,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:27:46,347 INFO toNotifyTaskSize = 0 + +2025-09-24 21:27:46,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:27:56,129 INFO [long-pulling] client count 0 + +2025-09-24 21:27:56,129 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:27:56,347 INFO toNotifyTaskSize = 0 + +2025-09-24 21:27:56,348 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:28:06,131 INFO [long-pulling] client count 0 + +2025-09-24 21:28:06,131 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:28:06,348 INFO toNotifyTaskSize = 0 + +2025-09-24 21:28:06,349 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:28:16,131 INFO [long-pulling] client count 0 + +2025-09-24 21:28:16,131 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:28:16,350 INFO toNotifyTaskSize = 0 + +2025-09-24 21:28:16,351 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:28:26,132 INFO [long-pulling] client count 0 + +2025-09-24 21:28:26,132 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:28:26,352 INFO toNotifyTaskSize = 0 + +2025-09-24 21:28:26,352 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:28:36,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:28:36,133 INFO [long-pulling] client count 0 + +2025-09-24 21:28:36,354 INFO toNotifyTaskSize = 0 + +2025-09-24 21:28:36,354 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:28:46,133 INFO [long-pulling] client count 0 + +2025-09-24 21:28:46,133 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:28:46,355 INFO toNotifyTaskSize = 0 + +2025-09-24 21:28:46,355 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:28:56,134 INFO [long-pulling] client count 0 + +2025-09-24 21:28:56,134 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:28:56,355 INFO toNotifyTaskSize = 0 + +2025-09-24 21:28:56,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:29:06,136 INFO [long-pulling] client count 0 + +2025-09-24 21:29:06,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:29:06,356 INFO toNotifyTaskSize = 0 + +2025-09-24 21:29:06,356 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:29:16,136 INFO [long-pulling] client count 0 + +2025-09-24 21:29:16,136 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:29:16,358 INFO toNotifyTaskSize = 0 + +2025-09-24 21:29:16,358 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:29:26,138 INFO [long-pulling] client count 0 + +2025-09-24 21:29:26,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:29:26,359 INFO toNotifyTaskSize = 0 + +2025-09-24 21:29:26,359 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:29:36,138 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:29:36,138 INFO [long-pulling] client count 0 + +2025-09-24 21:29:36,360 INFO toNotifyTaskSize = 0 + +2025-09-24 21:29:36,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:29:46,139 INFO [long-pulling] client count 0 + +2025-09-24 21:29:46,139 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:29:46,360 INFO toNotifyTaskSize = 0 + +2025-09-24 21:29:46,360 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:29:56,141 INFO [long-pulling] client count 0 + +2025-09-24 21:29:56,141 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:29:56,361 INFO toNotifyTaskSize = 0 + +2025-09-24 21:29:56,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:30:06,143 INFO [long-pulling] client count 0 + +2025-09-24 21:30:06,143 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:30:06,361 INFO toNotifyTaskSize = 0 + +2025-09-24 21:30:06,361 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:30:16,144 INFO [long-pulling] client count 0 + +2025-09-24 21:30:16,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:30:16,362 INFO toNotifyTaskSize = 0 + +2025-09-24 21:30:16,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:30:26,144 INFO [long-pulling] client count 0 + +2025-09-24 21:30:26,144 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:30:26,362 INFO toNotifyTaskSize = 0 + +2025-09-24 21:30:26,362 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:30:36,144 INFO [long-pulling] client count 0 + +2025-09-24 21:30:36,145 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:30:36,364 INFO toNotifyTaskSize = 0 + +2025-09-24 21:30:36,364 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:30:46,146 INFO [long-pulling] client count 0 + +2025-09-24 21:30:46,146 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:30:46,366 INFO toNotifyTaskSize = 0 + +2025-09-24 21:30:46,367 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:30:56,147 INFO [long-pulling] client count 0 + +2025-09-24 21:30:56,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:30:56,368 INFO toNotifyTaskSize = 0 + +2025-09-24 21:30:56,368 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:31:06,148 INFO [long-pulling] client count 0 + +2025-09-24 21:31:06,148 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:31:06,369 INFO toNotifyTaskSize = 0 + +2025-09-24 21:31:06,369 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:31:16,149 INFO [long-pulling] client count 0 + +2025-09-24 21:31:16,149 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:31:16,370 INFO toNotifyTaskSize = 0 + +2025-09-24 21:31:16,370 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:31:26,150 INFO [long-pulling] client count 0 + +2025-09-24 21:31:26,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:31:26,371 INFO toNotifyTaskSize = 0 + +2025-09-24 21:31:26,371 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:31:36,150 INFO [long-pulling] client count 0 + +2025-09-24 21:31:36,150 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:31:36,373 INFO toNotifyTaskSize = 0 + +2025-09-24 21:31:36,373 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:31:46,152 INFO [long-pulling] client count 0 + +2025-09-24 21:31:46,152 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:31:46,376 INFO toNotifyTaskSize = 0 + +2025-09-24 21:31:46,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:31:56,153 INFO [long-pulling] client count 0 + +2025-09-24 21:31:56,153 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:31:56,376 INFO toNotifyTaskSize = 0 + +2025-09-24 21:31:56,376 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:32:06,155 INFO [long-pulling] client count 0 + +2025-09-24 21:32:06,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:32:06,376 INFO toNotifyTaskSize = 0 + +2025-09-24 21:32:06,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:32:16,155 INFO [long-pulling] client count 0 + +2025-09-24 21:32:16,155 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:32:16,377 INFO toNotifyTaskSize = 0 + +2025-09-24 21:32:16,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:32:26,156 INFO [long-pulling] client count 0 + +2025-09-24 21:32:26,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:32:26,377 INFO toNotifyTaskSize = 0 + +2025-09-24 21:32:26,377 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:32:36,156 INFO [long-pulling] client count 0 + +2025-09-24 21:32:36,156 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:32:36,377 INFO toNotifyTaskSize = 0 + +2025-09-24 21:32:36,378 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:32:46,158 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:32:46,158 INFO [long-pulling] client count 0 + +2025-09-24 21:32:46,380 INFO toNotifyTaskSize = 0 + +2025-09-24 21:32:46,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:32:56,159 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:32:56,160 INFO [long-pulling] client count 0 + +2025-09-24 21:32:56,380 INFO toNotifyTaskSize = 0 + +2025-09-24 21:32:56,380 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:33:06,161 INFO [long-pulling] client count 0 + +2025-09-24 21:33:06,161 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:33:06,382 INFO toNotifyTaskSize = 0 + +2025-09-24 21:33:06,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:33:16,161 INFO [long-pulling] client count 0 + +2025-09-24 21:33:16,161 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:33:16,383 INFO toNotifyTaskSize = 0 + +2025-09-24 21:33:16,383 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:33:26,162 INFO [long-pulling] client count 0 + +2025-09-24 21:33:26,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:33:26,384 INFO toNotifyTaskSize = 0 + +2025-09-24 21:33:26,384 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:33:36,162 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:33:36,162 INFO [long-pulling] client count 0 + +2025-09-24 21:33:36,386 INFO toNotifyTaskSize = 0 + +2025-09-24 21:33:36,386 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:33:46,162 INFO [long-pulling] client count 0 + +2025-09-24 21:33:46,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:33:46,387 INFO toNotifyTaskSize = 0 + +2025-09-24 21:33:46,388 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:33:56,163 INFO [long-pulling] client count 0 + +2025-09-24 21:33:56,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:33:56,388 INFO toNotifyTaskSize = 0 + +2025-09-24 21:33:56,388 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:34:06,163 INFO [long-pulling] client count 0 + +2025-09-24 21:34:06,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:34:06,388 INFO toNotifyTaskSize = 0 + +2025-09-24 21:34:06,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:34:16,163 INFO [long-pulling] client count 0 + +2025-09-24 21:34:16,163 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:34:16,389 INFO toNotifyTaskSize = 0 + +2025-09-24 21:34:16,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:34:26,164 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:34:26,164 INFO [long-pulling] client count 0 + +2025-09-24 21:34:26,389 INFO toNotifyTaskSize = 0 + +2025-09-24 21:34:26,389 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:34:36,164 INFO [long-pulling] client count 0 + +2025-09-24 21:34:36,164 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:34:36,392 INFO toNotifyTaskSize = 0 + +2025-09-24 21:34:36,392 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:34:46,164 INFO [long-pulling] client count 0 + +2025-09-24 21:34:46,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:34:46,394 INFO toNotifyTaskSize = 0 + +2025-09-24 21:34:46,394 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:34:56,165 INFO [long-pulling] client count 0 + +2025-09-24 21:34:56,165 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:34:56,394 INFO toNotifyTaskSize = 0 + +2025-09-24 21:34:56,394 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:35:06,167 INFO [long-pulling] client count 0 + +2025-09-24 21:35:06,167 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:35:06,395 INFO toNotifyTaskSize = 0 + +2025-09-24 21:35:06,395 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:35:16,167 INFO [long-pulling] client count 0 + +2025-09-24 21:35:16,167 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:35:16,397 INFO toNotifyTaskSize = 0 + +2025-09-24 21:35:16,397 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:35:26,168 INFO [long-pulling] client count 0 + +2025-09-24 21:35:26,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:35:26,399 INFO toNotifyTaskSize = 0 + +2025-09-24 21:35:26,399 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:35:36,168 INFO [long-pulling] client count 0 + +2025-09-24 21:35:36,168 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:35:36,401 INFO toNotifyTaskSize = 0 + +2025-09-24 21:35:36,402 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:35:46,169 INFO [long-pulling] client count 0 + +2025-09-24 21:35:46,169 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:35:46,404 INFO toNotifyTaskSize = 0 + +2025-09-24 21:35:46,404 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:35:56,169 INFO [long-pulling] client count 0 + +2025-09-24 21:35:56,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:35:56,405 INFO toNotifyTaskSize = 0 + +2025-09-24 21:35:56,405 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:36:06,169 INFO [long-pulling] client count 0 + +2025-09-24 21:36:06,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:36:06,406 INFO toNotifyTaskSize = 0 + +2025-09-24 21:36:06,406 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:36:16,170 INFO [long-pulling] client count 0 + +2025-09-24 21:36:16,170 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:36:16,407 INFO toNotifyTaskSize = 0 + +2025-09-24 21:36:16,407 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:36:26,170 INFO [long-pulling] client count 0 + +2025-09-24 21:36:26,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:36:26,409 INFO toNotifyTaskSize = 0 + +2025-09-24 21:36:26,409 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:36:36,170 INFO [long-pulling] client count 0 + +2025-09-24 21:36:36,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:36:36,411 INFO toNotifyTaskSize = 0 + +2025-09-24 21:36:36,411 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:36:46,171 INFO [long-pulling] client count 0 + +2025-09-24 21:36:46,171 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:36:46,412 INFO toNotifyTaskSize = 0 + +2025-09-24 21:36:46,412 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:36:56,172 INFO [long-pulling] client count 0 + +2025-09-24 21:36:56,172 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:36:56,413 INFO toNotifyTaskSize = 0 + +2025-09-24 21:36:56,413 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:37:06,173 INFO [long-pulling] client count 0 + +2025-09-24 21:37:06,173 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:37:06,415 INFO toNotifyTaskSize = 0 + +2025-09-24 21:37:06,415 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:37:16,174 INFO [long-pulling] client count 0 + +2025-09-24 21:37:16,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:37:16,418 INFO toNotifyTaskSize = 0 + +2025-09-24 21:37:16,418 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:37:26,174 INFO [long-pulling] client count 0 + +2025-09-24 21:37:26,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:37:26,418 INFO toNotifyTaskSize = 0 + +2025-09-24 21:37:26,418 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:37:36,174 INFO [long-pulling] client count 0 + +2025-09-24 21:37:36,174 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:37:36,418 INFO toNotifyTaskSize = 0 + +2025-09-24 21:37:36,418 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:37:46,176 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:37:46,176 INFO [long-pulling] client count 0 + +2025-09-24 21:37:46,419 INFO toNotifyTaskSize = 0 + +2025-09-24 21:37:46,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:37:56,177 INFO [long-pulling] client count 0 + +2025-09-24 21:37:56,177 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:37:56,419 INFO toNotifyTaskSize = 0 + +2025-09-24 21:37:56,419 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:38:06,179 INFO [long-pulling] client count 0 + +2025-09-24 21:38:06,179 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:38:06,420 INFO toNotifyTaskSize = 0 + +2025-09-24 21:38:06,420 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:38:16,179 INFO [long-pulling] client count 0 + +2025-09-24 21:38:16,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:38:16,423 INFO toNotifyTaskSize = 0 + +2025-09-24 21:38:16,423 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:38:26,179 INFO [long-pulling] client count 0 + +2025-09-24 21:38:26,180 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:38:26,423 INFO toNotifyTaskSize = 0 + +2025-09-24 21:38:26,423 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:38:36,180 INFO [long-pulling] client count 0 + +2025-09-24 21:38:36,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:38:36,423 INFO toNotifyTaskSize = 0 + +2025-09-24 21:38:36,424 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:38:46,180 INFO [long-pulling] client count 0 + +2025-09-24 21:38:46,181 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:38:46,425 INFO toNotifyTaskSize = 0 + +2025-09-24 21:38:46,425 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:38:56,180 INFO [long-pulling] client count 0 + +2025-09-24 21:38:56,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:38:56,427 INFO toNotifyTaskSize = 0 + +2025-09-24 21:38:56,427 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:39:06,181 INFO [long-pulling] client count 0 + +2025-09-24 21:39:06,186 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:39:06,428 INFO toNotifyTaskSize = 0 + +2025-09-24 21:39:06,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:39:16,181 INFO [long-pulling] client count 0 + +2025-09-24 21:39:16,187 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:39:16,428 INFO toNotifyTaskSize = 0 + +2025-09-24 21:39:16,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:39:26,182 INFO [long-pulling] client count 0 + +2025-09-24 21:39:26,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:39:26,428 INFO toNotifyTaskSize = 0 + +2025-09-24 21:39:26,428 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:39:36,182 INFO [long-pulling] client count 0 + +2025-09-24 21:39:36,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:39:36,429 INFO toNotifyTaskSize = 0 + +2025-09-24 21:39:36,429 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:39:46,182 INFO [long-pulling] client count 0 + +2025-09-24 21:39:46,189 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:39:46,430 INFO toNotifyTaskSize = 0 + +2025-09-24 21:39:46,430 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:39:56,182 INFO [long-pulling] client count 0 + +2025-09-24 21:39:56,190 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:39:56,432 INFO toNotifyTaskSize = 0 + +2025-09-24 21:39:56,432 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:40:06,184 INFO [long-pulling] client count 0 + +2025-09-24 21:40:06,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:40:06,433 INFO toNotifyTaskSize = 0 + +2025-09-24 21:40:06,433 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:40:16,185 INFO [long-pulling] client count 0 + +2025-09-24 21:40:16,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:40:16,434 INFO toNotifyTaskSize = 0 + +2025-09-24 21:40:16,434 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:40:26,185 INFO [long-pulling] client count 0 + +2025-09-24 21:40:26,192 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:40:26,435 INFO toNotifyTaskSize = 0 + +2025-09-24 21:40:26,435 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:40:36,185 INFO [long-pulling] client count 0 + +2025-09-24 21:40:36,194 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:40:36,437 INFO toNotifyTaskSize = 0 + +2025-09-24 21:40:36,437 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:40:46,186 INFO [long-pulling] client count 0 + +2025-09-24 21:40:46,195 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:40:46,439 INFO toNotifyTaskSize = 0 + +2025-09-24 21:40:46,439 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:40:56,187 INFO [long-pulling] client count 0 + +2025-09-24 21:40:56,195 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:40:56,440 INFO toNotifyTaskSize = 0 + +2025-09-24 21:40:56,440 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:41:06,188 INFO [long-pulling] client count 0 + +2025-09-24 21:41:06,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:41:06,440 INFO toNotifyTaskSize = 0 + +2025-09-24 21:41:06,440 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:41:16,189 INFO [long-pulling] client count 0 + +2025-09-24 21:41:16,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:41:16,441 INFO toNotifyTaskSize = 0 + +2025-09-24 21:41:16,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:41:26,189 INFO [long-pulling] client count 0 + +2025-09-24 21:41:26,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:41:26,441 INFO toNotifyTaskSize = 0 + +2025-09-24 21:41:26,441 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:41:36,189 INFO [long-pulling] client count 0 + +2025-09-24 21:41:36,196 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:41:36,443 INFO toNotifyTaskSize = 0 + +2025-09-24 21:41:36,443 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:41:46,190 INFO [long-pulling] client count 0 + +2025-09-24 21:41:46,197 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:41:46,443 INFO toNotifyTaskSize = 0 + +2025-09-24 21:41:46,444 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:41:56,190 INFO [long-pulling] client count 0 + +2025-09-24 21:41:56,197 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:41:56,445 INFO toNotifyTaskSize = 0 + +2025-09-24 21:41:56,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:42:06,191 INFO [long-pulling] client count 0 + +2025-09-24 21:42:06,197 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:42:06,445 INFO toNotifyTaskSize = 0 + +2025-09-24 21:42:06,445 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:42:16,191 INFO [long-pulling] client count 0 + +2025-09-24 21:42:16,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:42:16,447 INFO toNotifyTaskSize = 0 + +2025-09-24 21:42:16,447 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:42:26,191 INFO [long-pulling] client count 0 + +2025-09-24 21:42:26,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:42:26,447 INFO toNotifyTaskSize = 0 + +2025-09-24 21:42:26,447 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:42:36,192 INFO [long-pulling] client count 0 + +2025-09-24 21:42:36,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:42:36,448 INFO toNotifyTaskSize = 0 + +2025-09-24 21:42:36,448 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:42:46,192 INFO [long-pulling] client count 0 + +2025-09-24 21:42:46,198 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:42:46,449 INFO toNotifyTaskSize = 0 + +2025-09-24 21:42:46,449 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:42:56,192 INFO [long-pulling] client count 0 + +2025-09-24 21:42:56,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:42:56,451 INFO toNotifyTaskSize = 0 + +2025-09-24 21:42:56,452 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:43:06,193 INFO [long-pulling] client count 0 + +2025-09-24 21:43:06,200 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:43:06,454 INFO toNotifyTaskSize = 0 + +2025-09-24 21:43:06,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:43:16,195 INFO [long-pulling] client count 0 + +2025-09-24 21:43:16,202 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:43:16,454 INFO toNotifyTaskSize = 0 + +2025-09-24 21:43:16,454 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:43:26,195 INFO [long-pulling] client count 0 + +2025-09-24 21:43:26,202 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:43:26,456 INFO toNotifyTaskSize = 0 + +2025-09-24 21:43:26,457 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:43:36,197 INFO [long-pulling] client count 0 + +2025-09-24 21:43:36,202 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:43:36,458 INFO toNotifyTaskSize = 0 + +2025-09-24 21:43:36,458 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:43:46,197 INFO [long-pulling] client count 0 + +2025-09-24 21:43:46,203 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:43:46,458 INFO toNotifyTaskSize = 0 + +2025-09-24 21:43:46,459 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:43:56,199 INFO [long-pulling] client count 0 + +2025-09-24 21:43:56,203 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:43:56,461 INFO toNotifyTaskSize = 0 + +2025-09-24 21:43:56,461 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:44:06,201 INFO [long-pulling] client count 0 + +2025-09-24 21:44:06,203 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:44:06,462 INFO toNotifyTaskSize = 0 + +2025-09-24 21:44:06,463 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:44:16,202 INFO [long-pulling] client count 0 + +2025-09-24 21:44:16,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:44:16,464 INFO toNotifyTaskSize = 0 + +2025-09-24 21:44:16,464 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:44:26,202 INFO [long-pulling] client count 0 + +2025-09-24 21:44:26,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:44:26,465 INFO toNotifyTaskSize = 0 + +2025-09-24 21:44:26,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:44:36,203 INFO [long-pulling] client count 0 + +2025-09-24 21:44:36,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:44:36,465 INFO toNotifyTaskSize = 0 + +2025-09-24 21:44:36,465 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:44:46,203 INFO [long-pulling] client count 0 + +2025-09-24 21:44:46,204 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:44:46,466 INFO toNotifyTaskSize = 0 + +2025-09-24 21:44:46,466 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:44:56,203 INFO [long-pulling] client count 0 + +2025-09-24 21:44:56,205 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:44:56,466 INFO toNotifyTaskSize = 0 + +2025-09-24 21:44:56,467 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:45:06,203 INFO [long-pulling] client count 0 + +2025-09-24 21:45:06,205 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:45:06,469 INFO toNotifyTaskSize = 0 + +2025-09-24 21:45:06,469 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:45:16,204 INFO [long-pulling] client count 0 + +2025-09-24 21:45:16,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:45:16,470 INFO toNotifyTaskSize = 0 + +2025-09-24 21:45:16,471 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:45:26,205 INFO [long-pulling] client count 0 + +2025-09-24 21:45:26,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:45:26,471 INFO toNotifyTaskSize = 0 + +2025-09-24 21:45:26,471 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:45:36,205 INFO [long-pulling] client count 0 + +2025-09-24 21:45:36,206 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:45:36,473 INFO toNotifyTaskSize = 0 + +2025-09-24 21:45:36,473 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:45:46,206 INFO [long-pulling] client count 0 + +2025-09-24 21:45:46,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:45:46,474 INFO toNotifyTaskSize = 0 + +2025-09-24 21:45:46,475 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:45:56,207 INFO [long-pulling] client count 0 + +2025-09-24 21:45:56,207 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:45:56,475 INFO toNotifyTaskSize = 0 + +2025-09-24 21:45:56,475 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:46:06,207 INFO [long-pulling] client count 0 + +2025-09-24 21:46:06,208 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:46:06,477 INFO toNotifyTaskSize = 0 + +2025-09-24 21:46:06,477 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:46:16,208 INFO [long-pulling] client count 0 + +2025-09-24 21:46:16,208 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:46:16,479 INFO toNotifyTaskSize = 0 + +2025-09-24 21:46:16,479 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:46:26,208 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:46:26,208 INFO [long-pulling] client count 0 + +2025-09-24 21:46:26,481 INFO toNotifyTaskSize = 0 + +2025-09-24 21:46:26,481 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:46:36,209 INFO [long-pulling] client count 0 + +2025-09-24 21:46:36,209 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:46:36,481 INFO toNotifyTaskSize = 0 + +2025-09-24 21:46:36,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:46:46,209 INFO [long-pulling] client count 0 + +2025-09-24 21:46:46,210 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:46:46,482 INFO toNotifyTaskSize = 0 + +2025-09-24 21:46:46,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:46:56,210 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:46:56,210 INFO [long-pulling] client count 0 + +2025-09-24 21:46:56,482 INFO toNotifyTaskSize = 0 + +2025-09-24 21:46:56,482 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:47:06,211 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:47:06,211 INFO [long-pulling] client count 0 + +2025-09-24 21:47:06,483 INFO toNotifyTaskSize = 0 + +2025-09-24 21:47:06,483 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:47:16,211 INFO [long-pulling] client count 0 + +2025-09-24 21:47:16,211 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:47:16,484 INFO toNotifyTaskSize = 0 + +2025-09-24 21:47:16,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:47:26,212 INFO [long-pulling] client count 0 + +2025-09-24 21:47:26,212 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:47:26,484 INFO toNotifyTaskSize = 0 + +2025-09-24 21:47:26,484 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:47:36,213 INFO [long-pulling] client count 0 + +2025-09-24 21:47:36,213 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:47:36,485 INFO toNotifyTaskSize = 0 + +2025-09-24 21:47:36,485 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:47:46,213 INFO [long-pulling] client count 0 + +2025-09-24 21:47:46,213 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:47:46,486 INFO toNotifyTaskSize = 0 + +2025-09-24 21:47:46,486 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:47:56,215 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:47:56,215 INFO [long-pulling] client count 0 + +2025-09-24 21:47:56,487 INFO toNotifyTaskSize = 0 + +2025-09-24 21:47:56,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:48:06,216 INFO [long-pulling] client count 0 + +2025-09-24 21:48:06,216 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:48:06,487 INFO toNotifyTaskSize = 0 + +2025-09-24 21:48:06,487 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:48:16,218 INFO [long-pulling] client count 0 + +2025-09-24 21:48:16,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:48:16,488 INFO toNotifyTaskSize = 0 + +2025-09-24 21:48:16,488 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:48:26,218 INFO [long-pulling] client count 0 + +2025-09-24 21:48:26,218 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:48:26,489 INFO toNotifyTaskSize = 0 + +2025-09-24 21:48:26,489 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:48:36,219 INFO [long-pulling] client count 0 + +2025-09-24 21:48:36,219 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:48:36,491 INFO toNotifyTaskSize = 0 + +2025-09-24 21:48:36,491 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:48:46,221 INFO [long-pulling] client count 0 + +2025-09-24 21:48:46,221 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:48:46,492 INFO toNotifyTaskSize = 0 + +2025-09-24 21:48:46,493 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:48:56,221 INFO [long-pulling] client count 0 + +2025-09-24 21:48:56,222 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:48:56,493 INFO toNotifyTaskSize = 0 + +2025-09-24 21:48:56,493 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:49:06,223 INFO [long-pulling] client count 0 + +2025-09-24 21:49:06,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:49:06,494 INFO toNotifyTaskSize = 0 + +2025-09-24 21:49:06,494 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:49:16,224 INFO [long-pulling] client count 0 + +2025-09-24 21:49:16,223 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:49:16,495 INFO toNotifyTaskSize = 0 + +2025-09-24 21:49:16,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:49:26,224 INFO [long-pulling] client count 0 + +2025-09-24 21:49:26,224 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:49:26,495 INFO toNotifyTaskSize = 0 + +2025-09-24 21:49:26,495 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:49:36,224 INFO [long-pulling] client count 0 + +2025-09-24 21:49:36,224 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:49:36,496 INFO toNotifyTaskSize = 0 + +2025-09-24 21:49:36,496 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:49:46,225 INFO [long-pulling] client count 0 + +2025-09-24 21:49:46,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:49:46,497 INFO toNotifyTaskSize = 0 + +2025-09-24 21:49:46,497 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:49:56,225 INFO [long-pulling] client count 0 + +2025-09-24 21:49:56,225 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:49:56,498 INFO toNotifyTaskSize = 0 + +2025-09-24 21:49:56,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:50:06,227 INFO [long-pulling] client count 0 + +2025-09-24 21:50:06,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:50:06,498 INFO toNotifyTaskSize = 0 + +2025-09-24 21:50:06,498 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:50:16,228 INFO [long-pulling] client count 0 + +2025-09-24 21:50:16,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:50:16,499 INFO toNotifyTaskSize = 0 + +2025-09-24 21:50:16,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:50:26,228 INFO [long-pulling] client count 0 + +2025-09-24 21:50:26,228 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:50:26,499 INFO toNotifyTaskSize = 0 + +2025-09-24 21:50:26,499 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:50:36,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:50:36,229 INFO [long-pulling] client count 0 + +2025-09-24 21:50:36,500 INFO toNotifyTaskSize = 0 + +2025-09-24 21:50:36,500 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:50:46,229 INFO [long-pulling] client count 0 + +2025-09-24 21:50:46,229 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:50:46,502 INFO toNotifyTaskSize = 0 + +2025-09-24 21:50:46,502 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:50:56,230 INFO [long-pulling] client count 0 + +2025-09-24 21:50:56,230 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:50:56,503 INFO toNotifyTaskSize = 0 + +2025-09-24 21:50:56,503 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:51:06,232 INFO [long-pulling] client count 0 + +2025-09-24 21:51:06,232 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:51:06,504 INFO toNotifyTaskSize = 0 + +2025-09-24 21:51:06,504 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:51:16,232 INFO [long-pulling] client count 0 + +2025-09-24 21:51:16,232 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:51:16,506 INFO toNotifyTaskSize = 0 + +2025-09-24 21:51:16,506 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:51:26,233 INFO [long-pulling] client count 0 + +2025-09-24 21:51:26,233 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:51:26,507 INFO toNotifyTaskSize = 0 + +2025-09-24 21:51:26,507 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:51:36,235 INFO [long-pulling] client count 0 + +2025-09-24 21:51:36,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:51:36,509 INFO toNotifyTaskSize = 0 + +2025-09-24 21:51:36,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:51:46,235 INFO [long-pulling] client count 0 + +2025-09-24 21:51:46,235 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:51:46,509 INFO toNotifyTaskSize = 0 + +2025-09-24 21:51:46,509 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:51:56,236 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:51:56,236 INFO [long-pulling] client count 0 + +2025-09-24 21:51:56,510 INFO toNotifyTaskSize = 0 + +2025-09-24 21:51:56,510 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:52:06,236 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:52:06,237 INFO [long-pulling] client count 0 + +2025-09-24 21:52:06,512 INFO toNotifyTaskSize = 0 + +2025-09-24 21:52:06,512 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:52:16,238 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:52:16,238 INFO [long-pulling] client count 0 + +2025-09-24 21:52:16,513 INFO toNotifyTaskSize = 0 + +2025-09-24 21:52:16,513 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:52:26,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:52:26,239 INFO [long-pulling] client count 0 + +2025-09-24 21:52:26,514 INFO toNotifyTaskSize = 0 + +2025-09-24 21:52:26,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:52:36,239 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:52:36,239 INFO [long-pulling] client count 0 + +2025-09-24 21:52:36,515 INFO toNotifyTaskSize = 0 + +2025-09-24 21:52:36,515 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:52:46,240 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:52:46,240 INFO [long-pulling] client count 0 + +2025-09-24 21:52:46,517 INFO toNotifyTaskSize = 0 + +2025-09-24 21:52:46,517 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:52:56,241 INFO [long-pulling] client count 0 + +2025-09-24 21:52:56,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:52:56,519 INFO toNotifyTaskSize = 0 + +2025-09-24 21:52:56,519 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:53:06,241 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:53:06,241 INFO [long-pulling] client count 0 + +2025-09-24 21:53:06,520 INFO toNotifyTaskSize = 0 + +2025-09-24 21:53:06,520 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:53:16,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:53:16,242 INFO [long-pulling] client count 0 + +2025-09-24 21:53:16,521 INFO toNotifyTaskSize = 0 + +2025-09-24 21:53:16,521 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:53:26,242 INFO [long-pulling] client count 0 + +2025-09-24 21:53:26,242 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:53:26,522 INFO toNotifyTaskSize = 0 + +2025-09-24 21:53:26,522 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:53:36,243 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:53:36,243 INFO [long-pulling] client count 0 + +2025-09-24 21:53:36,524 INFO toNotifyTaskSize = 0 + +2025-09-24 21:53:36,524 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:53:46,243 INFO [long-pulling] client count 0 + +2025-09-24 21:53:46,243 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:53:46,526 INFO toNotifyTaskSize = 0 + +2025-09-24 21:53:46,526 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:53:56,244 INFO [long-pulling] client count 0 + +2025-09-24 21:53:56,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:53:56,528 INFO toNotifyTaskSize = 0 + +2025-09-24 21:53:56,528 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:54:06,244 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:54:06,244 INFO [long-pulling] client count 0 + +2025-09-24 21:54:06,529 INFO toNotifyTaskSize = 0 + +2025-09-24 21:54:06,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:54:16,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:54:16,245 INFO [long-pulling] client count 0 + +2025-09-24 21:54:16,529 INFO toNotifyTaskSize = 0 + +2025-09-24 21:54:16,529 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:54:26,245 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:54:26,245 INFO [long-pulling] client count 0 + +2025-09-24 21:54:26,530 INFO toNotifyTaskSize = 0 + +2025-09-24 21:54:26,530 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:54:36,247 INFO [long-pulling] client count 0 + +2025-09-24 21:54:36,247 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:54:36,531 INFO toNotifyTaskSize = 0 + +2025-09-24 21:54:36,531 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:54:46,248 INFO [long-pulling] client count 0 + +2025-09-24 21:54:46,248 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:54:46,533 INFO toNotifyTaskSize = 0 + +2025-09-24 21:54:46,533 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:54:56,249 INFO [long-pulling] client count 0 + +2025-09-24 21:54:56,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:54:56,535 INFO toNotifyTaskSize = 0 + +2025-09-24 21:54:56,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:55:06,249 INFO [long-pulling] client count 0 + +2025-09-24 21:55:06,249 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:55:06,535 INFO toNotifyTaskSize = 0 + +2025-09-24 21:55:06,535 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:55:16,250 INFO [long-pulling] client count 0 + +2025-09-24 21:55:16,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:55:16,537 INFO toNotifyTaskSize = 0 + +2025-09-24 21:55:16,537 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:55:26,250 INFO [long-pulling] client count 0 + +2025-09-24 21:55:26,250 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:55:26,539 INFO toNotifyTaskSize = 0 + +2025-09-24 21:55:26,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:55:36,251 INFO [long-pulling] client count 0 + +2025-09-24 21:55:36,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:55:36,539 INFO toNotifyTaskSize = 0 + +2025-09-24 21:55:36,539 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:55:46,251 INFO [long-pulling] client count 0 + +2025-09-24 21:55:46,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:55:46,541 INFO toNotifyTaskSize = 0 + +2025-09-24 21:55:46,541 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:55:56,251 INFO [long-pulling] client count 0 + +2025-09-24 21:55:56,251 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:55:56,541 INFO toNotifyTaskSize = 0 + +2025-09-24 21:55:56,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:56:06,252 INFO [long-pulling] client count 0 + +2025-09-24 21:56:06,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:56:06,542 INFO toNotifyTaskSize = 0 + +2025-09-24 21:56:06,542 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:56:16,252 INFO [long-pulling] client count 0 + +2025-09-24 21:56:16,252 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:56:16,543 INFO toNotifyTaskSize = 0 + +2025-09-24 21:56:16,543 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:56:26,253 INFO [long-pulling] client count 0 + +2025-09-24 21:56:26,253 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:56:26,545 INFO toNotifyTaskSize = 0 + +2025-09-24 21:56:26,545 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:56:36,254 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:56:36,254 INFO [long-pulling] client count 0 + +2025-09-24 21:56:36,547 INFO toNotifyTaskSize = 0 + +2025-09-24 21:56:36,547 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:56:46,255 INFO [long-pulling] client count 0 + +2025-09-24 21:56:46,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:56:46,549 INFO toNotifyTaskSize = 0 + +2025-09-24 21:56:46,549 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:56:56,255 INFO [long-pulling] client count 0 + +2025-09-24 21:56:56,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:56:56,551 INFO toNotifyTaskSize = 0 + +2025-09-24 21:56:56,551 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:57:06,255 INFO [long-pulling] client count 0 + +2025-09-24 21:57:06,255 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:57:06,553 INFO toNotifyTaskSize = 0 + +2025-09-24 21:57:06,553 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:57:16,256 INFO [long-pulling] client count 0 + +2025-09-24 21:57:16,256 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:57:16,555 INFO toNotifyTaskSize = 0 + +2025-09-24 21:57:16,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:57:26,257 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:57:26,257 INFO [long-pulling] client count 0 + +2025-09-24 21:57:26,555 INFO toNotifyTaskSize = 0 + +2025-09-24 21:57:26,555 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:57:36,258 INFO [long-pulling] client count 0 + +2025-09-24 21:57:36,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:57:36,557 INFO toNotifyTaskSize = 0 + +2025-09-24 21:57:36,557 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:57:46,258 INFO [long-pulling] client count 0 + +2025-09-24 21:57:46,258 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:57:46,559 INFO toNotifyTaskSize = 0 + +2025-09-24 21:57:46,559 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:57:56,258 INFO [long-pulling] client count 0 + +2025-09-24 21:57:56,259 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:57:56,560 INFO toNotifyTaskSize = 0 + +2025-09-24 21:57:56,560 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:58:06,259 INFO [long-pulling] client count 0 + +2025-09-24 21:58:06,259 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:58:06,561 INFO toNotifyTaskSize = 0 + +2025-09-24 21:58:06,561 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:58:16,261 INFO [long-pulling] client count 0 + +2025-09-24 21:58:16,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:58:16,562 INFO toNotifyTaskSize = 0 + +2025-09-24 21:58:16,562 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:58:26,261 INFO [long-pulling] client count 0 + +2025-09-24 21:58:26,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:58:26,562 INFO toNotifyTaskSize = 0 + +2025-09-24 21:58:26,563 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:58:36,261 INFO [long-pulling] client count 0 + +2025-09-24 21:58:36,261 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:58:36,564 INFO toNotifyTaskSize = 0 + +2025-09-24 21:58:36,564 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:58:46,262 INFO [long-pulling] client count 0 + +2025-09-24 21:58:46,262 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:58:46,566 INFO toNotifyTaskSize = 0 + +2025-09-24 21:58:46,566 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:58:56,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:58:56,263 INFO [long-pulling] client count 0 + +2025-09-24 21:58:56,566 INFO toNotifyTaskSize = 0 + +2025-09-24 21:58:56,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:59:06,263 INFO [long-pulling] client count 0 + +2025-09-24 21:59:06,263 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:59:06,567 INFO toNotifyTaskSize = 0 + +2025-09-24 21:59:06,567 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:59:16,264 INFO [long-pulling] client count 0 + +2025-09-24 21:59:16,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:59:16,569 INFO toNotifyTaskSize = 0 + +2025-09-24 21:59:16,570 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:59:26,264 INFO [long-pulling] client count 0 + +2025-09-24 21:59:26,264 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:59:26,571 INFO toNotifyTaskSize = 0 + +2025-09-24 21:59:26,571 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:59:36,265 INFO [long-pulling] client count 0 + +2025-09-24 21:59:36,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:59:36,573 INFO toNotifyTaskSize = 0 + +2025-09-24 21:59:36,573 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:59:46,265 INFO [long-pulling] client count 0 + +2025-09-24 21:59:46,265 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:59:46,574 INFO toNotifyTaskSize = 0 + +2025-09-24 21:59:46,574 INFO toClientNotifyTaskSize = 0 + +2025-09-24 21:59:56,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 21:59:56,266 INFO [long-pulling] client count 0 + +2025-09-24 21:59:56,575 INFO toNotifyTaskSize = 0 + +2025-09-24 21:59:56,575 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:00:06,266 INFO [long-pulling] client count 0 + +2025-09-24 22:00:06,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:00:06,575 INFO toNotifyTaskSize = 0 + +2025-09-24 22:00:06,575 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:00:16,266 INFO [long-pulling] client count 0 + +2025-09-24 22:00:16,266 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:00:16,577 INFO toNotifyTaskSize = 0 + +2025-09-24 22:00:16,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:00:26,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:00:26,268 INFO [long-pulling] client count 0 + +2025-09-24 22:00:26,577 INFO toNotifyTaskSize = 0 + +2025-09-24 22:00:26,577 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:00:36,268 INFO [long-pulling] client count 0 + +2025-09-24 22:00:36,268 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:00:36,579 INFO toNotifyTaskSize = 0 + +2025-09-24 22:00:36,579 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:00:46,268 INFO [long-pulling] client count 0 + +2025-09-24 22:00:46,269 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:00:46,580 INFO toNotifyTaskSize = 0 + +2025-09-24 22:00:46,580 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:00:56,270 INFO [long-pulling] client count 0 + +2025-09-24 22:00:56,270 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:00:56,581 INFO toNotifyTaskSize = 0 + +2025-09-24 22:00:56,581 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:01:06,271 INFO [long-pulling] client count 0 + +2025-09-24 22:01:06,271 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:01:06,583 INFO toNotifyTaskSize = 0 + +2025-09-24 22:01:06,583 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:01:16,272 INFO [long-pulling] client count 0 + +2025-09-24 22:01:16,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:01:16,584 INFO toNotifyTaskSize = 0 + +2025-09-24 22:01:16,584 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:01:26,272 INFO [long-pulling] client count 0 + +2025-09-24 22:01:26,272 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:01:26,586 INFO toNotifyTaskSize = 0 + +2025-09-24 22:01:26,586 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:01:36,273 INFO [long-pulling] client count 0 + +2025-09-24 22:01:36,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:01:36,586 INFO toNotifyTaskSize = 0 + +2025-09-24 22:01:36,586 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:01:46,273 INFO [long-pulling] client count 0 + +2025-09-24 22:01:46,273 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:01:46,587 INFO toNotifyTaskSize = 0 + +2025-09-24 22:01:46,587 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:01:56,274 INFO [long-pulling] client count 0 + +2025-09-24 22:01:56,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:01:56,589 INFO toNotifyTaskSize = 0 + +2025-09-24 22:01:56,589 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:02:06,274 INFO [long-pulling] client count 0 + +2025-09-24 22:02:06,274 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:02:06,590 INFO toNotifyTaskSize = 0 + +2025-09-24 22:02:06,590 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:02:16,275 INFO [long-pulling] client count 0 + +2025-09-24 22:02:16,275 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:02:16,592 INFO toNotifyTaskSize = 0 + +2025-09-24 22:02:16,592 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:02:26,275 INFO [long-pulling] client count 0 + +2025-09-24 22:02:26,275 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:02:26,593 INFO toNotifyTaskSize = 0 + +2025-09-24 22:02:26,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:02:36,276 INFO [long-pulling] client count 0 + +2025-09-24 22:02:36,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:02:36,593 INFO toNotifyTaskSize = 0 + +2025-09-24 22:02:36,593 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:02:46,276 INFO [long-pulling] client count 0 + +2025-09-24 22:02:46,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:02:46,594 INFO toNotifyTaskSize = 0 + +2025-09-24 22:02:46,594 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:02:56,276 INFO [long-pulling] client count 0 + +2025-09-24 22:02:56,276 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:02:56,597 INFO toNotifyTaskSize = 0 + +2025-09-24 22:02:56,597 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:03:06,276 INFO [long-pulling] client count 0 + +2025-09-24 22:03:06,277 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:03:06,598 INFO toNotifyTaskSize = 0 + +2025-09-24 22:03:06,598 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:03:16,277 INFO [long-pulling] client count 0 + +2025-09-24 22:03:16,277 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:03:16,600 INFO toNotifyTaskSize = 0 + +2025-09-24 22:03:16,600 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:03:26,277 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:03:26,277 INFO [long-pulling] client count 0 + +2025-09-24 22:03:26,601 INFO toNotifyTaskSize = 0 + +2025-09-24 22:03:26,601 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:03:36,278 INFO [long-pulling] client count 0 + +2025-09-24 22:03:36,279 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:03:36,602 INFO toNotifyTaskSize = 0 + +2025-09-24 22:03:36,602 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:03:46,279 INFO [long-pulling] client count 0 + +2025-09-24 22:03:46,279 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:03:46,604 INFO toNotifyTaskSize = 0 + +2025-09-24 22:03:46,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:03:56,280 INFO [long-pulling] client count 0 + +2025-09-24 22:03:56,280 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:03:56,604 INFO toNotifyTaskSize = 0 + +2025-09-24 22:03:56,604 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:04:06,282 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:04:06,282 INFO [long-pulling] client count 0 + +2025-09-24 22:04:06,606 INFO toNotifyTaskSize = 0 + +2025-09-24 22:04:06,606 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:04:16,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:04:16,284 INFO [long-pulling] client count 0 + +2025-09-24 22:04:16,607 INFO toNotifyTaskSize = 0 + +2025-09-24 22:04:16,607 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:04:26,284 INFO [long-pulling] client count 0 + +2025-09-24 22:04:26,284 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:04:26,607 INFO toNotifyTaskSize = 0 + +2025-09-24 22:04:26,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:04:36,285 INFO [long-pulling] client count 0 + +2025-09-24 22:04:36,285 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:04:36,608 INFO toNotifyTaskSize = 0 + +2025-09-24 22:04:36,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:04:46,287 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:04:46,288 INFO [long-pulling] client count 0 + +2025-09-24 22:04:46,608 INFO toNotifyTaskSize = 0 + +2025-09-24 22:04:46,608 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:04:56,290 INFO [long-pulling] client count 0 + +2025-09-24 22:04:56,290 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:04:56,609 INFO toNotifyTaskSize = 0 + +2025-09-24 22:04:56,609 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:05:06,290 INFO [long-pulling] client count 0 + +2025-09-24 22:05:06,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:05:06,611 INFO toNotifyTaskSize = 0 + +2025-09-24 22:05:06,611 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:05:16,291 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:05:16,291 INFO [long-pulling] client count 0 + +2025-09-24 22:05:16,612 INFO toNotifyTaskSize = 0 + +2025-09-24 22:05:16,612 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:05:26,292 INFO [long-pulling] client count 0 + +2025-09-24 22:05:26,292 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:05:26,614 INFO toNotifyTaskSize = 0 + +2025-09-24 22:05:26,614 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:05:36,294 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:05:36,294 INFO [long-pulling] client count 0 + +2025-09-24 22:05:36,614 INFO toNotifyTaskSize = 0 + +2025-09-24 22:05:36,615 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:05:46,295 INFO [long-pulling] client count 0 + +2025-09-24 22:05:46,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:05:46,616 INFO toNotifyTaskSize = 0 + +2025-09-24 22:05:46,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:05:56,296 INFO [long-pulling] client count 0 + +2025-09-24 22:05:56,296 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:05:56,617 INFO toNotifyTaskSize = 0 + +2025-09-24 22:05:56,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:06:06,297 INFO [long-pulling] client count 0 + +2025-09-24 22:06:06,297 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:06:06,617 INFO toNotifyTaskSize = 0 + +2025-09-24 22:06:06,617 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:06:16,299 INFO [long-pulling] client count 0 + +2025-09-24 22:06:16,300 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:06:16,619 INFO toNotifyTaskSize = 0 + +2025-09-24 22:06:16,620 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:06:26,302 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:06:26,302 INFO [long-pulling] client count 0 + +2025-09-24 22:06:26,622 INFO toNotifyTaskSize = 0 + +2025-09-24 22:06:26,622 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:06:36,303 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:06:36,303 INFO [long-pulling] client count 0 + +2025-09-24 22:06:36,622 INFO toNotifyTaskSize = 0 + +2025-09-24 22:06:36,623 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:06:46,304 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:06:46,304 INFO [long-pulling] client count 0 + +2025-09-24 22:06:46,625 INFO toNotifyTaskSize = 0 + +2025-09-24 22:06:46,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:06:56,305 INFO [long-pulling] client count 0 + +2025-09-24 22:06:56,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:06:56,625 INFO toNotifyTaskSize = 0 + +2025-09-24 22:06:56,625 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:07:06,305 INFO [long-pulling] client count 0 + +2025-09-24 22:07:06,305 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:07:06,627 INFO toNotifyTaskSize = 0 + +2025-09-24 22:07:06,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:07:16,306 INFO [long-pulling] client count 0 + +2025-09-24 22:07:16,306 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:07:16,627 INFO toNotifyTaskSize = 0 + +2025-09-24 22:07:16,627 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:07:26,306 INFO [long-pulling] client count 0 + +2025-09-24 22:07:26,307 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:07:26,629 INFO toNotifyTaskSize = 0 + +2025-09-24 22:07:26,629 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:07:36,309 INFO [long-pulling] client count 0 + +2025-09-24 22:07:36,309 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:07:36,631 INFO toNotifyTaskSize = 0 + +2025-09-24 22:07:36,631 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:07:46,309 INFO [long-pulling] client count 0 + +2025-09-24 22:07:46,310 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:07:46,631 INFO toNotifyTaskSize = 0 + +2025-09-24 22:07:46,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:07:56,312 INFO [long-pulling] client count 0 + +2025-09-24 22:07:56,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:07:56,632 INFO toNotifyTaskSize = 0 + +2025-09-24 22:07:56,632 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:08:06,312 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:08:06,312 INFO [long-pulling] client count 0 + +2025-09-24 22:08:06,634 INFO toNotifyTaskSize = 0 + +2025-09-24 22:08:06,634 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:08:16,313 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:08:16,313 INFO [long-pulling] client count 0 + +2025-09-24 22:08:16,635 INFO toNotifyTaskSize = 0 + +2025-09-24 22:08:16,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:08:26,314 INFO [long-pulling] client count 0 + +2025-09-24 22:08:26,314 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:08:26,635 INFO toNotifyTaskSize = 0 + +2025-09-24 22:08:26,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:08:36,315 INFO [long-pulling] client count 0 + +2025-09-24 22:08:36,315 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:08:36,635 INFO toNotifyTaskSize = 0 + +2025-09-24 22:08:36,635 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:08:46,316 INFO [long-pulling] client count 0 + +2025-09-24 22:08:46,316 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:08:46,636 INFO toNotifyTaskSize = 0 + +2025-09-24 22:08:46,636 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:08:56,316 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:08:56,316 INFO [long-pulling] client count 0 + +2025-09-24 22:08:56,638 INFO toNotifyTaskSize = 0 + +2025-09-24 22:08:56,638 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:09:06,317 INFO [long-pulling] client count 0 + +2025-09-24 22:09:06,317 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:09:06,638 INFO toNotifyTaskSize = 0 + +2025-09-24 22:09:06,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:09:16,317 INFO [long-pulling] client count 0 + +2025-09-24 22:09:16,317 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:09:16,656 INFO toNotifyTaskSize = 0 + +2025-09-24 22:09:16,656 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:09:26,319 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:09:26,319 INFO [long-pulling] client count 0 + +2025-09-24 22:09:26,657 INFO toNotifyTaskSize = 0 + +2025-09-24 22:09:26,657 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:09:36,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:09:36,320 INFO [long-pulling] client count 0 + +2025-09-24 22:09:36,658 INFO toNotifyTaskSize = 0 + +2025-09-24 22:09:36,658 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:09:46,320 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:09:46,320 INFO [long-pulling] client count 0 + +2025-09-24 22:09:46,659 INFO toNotifyTaskSize = 0 + +2025-09-24 22:09:46,659 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:09:56,321 INFO [long-pulling] client count 0 + +2025-09-24 22:09:56,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:09:56,661 INFO toNotifyTaskSize = 0 + +2025-09-24 22:09:56,661 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:10:06,321 INFO [long-pulling] client count 0 + +2025-09-24 22:10:06,321 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:10:06,661 INFO toNotifyTaskSize = 0 + +2025-09-24 22:10:06,661 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:10:16,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:10:16,324 INFO [long-pulling] client count 0 + +2025-09-24 22:10:16,661 INFO toNotifyTaskSize = 0 + +2025-09-24 22:10:16,662 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:10:26,324 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:10:26,324 INFO [long-pulling] client count 0 + +2025-09-24 22:10:26,664 INFO toNotifyTaskSize = 0 + +2025-09-24 22:10:26,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:10:36,326 INFO [long-pulling] client count 0 + +2025-09-24 22:10:36,326 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:10:36,664 INFO toNotifyTaskSize = 0 + +2025-09-24 22:10:36,664 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:10:46,327 INFO [long-pulling] client count 0 + +2025-09-24 22:10:46,327 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:10:46,666 INFO toNotifyTaskSize = 0 + +2025-09-24 22:10:46,666 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:10:56,328 INFO [long-pulling] client count 0 + +2025-09-24 22:10:56,328 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:10:56,667 INFO toNotifyTaskSize = 0 + +2025-09-24 22:10:56,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:11:06,330 INFO [long-pulling] client count 0 + +2025-09-24 22:11:06,330 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:11:06,667 INFO toNotifyTaskSize = 0 + +2025-09-24 22:11:06,667 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:11:16,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:11:16,332 INFO [long-pulling] client count 0 + +2025-09-24 22:11:16,668 INFO toNotifyTaskSize = 0 + +2025-09-24 22:11:16,668 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:11:26,332 INFO [long-pulling] client count 0 + +2025-09-24 22:11:26,332 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:11:26,670 INFO toNotifyTaskSize = 0 + +2025-09-24 22:11:26,670 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:11:36,333 INFO [long-pulling] client count 0 + +2025-09-24 22:11:36,334 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:11:36,671 INFO toNotifyTaskSize = 0 + +2025-09-24 22:11:36,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:11:46,335 INFO [long-pulling] client count 0 + +2025-09-24 22:11:46,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:11:46,671 INFO toNotifyTaskSize = 0 + +2025-09-24 22:11:46,671 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:11:56,335 INFO [long-pulling] client count 0 + +2025-09-24 22:11:56,335 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:11:56,672 INFO toNotifyTaskSize = 0 + +2025-09-24 22:11:56,672 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:12:06,335 INFO [long-pulling] client count 0 + +2025-09-24 22:12:06,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:12:06,672 INFO toNotifyTaskSize = 0 + +2025-09-24 22:12:06,673 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:12:16,336 INFO [long-pulling] client count 0 + +2025-09-24 22:12:16,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:12:16,675 INFO toNotifyTaskSize = 0 + +2025-09-24 22:12:16,675 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:12:26,336 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:12:26,337 INFO [long-pulling] client count 0 + +2025-09-24 22:12:26,676 INFO toNotifyTaskSize = 0 + +2025-09-24 22:12:26,676 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:12:36,338 INFO [long-pulling] client count 0 + +2025-09-24 22:12:36,338 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:12:36,676 INFO toNotifyTaskSize = 0 + +2025-09-24 22:12:36,676 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:12:46,339 INFO [long-pulling] client count 0 + +2025-09-24 22:12:46,339 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:12:46,677 INFO toNotifyTaskSize = 0 + +2025-09-24 22:12:46,677 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:12:56,340 INFO [long-pulling] client count 0 + +2025-09-24 22:12:56,340 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:12:56,677 INFO toNotifyTaskSize = 0 + +2025-09-24 22:12:56,678 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:13:06,341 INFO [long-pulling] client count 0 + +2025-09-24 22:13:06,341 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:13:06,679 INFO toNotifyTaskSize = 0 + +2025-09-24 22:13:06,680 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:13:16,342 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:13:16,342 INFO [long-pulling] client count 0 + +2025-09-24 22:13:16,681 INFO toNotifyTaskSize = 0 + +2025-09-24 22:13:16,681 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:13:26,343 INFO [long-pulling] client count 0 + +2025-09-24 22:13:26,344 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:13:26,682 INFO toNotifyTaskSize = 0 + +2025-09-24 22:13:26,682 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:13:36,344 INFO [long-pulling] client count 0 + +2025-09-24 22:13:36,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:13:36,683 INFO toNotifyTaskSize = 0 + +2025-09-24 22:13:36,683 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:13:46,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:13:46,345 INFO [long-pulling] client count 0 + +2025-09-24 22:13:46,685 INFO toNotifyTaskSize = 0 + +2025-09-24 22:13:46,685 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:13:56,345 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:13:56,346 INFO [long-pulling] client count 0 + +2025-09-24 22:13:56,686 INFO toNotifyTaskSize = 0 + +2025-09-24 22:13:56,686 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:14:06,347 INFO [long-pulling] client count 0 + +2025-09-24 22:14:06,347 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:14:06,686 INFO toNotifyTaskSize = 0 + +2025-09-24 22:14:06,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:14:16,348 INFO [long-pulling] client count 0 + +2025-09-24 22:14:16,348 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:14:16,687 INFO toNotifyTaskSize = 0 + +2025-09-24 22:14:16,687 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:14:26,350 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:14:26,350 INFO [long-pulling] client count 0 + +2025-09-24 22:14:26,688 INFO toNotifyTaskSize = 0 + +2025-09-24 22:14:26,688 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:14:36,352 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:14:36,352 INFO [long-pulling] client count 0 + +2025-09-24 22:14:36,689 INFO toNotifyTaskSize = 0 + +2025-09-24 22:14:36,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:14:46,353 INFO [long-pulling] client count 0 + +2025-09-24 22:14:46,353 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:14:46,689 INFO toNotifyTaskSize = 0 + +2025-09-24 22:14:46,689 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:14:56,353 INFO [long-pulling] client count 0 + +2025-09-24 22:14:56,354 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:14:56,690 INFO toNotifyTaskSize = 0 + +2025-09-24 22:14:56,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:15:06,355 INFO [long-pulling] client count 0 + +2025-09-24 22:15:06,355 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:15:06,690 INFO toNotifyTaskSize = 0 + +2025-09-24 22:15:06,690 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:15:16,356 INFO [long-pulling] client count 0 + +2025-09-24 22:15:16,356 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:15:16,691 INFO toNotifyTaskSize = 0 + +2025-09-24 22:15:16,692 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:15:26,359 INFO [long-pulling] client count 0 + +2025-09-24 22:15:26,359 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:15:26,694 INFO toNotifyTaskSize = 0 + +2025-09-24 22:15:26,694 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:15:36,361 INFO [long-pulling] client count 0 + +2025-09-24 22:15:36,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:15:36,694 INFO toNotifyTaskSize = 0 + +2025-09-24 22:15:36,694 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:15:46,361 INFO [long-pulling] client count 0 + +2025-09-24 22:15:46,361 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:15:46,695 INFO toNotifyTaskSize = 0 + +2025-09-24 22:15:46,695 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:15:56,363 INFO [long-pulling] client count 0 + +2025-09-24 22:15:56,363 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:15:56,696 INFO toNotifyTaskSize = 0 + +2025-09-24 22:15:56,696 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:16:06,364 INFO [long-pulling] client count 0 + +2025-09-24 22:16:06,364 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:16:06,696 INFO toNotifyTaskSize = 0 + +2025-09-24 22:16:06,697 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:16:16,365 INFO [long-pulling] client count 0 + +2025-09-24 22:16:16,365 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:16:16,698 INFO toNotifyTaskSize = 0 + +2025-09-24 22:16:16,699 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:16:26,366 INFO [long-pulling] client count 0 + +2025-09-24 22:16:26,366 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:16:26,699 INFO toNotifyTaskSize = 0 + +2025-09-24 22:16:26,699 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:16:36,367 INFO [long-pulling] client count 0 + +2025-09-24 22:16:36,367 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:16:36,701 INFO toNotifyTaskSize = 0 + +2025-09-24 22:16:36,701 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:16:46,369 INFO [long-pulling] client count 0 + +2025-09-24 22:16:46,369 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:16:46,703 INFO toNotifyTaskSize = 0 + +2025-09-24 22:16:46,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:16:56,371 INFO [long-pulling] client count 0 + +2025-09-24 22:16:56,371 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:16:56,703 INFO toNotifyTaskSize = 0 + +2025-09-24 22:16:56,703 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:17:06,373 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:17:06,373 INFO [long-pulling] client count 0 + +2025-09-24 22:17:06,705 INFO toNotifyTaskSize = 0 + +2025-09-24 22:17:06,705 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:17:16,373 INFO [long-pulling] client count 0 + +2025-09-24 22:17:16,373 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:17:16,706 INFO toNotifyTaskSize = 0 + +2025-09-24 22:17:16,706 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:17:26,374 INFO [long-pulling] client count 0 + +2025-09-24 22:17:26,375 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:17:26,706 INFO toNotifyTaskSize = 0 + +2025-09-24 22:17:26,707 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:17:36,376 INFO [long-pulling] client count 0 + +2025-09-24 22:17:36,376 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:17:36,707 INFO toNotifyTaskSize = 0 + +2025-09-24 22:17:36,707 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:17:46,377 INFO [long-pulling] client count 0 + +2025-09-24 22:17:46,378 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:17:46,708 INFO toNotifyTaskSize = 0 + +2025-09-24 22:17:46,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:17:56,380 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:17:56,380 INFO [long-pulling] client count 0 + +2025-09-24 22:17:56,708 INFO toNotifyTaskSize = 0 + +2025-09-24 22:17:56,708 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:18:06,380 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:18:06,380 INFO [long-pulling] client count 0 + +2025-09-24 22:18:06,708 INFO toNotifyTaskSize = 0 + +2025-09-24 22:18:06,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:18:16,382 INFO [long-pulling] client count 0 + +2025-09-24 22:18:16,382 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:18:16,709 INFO toNotifyTaskSize = 0 + +2025-09-24 22:18:16,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:18:26,383 INFO [long-pulling] client count 0 + +2025-09-24 22:18:26,383 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:18:26,709 INFO toNotifyTaskSize = 0 + +2025-09-24 22:18:26,709 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:18:36,385 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:18:36,385 INFO [long-pulling] client count 0 + +2025-09-24 22:18:36,711 INFO toNotifyTaskSize = 0 + +2025-09-24 22:18:36,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:18:46,387 INFO [long-pulling] client count 0 + +2025-09-24 22:18:46,387 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:18:46,711 INFO toNotifyTaskSize = 0 + +2025-09-24 22:18:46,711 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:18:56,387 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:18:56,388 INFO [long-pulling] client count 0 + +2025-09-24 22:18:56,712 INFO toNotifyTaskSize = 0 + +2025-09-24 22:18:56,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:19:06,390 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:19:06,390 INFO [long-pulling] client count 0 + +2025-09-24 22:19:06,712 INFO toNotifyTaskSize = 0 + +2025-09-24 22:19:06,712 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:19:16,390 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:19:16,390 INFO [long-pulling] client count 0 + +2025-09-24 22:19:16,714 INFO toNotifyTaskSize = 0 + +2025-09-24 22:19:16,715 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:19:26,391 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:19:26,391 INFO [long-pulling] client count 0 + +2025-09-24 22:19:26,716 INFO toNotifyTaskSize = 0 + +2025-09-24 22:19:26,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:19:36,392 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:19:36,392 INFO [long-pulling] client count 0 + +2025-09-24 22:19:36,716 INFO toNotifyTaskSize = 0 + +2025-09-24 22:19:36,716 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:19:46,394 INFO [long-pulling] client count 0 + +2025-09-24 22:19:46,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:19:46,717 INFO toNotifyTaskSize = 0 + +2025-09-24 22:19:46,717 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:19:56,394 INFO [long-pulling] client count 0 + +2025-09-24 22:19:56,394 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:19:56,718 INFO toNotifyTaskSize = 0 + +2025-09-24 22:19:56,718 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:20:06,396 INFO [long-pulling] client count 0 + +2025-09-24 22:20:06,396 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:20:06,721 INFO toNotifyTaskSize = 0 + +2025-09-24 22:20:06,721 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:20:16,397 INFO [long-pulling] client count 0 + +2025-09-24 22:20:16,397 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:20:16,721 INFO toNotifyTaskSize = 0 + +2025-09-24 22:20:16,722 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:20:26,397 INFO [long-pulling] client count 0 + +2025-09-24 22:20:26,398 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:20:26,723 INFO toNotifyTaskSize = 0 + +2025-09-24 22:20:26,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:20:36,400 INFO [long-pulling] client count 0 + +2025-09-24 22:20:36,400 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:20:36,723 INFO toNotifyTaskSize = 0 + +2025-09-24 22:20:36,723 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:20:46,402 INFO [long-pulling] client count 0 + +2025-09-24 22:20:46,402 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:20:46,724 INFO toNotifyTaskSize = 0 + +2025-09-24 22:20:46,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:20:56,404 INFO [long-pulling] client count 0 + +2025-09-24 22:20:56,404 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:20:56,725 INFO toNotifyTaskSize = 0 + +2025-09-24 22:20:56,725 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:21:06,404 INFO [long-pulling] client count 0 + +2025-09-24 22:21:06,404 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:21:06,725 INFO toNotifyTaskSize = 0 + +2025-09-24 22:21:06,726 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:21:16,405 INFO [long-pulling] client count 0 + +2025-09-24 22:21:16,405 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:21:16,727 INFO toNotifyTaskSize = 0 + +2025-09-24 22:21:16,727 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:21:26,406 INFO [long-pulling] client count 0 + +2025-09-24 22:21:26,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:21:26,727 INFO toNotifyTaskSize = 0 + +2025-09-24 22:21:26,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:21:36,407 INFO [long-pulling] client count 0 + +2025-09-24 22:21:36,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:21:36,728 INFO toNotifyTaskSize = 0 + +2025-09-24 22:21:36,728 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:21:46,407 INFO [long-pulling] client count 0 + +2025-09-24 22:21:46,407 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:21:46,730 INFO toNotifyTaskSize = 0 + +2025-09-24 22:21:46,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:21:56,408 INFO [long-pulling] client count 0 + +2025-09-24 22:21:56,408 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:21:56,730 INFO toNotifyTaskSize = 0 + +2025-09-24 22:21:56,730 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:22:06,409 INFO [long-pulling] client count 0 + +2025-09-24 22:22:06,409 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:22:06,731 INFO toNotifyTaskSize = 0 + +2025-09-24 22:22:06,731 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:22:16,410 INFO [long-pulling] client count 0 + +2025-09-24 22:22:16,410 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:22:16,733 INFO toNotifyTaskSize = 0 + +2025-09-24 22:22:16,733 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:22:26,411 INFO [long-pulling] client count 0 + +2025-09-24 22:22:26,411 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:22:26,734 INFO toNotifyTaskSize = 0 + +2025-09-24 22:22:26,734 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:22:36,412 INFO [long-pulling] client count 0 + +2025-09-24 22:22:36,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:22:36,734 INFO toNotifyTaskSize = 0 + +2025-09-24 22:22:36,735 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:22:46,412 INFO [long-pulling] client count 0 + +2025-09-24 22:22:46,412 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:22:46,737 INFO toNotifyTaskSize = 0 + +2025-09-24 22:22:46,737 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:22:56,413 INFO [long-pulling] client count 0 + +2025-09-24 22:22:56,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:22:56,739 INFO toNotifyTaskSize = 0 + +2025-09-24 22:22:56,739 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:23:06,413 INFO [long-pulling] client count 0 + +2025-09-24 22:23:06,413 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:23:06,741 INFO toNotifyTaskSize = 0 + +2025-09-24 22:23:06,741 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:23:16,415 INFO [long-pulling] client count 0 + +2025-09-24 22:23:16,415 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:23:16,743 INFO toNotifyTaskSize = 0 + +2025-09-24 22:23:16,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:23:26,417 INFO [long-pulling] client count 0 + +2025-09-24 22:23:26,418 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:23:26,744 INFO toNotifyTaskSize = 0 + +2025-09-24 22:23:26,744 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:23:36,418 INFO [long-pulling] client count 0 + +2025-09-24 22:23:36,418 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:23:36,746 INFO toNotifyTaskSize = 0 + +2025-09-24 22:23:36,746 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:23:46,419 INFO [long-pulling] client count 0 + +2025-09-24 22:23:46,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:23:46,747 INFO toNotifyTaskSize = 0 + +2025-09-24 22:23:46,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:23:56,419 INFO [long-pulling] client count 0 + +2025-09-24 22:23:56,419 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:23:56,747 INFO toNotifyTaskSize = 0 + +2025-09-24 22:23:56,747 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:24:06,420 INFO [long-pulling] client count 0 + +2025-09-24 22:24:06,420 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:24:06,748 INFO toNotifyTaskSize = 0 + +2025-09-24 22:24:06,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:24:16,421 INFO [long-pulling] client count 0 + +2025-09-24 22:24:16,421 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:24:16,748 INFO toNotifyTaskSize = 0 + +2025-09-24 22:24:16,748 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:24:26,422 INFO [long-pulling] client count 0 + +2025-09-24 22:24:26,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:24:26,749 INFO toNotifyTaskSize = 0 + +2025-09-24 22:24:26,749 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:24:36,423 INFO [long-pulling] client count 0 + +2025-09-24 22:24:36,423 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:24:36,750 INFO toNotifyTaskSize = 0 + +2025-09-24 22:24:36,750 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:24:46,425 INFO [long-pulling] client count 0 + +2025-09-24 22:24:46,425 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:24:46,751 INFO toNotifyTaskSize = 0 + +2025-09-24 22:24:46,751 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:24:56,425 INFO [long-pulling] client count 0 + +2025-09-24 22:24:56,426 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:24:56,752 INFO toNotifyTaskSize = 0 + +2025-09-24 22:24:56,752 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:25:06,426 INFO [long-pulling] client count 0 + +2025-09-24 22:25:06,426 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:25:06,752 INFO toNotifyTaskSize = 0 + +2025-09-24 22:25:06,753 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:25:16,427 INFO [long-pulling] client count 0 + +2025-09-24 22:25:16,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:25:16,754 INFO toNotifyTaskSize = 0 + +2025-09-24 22:25:16,754 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:25:26,427 INFO [long-pulling] client count 0 + +2025-09-24 22:25:26,427 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:25:26,755 INFO toNotifyTaskSize = 0 + +2025-09-24 22:25:26,755 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:25:36,427 INFO [long-pulling] client count 0 + +2025-09-24 22:25:36,428 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:25:36,756 INFO toNotifyTaskSize = 0 + +2025-09-24 22:25:36,756 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:25:46,428 INFO [long-pulling] client count 0 + +2025-09-24 22:25:46,429 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:25:46,757 INFO toNotifyTaskSize = 0 + +2025-09-24 22:25:46,757 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:25:56,429 INFO [long-pulling] client count 0 + +2025-09-24 22:25:56,430 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:25:56,758 INFO toNotifyTaskSize = 0 + +2025-09-24 22:25:56,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:26:06,430 INFO [long-pulling] client count 0 + +2025-09-24 22:26:06,431 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:26:06,758 INFO toNotifyTaskSize = 0 + +2025-09-24 22:26:06,758 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:26:16,431 INFO [long-pulling] client count 0 + +2025-09-24 22:26:16,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:26:16,759 INFO toNotifyTaskSize = 0 + +2025-09-24 22:26:16,759 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:26:26,431 INFO [long-pulling] client count 0 + +2025-09-24 22:26:26,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:26:26,759 INFO toNotifyTaskSize = 0 + +2025-09-24 22:26:26,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:26:36,432 INFO [long-pulling] client count 0 + +2025-09-24 22:26:36,432 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:26:36,760 INFO toNotifyTaskSize = 0 + +2025-09-24 22:26:36,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:26:46,433 INFO [long-pulling] client count 0 + +2025-09-24 22:26:46,433 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:26:46,760 INFO toNotifyTaskSize = 0 + +2025-09-24 22:26:46,760 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:26:56,433 INFO [long-pulling] client count 0 + +2025-09-24 22:26:56,434 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:26:56,761 INFO toNotifyTaskSize = 0 + +2025-09-24 22:26:56,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:27:06,437 INFO [long-pulling] client count 0 + +2025-09-24 22:27:06,437 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:27:06,761 INFO toNotifyTaskSize = 0 + +2025-09-24 22:27:06,761 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:27:16,437 INFO [long-pulling] client count 0 + +2025-09-24 22:27:16,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:27:16,762 INFO toNotifyTaskSize = 0 + +2025-09-24 22:27:16,762 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:27:26,438 INFO [long-pulling] client count 0 + +2025-09-24 22:27:26,438 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:27:26,762 INFO toNotifyTaskSize = 0 + +2025-09-24 22:27:26,763 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:27:36,440 INFO [long-pulling] client count 0 + +2025-09-24 22:27:36,440 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:27:36,764 INFO toNotifyTaskSize = 0 + +2025-09-24 22:27:36,764 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:27:46,441 INFO [long-pulling] client count 0 + +2025-09-24 22:27:46,441 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:27:46,765 INFO toNotifyTaskSize = 0 + +2025-09-24 22:27:46,765 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:27:56,442 INFO [long-pulling] client count 0 + +2025-09-24 22:27:56,442 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:27:56,765 INFO toNotifyTaskSize = 0 + +2025-09-24 22:27:56,766 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:28:06,443 INFO [long-pulling] client count 0 + +2025-09-24 22:28:06,443 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:28:06,767 INFO toNotifyTaskSize = 0 + +2025-09-24 22:28:06,767 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:28:16,444 INFO [long-pulling] client count 0 + +2025-09-24 22:28:16,445 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:28:16,768 INFO toNotifyTaskSize = 0 + +2025-09-24 22:28:16,768 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:28:26,445 INFO [long-pulling] client count 0 + +2025-09-24 22:28:26,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:28:26,769 INFO toNotifyTaskSize = 0 + +2025-09-24 22:28:26,769 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:28:36,445 INFO [long-pulling] client count 0 + +2025-09-24 22:28:36,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:28:36,769 INFO toNotifyTaskSize = 0 + +2025-09-24 22:28:36,769 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:28:46,446 INFO [long-pulling] client count 0 + +2025-09-24 22:28:46,446 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:28:46,770 INFO toNotifyTaskSize = 0 + +2025-09-24 22:28:46,771 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:28:56,447 INFO [long-pulling] client count 0 + +2025-09-24 22:28:56,447 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:28:56,771 INFO toNotifyTaskSize = 0 + +2025-09-24 22:28:56,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:29:06,447 INFO [long-pulling] client count 0 + +2025-09-24 22:29:06,447 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:29:06,772 INFO toNotifyTaskSize = 0 + +2025-09-24 22:29:06,772 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:29:16,448 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:29:16,448 INFO [long-pulling] client count 0 + +2025-09-24 22:29:16,773 INFO toNotifyTaskSize = 0 + +2025-09-24 22:29:16,773 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:29:26,450 INFO [long-pulling] client count 0 + +2025-09-24 22:29:26,450 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:29:26,773 INFO toNotifyTaskSize = 0 + +2025-09-24 22:29:26,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:29:36,451 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:29:36,451 INFO [long-pulling] client count 0 + +2025-09-24 22:29:36,774 INFO toNotifyTaskSize = 0 + +2025-09-24 22:29:36,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:29:46,452 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:29:46,452 INFO [long-pulling] client count 0 + +2025-09-24 22:29:46,774 INFO toNotifyTaskSize = 0 + +2025-09-24 22:29:46,774 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:29:56,452 INFO [long-pulling] client count 0 + +2025-09-24 22:29:56,452 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:29:56,775 INFO toNotifyTaskSize = 0 + +2025-09-24 22:29:56,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:30:06,453 INFO [long-pulling] client count 0 + +2025-09-24 22:30:06,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:30:06,775 INFO toNotifyTaskSize = 0 + +2025-09-24 22:30:06,775 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:30:16,453 INFO [long-pulling] client count 0 + +2025-09-24 22:30:16,453 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:30:16,776 INFO toNotifyTaskSize = 0 + +2025-09-24 22:30:16,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:30:26,454 INFO [long-pulling] client count 0 + +2025-09-24 22:30:26,454 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:30:26,776 INFO toNotifyTaskSize = 0 + +2025-09-24 22:30:26,776 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:30:36,455 INFO [long-pulling] client count 0 + +2025-09-24 22:30:36,455 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:30:36,776 INFO toNotifyTaskSize = 0 + +2025-09-24 22:30:36,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:30:46,456 INFO [long-pulling] client count 0 + +2025-09-24 22:30:46,456 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:30:46,777 INFO toNotifyTaskSize = 0 + +2025-09-24 22:30:46,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:30:56,457 INFO [long-pulling] client count 0 + +2025-09-24 22:30:56,457 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:30:56,777 INFO toNotifyTaskSize = 0 + +2025-09-24 22:30:56,777 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:31:06,458 INFO [long-pulling] client count 0 + +2025-09-24 22:31:06,458 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:31:06,778 INFO toNotifyTaskSize = 0 + +2025-09-24 22:31:06,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:31:16,458 INFO [long-pulling] client count 0 + +2025-09-24 22:31:16,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:31:16,778 INFO toNotifyTaskSize = 0 + +2025-09-24 22:31:16,778 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:31:26,459 INFO [long-pulling] client count 0 + +2025-09-24 22:31:26,459 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:31:26,779 INFO toNotifyTaskSize = 0 + +2025-09-24 22:31:26,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:31:36,460 INFO [long-pulling] client count 0 + +2025-09-24 22:31:36,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:31:36,779 INFO toNotifyTaskSize = 0 + +2025-09-24 22:31:36,779 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:31:46,460 INFO [long-pulling] client count 0 + +2025-09-24 22:31:46,460 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:31:46,780 INFO toNotifyTaskSize = 0 + +2025-09-24 22:31:46,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:31:56,461 INFO [long-pulling] client count 0 + +2025-09-24 22:31:56,461 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:31:56,780 INFO toNotifyTaskSize = 0 + +2025-09-24 22:31:56,780 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:32:06,462 INFO [long-pulling] client count 0 + +2025-09-24 22:32:06,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:32:06,781 INFO toNotifyTaskSize = 0 + +2025-09-24 22:32:06,781 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:32:16,462 INFO [long-pulling] client count 0 + +2025-09-24 22:32:16,462 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:32:16,782 INFO toNotifyTaskSize = 0 + +2025-09-24 22:32:16,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:32:26,463 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:32:26,463 INFO [long-pulling] client count 0 + +2025-09-24 22:32:26,782 INFO toNotifyTaskSize = 0 + +2025-09-24 22:32:26,782 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:32:36,465 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:32:36,465 INFO [long-pulling] client count 0 + +2025-09-24 22:32:36,783 INFO toNotifyTaskSize = 0 + +2025-09-24 22:32:36,783 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:32:46,466 INFO [long-pulling] client count 0 + +2025-09-24 22:32:46,467 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:32:46,784 INFO toNotifyTaskSize = 0 + +2025-09-24 22:32:46,784 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:32:56,467 INFO [long-pulling] client count 0 + +2025-09-24 22:32:56,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:32:56,784 INFO toNotifyTaskSize = 0 + +2025-09-24 22:32:56,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:33:06,468 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:33:06,468 INFO [long-pulling] client count 0 + +2025-09-24 22:33:06,785 INFO toNotifyTaskSize = 0 + +2025-09-24 22:33:06,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:33:16,469 INFO [long-pulling] client count 0 + +2025-09-24 22:33:16,469 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:33:16,785 INFO toNotifyTaskSize = 0 + +2025-09-24 22:33:16,785 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:33:26,470 INFO [long-pulling] client count 0 + +2025-09-24 22:33:26,470 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:33:26,786 INFO toNotifyTaskSize = 0 + +2025-09-24 22:33:26,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:33:36,471 INFO [long-pulling] client count 0 + +2025-09-24 22:33:36,471 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:33:36,786 INFO toNotifyTaskSize = 0 + +2025-09-24 22:33:36,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:33:46,472 INFO [long-pulling] client count 0 + +2025-09-24 22:33:46,472 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:33:46,786 INFO toNotifyTaskSize = 0 + +2025-09-24 22:33:46,786 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:33:56,473 INFO [long-pulling] client count 0 + +2025-09-24 22:33:56,473 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:33:56,787 INFO toNotifyTaskSize = 0 + +2025-09-24 22:33:56,787 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:34:06,474 INFO [long-pulling] client count 0 + +2025-09-24 22:34:06,474 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:34:06,788 INFO toNotifyTaskSize = 0 + +2025-09-24 22:34:06,788 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:34:16,475 INFO [long-pulling] client count 0 + +2025-09-24 22:34:16,475 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:34:16,789 INFO toNotifyTaskSize = 0 + +2025-09-24 22:34:16,789 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:34:26,476 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:34:26,476 INFO [long-pulling] client count 0 + +2025-09-24 22:34:26,790 INFO toNotifyTaskSize = 0 + +2025-09-24 22:34:26,790 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:34:36,477 INFO [long-pulling] client count 0 + +2025-09-24 22:34:36,477 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:34:36,790 INFO toNotifyTaskSize = 0 + +2025-09-24 22:34:36,791 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:34:46,478 INFO [long-pulling] client count 0 + +2025-09-24 22:34:46,478 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:34:46,792 INFO toNotifyTaskSize = 0 + +2025-09-24 22:34:46,792 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:34:56,478 INFO [long-pulling] client count 0 + +2025-09-24 22:34:56,478 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:34:56,793 INFO toNotifyTaskSize = 0 + +2025-09-24 22:34:56,793 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:35:06,478 INFO [long-pulling] client count 0 + +2025-09-24 22:35:06,479 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:35:06,794 INFO toNotifyTaskSize = 0 + +2025-09-24 22:35:06,794 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:35:16,479 INFO [long-pulling] client count 0 + +2025-09-24 22:35:16,480 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:35:16,795 INFO toNotifyTaskSize = 0 + +2025-09-24 22:35:16,795 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:35:26,480 INFO [long-pulling] client count 0 + +2025-09-24 22:35:26,480 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:35:26,796 INFO toNotifyTaskSize = 0 + +2025-09-24 22:35:26,796 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:35:36,481 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:35:36,481 INFO [long-pulling] client count 0 + +2025-09-24 22:35:36,797 INFO toNotifyTaskSize = 0 + +2025-09-24 22:35:36,797 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:35:46,481 INFO [long-pulling] client count 0 + +2025-09-24 22:35:46,481 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:35:46,798 INFO toNotifyTaskSize = 0 + +2025-09-24 22:35:46,798 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:35:56,482 INFO [long-pulling] client count 0 + +2025-09-24 22:35:56,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:35:56,799 INFO toNotifyTaskSize = 0 + +2025-09-24 22:35:56,799 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:36:06,483 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:36:06,483 INFO [long-pulling] client count 0 + +2025-09-24 22:36:06,799 INFO toNotifyTaskSize = 0 + +2025-09-24 22:36:06,799 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:36:16,484 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:36:16,484 INFO [long-pulling] client count 0 + +2025-09-24 22:36:16,800 INFO toNotifyTaskSize = 0 + +2025-09-24 22:36:16,800 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:36:26,484 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:36:26,484 INFO [long-pulling] client count 0 + +2025-09-24 22:36:26,800 INFO toNotifyTaskSize = 0 + +2025-09-24 22:36:26,801 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:36:36,485 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:36:36,485 INFO [long-pulling] client count 0 + +2025-09-24 22:36:36,801 INFO toNotifyTaskSize = 0 + +2025-09-24 22:36:36,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:36:46,486 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:36:46,486 INFO [long-pulling] client count 0 + +2025-09-24 22:36:46,802 INFO toNotifyTaskSize = 0 + +2025-09-24 22:36:46,802 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:36:56,487 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:36:56,488 INFO [long-pulling] client count 0 + +2025-09-24 22:36:56,803 INFO toNotifyTaskSize = 0 + +2025-09-24 22:36:56,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:37:06,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:37:06,488 INFO [long-pulling] client count 0 + +2025-09-24 22:37:06,803 INFO toNotifyTaskSize = 0 + +2025-09-24 22:37:06,803 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:37:16,488 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:37:16,488 INFO [long-pulling] client count 0 + +2025-09-24 22:37:16,804 INFO toNotifyTaskSize = 0 + +2025-09-24 22:37:16,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:37:26,489 INFO [long-pulling] client count 0 + +2025-09-24 22:37:26,489 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:37:26,804 INFO toNotifyTaskSize = 0 + +2025-09-24 22:37:26,804 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:37:36,490 INFO [long-pulling] client count 0 + +2025-09-24 22:37:36,490 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:37:36,809 INFO toNotifyTaskSize = 0 + +2025-09-24 22:37:36,809 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:37:46,491 INFO [long-pulling] client count 0 + +2025-09-24 22:37:46,491 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:37:46,810 INFO toNotifyTaskSize = 0 + +2025-09-24 22:37:46,810 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:37:56,492 INFO [long-pulling] client count 0 + +2025-09-24 22:37:56,492 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:37:56,811 INFO toNotifyTaskSize = 0 + +2025-09-24 22:37:56,811 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:38:06,493 INFO [long-pulling] client count 0 + +2025-09-24 22:38:06,494 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:38:06,812 INFO toNotifyTaskSize = 0 + +2025-09-24 22:38:06,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:38:16,495 INFO [long-pulling] client count 0 + +2025-09-24 22:38:16,495 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:38:16,812 INFO toNotifyTaskSize = 0 + +2025-09-24 22:38:16,812 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:38:26,496 INFO [long-pulling] client count 0 + +2025-09-24 22:38:26,496 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:38:26,812 INFO toNotifyTaskSize = 0 + +2025-09-24 22:38:26,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:38:36,498 INFO [long-pulling] client count 0 + +2025-09-24 22:38:36,498 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:38:36,813 INFO toNotifyTaskSize = 0 + +2025-09-24 22:38:36,813 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:38:46,499 INFO [long-pulling] client count 0 + +2025-09-24 22:38:46,499 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:38:46,814 INFO toNotifyTaskSize = 0 + +2025-09-24 22:38:46,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:38:56,499 INFO [long-pulling] client count 0 + +2025-09-24 22:38:56,500 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:38:56,815 INFO toNotifyTaskSize = 0 + +2025-09-24 22:38:56,815 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:39:06,501 INFO [long-pulling] client count 0 + +2025-09-24 22:39:06,501 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:39:06,816 INFO toNotifyTaskSize = 0 + +2025-09-24 22:39:06,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:39:16,502 INFO [long-pulling] client count 0 + +2025-09-24 22:39:16,502 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:39:16,816 INFO toNotifyTaskSize = 0 + +2025-09-24 22:39:16,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:39:26,505 INFO [long-pulling] client count 0 + +2025-09-24 22:39:26,505 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:39:26,816 INFO toNotifyTaskSize = 0 + +2025-09-24 22:39:26,816 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:39:36,506 INFO [long-pulling] client count 0 + +2025-09-24 22:39:36,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:39:36,816 INFO toNotifyTaskSize = 0 + +2025-09-24 22:39:36,837 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:39:46,506 INFO [long-pulling] client count 0 + +2025-09-24 22:39:46,506 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:39:46,838 INFO toNotifyTaskSize = 0 + +2025-09-24 22:39:46,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:39:56,507 INFO [long-pulling] client count 0 + +2025-09-24 22:39:56,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:39:56,838 INFO toNotifyTaskSize = 0 + +2025-09-24 22:39:56,838 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:40:06,507 INFO [long-pulling] client count 0 + +2025-09-24 22:40:06,507 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:40:06,839 INFO toNotifyTaskSize = 0 + +2025-09-24 22:40:06,839 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:40:16,508 INFO [long-pulling] client count 0 + +2025-09-24 22:40:16,508 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:40:16,840 INFO toNotifyTaskSize = 0 + +2025-09-24 22:40:16,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:40:26,509 INFO [long-pulling] client count 0 + +2025-09-24 22:40:26,509 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:40:26,840 INFO toNotifyTaskSize = 0 + +2025-09-24 22:40:26,840 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:40:36,511 INFO [long-pulling] client count 0 + +2025-09-24 22:40:36,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:40:36,840 INFO toNotifyTaskSize = 0 + +2025-09-24 22:40:36,841 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:40:46,511 INFO [long-pulling] client count 0 + +2025-09-24 22:40:46,511 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:40:46,841 INFO toNotifyTaskSize = 0 + +2025-09-24 22:40:46,842 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:40:56,512 INFO [long-pulling] client count 0 + +2025-09-24 22:40:56,512 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:40:56,843 INFO toNotifyTaskSize = 0 + +2025-09-24 22:40:56,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:41:06,513 INFO [long-pulling] client count 0 + +2025-09-24 22:41:06,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:41:06,843 INFO toNotifyTaskSize = 0 + +2025-09-24 22:41:06,843 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:41:16,514 INFO [long-pulling] client count 0 + +2025-09-24 22:41:16,514 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:41:16,844 INFO toNotifyTaskSize = 0 + +2025-09-24 22:41:16,844 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:41:26,515 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:41:26,516 INFO [long-pulling] client count 0 + +2025-09-24 22:41:26,870 INFO toNotifyTaskSize = 0 + +2025-09-24 22:41:26,870 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:41:36,516 INFO [long-pulling] client count 0 + +2025-09-24 22:41:36,516 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:41:36,871 INFO toNotifyTaskSize = 0 + +2025-09-24 22:41:36,872 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:41:46,517 INFO [long-pulling] client count 0 + +2025-09-24 22:41:46,517 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:41:46,873 INFO toNotifyTaskSize = 0 + +2025-09-24 22:41:46,873 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:41:56,517 INFO [long-pulling] client count 0 + +2025-09-24 22:41:56,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:41:56,874 INFO toNotifyTaskSize = 0 + +2025-09-24 22:41:56,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:42:06,518 INFO [long-pulling] client count 0 + +2025-09-24 22:42:06,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:42:06,874 INFO toNotifyTaskSize = 0 + +2025-09-24 22:42:06,874 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:42:16,518 INFO [long-pulling] client count 0 + +2025-09-24 22:42:16,518 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:42:16,875 INFO toNotifyTaskSize = 0 + +2025-09-24 22:42:16,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:42:26,519 INFO [long-pulling] client count 0 + +2025-09-24 22:42:26,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:42:26,876 INFO toNotifyTaskSize = 0 + +2025-09-24 22:42:26,876 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:42:36,519 INFO [long-pulling] client count 0 + +2025-09-24 22:42:36,519 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:42:36,877 INFO toNotifyTaskSize = 0 + +2025-09-24 22:42:36,877 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:42:46,521 INFO [long-pulling] client count 0 + +2025-09-24 22:42:46,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:42:46,878 INFO toNotifyTaskSize = 0 + +2025-09-24 22:42:46,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:42:56,521 INFO [long-pulling] client count 0 + +2025-09-24 22:42:56,521 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:42:56,878 INFO toNotifyTaskSize = 0 + +2025-09-24 22:42:56,878 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:43:06,522 INFO [long-pulling] client count 0 + +2025-09-24 22:43:06,522 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:43:06,879 INFO toNotifyTaskSize = 0 + +2025-09-24 22:43:06,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:43:16,522 INFO [long-pulling] client count 0 + +2025-09-24 22:43:16,522 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:43:16,879 INFO toNotifyTaskSize = 0 + +2025-09-24 22:43:16,879 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:43:26,523 INFO [long-pulling] client count 0 + +2025-09-24 22:43:26,523 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:43:26,880 INFO toNotifyTaskSize = 0 + +2025-09-24 22:43:26,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:43:36,524 INFO [long-pulling] client count 0 + +2025-09-24 22:43:36,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:43:36,880 INFO toNotifyTaskSize = 0 + +2025-09-24 22:43:36,880 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:43:46,524 INFO [long-pulling] client count 0 + +2025-09-24 22:43:46,524 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:43:46,881 INFO toNotifyTaskSize = 0 + +2025-09-24 22:43:46,881 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:43:56,525 INFO [long-pulling] client count 0 + +2025-09-24 22:43:56,525 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:43:56,881 INFO toNotifyTaskSize = 0 + +2025-09-24 22:43:56,882 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:44:06,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:44:06,526 INFO [long-pulling] client count 0 + +2025-09-24 22:44:06,883 INFO toNotifyTaskSize = 0 + +2025-09-24 22:44:06,883 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:44:16,526 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:44:16,527 INFO [long-pulling] client count 0 + +2025-09-24 22:44:16,884 INFO toNotifyTaskSize = 0 + +2025-09-24 22:44:16,884 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:44:26,527 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:44:26,527 INFO [long-pulling] client count 0 + +2025-09-24 22:44:26,885 INFO toNotifyTaskSize = 0 + +2025-09-24 22:44:26,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:44:36,528 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:44:36,529 INFO [long-pulling] client count 0 + +2025-09-24 22:44:36,885 INFO toNotifyTaskSize = 0 + +2025-09-24 22:44:36,885 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:44:46,529 INFO [long-pulling] client count 0 + +2025-09-24 22:44:46,529 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:44:46,886 INFO toNotifyTaskSize = 0 + +2025-09-24 22:44:46,886 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:44:56,530 INFO [long-pulling] client count 0 + +2025-09-24 22:44:56,530 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:44:56,886 INFO toNotifyTaskSize = 0 + +2025-09-24 22:44:56,886 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:45:06,532 INFO [long-pulling] client count 0 + +2025-09-24 22:45:06,532 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:45:06,887 INFO toNotifyTaskSize = 0 + +2025-09-24 22:45:06,887 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:45:16,532 INFO [long-pulling] client count 0 + +2025-09-24 22:45:16,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:45:16,888 INFO toNotifyTaskSize = 0 + +2025-09-24 22:45:16,888 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:45:26,533 INFO [long-pulling] client count 0 + +2025-09-24 22:45:26,533 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:45:26,889 INFO toNotifyTaskSize = 0 + +2025-09-24 22:45:26,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:45:36,534 INFO [long-pulling] client count 0 + +2025-09-24 22:45:36,534 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:45:36,889 INFO toNotifyTaskSize = 0 + +2025-09-24 22:45:36,889 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:45:46,535 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:45:46,535 INFO [long-pulling] client count 0 + +2025-09-24 22:45:46,890 INFO toNotifyTaskSize = 0 + +2025-09-24 22:45:46,890 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:45:56,536 INFO [long-pulling] client count 0 + +2025-09-24 22:45:56,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:45:56,891 INFO toNotifyTaskSize = 0 + +2025-09-24 22:45:56,891 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:46:06,536 INFO [long-pulling] client count 0 + +2025-09-24 22:46:06,536 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:46:06,892 INFO toNotifyTaskSize = 0 + +2025-09-24 22:46:06,893 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:46:16,537 INFO [long-pulling] client count 0 + +2025-09-24 22:46:16,537 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:46:16,893 INFO toNotifyTaskSize = 0 + +2025-09-24 22:46:16,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:46:26,538 INFO [long-pulling] client count 0 + +2025-09-24 22:46:26,538 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:46:26,894 INFO toNotifyTaskSize = 0 + +2025-09-24 22:46:26,894 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:46:36,539 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:46:36,539 INFO [long-pulling] client count 0 + +2025-09-24 22:46:36,895 INFO toNotifyTaskSize = 0 + +2025-09-24 22:46:36,895 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:46:46,541 INFO [long-pulling] client count 0 + +2025-09-24 22:46:46,541 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:46:46,896 INFO toNotifyTaskSize = 0 + +2025-09-24 22:46:46,896 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:46:56,542 INFO [long-pulling] client count 0 + +2025-09-24 22:46:56,543 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:46:56,897 INFO toNotifyTaskSize = 0 + +2025-09-24 22:46:56,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:47:06,543 INFO [long-pulling] client count 0 + +2025-09-24 22:47:06,543 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:47:06,897 INFO toNotifyTaskSize = 0 + +2025-09-24 22:47:06,897 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:47:16,544 INFO [long-pulling] client count 0 + +2025-09-24 22:47:16,544 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:47:16,898 INFO toNotifyTaskSize = 0 + +2025-09-24 22:47:16,898 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:47:26,544 INFO [long-pulling] client count 0 + +2025-09-24 22:47:26,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:47:26,898 INFO toNotifyTaskSize = 0 + +2025-09-24 22:47:26,914 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:47:36,545 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:47:36,546 INFO [long-pulling] client count 0 + +2025-09-24 22:47:36,916 INFO toNotifyTaskSize = 0 + +2025-09-24 22:47:36,916 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:47:46,546 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:47:46,547 INFO [long-pulling] client count 0 + +2025-09-24 22:47:46,917 INFO toNotifyTaskSize = 0 + +2025-09-24 22:47:46,917 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:47:56,547 INFO [long-pulling] client count 0 + +2025-09-24 22:47:56,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:47:56,918 INFO toNotifyTaskSize = 0 + +2025-09-24 22:47:56,918 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:48:06,547 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:48:06,548 INFO [long-pulling] client count 0 + +2025-09-24 22:48:06,919 INFO toNotifyTaskSize = 0 + +2025-09-24 22:48:06,919 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:48:16,548 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:48:16,549 INFO [long-pulling] client count 0 + +2025-09-24 22:48:16,919 INFO toNotifyTaskSize = 0 + +2025-09-24 22:48:16,919 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:48:26,549 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:48:26,550 INFO [long-pulling] client count 0 + +2025-09-24 22:48:26,920 INFO toNotifyTaskSize = 0 + +2025-09-24 22:48:26,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:48:36,550 INFO [long-pulling] client count 0 + +2025-09-24 22:48:36,550 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:48:36,920 INFO toNotifyTaskSize = 0 + +2025-09-24 22:48:36,920 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:48:46,551 INFO [long-pulling] client count 0 + +2025-09-24 22:48:46,551 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:48:46,921 INFO toNotifyTaskSize = 0 + +2025-09-24 22:48:46,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:48:56,553 INFO [long-pulling] client count 0 + +2025-09-24 22:48:56,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:48:56,921 INFO toNotifyTaskSize = 0 + +2025-09-24 22:48:56,921 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:49:06,553 INFO [long-pulling] client count 0 + +2025-09-24 22:49:06,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:49:06,922 INFO toNotifyTaskSize = 0 + +2025-09-24 22:49:06,922 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:49:16,553 INFO [long-pulling] client count 0 + +2025-09-24 22:49:16,553 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:49:16,922 INFO toNotifyTaskSize = 0 + +2025-09-24 22:49:16,922 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:49:26,555 INFO [long-pulling] client count 0 + +2025-09-24 22:49:26,555 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:49:26,923 INFO toNotifyTaskSize = 0 + +2025-09-24 22:49:26,923 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:49:36,556 INFO [long-pulling] client count 0 + +2025-09-24 22:49:36,556 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:49:36,924 INFO toNotifyTaskSize = 0 + +2025-09-24 22:49:36,924 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:49:46,559 INFO [long-pulling] client count 0 + +2025-09-24 22:49:46,559 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:49:46,959 INFO toNotifyTaskSize = 0 + +2025-09-24 22:49:46,965 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:49:56,560 INFO [long-pulling] client count 0 + +2025-09-24 22:49:56,560 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:49:56,966 INFO toNotifyTaskSize = 0 + +2025-09-24 22:49:56,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:50:06,562 INFO [long-pulling] client count 0 + +2025-09-24 22:50:06,562 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:50:06,966 INFO toNotifyTaskSize = 0 + +2025-09-24 22:50:06,966 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:50:16,563 INFO [long-pulling] client count 0 + +2025-09-24 22:50:16,563 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:50:16,967 INFO toNotifyTaskSize = 0 + +2025-09-24 22:50:16,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:50:26,564 INFO [long-pulling] client count 0 + +2025-09-24 22:50:26,564 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:50:26,967 INFO toNotifyTaskSize = 0 + +2025-09-24 22:50:26,967 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:50:36,565 INFO [long-pulling] client count 0 + +2025-09-24 22:50:36,566 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:50:36,968 INFO toNotifyTaskSize = 0 + +2025-09-24 22:50:36,968 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:50:46,567 INFO [long-pulling] client count 0 + +2025-09-24 22:50:46,567 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:50:46,969 INFO toNotifyTaskSize = 0 + +2025-09-24 22:50:46,969 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:50:56,567 INFO [long-pulling] client count 0 + +2025-09-24 22:50:56,567 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:50:56,970 INFO toNotifyTaskSize = 0 + +2025-09-24 22:50:56,970 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:51:06,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:51:06,568 INFO [long-pulling] client count 0 + +2025-09-24 22:51:06,971 INFO toNotifyTaskSize = 0 + +2025-09-24 22:51:06,971 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:51:16,568 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:51:16,568 INFO [long-pulling] client count 0 + +2025-09-24 22:51:16,972 INFO toNotifyTaskSize = 0 + +2025-09-24 22:51:16,972 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:51:26,569 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:51:26,569 INFO [long-pulling] client count 0 + +2025-09-24 22:51:26,973 INFO toNotifyTaskSize = 0 + +2025-09-24 22:51:26,973 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:51:36,570 INFO [long-pulling] client count 0 + +2025-09-24 22:51:36,570 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:51:36,973 INFO toNotifyTaskSize = 0 + +2025-09-24 22:51:36,973 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:51:46,570 INFO [long-pulling] client count 0 + +2025-09-24 22:51:46,571 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:51:46,974 INFO toNotifyTaskSize = 0 + +2025-09-24 22:51:46,974 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:51:56,571 INFO [long-pulling] client count 0 + +2025-09-24 22:51:56,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:51:56,975 INFO toNotifyTaskSize = 0 + +2025-09-24 22:51:56,975 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:52:06,572 INFO [long-pulling] client count 0 + +2025-09-24 22:52:06,572 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:52:06,976 INFO toNotifyTaskSize = 0 + +2025-09-24 22:52:06,976 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:52:16,573 INFO [long-pulling] client count 0 + +2025-09-24 22:52:16,573 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:52:16,977 INFO toNotifyTaskSize = 0 + +2025-09-24 22:52:16,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:52:26,574 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:52:26,574 INFO [long-pulling] client count 0 + +2025-09-24 22:52:26,977 INFO toNotifyTaskSize = 0 + +2025-09-24 22:52:26,977 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:52:36,575 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:52:36,575 INFO [long-pulling] client count 0 + +2025-09-24 22:52:36,978 INFO toNotifyTaskSize = 0 + +2025-09-24 22:52:36,978 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:52:46,576 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:52:46,577 INFO [long-pulling] client count 0 + +2025-09-24 22:52:46,979 INFO toNotifyTaskSize = 0 + +2025-09-24 22:52:46,979 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:52:56,577 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:52:56,578 INFO [long-pulling] client count 0 + +2025-09-24 22:52:56,980 INFO toNotifyTaskSize = 0 + +2025-09-24 22:52:56,980 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:53:06,578 INFO [long-pulling] client count 0 + +2025-09-24 22:53:06,578 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:53:06,981 INFO toNotifyTaskSize = 0 + +2025-09-24 22:53:06,981 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:53:16,579 INFO [long-pulling] client count 0 + +2025-09-24 22:53:16,579 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:53:16,982 INFO toNotifyTaskSize = 0 + +2025-09-24 22:53:16,982 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:53:26,581 INFO [long-pulling] client count 0 + +2025-09-24 22:53:26,581 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:53:26,982 INFO toNotifyTaskSize = 0 + +2025-09-24 22:53:26,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:53:36,582 INFO [long-pulling] client count 0 + +2025-09-24 22:53:36,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:53:36,983 INFO toNotifyTaskSize = 0 + +2025-09-24 22:53:36,983 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:53:46,582 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:53:46,582 INFO [long-pulling] client count 0 + +2025-09-24 22:53:46,984 INFO toNotifyTaskSize = 0 + +2025-09-24 22:53:46,984 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:53:56,585 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:53:56,585 INFO [long-pulling] client count 0 + +2025-09-24 22:53:56,985 INFO toNotifyTaskSize = 0 + +2025-09-24 22:53:56,985 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:54:06,586 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:54:06,587 INFO [long-pulling] client count 0 + +2025-09-24 22:54:06,985 INFO toNotifyTaskSize = 0 + +2025-09-24 22:54:06,985 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:54:16,587 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:54:16,587 INFO [long-pulling] client count 0 + +2025-09-24 22:54:16,986 INFO toNotifyTaskSize = 0 + +2025-09-24 22:54:16,986 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:54:26,588 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:54:26,588 INFO [long-pulling] client count 0 + +2025-09-24 22:54:26,987 INFO toNotifyTaskSize = 0 + +2025-09-24 22:54:26,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:54:36,589 INFO [long-pulling] client count 0 + +2025-09-24 22:54:36,589 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:54:36,987 INFO toNotifyTaskSize = 0 + +2025-09-24 22:54:36,987 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:54:46,590 INFO [long-pulling] client count 0 + +2025-09-24 22:54:46,590 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:54:46,988 INFO toNotifyTaskSize = 0 + +2025-09-24 22:54:46,988 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:54:56,591 INFO [long-pulling] client count 0 + +2025-09-24 22:54:56,591 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:54:56,989 INFO toNotifyTaskSize = 0 + +2025-09-24 22:54:56,989 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:55:06,592 INFO [long-pulling] client count 0 + +2025-09-24 22:55:06,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:55:06,989 INFO toNotifyTaskSize = 0 + +2025-09-24 22:55:06,989 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:55:16,593 INFO [long-pulling] client count 0 + +2025-09-24 22:55:16,593 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:55:16,990 INFO toNotifyTaskSize = 0 + +2025-09-24 22:55:16,991 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:55:26,594 INFO [long-pulling] client count 0 + +2025-09-24 22:55:26,594 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:55:26,992 INFO toNotifyTaskSize = 0 + +2025-09-24 22:55:26,992 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:55:36,595 INFO [long-pulling] client count 0 + +2025-09-24 22:55:36,595 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:55:36,993 INFO toNotifyTaskSize = 0 + +2025-09-24 22:55:36,993 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:55:46,596 INFO [long-pulling] client count 0 + +2025-09-24 22:55:46,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:55:46,993 INFO toNotifyTaskSize = 0 + +2025-09-24 22:55:46,993 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:55:56,596 INFO [long-pulling] client count 0 + +2025-09-24 22:55:56,596 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:55:56,994 INFO toNotifyTaskSize = 0 + +2025-09-24 22:55:56,995 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:56:06,597 INFO [long-pulling] client count 0 + +2025-09-24 22:56:06,597 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:56:06,996 INFO toNotifyTaskSize = 0 + +2025-09-24 22:56:06,996 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:56:16,598 INFO [long-pulling] client count 0 + +2025-09-24 22:56:16,598 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:56:16,997 INFO toNotifyTaskSize = 0 + +2025-09-24 22:56:16,998 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:56:26,599 INFO [long-pulling] client count 0 + +2025-09-24 22:56:26,599 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:56:26,999 INFO toNotifyTaskSize = 0 + +2025-09-24 22:56:26,999 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:56:36,600 INFO [long-pulling] client count 0 + +2025-09-24 22:56:36,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:56:37,000 INFO toNotifyTaskSize = 0 + +2025-09-24 22:56:37,000 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:56:46,600 INFO [long-pulling] client count 0 + +2025-09-24 22:56:46,600 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:56:47,001 INFO toNotifyTaskSize = 0 + +2025-09-24 22:56:47,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:56:56,601 INFO [long-pulling] client count 0 + +2025-09-24 22:56:56,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:56:57,001 INFO toNotifyTaskSize = 0 + +2025-09-24 22:56:57,001 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:57:06,601 INFO [long-pulling] client count 0 + +2025-09-24 22:57:06,601 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:57:07,002 INFO toNotifyTaskSize = 0 + +2025-09-24 22:57:07,003 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:57:16,603 INFO [long-pulling] client count 0 + +2025-09-24 22:57:16,603 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:57:17,004 INFO toNotifyTaskSize = 0 + +2025-09-24 22:57:17,004 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:57:26,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:57:26,604 INFO [long-pulling] client count 0 + +2025-09-24 22:57:27,005 INFO toNotifyTaskSize = 0 + +2025-09-24 22:57:27,005 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:57:36,604 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:57:36,604 INFO [long-pulling] client count 0 + +2025-09-24 22:57:37,006 INFO toNotifyTaskSize = 0 + +2025-09-24 22:57:37,006 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:57:46,605 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:57:46,605 INFO [long-pulling] client count 0 + +2025-09-24 22:57:47,008 INFO toNotifyTaskSize = 0 + +2025-09-24 22:57:47,008 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:57:56,606 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:57:56,606 INFO [long-pulling] client count 0 + +2025-09-24 22:57:57,009 INFO toNotifyTaskSize = 0 + +2025-09-24 22:57:57,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:58:06,607 INFO [long-pulling] client count 0 + +2025-09-24 22:58:06,607 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:58:07,009 INFO toNotifyTaskSize = 0 + +2025-09-24 22:58:07,009 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:58:16,608 INFO [long-pulling] client count 0 + +2025-09-24 22:58:16,608 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:58:17,010 INFO toNotifyTaskSize = 0 + +2025-09-24 22:58:17,010 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:58:26,608 INFO [long-pulling] client count 0 + +2025-09-24 22:58:26,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:58:27,012 INFO toNotifyTaskSize = 0 + +2025-09-24 22:58:27,012 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:58:36,609 INFO [long-pulling] client count 0 + +2025-09-24 22:58:36,609 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:58:37,012 INFO toNotifyTaskSize = 0 + +2025-09-24 22:58:37,013 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:58:46,610 INFO [long-pulling] client count 0 + +2025-09-24 22:58:46,610 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:58:47,013 INFO toNotifyTaskSize = 0 + +2025-09-24 22:58:47,013 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:58:56,610 INFO [long-pulling] client count 0 + +2025-09-24 22:58:56,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:58:57,014 INFO toNotifyTaskSize = 0 + +2025-09-24 22:58:57,014 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:59:06,611 INFO [long-pulling] client count 0 + +2025-09-24 22:59:06,611 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:59:07,014 INFO toNotifyTaskSize = 0 + +2025-09-24 22:59:07,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:59:16,613 INFO [long-pulling] client count 0 + +2025-09-24 22:59:16,613 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:59:17,015 INFO toNotifyTaskSize = 0 + +2025-09-24 22:59:17,015 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:59:26,614 INFO [long-pulling] client count 0 + +2025-09-24 22:59:26,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:59:27,016 INFO toNotifyTaskSize = 0 + +2025-09-24 22:59:27,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:59:36,615 INFO [long-pulling] client count 0 + +2025-09-24 22:59:36,615 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:59:37,016 INFO toNotifyTaskSize = 0 + +2025-09-24 22:59:37,016 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:59:46,615 INFO [long-pulling] client count 0 + +2025-09-24 22:59:46,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:59:47,017 INFO toNotifyTaskSize = 0 + +2025-09-24 22:59:47,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 22:59:56,616 INFO [long-pulling] client count 0 + +2025-09-24 22:59:56,616 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 22:59:57,017 INFO toNotifyTaskSize = 0 + +2025-09-24 22:59:57,017 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:00:06,617 INFO [long-pulling] client count 0 + +2025-09-24 23:00:06,617 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:00:07,018 INFO toNotifyTaskSize = 0 + +2025-09-24 23:00:07,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:00:16,618 INFO [long-pulling] client count 0 + +2025-09-24 23:00:16,618 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:00:17,018 INFO toNotifyTaskSize = 0 + +2025-09-24 23:00:17,018 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:00:26,619 INFO [long-pulling] client count 0 + +2025-09-24 23:00:26,619 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:00:27,019 INFO toNotifyTaskSize = 0 + +2025-09-24 23:00:27,019 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:00:36,620 INFO [long-pulling] client count 0 + +2025-09-24 23:00:36,620 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:00:37,020 INFO toNotifyTaskSize = 0 + +2025-09-24 23:00:37,020 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:00:46,621 INFO [long-pulling] client count 0 + +2025-09-24 23:00:46,621 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:00:47,021 INFO toNotifyTaskSize = 0 + +2025-09-24 23:00:47,021 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:00:56,623 INFO [long-pulling] client count 0 + +2025-09-24 23:00:56,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:00:57,023 INFO toNotifyTaskSize = 0 + +2025-09-24 23:00:57,024 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:01:06,623 INFO [long-pulling] client count 0 + +2025-09-24 23:01:06,623 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:01:07,025 INFO toNotifyTaskSize = 0 + +2025-09-24 23:01:07,025 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:01:16,625 INFO [long-pulling] client count 0 + +2025-09-24 23:01:16,625 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:01:17,026 INFO toNotifyTaskSize = 0 + +2025-09-24 23:01:17,026 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:01:26,627 INFO [long-pulling] client count 0 + +2025-09-24 23:01:26,627 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:01:27,027 INFO toNotifyTaskSize = 0 + +2025-09-24 23:01:27,027 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:01:36,628 INFO [long-pulling] client count 0 + +2025-09-24 23:01:36,628 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:01:37,027 INFO toNotifyTaskSize = 0 + +2025-09-24 23:01:37,027 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:01:46,629 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:01:46,629 INFO [long-pulling] client count 0 + +2025-09-24 23:01:47,028 INFO toNotifyTaskSize = 0 + +2025-09-24 23:01:47,029 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:01:56,630 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:01:56,630 INFO [long-pulling] client count 0 + +2025-09-24 23:01:57,029 INFO toNotifyTaskSize = 0 + +2025-09-24 23:01:57,029 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:02:06,631 INFO [long-pulling] client count 0 + +2025-09-24 23:02:06,631 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:02:07,029 INFO toNotifyTaskSize = 0 + +2025-09-24 23:02:07,030 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:02:16,632 INFO [long-pulling] client count 0 + +2025-09-24 23:02:16,632 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:02:17,031 INFO toNotifyTaskSize = 0 + +2025-09-24 23:02:17,031 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:02:26,633 INFO [long-pulling] client count 0 + +2025-09-24 23:02:26,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:02:27,032 INFO toNotifyTaskSize = 0 + +2025-09-24 23:02:27,032 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:02:36,634 INFO [long-pulling] client count 0 + +2025-09-24 23:02:36,634 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:02:37,033 INFO toNotifyTaskSize = 0 + +2025-09-24 23:02:37,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:02:46,635 INFO [long-pulling] client count 0 + +2025-09-24 23:02:46,635 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:02:47,034 INFO toNotifyTaskSize = 0 + +2025-09-24 23:02:47,034 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:02:56,636 INFO [long-pulling] client count 0 + +2025-09-24 23:02:56,636 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:02:57,035 INFO toNotifyTaskSize = 0 + +2025-09-24 23:02:57,035 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:03:06,636 INFO [long-pulling] client count 0 + +2025-09-24 23:03:06,637 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:03:07,036 INFO toNotifyTaskSize = 0 + +2025-09-24 23:03:07,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:03:16,637 INFO [long-pulling] client count 0 + +2025-09-24 23:03:16,637 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:03:17,037 INFO toNotifyTaskSize = 0 + +2025-09-24 23:03:17,037 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:03:26,638 INFO [long-pulling] client count 0 + +2025-09-24 23:03:26,638 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:03:27,038 INFO toNotifyTaskSize = 0 + +2025-09-24 23:03:27,038 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:03:36,639 INFO [long-pulling] client count 0 + +2025-09-24 23:03:36,639 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:03:37,040 INFO toNotifyTaskSize = 0 + +2025-09-24 23:03:37,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:03:46,660 INFO [long-pulling] client count 0 + +2025-09-24 23:03:46,660 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:03:47,040 INFO toNotifyTaskSize = 0 + +2025-09-24 23:03:47,040 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:03:56,662 INFO [long-pulling] client count 0 + +2025-09-24 23:03:56,662 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:03:57,042 INFO toNotifyTaskSize = 0 + +2025-09-24 23:03:57,042 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:04:06,663 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:04:06,663 INFO [long-pulling] client count 0 + +2025-09-24 23:04:07,042 INFO toNotifyTaskSize = 0 + +2025-09-24 23:04:07,043 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:04:16,665 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:04:16,666 INFO [long-pulling] client count 0 + +2025-09-24 23:04:17,044 INFO toNotifyTaskSize = 0 + +2025-09-24 23:04:17,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:04:26,667 INFO [long-pulling] client count 0 + +2025-09-24 23:04:26,667 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:04:27,044 INFO toNotifyTaskSize = 0 + +2025-09-24 23:04:27,044 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:04:36,668 INFO [long-pulling] client count 0 + +2025-09-24 23:04:36,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:04:37,045 INFO toNotifyTaskSize = 0 + +2025-09-24 23:04:37,045 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:04:46,668 INFO [long-pulling] client count 0 + +2025-09-24 23:04:46,668 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:04:47,046 INFO toNotifyTaskSize = 0 + +2025-09-24 23:04:47,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:04:56,670 INFO [long-pulling] client count 0 + +2025-09-24 23:04:56,670 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:04:57,046 INFO toNotifyTaskSize = 0 + +2025-09-24 23:04:57,046 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:05:06,670 INFO [long-pulling] client count 0 + +2025-09-24 23:05:06,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:05:07,048 INFO toNotifyTaskSize = 0 + +2025-09-24 23:05:07,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:05:16,670 INFO [long-pulling] client count 0 + +2025-09-24 23:05:16,671 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:05:17,048 INFO toNotifyTaskSize = 0 + +2025-09-24 23:05:17,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:05:26,671 INFO [long-pulling] client count 0 + +2025-09-24 23:05:26,672 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:05:27,048 INFO toNotifyTaskSize = 0 + +2025-09-24 23:05:27,048 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:05:36,673 INFO [long-pulling] client count 0 + +2025-09-24 23:05:36,673 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:05:37,049 INFO toNotifyTaskSize = 0 + +2025-09-24 23:05:37,049 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:05:46,684 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:05:46,685 INFO [long-pulling] client count 0 + +2025-09-24 23:05:47,050 INFO toNotifyTaskSize = 0 + +2025-09-24 23:05:47,050 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:05:56,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:05:56,685 INFO [long-pulling] client count 0 + +2025-09-24 23:05:57,051 INFO toNotifyTaskSize = 0 + +2025-09-24 23:05:57,051 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:06:06,685 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:06:06,686 INFO [long-pulling] client count 0 + +2025-09-24 23:06:07,052 INFO toNotifyTaskSize = 0 + +2025-09-24 23:06:07,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:06:16,686 INFO [long-pulling] client count 0 + +2025-09-24 23:06:16,686 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:06:17,052 INFO toNotifyTaskSize = 0 + +2025-09-24 23:06:17,052 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:06:26,688 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:06:26,689 INFO [long-pulling] client count 0 + +2025-09-24 23:06:27,053 INFO toNotifyTaskSize = 0 + +2025-09-24 23:06:27,053 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:06:36,689 INFO [long-pulling] client count 0 + +2025-09-24 23:06:36,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:06:37,054 INFO toNotifyTaskSize = 0 + +2025-09-24 23:06:37,054 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:06:46,690 INFO [long-pulling] client count 0 + +2025-09-24 23:06:46,690 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:06:47,055 INFO toNotifyTaskSize = 0 + +2025-09-24 23:06:47,055 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:06:56,691 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:06:56,691 INFO [long-pulling] client count 0 + +2025-09-24 23:06:57,056 INFO toNotifyTaskSize = 0 + +2025-09-24 23:06:57,056 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:07:06,692 INFO [long-pulling] client count 0 + +2025-09-24 23:07:06,692 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:07:07,057 INFO toNotifyTaskSize = 0 + +2025-09-24 23:07:07,057 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:07:16,693 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:07:16,693 INFO [long-pulling] client count 0 + +2025-09-24 23:07:17,058 INFO toNotifyTaskSize = 0 + +2025-09-24 23:07:17,058 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:07:26,695 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:07:26,697 INFO [long-pulling] client count 0 + +2025-09-24 23:07:27,059 INFO toNotifyTaskSize = 0 + +2025-09-24 23:07:27,059 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:07:36,697 INFO [long-pulling] client count 0 + +2025-09-24 23:07:36,697 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:07:37,060 INFO toNotifyTaskSize = 0 + +2025-09-24 23:07:37,060 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:07:46,699 INFO [long-pulling] client count 0 + +2025-09-24 23:07:46,699 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:07:47,060 INFO toNotifyTaskSize = 0 + +2025-09-24 23:07:47,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:07:56,700 INFO [long-pulling] client count 0 + +2025-09-24 23:07:56,700 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:07:57,061 INFO toNotifyTaskSize = 0 + +2025-09-24 23:07:57,061 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:08:06,701 INFO [long-pulling] client count 0 + +2025-09-24 23:08:06,701 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:08:07,063 INFO toNotifyTaskSize = 0 + +2025-09-24 23:08:07,063 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:08:16,702 INFO [long-pulling] client count 0 + +2025-09-24 23:08:16,702 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:08:17,064 INFO toNotifyTaskSize = 0 + +2025-09-24 23:08:17,064 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:08:26,702 INFO [long-pulling] client count 0 + +2025-09-24 23:08:26,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:08:27,065 INFO toNotifyTaskSize = 0 + +2025-09-24 23:08:27,065 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:08:36,703 INFO [long-pulling] client count 0 + +2025-09-24 23:08:36,703 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:08:37,065 INFO toNotifyTaskSize = 0 + +2025-09-24 23:08:37,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:08:46,705 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:08:46,705 INFO [long-pulling] client count 0 + +2025-09-24 23:08:47,066 INFO toNotifyTaskSize = 0 + +2025-09-24 23:08:47,066 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:08:56,706 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:08:56,706 INFO [long-pulling] client count 0 + +2025-09-24 23:08:57,067 INFO toNotifyTaskSize = 0 + +2025-09-24 23:08:57,067 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:09:06,707 INFO [long-pulling] client count 0 + +2025-09-24 23:09:06,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:09:07,068 INFO toNotifyTaskSize = 0 + +2025-09-24 23:09:07,068 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:09:16,707 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:09:16,708 INFO [long-pulling] client count 0 + +2025-09-24 23:09:17,069 INFO toNotifyTaskSize = 0 + +2025-09-24 23:09:17,069 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:09:26,708 INFO [long-pulling] client count 0 + +2025-09-24 23:09:26,708 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:09:27,069 INFO toNotifyTaskSize = 0 + +2025-09-24 23:09:27,069 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:09:36,710 INFO [long-pulling] client count 0 + +2025-09-24 23:09:36,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:09:37,071 INFO toNotifyTaskSize = 0 + +2025-09-24 23:09:37,071 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:09:46,710 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:09:46,710 INFO [long-pulling] client count 0 + +2025-09-24 23:09:47,071 INFO toNotifyTaskSize = 0 + +2025-09-24 23:09:47,071 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:09:56,712 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:09:56,720 INFO [long-pulling] client count 0 + +2025-09-24 23:09:57,072 INFO toNotifyTaskSize = 0 + +2025-09-24 23:09:57,072 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:10:06,727 INFO [long-pulling] client count 0 + +2025-09-24 23:10:06,727 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:10:07,073 INFO toNotifyTaskSize = 0 + +2025-09-24 23:10:07,073 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:10:16,728 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:10:16,728 INFO [long-pulling] client count 0 + +2025-09-24 23:10:17,073 INFO toNotifyTaskSize = 0 + +2025-09-24 23:10:17,074 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:10:26,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:10:26,730 INFO [long-pulling] client count 0 + +2025-09-24 23:10:27,075 INFO toNotifyTaskSize = 0 + +2025-09-24 23:10:27,075 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:10:36,729 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:10:36,730 INFO [long-pulling] client count 0 + +2025-09-24 23:10:37,076 INFO toNotifyTaskSize = 0 + +2025-09-24 23:10:37,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:10:46,730 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:10:46,731 INFO [long-pulling] client count 0 + +2025-09-24 23:10:47,077 INFO toNotifyTaskSize = 0 + +2025-09-24 23:10:47,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:10:56,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:10:56,732 INFO [long-pulling] client count 0 + +2025-09-24 23:10:57,077 INFO toNotifyTaskSize = 0 + +2025-09-24 23:10:57,077 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:11:06,731 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:11:06,733 INFO [long-pulling] client count 0 + +2025-09-24 23:11:07,079 INFO toNotifyTaskSize = 0 + +2025-09-24 23:11:07,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:11:16,733 INFO [long-pulling] client count 0 + +2025-09-24 23:11:16,733 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:11:17,079 INFO toNotifyTaskSize = 0 + +2025-09-24 23:11:17,079 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:11:26,735 INFO [long-pulling] client count 0 + +2025-09-24 23:11:26,735 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:11:27,080 INFO toNotifyTaskSize = 0 + +2025-09-24 23:11:27,081 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:11:36,737 INFO [long-pulling] client count 0 + +2025-09-24 23:11:36,737 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:11:37,082 INFO toNotifyTaskSize = 0 + +2025-09-24 23:11:37,082 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:11:46,738 INFO [long-pulling] client count 0 + +2025-09-24 23:11:46,739 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:11:47,083 INFO toNotifyTaskSize = 0 + +2025-09-24 23:11:47,083 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:11:56,740 INFO [long-pulling] client count 0 + +2025-09-24 23:11:56,741 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:11:57,085 INFO toNotifyTaskSize = 0 + +2025-09-24 23:11:57,085 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:12:06,741 INFO [long-pulling] client count 0 + +2025-09-24 23:12:06,742 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:12:07,085 INFO toNotifyTaskSize = 0 + +2025-09-24 23:12:07,085 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:12:16,743 INFO [long-pulling] client count 0 + +2025-09-24 23:12:16,743 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:12:17,086 INFO toNotifyTaskSize = 0 + +2025-09-24 23:12:17,086 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:12:26,743 INFO [long-pulling] client count 0 + +2025-09-24 23:12:26,744 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:12:27,087 INFO toNotifyTaskSize = 0 + +2025-09-24 23:12:27,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:12:36,745 INFO [long-pulling] client count 0 + +2025-09-24 23:12:36,745 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:12:37,087 INFO toNotifyTaskSize = 0 + +2025-09-24 23:12:37,087 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:12:46,746 INFO [long-pulling] client count 0 + +2025-09-24 23:12:46,746 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:12:47,088 INFO toNotifyTaskSize = 0 + +2025-09-24 23:12:47,088 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:12:56,747 INFO [long-pulling] client count 0 + +2025-09-24 23:12:56,747 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:12:57,088 INFO toNotifyTaskSize = 0 + +2025-09-24 23:12:57,089 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:13:06,748 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:13:06,748 INFO [long-pulling] client count 0 + +2025-09-24 23:13:07,090 INFO toNotifyTaskSize = 0 + +2025-09-24 23:13:07,090 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:13:16,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:13:16,750 INFO [long-pulling] client count 0 + +2025-09-24 23:13:17,091 INFO toNotifyTaskSize = 0 + +2025-09-24 23:13:17,091 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:13:26,750 INFO [long-pulling] client count 0 + +2025-09-24 23:13:26,750 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:13:27,092 INFO toNotifyTaskSize = 0 + +2025-09-24 23:13:27,093 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:13:36,752 INFO [long-pulling] client count 0 + +2025-09-24 23:13:36,752 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:13:37,094 INFO toNotifyTaskSize = 0 + +2025-09-24 23:13:37,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:13:46,754 INFO [long-pulling] client count 0 + +2025-09-24 23:13:46,754 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:13:47,094 INFO toNotifyTaskSize = 0 + +2025-09-24 23:13:47,094 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:13:56,755 INFO [long-pulling] client count 0 + +2025-09-24 23:13:56,755 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:13:57,095 INFO toNotifyTaskSize = 0 + +2025-09-24 23:13:57,096 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:14:06,757 INFO [long-pulling] client count 0 + +2025-09-24 23:14:06,757 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:14:07,097 INFO toNotifyTaskSize = 0 + +2025-09-24 23:14:07,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:14:16,758 INFO [long-pulling] client count 0 + +2025-09-24 23:14:16,758 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:14:17,097 INFO toNotifyTaskSize = 0 + +2025-09-24 23:14:17,097 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:14:26,759 INFO [long-pulling] client count 0 + +2025-09-24 23:14:26,759 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:14:27,098 INFO toNotifyTaskSize = 0 + +2025-09-24 23:14:27,098 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:14:36,759 INFO [long-pulling] client count 0 + +2025-09-24 23:14:36,760 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:14:37,099 INFO toNotifyTaskSize = 0 + +2025-09-24 23:14:37,100 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:14:46,760 INFO [long-pulling] client count 0 + +2025-09-24 23:14:46,760 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:14:47,100 INFO toNotifyTaskSize = 0 + +2025-09-24 23:14:47,100 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:14:56,761 INFO [long-pulling] client count 0 + +2025-09-24 23:14:56,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:14:57,101 INFO toNotifyTaskSize = 0 + +2025-09-24 23:14:57,101 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:15:06,762 INFO [long-pulling] client count 0 + +2025-09-24 23:15:06,762 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:15:07,102 INFO toNotifyTaskSize = 0 + +2025-09-24 23:15:07,102 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:15:16,763 INFO [long-pulling] client count 0 + +2025-09-24 23:15:16,763 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:15:17,103 INFO toNotifyTaskSize = 0 + +2025-09-24 23:15:17,104 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:15:26,764 INFO [long-pulling] client count 0 + +2025-09-24 23:15:26,764 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:15:27,105 INFO toNotifyTaskSize = 0 + +2025-09-24 23:15:27,105 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:15:36,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:15:36,765 INFO [long-pulling] client count 0 + +2025-09-24 23:15:37,106 INFO toNotifyTaskSize = 0 + +2025-09-24 23:15:37,106 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:15:46,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:15:46,766 INFO [long-pulling] client count 0 + +2025-09-24 23:15:47,107 INFO toNotifyTaskSize = 0 + +2025-09-24 23:15:47,107 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:15:56,767 INFO [long-pulling] client count 0 + +2025-09-24 23:15:56,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:15:57,107 INFO toNotifyTaskSize = 0 + +2025-09-24 23:15:57,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:16:06,768 INFO [long-pulling] client count 0 + +2025-09-24 23:16:06,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:16:07,108 INFO toNotifyTaskSize = 0 + +2025-09-24 23:16:07,108 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:16:16,769 INFO [long-pulling] client count 0 + +2025-09-24 23:16:16,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:16:17,109 INFO toNotifyTaskSize = 0 + +2025-09-24 23:16:17,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:16:26,769 INFO [long-pulling] client count 0 + +2025-09-24 23:16:26,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:16:27,109 INFO toNotifyTaskSize = 0 + +2025-09-24 23:16:27,109 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:16:36,769 INFO [long-pulling] client count 0 + +2025-09-24 23:16:36,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:16:37,110 INFO toNotifyTaskSize = 0 + +2025-09-24 23:16:37,110 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:16:46,771 INFO [long-pulling] client count 0 + +2025-09-24 23:16:46,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:16:47,111 INFO toNotifyTaskSize = 0 + +2025-09-24 23:16:47,111 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:16:56,772 INFO [long-pulling] client count 0 + +2025-09-24 23:16:56,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:16:57,112 INFO toNotifyTaskSize = 0 + +2025-09-24 23:16:57,112 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:17:06,773 INFO [long-pulling] client count 0 + +2025-09-24 23:17:06,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:17:07,113 INFO toNotifyTaskSize = 0 + +2025-09-24 23:17:07,113 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:17:16,773 INFO [long-pulling] client count 0 + +2025-09-24 23:17:16,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:17:17,113 INFO toNotifyTaskSize = 0 + +2025-09-24 23:17:17,113 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:17:26,774 INFO [long-pulling] client count 0 + +2025-09-24 23:17:26,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:17:27,114 INFO toNotifyTaskSize = 0 + +2025-09-24 23:17:27,114 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:17:36,775 INFO [long-pulling] client count 0 + +2025-09-24 23:17:36,775 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:17:37,115 INFO toNotifyTaskSize = 0 + +2025-09-24 23:17:37,115 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:17:46,776 INFO [long-pulling] client count 0 + +2025-09-24 23:17:46,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:17:47,116 INFO toNotifyTaskSize = 0 + +2025-09-24 23:17:47,116 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:17:56,776 INFO [long-pulling] client count 0 + +2025-09-24 23:17:56,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:17:57,117 INFO toNotifyTaskSize = 0 + +2025-09-24 23:17:57,117 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:18:06,778 INFO [long-pulling] client count 0 + +2025-09-24 23:18:06,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:18:07,118 INFO toNotifyTaskSize = 0 + +2025-09-24 23:18:07,118 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:18:16,778 INFO [long-pulling] client count 0 + +2025-09-24 23:18:16,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:18:17,119 INFO toNotifyTaskSize = 0 + +2025-09-24 23:18:17,119 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:18:26,779 INFO [long-pulling] client count 0 + +2025-09-24 23:18:26,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:18:27,120 INFO toNotifyTaskSize = 0 + +2025-09-24 23:18:27,120 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:18:36,781 INFO [long-pulling] client count 0 + +2025-09-24 23:18:36,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:18:37,121 INFO toNotifyTaskSize = 0 + +2025-09-24 23:18:37,121 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:18:46,783 INFO [long-pulling] client count 0 + +2025-09-24 23:18:46,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:18:47,122 INFO toNotifyTaskSize = 0 + +2025-09-24 23:18:47,122 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:18:56,784 INFO [long-pulling] client count 0 + +2025-09-24 23:18:56,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:18:57,122 INFO toNotifyTaskSize = 0 + +2025-09-24 23:18:57,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:19:06,785 INFO [long-pulling] client count 0 + +2025-09-24 23:19:06,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:19:07,123 INFO toNotifyTaskSize = 0 + +2025-09-24 23:19:07,123 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:19:16,786 INFO [long-pulling] client count 0 + +2025-09-24 23:19:16,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:19:17,123 INFO toNotifyTaskSize = 0 + +2025-09-24 23:19:17,124 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:19:26,787 INFO [long-pulling] client count 0 + +2025-09-24 23:19:26,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:19:27,124 INFO toNotifyTaskSize = 0 + +2025-09-24 23:19:27,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:19:36,787 INFO [long-pulling] client count 0 + +2025-09-24 23:19:36,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:19:37,125 INFO toNotifyTaskSize = 0 + +2025-09-24 23:19:37,125 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:19:46,788 INFO [long-pulling] client count 0 + +2025-09-24 23:19:46,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:19:47,126 INFO toNotifyTaskSize = 0 + +2025-09-24 23:19:47,126 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:19:56,789 INFO [long-pulling] client count 0 + +2025-09-24 23:19:56,789 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:19:57,127 INFO toNotifyTaskSize = 0 + +2025-09-24 23:19:57,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:20:06,790 INFO [long-pulling] client count 0 + +2025-09-24 23:20:06,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:20:07,127 INFO toNotifyTaskSize = 0 + +2025-09-24 23:20:07,127 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:20:16,790 INFO [long-pulling] client count 0 + +2025-09-24 23:20:16,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:20:17,127 INFO toNotifyTaskSize = 0 + +2025-09-24 23:20:17,128 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:20:26,790 INFO [long-pulling] client count 0 + +2025-09-24 23:20:26,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:20:27,128 INFO toNotifyTaskSize = 0 + +2025-09-24 23:20:27,129 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:20:36,792 INFO [long-pulling] client count 0 + +2025-09-24 23:20:36,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:20:37,130 INFO toNotifyTaskSize = 0 + +2025-09-24 23:20:37,130 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:20:46,792 INFO [long-pulling] client count 0 + +2025-09-24 23:20:46,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:20:47,131 INFO toNotifyTaskSize = 0 + +2025-09-24 23:20:47,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:20:56,793 INFO [long-pulling] client count 0 + +2025-09-24 23:20:56,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:20:57,131 INFO toNotifyTaskSize = 0 + +2025-09-24 23:20:57,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:21:06,793 INFO [long-pulling] client count 0 + +2025-09-24 23:21:06,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:21:07,131 INFO toNotifyTaskSize = 0 + +2025-09-24 23:21:07,131 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:21:16,793 INFO [long-pulling] client count 0 + +2025-09-24 23:21:16,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:21:17,132 INFO toNotifyTaskSize = 0 + +2025-09-24 23:21:17,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:21:26,794 INFO [long-pulling] client count 0 + +2025-09-24 23:21:26,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:21:27,132 INFO toNotifyTaskSize = 0 + +2025-09-24 23:21:27,132 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:21:36,794 INFO [long-pulling] client count 0 + +2025-09-24 23:21:36,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:21:37,133 INFO toNotifyTaskSize = 0 + +2025-09-24 23:21:37,133 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:21:46,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:21:46,796 INFO [long-pulling] client count 0 + +2025-09-24 23:21:47,134 INFO toNotifyTaskSize = 0 + +2025-09-24 23:21:47,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:21:56,796 INFO [long-pulling] client count 0 + +2025-09-24 23:21:56,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:21:57,134 INFO toNotifyTaskSize = 0 + +2025-09-24 23:21:57,134 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:22:06,798 INFO [long-pulling] client count 0 + +2025-09-24 23:22:06,798 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:22:07,134 INFO toNotifyTaskSize = 0 + +2025-09-24 23:22:07,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:22:16,799 INFO [long-pulling] client count 0 + +2025-09-24 23:22:16,799 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:22:17,135 INFO toNotifyTaskSize = 0 + +2025-09-24 23:22:17,135 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:22:26,800 INFO [long-pulling] client count 0 + +2025-09-24 23:22:26,800 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:22:27,135 INFO toNotifyTaskSize = 0 + +2025-09-24 23:22:27,146 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:22:36,801 INFO [long-pulling] client count 0 + +2025-09-24 23:22:36,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:22:37,147 INFO toNotifyTaskSize = 0 + +2025-09-24 23:22:37,147 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:22:46,801 INFO [long-pulling] client count 0 + +2025-09-24 23:22:46,801 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:22:47,147 INFO toNotifyTaskSize = 0 + +2025-09-24 23:22:47,148 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:22:56,803 INFO [long-pulling] client count 0 + +2025-09-24 23:22:56,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:22:57,149 INFO toNotifyTaskSize = 0 + +2025-09-24 23:22:57,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:23:06,803 INFO [long-pulling] client count 0 + +2025-09-24 23:23:06,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:23:07,149 INFO toNotifyTaskSize = 0 + +2025-09-24 23:23:07,149 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:23:16,805 INFO [long-pulling] client count 0 + +2025-09-24 23:23:16,805 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:23:17,150 INFO toNotifyTaskSize = 0 + +2025-09-24 23:23:17,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:23:26,806 INFO [long-pulling] client count 0 + +2025-09-24 23:23:26,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:23:27,150 INFO toNotifyTaskSize = 0 + +2025-09-24 23:23:27,150 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:23:36,807 INFO [long-pulling] client count 0 + +2025-09-24 23:23:36,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:23:37,151 INFO toNotifyTaskSize = 0 + +2025-09-24 23:23:37,151 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:23:46,807 INFO [long-pulling] client count 0 + +2025-09-24 23:23:46,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:23:47,152 INFO toNotifyTaskSize = 0 + +2025-09-24 23:23:47,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:23:56,808 INFO [long-pulling] client count 0 + +2025-09-24 23:23:56,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:23:57,152 INFO toNotifyTaskSize = 0 + +2025-09-24 23:23:57,152 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:24:06,808 INFO [long-pulling] client count 0 + +2025-09-24 23:24:06,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:24:07,153 INFO toNotifyTaskSize = 0 + +2025-09-24 23:24:07,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:24:16,809 INFO [long-pulling] client count 0 + +2025-09-24 23:24:16,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:24:17,153 INFO toNotifyTaskSize = 0 + +2025-09-24 23:24:17,153 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:24:26,810 INFO [long-pulling] client count 0 + +2025-09-24 23:24:26,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:24:27,154 INFO toNotifyTaskSize = 0 + +2025-09-24 23:24:27,154 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:24:36,811 INFO [long-pulling] client count 0 + +2025-09-24 23:24:36,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:24:37,155 INFO toNotifyTaskSize = 0 + +2025-09-24 23:24:37,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:24:46,812 INFO [long-pulling] client count 0 + +2025-09-24 23:24:46,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:24:47,155 INFO toNotifyTaskSize = 0 + +2025-09-24 23:24:47,155 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:24:56,812 INFO [long-pulling] client count 0 + +2025-09-24 23:24:56,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:24:57,156 INFO toNotifyTaskSize = 0 + +2025-09-24 23:24:57,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:25:06,813 INFO [long-pulling] client count 0 + +2025-09-24 23:25:06,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:25:07,156 INFO toNotifyTaskSize = 0 + +2025-09-24 23:25:07,156 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:25:16,814 INFO [long-pulling] client count 0 + +2025-09-24 23:25:16,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:25:17,157 INFO toNotifyTaskSize = 0 + +2025-09-24 23:25:17,157 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:25:26,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:25:26,815 INFO [long-pulling] client count 0 + +2025-09-24 23:25:27,158 INFO toNotifyTaskSize = 0 + +2025-09-24 23:25:27,158 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:25:36,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:25:36,816 INFO [long-pulling] client count 0 + +2025-09-24 23:25:37,158 INFO toNotifyTaskSize = 0 + +2025-09-24 23:25:37,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:25:46,816 INFO [long-pulling] client count 0 + +2025-09-24 23:25:46,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:25:47,159 INFO toNotifyTaskSize = 0 + +2025-09-24 23:25:47,159 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:25:56,817 INFO [long-pulling] client count 0 + +2025-09-24 23:25:56,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:25:57,160 INFO toNotifyTaskSize = 0 + +2025-09-24 23:25:57,160 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:26:06,818 INFO [long-pulling] client count 0 + +2025-09-24 23:26:06,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:26:07,162 INFO toNotifyTaskSize = 0 + +2025-09-24 23:26:07,162 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:26:16,819 INFO [long-pulling] client count 0 + +2025-09-24 23:26:16,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:26:17,162 INFO toNotifyTaskSize = 0 + +2025-09-24 23:26:17,162 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:26:26,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:26:26,821 INFO [long-pulling] client count 0 + +2025-09-24 23:26:27,163 INFO toNotifyTaskSize = 0 + +2025-09-24 23:26:27,163 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:26:36,821 INFO [long-pulling] client count 0 + +2025-09-24 23:26:36,821 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:26:37,164 INFO toNotifyTaskSize = 0 + +2025-09-24 23:26:37,164 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:26:46,822 INFO [long-pulling] client count 0 + +2025-09-24 23:26:46,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:26:47,166 INFO toNotifyTaskSize = 0 + +2025-09-24 23:26:47,166 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:26:56,823 INFO [long-pulling] client count 0 + +2025-09-24 23:26:56,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:26:57,166 INFO toNotifyTaskSize = 0 + +2025-09-24 23:26:57,166 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:27:06,824 INFO [long-pulling] client count 0 + +2025-09-24 23:27:06,824 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:27:07,167 INFO toNotifyTaskSize = 0 + +2025-09-24 23:27:07,167 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:27:16,825 INFO [long-pulling] client count 0 + +2025-09-24 23:27:16,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:27:17,168 INFO toNotifyTaskSize = 0 + +2025-09-24 23:27:17,168 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:27:26,826 INFO [long-pulling] client count 0 + +2025-09-24 23:27:26,826 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:27:27,169 INFO toNotifyTaskSize = 0 + +2025-09-24 23:27:27,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:27:36,827 INFO [long-pulling] client count 0 + +2025-09-24 23:27:36,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:27:37,170 INFO toNotifyTaskSize = 0 + +2025-09-24 23:27:37,170 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:27:46,828 INFO [long-pulling] client count 0 + +2025-09-24 23:27:46,828 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:27:47,171 INFO toNotifyTaskSize = 0 + +2025-09-24 23:27:47,171 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:27:56,829 INFO [long-pulling] client count 0 + +2025-09-24 23:27:56,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:27:57,172 INFO toNotifyTaskSize = 0 + +2025-09-24 23:27:57,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:28:06,829 INFO [long-pulling] client count 0 + +2025-09-24 23:28:06,829 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:28:07,173 INFO toNotifyTaskSize = 0 + +2025-09-24 23:28:07,173 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:28:16,830 INFO [long-pulling] client count 0 + +2025-09-24 23:28:16,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:28:17,173 INFO toNotifyTaskSize = 0 + +2025-09-24 23:28:17,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:28:26,830 INFO [long-pulling] client count 0 + +2025-09-24 23:28:26,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:28:27,174 INFO toNotifyTaskSize = 0 + +2025-09-24 23:28:27,174 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:28:36,830 INFO [long-pulling] client count 0 + +2025-09-24 23:28:36,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:28:37,175 INFO toNotifyTaskSize = 0 + +2025-09-24 23:28:37,175 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:28:46,831 INFO [long-pulling] client count 0 + +2025-09-24 23:28:46,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:28:47,176 INFO toNotifyTaskSize = 0 + +2025-09-24 23:28:47,176 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:28:56,831 INFO [long-pulling] client count 0 + +2025-09-24 23:28:56,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:28:57,177 INFO toNotifyTaskSize = 0 + +2025-09-24 23:28:57,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:29:06,832 INFO [long-pulling] client count 0 + +2025-09-24 23:29:06,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:29:07,177 INFO toNotifyTaskSize = 0 + +2025-09-24 23:29:07,177 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:29:16,832 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:29:16,832 INFO [long-pulling] client count 0 + +2025-09-24 23:29:17,178 INFO toNotifyTaskSize = 0 + +2025-09-24 23:29:17,178 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:29:26,833 INFO [long-pulling] client count 0 + +2025-09-24 23:29:26,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:29:27,178 INFO toNotifyTaskSize = 0 + +2025-09-24 23:29:27,178 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:29:36,834 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:29:36,834 INFO [long-pulling] client count 0 + +2025-09-24 23:29:37,179 INFO toNotifyTaskSize = 0 + +2025-09-24 23:29:37,179 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:29:46,835 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:29:46,836 INFO [long-pulling] client count 0 + +2025-09-24 23:29:47,180 INFO toNotifyTaskSize = 0 + +2025-09-24 23:29:47,181 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:29:56,836 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:29:56,836 INFO [long-pulling] client count 0 + +2025-09-24 23:29:57,181 INFO toNotifyTaskSize = 0 + +2025-09-24 23:29:57,182 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:30:06,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:30:06,837 INFO [long-pulling] client count 0 + +2025-09-24 23:30:07,183 INFO toNotifyTaskSize = 0 + +2025-09-24 23:30:07,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:30:16,838 INFO [long-pulling] client count 0 + +2025-09-24 23:30:16,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:30:17,183 INFO toNotifyTaskSize = 0 + +2025-09-24 23:30:17,183 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:30:26,840 INFO [long-pulling] client count 0 + +2025-09-24 23:30:26,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:30:27,184 INFO toNotifyTaskSize = 0 + +2025-09-24 23:30:27,184 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:30:36,841 INFO [long-pulling] client count 0 + +2025-09-24 23:30:36,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:30:37,185 INFO toNotifyTaskSize = 0 + +2025-09-24 23:30:37,185 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:30:46,843 INFO [long-pulling] client count 0 + +2025-09-24 23:30:46,843 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:30:47,185 INFO toNotifyTaskSize = 0 + +2025-09-24 23:30:47,185 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:30:56,843 INFO [long-pulling] client count 0 + +2025-09-24 23:30:56,844 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:30:57,186 INFO toNotifyTaskSize = 0 + +2025-09-24 23:30:57,186 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:31:06,845 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:31:06,845 INFO [long-pulling] client count 0 + +2025-09-24 23:31:07,187 INFO toNotifyTaskSize = 0 + +2025-09-24 23:31:07,187 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:31:16,845 INFO [long-pulling] client count 0 + +2025-09-24 23:31:16,846 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:31:17,188 INFO toNotifyTaskSize = 0 + +2025-09-24 23:31:17,188 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:31:26,847 INFO [long-pulling] client count 0 + +2025-09-24 23:31:26,847 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:31:27,189 INFO toNotifyTaskSize = 0 + +2025-09-24 23:31:27,189 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:31:36,848 INFO [long-pulling] client count 0 + +2025-09-24 23:31:36,848 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:31:37,190 INFO toNotifyTaskSize = 0 + +2025-09-24 23:31:37,190 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:31:46,849 INFO [long-pulling] client count 0 + +2025-09-24 23:31:46,849 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:31:47,191 INFO toNotifyTaskSize = 0 + +2025-09-24 23:31:47,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:31:56,851 INFO [long-pulling] client count 0 + +2025-09-24 23:31:56,851 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:31:57,191 INFO toNotifyTaskSize = 0 + +2025-09-24 23:31:57,191 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:32:06,853 INFO [long-pulling] client count 0 + +2025-09-24 23:32:06,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:32:07,192 INFO toNotifyTaskSize = 0 + +2025-09-24 23:32:07,192 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:32:16,854 INFO [long-pulling] client count 0 + +2025-09-24 23:32:16,854 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:32:17,193 INFO toNotifyTaskSize = 0 + +2025-09-24 23:32:17,194 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:32:26,855 INFO [long-pulling] client count 0 + +2025-09-24 23:32:26,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:32:27,210 INFO toNotifyTaskSize = 0 + +2025-09-24 23:32:27,215 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:32:36,856 INFO [long-pulling] client count 0 + +2025-09-24 23:32:36,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:32:37,216 INFO toNotifyTaskSize = 0 + +2025-09-24 23:32:37,216 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:32:46,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:32:46,858 INFO [long-pulling] client count 0 + +2025-09-24 23:32:47,217 INFO toNotifyTaskSize = 0 + +2025-09-24 23:32:47,217 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:32:56,859 INFO [long-pulling] client count 0 + +2025-09-24 23:32:56,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:32:57,218 INFO toNotifyTaskSize = 0 + +2025-09-24 23:32:57,218 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:33:06,866 INFO [long-pulling] client count 0 + +2025-09-24 23:33:06,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:33:07,219 INFO toNotifyTaskSize = 0 + +2025-09-24 23:33:07,219 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:33:16,866 INFO [long-pulling] client count 0 + +2025-09-24 23:33:16,867 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:33:17,220 INFO toNotifyTaskSize = 0 + +2025-09-24 23:33:17,220 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:33:26,867 INFO [long-pulling] client count 0 + +2025-09-24 23:33:26,867 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:33:27,221 INFO toNotifyTaskSize = 0 + +2025-09-24 23:33:27,221 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:33:36,868 INFO [long-pulling] client count 0 + +2025-09-24 23:33:36,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:33:37,222 INFO toNotifyTaskSize = 0 + +2025-09-24 23:33:37,222 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:33:46,869 INFO [long-pulling] client count 0 + +2025-09-24 23:33:46,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:33:47,223 INFO toNotifyTaskSize = 0 + +2025-09-24 23:33:47,223 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:33:56,874 INFO [long-pulling] client count 0 + +2025-09-24 23:33:56,874 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:33:57,224 INFO toNotifyTaskSize = 0 + +2025-09-24 23:33:57,224 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:34:06,875 INFO [long-pulling] client count 0 + +2025-09-24 23:34:06,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:34:07,225 INFO toNotifyTaskSize = 0 + +2025-09-24 23:34:07,225 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:34:16,876 INFO [long-pulling] client count 0 + +2025-09-24 23:34:16,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:34:17,226 INFO toNotifyTaskSize = 0 + +2025-09-24 23:34:17,226 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:34:26,878 INFO [long-pulling] client count 0 + +2025-09-24 23:34:26,878 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:34:27,227 INFO toNotifyTaskSize = 0 + +2025-09-24 23:34:27,228 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:34:36,878 INFO [long-pulling] client count 0 + +2025-09-24 23:34:36,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:34:37,228 INFO toNotifyTaskSize = 0 + +2025-09-24 23:34:37,228 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:34:46,879 INFO [long-pulling] client count 0 + +2025-09-24 23:34:46,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:34:47,229 INFO toNotifyTaskSize = 0 + +2025-09-24 23:34:47,230 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:34:56,880 INFO [long-pulling] client count 0 + +2025-09-24 23:34:56,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:34:57,231 INFO toNotifyTaskSize = 0 + +2025-09-24 23:34:57,231 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:35:06,881 INFO [long-pulling] client count 0 + +2025-09-24 23:35:06,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:35:07,232 INFO toNotifyTaskSize = 0 + +2025-09-24 23:35:07,232 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:35:16,882 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:35:16,882 INFO [long-pulling] client count 0 + +2025-09-24 23:35:17,233 INFO toNotifyTaskSize = 0 + +2025-09-24 23:35:17,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:35:26,883 INFO [long-pulling] client count 0 + +2025-09-24 23:35:26,883 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:35:27,234 INFO toNotifyTaskSize = 0 + +2025-09-24 23:35:27,234 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:35:36,886 INFO [long-pulling] client count 0 + +2025-09-24 23:35:36,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:35:37,234 INFO toNotifyTaskSize = 0 + +2025-09-24 23:35:37,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:35:46,887 INFO [long-pulling] client count 0 + +2025-09-24 23:35:46,887 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:35:47,235 INFO toNotifyTaskSize = 0 + +2025-09-24 23:35:47,235 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:35:56,888 INFO [long-pulling] client count 0 + +2025-09-24 23:35:56,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:35:57,237 INFO toNotifyTaskSize = 0 + +2025-09-24 23:35:57,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:36:06,889 INFO [long-pulling] client count 0 + +2025-09-24 23:36:06,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:36:07,237 INFO toNotifyTaskSize = 0 + +2025-09-24 23:36:07,237 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:36:16,890 INFO [long-pulling] client count 0 + +2025-09-24 23:36:16,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:36:17,238 INFO toNotifyTaskSize = 0 + +2025-09-24 23:36:17,238 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:36:26,891 INFO [long-pulling] client count 0 + +2025-09-24 23:36:26,891 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:36:27,238 INFO toNotifyTaskSize = 0 + +2025-09-24 23:36:27,239 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:36:36,893 INFO [long-pulling] client count 0 + +2025-09-24 23:36:36,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:36:37,240 INFO toNotifyTaskSize = 0 + +2025-09-24 23:36:37,240 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:36:46,894 INFO [long-pulling] client count 0 + +2025-09-24 23:36:46,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:36:47,265 INFO toNotifyTaskSize = 0 + +2025-09-24 23:36:47,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:36:56,895 INFO [long-pulling] client count 0 + +2025-09-24 23:36:56,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:36:57,265 INFO toNotifyTaskSize = 0 + +2025-09-24 23:36:57,265 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:37:06,897 INFO [long-pulling] client count 0 + +2025-09-24 23:37:06,897 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:37:07,266 INFO toNotifyTaskSize = 0 + +2025-09-24 23:37:07,266 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:37:16,898 INFO [long-pulling] client count 0 + +2025-09-24 23:37:16,898 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:37:17,267 INFO toNotifyTaskSize = 0 + +2025-09-24 23:37:17,267 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:37:26,898 INFO [long-pulling] client count 0 + +2025-09-24 23:37:26,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:37:27,267 INFO toNotifyTaskSize = 0 + +2025-09-24 23:37:27,267 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:37:36,899 INFO [long-pulling] client count 0 + +2025-09-24 23:37:36,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:37:37,268 INFO toNotifyTaskSize = 0 + +2025-09-24 23:37:37,268 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:37:46,899 INFO [long-pulling] client count 0 + +2025-09-24 23:37:46,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:37:47,269 INFO toNotifyTaskSize = 0 + +2025-09-24 23:37:47,269 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:37:56,900 INFO [long-pulling] client count 0 + +2025-09-24 23:37:56,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:37:57,269 INFO toNotifyTaskSize = 0 + +2025-09-24 23:37:57,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:38:06,901 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:38:06,902 INFO [long-pulling] client count 0 + +2025-09-24 23:38:07,270 INFO toNotifyTaskSize = 0 + +2025-09-24 23:38:07,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:38:16,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:38:16,903 INFO [long-pulling] client count 0 + +2025-09-24 23:38:17,270 INFO toNotifyTaskSize = 0 + +2025-09-24 23:38:17,270 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:38:26,904 INFO [long-pulling] client count 0 + +2025-09-24 23:38:26,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:38:27,271 INFO toNotifyTaskSize = 0 + +2025-09-24 23:38:27,271 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:38:36,905 INFO [long-pulling] client count 0 + +2025-09-24 23:38:36,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:38:37,272 INFO toNotifyTaskSize = 0 + +2025-09-24 23:38:37,272 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:38:46,907 INFO [long-pulling] client count 0 + +2025-09-24 23:38:46,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:38:47,273 INFO toNotifyTaskSize = 0 + +2025-09-24 23:38:47,273 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:38:56,908 INFO [long-pulling] client count 0 + +2025-09-24 23:38:56,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:38:57,274 INFO toNotifyTaskSize = 0 + +2025-09-24 23:38:57,274 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:39:06,909 INFO [long-pulling] client count 0 + +2025-09-24 23:39:06,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:39:07,274 INFO toNotifyTaskSize = 0 + +2025-09-24 23:39:07,275 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:39:16,910 INFO [long-pulling] client count 0 + +2025-09-24 23:39:16,910 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:39:17,276 INFO toNotifyTaskSize = 0 + +2025-09-24 23:39:17,276 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:39:26,912 INFO [long-pulling] client count 0 + +2025-09-24 23:39:26,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:39:27,276 INFO toNotifyTaskSize = 0 + +2025-09-24 23:39:27,277 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:39:36,915 INFO [long-pulling] client count 0 + +2025-09-24 23:39:36,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:39:37,278 INFO toNotifyTaskSize = 0 + +2025-09-24 23:39:37,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:39:46,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:39:46,916 INFO [long-pulling] client count 0 + +2025-09-24 23:39:47,278 INFO toNotifyTaskSize = 0 + +2025-09-24 23:39:47,278 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:39:56,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:39:56,918 INFO [long-pulling] client count 0 + +2025-09-24 23:39:57,279 INFO toNotifyTaskSize = 0 + +2025-09-24 23:39:57,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:40:06,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:40:06,925 INFO [long-pulling] client count 0 + +2025-09-24 23:40:07,280 INFO toNotifyTaskSize = 0 + +2025-09-24 23:40:07,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:40:16,925 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:40:16,926 INFO [long-pulling] client count 0 + +2025-09-24 23:40:17,280 INFO toNotifyTaskSize = 0 + +2025-09-24 23:40:17,280 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:40:26,927 INFO [long-pulling] client count 0 + +2025-09-24 23:40:26,927 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:40:27,281 INFO toNotifyTaskSize = 0 + +2025-09-24 23:40:27,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:40:36,927 INFO [long-pulling] client count 0 + +2025-09-24 23:40:36,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:40:37,281 INFO toNotifyTaskSize = 0 + +2025-09-24 23:40:37,281 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:40:46,929 INFO [long-pulling] client count 0 + +2025-09-24 23:40:46,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:40:47,281 INFO toNotifyTaskSize = 0 + +2025-09-24 23:40:47,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:40:56,930 INFO [long-pulling] client count 0 + +2025-09-24 23:40:56,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:40:57,282 INFO toNotifyTaskSize = 0 + +2025-09-24 23:40:57,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:41:06,930 INFO [long-pulling] client count 0 + +2025-09-24 23:41:06,930 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:41:07,282 INFO toNotifyTaskSize = 0 + +2025-09-24 23:41:07,282 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:41:16,931 INFO [long-pulling] client count 0 + +2025-09-24 23:41:16,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:41:17,283 INFO toNotifyTaskSize = 0 + +2025-09-24 23:41:17,283 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:41:26,932 INFO [long-pulling] client count 0 + +2025-09-24 23:41:26,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:41:27,284 INFO toNotifyTaskSize = 0 + +2025-09-24 23:41:27,284 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:41:36,933 INFO [long-pulling] client count 0 + +2025-09-24 23:41:36,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:41:37,284 INFO toNotifyTaskSize = 0 + +2025-09-24 23:41:37,284 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:41:46,933 INFO [long-pulling] client count 0 + +2025-09-24 23:41:46,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:41:47,284 INFO toNotifyTaskSize = 0 + +2025-09-24 23:41:47,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:41:56,934 INFO [long-pulling] client count 0 + +2025-09-24 23:41:56,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:41:57,285 INFO toNotifyTaskSize = 0 + +2025-09-24 23:41:57,285 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:42:06,934 INFO [long-pulling] client count 0 + +2025-09-24 23:42:06,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:42:07,286 INFO toNotifyTaskSize = 0 + +2025-09-24 23:42:07,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:42:16,934 INFO [long-pulling] client count 0 + +2025-09-24 23:42:16,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:42:17,286 INFO toNotifyTaskSize = 0 + +2025-09-24 23:42:17,286 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:42:26,935 INFO [long-pulling] client count 0 + +2025-09-24 23:42:26,935 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:42:27,287 INFO toNotifyTaskSize = 0 + +2025-09-24 23:42:27,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:42:36,936 INFO [long-pulling] client count 0 + +2025-09-24 23:42:36,936 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:42:37,287 INFO toNotifyTaskSize = 0 + +2025-09-24 23:42:37,287 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:42:46,937 INFO [long-pulling] client count 0 + +2025-09-24 23:42:46,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:42:47,287 INFO toNotifyTaskSize = 0 + +2025-09-24 23:42:47,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:42:56,937 INFO [long-pulling] client count 0 + +2025-09-24 23:42:56,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:42:57,288 INFO toNotifyTaskSize = 0 + +2025-09-24 23:42:57,288 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:43:06,937 INFO [long-pulling] client count 0 + +2025-09-24 23:43:06,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:43:07,289 INFO toNotifyTaskSize = 0 + +2025-09-24 23:43:07,289 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:43:16,938 INFO [long-pulling] client count 0 + +2025-09-24 23:43:16,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:43:17,290 INFO toNotifyTaskSize = 0 + +2025-09-24 23:43:17,290 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:43:26,940 INFO [long-pulling] client count 0 + +2025-09-24 23:43:26,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:43:27,290 INFO toNotifyTaskSize = 0 + +2025-09-24 23:43:27,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:43:36,940 INFO [long-pulling] client count 0 + +2025-09-24 23:43:36,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:43:37,291 INFO toNotifyTaskSize = 0 + +2025-09-24 23:43:37,291 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:43:46,940 INFO [long-pulling] client count 0 + +2025-09-24 23:43:46,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:43:47,293 INFO toNotifyTaskSize = 0 + +2025-09-24 23:43:47,293 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:43:56,941 INFO [long-pulling] client count 0 + +2025-09-24 23:43:56,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:43:57,294 INFO toNotifyTaskSize = 0 + +2025-09-24 23:43:57,294 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:44:06,943 INFO [long-pulling] client count 0 + +2025-09-24 23:44:06,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:44:07,294 INFO toNotifyTaskSize = 0 + +2025-09-24 23:44:07,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:44:16,944 INFO [long-pulling] client count 0 + +2025-09-24 23:44:16,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:44:17,295 INFO toNotifyTaskSize = 0 + +2025-09-24 23:44:17,295 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:44:26,944 INFO [long-pulling] client count 0 + +2025-09-24 23:44:26,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:44:27,296 INFO toNotifyTaskSize = 0 + +2025-09-24 23:44:27,296 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:44:36,945 INFO [long-pulling] client count 0 + +2025-09-24 23:44:36,945 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:44:37,296 INFO toNotifyTaskSize = 0 + +2025-09-24 23:44:37,297 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:44:46,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:44:46,946 INFO [long-pulling] client count 0 + +2025-09-24 23:44:47,297 INFO toNotifyTaskSize = 0 + +2025-09-24 23:44:47,297 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:44:56,947 INFO [long-pulling] client count 0 + +2025-09-24 23:44:56,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:44:57,297 INFO toNotifyTaskSize = 0 + +2025-09-24 23:44:57,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:45:06,947 INFO [long-pulling] client count 0 + +2025-09-24 23:45:06,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:45:07,298 INFO toNotifyTaskSize = 0 + +2025-09-24 23:45:07,298 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:45:16,952 INFO [long-pulling] client count 0 + +2025-09-24 23:45:16,955 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:45:17,298 INFO toNotifyTaskSize = 0 + +2025-09-24 23:45:17,299 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:45:26,953 INFO [long-pulling] client count 0 + +2025-09-24 23:45:26,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:45:27,299 INFO toNotifyTaskSize = 0 + +2025-09-24 23:45:27,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:45:36,954 INFO [long-pulling] client count 0 + +2025-09-24 23:45:36,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:45:37,300 INFO toNotifyTaskSize = 0 + +2025-09-24 23:45:37,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:45:46,956 INFO [long-pulling] client count 0 + +2025-09-24 23:45:46,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:45:47,300 INFO toNotifyTaskSize = 0 + +2025-09-24 23:45:47,300 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:45:56,957 INFO [long-pulling] client count 0 + +2025-09-24 23:45:56,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:45:57,301 INFO toNotifyTaskSize = 0 + +2025-09-24 23:45:57,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:46:06,958 INFO [long-pulling] client count 0 + +2025-09-24 23:46:06,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:46:07,301 INFO toNotifyTaskSize = 0 + +2025-09-24 23:46:07,301 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:46:16,959 INFO [long-pulling] client count 0 + +2025-09-24 23:46:16,973 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:46:17,302 INFO toNotifyTaskSize = 0 + +2025-09-24 23:46:17,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:46:26,960 INFO [long-pulling] client count 0 + +2025-09-24 23:46:26,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:46:27,302 INFO toNotifyTaskSize = 0 + +2025-09-24 23:46:27,302 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:46:36,961 INFO [long-pulling] client count 0 + +2025-09-24 23:46:36,975 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:46:37,303 INFO toNotifyTaskSize = 0 + +2025-09-24 23:46:37,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:46:46,962 INFO [long-pulling] client count 0 + +2025-09-24 23:46:46,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:46:47,303 INFO toNotifyTaskSize = 0 + +2025-09-24 23:46:47,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:46:56,963 INFO [long-pulling] client count 0 + +2025-09-24 23:46:56,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:46:57,303 INFO toNotifyTaskSize = 0 + +2025-09-24 23:46:57,303 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:47:06,964 INFO [long-pulling] client count 0 + +2025-09-24 23:47:06,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:47:07,304 INFO toNotifyTaskSize = 0 + +2025-09-24 23:47:07,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:47:16,965 INFO [long-pulling] client count 0 + +2025-09-24 23:47:16,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:47:17,304 INFO toNotifyTaskSize = 0 + +2025-09-24 23:47:17,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:47:26,965 INFO [long-pulling] client count 0 + +2025-09-24 23:47:26,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:47:27,304 INFO toNotifyTaskSize = 0 + +2025-09-24 23:47:27,304 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:47:36,968 INFO [long-pulling] client count 0 + +2025-09-24 23:47:36,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:47:37,305 INFO toNotifyTaskSize = 0 + +2025-09-24 23:47:37,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:47:46,969 INFO [long-pulling] client count 0 + +2025-09-24 23:47:46,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:47:47,305 INFO toNotifyTaskSize = 0 + +2025-09-24 23:47:47,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:47:56,970 INFO [long-pulling] client count 0 + +2025-09-24 23:47:56,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:47:57,305 INFO toNotifyTaskSize = 0 + +2025-09-24 23:47:57,305 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:48:06,971 INFO [long-pulling] client count 0 + +2025-09-24 23:48:06,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:48:07,305 INFO toNotifyTaskSize = 0 + +2025-09-24 23:48:07,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:48:16,973 INFO [long-pulling] client count 0 + +2025-09-24 23:48:16,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:48:17,306 INFO toNotifyTaskSize = 0 + +2025-09-24 23:48:17,306 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:48:26,974 INFO [long-pulling] client count 0 + +2025-09-24 23:48:26,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:48:27,307 INFO toNotifyTaskSize = 0 + +2025-09-24 23:48:27,307 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:48:36,975 INFO [long-pulling] client count 0 + +2025-09-24 23:48:36,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:48:37,308 INFO toNotifyTaskSize = 0 + +2025-09-24 23:48:37,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:48:46,977 INFO [long-pulling] client count 0 + +2025-09-24 23:48:46,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:48:47,308 INFO toNotifyTaskSize = 0 + +2025-09-24 23:48:47,308 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:48:56,977 INFO [long-pulling] client count 0 + +2025-09-24 23:48:56,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:48:57,309 INFO toNotifyTaskSize = 0 + +2025-09-24 23:48:57,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:49:06,978 INFO [long-pulling] client count 0 + +2025-09-24 23:49:06,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:49:07,309 INFO toNotifyTaskSize = 0 + +2025-09-24 23:49:07,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:49:16,980 INFO [long-pulling] client count 0 + +2025-09-24 23:49:16,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:49:17,309 INFO toNotifyTaskSize = 0 + +2025-09-24 23:49:17,309 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:49:26,981 INFO [long-pulling] client count 0 + +2025-09-24 23:49:26,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:49:27,309 INFO toNotifyTaskSize = 0 + +2025-09-24 23:49:27,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:49:36,983 INFO [long-pulling] client count 0 + +2025-09-24 23:49:36,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:49:37,310 INFO toNotifyTaskSize = 0 + +2025-09-24 23:49:37,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:49:46,985 INFO [long-pulling] client count 0 + +2025-09-24 23:49:46,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:49:47,310 INFO toNotifyTaskSize = 0 + +2025-09-24 23:49:47,310 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:49:56,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:49:56,986 INFO [long-pulling] client count 0 + +2025-09-24 23:49:57,311 INFO toNotifyTaskSize = 0 + +2025-09-24 23:49:57,311 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:50:06,987 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:50:06,989 INFO [long-pulling] client count 0 + +2025-09-24 23:50:07,311 INFO toNotifyTaskSize = 0 + +2025-09-24 23:50:07,311 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:50:16,989 INFO [long-pulling] client count 0 + +2025-09-24 23:50:16,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:50:17,312 INFO toNotifyTaskSize = 0 + +2025-09-24 23:50:17,312 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:50:26,990 INFO [long-pulling] client count 0 + +2025-09-24 23:50:26,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:50:27,313 INFO toNotifyTaskSize = 0 + +2025-09-24 23:50:27,313 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:50:36,995 INFO [long-pulling] client count 0 + +2025-09-24 23:50:36,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:50:37,313 INFO toNotifyTaskSize = 0 + +2025-09-24 23:50:37,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:50:46,995 INFO [long-pulling] client count 0 + +2025-09-24 23:50:46,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:50:47,314 INFO toNotifyTaskSize = 0 + +2025-09-24 23:50:47,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:50:56,996 INFO [long-pulling] client count 0 + +2025-09-24 23:50:56,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:50:57,314 INFO toNotifyTaskSize = 0 + +2025-09-24 23:50:57,314 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:51:06,996 INFO [long-pulling] client count 0 + +2025-09-24 23:51:06,996 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:51:07,315 INFO toNotifyTaskSize = 0 + +2025-09-24 23:51:07,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:51:16,998 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:51:16,998 INFO [long-pulling] client count 0 + +2025-09-24 23:51:17,315 INFO toNotifyTaskSize = 0 + +2025-09-24 23:51:17,315 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:51:27,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:51:27,000 INFO [long-pulling] client count 0 + +2025-09-24 23:51:27,316 INFO toNotifyTaskSize = 0 + +2025-09-24 23:51:27,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:51:37,000 INFO [long-pulling] client count 0 + +2025-09-24 23:51:37,000 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:51:37,316 INFO toNotifyTaskSize = 0 + +2025-09-24 23:51:37,316 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:51:47,001 INFO [long-pulling] client count 0 + +2025-09-24 23:51:47,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:51:47,317 INFO toNotifyTaskSize = 0 + +2025-09-24 23:51:47,317 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:51:57,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:51:57,001 INFO [long-pulling] client count 0 + +2025-09-24 23:51:57,318 INFO toNotifyTaskSize = 0 + +2025-09-24 23:51:57,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:52:07,001 INFO [long-pulling] client count 0 + +2025-09-24 23:52:07,001 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:52:07,318 INFO toNotifyTaskSize = 0 + +2025-09-24 23:52:07,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:52:17,002 INFO [long-pulling] client count 0 + +2025-09-24 23:52:17,002 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:52:17,318 INFO toNotifyTaskSize = 0 + +2025-09-24 23:52:17,318 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:52:27,003 INFO [long-pulling] client count 0 + +2025-09-24 23:52:27,003 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:52:27,319 INFO toNotifyTaskSize = 0 + +2025-09-24 23:52:27,319 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:52:37,004 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:52:37,004 INFO [long-pulling] client count 0 + +2025-09-24 23:52:37,320 INFO toNotifyTaskSize = 0 + +2025-09-24 23:52:37,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:52:47,004 INFO [long-pulling] client count 0 + +2025-09-24 23:52:47,005 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:52:47,320 INFO toNotifyTaskSize = 0 + +2025-09-24 23:52:47,320 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:52:57,006 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:52:57,006 INFO [long-pulling] client count 0 + +2025-09-24 23:52:57,321 INFO toNotifyTaskSize = 0 + +2025-09-24 23:52:57,321 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:53:07,007 INFO [long-pulling] client count 0 + +2025-09-24 23:53:07,007 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:53:07,322 INFO toNotifyTaskSize = 0 + +2025-09-24 23:53:07,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:53:17,008 INFO [long-pulling] client count 0 + +2025-09-24 23:53:17,008 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:53:17,323 INFO toNotifyTaskSize = 0 + +2025-09-24 23:53:17,323 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:53:27,009 INFO [long-pulling] client count 0 + +2025-09-24 23:53:27,009 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:53:27,324 INFO toNotifyTaskSize = 0 + +2025-09-24 23:53:27,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:53:37,010 INFO [long-pulling] client count 0 + +2025-09-24 23:53:37,010 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:53:37,324 INFO toNotifyTaskSize = 0 + +2025-09-24 23:53:37,324 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:53:47,011 INFO [long-pulling] client count 0 + +2025-09-24 23:53:47,011 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:53:47,325 INFO toNotifyTaskSize = 0 + +2025-09-24 23:53:47,325 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:53:57,012 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:53:57,012 INFO [long-pulling] client count 0 + +2025-09-24 23:53:57,325 INFO toNotifyTaskSize = 0 + +2025-09-24 23:53:57,325 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:54:07,013 INFO [long-pulling] client count 0 + +2025-09-24 23:54:07,013 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:54:07,325 INFO toNotifyTaskSize = 0 + +2025-09-24 23:54:07,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:54:17,014 INFO [long-pulling] client count 0 + +2025-09-24 23:54:17,014 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:54:17,326 INFO toNotifyTaskSize = 0 + +2025-09-24 23:54:17,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:54:27,014 INFO [long-pulling] client count 0 + +2025-09-24 23:54:27,015 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:54:27,326 INFO toNotifyTaskSize = 0 + +2025-09-24 23:54:27,326 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:54:37,015 INFO [long-pulling] client count 0 + +2025-09-24 23:54:37,015 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:54:37,326 INFO toNotifyTaskSize = 0 + +2025-09-24 23:54:37,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:54:47,015 INFO [long-pulling] client count 0 + +2025-09-24 23:54:47,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:54:47,327 INFO toNotifyTaskSize = 0 + +2025-09-24 23:54:47,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:54:57,016 INFO [long-pulling] client count 0 + +2025-09-24 23:54:57,016 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:54:57,327 INFO toNotifyTaskSize = 0 + +2025-09-24 23:54:57,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:55:07,016 INFO [long-pulling] client count 0 + +2025-09-24 23:55:07,017 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:55:07,327 INFO toNotifyTaskSize = 0 + +2025-09-24 23:55:07,327 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:55:17,017 INFO [long-pulling] client count 0 + +2025-09-24 23:55:17,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:55:17,328 INFO toNotifyTaskSize = 0 + +2025-09-24 23:55:17,328 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:55:27,018 INFO [long-pulling] client count 0 + +2025-09-24 23:55:27,018 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:55:27,328 INFO toNotifyTaskSize = 0 + +2025-09-24 23:55:27,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:55:37,020 INFO [long-pulling] client count 0 + +2025-09-24 23:55:37,020 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:55:37,343 INFO toNotifyTaskSize = 0 + +2025-09-24 23:55:37,343 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:55:47,021 INFO [long-pulling] client count 0 + +2025-09-24 23:55:47,021 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:55:47,343 INFO toNotifyTaskSize = 0 + +2025-09-24 23:55:47,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:55:57,021 INFO [long-pulling] client count 0 + +2025-09-24 23:55:57,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:55:57,344 INFO toNotifyTaskSize = 0 + +2025-09-24 23:55:57,344 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:56:07,022 INFO [long-pulling] client count 0 + +2025-09-24 23:56:07,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:56:07,345 INFO toNotifyTaskSize = 0 + +2025-09-24 23:56:07,345 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:56:17,022 INFO [long-pulling] client count 0 + +2025-09-24 23:56:17,023 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:56:17,346 INFO toNotifyTaskSize = 0 + +2025-09-24 23:56:17,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:56:27,023 INFO [long-pulling] client count 0 + +2025-09-24 23:56:27,024 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:56:27,346 INFO toNotifyTaskSize = 0 + +2025-09-24 23:56:27,346 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:56:37,023 INFO [long-pulling] client count 0 + +2025-09-24 23:56:37,025 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:56:37,347 INFO toNotifyTaskSize = 0 + +2025-09-24 23:56:37,347 INFO toClientNotifyTaskSize = 0 + +2025-09-24 23:56:47,024 INFO [long-pulling] client count 0 + +2025-09-24 23:56:47,025 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 + +2025-09-24 23:56:47,363 INFO toNotifyTaskSize = 0 + +2025-09-24 23:56:47,363 INFO toClientNotifyTaskSize = 0 diff --git a/docker/nacos/standalone-logs/config-trace.log b/docker/nacos/standalone-logs/config-trace.log index d90b94a..09f8859 100644 --- a/docker/nacos/standalone-logs/config-trace.log +++ b/docker/nacos/standalone-logs/config-trace.log @@ -1,102 +1,142 @@ -2025-09-23 01:32:49,969|8e5a20eec60e|DevBaseUrl|DEFAULT_GROUP|public|null|1758562369951|8e5a20eec60e|persist|pub|-1|d95df047a29e8ba8bd2f8ddd5b0de5d8 -2025-09-23 01:32:50,107|8e5a20eec60e|DevBaseUrl|DEFAULT_GROUP|public|null|1758562369951|192.168.97.3|dump|ok|155|25 -2025-09-23 01:33:42,270|8e5a20eec60e|prodBaseUrl|DEFAULT_GROUP|public|null|1758562422265|8e5a20eec60e|persist|pub|-1|05a3bc870e145610c22935fd73e6fdc8 -2025-09-23 01:33:42,299|8e5a20eec60e|prodBaseUrl|DEFAULT_GROUP|public|null|1758562422265|192.168.97.3|dump|ok|34|26 -2025-09-23 01:42:32,795|8e5a20eec60e|DevBaseUrl|DEFAULT_GROUP|public|null|1758562369951|pull|ok|582844|192.168.97.1|false|http -2025-09-23 01:46:16,457|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|8e5a20eec60e|persist|pub|-1|ba8fab5986a1ef56ad6fae900e3c96be -2025-09-23 01:46:16,621|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|192.168.97.3|dump|ok|168|102 -2025-09-23 01:47:04,251|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|47798|192.168.97.1|false|http -2025-09-23 01:48:59,600|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|163146|192.168.97.1|false|http -2025-09-23 01:49:41,925|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|205472|192.168.97.1|false|http -2025-09-23 01:49:50,114|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|213661|192.168.97.1|false|http -2025-09-23 01:55:58,625|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|582172|192.168.97.1|false|http -2025-09-23 01:57:15,815|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|659362|192.168.97.1|false|http -2025-09-23 01:58:11,660|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|715207|192.168.97.1|false|http -2025-09-23 01:58:48,309|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|751856|192.168.97.1|false|http -2025-09-23 01:58:55,114|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|758661|192.168.97.1|false|http -2025-09-23 01:59:04,721|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|768268|192.168.97.1|false|http -2025-09-23 01:59:28,136|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|791683|192.168.97.1|false|http -2025-09-23 02:06:33,721|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1217268|192.168.97.1|false|http -2025-09-23 02:07:11,865|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1255412|192.168.97.1|false|http -2025-09-23 02:08:03,213|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1306760|192.168.97.1|false|http -2025-09-23 02:11:29,450|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1512997|192.168.97.1|false|http -2025-09-23 02:11:59,947|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1543494|192.168.97.1|false|http -2025-09-23 02:13:02,810|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1606357|192.168.97.1|false|http -2025-09-23 02:14:53,129|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1716676|192.168.97.1|false|http -2025-09-23 02:16:10,972|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1794519|192.168.97.1|false|http -2025-09-23 02:18:04,851|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1908398|192.168.97.1|false|http -2025-09-23 02:18:31,314|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|1934861|192.168.97.1|false|http -2025-09-23 02:19:53,202|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2016749|192.168.97.1|false|http -2025-09-23 02:20:44,429|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2067976|192.168.97.1|false|http -2025-09-23 02:20:55,485|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2079032|192.168.97.1|false|http -2025-09-23 02:25:50,379|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2373926|192.168.97.1|false|http -2025-09-23 02:29:07,000|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2570547|192.168.97.1|false|http -2025-09-23 02:31:42,590|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2726137|192.168.97.1|false|http -2025-09-23 02:32:44,046|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2787593|192.168.97.1|false|http -2025-09-23 02:33:01,610|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2805157|192.168.97.1|false|http -2025-09-23 02:33:53,394|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2856941|192.168.97.1|false|http -2025-09-23 02:35:01,077|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|2924624|192.168.97.1|false|http -2025-09-23 02:40:10,394|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3233941|192.168.97.1|false|http -2025-09-23 02:45:17,695|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3541242|192.168.97.1|false|http -2025-09-23 02:45:17,711|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3541257|192.168.97.1|false|http -2025-09-23 02:45:43,399|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3566946|192.168.97.1|false|http -2025-09-23 02:45:43,422|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3566969|192.168.97.1|false|http -2025-09-23 02:48:21,106|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3724653|192.168.97.1|false|http -2025-09-23 02:48:21,126|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3724673|192.168.97.1|false|http -2025-09-23 02:48:40,966|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3744513|192.168.97.1|false|http -2025-09-23 02:48:40,990|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3744537|192.168.97.1|false|http -2025-09-23 02:49:38,780|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3802326|192.168.97.1|false|http -2025-09-23 02:49:38,797|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3802344|192.168.97.1|false|http -2025-09-23 02:49:46,849|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3810396|192.168.97.1|false|http -2025-09-23 02:51:19,992|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3903539|192.168.97.1|false|http -2025-09-23 02:51:20,011|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3903558|192.168.97.1|false|http -2025-09-23 02:52:00,249|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3943796|192.168.97.1|false|http -2025-09-23 02:52:33,889|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3977436|192.168.97.1|false|http -2025-09-23 02:52:33,911|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3977458|192.168.97.1|false|http -2025-09-23 02:52:41,250|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3984797|192.168.97.1|false|http -2025-09-23 02:52:41,270|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|3984817|192.168.97.1|false|http -2025-09-23 02:53:25,759|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4029306|192.168.97.1|false|http -2025-09-23 02:53:25,776|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4029323|192.168.97.1|false|http -2025-09-23 02:56:27,175|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4210722|192.168.97.1|false|http -2025-09-23 02:56:27,193|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4210740|192.168.97.1|false|http -2025-09-23 02:56:33,465|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4217012|192.168.97.1|false|http -2025-09-23 02:56:33,491|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4217038|192.168.97.1|false|http -2025-09-23 02:56:37,670|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4221217|192.168.97.1|false|http -2025-09-23 02:56:37,691|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4221238|192.168.97.1|false|http -2025-09-23 03:01:56,224|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4539771|192.168.97.1|false|http -2025-09-23 03:01:56,240|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4539787|192.168.97.1|false|http -2025-09-23 03:04:44,016|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4707563|192.168.97.1|false|http -2025-09-23 03:04:44,033|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4707579|192.168.97.1|false|http -2025-09-23 03:04:48,537|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4712084|192.168.97.1|false|http -2025-09-23 03:04:48,560|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4712107|192.168.97.1|false|http -2025-09-23 03:05:05,498|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4729045|192.168.97.1|false|http -2025-09-23 03:05:05,519|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4729066|192.168.97.1|false|http -2025-09-23 03:07:34,074|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4877621|192.168.97.1|false|http -2025-09-23 03:07:34,090|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4877637|192.168.97.1|false|http -2025-09-23 03:07:49,499|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4893046|192.168.97.1|false|http -2025-09-23 03:07:49,517|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4893064|192.168.97.1|false|http -2025-09-23 03:07:52,497|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4896044|192.168.97.1|false|http -2025-09-23 03:07:52,557|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4896104|192.168.97.1|false|http -2025-09-23 03:08:42,914|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4946461|192.168.97.1|false|http -2025-09-23 03:08:47,877|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|4951424|192.168.97.1|false|http -2025-09-23 03:09:54,447|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5017994|192.168.97.1|false|http -2025-09-23 03:09:54,467|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5018014|192.168.97.1|false|http -2025-09-23 03:12:28,430|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5171977|192.168.97.1|false|http -2025-09-23 03:13:23,045|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5226592|192.168.97.1|false|http -2025-09-23 03:13:23,066|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5226613|192.168.97.1|false|http -2025-09-23 03:13:43,393|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5246940|192.168.97.1|false|http -2025-09-23 03:13:43,412|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5246959|192.168.97.1|false|http -2025-09-23 03:16:37,514|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5421061|192.168.97.1|false|http -2025-09-23 03:16:37,534|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5421081|192.168.97.1|false|http -2025-09-23 03:17:06,783|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5450330|192.168.97.1|false|http -2025-09-23 03:17:06,805|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5450352|192.168.97.1|false|http -2025-09-23 03:17:22,159|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5465706|192.168.97.1|false|http -2025-09-23 03:17:22,183|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5465730|192.168.97.1|false|http -2025-09-23 03:17:30,946|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5474493|192.168.97.1|false|http -2025-09-23 03:17:30,966|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5474513|192.168.97.1|false|http -2025-09-23 03:18:29,650|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5533197|192.168.97.1|false|http -2025-09-23 03:18:29,671|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758563176453|pull|ok|5533218|192.168.97.1|false|http -2025-09-23 03:19:02,602|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|8e5a20eec60e|persist|pub|-1|c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-23 03:19:02,675|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|192.168.97.3|dump|ok|84|97 -2025-09-23 03:19:17,149|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|14558|192.168.97.1|false|http -2025-09-23 03:19:17,168|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|14577|192.168.97.1|false|http +2025-09-24 00:01:21,855|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74539264|192.168.97.1|false|http +2025-09-24 00:01:21,869|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74539278|192.168.97.1|false|http +2025-09-24 00:04:03,896|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74701305|192.168.97.1|false|http +2025-09-24 00:04:03,908|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74701317|192.168.97.1|false|http +2025-09-24 00:04:48,318|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74745727|192.168.97.1|false|http +2025-09-24 00:04:48,336|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74745745|192.168.97.1|false|http +2025-09-24 00:05:35,874|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74793283|192.168.97.1|false|http +2025-09-24 00:05:35,898|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74793307|192.168.97.1|false|http +2025-09-24 00:07:38,430|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74915839|192.168.97.1|false|http +2025-09-24 00:07:38,439|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74915848|192.168.97.1|false|http +2025-09-24 00:09:02,249|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74999658|192.168.97.1|false|http +2025-09-24 00:09:02,280|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|74999689|192.168.97.1|false|http +2025-09-24 00:09:43,554|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75040963|192.168.97.1|false|http +2025-09-24 00:09:43,652|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75041061|192.168.97.1|false|http +2025-09-24 00:10:01,974|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75059383|192.168.97.1|false|http +2025-09-24 00:10:01,994|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75059403|192.168.97.1|false|http +2025-09-24 00:13:57,243|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75294652|192.168.97.1|false|http +2025-09-24 00:13:57,335|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75294744|192.168.97.1|false|http +2025-09-24 00:14:15,005|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75312414|192.168.97.1|false|http +2025-09-24 00:14:15,066|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75312475|192.168.97.1|false|http +2025-09-24 00:18:17,974|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75555383|192.168.97.1|false|http +2025-09-24 00:18:17,984|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75555393|192.168.97.1|false|http +2025-09-24 00:18:34,832|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75572241|192.168.97.1|false|http +2025-09-24 00:18:34,853|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75572262|192.168.97.1|false|http +2025-09-24 00:19:02,413|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75599822|192.168.97.1|false|http +2025-09-24 00:21:34,183|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75751592|192.168.97.1|false|http +2025-09-24 00:21:34,190|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75751599|192.168.97.1|false|http +2025-09-24 00:24:05,490|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75902899|192.168.97.1|false|http +2025-09-24 00:24:05,499|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75902908|192.168.97.1|false|http +2025-09-24 00:24:58,365|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75955774|192.168.97.1|false|http +2025-09-24 00:24:58,383|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|75955792|192.168.97.1|false|http +2025-09-24 00:26:13,704|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76031113|192.168.97.1|false|http +2025-09-24 00:26:18,635|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76036044|192.168.97.1|false|http +2025-09-24 00:26:18,655|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76036064|192.168.97.1|false|http +2025-09-24 00:26:33,071|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76050480|192.168.97.1|false|http +2025-09-24 00:26:58,740|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76076149|192.168.97.1|false|http +2025-09-24 00:26:58,762|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76076171|192.168.97.1|false|http +2025-09-24 00:27:22,452|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76099861|192.168.97.1|false|http +2025-09-24 00:27:22,468|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76099877|192.168.97.1|false|http +2025-09-24 00:36:48,409|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76665817|192.168.97.1|false|http +2025-09-24 00:36:48,418|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76665827|192.168.97.1|false|http +2025-09-24 00:37:08,824|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76686233|192.168.97.1|false|http +2025-09-24 00:37:08,845|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76686254|192.168.97.1|false|http +2025-09-24 00:39:38,998|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76836406|192.168.97.1|false|http +2025-09-24 00:39:39,004|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|76836413|192.168.97.1|false|http +2025-09-24 00:44:32,694|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77130103|192.168.97.1|false|http +2025-09-24 00:44:32,709|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77130118|192.168.97.1|false|http +2025-09-24 00:46:14,048|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77231457|192.168.97.1|false|http +2025-09-24 00:46:14,058|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77231467|192.168.97.1|false|http +2025-09-24 00:46:44,596|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77262005|192.168.97.1|false|http +2025-09-24 00:46:44,614|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77262023|192.168.97.1|false|http +2025-09-24 00:48:43,478|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77380887|192.168.97.1|false|http +2025-09-24 00:48:43,533|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77380942|192.168.97.1|false|http +2025-09-24 00:48:45,546|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77382955|192.168.97.1|false|http +2025-09-24 00:48:45,565|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77382974|192.168.97.1|false|http +2025-09-24 00:51:47,643|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77565052|192.168.97.1|false|http +2025-09-24 00:51:47,649|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77565058|192.168.97.1|false|http +2025-09-24 00:54:06,588|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77703997|192.168.97.1|false|http +2025-09-24 00:54:06,608|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77704017|192.168.97.1|false|http +2025-09-24 00:56:09,671|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77827080|192.168.97.1|false|http +2025-09-24 00:56:09,679|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77827088|192.168.97.1|false|http +2025-09-24 00:58:27,257|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77964666|192.168.97.1|false|http +2025-09-24 00:58:27,276|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|77964685|192.168.97.1|false|http +2025-09-24 01:02:16,379|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78193788|192.168.97.1|false|http +2025-09-24 01:02:16,383|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78193792|192.168.97.1|false|http +2025-09-24 01:03:16,961|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78254370|192.168.97.1|false|http +2025-09-24 01:03:16,982|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78254391|192.168.97.1|false|http +2025-09-24 01:03:39,074|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78276483|192.168.97.1|false|http +2025-09-24 01:03:39,090|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78276499|192.168.97.1|false|http +2025-09-24 01:05:50,365|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78407774|192.168.97.1|false|http +2025-09-24 01:05:50,382|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78407791|192.168.97.1|false|http +2025-09-24 01:06:28,739|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78446148|192.168.97.1|false|http +2025-09-24 01:06:28,754|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78446163|192.168.97.1|false|http +2025-09-24 01:11:52,660|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78770069|192.168.97.1|false|http +2025-09-24 01:11:52,676|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78770085|192.168.97.1|false|http +2025-09-24 01:13:09,422|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78846831|192.168.97.1|false|http +2025-09-24 01:13:09,426|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78846835|192.168.97.1|false|http +2025-09-24 01:14:08,559|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78905968|192.168.97.1|false|http +2025-09-24 01:14:08,577|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78905986|192.168.97.1|false|http +2025-09-24 01:14:28,177|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78925586|192.168.97.1|false|http +2025-09-24 01:14:28,195|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78925604|192.168.97.1|false|http +2025-09-24 01:15:18,812|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78976221|192.168.97.1|false|http +2025-09-24 01:15:18,842|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|78976251|192.168.97.1|false|http +2025-09-24 01:15:43,052|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79000461|192.168.97.1|false|http +2025-09-24 01:15:43,075|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79000484|192.168.97.1|false|http +2025-09-24 01:15:54,808|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79012217|192.168.97.1|false|http +2025-09-24 01:15:54,828|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79012237|192.168.97.1|false|http +2025-09-24 01:16:10,345|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79027754|192.168.97.1|false|http +2025-09-24 01:16:10,369|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79027778|192.168.97.1|false|http +2025-09-24 01:18:55,070|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79192479|192.168.97.1|false|http +2025-09-24 01:20:02,906|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|79260315|192.168.97.1|false|http +2025-09-24 16:37:43,967|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|134321376|192.168.97.1|false|http +2025-09-24 16:37:46,420|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|134323829|192.168.97.1|false|http +2025-09-24 16:37:46,480|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|134323889|192.168.97.1|false|http +2025-09-24 16:37:49,641|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|134327050|192.168.97.1|false|http +2025-09-24 16:37:49,688|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|134327097|192.168.97.1|false|http +2025-09-24 16:43:16,803|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|134654212|192.168.97.1|false|http +2025-09-24 16:43:16,809|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|134654218|192.168.97.1|false|http +2025-09-24 22:26:12,911|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155230320|192.168.97.1|false|http +2025-09-24 22:26:17,750|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155235159|192.168.97.1|false|http +2025-09-24 22:26:17,768|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155235177|192.168.97.1|false|http +2025-09-24 22:26:20,852|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155238261|192.168.97.1|false|http +2025-09-24 22:26:20,932|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155238341|192.168.97.1|false|http +2025-09-24 22:27:20,499|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155297908|192.168.97.1|false|http +2025-09-24 22:27:20,518|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155297927|192.168.97.1|false|http +2025-09-24 22:29:15,285|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155412694|192.168.97.1|false|http +2025-09-24 22:29:15,304|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155412713|192.168.97.1|false|http +2025-09-24 22:31:14,588|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155531997|192.168.97.1|false|http +2025-09-24 22:31:14,601|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155532010|192.168.97.1|false|http +2025-09-24 22:31:38,473|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155555882|192.168.97.1|false|http +2025-09-24 22:32:20,572|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155597981|192.168.97.1|false|http +2025-09-24 22:32:20,593|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|155598001|192.168.97.1|false|http +2025-09-24 22:46:50,045|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156467453|192.168.97.1|false|http +2025-09-24 22:46:50,061|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156467470|192.168.97.1|false|http +2025-09-24 22:46:55,709|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156473118|192.168.97.1|false|http +2025-09-24 22:47:12,720|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156490129|192.168.97.1|false|http +2025-09-24 22:47:12,738|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156490147|192.168.97.1|false|http +2025-09-24 22:48:30,536|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156567945|192.168.97.1|false|http +2025-09-24 22:48:30,552|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156567960|192.168.97.1|false|http +2025-09-24 22:55:01,028|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|156958437|192.168.97.1|false|http +2025-09-24 23:01:46,185|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157363594|192.168.97.1|false|http +2025-09-24 23:01:46,225|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157363634|192.168.97.1|false|http +2025-09-24 23:08:27,412|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157764821|192.168.97.1|false|http +2025-09-24 23:08:27,427|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157764836|192.168.97.1|false|http +2025-09-24 23:08:43,529|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157780938|192.168.97.1|false|http +2025-09-24 23:09:42,201|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157839610|192.168.97.1|false|http +2025-09-24 23:09:46,415|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157843824|192.168.97.1|false|http +2025-09-24 23:09:46,439|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157843848|192.168.97.1|false|http +2025-09-24 23:10:00,625|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157858034|192.168.97.1|false|http +2025-09-24 23:10:00,645|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|157858054|192.168.97.1|false|http +2025-09-24 23:14:53,339|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158150748|192.168.97.1|false|http +2025-09-24 23:14:53,354|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158150763|192.168.97.1|false|http +2025-09-24 23:15:18,517|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158175926|192.168.97.1|false|http +2025-09-24 23:15:18,544|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158175953|192.168.97.1|false|http +2025-09-24 23:16:35,877|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158253286|192.168.97.1|false|http +2025-09-24 23:16:35,895|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158253304|192.168.97.1|false|http +2025-09-24 23:19:32,305|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158429714|192.168.97.1|false|http +2025-09-24 23:19:32,326|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158429735|192.168.97.1|false|http +2025-09-24 23:26:30,224|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158847633|192.168.97.1|false|http +2025-09-24 23:26:30,237|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|158847646|192.168.97.1|false|http +2025-09-24 23:39:36,406|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|159633815|192.168.97.1|false|http +2025-09-24 23:39:36,408|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|159633817|192.168.97.1|false|http diff --git a/docker/nacos/standalone-logs/core-auth.log b/docker/nacos/standalone-logs/core-auth.log index cf77e58..bce0a9a 100644 --- a/docker/nacos/standalone-logs/core-auth.log +++ b/docker/nacos/standalone-logs/core-auth.log @@ -1,168 +1,36 @@ -2025-09-23 00:24:31,328 DEBUG auth start, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:22,648 DEBUG auth start, request: GET /v3/console/core/namespace/list -2025-09-23 00:24:31,336 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:22,688 DEBUG access denied, request: GET /v3/console/core/namespace/list, reason: Code: 401, Message: token expired!. -2025-09-23 00:24:31,479 DEBUG auth start, request: GET /v3/console/ns/service/list +2025-09-24 16:37:22,879 DEBUG auth start, request: GET /v3/console/ns/service/list -2025-09-23 00:24:31,480 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} +2025-09-24 16:37:22,882 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-23 00:24:32,664 DEBUG auth start, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:28,516 DEBUG auth start, request: GET /v3/console/core/namespace/list -2025-09-23 00:24:32,664 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:28,516 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list -2025-09-23 00:24:32,760 DEBUG auth start, request: GET /v3/console/ns/service/list +2025-09-24 16:37:28,631 DEBUG auth start, request: GET /v3/console/cs/config/list -2025-09-23 00:24:32,760 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} +2025-09-24 16:37:28,632 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODcyMTA0OH0.wkmh9owpuB5HRX9jP9ziM-CbMqtBMI5X59SDko9oyzJlLaK47LCKl-ZfkmvBKdhC', globalAdmin=false} -2025-09-23 00:24:33,653 DEBUG auth start, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:32,779 DEBUG auth start, request: GET /v3/console/ns/service/list -2025-09-23 00:24:33,654 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:32,780 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODcyMTA0OH0.wkmh9owpuB5HRX9jP9ziM-CbMqtBMI5X59SDko9oyzJlLaK47LCKl-ZfkmvBKdhC', globalAdmin=false} -2025-09-23 00:24:33,740 DEBUG auth start, request: GET /v3/console/ns/service/list +2025-09-24 16:37:33,874 DEBUG auth start, request: GET /v3/console/core/namespace/list -2025-09-23 00:24:33,742 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} +2025-09-24 16:37:33,875 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list -2025-09-23 00:24:40,600 DEBUG auth start, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:33,949 DEBUG auth start, request: GET /v3/console/ns/service/list -2025-09-23 00:24:40,600 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:33,950 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODcyMTA0OH0.wkmh9owpuB5HRX9jP9ziM-CbMqtBMI5X59SDko9oyzJlLaK47LCKl-ZfkmvBKdhC', globalAdmin=false} -2025-09-23 00:24:40,703 DEBUG auth start, request: GET /v3/console/ns/service/list +2025-09-24 16:37:52,997 DEBUG auth start, request: GET /v3/console/core/namespace/list -2025-09-23 00:24:40,704 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} +2025-09-24 16:37:53,001 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list -2025-09-23 00:24:48,115 DEBUG auth start, request: GET /v3/console/core/namespace/list +2025-09-24 16:37:53,372 DEBUG auth start, request: GET /v3/console/ns/service/list -2025-09-23 00:24:48,116 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:48,215 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:24:48,216 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:50,575 DEBUG auth start, request: DELETE /v3/console/ns/service - -2025-09-23 00:24:50,575 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='app-product', type='naming', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:52,586 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:52,587 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:52,669 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:24:52,669 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:53,563 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:53,564 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:53,644 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:24:53,645 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:55,403 DEBUG auth start, request: DELETE /v3/console/ns/service - -2025-09-23 00:24:55,404 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='main-app', type='naming', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:56,524 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:56,524 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:56,613 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:24:56,615 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:58,583 DEBUG auth start, request: DELETE /v3/console/ns/service - -2025-09-23 00:24:58,584 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='app-shared', type='naming', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:58,704 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:24:58,705 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:24:59,734 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:59,735 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:24:59,789 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:24:59,789 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:11,150 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:11,151 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:11,213 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:11,214 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:12,075 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:12,075 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:12,157 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:12,157 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:13,037 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:13,038 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:13,119 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:13,120 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:24,175 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:24,176 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:24,259 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:24,261 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:25,187 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:25,188 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:25,253 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:25,254 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:29,178 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:29,179 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:29,261 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:29,262 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:41,619 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:41,619 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:41,708 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:41,708 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:25:57,385 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:57,386 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:25:57,467 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:25:57,469 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:26:25,138 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:26:25,138 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:26:25,230 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:26:25,231 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} - -2025-09-23 00:29:58,838 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-23 00:29:58,839 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-23 00:29:58,969 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-23 00:29:58,970 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODU3NDE0MX0.shr4WdBtcuK9WCxH0rLchSU6wJqXkRS0QcbQAhTFiTkSgH4pGOhkGvz8jViiy4Ea', globalAdmin=false} +2025-09-24 16:37:53,374 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODcyMTA0OH0.wkmh9owpuB5HRX9jP9ziM-CbMqtBMI5X59SDko9oyzJlLaK47LCKl-ZfkmvBKdhC', globalAdmin=false} diff --git a/docker/nacos/standalone-logs/nacos.log b/docker/nacos/standalone-logs/nacos.log index b62f1e9..67180e6 100644 --- a/docker/nacos/standalone-logs/nacos.log +++ b/docker/nacos/standalone-logs/nacos.log @@ -1,88 +1,1728 @@ -2025-09-23 00:00:08,311 INFO [capacityManagement] start correct usage +2025-09-24 00:00:11,103 WARN clearHistoryConfig get scheduled -2025-09-23 00:00:08,313 INFO [capacityManagement] end correct usage, cost: 4.99411E-4s +2025-09-24 00:00:11,106 WARN clearHistoryConfig is enable in current context, try to run cleaner -2025-09-23 00:00:09,498 WARN clearHistoryConfig get scheduled +2025-09-24 00:00:11,106 WARN clearConfigHistory, getBeforeStamp:2025-08-25 00:00:11.0, pageSize:1000 -2025-09-23 00:00:09,498 WARN clearHistoryConfig is enable in current context, try to run cleaner +2025-09-24 00:00:11,106 WARN history config cleaner successfully -2025-09-23 00:00:09,498 WARN clearConfigHistory, getBeforeStamp:2025-08-24 00:00:09.0, pageSize:1000 +2025-09-24 00:00:40,721 INFO [capacityManagement] start correct usage -2025-09-23 00:00:09,500 WARN history config cleaner successfully +2025-09-24 00:00:40,952 INFO [capacityManagement] end correct usage, cost: 0.231258533s -2025-09-23 00:10:08,315 INFO [capacityManagement] start correct usage +2025-09-24 00:10:11,107 WARN clearHistoryConfig get scheduled -2025-09-23 00:10:08,316 INFO [capacityManagement] end correct usage, cost: 5.21483E-4s +2025-09-24 00:10:11,107 WARN clearHistoryConfig is enable in current context, try to run cleaner -2025-09-23 00:10:09,501 WARN clearHistoryConfig get scheduled +2025-09-24 00:10:11,107 WARN clearConfigHistory, getBeforeStamp:2025-08-25 00:10:11.0, pageSize:1000 -2025-09-23 00:10:09,501 WARN clearHistoryConfig is enable in current context, try to run cleaner +2025-09-24 00:10:11,123 WARN history config cleaner successfully -2025-09-23 00:10:09,501 WARN clearConfigHistory, getBeforeStamp:2025-08-24 00:10:09.0, pageSize:1000 +2025-09-24 00:10:40,953 INFO [capacityManagement] start correct usage -2025-09-23 00:10:09,503 WARN history config cleaner successfully +2025-09-24 00:10:41,188 INFO [capacityManagement] end correct usage, cost: 0.233744213s -2025-09-23 00:20:08,316 INFO [capacityManagement] start correct usage +2025-09-24 00:20:11,124 WARN clearHistoryConfig get scheduled -2025-09-23 00:20:08,316 INFO [capacityManagement] end correct usage, cost: 2.13777E-4s +2025-09-24 00:20:11,125 WARN clearHistoryConfig is enable in current context, try to run cleaner -2025-09-23 00:20:09,503 WARN clearHistoryConfig get scheduled +2025-09-24 00:20:11,125 WARN clearConfigHistory, getBeforeStamp:2025-08-25 00:20:11.0, pageSize:1000 -2025-09-23 00:20:09,503 WARN clearHistoryConfig is enable in current context, try to run cleaner +2025-09-24 00:20:11,126 WARN history config cleaner successfully -2025-09-23 00:20:09,504 WARN clearConfigHistory, getBeforeStamp:2025-08-24 00:20:09.0, pageSize:1000 +2025-09-24 00:20:41,189 INFO [capacityManagement] start correct usage -2025-09-23 00:20:09,504 WARN history config cleaner successfully +2025-09-24 00:20:41,423 INFO [capacityManagement] end correct usage, cost: 0.233561025s -2025-09-23 00:24:50,578 ERROR got exception. service delete failure Service DEFAULT_GROUP@@app-product is not empty, can't be delete. Please unregister instance first +2025-09-24 00:30:11,126 WARN clearHistoryConfig get scheduled -2025-09-23 00:24:55,405 ERROR got exception. service delete failure Service DEFAULT_GROUP@@main-app is not empty, can't be delete. Please unregister instance first +2025-09-24 00:30:11,127 WARN clearHistoryConfig is enable in current context, try to run cleaner -2025-09-23 00:30:08,317 INFO [capacityManagement] start correct usage +2025-09-24 00:30:11,130 WARN clearConfigHistory, getBeforeStamp:2025-08-25 00:30:11.0, pageSize:1000 -2025-09-23 00:30:08,317 INFO [capacityManagement] end correct usage, cost: 2.67718E-4s +2025-09-24 00:30:11,136 WARN history config cleaner successfully -2025-09-23 00:30:09,506 WARN clearHistoryConfig get scheduled +2025-09-24 00:30:41,423 INFO [capacityManagement] start correct usage -2025-09-23 00:30:09,506 WARN clearHistoryConfig is enable in current context, try to run cleaner +2025-09-24 00:30:41,676 INFO [capacityManagement] end correct usage, cost: 0.251628785s -2025-09-23 00:30:09,506 WARN clearConfigHistory, getBeforeStamp:2025-08-24 00:30:09.0, pageSize:1000 +2025-09-24 00:40:11,137 WARN clearHistoryConfig get scheduled -2025-09-23 00:30:09,507 WARN history config cleaner successfully +2025-09-24 00:40:11,138 WARN clearHistoryConfig is enable in current context, try to run cleaner -2025-09-23 00:40:08,318 INFO [capacityManagement] start correct usage +2025-09-24 00:40:11,140 WARN clearConfigHistory, getBeforeStamp:2025-08-25 00:40:11.0, pageSize:1000 -2025-09-23 00:40:08,323 INFO [capacityManagement] end correct usage, cost: 0.005315219s +2025-09-24 00:40:11,144 WARN history config cleaner successfully -2025-09-23 00:40:09,508 WARN clearHistoryConfig get scheduled +2025-09-24 00:40:41,676 INFO [capacityManagement] start correct usage -2025-09-23 00:40:09,508 WARN clearHistoryConfig is enable in current context, try to run cleaner +2025-09-24 00:40:41,916 INFO [capacityManagement] end correct usage, cost: 0.238955331s -2025-09-23 00:40:09,516 WARN clearConfigHistory, getBeforeStamp:2025-08-24 00:40:09.0, pageSize:1000 +2025-09-24 00:50:11,145 WARN clearHistoryConfig get scheduled -2025-09-23 00:40:09,521 WARN history config cleaner successfully +2025-09-24 00:50:11,147 WARN clearHistoryConfig is enable in current context, try to run cleaner -2025-09-23 00:50:08,324 INFO [capacityManagement] start correct usage +2025-09-24 00:50:11,148 WARN clearConfigHistory, getBeforeStamp:2025-08-25 00:50:11.0, pageSize:1000 -2025-09-23 00:50:08,326 INFO [capacityManagement] end correct usage, cost: 3.11009E-4s +2025-09-24 00:50:11,156 WARN history config cleaner successfully -2025-09-23 00:50:09,521 WARN clearHistoryConfig get scheduled +2025-09-24 00:50:41,916 INFO [capacityManagement] start correct usage -2025-09-23 00:50:09,521 WARN clearHistoryConfig is enable in current context, try to run cleaner +2025-09-24 00:50:42,170 INFO [capacityManagement] end correct usage, cost: 0.252762288s -2025-09-23 00:50:09,522 WARN clearConfigHistory, getBeforeStamp:2025-08-24 00:50:09.0, pageSize:1000 +2025-09-24 01:00:11,157 WARN clearHistoryConfig get scheduled -2025-09-23 00:50:09,523 WARN history config cleaner successfully +2025-09-24 01:00:11,158 WARN clearHistoryConfig is enable in current context, try to run cleaner -2025-09-23 01:00:08,326 INFO [capacityManagement] start correct usage +2025-09-24 01:00:11,162 WARN clearConfigHistory, getBeforeStamp:2025-08-25 01:00:11.0, pageSize:1000 -2025-09-23 01:00:08,326 INFO [capacityManagement] end correct usage, cost: 2.02764E-4s +2025-09-24 01:00:11,169 WARN history config cleaner successfully -2025-09-23 01:00:09,523 WARN clearHistoryConfig get scheduled +2025-09-24 01:00:42,171 INFO [capacityManagement] start correct usage -2025-09-23 01:00:09,524 WARN clearHistoryConfig is enable in current context, try to run cleaner +2025-09-24 01:00:42,411 INFO [capacityManagement] end correct usage, cost: 0.239443989s -2025-09-23 01:00:09,524 WARN clearConfigHistory, getBeforeStamp:2025-08-24 01:00:09.0, pageSize:1000 +2025-09-24 01:10:11,170 WARN clearHistoryConfig get scheduled -2025-09-23 01:00:09,524 WARN history config cleaner successfully +2025-09-24 01:10:11,171 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 01:10:11,174 WARN clearConfigHistory, getBeforeStamp:2025-08-25 01:10:11.0, pageSize:1000 + +2025-09-24 01:10:11,182 WARN history config cleaner successfully + +2025-09-24 01:10:42,412 INFO [capacityManagement] start correct usage + +2025-09-24 01:10:42,657 INFO [capacityManagement] end correct usage, cost: 0.244565952s + +2025-09-24 01:20:11,183 WARN clearHistoryConfig get scheduled + +2025-09-24 01:20:11,183 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 01:20:11,184 WARN clearConfigHistory, getBeforeStamp:2025-08-25 01:20:11.0, pageSize:1000 + +2025-09-24 01:20:11,184 WARN history config cleaner successfully + +2025-09-24 01:20:42,658 INFO [capacityManagement] start correct usage + +2025-09-24 01:20:43,115 INFO [capacityManagement] end correct usage, cost: 0.456142483s + +2025-09-24 01:30:11,185 WARN clearHistoryConfig get scheduled + +2025-09-24 01:30:11,185 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 01:30:11,190 WARN clearConfigHistory, getBeforeStamp:2025-08-25 01:30:11.0, pageSize:1000 + +2025-09-24 01:30:11,199 WARN history config cleaner successfully + +2025-09-24 01:30:43,117 INFO [capacityManagement] start correct usage + +2025-09-24 01:30:43,348 INFO [capacityManagement] end correct usage, cost: 0.230557493s + +2025-09-24 01:40:11,199 WARN clearHistoryConfig get scheduled + +2025-09-24 01:40:11,200 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 01:40:11,204 WARN clearConfigHistory, getBeforeStamp:2025-08-25 01:40:11.0, pageSize:1000 + +2025-09-24 01:40:11,213 WARN history config cleaner successfully + +2025-09-24 01:40:43,349 INFO [capacityManagement] start correct usage + +2025-09-24 01:40:43,583 INFO [capacityManagement] end correct usage, cost: 0.233489237s + +2025-09-24 01:50:11,215 WARN clearHistoryConfig get scheduled + +2025-09-24 01:50:11,215 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 01:50:11,220 WARN clearConfigHistory, getBeforeStamp:2025-08-25 01:50:11.0, pageSize:1000 + +2025-09-24 01:50:11,227 WARN history config cleaner successfully + +2025-09-24 01:50:43,584 INFO [capacityManagement] start correct usage + +2025-09-24 01:50:43,820 INFO [capacityManagement] end correct usage, cost: 0.235640477s + +2025-09-24 02:00:11,229 WARN clearHistoryConfig get scheduled + +2025-09-24 02:00:11,230 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 02:00:11,236 WARN clearConfigHistory, getBeforeStamp:2025-08-25 02:00:11.0, pageSize:1000 + +2025-09-24 02:00:11,248 WARN history config cleaner successfully + +2025-09-24 02:00:43,820 INFO [capacityManagement] start correct usage + +2025-09-24 02:00:44,065 INFO [capacityManagement] end correct usage, cost: 0.243579889s + +2025-09-24 02:10:11,251 WARN clearHistoryConfig get scheduled + +2025-09-24 02:10:11,252 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 02:10:11,257 WARN clearConfigHistory, getBeforeStamp:2025-08-25 02:10:11.0, pageSize:1000 + +2025-09-24 02:10:11,264 WARN history config cleaner successfully + +2025-09-24 02:10:44,065 INFO [capacityManagement] start correct usage + +2025-09-24 02:10:44,302 INFO [capacityManagement] end correct usage, cost: 0.236118759s + +2025-09-24 02:20:11,264 WARN clearHistoryConfig get scheduled + +2025-09-24 02:20:11,265 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 02:20:11,270 WARN clearConfigHistory, getBeforeStamp:2025-08-25 02:20:11.0, pageSize:1000 + +2025-09-24 02:20:11,278 WARN history config cleaner successfully + +2025-09-24 02:20:44,303 INFO [capacityManagement] start correct usage + +2025-09-24 02:20:44,537 INFO [capacityManagement] end correct usage, cost: 0.232772508s + +2025-09-24 02:30:11,280 WARN clearHistoryConfig get scheduled + +2025-09-24 02:30:11,281 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 02:30:11,286 WARN clearConfigHistory, getBeforeStamp:2025-08-25 02:30:11.0, pageSize:1000 + +2025-09-24 02:30:11,298 WARN history config cleaner successfully + +2025-09-24 02:30:44,539 INFO [capacityManagement] start correct usage + +2025-09-24 02:30:44,773 INFO [capacityManagement] end correct usage, cost: 0.232633014s + +2025-09-24 02:40:11,299 WARN clearHistoryConfig get scheduled + +2025-09-24 02:40:11,300 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 02:40:11,309 WARN clearConfigHistory, getBeforeStamp:2025-08-25 02:40:11.0, pageSize:1000 + +2025-09-24 02:40:11,313 WARN history config cleaner successfully + +2025-09-24 02:40:44,773 INFO [capacityManagement] start correct usage + +2025-09-24 02:40:45,006 INFO [capacityManagement] end correct usage, cost: 0.232036159s + +2025-09-24 02:50:11,315 WARN clearHistoryConfig get scheduled + +2025-09-24 02:50:11,316 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 02:50:11,327 WARN clearConfigHistory, getBeforeStamp:2025-08-25 02:50:11.0, pageSize:1000 + +2025-09-24 02:50:11,330 WARN history config cleaner successfully + +2025-09-24 02:50:45,007 INFO [capacityManagement] start correct usage + +2025-09-24 02:50:45,251 INFO [capacityManagement] end correct usage, cost: 0.244379926s + +2025-09-24 03:00:11,332 WARN clearHistoryConfig get scheduled + +2025-09-24 03:00:11,333 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 03:00:11,349 WARN clearConfigHistory, getBeforeStamp:2025-08-25 03:00:11.0, pageSize:1000 + +2025-09-24 03:00:11,350 WARN history config cleaner successfully + +2025-09-24 03:00:45,251 INFO [capacityManagement] start correct usage + +2025-09-24 03:00:45,485 INFO [capacityManagement] end correct usage, cost: 0.233307724s + +2025-09-24 03:10:11,351 WARN clearHistoryConfig get scheduled + +2025-09-24 03:10:11,352 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 03:10:11,355 WARN clearConfigHistory, getBeforeStamp:2025-08-25 03:10:11.0, pageSize:1000 + +2025-09-24 03:10:11,363 WARN history config cleaner successfully + +2025-09-24 03:10:45,486 INFO [capacityManagement] start correct usage + +2025-09-24 03:10:45,716 INFO [capacityManagement] end correct usage, cost: 0.229790063s + +2025-09-24 03:20:11,365 WARN clearHistoryConfig get scheduled + +2025-09-24 03:20:11,365 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 03:20:11,370 WARN clearConfigHistory, getBeforeStamp:2025-08-25 03:20:11.0, pageSize:1000 + +2025-09-24 03:20:11,382 WARN history config cleaner successfully + +2025-09-24 03:20:45,717 INFO [capacityManagement] start correct usage + +2025-09-24 03:20:45,953 INFO [capacityManagement] end correct usage, cost: 0.234630432s + +2025-09-24 03:30:11,382 WARN clearHistoryConfig get scheduled + +2025-09-24 03:30:11,383 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 03:30:11,388 WARN clearConfigHistory, getBeforeStamp:2025-08-25 03:30:11.0, pageSize:1000 + +2025-09-24 03:30:11,397 WARN history config cleaner successfully + +2025-09-24 03:30:45,953 INFO [capacityManagement] start correct usage + +2025-09-24 03:30:46,189 INFO [capacityManagement] end correct usage, cost: 0.234817174s + +2025-09-24 03:40:11,398 WARN clearHistoryConfig get scheduled + +2025-09-24 03:40:11,399 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 03:40:11,399 WARN clearConfigHistory, getBeforeStamp:2025-08-25 03:40:11.0, pageSize:1000 + +2025-09-24 03:40:11,404 WARN history config cleaner successfully + +2025-09-24 03:40:46,190 INFO [capacityManagement] start correct usage + +2025-09-24 03:40:46,426 INFO [capacityManagement] end correct usage, cost: 0.234573761s + +2025-09-24 03:50:11,404 WARN clearHistoryConfig get scheduled + +2025-09-24 03:50:11,405 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 03:50:11,410 WARN clearConfigHistory, getBeforeStamp:2025-08-25 03:50:11.0, pageSize:1000 + +2025-09-24 03:50:11,418 WARN history config cleaner successfully + +2025-09-24 03:50:46,426 INFO [capacityManagement] start correct usage + +2025-09-24 03:50:46,670 INFO [capacityManagement] end correct usage, cost: 0.242818753s + +2025-09-24 04:00:11,418 WARN clearHistoryConfig get scheduled + +2025-09-24 04:00:11,419 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 04:00:11,424 WARN clearConfigHistory, getBeforeStamp:2025-08-25 04:00:11.0, pageSize:1000 + +2025-09-24 04:00:11,433 WARN history config cleaner successfully + +2025-09-24 04:00:46,672 INFO [capacityManagement] start correct usage + +2025-09-24 04:00:46,917 INFO [capacityManagement] end correct usage, cost: 0.243956935s + +2025-09-24 04:10:11,434 WARN clearHistoryConfig get scheduled + +2025-09-24 04:10:11,435 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 04:10:11,435 WARN clearConfigHistory, getBeforeStamp:2025-08-25 04:10:11.0, pageSize:1000 + +2025-09-24 04:10:11,437 WARN history config cleaner successfully + +2025-09-24 04:10:46,917 INFO [capacityManagement] start correct usage + +2025-09-24 04:10:47,159 INFO [capacityManagement] end correct usage, cost: 0.241449933s + +2025-09-24 04:20:11,437 WARN clearHistoryConfig get scheduled + +2025-09-24 04:20:11,438 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 04:20:11,438 WARN clearConfigHistory, getBeforeStamp:2025-08-25 04:20:11.0, pageSize:1000 + +2025-09-24 04:20:11,448 WARN history config cleaner successfully + +2025-09-24 04:20:47,160 INFO [capacityManagement] start correct usage + +2025-09-24 04:20:47,396 INFO [capacityManagement] end correct usage, cost: 0.234454178s + +2025-09-24 04:30:11,448 WARN clearHistoryConfig get scheduled + +2025-09-24 04:30:11,449 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 04:30:11,449 WARN clearConfigHistory, getBeforeStamp:2025-08-25 04:30:11.0, pageSize:1000 + +2025-09-24 04:30:11,457 WARN history config cleaner successfully + +2025-09-24 04:30:47,396 INFO [capacityManagement] start correct usage + +2025-09-24 04:30:47,643 INFO [capacityManagement] end correct usage, cost: 0.245947716s + +2025-09-24 04:40:11,457 WARN clearHistoryConfig get scheduled + +2025-09-24 04:40:11,458 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 04:40:11,463 WARN clearConfigHistory, getBeforeStamp:2025-08-25 04:40:11.0, pageSize:1000 + +2025-09-24 04:40:11,470 WARN history config cleaner successfully + +2025-09-24 04:40:47,644 INFO [capacityManagement] start correct usage + +2025-09-24 04:40:47,883 INFO [capacityManagement] end correct usage, cost: 0.239177446s + +2025-09-24 04:50:11,471 WARN clearHistoryConfig get scheduled + +2025-09-24 04:50:11,472 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 04:50:11,477 WARN clearConfigHistory, getBeforeStamp:2025-08-25 04:50:11.0, pageSize:1000 + +2025-09-24 04:50:11,481 WARN history config cleaner successfully + +2025-09-24 04:50:47,885 INFO [capacityManagement] start correct usage + +2025-09-24 04:50:48,125 INFO [capacityManagement] end correct usage, cost: 0.239404783s + +2025-09-24 05:00:11,481 WARN clearHistoryConfig get scheduled + +2025-09-24 05:00:11,482 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 05:00:11,485 WARN clearConfigHistory, getBeforeStamp:2025-08-25 05:00:11.0, pageSize:1000 + +2025-09-24 05:00:11,494 WARN history config cleaner successfully + +2025-09-24 05:00:48,125 INFO [capacityManagement] start correct usage + +2025-09-24 05:00:48,397 INFO [capacityManagement] end correct usage, cost: 0.270612138s + +2025-09-24 05:10:11,495 WARN clearHistoryConfig get scheduled + +2025-09-24 05:10:11,496 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 05:10:11,496 WARN clearConfigHistory, getBeforeStamp:2025-08-25 05:10:11.0, pageSize:1000 + +2025-09-24 05:10:11,497 WARN history config cleaner successfully + +2025-09-24 05:10:48,397 INFO [capacityManagement] start correct usage + +2025-09-24 05:10:48,654 INFO [capacityManagement] end correct usage, cost: 0.234922975s + +2025-09-24 05:20:11,497 WARN clearHistoryConfig get scheduled + +2025-09-24 05:20:11,497 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 05:20:11,500 WARN clearConfigHistory, getBeforeStamp:2025-08-25 05:20:11.0, pageSize:1000 + +2025-09-24 05:20:11,501 WARN history config cleaner successfully + +2025-09-24 05:20:48,654 INFO [capacityManagement] start correct usage + +2025-09-24 05:20:48,892 INFO [capacityManagement] end correct usage, cost: 0.237073895s + +2025-09-24 05:30:11,501 WARN clearHistoryConfig get scheduled + +2025-09-24 05:30:11,502 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 05:30:11,507 WARN clearConfigHistory, getBeforeStamp:2025-08-25 05:30:11.0, pageSize:1000 + +2025-09-24 05:30:11,516 WARN history config cleaner successfully + +2025-09-24 05:30:48,894 INFO [capacityManagement] start correct usage + +2025-09-24 05:30:49,124 INFO [capacityManagement] end correct usage, cost: 0.229742691s + +2025-09-24 05:40:11,516 WARN clearHistoryConfig get scheduled + +2025-09-24 05:40:11,517 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 05:40:11,518 WARN clearConfigHistory, getBeforeStamp:2025-08-25 05:40:11.0, pageSize:1000 + +2025-09-24 05:40:11,518 WARN history config cleaner successfully + +2025-09-24 05:40:49,124 INFO [capacityManagement] start correct usage + +2025-09-24 05:40:49,362 INFO [capacityManagement] end correct usage, cost: 0.237364605s + +2025-09-24 05:50:11,521 WARN clearHistoryConfig get scheduled + +2025-09-24 05:50:11,522 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 05:50:11,527 WARN clearConfigHistory, getBeforeStamp:2025-08-25 05:50:11.0, pageSize:1000 + +2025-09-24 05:50:11,533 WARN history config cleaner successfully + +2025-09-24 05:50:49,363 INFO [capacityManagement] start correct usage + +2025-09-24 05:50:49,604 INFO [capacityManagement] end correct usage, cost: 0.240268643s + +2025-09-24 06:00:11,534 WARN clearHistoryConfig get scheduled + +2025-09-24 06:00:11,535 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 06:00:11,535 WARN clearConfigHistory, getBeforeStamp:2025-08-25 06:00:11.0, pageSize:1000 + +2025-09-24 06:00:11,536 WARN history config cleaner successfully + +2025-09-24 06:00:49,606 INFO [capacityManagement] start correct usage + +2025-09-24 06:00:49,837 INFO [capacityManagement] end correct usage, cost: 0.230503093s + +2025-09-24 06:10:11,537 WARN clearHistoryConfig get scheduled + +2025-09-24 06:10:11,537 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 06:10:11,538 WARN clearConfigHistory, getBeforeStamp:2025-08-25 06:10:11.0, pageSize:1000 + +2025-09-24 06:10:11,540 WARN history config cleaner successfully + +2025-09-24 06:10:49,838 INFO [capacityManagement] start correct usage + +2025-09-24 06:10:50,068 INFO [capacityManagement] end correct usage, cost: 0.228814017s + +2025-09-24 06:20:11,540 WARN clearHistoryConfig get scheduled + +2025-09-24 06:20:11,541 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 06:20:11,542 WARN clearConfigHistory, getBeforeStamp:2025-08-25 06:20:11.0, pageSize:1000 + +2025-09-24 06:20:11,548 WARN history config cleaner successfully + +2025-09-24 06:20:50,069 INFO [capacityManagement] start correct usage + +2025-09-24 06:20:50,306 INFO [capacityManagement] end correct usage, cost: 0.236643326s + +2025-09-24 06:30:11,550 WARN clearHistoryConfig get scheduled + +2025-09-24 06:30:11,551 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 06:30:11,551 WARN clearConfigHistory, getBeforeStamp:2025-08-25 06:30:11.0, pageSize:1000 + +2025-09-24 06:30:11,560 WARN history config cleaner successfully + +2025-09-24 06:30:50,308 INFO [capacityManagement] start correct usage + +2025-09-24 06:30:50,546 INFO [capacityManagement] end correct usage, cost: 0.237084203s + +2025-09-24 06:40:11,561 WARN clearHistoryConfig get scheduled + +2025-09-24 06:40:11,562 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 06:40:11,562 WARN clearConfigHistory, getBeforeStamp:2025-08-25 06:40:11.0, pageSize:1000 + +2025-09-24 06:40:11,571 WARN history config cleaner successfully + +2025-09-24 06:40:50,546 INFO [capacityManagement] start correct usage + +2025-09-24 06:40:50,780 INFO [capacityManagement] end correct usage, cost: 0.233147173s + +2025-09-24 06:50:11,571 WARN clearHistoryConfig get scheduled + +2025-09-24 06:50:11,571 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 06:50:11,574 WARN clearConfigHistory, getBeforeStamp:2025-08-25 06:50:11.0, pageSize:1000 + +2025-09-24 06:50:11,577 WARN history config cleaner successfully + +2025-09-24 06:50:50,782 INFO [capacityManagement] start correct usage + +2025-09-24 06:50:51,018 INFO [capacityManagement] end correct usage, cost: 0.236549177s + +2025-09-24 07:00:11,577 WARN clearHistoryConfig get scheduled + +2025-09-24 07:00:11,578 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 07:00:11,585 WARN clearConfigHistory, getBeforeStamp:2025-08-25 07:00:11.0, pageSize:1000 + +2025-09-24 07:00:11,592 WARN history config cleaner successfully + +2025-09-24 07:00:51,019 INFO [capacityManagement] start correct usage + +2025-09-24 07:00:51,251 INFO [capacityManagement] end correct usage, cost: 0.23163676s + +2025-09-24 07:10:11,593 WARN clearHistoryConfig get scheduled + +2025-09-24 07:10:11,594 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 07:10:11,594 WARN clearConfigHistory, getBeforeStamp:2025-08-25 07:10:11.0, pageSize:1000 + +2025-09-24 07:10:11,595 WARN history config cleaner successfully + +2025-09-24 07:10:51,251 INFO [capacityManagement] start correct usage + +2025-09-24 07:10:51,488 INFO [capacityManagement] end correct usage, cost: 0.236740763s + +2025-09-24 07:20:11,596 WARN clearHistoryConfig get scheduled + +2025-09-24 07:20:11,597 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 07:20:11,597 WARN clearConfigHistory, getBeforeStamp:2025-08-25 07:20:11.0, pageSize:1000 + +2025-09-24 07:20:11,603 WARN history config cleaner successfully + +2025-09-24 07:20:51,488 INFO [capacityManagement] start correct usage + +2025-09-24 07:20:51,720 INFO [capacityManagement] end correct usage, cost: 0.231852731s + +2025-09-24 07:30:11,603 WARN clearHistoryConfig get scheduled + +2025-09-24 07:30:11,604 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 07:30:11,612 WARN clearConfigHistory, getBeforeStamp:2025-08-25 07:30:11.0, pageSize:1000 + +2025-09-24 07:30:11,616 WARN history config cleaner successfully + +2025-09-24 07:30:51,720 INFO [capacityManagement] start correct usage + +2025-09-24 07:30:51,957 INFO [capacityManagement] end correct usage, cost: 0.23588105s + +2025-09-24 07:40:11,617 WARN clearHistoryConfig get scheduled + +2025-09-24 07:40:11,618 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 07:40:11,618 WARN clearConfigHistory, getBeforeStamp:2025-08-25 07:40:11.0, pageSize:1000 + +2025-09-24 07:40:11,619 WARN history config cleaner successfully + +2025-09-24 07:40:51,957 INFO [capacityManagement] start correct usage + +2025-09-24 07:40:52,204 INFO [capacityManagement] end correct usage, cost: 0.246413382s + +2025-09-24 07:50:11,621 WARN clearHistoryConfig get scheduled + +2025-09-24 07:50:11,621 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 07:50:11,626 WARN clearConfigHistory, getBeforeStamp:2025-08-25 07:50:11.0, pageSize:1000 + +2025-09-24 07:50:11,631 WARN history config cleaner successfully + +2025-09-24 07:50:52,204 INFO [capacityManagement] start correct usage + +2025-09-24 07:50:52,442 INFO [capacityManagement] end correct usage, cost: 0.238224715s + +2025-09-24 08:00:11,631 WARN clearHistoryConfig get scheduled + +2025-09-24 08:00:11,632 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 08:00:11,637 WARN clearConfigHistory, getBeforeStamp:2025-08-25 08:00:11.0, pageSize:1000 + +2025-09-24 08:00:11,647 WARN history config cleaner successfully + +2025-09-24 08:00:52,443 INFO [capacityManagement] start correct usage + +2025-09-24 08:00:52,678 INFO [capacityManagement] end correct usage, cost: 0.234233836s + +2025-09-24 08:10:11,648 WARN clearHistoryConfig get scheduled + +2025-09-24 08:10:11,649 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 08:10:11,649 WARN clearConfigHistory, getBeforeStamp:2025-08-25 08:10:11.0, pageSize:1000 + +2025-09-24 08:10:11,651 WARN history config cleaner successfully + +2025-09-24 08:10:52,678 INFO [capacityManagement] start correct usage + +2025-09-24 08:10:52,909 INFO [capacityManagement] end correct usage, cost: 0.230082729s + +2025-09-24 08:20:11,654 WARN clearHistoryConfig get scheduled + +2025-09-24 08:20:11,655 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 08:20:11,660 WARN clearConfigHistory, getBeforeStamp:2025-08-25 08:20:11.0, pageSize:1000 + +2025-09-24 08:20:11,669 WARN history config cleaner successfully + +2025-09-24 08:20:52,909 INFO [capacityManagement] start correct usage + +2025-09-24 08:20:53,149 INFO [capacityManagement] end correct usage, cost: 0.239832924s + +2025-09-24 08:30:11,670 WARN clearHistoryConfig get scheduled + +2025-09-24 08:30:11,671 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 08:30:11,676 WARN clearConfigHistory, getBeforeStamp:2025-08-25 08:30:11.0, pageSize:1000 + +2025-09-24 08:30:11,686 WARN history config cleaner successfully + +2025-09-24 08:30:53,150 INFO [capacityManagement] start correct usage + +2025-09-24 08:30:53,385 INFO [capacityManagement] end correct usage, cost: 0.23490847s + +2025-09-24 08:40:11,687 WARN clearHistoryConfig get scheduled + +2025-09-24 08:40:11,689 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 08:40:11,689 WARN clearConfigHistory, getBeforeStamp:2025-08-25 08:40:11.0, pageSize:1000 + +2025-09-24 08:40:11,690 WARN history config cleaner successfully + +2025-09-24 08:40:53,385 INFO [capacityManagement] start correct usage + +2025-09-24 08:40:53,619 INFO [capacityManagement] end correct usage, cost: 0.233635565s + +2025-09-24 08:50:11,694 WARN clearHistoryConfig get scheduled + +2025-09-24 08:50:11,695 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 08:50:11,695 WARN clearConfigHistory, getBeforeStamp:2025-08-25 08:50:11.0, pageSize:1000 + +2025-09-24 08:50:11,696 WARN history config cleaner successfully + +2025-09-24 08:50:53,619 INFO [capacityManagement] start correct usage + +2025-09-24 08:50:53,868 INFO [capacityManagement] end correct usage, cost: 0.247736599s + +2025-09-24 09:00:11,698 WARN clearHistoryConfig get scheduled + +2025-09-24 09:00:11,698 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 09:00:11,698 WARN clearConfigHistory, getBeforeStamp:2025-08-25 09:00:11.0, pageSize:1000 + +2025-09-24 09:00:11,702 WARN history config cleaner successfully + +2025-09-24 09:00:53,868 INFO [capacityManagement] start correct usage + +2025-09-24 09:00:54,115 INFO [capacityManagement] end correct usage, cost: 0.246116856s + +2025-09-24 09:10:11,702 WARN clearHistoryConfig get scheduled + +2025-09-24 09:10:11,703 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 09:10:11,705 WARN clearConfigHistory, getBeforeStamp:2025-08-25 09:10:11.0, pageSize:1000 + +2025-09-24 09:10:11,708 WARN history config cleaner successfully + +2025-09-24 09:10:54,117 INFO [capacityManagement] start correct usage + +2025-09-24 09:10:54,366 INFO [capacityManagement] end correct usage, cost: 0.2486675s + +2025-09-24 09:20:11,710 WARN clearHistoryConfig get scheduled + +2025-09-24 09:20:11,711 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 09:20:11,716 WARN clearConfigHistory, getBeforeStamp:2025-08-25 09:20:11.0, pageSize:1000 + +2025-09-24 09:20:11,723 WARN history config cleaner successfully + +2025-09-24 09:20:54,367 INFO [capacityManagement] start correct usage + +2025-09-24 09:20:54,603 INFO [capacityManagement] end correct usage, cost: 0.234883567s + +2025-09-24 09:30:11,723 WARN clearHistoryConfig get scheduled + +2025-09-24 09:30:11,725 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 09:30:11,730 WARN clearConfigHistory, getBeforeStamp:2025-08-25 09:30:11.0, pageSize:1000 + +2025-09-24 09:30:11,739 WARN history config cleaner successfully + +2025-09-24 09:30:54,605 INFO [capacityManagement] start correct usage + +2025-09-24 09:30:54,848 INFO [capacityManagement] end correct usage, cost: 0.242603446s + +2025-09-24 09:40:11,741 WARN clearHistoryConfig get scheduled + +2025-09-24 09:40:11,742 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 09:40:11,745 WARN clearConfigHistory, getBeforeStamp:2025-08-25 09:40:11.0, pageSize:1000 + +2025-09-24 09:40:11,753 WARN history config cleaner successfully + +2025-09-24 09:40:54,850 INFO [capacityManagement] start correct usage + +2025-09-24 09:40:55,091 INFO [capacityManagement] end correct usage, cost: 0.239910946s + +2025-09-24 09:50:11,755 WARN clearHistoryConfig get scheduled + +2025-09-24 09:50:11,756 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 09:50:11,756 WARN clearConfigHistory, getBeforeStamp:2025-08-25 09:50:11.0, pageSize:1000 + +2025-09-24 09:50:11,757 WARN history config cleaner successfully + +2025-09-24 09:50:55,092 INFO [capacityManagement] start correct usage + +2025-09-24 09:50:55,335 INFO [capacityManagement] end correct usage, cost: 0.242138834s + +2025-09-24 10:00:11,759 WARN clearHistoryConfig get scheduled + +2025-09-24 10:00:11,761 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 10:00:11,761 WARN clearConfigHistory, getBeforeStamp:2025-08-25 10:00:11.0, pageSize:1000 + +2025-09-24 10:00:11,766 WARN history config cleaner successfully + +2025-09-24 10:00:55,338 INFO [capacityManagement] start correct usage + +2025-09-24 10:00:55,590 INFO [capacityManagement] end correct usage, cost: 0.251205279s + +2025-09-24 10:10:11,766 WARN clearHistoryConfig get scheduled + +2025-09-24 10:10:11,768 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 10:10:11,771 WARN clearConfigHistory, getBeforeStamp:2025-08-25 10:10:11.0, pageSize:1000 + +2025-09-24 10:10:11,774 WARN history config cleaner successfully + +2025-09-24 10:10:55,592 INFO [capacityManagement] start correct usage + +2025-09-24 10:10:55,837 INFO [capacityManagement] end correct usage, cost: 0.245093868s + +2025-09-24 10:20:11,775 WARN clearHistoryConfig get scheduled + +2025-09-24 10:20:11,776 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 10:20:11,784 WARN clearConfigHistory, getBeforeStamp:2025-08-25 10:20:11.0, pageSize:1000 + +2025-09-24 10:20:11,798 WARN history config cleaner successfully + +2025-09-24 10:20:55,838 INFO [capacityManagement] start correct usage + +2025-09-24 10:20:56,072 INFO [capacityManagement] end correct usage, cost: 0.23356021s + +2025-09-24 10:30:11,798 WARN clearHistoryConfig get scheduled + +2025-09-24 10:30:11,798 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 10:30:11,807 WARN clearConfigHistory, getBeforeStamp:2025-08-25 10:30:11.0, pageSize:1000 + +2025-09-24 10:30:11,810 WARN history config cleaner successfully + +2025-09-24 10:30:56,074 INFO [capacityManagement] start correct usage + +2025-09-24 10:30:56,311 INFO [capacityManagement] end correct usage, cost: 0.23662595s + +2025-09-24 10:40:11,810 WARN clearHistoryConfig get scheduled + +2025-09-24 10:40:11,811 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 10:40:11,817 WARN clearConfigHistory, getBeforeStamp:2025-08-25 10:40:11.0, pageSize:1000 + +2025-09-24 10:40:11,825 WARN history config cleaner successfully + +2025-09-24 10:40:56,313 INFO [capacityManagement] start correct usage + +2025-09-24 10:40:56,545 INFO [capacityManagement] end correct usage, cost: 0.231683116s + +2025-09-24 10:50:11,830 WARN clearHistoryConfig get scheduled + +2025-09-24 10:50:11,831 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 10:50:11,831 WARN clearConfigHistory, getBeforeStamp:2025-08-25 10:50:11.0, pageSize:1000 + +2025-09-24 10:50:11,836 WARN history config cleaner successfully + +2025-09-24 10:50:56,548 INFO [capacityManagement] start correct usage + +2025-09-24 10:50:56,785 INFO [capacityManagement] end correct usage, cost: 0.236985806s + +2025-09-24 11:00:11,838 WARN clearHistoryConfig get scheduled + +2025-09-24 11:00:11,839 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 11:00:11,845 WARN clearConfigHistory, getBeforeStamp:2025-08-25 11:00:11.0, pageSize:1000 + +2025-09-24 11:00:11,851 WARN history config cleaner successfully + +2025-09-24 11:00:56,787 INFO [capacityManagement] start correct usage + +2025-09-24 11:00:57,025 INFO [capacityManagement] end correct usage, cost: 0.238059849s + +2025-09-24 11:10:11,853 WARN clearHistoryConfig get scheduled + +2025-09-24 11:10:11,854 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 11:10:11,859 WARN clearConfigHistory, getBeforeStamp:2025-08-25 11:10:11.0, pageSize:1000 + +2025-09-24 11:10:11,866 WARN history config cleaner successfully + +2025-09-24 11:10:57,026 INFO [capacityManagement] start correct usage + +2025-09-24 11:10:57,287 INFO [capacityManagement] end correct usage, cost: 0.260903901s + +2025-09-24 11:20:11,867 WARN clearHistoryConfig get scheduled + +2025-09-24 11:20:11,869 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 11:20:11,874 WARN clearConfigHistory, getBeforeStamp:2025-08-25 11:20:11.0, pageSize:1000 + +2025-09-24 11:20:11,878 WARN history config cleaner successfully + +2025-09-24 11:20:57,287 INFO [capacityManagement] start correct usage + +2025-09-24 11:20:57,524 INFO [capacityManagement] end correct usage, cost: 0.23561463s + +2025-09-24 11:30:11,878 WARN clearHistoryConfig get scheduled + +2025-09-24 11:30:11,879 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 11:30:11,884 WARN clearConfigHistory, getBeforeStamp:2025-08-25 11:30:11.0, pageSize:1000 + +2025-09-24 11:30:11,887 WARN history config cleaner successfully + +2025-09-24 11:30:57,525 INFO [capacityManagement] start correct usage + +2025-09-24 11:30:57,757 INFO [capacityManagement] end correct usage, cost: 0.231744067s + +2025-09-24 11:40:11,887 WARN clearHistoryConfig get scheduled + +2025-09-24 11:40:11,888 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 11:40:11,888 WARN clearConfigHistory, getBeforeStamp:2025-08-25 11:40:11.0, pageSize:1000 + +2025-09-24 11:40:11,892 WARN history config cleaner successfully + +2025-09-24 11:40:57,757 INFO [capacityManagement] start correct usage + +2025-09-24 11:40:58,001 INFO [capacityManagement] end correct usage, cost: 0.243822062s + +2025-09-24 11:50:11,892 WARN clearHistoryConfig get scheduled + +2025-09-24 11:50:11,893 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 11:50:11,900 WARN clearConfigHistory, getBeforeStamp:2025-08-25 11:50:11.0, pageSize:1000 + +2025-09-24 11:50:11,910 WARN history config cleaner successfully + +2025-09-24 11:50:58,002 INFO [capacityManagement] start correct usage + +2025-09-24 11:50:58,242 INFO [capacityManagement] end correct usage, cost: 0.23985908s + +2025-09-24 12:00:11,911 WARN clearHistoryConfig get scheduled + +2025-09-24 12:00:11,912 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 12:00:11,917 WARN clearConfigHistory, getBeforeStamp:2025-08-25 12:00:11.0, pageSize:1000 + +2025-09-24 12:00:11,932 WARN history config cleaner successfully + +2025-09-24 12:00:58,242 INFO [capacityManagement] start correct usage + +2025-09-24 12:00:58,475 INFO [capacityManagement] end correct usage, cost: 0.232930582s + +2025-09-24 12:10:11,933 WARN clearHistoryConfig get scheduled + +2025-09-24 12:10:11,934 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 12:10:11,934 WARN clearConfigHistory, getBeforeStamp:2025-08-25 12:10:11.0, pageSize:1000 + +2025-09-24 12:10:11,945 WARN history config cleaner successfully + +2025-09-24 12:10:58,477 INFO [capacityManagement] start correct usage + +2025-09-24 12:10:58,720 INFO [capacityManagement] end correct usage, cost: 0.241978699s + +2025-09-24 12:20:11,947 WARN clearHistoryConfig get scheduled + +2025-09-24 12:20:11,948 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 12:20:11,948 WARN clearConfigHistory, getBeforeStamp:2025-08-25 12:20:11.0, pageSize:1000 + +2025-09-24 12:20:11,953 WARN history config cleaner successfully + +2025-09-24 12:20:58,720 INFO [capacityManagement] start correct usage + +2025-09-24 12:20:58,962 INFO [capacityManagement] end correct usage, cost: 0.241385276s + +2025-09-24 12:30:11,953 WARN clearHistoryConfig get scheduled + +2025-09-24 12:30:11,954 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 12:30:11,954 WARN clearConfigHistory, getBeforeStamp:2025-08-25 12:30:11.0, pageSize:1000 + +2025-09-24 12:30:11,965 WARN history config cleaner successfully + +2025-09-24 12:30:58,963 INFO [capacityManagement] start correct usage + +2025-09-24 12:30:59,237 INFO [capacityManagement] end correct usage, cost: 0.273043862s + +2025-09-24 12:40:11,966 WARN clearHistoryConfig get scheduled + +2025-09-24 12:40:11,966 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 12:40:11,971 WARN clearConfigHistory, getBeforeStamp:2025-08-25 12:40:11.0, pageSize:1000 + +2025-09-24 12:40:11,976 WARN history config cleaner successfully + +2025-09-24 12:40:59,239 INFO [capacityManagement] start correct usage + +2025-09-24 12:40:59,474 INFO [capacityManagement] end correct usage, cost: 0.234298455s + +2025-09-24 12:50:11,977 WARN clearHistoryConfig get scheduled + +2025-09-24 12:50:11,978 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 12:50:11,982 WARN clearConfigHistory, getBeforeStamp:2025-08-25 12:50:11.0, pageSize:1000 + +2025-09-24 12:50:11,988 WARN history config cleaner successfully + +2025-09-24 12:50:59,474 INFO [capacityManagement] start correct usage + +2025-09-24 12:50:59,729 INFO [capacityManagement] end correct usage, cost: 0.25458165s + +2025-09-24 13:00:11,990 WARN clearHistoryConfig get scheduled + +2025-09-24 13:00:11,991 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 13:00:11,997 WARN clearConfigHistory, getBeforeStamp:2025-08-25 13:00:11.0, pageSize:1000 + +2025-09-24 13:00:12,004 WARN history config cleaner successfully + +2025-09-24 13:00:59,731 INFO [capacityManagement] start correct usage + +2025-09-24 13:00:59,974 INFO [capacityManagement] end correct usage, cost: 0.242271633s + +2025-09-24 13:10:12,005 WARN clearHistoryConfig get scheduled + +2025-09-24 13:10:12,006 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 13:10:12,012 WARN clearConfigHistory, getBeforeStamp:2025-08-25 13:10:12.0, pageSize:1000 + +2025-09-24 13:10:12,023 WARN history config cleaner successfully + +2025-09-24 13:10:59,975 INFO [capacityManagement] start correct usage + +2025-09-24 13:11:00,209 INFO [capacityManagement] end correct usage, cost: 0.234048226s + +2025-09-24 13:20:12,023 WARN clearHistoryConfig get scheduled + +2025-09-24 13:20:12,024 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 13:20:12,029 WARN clearConfigHistory, getBeforeStamp:2025-08-25 13:20:12.0, pageSize:1000 + +2025-09-24 13:20:12,034 WARN history config cleaner successfully + +2025-09-24 13:21:00,209 INFO [capacityManagement] start correct usage + +2025-09-24 13:21:00,441 INFO [capacityManagement] end correct usage, cost: 0.230969029s + +2025-09-24 13:30:12,035 WARN clearHistoryConfig get scheduled + +2025-09-24 13:30:12,036 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 13:30:12,036 WARN clearConfigHistory, getBeforeStamp:2025-08-25 13:30:12.0, pageSize:1000 + +2025-09-24 13:30:12,041 WARN history config cleaner successfully + +2025-09-24 13:31:00,441 INFO [capacityManagement] start correct usage + +2025-09-24 13:31:00,687 INFO [capacityManagement] end correct usage, cost: 0.245754778s + +2025-09-24 13:40:12,043 WARN clearHistoryConfig get scheduled + +2025-09-24 13:40:12,044 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 13:40:12,049 WARN clearConfigHistory, getBeforeStamp:2025-08-25 13:40:12.0, pageSize:1000 + +2025-09-24 13:40:12,062 WARN history config cleaner successfully + +2025-09-24 13:41:00,689 INFO [capacityManagement] start correct usage + +2025-09-24 13:41:00,927 INFO [capacityManagement] end correct usage, cost: 0.237509556s + +2025-09-24 13:50:12,064 WARN clearHistoryConfig get scheduled + +2025-09-24 13:50:12,065 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 13:50:12,068 WARN clearConfigHistory, getBeforeStamp:2025-08-25 13:50:12.0, pageSize:1000 + +2025-09-24 13:50:12,072 WARN history config cleaner successfully + +2025-09-24 13:51:00,927 INFO [capacityManagement] start correct usage + +2025-09-24 13:51:01,167 INFO [capacityManagement] end correct usage, cost: 0.239770678s + +2025-09-24 14:00:12,073 WARN clearHistoryConfig get scheduled + +2025-09-24 14:00:12,074 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 14:00:12,076 WARN clearConfigHistory, getBeforeStamp:2025-08-25 14:00:12.0, pageSize:1000 + +2025-09-24 14:00:12,082 WARN history config cleaner successfully + +2025-09-24 14:01:01,168 INFO [capacityManagement] start correct usage + +2025-09-24 14:01:01,376 INFO [capacityManagement] end correct usage, cost: 0.207898972s + +2025-09-24 14:10:12,084 WARN clearHistoryConfig get scheduled + +2025-09-24 14:10:12,085 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 14:10:12,090 WARN clearConfigHistory, getBeforeStamp:2025-08-25 14:10:12.0, pageSize:1000 + +2025-09-24 14:10:12,096 WARN history config cleaner successfully + +2025-09-24 14:11:01,377 INFO [capacityManagement] start correct usage + +2025-09-24 14:11:01,610 INFO [capacityManagement] end correct usage, cost: 0.232751063s + +2025-09-24 14:20:12,097 WARN clearHistoryConfig get scheduled + +2025-09-24 14:20:12,098 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 14:20:12,102 WARN clearConfigHistory, getBeforeStamp:2025-08-25 14:20:12.0, pageSize:1000 + +2025-09-24 14:20:12,106 WARN history config cleaner successfully + +2025-09-24 14:21:01,610 INFO [capacityManagement] start correct usage + +2025-09-24 14:21:01,844 INFO [capacityManagement] end correct usage, cost: 0.233898988s + +2025-09-24 14:30:12,108 WARN clearHistoryConfig get scheduled + +2025-09-24 14:30:12,109 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 14:30:12,110 WARN clearConfigHistory, getBeforeStamp:2025-08-25 14:30:12.0, pageSize:1000 + +2025-09-24 14:30:12,121 WARN history config cleaner successfully + +2025-09-24 14:31:01,846 INFO [capacityManagement] start correct usage + +2025-09-24 14:31:02,085 INFO [capacityManagement] end correct usage, cost: 0.237924078s + +2025-09-24 14:40:12,122 WARN clearHistoryConfig get scheduled + +2025-09-24 14:40:12,123 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 14:40:12,128 WARN clearConfigHistory, getBeforeStamp:2025-08-25 14:40:12.0, pageSize:1000 + +2025-09-24 14:40:12,135 WARN history config cleaner successfully + +2025-09-24 14:41:02,085 INFO [capacityManagement] start correct usage + +2025-09-24 14:41:02,321 INFO [capacityManagement] end correct usage, cost: 0.235376455s + +2025-09-24 14:50:12,136 WARN clearHistoryConfig get scheduled + +2025-09-24 14:50:12,137 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 14:50:12,143 WARN clearConfigHistory, getBeforeStamp:2025-08-25 14:50:12.0, pageSize:1000 + +2025-09-24 14:50:12,148 WARN history config cleaner successfully + +2025-09-24 14:51:02,322 INFO [capacityManagement] start correct usage + +2025-09-24 14:51:02,555 INFO [capacityManagement] end correct usage, cost: 0.233205876s + +2025-09-24 15:00:12,149 WARN clearHistoryConfig get scheduled + +2025-09-24 15:00:12,150 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 15:00:12,150 WARN clearConfigHistory, getBeforeStamp:2025-08-25 15:00:12.0, pageSize:1000 + +2025-09-24 15:00:12,154 WARN history config cleaner successfully + +2025-09-24 15:01:02,557 INFO [capacityManagement] start correct usage + +2025-09-24 15:01:02,787 INFO [capacityManagement] end correct usage, cost: 0.229737744s + +2025-09-24 15:10:12,156 WARN clearHistoryConfig get scheduled + +2025-09-24 15:10:12,157 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 15:10:12,163 WARN clearConfigHistory, getBeforeStamp:2025-08-25 15:10:12.0, pageSize:1000 + +2025-09-24 15:10:12,172 WARN history config cleaner successfully + +2025-09-24 15:11:02,788 INFO [capacityManagement] start correct usage + +2025-09-24 15:11:03,019 INFO [capacityManagement] end correct usage, cost: 0.23084765s + +2025-09-24 15:20:12,173 WARN clearHistoryConfig get scheduled + +2025-09-24 15:20:12,174 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 15:20:12,179 WARN clearConfigHistory, getBeforeStamp:2025-08-25 15:20:12.0, pageSize:1000 + +2025-09-24 15:20:12,193 WARN history config cleaner successfully + +2025-09-24 15:21:03,019 INFO [capacityManagement] start correct usage + +2025-09-24 15:21:03,253 INFO [capacityManagement] end correct usage, cost: 0.23403792s + +2025-09-24 15:30:12,195 WARN clearHistoryConfig get scheduled + +2025-09-24 15:30:12,196 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 15:30:12,202 WARN clearConfigHistory, getBeforeStamp:2025-08-25 15:30:12.0, pageSize:1000 + +2025-09-24 15:30:12,210 WARN history config cleaner successfully + +2025-09-24 15:31:03,253 INFO [capacityManagement] start correct usage + +2025-09-24 15:31:03,488 INFO [capacityManagement] end correct usage, cost: 0.234586587s + +2025-09-24 15:40:12,211 WARN clearHistoryConfig get scheduled + +2025-09-24 15:40:12,212 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 15:40:12,216 WARN clearConfigHistory, getBeforeStamp:2025-08-25 15:40:12.0, pageSize:1000 + +2025-09-24 15:40:12,229 WARN history config cleaner successfully + +2025-09-24 15:41:03,490 INFO [capacityManagement] start correct usage + +2025-09-24 15:41:03,724 INFO [capacityManagement] end correct usage, cost: 0.233432627s + +2025-09-24 15:50:12,229 WARN clearHistoryConfig get scheduled + +2025-09-24 15:50:12,229 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 15:50:12,232 WARN clearConfigHistory, getBeforeStamp:2025-08-25 15:50:12.0, pageSize:1000 + +2025-09-24 15:50:12,238 WARN history config cleaner successfully + +2025-09-24 15:51:03,724 INFO [capacityManagement] start correct usage + +2025-09-24 15:51:03,958 INFO [capacityManagement] end correct usage, cost: 0.232088821s + +2025-09-24 16:00:12,238 WARN clearHistoryConfig get scheduled + +2025-09-24 16:00:12,239 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 16:00:12,242 WARN clearConfigHistory, getBeforeStamp:2025-08-25 16:00:12.0, pageSize:1000 + +2025-09-24 16:00:12,248 WARN history config cleaner successfully + +2025-09-24 16:01:03,958 INFO [capacityManagement] start correct usage + +2025-09-24 16:01:04,201 INFO [capacityManagement] end correct usage, cost: 0.241606819s + +2025-09-24 16:10:12,248 WARN clearHistoryConfig get scheduled + +2025-09-24 16:10:12,249 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 16:10:12,255 WARN clearConfigHistory, getBeforeStamp:2025-08-25 16:10:12.0, pageSize:1000 + +2025-09-24 16:10:12,263 WARN history config cleaner successfully + +2025-09-24 16:11:04,201 INFO [capacityManagement] start correct usage + +2025-09-24 16:11:04,434 INFO [capacityManagement] end correct usage, cost: 0.231769689s + +2025-09-24 16:20:12,263 WARN clearHistoryConfig get scheduled + +2025-09-24 16:20:12,264 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 16:20:12,270 WARN clearConfigHistory, getBeforeStamp:2025-08-25 16:20:12.0, pageSize:1000 + +2025-09-24 16:20:12,283 WARN history config cleaner successfully + +2025-09-24 16:21:04,435 INFO [capacityManagement] start correct usage + +2025-09-24 16:21:04,670 INFO [capacityManagement] end correct usage, cost: 0.234231621s + +2025-09-24 16:30:12,284 WARN clearHistoryConfig get scheduled + +2025-09-24 16:30:12,285 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 16:30:12,292 WARN clearConfigHistory, getBeforeStamp:2025-08-25 16:30:12.0, pageSize:1000 + +2025-09-24 16:30:12,302 WARN history config cleaner successfully + +2025-09-24 16:31:04,670 INFO [capacityManagement] start correct usage + +2025-09-24 16:31:04,910 INFO [capacityManagement] end correct usage, cost: 0.239802151s + +2025-09-24 16:40:12,304 WARN clearHistoryConfig get scheduled + +2025-09-24 16:40:12,304 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 16:40:12,312 WARN clearConfigHistory, getBeforeStamp:2025-08-25 16:40:12.0, pageSize:1000 + +2025-09-24 16:40:12,330 WARN history config cleaner successfully + +2025-09-24 16:41:04,911 INFO [capacityManagement] start correct usage + +2025-09-24 16:41:05,160 INFO [capacityManagement] end correct usage, cost: 0.248491811s + +2025-09-24 16:50:12,330 WARN clearHistoryConfig get scheduled + +2025-09-24 16:50:12,331 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 16:50:12,331 WARN clearConfigHistory, getBeforeStamp:2025-08-25 16:50:12.0, pageSize:1000 + +2025-09-24 16:50:12,339 WARN history config cleaner successfully + +2025-09-24 16:51:05,163 INFO [capacityManagement] start correct usage + +2025-09-24 16:51:05,399 INFO [capacityManagement] end correct usage, cost: 0.235848302s + +2025-09-24 17:00:12,339 WARN clearHistoryConfig get scheduled + +2025-09-24 17:00:12,339 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 17:00:12,345 WARN clearConfigHistory, getBeforeStamp:2025-08-25 17:00:12.0, pageSize:1000 + +2025-09-24 17:00:12,360 WARN history config cleaner successfully + +2025-09-24 17:01:05,400 INFO [capacityManagement] start correct usage + +2025-09-24 17:01:05,629 INFO [capacityManagement] end correct usage, cost: 0.229100906s + +2025-09-24 17:10:12,361 WARN clearHistoryConfig get scheduled + +2025-09-24 17:10:12,361 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 17:10:12,367 WARN clearConfigHistory, getBeforeStamp:2025-08-25 17:10:12.0, pageSize:1000 + +2025-09-24 17:10:12,373 WARN history config cleaner successfully + +2025-09-24 17:11:05,631 INFO [capacityManagement] start correct usage + +2025-09-24 17:11:05,863 INFO [capacityManagement] end correct usage, cost: 0.231607951s + +2025-09-24 17:20:12,374 WARN clearHistoryConfig get scheduled + +2025-09-24 17:20:12,375 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 17:20:12,379 WARN clearConfigHistory, getBeforeStamp:2025-08-25 17:20:12.0, pageSize:1000 + +2025-09-24 17:20:12,383 WARN history config cleaner successfully + +2025-09-24 17:21:05,863 INFO [capacityManagement] start correct usage + +2025-09-24 17:21:06,096 INFO [capacityManagement] end correct usage, cost: 0.231652903s + +2025-09-24 17:30:12,384 WARN clearHistoryConfig get scheduled + +2025-09-24 17:30:12,385 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 17:30:12,387 WARN clearConfigHistory, getBeforeStamp:2025-08-25 17:30:12.0, pageSize:1000 + +2025-09-24 17:30:12,398 WARN history config cleaner successfully + +2025-09-24 17:31:06,098 INFO [capacityManagement] start correct usage + +2025-09-24 17:31:06,374 INFO [capacityManagement] end correct usage, cost: 0.275332364s + +2025-09-24 17:40:12,400 WARN clearHistoryConfig get scheduled + +2025-09-24 17:40:12,401 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 17:40:12,407 WARN clearConfigHistory, getBeforeStamp:2025-08-25 17:40:12.0, pageSize:1000 + +2025-09-24 17:40:12,414 WARN history config cleaner successfully + +2025-09-24 17:41:06,374 INFO [capacityManagement] start correct usage + +2025-09-24 17:41:06,608 INFO [capacityManagement] end correct usage, cost: 0.232800406s + +2025-09-24 17:50:12,415 WARN clearHistoryConfig get scheduled + +2025-09-24 17:50:12,416 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 17:50:12,416 WARN clearConfigHistory, getBeforeStamp:2025-08-25 17:50:12.0, pageSize:1000 + +2025-09-24 17:50:12,417 WARN history config cleaner successfully + +2025-09-24 17:51:06,608 INFO [capacityManagement] start correct usage + +2025-09-24 17:51:06,844 INFO [capacityManagement] end correct usage, cost: 0.235197799s + +2025-09-24 18:00:12,418 WARN clearHistoryConfig get scheduled + +2025-09-24 18:00:12,419 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 18:00:12,439 WARN clearConfigHistory, getBeforeStamp:2025-08-25 18:00:12.0, pageSize:1000 + +2025-09-24 18:00:12,440 WARN history config cleaner successfully + +2025-09-24 18:01:06,844 INFO [capacityManagement] start correct usage + +2025-09-24 18:01:07,059 INFO [capacityManagement] end correct usage, cost: 0.214160783s + +2025-09-24 18:10:12,440 WARN clearHistoryConfig get scheduled + +2025-09-24 18:10:12,440 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 18:10:12,457 WARN clearConfigHistory, getBeforeStamp:2025-08-25 18:10:12.0, pageSize:1000 + +2025-09-24 18:10:12,457 WARN history config cleaner successfully + +2025-09-24 18:11:07,059 INFO [capacityManagement] start correct usage + +2025-09-24 18:11:07,267 INFO [capacityManagement] end correct usage, cost: 0.208162641s + +2025-09-24 18:20:12,458 WARN clearHistoryConfig get scheduled + +2025-09-24 18:20:12,459 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 18:20:12,459 WARN clearConfigHistory, getBeforeStamp:2025-08-25 18:20:12.0, pageSize:1000 + +2025-09-24 18:20:12,460 WARN history config cleaner successfully + +2025-09-24 18:21:07,268 INFO [capacityManagement] start correct usage + +2025-09-24 18:21:07,480 INFO [capacityManagement] end correct usage, cost: 0.211454758s + +2025-09-24 18:30:12,462 WARN clearHistoryConfig get scheduled + +2025-09-24 18:30:12,463 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 18:30:12,469 WARN clearConfigHistory, getBeforeStamp:2025-08-25 18:30:12.0, pageSize:1000 + +2025-09-24 18:30:12,475 WARN history config cleaner successfully + +2025-09-24 18:31:07,480 INFO [capacityManagement] start correct usage + +2025-09-24 18:31:07,709 INFO [capacityManagement] end correct usage, cost: 0.229107589s + +2025-09-24 18:40:12,477 WARN clearHistoryConfig get scheduled + +2025-09-24 18:40:12,478 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 18:40:12,483 WARN clearConfigHistory, getBeforeStamp:2025-08-25 18:40:12.0, pageSize:1000 + +2025-09-24 18:40:12,493 WARN history config cleaner successfully + +2025-09-24 18:41:07,709 INFO [capacityManagement] start correct usage + +2025-09-24 18:41:07,941 INFO [capacityManagement] end correct usage, cost: 0.231111331s + +2025-09-24 18:50:12,494 WARN clearHistoryConfig get scheduled + +2025-09-24 18:50:12,495 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 18:50:12,497 WARN clearConfigHistory, getBeforeStamp:2025-08-25 18:50:12.0, pageSize:1000 + +2025-09-24 18:50:12,500 WARN history config cleaner successfully + +2025-09-24 18:51:07,944 INFO [capacityManagement] start correct usage + +2025-09-24 18:51:08,173 INFO [capacityManagement] end correct usage, cost: 0.229648587s + +2025-09-24 19:00:12,502 WARN clearHistoryConfig get scheduled + +2025-09-24 19:00:12,502 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 19:00:12,506 WARN clearConfigHistory, getBeforeStamp:2025-08-25 19:00:12.0, pageSize:1000 + +2025-09-24 19:00:12,515 WARN history config cleaner successfully + +2025-09-24 19:01:08,174 INFO [capacityManagement] start correct usage + +2025-09-24 19:01:08,410 INFO [capacityManagement] end correct usage, cost: 0.235971963s + +2025-09-24 19:10:12,516 WARN clearHistoryConfig get scheduled + +2025-09-24 19:10:12,517 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 19:10:12,522 WARN clearConfigHistory, getBeforeStamp:2025-08-25 19:10:12.0, pageSize:1000 + +2025-09-24 19:10:12,532 WARN history config cleaner successfully + +2025-09-24 19:11:08,411 INFO [capacityManagement] start correct usage + +2025-09-24 19:11:08,644 INFO [capacityManagement] end correct usage, cost: 0.232876396s + +2025-09-24 19:20:12,532 WARN clearHistoryConfig get scheduled + +2025-09-24 19:20:12,533 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 19:20:12,538 WARN clearConfigHistory, getBeforeStamp:2025-08-25 19:20:12.0, pageSize:1000 + +2025-09-24 19:20:12,545 WARN history config cleaner successfully + +2025-09-24 19:21:08,646 INFO [capacityManagement] start correct usage + +2025-09-24 19:21:08,875 INFO [capacityManagement] end correct usage, cost: 0.229323485s + +2025-09-24 19:30:12,546 WARN clearHistoryConfig get scheduled + +2025-09-24 19:30:12,548 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 19:30:12,548 WARN clearConfigHistory, getBeforeStamp:2025-08-25 19:30:12.0, pageSize:1000 + +2025-09-24 19:30:12,553 WARN history config cleaner successfully + +2025-09-24 19:31:08,877 INFO [capacityManagement] start correct usage + +2025-09-24 19:31:09,115 INFO [capacityManagement] end correct usage, cost: 0.236426146s + +2025-09-24 19:40:12,553 WARN clearHistoryConfig get scheduled + +2025-09-24 19:40:12,554 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 19:40:12,559 WARN clearConfigHistory, getBeforeStamp:2025-08-25 19:40:12.0, pageSize:1000 + +2025-09-24 19:40:12,565 WARN history config cleaner successfully + +2025-09-24 19:41:09,115 INFO [capacityManagement] start correct usage + +2025-09-24 19:41:09,357 INFO [capacityManagement] end correct usage, cost: 0.240949622s + +2025-09-24 19:50:12,565 WARN clearHistoryConfig get scheduled + +2025-09-24 19:50:12,566 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 19:50:12,572 WARN clearConfigHistory, getBeforeStamp:2025-08-25 19:50:12.0, pageSize:1000 + +2025-09-24 19:50:12,579 WARN history config cleaner successfully + +2025-09-24 19:51:09,359 INFO [capacityManagement] start correct usage + +2025-09-24 19:51:09,593 INFO [capacityManagement] end correct usage, cost: 0.234270353s + +2025-09-24 20:00:12,580 WARN clearHistoryConfig get scheduled + +2025-09-24 20:00:12,581 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 20:00:12,581 WARN clearConfigHistory, getBeforeStamp:2025-08-25 20:00:12.0, pageSize:1000 + +2025-09-24 20:00:12,582 WARN history config cleaner successfully + +2025-09-24 20:01:09,594 INFO [capacityManagement] start correct usage + +2025-09-24 20:01:09,838 INFO [capacityManagement] end correct usage, cost: 0.244304843s + +2025-09-24 20:10:12,582 WARN clearHistoryConfig get scheduled + +2025-09-24 20:10:12,583 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 20:10:12,585 WARN clearConfigHistory, getBeforeStamp:2025-08-25 20:10:12.0, pageSize:1000 + +2025-09-24 20:10:12,593 WARN history config cleaner successfully + +2025-09-24 20:11:09,839 INFO [capacityManagement] start correct usage + +2025-09-24 20:11:10,093 INFO [capacityManagement] end correct usage, cost: 0.253965814s + +2025-09-24 20:20:12,594 WARN clearHistoryConfig get scheduled + +2025-09-24 20:20:12,595 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 20:20:12,599 WARN clearConfigHistory, getBeforeStamp:2025-08-25 20:20:12.0, pageSize:1000 + +2025-09-24 20:20:12,607 WARN history config cleaner successfully + +2025-09-24 20:21:10,093 INFO [capacityManagement] start correct usage + +2025-09-24 20:21:10,329 INFO [capacityManagement] end correct usage, cost: 0.235253112s + +2025-09-24 20:30:12,607 WARN clearHistoryConfig get scheduled + +2025-09-24 20:30:12,607 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 20:30:12,607 WARN clearConfigHistory, getBeforeStamp:2025-08-25 20:30:12.0, pageSize:1000 + +2025-09-24 20:30:12,608 WARN history config cleaner successfully + +2025-09-24 20:31:10,330 INFO [capacityManagement] start correct usage + +2025-09-24 20:31:10,577 INFO [capacityManagement] end correct usage, cost: 0.24680611s + +2025-09-24 20:40:12,608 WARN clearHistoryConfig get scheduled + +2025-09-24 20:40:12,609 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 20:40:12,613 WARN clearConfigHistory, getBeforeStamp:2025-08-25 20:40:12.0, pageSize:1000 + +2025-09-24 20:40:12,617 WARN history config cleaner successfully + +2025-09-24 20:41:10,578 INFO [capacityManagement] start correct usage + +2025-09-24 20:41:10,809 INFO [capacityManagement] end correct usage, cost: 0.23022274s + +2025-09-24 20:50:12,618 WARN clearHistoryConfig get scheduled + +2025-09-24 20:50:12,619 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 20:50:12,624 WARN clearConfigHistory, getBeforeStamp:2025-08-25 20:50:12.0, pageSize:1000 + +2025-09-24 20:50:12,630 WARN history config cleaner successfully + +2025-09-24 20:51:10,810 INFO [capacityManagement] start correct usage + +2025-09-24 20:51:11,061 INFO [capacityManagement] end correct usage, cost: 0.250360634s + +2025-09-24 21:00:12,631 WARN clearHistoryConfig get scheduled + +2025-09-24 21:00:12,631 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 21:00:12,631 WARN clearConfigHistory, getBeforeStamp:2025-08-25 21:00:12.0, pageSize:1000 + +2025-09-24 21:00:12,632 WARN history config cleaner successfully + +2025-09-24 21:01:11,063 INFO [capacityManagement] start correct usage + +2025-09-24 21:01:11,326 INFO [capacityManagement] end correct usage, cost: 0.263519915s + +2025-09-24 21:10:12,632 WARN clearHistoryConfig get scheduled + +2025-09-24 21:10:12,633 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 21:10:12,638 WARN clearConfigHistory, getBeforeStamp:2025-08-25 21:10:12.0, pageSize:1000 + +2025-09-24 21:10:12,646 WARN history config cleaner successfully + +2025-09-24 21:11:11,327 INFO [capacityManagement] start correct usage + +2025-09-24 21:11:11,561 INFO [capacityManagement] end correct usage, cost: 0.233563317s + +2025-09-24 21:20:12,648 WARN clearHistoryConfig get scheduled + +2025-09-24 21:20:12,648 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 21:20:12,655 WARN clearConfigHistory, getBeforeStamp:2025-08-25 21:20:12.0, pageSize:1000 + +2025-09-24 21:20:12,659 WARN history config cleaner successfully + +2025-09-24 21:21:11,561 INFO [capacityManagement] start correct usage + +2025-09-24 21:21:11,800 INFO [capacityManagement] end correct usage, cost: 0.237807996s + +2025-09-24 21:30:12,660 WARN clearHistoryConfig get scheduled + +2025-09-24 21:30:12,661 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 21:30:12,661 WARN clearConfigHistory, getBeforeStamp:2025-08-25 21:30:12.0, pageSize:1000 + +2025-09-24 21:30:12,663 WARN history config cleaner successfully + +2025-09-24 21:31:11,801 INFO [capacityManagement] start correct usage + +2025-09-24 21:31:12,059 INFO [capacityManagement] end correct usage, cost: 0.258187597s + +2025-09-24 21:40:12,663 WARN clearHistoryConfig get scheduled + +2025-09-24 21:40:12,663 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 21:40:12,668 WARN clearConfigHistory, getBeforeStamp:2025-08-25 21:40:12.0, pageSize:1000 + +2025-09-24 21:40:12,674 WARN history config cleaner successfully + +2025-09-24 21:41:12,060 INFO [capacityManagement] start correct usage + +2025-09-24 21:41:12,292 INFO [capacityManagement] end correct usage, cost: 0.231283423s + +2025-09-24 21:50:12,675 WARN clearHistoryConfig get scheduled + +2025-09-24 21:50:12,675 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 21:50:12,681 WARN clearConfigHistory, getBeforeStamp:2025-08-25 21:50:12.0, pageSize:1000 + +2025-09-24 21:50:12,690 WARN history config cleaner successfully + +2025-09-24 21:51:12,292 INFO [capacityManagement] start correct usage + +2025-09-24 21:51:12,539 INFO [capacityManagement] end correct usage, cost: 0.24705256s + +2025-09-24 22:00:12,691 WARN clearHistoryConfig get scheduled + +2025-09-24 22:00:12,692 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 22:00:12,692 WARN clearConfigHistory, getBeforeStamp:2025-08-25 22:00:12.0, pageSize:1000 + +2025-09-24 22:00:12,693 WARN history config cleaner successfully + +2025-09-24 22:01:12,540 INFO [capacityManagement] start correct usage + +2025-09-24 22:01:12,777 INFO [capacityManagement] end correct usage, cost: 0.237103007s + +2025-09-24 22:10:12,693 WARN clearHistoryConfig get scheduled + +2025-09-24 22:10:12,693 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 22:10:12,697 WARN clearConfigHistory, getBeforeStamp:2025-08-25 22:10:12.0, pageSize:1000 + +2025-09-24 22:10:12,703 WARN history config cleaner successfully + +2025-09-24 22:11:12,779 INFO [capacityManagement] start correct usage + +2025-09-24 22:11:13,012 INFO [capacityManagement] end correct usage, cost: 0.23270541s + +2025-09-24 22:20:12,703 WARN clearHistoryConfig get scheduled + +2025-09-24 22:20:12,704 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 22:20:12,704 WARN clearConfigHistory, getBeforeStamp:2025-08-25 22:20:12.0, pageSize:1000 + +2025-09-24 22:20:12,709 WARN history config cleaner successfully + +2025-09-24 22:21:13,014 INFO [capacityManagement] start correct usage + +2025-09-24 22:21:13,248 INFO [capacityManagement] end correct usage, cost: 0.232743076s + +2025-09-24 22:30:12,709 WARN clearHistoryConfig get scheduled + +2025-09-24 22:30:12,710 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 22:30:12,710 WARN clearConfigHistory, getBeforeStamp:2025-08-25 22:30:12.0, pageSize:1000 + +2025-09-24 22:30:12,711 WARN history config cleaner successfully + +2025-09-24 22:31:13,248 INFO [capacityManagement] start correct usage + +2025-09-24 22:31:13,594 INFO [capacityManagement] end correct usage, cost: 0.345428994s + +2025-09-24 22:40:12,712 WARN clearHistoryConfig get scheduled + +2025-09-24 22:40:12,712 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 22:40:12,714 WARN clearConfigHistory, getBeforeStamp:2025-08-25 22:40:12.0, pageSize:1000 + +2025-09-24 22:40:12,716 WARN history config cleaner successfully + +2025-09-24 22:41:13,595 INFO [capacityManagement] start correct usage + +2025-09-24 22:41:13,861 INFO [capacityManagement] end correct usage, cost: 0.266104946s + +2025-09-24 22:50:12,716 WARN clearHistoryConfig get scheduled + +2025-09-24 22:50:12,717 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 22:50:12,717 WARN clearConfigHistory, getBeforeStamp:2025-08-25 22:50:12.0, pageSize:1000 + +2025-09-24 22:50:12,722 WARN history config cleaner successfully + +2025-09-24 22:51:13,862 INFO [capacityManagement] start correct usage + +2025-09-24 22:51:14,101 INFO [capacityManagement] end correct usage, cost: 0.238343611s + +2025-09-24 23:00:12,723 WARN clearHistoryConfig get scheduled + +2025-09-24 23:00:12,725 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 23:00:12,725 WARN clearConfigHistory, getBeforeStamp:2025-08-25 23:00:12.0, pageSize:1000 + +2025-09-24 23:00:12,732 WARN history config cleaner successfully + +2025-09-24 23:01:14,102 INFO [capacityManagement] start correct usage + +2025-09-24 23:01:14,356 INFO [capacityManagement] end correct usage, cost: 0.253462259s + +2025-09-24 23:10:12,733 WARN clearHistoryConfig get scheduled + +2025-09-24 23:10:12,734 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 23:10:12,735 WARN clearConfigHistory, getBeforeStamp:2025-08-25 23:10:12.0, pageSize:1000 + +2025-09-24 23:10:12,748 WARN history config cleaner successfully + +2025-09-24 23:11:14,357 INFO [capacityManagement] start correct usage + +2025-09-24 23:11:14,595 INFO [capacityManagement] end correct usage, cost: 0.237723744s + +2025-09-24 23:20:12,749 WARN clearHistoryConfig get scheduled + +2025-09-24 23:20:12,750 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 23:20:12,754 WARN clearConfigHistory, getBeforeStamp:2025-08-25 23:20:12.0, pageSize:1000 + +2025-09-24 23:20:12,768 WARN history config cleaner successfully + +2025-09-24 23:21:14,596 INFO [capacityManagement] start correct usage + +2025-09-24 23:21:14,840 INFO [capacityManagement] end correct usage, cost: 0.243513595s + +2025-09-24 23:30:12,769 WARN clearHistoryConfig get scheduled + +2025-09-24 23:30:12,770 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 23:30:12,777 WARN clearConfigHistory, getBeforeStamp:2025-08-25 23:30:12.0, pageSize:1000 + +2025-09-24 23:30:12,784 WARN history config cleaner successfully + +2025-09-24 23:31:14,841 INFO [capacityManagement] start correct usage + +2025-09-24 23:31:15,089 INFO [capacityManagement] end correct usage, cost: 0.247765659s + +2025-09-24 23:40:12,785 WARN clearHistoryConfig get scheduled + +2025-09-24 23:40:12,787 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 23:40:12,788 WARN clearConfigHistory, getBeforeStamp:2025-08-25 23:40:12.0, pageSize:1000 + +2025-09-24 23:40:12,798 WARN history config cleaner successfully + +2025-09-24 23:41:15,090 INFO [capacityManagement] start correct usage + +2025-09-24 23:41:15,327 INFO [capacityManagement] end correct usage, cost: 0.237053484s + +2025-09-24 23:50:12,798 WARN clearHistoryConfig get scheduled + +2025-09-24 23:50:12,800 WARN clearHistoryConfig is enable in current context, try to run cleaner + +2025-09-24 23:50:12,803 WARN clearConfigHistory, getBeforeStamp:2025-08-25 23:50:12.0, pageSize:1000 + +2025-09-24 23:50:12,823 WARN history config cleaner successfully + +2025-09-24 23:51:15,328 INFO [capacityManagement] start correct usage + +2025-09-24 23:51:15,558 INFO [capacityManagement] end correct usage, cost: 0.22918081s diff --git a/docker/nacos/standalone-logs/nacos_gc.log b/docker/nacos/standalone-logs/nacos_gc.log index f9fdffa..74495cc 100644 --- a/docker/nacos/standalone-logs/nacos_gc.log +++ b/docker/nacos/standalone-logs/nacos_gc.log @@ -1,69 +1,23 @@ -[2025-09-23T01:43:32.380+0000][gc,phases ] GC(73) Other: 3.0ms -[2025-09-23T01:43:32.380+0000][gc,heap ] GC(73) Eden regions: 510->0(510) -[2025-09-23T01:43:32.380+0000][gc,heap ] GC(73) Survivor regions: 2->2(64) -[2025-09-23T01:43:32.380+0000][gc,heap ] GC(73) Old regions: 102->102 -[2025-09-23T01:43:32.380+0000][gc,heap ] GC(73) Archive regions: 2->2 -[2025-09-23T01:43:32.380+0000][gc,heap ] GC(73) Humongous regions: 10->10 -[2025-09-23T01:43:32.380+0000][gc,metaspace] GC(73) Metaspace: 97440K(98560K)->97440K(98560K) NonClass: 85874K(86464K)->85874K(86464K) Class: 11565K(12096K)->11565K(12096K) -[2025-09-23T01:43:32.380+0000][gc ] GC(73) Pause Young (Normal) (G1 Evacuation Pause) 623M->113M(1024M) 12.011ms -[2025-09-23T01:43:32.380+0000][gc,cpu ] GC(73) User=0.01s Sys=0.02s Real=0.01s -[2025-09-23T02:09:37.154+0000][gc,start ] GC(74) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-23T02:09:37.157+0000][gc,task ] GC(74) Using 10 workers of 10 for evacuation -[2025-09-23T02:09:37.165+0000][gc,phases ] GC(74) Pre Evacuate Collection Set: 0.5ms -[2025-09-23T02:09:37.165+0000][gc,phases ] GC(74) Merge Heap Roots: 0.3ms -[2025-09-23T02:09:37.165+0000][gc,phases ] GC(74) Evacuate Collection Set: 3.5ms -[2025-09-23T02:09:37.165+0000][gc,phases ] GC(74) Post Evacuate Collection Set: 3.5ms -[2025-09-23T02:09:37.165+0000][gc,phases ] GC(74) Other: 3.3ms -[2025-09-23T02:09:37.165+0000][gc,heap ] GC(74) Eden regions: 510->0(510) -[2025-09-23T02:09:37.165+0000][gc,heap ] GC(74) Survivor regions: 2->2(64) -[2025-09-23T02:09:37.165+0000][gc,heap ] GC(74) Old regions: 102->102 -[2025-09-23T02:09:37.165+0000][gc,heap ] GC(74) Archive regions: 2->2 -[2025-09-23T02:09:37.165+0000][gc,heap ] GC(74) Humongous regions: 10->10 -[2025-09-23T02:09:37.166+0000][gc,metaspace] GC(74) Metaspace: 97459K(98560K)->97459K(98560K) NonClass: 85893K(86464K)->85893K(86464K) Class: 11565K(12096K)->11565K(12096K) -[2025-09-23T02:09:37.166+0000][gc ] GC(74) Pause Young (Normal) (G1 Evacuation Pause) 623M->113M(1024M) 11.488ms -[2025-09-23T02:09:37.166+0000][gc,cpu ] GC(74) User=0.02s Sys=0.01s Real=0.01s -[2025-09-23T02:36:14.026+0000][gc,start ] GC(75) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-23T02:36:14.030+0000][gc,task ] GC(75) Using 10 workers of 10 for evacuation -[2025-09-23T02:36:14.035+0000][gc,phases ] GC(75) Pre Evacuate Collection Set: 0.6ms -[2025-09-23T02:36:14.036+0000][gc,phases ] GC(75) Merge Heap Roots: 0.3ms -[2025-09-23T02:36:14.036+0000][gc,phases ] GC(75) Evacuate Collection Set: 2.5ms -[2025-09-23T02:36:14.036+0000][gc,phases ] GC(75) Post Evacuate Collection Set: 2.1ms -[2025-09-23T02:36:14.036+0000][gc,phases ] GC(75) Other: 3.5ms -[2025-09-23T02:36:14.036+0000][gc,heap ] GC(75) Eden regions: 510->0(510) -[2025-09-23T02:36:14.036+0000][gc,heap ] GC(75) Survivor regions: 2->2(64) -[2025-09-23T02:36:14.036+0000][gc,heap ] GC(75) Old regions: 102->102 -[2025-09-23T02:36:14.036+0000][gc,heap ] GC(75) Archive regions: 2->2 -[2025-09-23T02:36:14.036+0000][gc,heap ] GC(75) Humongous regions: 10->10 -[2025-09-23T02:36:14.036+0000][gc,metaspace] GC(75) Metaspace: 97464K(98560K)->97464K(98560K) NonClass: 85899K(86464K)->85899K(86464K) Class: 11565K(12096K)->11565K(12096K) -[2025-09-23T02:36:14.036+0000][gc ] GC(75) Pause Young (Normal) (G1 Evacuation Pause) 623M->113M(1024M) 9.447ms -[2025-09-23T02:36:14.036+0000][gc,cpu ] GC(75) User=0.01s Sys=0.00s Real=0.01s -[2025-09-23T03:05:59.247+0000][gc,start ] GC(76) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-23T03:05:59.252+0000][gc,task ] GC(76) Using 10 workers of 10 for evacuation -[2025-09-23T03:05:59.258+0000][gc,phases ] GC(76) Pre Evacuate Collection Set: 0.5ms -[2025-09-23T03:05:59.258+0000][gc,phases ] GC(76) Merge Heap Roots: 0.3ms -[2025-09-23T03:05:59.259+0000][gc,phases ] GC(76) Evacuate Collection Set: 2.5ms -[2025-09-23T03:05:59.259+0000][gc,phases ] GC(76) Post Evacuate Collection Set: 2.7ms -[2025-09-23T03:05:59.259+0000][gc,phases ] GC(76) Other: 5.0ms -[2025-09-23T03:05:59.259+0000][gc,heap ] GC(76) Eden regions: 510->0(510) -[2025-09-23T03:05:59.259+0000][gc,heap ] GC(76) Survivor regions: 2->2(64) -[2025-09-23T03:05:59.259+0000][gc,heap ] GC(76) Old regions: 102->102 -[2025-09-23T03:05:59.259+0000][gc,heap ] GC(76) Archive regions: 2->2 -[2025-09-23T03:05:59.259+0000][gc,heap ] GC(76) Humongous regions: 10->10 -[2025-09-23T03:05:59.259+0000][gc,metaspace] GC(76) Metaspace: 97472K(98560K)->97472K(98560K) NonClass: 85907K(86464K)->85907K(86464K) Class: 11565K(12096K)->11565K(12096K) -[2025-09-23T03:05:59.259+0000][gc ] GC(76) Pause Young (Normal) (G1 Evacuation Pause) 623M->114M(1024M) 11.899ms -[2025-09-23T03:05:59.259+0000][gc,cpu ] GC(76) User=0.02s Sys=0.01s Real=0.01s -[2025-09-23T03:32:09.680+0000][gc,start ] GC(77) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-23T03:32:09.682+0000][gc,task ] GC(77) Using 10 workers of 10 for evacuation -[2025-09-23T03:32:09.694+0000][gc,phases ] GC(77) Pre Evacuate Collection Set: 2.9ms -[2025-09-23T03:32:09.694+0000][gc,phases ] GC(77) Merge Heap Roots: 0.2ms -[2025-09-23T03:32:09.694+0000][gc,phases ] GC(77) Evacuate Collection Set: 4.0ms -[2025-09-23T03:32:09.694+0000][gc,phases ] GC(77) Post Evacuate Collection Set: 4.0ms -[2025-09-23T03:32:09.694+0000][gc,phases ] GC(77) Other: 2.5ms -[2025-09-23T03:32:09.694+0000][gc,heap ] GC(77) Eden regions: 510->0(510) -[2025-09-23T03:32:09.694+0000][gc,heap ] GC(77) Survivor regions: 2->2(64) -[2025-09-23T03:32:09.694+0000][gc,heap ] GC(77) Old regions: 102->102 -[2025-09-23T03:32:09.694+0000][gc,heap ] GC(77) Archive regions: 2->2 -[2025-09-23T03:32:09.694+0000][gc,heap ] GC(77) Humongous regions: 10->10 -[2025-09-23T03:32:09.694+0000][gc,metaspace] GC(77) Metaspace: 97513K(98624K)->97513K(98624K) NonClass: 85946K(86528K)->85946K(86528K) Class: 11567K(12096K)->11567K(12096K) -[2025-09-23T03:32:09.695+0000][gc ] GC(77) Pause Young (Normal) (G1 Evacuation Pause) 624M->113M(1024M) 14.389ms -[2025-09-23T03:32:09.695+0000][gc,cpu ] GC(77) User=0.03s Sys=0.00s Real=0.02s +[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/naming-event.log b/docker/nacos/standalone-logs/naming-event.log index 7bbd2bc..f69750d 100644 --- a/docker/nacos/standalone-logs/naming-event.log +++ b/docker/nacos/standalone-logs/naming-event.log @@ -1,8 +1,24 @@ -2025-09-23 00:24:41,312 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758558264995 +2025-09-24 01:10:54,597 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758647438972 -2025-09-23 00:24:42,126 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758558264663 +2025-09-24 01:19:23,227 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758647945044 -2025-09-23 00:24:43,631 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1301@DEFAULT@app-product, region: unknown, msg: client last beat: 1758558265674 +2025-09-24 17:08:38,231 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758704903220 -2025-09-23 00:26:01,883 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758558346882 +2025-09-24 17:08:38,798 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758704900570 + +2025-09-24 17:08:40,721 INFO service: DEFAULT_GROUP@@main-app {POS} {IP-ENABLED} valid: 192.168.31.101:1300@DEFAULT, region: unknown, msg: client beat ok + +2025-09-24 17:08:41,569 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1301@DEFAULT@app-product, region: unknown, msg: client last beat: 1758704903220 + +2025-09-24 17:08:43,239 INFO service: DEFAULT_GROUP@@app-shared {POS} {IP-ENABLED} valid: 192.168.31.101:1333@DEFAULT, region: unknown, msg: client beat ok + +2025-09-24 17:08:43,243 INFO service: DEFAULT_GROUP@@app-product {POS} {IP-ENABLED} valid: 192.168.31.101:1301@DEFAULT, region: unknown, msg: client beat ok + +2025-09-24 22:27:06,506 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758724010906 + +2025-09-24 22:28:41,521 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758724105616 + +2025-09-24 22:39:30,325 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758724750949 + +2025-09-24 23:29:05,381 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758727725419 diff --git a/docker/nacos/standalone-logs/naming-performance.log b/docker/nacos/standalone-logs/naming-performance.log index 3dda3b1..c31242b 100644 --- a/docker/nacos/standalone-logs/naming-performance.log +++ b/docker/nacos/standalone-logs/naming-performance.log @@ -1,10 +1,10 @@ -2025-09-23 00:00:43,713 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount +2025-09-24 00:00:46,290 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount -2025-09-23 00:00:43,717 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| +2025-09-24 00:00:46,299 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| -2025-09-23 00:00:43,717 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:00:46,299 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:00:43,717 INFO Task worker status: +2025-09-24 00:00:46,299 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -23,11 +23,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:00:43,717 INFO DISTRO:|0|0|0| +2025-09-24 00:00:46,299 INFO DISTRO:|0|0|0| -2025-09-23 00:01:43,717 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:01:46,299 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:01:43,718 INFO Task worker status: +2025-09-24 00:01:46,300 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -46,11 +46,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:01:43,718 INFO DISTRO:|0|0|0| +2025-09-24 00:01:46,300 INFO DISTRO:|0|0|0| -2025-09-23 00:02:43,719 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:02:46,303 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:02:43,719 INFO Task worker status: +2025-09-24 00:02:46,303 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -69,11 +69,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:02:43,719 INFO DISTRO:|0|0|0| +2025-09-24 00:02:46,303 INFO DISTRO:|0|0|0| -2025-09-23 00:03:43,719 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:03:46,304 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:03:43,719 INFO Task worker status: +2025-09-24 00:03:46,305 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -92,11 +92,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:03:43,720 INFO DISTRO:|0|0|0| +2025-09-24 00:03:46,305 INFO DISTRO:|0|0|0| -2025-09-23 00:04:43,720 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:04:46,306 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:04:43,721 INFO Task worker status: +2025-09-24 00:04:46,306 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -115,11 +115,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:04:43,721 INFO DISTRO:|0|0|0| +2025-09-24 00:04:46,306 INFO DISTRO:|0|0|0| -2025-09-23 00:05:43,722 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:05:46,307 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:05:43,723 INFO Task worker status: +2025-09-24 00:05:46,307 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -138,11 +138,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:05:43,723 INFO DISTRO:|0|0|0| +2025-09-24 00:05:46,307 INFO DISTRO:|0|0|0| -2025-09-23 00:06:43,724 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:06:46,308 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:06:43,725 INFO Task worker status: +2025-09-24 00:06:46,308 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -161,11 +161,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:06:43,725 INFO DISTRO:|0|0|0| +2025-09-24 00:06:46,308 INFO DISTRO:|0|0|0| -2025-09-23 00:07:43,726 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:07:46,309 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:07:43,727 INFO Task worker status: +2025-09-24 00:07:46,309 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -184,11 +184,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:07:43,727 INFO DISTRO:|0|0|0| +2025-09-24 00:07:46,310 INFO DISTRO:|0|0|0| -2025-09-23 00:08:43,728 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:08:46,310 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:08:43,729 INFO Task worker status: +2025-09-24 00:08:46,311 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -207,11 +207,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:08:43,730 INFO DISTRO:|0|0|0| +2025-09-24 00:08:46,311 INFO DISTRO:|0|0|0| -2025-09-23 00:09:43,730 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:09:46,312 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:09:43,731 INFO Task worker status: +2025-09-24 00:09:46,312 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -230,15 +230,15 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:09:43,731 INFO DISTRO:|0|0|0| +2025-09-24 00:09:46,312 INFO DISTRO:|0|0|0| -2025-09-23 00:10:43,732 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount +2025-09-24 00:10:46,313 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount -2025-09-23 00:10:43,734 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| +2025-09-24 00:10:46,314 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| -2025-09-23 00:10:43,734 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:10:46,314 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:10:43,734 INFO Task worker status: +2025-09-24 00:10:46,314 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -257,11 +257,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:10:43,734 INFO DISTRO:|0|0|0| +2025-09-24 00:10:46,314 INFO DISTRO:|0|0|0| -2025-09-23 00:11:43,735 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:11:46,316 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:11:43,736 INFO Task worker status: +2025-09-24 00:11:46,317 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -280,11 +280,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:11:43,736 INFO DISTRO:|0|0|0| +2025-09-24 00:11:46,317 INFO DISTRO:|0|0|0| -2025-09-23 00:12:43,737 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:12:46,318 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:12:43,739 INFO Task worker status: +2025-09-24 00:12:46,319 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -303,11 +303,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:12:43,739 INFO DISTRO:|0|0|0| +2025-09-24 00:12:46,319 INFO DISTRO:|0|0|0| -2025-09-23 00:13:43,739 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:13:46,319 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:13:43,740 INFO Task worker status: +2025-09-24 00:13:46,320 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -326,11 +326,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:13:43,740 INFO DISTRO:|0|0|0| +2025-09-24 00:13:46,320 INFO DISTRO:|0|0|0| -2025-09-23 00:14:43,741 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:14:46,321 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:14:43,742 INFO Task worker status: +2025-09-24 00:14:46,322 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -349,11 +349,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:14:43,742 INFO DISTRO:|0|0|0| +2025-09-24 00:14:46,322 INFO DISTRO:|0|0|0| -2025-09-23 00:15:43,742 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:15:46,323 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:15:43,743 INFO Task worker status: +2025-09-24 00:15:46,324 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -372,11 +372,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:15:43,743 INFO DISTRO:|0|0|0| +2025-09-24 00:15:46,324 INFO DISTRO:|0|0|0| -2025-09-23 00:16:43,745 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:16:46,325 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:16:43,745 INFO Task worker status: +2025-09-24 00:16:46,326 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -395,11 +395,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:16:43,745 INFO DISTRO:|0|0|0| +2025-09-24 00:16:46,327 INFO DISTRO:|0|0|0| -2025-09-23 00:17:43,745 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:17:46,327 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:17:43,746 INFO Task worker status: +2025-09-24 00:17:46,328 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -418,11 +418,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:17:43,746 INFO DISTRO:|0|0|0| +2025-09-24 00:17:46,328 INFO DISTRO:|0|0|0| -2025-09-23 00:18:43,747 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:18:46,329 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:18:43,747 INFO Task worker status: +2025-09-24 00:18:46,331 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -441,11 +441,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:18:43,748 INFO DISTRO:|0|0|0| +2025-09-24 00:18:46,331 INFO DISTRO:|0|0|0| -2025-09-23 00:19:43,748 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:19:46,331 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:19:43,749 INFO Task worker status: +2025-09-24 00:19:46,332 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -464,15 +464,15 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:19:43,749 INFO DISTRO:|0|0|0| +2025-09-24 00:19:46,332 INFO DISTRO:|0|0|0| -2025-09-23 00:20:43,749 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount +2025-09-24 00:20:46,332 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount -2025-09-23 00:20:43,751 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| +2025-09-24 00:20:46,333 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| -2025-09-23 00:20:43,751 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:20:46,333 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:20:43,751 INFO Task worker status: +2025-09-24 00:20:46,333 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -491,11 +491,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:20:43,751 INFO DISTRO:|0|0|0| +2025-09-24 00:20:46,333 INFO DISTRO:|0|0|0| -2025-09-23 00:21:43,751 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:21:46,334 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:21:43,751 INFO Task worker status: +2025-09-24 00:21:46,335 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -514,11 +514,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:21:43,752 INFO DISTRO:|0|0|0| +2025-09-24 00:21:46,336 INFO DISTRO:|0|0|0| -2025-09-23 00:22:43,752 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:22:46,337 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:22:43,752 INFO Task worker status: +2025-09-24 00:22:46,337 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -537,11 +537,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:22:43,752 INFO DISTRO:|0|0|0| +2025-09-24 00:22:46,337 INFO DISTRO:|0|0|0| -2025-09-23 00:23:43,753 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:23:46,337 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:23:43,754 INFO Task worker status: +2025-09-24 00:23:46,338 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -560,11 +560,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:23:43,755 INFO DISTRO:|0|0|0| +2025-09-24 00:23:46,338 INFO DISTRO:|0|0|0| -2025-09-23 00:24:43,755 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:24:46,339 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:24:43,755 INFO Task worker status: +2025-09-24 00:24:46,339 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -583,11 +583,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:24:43,756 INFO DISTRO:|0|0|0| +2025-09-24 00:24:46,339 INFO DISTRO:|0|0|0| -2025-09-23 00:25:43,756 INFO PERFORMANCE:|2|0|0|-1|-1|0|0 +2025-09-24 00:25:46,340 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:25:43,757 INFO Task worker status: +2025-09-24 00:25:46,341 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -606,11 +606,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:25:43,757 INFO DISTRO:|0|0|0| +2025-09-24 00:25:46,341 INFO DISTRO:|0|0|0| -2025-09-23 00:26:43,758 INFO PERFORMANCE:|1|0|0|-1|-1|0|0 +2025-09-24 00:26:46,342 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:26:43,758 INFO Task worker status: +2025-09-24 00:26:46,342 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -629,11 +629,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:26:43,759 INFO DISTRO:|0|0|0| +2025-09-24 00:26:46,342 INFO DISTRO:|0|0|0| -2025-09-23 00:27:43,759 INFO PERFORMANCE:|0|0|0|-1|-1|0|0 +2025-09-24 00:27:46,343 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:27:43,760 INFO Task worker status: +2025-09-24 00:27:46,344 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -652,11 +652,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:27:43,760 INFO DISTRO:|0|0|0| +2025-09-24 00:27:46,344 INFO DISTRO:|0|0|0| -2025-09-23 00:28:43,761 INFO PERFORMANCE:|0|0|0|-1|-1|0|0 +2025-09-24 00:28:46,345 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:28:43,761 INFO Task worker status: +2025-09-24 00:28:46,346 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -675,11 +675,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:28:43,761 INFO DISTRO:|0|0|0| +2025-09-24 00:28:46,346 INFO DISTRO:|0|0|0| -2025-09-23 00:29:43,763 INFO PERFORMANCE:|0|0|0|-1|-1|0|0 +2025-09-24 00:29:46,347 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:29:43,764 INFO Task worker status: +2025-09-24 00:29:46,348 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -698,15 +698,15 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:29:43,764 INFO DISTRO:|0|0|0| +2025-09-24 00:29:46,348 INFO DISTRO:|0|0|0| -2025-09-23 00:30:43,764 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount +2025-09-24 00:30:46,348 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount -2025-09-23 00:30:43,766 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| +2025-09-24 00:30:46,349 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| -2025-09-23 00:30:43,766 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:30:46,349 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:30:43,766 INFO Task worker status: +2025-09-24 00:30:46,349 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -725,11 +725,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:30:43,766 INFO DISTRO:|0|0|0| +2025-09-24 00:30:46,349 INFO DISTRO:|0|0|0| -2025-09-23 00:31:43,767 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:31:46,350 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:31:43,768 INFO Task worker status: +2025-09-24 00:31:46,350 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -748,11 +748,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:31:43,768 INFO DISTRO:|0|0|0| +2025-09-24 00:31:46,350 INFO DISTRO:|0|0|0| -2025-09-23 00:32:43,768 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:32:46,351 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:32:43,769 INFO Task worker status: +2025-09-24 00:32:46,353 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -771,11 +771,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:32:43,770 INFO DISTRO:|0|0|0| +2025-09-24 00:32:46,353 INFO DISTRO:|0|0|0| -2025-09-23 00:33:43,770 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:33:46,354 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:33:43,771 INFO Task worker status: +2025-09-24 00:33:46,355 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -794,11 +794,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:33:43,771 INFO DISTRO:|0|0|0| +2025-09-24 00:33:46,355 INFO DISTRO:|0|0|0| -2025-09-23 00:34:43,772 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:34:46,355 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:34:43,773 INFO Task worker status: +2025-09-24 00:34:46,356 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -817,11 +817,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:34:43,773 INFO DISTRO:|0|0|0| +2025-09-24 00:34:46,356 INFO DISTRO:|0|0|0| -2025-09-23 00:35:43,774 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:35:46,358 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:35:43,774 INFO Task worker status: +2025-09-24 00:35:46,358 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -840,11 +840,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:35:43,774 INFO DISTRO:|0|0|0| +2025-09-24 00:35:46,359 INFO DISTRO:|0|0|0| -2025-09-23 00:36:43,775 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:36:46,360 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:36:43,776 INFO Task worker status: +2025-09-24 00:36:46,360 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -863,11 +863,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:36:43,776 INFO DISTRO:|0|0|0| +2025-09-24 00:36:46,360 INFO DISTRO:|0|0|0| -2025-09-23 00:37:43,777 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:37:46,361 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:37:43,778 INFO Task worker status: +2025-09-24 00:37:46,362 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -886,11 +886,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:37:43,778 INFO DISTRO:|0|0|0| +2025-09-24 00:37:46,362 INFO DISTRO:|0|0|0| -2025-09-23 00:38:43,778 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:38:46,364 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:38:43,779 INFO Task worker status: +2025-09-24 00:38:46,365 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -909,11 +909,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:38:43,779 INFO DISTRO:|0|0|0| +2025-09-24 00:38:46,366 INFO DISTRO:|0|0|0| -2025-09-23 00:39:43,780 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:39:46,366 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:39:43,781 INFO Task worker status: +2025-09-24 00:39:46,366 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -932,15 +932,15 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:39:43,781 INFO DISTRO:|0|0|0| +2025-09-24 00:39:46,366 INFO DISTRO:|0|0|0| -2025-09-23 00:40:43,783 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount +2025-09-24 00:40:46,367 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount -2025-09-23 00:40:43,784 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| +2025-09-24 00:40:46,368 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| -2025-09-23 00:40:43,784 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:40:46,368 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:40:43,784 INFO Task worker status: +2025-09-24 00:40:46,368 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -959,11 +959,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:40:43,784 INFO DISTRO:|0|0|0| +2025-09-24 00:40:46,368 INFO DISTRO:|0|0|0| -2025-09-23 00:41:43,785 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:41:46,369 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:41:43,787 INFO Task worker status: +2025-09-24 00:41:46,370 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -982,11 +982,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:41:43,787 INFO DISTRO:|0|0|0| +2025-09-24 00:41:46,370 INFO DISTRO:|0|0|0| -2025-09-23 00:42:43,787 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:42:46,371 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:42:43,788 INFO Task worker status: +2025-09-24 00:42:46,372 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1005,11 +1005,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:42:43,788 INFO DISTRO:|0|0|0| +2025-09-24 00:42:46,372 INFO DISTRO:|0|0|0| -2025-09-23 00:43:43,789 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:43:46,373 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:43:43,790 INFO Task worker status: +2025-09-24 00:43:46,374 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1028,11 +1028,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:43:43,790 INFO DISTRO:|0|0|0| +2025-09-24 00:43:46,374 INFO DISTRO:|0|0|0| -2025-09-23 00:44:43,790 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:44:46,374 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:44:43,790 INFO Task worker status: +2025-09-24 00:44:46,376 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1051,11 +1051,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:44:43,790 INFO DISTRO:|0|0|0| +2025-09-24 00:44:46,376 INFO DISTRO:|0|0|0| -2025-09-23 00:45:43,791 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:45:46,377 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:45:43,792 INFO Task worker status: +2025-09-24 00:45:46,378 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1074,11 +1074,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:45:43,792 INFO DISTRO:|0|0|0| +2025-09-24 00:45:46,378 INFO DISTRO:|0|0|0| -2025-09-23 00:46:43,793 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:46:46,378 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:46:43,794 INFO Task worker status: +2025-09-24 00:46:46,378 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1097,11 +1097,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:46:43,794 INFO DISTRO:|0|0|0| +2025-09-24 00:46:46,379 INFO DISTRO:|0|0|0| -2025-09-23 00:47:43,796 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:47:46,379 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:47:43,797 INFO Task worker status: +2025-09-24 00:47:46,380 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1120,11 +1120,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:47:43,797 INFO DISTRO:|0|0|0| +2025-09-24 00:47:46,380 INFO DISTRO:|0|0|0| -2025-09-23 00:48:43,797 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:48:46,380 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:48:43,798 INFO Task worker status: +2025-09-24 00:48:46,382 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1143,11 +1143,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:48:43,798 INFO DISTRO:|0|0|0| +2025-09-24 00:48:46,382 INFO DISTRO:|0|0|0| -2025-09-23 00:49:43,798 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:49:46,383 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:49:43,799 INFO Task worker status: +2025-09-24 00:49:46,383 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1166,15 +1166,15 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:49:43,800 INFO DISTRO:|0|0|0| +2025-09-24 00:49:46,384 INFO DISTRO:|0|0|0| -2025-09-23 00:50:43,800 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount +2025-09-24 00:50:46,385 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount -2025-09-23 00:50:43,802 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| +2025-09-24 00:50:46,386 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| -2025-09-23 00:50:43,802 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:50:46,386 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:50:43,802 INFO Task worker status: +2025-09-24 00:50:46,386 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1193,11 +1193,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:50:43,802 INFO DISTRO:|0|0|0| +2025-09-24 00:50:46,386 INFO DISTRO:|0|0|0| -2025-09-23 00:51:43,802 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:51:46,386 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:51:43,803 INFO Task worker status: +2025-09-24 00:51:46,386 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1216,11 +1216,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:51:43,803 INFO DISTRO:|0|0|0| +2025-09-24 00:51:46,386 INFO DISTRO:|0|0|0| -2025-09-23 00:52:43,804 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:52:46,387 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:52:43,805 INFO Task worker status: +2025-09-24 00:52:46,389 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1239,11 +1239,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:52:43,805 INFO DISTRO:|0|0|0| +2025-09-24 00:52:46,389 INFO DISTRO:|0|0|0| -2025-09-23 00:53:43,805 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:53:46,389 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:53:43,807 INFO Task worker status: +2025-09-24 00:53:46,390 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1262,11 +1262,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:53:43,807 INFO DISTRO:|0|0|0| +2025-09-24 00:53:46,390 INFO DISTRO:|0|0|0| -2025-09-23 00:54:43,808 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:54:46,391 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:54:43,809 INFO Task worker status: +2025-09-24 00:54:46,392 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1285,11 +1285,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:54:43,809 INFO DISTRO:|0|0|0| +2025-09-24 00:54:46,392 INFO DISTRO:|0|0|0| -2025-09-23 00:55:43,809 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:55:46,393 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:55:43,811 INFO Task worker status: +2025-09-24 00:55:46,395 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1308,11 +1308,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:55:43,811 INFO DISTRO:|0|0|0| +2025-09-24 00:55:46,396 INFO DISTRO:|0|0|0| -2025-09-23 00:56:43,812 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:56:46,396 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:56:43,813 INFO Task worker status: +2025-09-24 00:56:46,397 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1331,11 +1331,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:56:43,813 INFO DISTRO:|0|0|0| +2025-09-24 00:56:46,397 INFO DISTRO:|0|0|0| -2025-09-23 00:57:43,814 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:57:46,397 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:57:43,814 INFO Task worker status: +2025-09-24 00:57:46,398 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1354,11 +1354,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:57:43,814 INFO DISTRO:|0|0|0| +2025-09-24 00:57:46,399 INFO DISTRO:|0|0|0| -2025-09-23 00:58:43,815 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:58:46,399 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:58:43,815 INFO Task worker status: +2025-09-24 00:58:46,400 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1377,11 +1377,11 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:58:43,815 INFO DISTRO:|0|0|0| +2025-09-24 00:58:46,401 INFO DISTRO:|0|0|0| -2025-09-23 00:59:43,816 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 00:59:46,403 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 00:59:43,816 INFO Task worker status: +2025-09-24 00:59:46,404 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1400,15 +1400,15 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 00:59:43,816 INFO DISTRO:|0|0|0| +2025-09-24 00:59:46,404 INFO DISTRO:|0|0|0| -2025-09-23 01:00:43,817 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount +2025-09-24 01:00:46,405 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount -2025-09-23 01:00:43,817 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| +2025-09-24 01:00:46,406 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| -2025-09-23 01:00:43,817 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 +2025-09-24 01:00:46,406 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 -2025-09-23 01:00:43,817 INFO Task worker status: +2025-09-24 01:00:46,406 INFO Task worker status: naming_0%16, pending tasks: 0 naming_1%16, pending tasks: 0 naming_2%16, pending tasks: 0 @@ -1427,5 +1427,32201 @@ naming_14%16, pending tasks: 0 naming_15%16, pending tasks: 0 -2025-09-23 01:00:43,817 INFO DISTRO:|0|0|0| +2025-09-24 01:00:46,406 INFO DISTRO:|0|0|0| + +2025-09-24 01:01:46,408 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:01:46,409 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-24 01:01:46,410 INFO DISTRO:|0|0|0| + +2025-09-24 01:02:46,410 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:02:46,410 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-24 01:02:46,410 INFO DISTRO:|0|0|0| + +2025-09-24 01:03:46,411 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:03:46,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-24 01:03:46,411 INFO DISTRO:|0|0|0| + +2025-09-24 01:04:46,412 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:04:46,414 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-24 01:04:46,414 INFO DISTRO:|0|0|0| + +2025-09-24 01:05:46,414 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:05:46,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-24 01:05:46,415 INFO DISTRO:|0|0|0| + +2025-09-24 01:06:46,416 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:06:46,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-24 01:06:46,417 INFO DISTRO:|0|0|0| + +2025-09-24 01:07:46,418 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:07:46,419 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-24 01:07:46,419 INFO DISTRO:|0|0|0| + +2025-09-24 01:08:46,420 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:08:46,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-24 01:08:46,421 INFO DISTRO:|0|0|0| + +2025-09-24 01:09:46,421 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:09:46,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-24 01:09:46,422 INFO DISTRO:|0|0|0| + +2025-09-24 01:10:46,423 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 01:10:46,424 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 01:10:46,424 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:10:46,425 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-24 01:10:46,425 INFO DISTRO:|0|0|0| + +2025-09-24 01:11:46,425 INFO PERFORMANCE:|3|2|0|-1|-1|0|0 + +2025-09-24 01:11:46,428 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-24 01:11:46,449 INFO DISTRO:|0|0|0| + +2025-09-24 01:12:46,449 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:12:46,451 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-24 01:12:46,451 INFO DISTRO:|0|0|0| + +2025-09-24 01:13:46,451 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:13:46,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-24 01:13:46,452 INFO DISTRO:|0|0|0| + +2025-09-24 01:14:46,453 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:14:46,454 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-24 01:14:46,454 INFO DISTRO:|0|0|0| + +2025-09-24 01:15:46,455 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:15:46,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-24 01:15:46,457 INFO DISTRO:|0|0|0| + +2025-09-24 01:16:46,459 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:16:46,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-24 01:16:46,459 INFO DISTRO:|0|0|0| + +2025-09-24 01:17:46,460 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:17:46,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-24 01:17:46,460 INFO DISTRO:|0|0|0| + +2025-09-24 01:18:46,460 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:18:46,461 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-24 01:18:46,461 INFO DISTRO:|0|0|0| + +2025-09-24 01:19:46,462 INFO PERFORMANCE:|3|2|0|-1|-1|0|0 + +2025-09-24 01:19:46,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-24 01:19:46,462 INFO DISTRO:|0|0|0| + +2025-09-24 01:20:46,462 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 01:20:46,463 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 01:20:46,463 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:20:46,463 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-24 01:20:46,463 INFO DISTRO:|0|0|0| + +2025-09-24 01:21:46,465 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:21:46,466 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-24 01:21:46,466 INFO DISTRO:|0|0|0| + +2025-09-24 01:22:46,468 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:22:46,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-24 01:22:46,468 INFO DISTRO:|0|0|0| + +2025-09-24 01:23:46,468 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:23:46,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-24 01:23:46,469 INFO DISTRO:|0|0|0| + +2025-09-24 01:24:46,472 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:24:46,473 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-24 01:24:46,473 INFO DISTRO:|0|0|0| + +2025-09-24 01:25:46,474 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:25:46,474 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-24 01:25:46,474 INFO DISTRO:|0|0|0| + +2025-09-24 01:26:46,475 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:26:46,476 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-24 01:26:46,476 INFO DISTRO:|0|0|0| + +2025-09-24 01:27:46,477 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:27:46,478 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-24 01:27:46,478 INFO DISTRO:|0|0|0| + +2025-09-24 01:28:46,479 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:28:46,480 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-24 01:28:46,480 INFO DISTRO:|0|0|0| + +2025-09-24 01:29:46,482 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:29:46,483 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-24 01:29:46,483 INFO DISTRO:|0|0|0| + +2025-09-24 01:30:46,483 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 01:30:46,484 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 01:30:46,484 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:30:46,484 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-24 01:30:46,484 INFO DISTRO:|0|0|0| + +2025-09-24 01:31:46,486 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:31:46,487 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-24 01:31:46,487 INFO DISTRO:|0|0|0| + +2025-09-24 01:32:46,489 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:32:46,490 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-24 01:32:46,490 INFO DISTRO:|0|0|0| + +2025-09-24 01:33:46,490 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:33:46,491 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-24 01:33:46,491 INFO DISTRO:|0|0|0| + +2025-09-24 01:34:46,492 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:34:46,493 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-24 01:34:46,493 INFO DISTRO:|0|0|0| + +2025-09-24 01:35:46,493 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:35:46,494 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-24 01:35:46,494 INFO DISTRO:|0|0|0| + +2025-09-24 01:36:46,494 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:36:46,495 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-24 01:36:46,496 INFO DISTRO:|0|0|0| + +2025-09-24 01:37:46,496 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:37:46,497 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-24 01:37:46,497 INFO DISTRO:|0|0|0| + +2025-09-24 01:38:46,499 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:38:46,500 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-24 01:38:46,500 INFO DISTRO:|0|0|0| + +2025-09-24 01:39:46,500 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:39:46,500 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-24 01:39:46,500 INFO DISTRO:|0|0|0| + +2025-09-24 01:40:46,501 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 01:40:46,501 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 01:40:46,501 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:40:46,501 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-24 01:40:46,501 INFO DISTRO:|0|0|0| + +2025-09-24 01:41:46,503 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:41:46,503 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-24 01:41:46,503 INFO DISTRO:|0|0|0| + +2025-09-24 01:42:46,503 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:42:46,504 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-24 01:42:46,504 INFO DISTRO:|0|0|0| + +2025-09-24 01:43:46,504 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:43:46,504 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-24 01:43:46,504 INFO DISTRO:|0|0|0| + +2025-09-24 01:44:46,504 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:44:46,505 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-24 01:44:46,505 INFO DISTRO:|0|0|0| + +2025-09-24 01:45:46,505 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:45:46,505 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-24 01:45:46,505 INFO DISTRO:|0|0|0| + +2025-09-24 01:46:46,506 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:46:46,506 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-24 01:46:46,506 INFO DISTRO:|0|0|0| + +2025-09-24 01:47:46,506 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:47:46,507 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-24 01:47:46,507 INFO DISTRO:|0|0|0| + +2025-09-24 01:48:46,508 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:48:46,508 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-24 01:48:46,508 INFO DISTRO:|0|0|0| + +2025-09-24 01:49:46,509 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:49:46,510 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-24 01:49:46,510 INFO DISTRO:|0|0|0| + +2025-09-24 01:50:46,510 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 01:50:46,510 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 01:50:46,510 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:50:46,510 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-24 01:50:46,510 INFO DISTRO:|0|0|0| + +2025-09-24 01:51:46,512 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:51:46,512 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-24 01:51:46,512 INFO DISTRO:|0|0|0| + +2025-09-24 01:52:46,513 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:52:46,514 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-24 01:52:46,514 INFO DISTRO:|0|0|0| + +2025-09-24 01:53:46,516 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:53:46,517 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-24 01:53:46,517 INFO DISTRO:|0|0|0| + +2025-09-24 01:54:46,519 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:54:46,520 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-24 01:54:46,520 INFO DISTRO:|0|0|0| + +2025-09-24 01:55:46,520 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:55:46,521 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-24 01:55:46,521 INFO DISTRO:|0|0|0| + +2025-09-24 01:56:46,522 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:56:46,522 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-24 01:56:46,522 INFO DISTRO:|0|0|0| + +2025-09-24 01:57:46,524 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:57:46,524 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-24 01:57:46,524 INFO DISTRO:|0|0|0| + +2025-09-24 01:58:46,526 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:58:46,527 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-24 01:58:46,527 INFO DISTRO:|0|0|0| + +2025-09-24 01:59:46,528 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 01:59:46,528 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-24 01:59:46,528 INFO DISTRO:|0|0|0| + +2025-09-24 02:00:46,528 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 02:00:46,529 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 02:00:46,529 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:00:46,529 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-24 02:00:46,529 INFO DISTRO:|0|0|0| + +2025-09-24 02:01:46,529 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:01:46,530 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-24 02:01:46,530 INFO DISTRO:|0|0|0| + +2025-09-24 02:02:46,530 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:02:46,531 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-24 02:02:46,531 INFO DISTRO:|0|0|0| + +2025-09-24 02:03:46,532 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:03:46,533 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-24 02:03:46,533 INFO DISTRO:|0|0|0| + +2025-09-24 02:04:46,533 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:04:46,534 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-24 02:04:46,534 INFO DISTRO:|0|0|0| + +2025-09-24 02:05:46,535 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:05:46,535 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-24 02:05:46,535 INFO DISTRO:|0|0|0| + +2025-09-24 02:06:46,535 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:06:46,535 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-24 02:06:46,535 INFO DISTRO:|0|0|0| + +2025-09-24 02:07:46,536 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:07:46,536 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-24 02:07:46,536 INFO DISTRO:|0|0|0| + +2025-09-24 02:08:46,537 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:08:46,537 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-24 02:08:46,537 INFO DISTRO:|0|0|0| + +2025-09-24 02:09:46,539 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:09:46,540 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-24 02:09:46,541 INFO DISTRO:|0|0|0| + +2025-09-24 02:10:46,541 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 02:10:46,541 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 02:10:46,541 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:10:46,541 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-24 02:10:46,541 INFO DISTRO:|0|0|0| + +2025-09-24 02:11:46,542 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:11:46,542 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-24 02:11:46,542 INFO DISTRO:|0|0|0| + +2025-09-24 02:12:46,542 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:12:46,543 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-24 02:12:46,543 INFO DISTRO:|0|0|0| + +2025-09-24 02:13:46,543 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:13:46,543 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-24 02:13:46,543 INFO DISTRO:|0|0|0| + +2025-09-24 02:14:46,544 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:14:46,545 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-24 02:14:46,545 INFO DISTRO:|0|0|0| + +2025-09-24 02:15:46,547 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:15:46,547 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-24 02:15:46,547 INFO DISTRO:|0|0|0| + +2025-09-24 02:16:46,548 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:16:46,548 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-24 02:16:46,548 INFO DISTRO:|0|0|0| + +2025-09-24 02:17:46,549 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:17:46,550 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-24 02:17:46,550 INFO DISTRO:|0|0|0| + +2025-09-24 02:18:46,552 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:18:46,552 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-24 02:18:46,552 INFO DISTRO:|0|0|0| + +2025-09-24 02:19:46,554 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:19:46,555 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-24 02:19:46,555 INFO DISTRO:|0|0|0| + +2025-09-24 02:20:46,555 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 02:20:46,556 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 02:20:46,556 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:20:46,556 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-24 02:20:46,556 INFO DISTRO:|0|0|0| + +2025-09-24 02:21:46,557 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:21:46,557 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-24 02:21:46,557 INFO DISTRO:|0|0|0| + +2025-09-24 02:22:46,558 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:22:46,559 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-24 02:22:46,559 INFO DISTRO:|0|0|0| + +2025-09-24 02:23:46,559 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:23:46,559 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-24 02:23:46,560 INFO DISTRO:|0|0|0| + +2025-09-24 02:24:46,560 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:24:46,560 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-24 02:24:46,561 INFO DISTRO:|0|0|0| + +2025-09-24 02:25:46,561 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:25:46,561 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-24 02:25:46,561 INFO DISTRO:|0|0|0| + +2025-09-24 02:26:46,563 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:26:46,564 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-24 02:26:46,564 INFO DISTRO:|0|0|0| + +2025-09-24 02:27:46,564 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:27:46,565 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-24 02:27:46,565 INFO DISTRO:|0|0|0| + +2025-09-24 02:28:46,566 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:28:46,567 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-24 02:28:46,567 INFO DISTRO:|0|0|0| + +2025-09-24 02:29:46,567 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:29:46,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-24 02:29:46,568 INFO DISTRO:|0|0|0| + +2025-09-24 02:30:46,569 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 02:30:46,569 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 02:30:46,570 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:30:46,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-24 02:30:46,570 INFO DISTRO:|0|0|0| + +2025-09-24 02:31:46,570 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:31:46,571 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-24 02:31:46,571 INFO DISTRO:|0|0|0| + +2025-09-24 02:32:46,572 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:32:46,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-24 02:32:46,572 INFO DISTRO:|0|0|0| + +2025-09-24 02:33:46,572 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:33:46,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-24 02:33:46,573 INFO DISTRO:|0|0|0| + +2025-09-24 02:34:46,574 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:34:46,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-24 02:34:46,574 INFO DISTRO:|0|0|0| + +2025-09-24 02:35:46,576 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:35:46,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-24 02:35:46,576 INFO DISTRO:|0|0|0| + +2025-09-24 02:36:46,578 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:36:46,579 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-24 02:36:46,580 INFO DISTRO:|0|0|0| + +2025-09-24 02:37:46,580 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:37:46,581 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-24 02:37:46,581 INFO DISTRO:|0|0|0| + +2025-09-24 02:38:46,581 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:38:46,582 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-24 02:38:46,583 INFO DISTRO:|0|0|0| + +2025-09-24 02:39:46,583 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:39:46,584 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-24 02:39:46,584 INFO DISTRO:|0|0|0| + +2025-09-24 02:40:46,585 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 02:40:46,586 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 02:40:46,586 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:40:46,586 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-24 02:40:46,586 INFO DISTRO:|0|0|0| + +2025-09-24 02:41:46,586 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:41:46,586 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-24 02:41:46,586 INFO DISTRO:|0|0|0| + +2025-09-24 02:42:46,588 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:42:46,589 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-24 02:42:46,590 INFO DISTRO:|0|0|0| + +2025-09-24 02:43:46,591 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:43:46,592 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-24 02:43:46,592 INFO DISTRO:|0|0|0| + +2025-09-24 02:44:46,594 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:44:46,595 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-24 02:44:46,595 INFO DISTRO:|0|0|0| + +2025-09-24 02:45:46,596 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:45:46,596 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-24 02:45:46,596 INFO DISTRO:|0|0|0| + +2025-09-24 02:46:46,598 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:46:46,599 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-24 02:46:46,599 INFO DISTRO:|0|0|0| + +2025-09-24 02:47:46,599 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:47:46,599 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-24 02:47:46,599 INFO DISTRO:|0|0|0| + +2025-09-24 02:48:46,601 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:48:46,602 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-24 02:48:46,602 INFO DISTRO:|0|0|0| + +2025-09-24 02:49:46,604 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:49:46,605 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-24 02:49:46,605 INFO DISTRO:|0|0|0| + +2025-09-24 02:50:46,607 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 02:50:46,607 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 02:50:46,607 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:50:46,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-24 02:50:46,607 INFO DISTRO:|0|0|0| + +2025-09-24 02:51:46,609 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:51:46,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-24 02:51:46,610 INFO DISTRO:|0|0|0| + +2025-09-24 02:52:46,612 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:52:46,613 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-24 02:52:46,613 INFO DISTRO:|0|0|0| + +2025-09-24 02:53:46,614 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:53:46,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-24 02:53:46,615 INFO DISTRO:|0|0|0| + +2025-09-24 02:54:46,615 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:54:46,616 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-24 02:54:46,616 INFO DISTRO:|0|0|0| + +2025-09-24 02:55:46,617 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:55:46,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-24 02:55:46,618 INFO DISTRO:|0|0|0| + +2025-09-24 02:56:46,619 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:56:46,621 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-24 02:56:46,621 INFO DISTRO:|0|0|0| + +2025-09-24 02:57:46,624 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:57:46,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-24 02:57:46,624 INFO DISTRO:|0|0|0| + +2025-09-24 02:58:46,624 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:58:46,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-24 02:58:46,624 INFO DISTRO:|0|0|0| + +2025-09-24 02:59:46,627 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 02:59:46,627 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-24 02:59:46,627 INFO DISTRO:|0|0|0| + +2025-09-24 03:00:46,628 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 03:00:46,628 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 03:00:46,628 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:00:46,628 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-24 03:00:46,628 INFO DISTRO:|0|0|0| + +2025-09-24 03:01:46,630 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:01:46,630 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-24 03:01:46,630 INFO DISTRO:|0|0|0| + +2025-09-24 03:02:46,632 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:02:46,632 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-24 03:02:46,632 INFO DISTRO:|0|0|0| + +2025-09-24 03:03:46,634 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:03:46,635 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-24 03:03:46,635 INFO DISTRO:|0|0|0| + +2025-09-24 03:04:46,637 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:04:46,637 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-24 03:04:46,638 INFO DISTRO:|0|0|0| + +2025-09-24 03:05:46,639 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:05:46,639 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-24 03:05:46,639 INFO DISTRO:|0|0|0| + +2025-09-24 03:06:46,641 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:06:46,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-24 03:06:46,642 INFO DISTRO:|0|0|0| + +2025-09-24 03:07:46,642 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:07:46,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-24 03:07:46,644 INFO DISTRO:|0|0|0| + +2025-09-24 03:08:46,644 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:08:46,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-24 03:08:46,645 INFO DISTRO:|0|0|0| + +2025-09-24 03:09:46,646 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:09:46,646 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-24 03:09:46,647 INFO DISTRO:|0|0|0| + +2025-09-24 03:10:46,647 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 03:10:46,647 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 03:10:46,647 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:10:46,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-24 03:10:46,647 INFO DISTRO:|0|0|0| + +2025-09-24 03:11:46,648 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:11:46,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-24 03:11:46,648 INFO DISTRO:|0|0|0| + +2025-09-24 03:12:46,648 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:12:46,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-24 03:12:46,648 INFO DISTRO:|0|0|0| + +2025-09-24 03:13:46,649 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:13:46,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-24 03:13:46,649 INFO DISTRO:|0|0|0| + +2025-09-24 03:14:46,651 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:14:46,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-24 03:14:46,651 INFO DISTRO:|0|0|0| + +2025-09-24 03:15:46,652 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:15:46,652 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-24 03:15:46,652 INFO DISTRO:|0|0|0| + +2025-09-24 03:16:46,653 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:16:46,653 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-24 03:16:46,653 INFO DISTRO:|0|0|0| + +2025-09-24 03:17:46,654 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:17:46,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-24 03:17:46,655 INFO DISTRO:|0|0|0| + +2025-09-24 03:18:46,657 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:18:46,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-24 03:18:46,657 INFO DISTRO:|0|0|0| + +2025-09-24 03:19:46,658 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:19:46,658 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-24 03:19:46,658 INFO DISTRO:|0|0|0| + +2025-09-24 03:20:46,660 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 03:20:46,660 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 03:20:46,660 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:20:46,661 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-24 03:20:46,661 INFO DISTRO:|0|0|0| + +2025-09-24 03:21:46,662 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:21:46,662 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-24 03:21:46,662 INFO DISTRO:|0|0|0| + +2025-09-24 03:22:46,665 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:22:46,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-24 03:22:46,665 INFO DISTRO:|0|0|0| + +2025-09-24 03:23:46,665 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:23:46,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-24 03:23:46,665 INFO DISTRO:|0|0|0| + +2025-09-24 03:24:46,666 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:24:46,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-24 03:24:46,667 INFO DISTRO:|0|0|0| + +2025-09-24 03:25:46,669 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:25:46,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-24 03:25:46,669 INFO DISTRO:|0|0|0| + +2025-09-24 03:26:46,670 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:26:46,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-24 03:26:46,671 INFO DISTRO:|0|0|0| + +2025-09-24 03:27:46,673 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:27:46,673 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-24 03:27:46,673 INFO DISTRO:|0|0|0| + +2025-09-24 03:28:46,674 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:28:46,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-24 03:28:46,675 INFO DISTRO:|0|0|0| + +2025-09-24 03:29:46,675 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:29:46,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-24 03:29:46,676 INFO DISTRO:|0|0|0| + +2025-09-24 03:30:46,677 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 03:30:46,678 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 03:30:46,678 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:30:46,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-24 03:30:46,678 INFO DISTRO:|0|0|0| + +2025-09-24 03:31:46,680 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:31:46,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-24 03:31:46,681 INFO DISTRO:|0|0|0| + +2025-09-24 03:32:46,681 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:32:46,682 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-24 03:32:46,682 INFO DISTRO:|0|0|0| + +2025-09-24 03:33:46,684 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:33:46,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-24 03:33:46,684 INFO DISTRO:|0|0|0| + +2025-09-24 03:34:46,685 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:34:46,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-24 03:34:46,686 INFO DISTRO:|0|0|0| + +2025-09-24 03:35:46,688 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:35:46,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-24 03:35:46,689 INFO DISTRO:|0|0|0| + +2025-09-24 03:36:46,691 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:36:46,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-24 03:36:46,692 INFO DISTRO:|0|0|0| + +2025-09-24 03:37:46,692 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:37:46,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-24 03:37:46,693 INFO DISTRO:|0|0|0| + +2025-09-24 03:38:46,694 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:38:46,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-24 03:38:46,695 INFO DISTRO:|0|0|0| + +2025-09-24 03:39:46,696 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:39:46,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-24 03:39:46,697 INFO DISTRO:|0|0|0| + +2025-09-24 03:40:46,697 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 03:40:46,698 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 03:40:46,698 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:40:46,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-24 03:40:46,698 INFO DISTRO:|0|0|0| + +2025-09-24 03:41:46,699 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:41:46,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-24 03:41:46,700 INFO DISTRO:|0|0|0| + +2025-09-24 03:42:46,701 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:42:46,702 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-24 03:42:46,702 INFO DISTRO:|0|0|0| + +2025-09-24 03:43:46,705 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:43:46,705 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-24 03:43:46,705 INFO DISTRO:|0|0|0| + +2025-09-24 03:44:46,705 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:44:46,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-24 03:44:46,706 INFO DISTRO:|0|0|0| + +2025-09-24 03:45:46,708 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:45:46,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-24 03:45:46,708 INFO DISTRO:|0|0|0| + +2025-09-24 03:46:46,709 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:46:46,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-24 03:46:46,710 INFO DISTRO:|0|0|0| + +2025-09-24 03:47:46,711 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:47:46,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-24 03:47:46,713 INFO DISTRO:|0|0|0| + +2025-09-24 03:48:46,714 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:48:46,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-24 03:48:46,716 INFO DISTRO:|0|0|0| + +2025-09-24 03:49:46,716 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:49:46,717 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-24 03:49:46,717 INFO DISTRO:|0|0|0| + +2025-09-24 03:50:46,718 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 03:50:46,718 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 03:50:46,718 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:50:46,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-24 03:50:46,718 INFO DISTRO:|0|0|0| + +2025-09-24 03:51:46,719 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:51:46,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-24 03:51:46,719 INFO DISTRO:|0|0|0| + +2025-09-24 03:52:46,721 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:52:46,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-24 03:52:46,722 INFO DISTRO:|0|0|0| + +2025-09-24 03:53:46,722 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:53:46,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-24 03:53:46,723 INFO DISTRO:|0|0|0| + +2025-09-24 03:54:46,724 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:54:46,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-24 03:54:46,725 INFO DISTRO:|0|0|0| + +2025-09-24 03:55:46,725 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:55:46,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-24 03:55:46,726 INFO DISTRO:|0|0|0| + +2025-09-24 03:56:46,728 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:56:46,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-24 03:56:46,728 INFO DISTRO:|0|0|0| + +2025-09-24 03:57:46,729 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:57:46,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-24 03:57:46,730 INFO DISTRO:|0|0|0| + +2025-09-24 03:58:46,730 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:58:46,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-24 03:58:46,731 INFO DISTRO:|0|0|0| + +2025-09-24 03:59:46,732 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 03:59:46,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-24 03:59:46,733 INFO DISTRO:|0|0|0| + +2025-09-24 04:00:46,735 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 04:00:46,735 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 04:00:46,735 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:00:46,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-24 04:00:46,736 INFO DISTRO:|0|0|0| + +2025-09-24 04:01:46,737 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:01:46,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-24 04:01:46,737 INFO DISTRO:|0|0|0| + +2025-09-24 04:02:46,738 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:02:46,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-24 04:02:46,739 INFO DISTRO:|0|0|0| + +2025-09-24 04:03:46,740 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:03:46,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-24 04:03:46,740 INFO DISTRO:|0|0|0| + +2025-09-24 04:04:46,741 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:04:46,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-24 04:04:46,742 INFO DISTRO:|0|0|0| + +2025-09-24 04:05:46,742 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:05:46,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-24 04:05:46,743 INFO DISTRO:|0|0|0| + +2025-09-24 04:06:46,744 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:06:46,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-24 04:06:46,744 INFO DISTRO:|0|0|0| + +2025-09-24 04:07:46,746 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:07:46,747 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-24 04:07:46,747 INFO DISTRO:|0|0|0| + +2025-09-24 04:08:46,749 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:08:46,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-24 04:08:46,750 INFO DISTRO:|0|0|0| + +2025-09-24 04:09:46,751 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:09:46,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-24 04:09:46,751 INFO DISTRO:|0|0|0| + +2025-09-24 04:10:46,752 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 04:10:46,752 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 04:10:46,752 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:10:46,752 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-24 04:10:46,753 INFO DISTRO:|0|0|0| + +2025-09-24 04:11:46,754 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:11:46,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-24 04:11:46,755 INFO DISTRO:|0|0|0| + +2025-09-24 04:12:46,755 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:12:46,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-24 04:12:46,756 INFO DISTRO:|0|0|0| + +2025-09-24 04:13:46,757 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:13:46,758 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-24 04:13:46,758 INFO DISTRO:|0|0|0| + +2025-09-24 04:14:46,759 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:14:46,760 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-24 04:14:46,760 INFO DISTRO:|0|0|0| + +2025-09-24 04:15:46,760 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:15:46,761 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-24 04:15:46,761 INFO DISTRO:|0|0|0| + +2025-09-24 04:16:46,763 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:16:46,764 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-24 04:16:46,764 INFO DISTRO:|0|0|0| + +2025-09-24 04:17:46,764 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:17:46,764 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-24 04:17:46,765 INFO DISTRO:|0|0|0| + +2025-09-24 04:18:46,765 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:18:46,766 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-24 04:18:46,766 INFO DISTRO:|0|0|0| + +2025-09-24 04:19:46,768 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:19:46,769 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-24 04:19:46,769 INFO DISTRO:|0|0|0| + +2025-09-24 04:20:46,770 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 04:20:46,770 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 04:20:46,771 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:20:46,771 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-24 04:20:46,771 INFO DISTRO:|0|0|0| + +2025-09-24 04:21:46,773 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:21:46,774 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-24 04:21:46,774 INFO DISTRO:|0|0|0| + +2025-09-24 04:22:46,774 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:22:46,774 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-24 04:22:46,775 INFO DISTRO:|0|0|0| + +2025-09-24 04:23:46,776 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:23:46,777 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-24 04:23:46,777 INFO DISTRO:|0|0|0| + +2025-09-24 04:24:46,779 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:24:46,781 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-24 04:24:46,781 INFO DISTRO:|0|0|0| + +2025-09-24 04:25:46,783 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:25:46,784 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-24 04:25:46,784 INFO DISTRO:|0|0|0| + +2025-09-24 04:26:46,785 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:26:46,785 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-24 04:26:46,786 INFO DISTRO:|0|0|0| + +2025-09-24 04:27:46,786 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:27:46,786 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-24 04:27:46,786 INFO DISTRO:|0|0|0| + +2025-09-24 04:28:46,787 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:28:46,789 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-24 04:28:46,789 INFO DISTRO:|0|0|0| + +2025-09-24 04:29:46,790 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:29:46,791 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-24 04:29:46,791 INFO DISTRO:|0|0|0| + +2025-09-24 04:30:46,793 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 04:30:46,793 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 04:30:46,793 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:30:46,794 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-24 04:30:46,794 INFO DISTRO:|0|0|0| + +2025-09-24 04:31:46,796 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:31:46,797 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-24 04:31:46,797 INFO DISTRO:|0|0|0| + +2025-09-24 04:32:46,798 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:32:46,799 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-24 04:32:46,799 INFO DISTRO:|0|0|0| + +2025-09-24 04:33:46,799 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:33:46,800 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-24 04:33:46,800 INFO DISTRO:|0|0|0| + +2025-09-24 04:34:46,800 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:34:46,801 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-24 04:34:46,801 INFO DISTRO:|0|0|0| + +2025-09-24 04:35:46,802 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:35:46,803 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-24 04:35:46,803 INFO DISTRO:|0|0|0| + +2025-09-24 04:36:46,803 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:36:46,803 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-24 04:36:46,803 INFO DISTRO:|0|0|0| + +2025-09-24 04:37:46,804 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:37:46,804 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-24 04:37:46,804 INFO DISTRO:|0|0|0| + +2025-09-24 04:38:46,805 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:38:46,805 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-24 04:38:46,805 INFO DISTRO:|0|0|0| + +2025-09-24 04:39:46,805 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:39:46,805 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-24 04:39:46,805 INFO DISTRO:|0|0|0| + +2025-09-24 04:40:46,806 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 04:40:46,806 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 04:40:46,806 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:40:46,806 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-24 04:40:46,806 INFO DISTRO:|0|0|0| + +2025-09-24 04:41:46,807 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:41:46,807 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-24 04:41:46,807 INFO DISTRO:|0|0|0| + +2025-09-24 04:42:46,809 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:42:46,809 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-24 04:42:46,809 INFO DISTRO:|0|0|0| + +2025-09-24 04:43:46,811 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:43:46,811 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-24 04:43:46,811 INFO DISTRO:|0|0|0| + +2025-09-24 04:44:46,813 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:44:46,813 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-24 04:44:46,813 INFO DISTRO:|0|0|0| + +2025-09-24 04:45:46,816 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:45:46,816 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-24 04:45:46,817 INFO DISTRO:|0|0|0| + +2025-09-24 04:46:46,819 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:46:46,819 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-24 04:46:46,819 INFO DISTRO:|0|0|0| + +2025-09-24 04:47:46,819 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:47:46,820 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-24 04:47:46,820 INFO DISTRO:|0|0|0| + +2025-09-24 04:48:46,820 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:48:46,820 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-24 04:48:46,820 INFO DISTRO:|0|0|0| + +2025-09-24 04:49:46,822 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:49:46,823 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-24 04:49:46,823 INFO DISTRO:|0|0|0| + +2025-09-24 04:50:46,823 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 04:50:46,824 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 04:50:46,824 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:50:46,824 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-24 04:50:46,824 INFO DISTRO:|0|0|0| + +2025-09-24 04:51:46,825 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:51:46,825 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-24 04:51:46,825 INFO DISTRO:|0|0|0| + +2025-09-24 04:52:46,826 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:52:46,826 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-24 04:52:46,826 INFO DISTRO:|0|0|0| + +2025-09-24 04:53:46,827 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:53:46,827 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-24 04:53:46,827 INFO DISTRO:|0|0|0| + +2025-09-24 04:54:46,828 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:54:46,828 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-24 04:54:46,828 INFO DISTRO:|0|0|0| + +2025-09-24 04:55:46,830 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:55:46,830 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-24 04:55:46,831 INFO DISTRO:|0|0|0| + +2025-09-24 04:56:46,831 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:56:46,831 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-24 04:56:46,831 INFO DISTRO:|0|0|0| + +2025-09-24 04:57:46,832 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:57:46,832 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-24 04:57:46,832 INFO DISTRO:|0|0|0| + +2025-09-24 04:58:46,833 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:58:46,834 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-24 04:58:46,834 INFO DISTRO:|0|0|0| + +2025-09-24 04:59:46,834 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 04:59:46,834 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-24 04:59:46,834 INFO DISTRO:|0|0|0| + +2025-09-24 05:00:46,835 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 05:00:46,835 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 05:00:46,835 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:00:46,835 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-24 05:00:46,835 INFO DISTRO:|0|0|0| + +2025-09-24 05:01:46,836 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:01:46,836 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-24 05:01:46,836 INFO DISTRO:|0|0|0| + +2025-09-24 05:02:46,836 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:02:46,837 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-24 05:02:46,837 INFO DISTRO:|0|0|0| + +2025-09-24 05:03:46,837 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:03:46,837 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-24 05:03:46,838 INFO DISTRO:|0|0|0| + +2025-09-24 05:04:46,839 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:04:46,839 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-24 05:04:46,839 INFO DISTRO:|0|0|0| + +2025-09-24 05:05:46,841 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:05:46,841 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-24 05:05:46,841 INFO DISTRO:|0|0|0| + +2025-09-24 05:06:46,844 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:06:46,844 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-24 05:06:46,844 INFO DISTRO:|0|0|0| + +2025-09-24 05:07:46,845 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:07:46,845 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-24 05:07:46,845 INFO DISTRO:|0|0|0| + +2025-09-24 05:08:46,847 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:08:46,847 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-24 05:08:46,847 INFO DISTRO:|0|0|0| + +2025-09-24 05:09:46,847 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:09:46,848 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-24 05:09:46,848 INFO DISTRO:|0|0|0| + +2025-09-24 05:10:46,848 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 05:10:46,849 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 05:10:46,849 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:10:46,849 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-24 05:10:46,849 INFO DISTRO:|0|0|0| + +2025-09-24 05:11:46,851 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:11:46,851 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-24 05:11:46,851 INFO DISTRO:|0|0|0| + +2025-09-24 05:12:46,852 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:12:46,853 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-24 05:12:46,853 INFO DISTRO:|0|0|0| + +2025-09-24 05:13:46,853 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:13:46,853 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-24 05:13:46,853 INFO DISTRO:|0|0|0| + +2025-09-24 05:14:46,856 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:14:46,856 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-24 05:14:46,856 INFO DISTRO:|0|0|0| + +2025-09-24 05:15:46,856 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:15:46,856 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-24 05:15:46,856 INFO DISTRO:|0|0|0| + +2025-09-24 05:16:46,857 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:16:46,857 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-24 05:16:46,857 INFO DISTRO:|0|0|0| + +2025-09-24 05:17:46,859 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:17:46,859 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-24 05:17:46,859 INFO DISTRO:|0|0|0| + +2025-09-24 05:18:46,860 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:18:46,860 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-24 05:18:46,860 INFO DISTRO:|0|0|0| + +2025-09-24 05:19:46,862 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:19:46,863 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-24 05:19:46,863 INFO DISTRO:|0|0|0| + +2025-09-24 05:20:46,864 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 05:20:46,864 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 05:20:46,864 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:20:46,865 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-24 05:20:46,865 INFO DISTRO:|0|0|0| + +2025-09-24 05:21:46,866 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:21:46,866 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-24 05:21:46,866 INFO DISTRO:|0|0|0| + +2025-09-24 05:22:46,868 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:22:46,868 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-24 05:22:46,868 INFO DISTRO:|0|0|0| + +2025-09-24 05:23:46,870 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:23:46,871 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-24 05:23:46,871 INFO DISTRO:|0|0|0| + +2025-09-24 05:24:46,871 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:24:46,872 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-24 05:24:46,872 INFO DISTRO:|0|0|0| + +2025-09-24 05:25:46,873 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:25:46,873 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-24 05:25:46,873 INFO DISTRO:|0|0|0| + +2025-09-24 05:26:46,874 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:26:46,875 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-24 05:26:46,875 INFO DISTRO:|0|0|0| + +2025-09-24 05:27:46,876 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:27:46,877 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-24 05:27:46,877 INFO DISTRO:|0|0|0| + +2025-09-24 05:28:46,880 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:28:46,880 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-24 05:28:46,880 INFO DISTRO:|0|0|0| + +2025-09-24 05:29:46,880 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:29:46,881 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-24 05:29:46,881 INFO DISTRO:|0|0|0| + +2025-09-24 05:30:46,882 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 05:30:46,884 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 05:30:46,884 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:30:46,884 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-24 05:30:46,884 INFO DISTRO:|0|0|0| + +2025-09-24 05:31:46,885 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:31:46,886 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-24 05:31:46,886 INFO DISTRO:|0|0|0| + +2025-09-24 05:32:46,887 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:32:46,887 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-24 05:32:46,887 INFO DISTRO:|0|0|0| + +2025-09-24 05:33:46,889 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:33:46,890 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-24 05:33:46,891 INFO DISTRO:|0|0|0| + +2025-09-24 05:34:46,891 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:34:46,892 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-24 05:34:46,892 INFO DISTRO:|0|0|0| + +2025-09-24 05:35:46,894 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:35:46,894 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-24 05:35:46,894 INFO DISTRO:|0|0|0| + +2025-09-24 05:36:46,895 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:36:46,895 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-24 05:36:46,895 INFO DISTRO:|0|0|0| + +2025-09-24 05:37:46,896 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:37:46,896 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-24 05:37:46,896 INFO DISTRO:|0|0|0| + +2025-09-24 05:38:46,897 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:38:46,897 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-24 05:38:46,897 INFO DISTRO:|0|0|0| + +2025-09-24 05:39:46,898 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:39:46,898 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-24 05:39:46,898 INFO DISTRO:|0|0|0| + +2025-09-24 05:40:46,899 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 05:40:46,900 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 05:40:46,900 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:40:46,900 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-24 05:40:46,900 INFO DISTRO:|0|0|0| + +2025-09-24 05:41:46,901 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:41:46,902 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-24 05:41:46,902 INFO DISTRO:|0|0|0| + +2025-09-24 05:42:46,903 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:42:46,903 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-24 05:42:46,903 INFO DISTRO:|0|0|0| + +2025-09-24 05:43:46,904 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:43:46,904 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-24 05:43:46,904 INFO DISTRO:|0|0|0| + +2025-09-24 05:44:46,904 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:44:46,905 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-24 05:44:46,906 INFO DISTRO:|0|0|0| + +2025-09-24 05:45:46,906 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:45:46,907 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-24 05:45:46,907 INFO DISTRO:|0|0|0| + +2025-09-24 05:46:46,908 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:46:46,909 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-24 05:46:46,909 INFO DISTRO:|0|0|0| + +2025-09-24 05:47:46,909 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:47:46,910 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-24 05:47:46,910 INFO DISTRO:|0|0|0| + +2025-09-24 05:48:46,912 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:48:46,912 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-24 05:48:46,912 INFO DISTRO:|0|0|0| + +2025-09-24 05:49:46,913 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:49:46,914 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-24 05:49:46,914 INFO DISTRO:|0|0|0| + +2025-09-24 05:50:46,916 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 05:50:46,917 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 05:50:46,917 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:50:46,918 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-24 05:50:46,918 INFO DISTRO:|0|0|0| + +2025-09-24 05:51:46,918 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:51:46,918 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-24 05:51:46,918 INFO DISTRO:|0|0|0| + +2025-09-24 05:52:46,918 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:52:46,919 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-24 05:52:46,919 INFO DISTRO:|0|0|0| + +2025-09-24 05:53:46,920 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:53:46,921 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-24 05:53:46,921 INFO DISTRO:|0|0|0| + +2025-09-24 05:54:46,921 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:54:46,922 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-24 05:54:46,922 INFO DISTRO:|0|0|0| + +2025-09-24 05:55:46,922 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:55:46,922 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-24 05:55:46,922 INFO DISTRO:|0|0|0| + +2025-09-24 05:56:46,922 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:56:46,923 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-24 05:56:46,923 INFO DISTRO:|0|0|0| + +2025-09-24 05:57:46,925 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:57:46,926 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-24 05:57:46,926 INFO DISTRO:|0|0|0| + +2025-09-24 05:58:46,926 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:58:46,927 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-24 05:58:46,927 INFO DISTRO:|0|0|0| + +2025-09-24 05:59:46,927 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 05:59:46,928 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-24 05:59:46,928 INFO DISTRO:|0|0|0| + +2025-09-24 06:00:46,930 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 06:00:46,931 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 06:00:46,931 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:00:46,931 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-24 06:00:46,931 INFO DISTRO:|0|0|0| + +2025-09-24 06:01:46,934 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:01:46,934 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-24 06:01:46,934 INFO DISTRO:|0|0|0| + +2025-09-24 06:02:46,935 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:02:46,936 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-24 06:02:46,936 INFO DISTRO:|0|0|0| + +2025-09-24 06:03:46,936 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:03:46,937 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-24 06:03:46,937 INFO DISTRO:|0|0|0| + +2025-09-24 06:04:46,938 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:04:46,939 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-24 06:04:46,939 INFO DISTRO:|0|0|0| + +2025-09-24 06:05:46,940 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:05:46,941 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-24 06:05:46,941 INFO DISTRO:|0|0|0| + +2025-09-24 06:06:46,942 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:06:46,943 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-24 06:06:46,943 INFO DISTRO:|0|0|0| + +2025-09-24 06:07:46,945 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:07:46,946 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-24 06:07:46,946 INFO DISTRO:|0|0|0| + +2025-09-24 06:08:46,948 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:08:46,948 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-24 06:08:46,948 INFO DISTRO:|0|0|0| + +2025-09-24 06:09:46,949 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:09:46,950 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-24 06:09:46,950 INFO DISTRO:|0|0|0| + +2025-09-24 06:10:46,951 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 06:10:46,952 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 06:10:46,952 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:10:46,952 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-24 06:10:46,952 INFO DISTRO:|0|0|0| + +2025-09-24 06:11:46,953 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:11:46,954 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-24 06:11:46,954 INFO DISTRO:|0|0|0| + +2025-09-24 06:12:46,956 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:12:46,956 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-24 06:12:46,956 INFO DISTRO:|0|0|0| + +2025-09-24 06:13:46,958 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:13:46,958 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-24 06:13:46,958 INFO DISTRO:|0|0|0| + +2025-09-24 06:14:46,959 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:14:46,959 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-24 06:14:46,959 INFO DISTRO:|0|0|0| + +2025-09-24 06:15:46,960 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:15:46,960 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-24 06:15:46,960 INFO DISTRO:|0|0|0| + +2025-09-24 06:16:46,962 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:16:46,962 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-24 06:16:46,962 INFO DISTRO:|0|0|0| + +2025-09-24 06:17:46,963 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:17:46,964 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-24 06:17:46,964 INFO DISTRO:|0|0|0| + +2025-09-24 06:18:46,965 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:18:46,966 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-24 06:18:46,966 INFO DISTRO:|0|0|0| + +2025-09-24 06:19:46,966 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:19:46,967 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-24 06:19:46,967 INFO DISTRO:|0|0|0| + +2025-09-24 06:20:46,969 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 06:20:46,969 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 06:20:46,969 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:20:46,969 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-24 06:20:46,969 INFO DISTRO:|0|0|0| + +2025-09-24 06:21:46,971 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:21:46,980 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-24 06:21:46,981 INFO DISTRO:|0|0|0| + +2025-09-24 06:22:46,981 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:22:46,981 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-24 06:22:46,981 INFO DISTRO:|0|0|0| + +2025-09-24 06:23:46,982 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:23:46,982 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-24 06:23:46,982 INFO DISTRO:|0|0|0| + +2025-09-24 06:24:46,984 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:24:46,985 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-24 06:24:46,986 INFO DISTRO:|0|0|0| + +2025-09-24 06:25:46,986 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:25:46,986 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-24 06:25:46,986 INFO DISTRO:|0|0|0| + +2025-09-24 06:26:46,987 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:26:46,987 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-24 06:26:46,987 INFO DISTRO:|0|0|0| + +2025-09-24 06:27:46,989 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:27:46,989 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-24 06:27:46,989 INFO DISTRO:|0|0|0| + +2025-09-24 06:28:46,992 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:28:46,992 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-24 06:28:46,992 INFO DISTRO:|0|0|0| + +2025-09-24 06:29:46,995 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:29:46,995 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-24 06:29:46,995 INFO DISTRO:|0|0|0| + +2025-09-24 06:30:46,995 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 06:30:46,995 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 06:30:46,995 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:30:46,995 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-24 06:30:46,995 INFO DISTRO:|0|0|0| + +2025-09-24 06:31:46,996 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:31:46,996 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-24 06:31:46,996 INFO DISTRO:|0|0|0| + +2025-09-24 06:32:46,997 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:32:46,998 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-24 06:32:46,998 INFO DISTRO:|0|0|0| + +2025-09-24 06:33:47,000 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:33:47,001 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-24 06:33:47,001 INFO DISTRO:|0|0|0| + +2025-09-24 06:34:47,002 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:34:47,003 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-24 06:34:47,003 INFO DISTRO:|0|0|0| + +2025-09-24 06:35:47,003 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:35:47,004 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-24 06:35:47,005 INFO DISTRO:|0|0|0| + +2025-09-24 06:36:47,005 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:36:47,005 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-24 06:36:47,005 INFO DISTRO:|0|0|0| + +2025-09-24 06:37:47,006 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:37:47,006 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-24 06:37:47,006 INFO DISTRO:|0|0|0| + +2025-09-24 06:38:47,006 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:38:47,006 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-24 06:38:47,006 INFO DISTRO:|0|0|0| + +2025-09-24 06:39:47,007 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:39:47,007 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-24 06:39:47,007 INFO DISTRO:|0|0|0| + +2025-09-24 06:40:47,009 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 06:40:47,010 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 06:40:47,010 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:40:47,010 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-24 06:40:47,010 INFO DISTRO:|0|0|0| + +2025-09-24 06:41:47,011 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:41:47,012 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-24 06:41:47,012 INFO DISTRO:|0|0|0| + +2025-09-24 06:42:47,012 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:42:47,013 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-24 06:42:47,013 INFO DISTRO:|0|0|0| + +2025-09-24 06:43:47,014 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:43:47,015 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-24 06:43:47,015 INFO DISTRO:|0|0|0| + +2025-09-24 06:44:47,015 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:44:47,016 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-24 06:44:47,016 INFO DISTRO:|0|0|0| + +2025-09-24 06:45:47,017 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:45:47,018 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-24 06:45:47,018 INFO DISTRO:|0|0|0| + +2025-09-24 06:46:47,018 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:46:47,018 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-24 06:46:47,018 INFO DISTRO:|0|0|0| + +2025-09-24 06:47:47,019 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:47:47,019 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-24 06:47:47,019 INFO DISTRO:|0|0|0| + +2025-09-24 06:48:47,021 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:48:47,022 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-24 06:48:47,022 INFO DISTRO:|0|0|0| + +2025-09-24 06:49:47,022 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:49:47,022 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-24 06:49:47,022 INFO DISTRO:|0|0|0| + +2025-09-24 06:50:47,023 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 06:50:47,023 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 06:50:47,023 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:50:47,023 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-24 06:50:47,023 INFO DISTRO:|0|0|0| + +2025-09-24 06:51:47,024 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:51:47,024 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-24 06:51:47,024 INFO DISTRO:|0|0|0| + +2025-09-24 06:52:47,025 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:52:47,026 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-24 06:52:47,026 INFO DISTRO:|0|0|0| + +2025-09-24 06:53:47,027 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:53:47,028 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-24 06:53:47,028 INFO DISTRO:|0|0|0| + +2025-09-24 06:54:47,030 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:54:47,030 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-24 06:54:47,030 INFO DISTRO:|0|0|0| + +2025-09-24 06:55:47,032 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:55:47,032 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-24 06:55:47,032 INFO DISTRO:|0|0|0| + +2025-09-24 06:56:47,033 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:56:47,034 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-24 06:56:47,034 INFO DISTRO:|0|0|0| + +2025-09-24 06:57:47,034 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:57:47,034 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-24 06:57:47,034 INFO DISTRO:|0|0|0| + +2025-09-24 06:58:47,036 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:58:47,036 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-24 06:58:47,036 INFO DISTRO:|0|0|0| + +2025-09-24 06:59:47,036 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 06:59:47,037 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-24 06:59:47,037 INFO DISTRO:|0|0|0| + +2025-09-24 07:00:47,039 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 07:00:47,039 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 07:00:47,039 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:00:47,039 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-24 07:00:47,039 INFO DISTRO:|0|0|0| + +2025-09-24 07:01:47,040 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:01:47,041 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-24 07:01:47,041 INFO DISTRO:|0|0|0| + +2025-09-24 07:02:47,042 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:02:47,042 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-24 07:02:47,042 INFO DISTRO:|0|0|0| + +2025-09-24 07:03:47,042 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:03:47,043 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-24 07:03:47,043 INFO DISTRO:|0|0|0| + +2025-09-24 07:04:47,045 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:04:47,046 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-24 07:04:47,046 INFO DISTRO:|0|0|0| + +2025-09-24 07:05:47,047 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:05:47,048 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-24 07:05:47,048 INFO DISTRO:|0|0|0| + +2025-09-24 07:06:47,050 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:06:47,051 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-24 07:06:47,051 INFO DISTRO:|0|0|0| + +2025-09-24 07:07:47,053 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:07:47,054 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-24 07:07:47,054 INFO DISTRO:|0|0|0| + +2025-09-24 07:08:47,056 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:08:47,056 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-24 07:08:47,057 INFO DISTRO:|0|0|0| + +2025-09-24 07:09:47,057 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:09:47,058 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-24 07:09:47,058 INFO DISTRO:|0|0|0| + +2025-09-24 07:10:47,059 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 07:10:47,060 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 07:10:47,060 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:10:47,060 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-24 07:10:47,060 INFO DISTRO:|0|0|0| + +2025-09-24 07:11:47,061 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:11:47,061 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-24 07:11:47,061 INFO DISTRO:|0|0|0| + +2025-09-24 07:12:47,061 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:12:47,062 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-24 07:12:47,062 INFO DISTRO:|0|0|0| + +2025-09-24 07:13:47,062 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:13:47,062 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-24 07:13:47,062 INFO DISTRO:|0|0|0| + +2025-09-24 07:14:47,064 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:14:47,065 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-24 07:14:47,065 INFO DISTRO:|0|0|0| + +2025-09-24 07:15:47,066 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:15:47,066 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-24 07:15:47,067 INFO DISTRO:|0|0|0| + +2025-09-24 07:16:47,068 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:16:47,068 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-24 07:16:47,068 INFO DISTRO:|0|0|0| + +2025-09-24 07:17:47,070 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:17:47,070 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-24 07:17:47,070 INFO DISTRO:|0|0|0| + +2025-09-24 07:18:47,071 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:18:47,071 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-24 07:18:47,071 INFO DISTRO:|0|0|0| + +2025-09-24 07:19:47,071 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:19:47,071 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-24 07:19:47,072 INFO DISTRO:|0|0|0| + +2025-09-24 07:20:47,072 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 07:20:47,072 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 07:20:47,072 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:20:47,072 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-24 07:20:47,073 INFO DISTRO:|0|0|0| + +2025-09-24 07:21:47,075 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:21:47,075 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-24 07:21:47,075 INFO DISTRO:|0|0|0| + +2025-09-24 07:22:47,077 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:22:47,078 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-24 07:22:47,078 INFO DISTRO:|0|0|0| + +2025-09-24 07:23:47,080 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:23:47,081 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-24 07:23:47,081 INFO DISTRO:|0|0|0| + +2025-09-24 07:24:47,082 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:24:47,082 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-24 07:24:47,082 INFO DISTRO:|0|0|0| + +2025-09-24 07:25:47,084 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:25:47,084 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-24 07:25:47,084 INFO DISTRO:|0|0|0| + +2025-09-24 07:26:47,086 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:26:47,086 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-24 07:26:47,087 INFO DISTRO:|0|0|0| + +2025-09-24 07:27:47,088 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:27:47,089 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-24 07:27:47,089 INFO DISTRO:|0|0|0| + +2025-09-24 07:28:47,091 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:28:47,092 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-24 07:28:47,092 INFO DISTRO:|0|0|0| + +2025-09-24 07:29:47,094 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:29:47,095 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-24 07:29:47,095 INFO DISTRO:|0|0|0| + +2025-09-24 07:30:47,095 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 07:30:47,096 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 07:30:47,096 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:30:47,097 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-24 07:30:47,097 INFO DISTRO:|0|0|0| + +2025-09-24 07:31:47,099 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:31:47,100 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-24 07:31:47,100 INFO DISTRO:|0|0|0| + +2025-09-24 07:32:47,100 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:32:47,101 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-24 07:32:47,102 INFO DISTRO:|0|0|0| + +2025-09-24 07:33:47,102 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:33:47,103 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-24 07:33:47,103 INFO DISTRO:|0|0|0| + +2025-09-24 07:34:47,103 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:34:47,104 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-24 07:34:47,105 INFO DISTRO:|0|0|0| + +2025-09-24 07:35:47,105 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:35:47,105 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-24 07:35:47,105 INFO DISTRO:|0|0|0| + +2025-09-24 07:36:47,108 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:36:47,108 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-24 07:36:47,108 INFO DISTRO:|0|0|0| + +2025-09-24 07:37:47,110 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:37:47,111 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-24 07:37:47,111 INFO DISTRO:|0|0|0| + +2025-09-24 07:38:47,112 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:38:47,114 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-24 07:38:47,114 INFO DISTRO:|0|0|0| + +2025-09-24 07:39:47,116 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:39:47,116 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-24 07:39:47,116 INFO DISTRO:|0|0|0| + +2025-09-24 07:40:47,116 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 07:40:47,116 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 07:40:47,116 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:40:47,116 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-24 07:40:47,117 INFO DISTRO:|0|0|0| + +2025-09-24 07:41:47,117 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:41:47,118 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-24 07:41:47,118 INFO DISTRO:|0|0|0| + +2025-09-24 07:42:47,119 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:42:47,120 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-24 07:42:47,120 INFO DISTRO:|0|0|0| + +2025-09-24 07:43:47,120 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:43:47,121 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-24 07:43:47,121 INFO DISTRO:|0|0|0| + +2025-09-24 07:44:47,121 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:44:47,121 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-24 07:44:47,121 INFO DISTRO:|0|0|0| + +2025-09-24 07:45:47,122 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:45:47,123 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-24 07:45:47,123 INFO DISTRO:|0|0|0| + +2025-09-24 07:46:47,125 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:46:47,126 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-24 07:46:47,126 INFO DISTRO:|0|0|0| + +2025-09-24 07:47:47,128 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:47:47,129 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-24 07:47:47,129 INFO DISTRO:|0|0|0| + +2025-09-24 07:48:47,129 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:48:47,130 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-24 07:48:47,130 INFO DISTRO:|0|0|0| + +2025-09-24 07:49:47,131 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:49:47,131 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-24 07:49:47,131 INFO DISTRO:|0|0|0| + +2025-09-24 07:50:47,132 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 07:50:47,133 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 07:50:47,133 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:50:47,134 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-24 07:50:47,134 INFO DISTRO:|0|0|0| + +2025-09-24 07:51:47,136 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:51:47,136 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-24 07:51:47,137 INFO DISTRO:|0|0|0| + +2025-09-24 07:52:47,137 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:52:47,138 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-24 07:52:47,138 INFO DISTRO:|0|0|0| + +2025-09-24 07:53:47,140 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:53:47,141 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-24 07:53:47,141 INFO DISTRO:|0|0|0| + +2025-09-24 07:54:47,142 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:54:47,143 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-24 07:54:47,144 INFO DISTRO:|0|0|0| + +2025-09-24 07:55:47,144 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:55:47,144 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-24 07:55:47,144 INFO DISTRO:|0|0|0| + +2025-09-24 07:56:47,146 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:56:47,147 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-24 07:56:47,147 INFO DISTRO:|0|0|0| + +2025-09-24 07:57:47,148 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:57:47,149 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-24 07:57:47,149 INFO DISTRO:|0|0|0| + +2025-09-24 07:58:47,149 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:58:47,150 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-24 07:58:47,150 INFO DISTRO:|0|0|0| + +2025-09-24 07:59:47,150 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 07:59:47,151 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-24 07:59:47,152 INFO DISTRO:|0|0|0| + +2025-09-24 08:00:47,154 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 08:00:47,155 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 08:00:47,155 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:00:47,155 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-24 08:00:47,155 INFO DISTRO:|0|0|0| + +2025-09-24 08:01:47,156 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:01:47,156 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-24 08:01:47,156 INFO DISTRO:|0|0|0| + +2025-09-24 08:02:47,158 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:02:47,159 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-24 08:02:47,159 INFO DISTRO:|0|0|0| + +2025-09-24 08:03:47,159 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:03:47,160 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-24 08:03:47,160 INFO DISTRO:|0|0|0| + +2025-09-24 08:04:47,162 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:04:47,162 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-24 08:04:47,163 INFO DISTRO:|0|0|0| + +2025-09-24 08:05:47,163 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:05:47,164 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-24 08:05:47,164 INFO DISTRO:|0|0|0| + +2025-09-24 08:06:47,166 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:06:47,167 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-24 08:06:47,167 INFO DISTRO:|0|0|0| + +2025-09-24 08:07:47,167 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:07:47,167 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-24 08:07:47,167 INFO DISTRO:|0|0|0| + +2025-09-24 08:08:47,168 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:08:47,168 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-24 08:08:47,168 INFO DISTRO:|0|0|0| + +2025-09-24 08:09:47,168 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:09:47,169 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-24 08:09:47,169 INFO DISTRO:|0|0|0| + +2025-09-24 08:10:47,169 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 08:10:47,169 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 08:10:47,169 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:10:47,169 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-24 08:10:47,169 INFO DISTRO:|0|0|0| + +2025-09-24 08:11:47,170 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:11:47,170 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-24 08:11:47,170 INFO DISTRO:|0|0|0| + +2025-09-24 08:12:47,170 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:12:47,170 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-24 08:12:47,171 INFO DISTRO:|0|0|0| + +2025-09-24 08:13:47,171 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:13:47,171 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-24 08:13:47,171 INFO DISTRO:|0|0|0| + +2025-09-24 08:14:47,172 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:14:47,172 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-24 08:14:47,172 INFO DISTRO:|0|0|0| + +2025-09-24 08:15:47,173 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:15:47,173 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-24 08:15:47,173 INFO DISTRO:|0|0|0| + +2025-09-24 08:16:47,175 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:16:47,176 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-24 08:16:47,176 INFO DISTRO:|0|0|0| + +2025-09-24 08:17:47,178 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:17:47,179 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-24 08:17:47,179 INFO DISTRO:|0|0|0| + +2025-09-24 08:18:47,181 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:18:47,182 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-24 08:18:47,182 INFO DISTRO:|0|0|0| + +2025-09-24 08:19:47,184 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:19:47,185 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-24 08:19:47,185 INFO DISTRO:|0|0|0| + +2025-09-24 08:20:47,186 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 08:20:47,187 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 08:20:47,187 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:20:47,187 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-24 08:20:47,187 INFO DISTRO:|0|0|0| + +2025-09-24 08:21:47,189 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:21:47,190 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-24 08:21:47,190 INFO DISTRO:|0|0|0| + +2025-09-24 08:22:47,190 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:22:47,191 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-24 08:22:47,191 INFO DISTRO:|0|0|0| + +2025-09-24 08:23:47,193 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:23:47,194 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-24 08:23:47,194 INFO DISTRO:|0|0|0| + +2025-09-24 08:24:47,194 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:24:47,195 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-24 08:24:47,196 INFO DISTRO:|0|0|0| + +2025-09-24 08:25:47,196 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:25:47,197 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-24 08:25:47,197 INFO DISTRO:|0|0|0| + +2025-09-24 08:26:47,198 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:26:47,198 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-24 08:26:47,198 INFO DISTRO:|0|0|0| + +2025-09-24 08:27:47,200 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:27:47,201 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-24 08:27:47,201 INFO DISTRO:|0|0|0| + +2025-09-24 08:28:47,202 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:28:47,202 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-24 08:28:47,203 INFO DISTRO:|0|0|0| + +2025-09-24 08:29:47,203 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:29:47,203 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-24 08:29:47,203 INFO DISTRO:|0|0|0| + +2025-09-24 08:30:47,203 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 08:30:47,204 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 08:30:47,204 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:30:47,204 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-24 08:30:47,204 INFO DISTRO:|0|0|0| + +2025-09-24 08:31:47,205 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:31:47,205 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-24 08:31:47,205 INFO DISTRO:|0|0|0| + +2025-09-24 08:32:47,207 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:32:47,207 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-24 08:32:47,207 INFO DISTRO:|0|0|0| + +2025-09-24 08:33:47,208 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:33:47,208 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-24 08:33:47,208 INFO DISTRO:|0|0|0| + +2025-09-24 08:34:47,209 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:34:47,209 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-24 08:34:47,209 INFO DISTRO:|0|0|0| + +2025-09-24 08:35:47,210 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:35:47,211 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-24 08:35:47,211 INFO DISTRO:|0|0|0| + +2025-09-24 08:36:47,211 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:36:47,211 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-24 08:36:47,211 INFO DISTRO:|0|0|0| + +2025-09-24 08:37:47,212 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:37:47,212 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-24 08:37:47,212 INFO DISTRO:|0|0|0| + +2025-09-24 08:38:47,213 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:38:47,214 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-24 08:38:47,214 INFO DISTRO:|0|0|0| + +2025-09-24 08:39:47,216 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:39:47,217 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-24 08:39:47,217 INFO DISTRO:|0|0|0| + +2025-09-24 08:40:47,218 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 08:40:47,218 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 08:40:47,218 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:40:47,218 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-24 08:40:47,218 INFO DISTRO:|0|0|0| + +2025-09-24 08:41:47,218 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:41:47,219 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-24 08:41:47,219 INFO DISTRO:|0|0|0| + +2025-09-24 08:42:47,219 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:42:47,219 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-24 08:42:47,219 INFO DISTRO:|0|0|0| + +2025-09-24 08:43:47,219 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:43:47,220 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-24 08:43:47,221 INFO DISTRO:|0|0|0| + +2025-09-24 08:44:47,223 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:44:47,224 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-24 08:44:47,224 INFO DISTRO:|0|0|0| + +2025-09-24 08:45:47,224 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:45:47,224 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-24 08:45:47,224 INFO DISTRO:|0|0|0| + +2025-09-24 08:46:47,229 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:46:47,229 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-24 08:46:47,229 INFO DISTRO:|0|0|0| + +2025-09-24 08:47:47,231 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:47:47,232 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-24 08:47:47,232 INFO DISTRO:|0|0|0| + +2025-09-24 08:48:47,234 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:48:47,235 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-24 08:48:47,235 INFO DISTRO:|0|0|0| + +2025-09-24 08:49:47,236 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:49:47,237 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-24 08:49:47,238 INFO DISTRO:|0|0|0| + +2025-09-24 08:50:47,238 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 08:50:47,239 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 08:50:47,239 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:50:47,239 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-24 08:50:47,239 INFO DISTRO:|0|0|0| + +2025-09-24 08:51:47,240 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:51:47,241 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-24 08:51:47,241 INFO DISTRO:|0|0|0| + +2025-09-24 08:52:47,241 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:52:47,242 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-24 08:52:47,242 INFO DISTRO:|0|0|0| + +2025-09-24 08:53:47,243 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:53:47,243 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-24 08:53:47,243 INFO DISTRO:|0|0|0| + +2025-09-24 08:54:47,244 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:54:47,245 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-24 08:54:47,245 INFO DISTRO:|0|0|0| + +2025-09-24 08:55:47,246 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:55:47,247 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-24 08:55:47,247 INFO DISTRO:|0|0|0| + +2025-09-24 08:56:47,248 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:56:47,248 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-24 08:56:47,248 INFO DISTRO:|0|0|0| + +2025-09-24 08:57:47,248 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:57:47,249 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-24 08:57:47,250 INFO DISTRO:|0|0|0| + +2025-09-24 08:58:47,250 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:58:47,250 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-24 08:58:47,250 INFO DISTRO:|0|0|0| + +2025-09-24 08:59:47,251 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 08:59:47,252 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-24 08:59:47,252 INFO DISTRO:|0|0|0| + +2025-09-24 09:00:47,252 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 09:00:47,254 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 09:00:47,254 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:00:47,254 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-24 09:00:47,254 INFO DISTRO:|0|0|0| + +2025-09-24 09:01:47,256 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:01:47,257 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-24 09:01:47,257 INFO DISTRO:|0|0|0| + +2025-09-24 09:02:47,258 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:02:47,258 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-24 09:02:47,258 INFO DISTRO:|0|0|0| + +2025-09-24 09:03:47,259 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:03:47,260 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-24 09:03:47,260 INFO DISTRO:|0|0|0| + +2025-09-24 09:04:47,260 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:04:47,261 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-24 09:04:47,261 INFO DISTRO:|0|0|0| + +2025-09-24 09:05:47,262 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:05:47,263 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-24 09:05:47,263 INFO DISTRO:|0|0|0| + +2025-09-24 09:06:47,263 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:06:47,264 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-24 09:06:47,264 INFO DISTRO:|0|0|0| + +2025-09-24 09:07:47,265 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:07:47,266 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-24 09:07:47,266 INFO DISTRO:|0|0|0| + +2025-09-24 09:08:47,268 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:08:47,269 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-24 09:08:47,269 INFO DISTRO:|0|0|0| + +2025-09-24 09:09:47,269 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:09:47,270 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-24 09:09:47,270 INFO DISTRO:|0|0|0| + +2025-09-24 09:10:47,270 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 09:10:47,271 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 09:10:47,271 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:10:47,272 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-24 09:10:47,272 INFO DISTRO:|0|0|0| + +2025-09-24 09:11:47,272 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:11:47,272 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-24 09:11:47,273 INFO DISTRO:|0|0|0| + +2025-09-24 09:12:47,274 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:12:47,274 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-24 09:12:47,274 INFO DISTRO:|0|0|0| + +2025-09-24 09:13:47,275 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:13:47,275 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-24 09:13:47,275 INFO DISTRO:|0|0|0| + +2025-09-24 09:14:47,276 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:14:47,276 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-24 09:14:47,277 INFO DISTRO:|0|0|0| + +2025-09-24 09:15:47,277 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:15:47,278 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-24 09:15:47,278 INFO DISTRO:|0|0|0| + +2025-09-24 09:16:47,278 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:16:47,279 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-24 09:16:47,279 INFO DISTRO:|0|0|0| + +2025-09-24 09:17:47,282 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:17:47,283 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-24 09:17:47,283 INFO DISTRO:|0|0|0| + +2025-09-24 09:18:47,283 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:18:47,284 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-24 09:18:47,285 INFO DISTRO:|0|0|0| + +2025-09-24 09:19:47,285 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:19:47,286 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-24 09:19:47,286 INFO DISTRO:|0|0|0| + +2025-09-24 09:20:47,288 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 09:20:47,289 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 09:20:47,289 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:20:47,289 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-24 09:20:47,290 INFO DISTRO:|0|0|0| + +2025-09-24 09:21:47,291 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:21:47,292 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-24 09:21:47,292 INFO DISTRO:|0|0|0| + +2025-09-24 09:22:47,292 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:22:47,292 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-24 09:22:47,292 INFO DISTRO:|0|0|0| + +2025-09-24 09:23:47,294 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:23:47,294 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-24 09:23:47,294 INFO DISTRO:|0|0|0| + +2025-09-24 09:24:47,295 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:24:47,296 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-24 09:24:47,296 INFO DISTRO:|0|0|0| + +2025-09-24 09:25:47,297 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:25:47,297 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-24 09:25:47,297 INFO DISTRO:|0|0|0| + +2025-09-24 09:26:47,299 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:26:47,300 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-24 09:26:47,300 INFO DISTRO:|0|0|0| + +2025-09-24 09:27:47,300 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:27:47,300 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-24 09:27:47,300 INFO DISTRO:|0|0|0| + +2025-09-24 09:28:47,301 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:28:47,301 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-24 09:28:47,301 INFO DISTRO:|0|0|0| + +2025-09-24 09:29:47,303 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:29:47,304 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-24 09:29:47,304 INFO DISTRO:|0|0|0| + +2025-09-24 09:30:47,304 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 09:30:47,305 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 09:30:47,305 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:30:47,305 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-24 09:30:47,305 INFO DISTRO:|0|0|0| + +2025-09-24 09:31:47,306 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:31:47,306 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-24 09:31:47,306 INFO DISTRO:|0|0|0| + +2025-09-24 09:32:47,307 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:32:47,307 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-24 09:32:47,308 INFO DISTRO:|0|0|0| + +2025-09-24 09:33:47,309 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:33:47,310 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-24 09:33:47,310 INFO DISTRO:|0|0|0| + +2025-09-24 09:34:47,310 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:34:47,311 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-24 09:34:47,312 INFO DISTRO:|0|0|0| + +2025-09-24 09:35:47,314 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:35:47,315 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-24 09:35:47,315 INFO DISTRO:|0|0|0| + +2025-09-24 09:36:47,316 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:36:47,318 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-24 09:36:47,318 INFO DISTRO:|0|0|0| + +2025-09-24 09:37:47,319 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:37:47,320 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-24 09:37:47,320 INFO DISTRO:|0|0|0| + +2025-09-24 09:38:47,321 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:38:47,321 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-24 09:38:47,321 INFO DISTRO:|0|0|0| + +2025-09-24 09:39:47,322 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:39:47,322 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-24 09:39:47,322 INFO DISTRO:|0|0|0| + +2025-09-24 09:40:47,323 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 09:40:47,323 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 09:40:47,324 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:40:47,324 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-24 09:40:47,324 INFO DISTRO:|0|0|0| + +2025-09-24 09:41:47,324 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:41:47,326 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-24 09:41:47,326 INFO DISTRO:|0|0|0| + +2025-09-24 09:42:47,326 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:42:47,327 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-24 09:42:47,327 INFO DISTRO:|0|0|0| + +2025-09-24 09:43:47,327 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:43:47,327 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-24 09:43:47,327 INFO DISTRO:|0|0|0| + +2025-09-24 09:44:47,328 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:44:47,329 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-24 09:44:47,329 INFO DISTRO:|0|0|0| + +2025-09-24 09:45:47,331 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:45:47,332 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-24 09:45:47,332 INFO DISTRO:|0|0|0| + +2025-09-24 09:46:47,332 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:46:47,333 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-24 09:46:47,333 INFO DISTRO:|0|0|0| + +2025-09-24 09:47:47,333 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:47:47,334 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-24 09:47:47,334 INFO DISTRO:|0|0|0| + +2025-09-24 09:48:47,336 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:48:47,336 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-24 09:48:47,336 INFO DISTRO:|0|0|0| + +2025-09-24 09:49:47,338 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:49:47,339 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-24 09:49:47,339 INFO DISTRO:|0|0|0| + +2025-09-24 09:50:47,339 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 09:50:47,343 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 09:50:47,343 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:50:47,343 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-24 09:50:47,343 INFO DISTRO:|0|0|0| + +2025-09-24 09:51:47,345 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:51:47,346 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-24 09:51:47,346 INFO DISTRO:|0|0|0| + +2025-09-24 09:52:47,348 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:52:47,348 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-24 09:52:47,348 INFO DISTRO:|0|0|0| + +2025-09-24 09:53:47,348 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:53:47,348 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-24 09:53:47,348 INFO DISTRO:|0|0|0| + +2025-09-24 09:54:47,350 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:54:47,351 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-24 09:54:47,351 INFO DISTRO:|0|0|0| + +2025-09-24 09:55:47,353 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:55:47,354 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-24 09:55:47,354 INFO DISTRO:|0|0|0| + +2025-09-24 09:56:47,354 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:56:47,355 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-24 09:56:47,355 INFO DISTRO:|0|0|0| + +2025-09-24 09:57:47,356 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:57:47,357 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-24 09:57:47,357 INFO DISTRO:|0|0|0| + +2025-09-24 09:58:47,359 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:58:47,360 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-24 09:58:47,361 INFO DISTRO:|0|0|0| + +2025-09-24 09:59:47,362 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 09:59:47,363 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-24 09:59:47,363 INFO DISTRO:|0|0|0| + +2025-09-24 10:00:47,364 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 10:00:47,364 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 10:00:47,364 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:00:47,364 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-24 10:00:47,365 INFO DISTRO:|0|0|0| + +2025-09-24 10:01:47,365 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:01:47,365 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-24 10:01:47,365 INFO DISTRO:|0|0|0| + +2025-09-24 10:02:47,366 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:02:47,366 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-24 10:02:47,366 INFO DISTRO:|0|0|0| + +2025-09-24 10:03:47,366 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:03:47,367 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-24 10:03:47,368 INFO DISTRO:|0|0|0| + +2025-09-24 10:04:47,368 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:04:47,368 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-24 10:04:47,368 INFO DISTRO:|0|0|0| + +2025-09-24 10:05:47,369 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:05:47,370 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-24 10:05:47,370 INFO DISTRO:|0|0|0| + +2025-09-24 10:06:47,371 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:06:47,372 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-24 10:06:47,372 INFO DISTRO:|0|0|0| + +2025-09-24 10:07:47,373 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:07:47,373 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-24 10:07:47,373 INFO DISTRO:|0|0|0| + +2025-09-24 10:08:47,374 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:08:47,374 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-24 10:08:47,374 INFO DISTRO:|0|0|0| + +2025-09-24 10:09:47,375 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:09:47,375 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-24 10:09:47,375 INFO DISTRO:|0|0|0| + +2025-09-24 10:10:47,376 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 10:10:47,376 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 10:10:47,377 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:10:47,377 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-24 10:10:47,377 INFO DISTRO:|0|0|0| + +2025-09-24 10:11:47,377 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:11:47,378 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-24 10:11:47,378 INFO DISTRO:|0|0|0| + +2025-09-24 10:12:47,379 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:12:47,379 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-24 10:12:47,379 INFO DISTRO:|0|0|0| + +2025-09-24 10:13:47,380 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:13:47,381 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-24 10:13:47,381 INFO DISTRO:|0|0|0| + +2025-09-24 10:14:47,382 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:14:47,382 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-24 10:14:47,382 INFO DISTRO:|0|0|0| + +2025-09-24 10:15:47,384 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:15:47,385 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-24 10:15:47,385 INFO DISTRO:|0|0|0| + +2025-09-24 10:16:47,387 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:16:47,388 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-24 10:16:47,388 INFO DISTRO:|0|0|0| + +2025-09-24 10:17:47,390 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:17:47,391 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-24 10:17:47,391 INFO DISTRO:|0|0|0| + +2025-09-24 10:18:47,392 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:18:47,393 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-24 10:18:47,393 INFO DISTRO:|0|0|0| + +2025-09-24 10:19:47,394 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:19:47,394 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-24 10:19:47,394 INFO DISTRO:|0|0|0| + +2025-09-24 10:20:47,396 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 10:20:47,397 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 10:20:47,398 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:20:47,398 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-24 10:20:47,398 INFO DISTRO:|0|0|0| + +2025-09-24 10:21:47,399 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:21:47,400 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-24 10:21:47,400 INFO DISTRO:|0|0|0| + +2025-09-24 10:22:47,400 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:22:47,401 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-24 10:22:47,401 INFO DISTRO:|0|0|0| + +2025-09-24 10:23:47,403 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:23:47,404 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-24 10:23:47,404 INFO DISTRO:|0|0|0| + +2025-09-24 10:24:47,404 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:24:47,404 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-24 10:24:47,405 INFO DISTRO:|0|0|0| + +2025-09-24 10:25:47,405 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:25:47,405 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-24 10:25:47,405 INFO DISTRO:|0|0|0| + +2025-09-24 10:26:47,406 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:26:47,406 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-24 10:26:47,406 INFO DISTRO:|0|0|0| + +2025-09-24 10:27:47,407 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:27:47,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-24 10:27:47,407 INFO DISTRO:|0|0|0| + +2025-09-24 10:28:47,408 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:28:47,408 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-24 10:28:47,409 INFO DISTRO:|0|0|0| + +2025-09-24 10:29:47,409 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:29:47,409 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-24 10:29:47,409 INFO DISTRO:|0|0|0| + +2025-09-24 10:30:47,410 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 10:30:47,411 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 10:30:47,411 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:30:47,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-24 10:30:47,411 INFO DISTRO:|0|0|0| + +2025-09-24 10:31:47,412 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:31:47,412 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-24 10:31:47,412 INFO DISTRO:|0|0|0| + +2025-09-24 10:32:47,414 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:32:47,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-24 10:32:47,415 INFO DISTRO:|0|0|0| + +2025-09-24 10:33:47,416 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:33:47,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-24 10:33:47,416 INFO DISTRO:|0|0|0| + +2025-09-24 10:34:47,418 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:34:47,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-24 10:34:47,419 INFO DISTRO:|0|0|0| + +2025-09-24 10:35:47,419 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:35:47,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-24 10:35:47,421 INFO DISTRO:|0|0|0| + +2025-09-24 10:36:47,421 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:36:47,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-24 10:36:47,422 INFO DISTRO:|0|0|0| + +2025-09-24 10:37:47,424 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:37:47,425 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-24 10:37:47,425 INFO DISTRO:|0|0|0| + +2025-09-24 10:38:47,428 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:38:47,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-24 10:38:47,429 INFO DISTRO:|0|0|0| + +2025-09-24 10:39:47,431 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:39:47,432 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-24 10:39:47,432 INFO DISTRO:|0|0|0| + +2025-09-24 10:40:47,433 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 10:40:47,433 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 10:40:47,433 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:40:47,434 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-24 10:40:47,434 INFO DISTRO:|0|0|0| + +2025-09-24 10:41:47,434 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:41:47,434 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-24 10:41:47,434 INFO DISTRO:|0|0|0| + +2025-09-24 10:42:47,434 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:42:47,436 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-24 10:42:47,436 INFO DISTRO:|0|0|0| + +2025-09-24 10:43:47,437 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:43:47,438 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-24 10:43:47,438 INFO DISTRO:|0|0|0| + +2025-09-24 10:44:47,439 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:44:47,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-24 10:44:47,439 INFO DISTRO:|0|0|0| + +2025-09-24 10:45:47,441 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:45:47,441 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-24 10:45:47,441 INFO DISTRO:|0|0|0| + +2025-09-24 10:46:47,442 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:46:47,442 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-24 10:46:47,442 INFO DISTRO:|0|0|0| + +2025-09-24 10:47:47,442 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:47:47,443 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-24 10:47:47,443 INFO DISTRO:|0|0|0| + +2025-09-24 10:48:47,443 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:48:47,443 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-24 10:48:47,443 INFO DISTRO:|0|0|0| + +2025-09-24 10:49:47,445 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:49:47,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-24 10:49:47,446 INFO DISTRO:|0|0|0| + +2025-09-24 10:50:47,446 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 10:50:47,447 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 10:50:47,447 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:50:47,447 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-24 10:50:47,447 INFO DISTRO:|0|0|0| + +2025-09-24 10:51:47,450 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:51:47,451 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-24 10:51:47,451 INFO DISTRO:|0|0|0| + +2025-09-24 10:52:47,453 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:52:47,454 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-24 10:52:47,454 INFO DISTRO:|0|0|0| + +2025-09-24 10:53:47,456 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:53:47,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-24 10:53:47,457 INFO DISTRO:|0|0|0| + +2025-09-24 10:54:47,459 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:54:47,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-24 10:54:47,460 INFO DISTRO:|0|0|0| + +2025-09-24 10:55:47,462 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:55:47,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-24 10:55:47,462 INFO DISTRO:|0|0|0| + +2025-09-24 10:56:47,463 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:56:47,463 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-24 10:56:47,463 INFO DISTRO:|0|0|0| + +2025-09-24 10:57:47,463 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:57:47,463 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-24 10:57:47,464 INFO DISTRO:|0|0|0| + +2025-09-24 10:58:47,466 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:58:47,466 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-24 10:58:47,466 INFO DISTRO:|0|0|0| + +2025-09-24 10:59:47,468 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 10:59:47,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-24 10:59:47,469 INFO DISTRO:|0|0|0| + +2025-09-24 11:00:47,469 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 11:00:47,470 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 11:00:47,470 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:00:47,470 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-24 11:00:47,470 INFO DISTRO:|0|0|0| + +2025-09-24 11:01:47,472 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:01:47,473 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-24 11:01:47,473 INFO DISTRO:|0|0|0| + +2025-09-24 11:02:47,474 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:02:47,475 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-24 11:02:47,476 INFO DISTRO:|0|0|0| + +2025-09-24 11:03:47,476 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:03:47,477 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-24 11:03:47,477 INFO DISTRO:|0|0|0| + +2025-09-24 11:04:47,479 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:04:47,479 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-24 11:04:47,480 INFO DISTRO:|0|0|0| + +2025-09-24 11:05:47,480 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:05:47,480 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-24 11:05:47,480 INFO DISTRO:|0|0|0| + +2025-09-24 11:06:47,482 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:06:47,483 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-24 11:06:47,483 INFO DISTRO:|0|0|0| + +2025-09-24 11:07:47,485 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:07:47,486 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-24 11:07:47,486 INFO DISTRO:|0|0|0| + +2025-09-24 11:08:47,487 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:08:47,488 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-24 11:08:47,488 INFO DISTRO:|0|0|0| + +2025-09-24 11:09:47,490 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:09:47,491 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-24 11:09:47,491 INFO DISTRO:|0|0|0| + +2025-09-24 11:10:47,492 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 11:10:47,492 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 11:10:47,493 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:10:47,493 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-24 11:10:47,493 INFO DISTRO:|0|0|0| + +2025-09-24 11:11:47,493 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:11:47,494 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-24 11:11:47,494 INFO DISTRO:|0|0|0| + +2025-09-24 11:12:47,495 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:12:47,496 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-24 11:12:47,496 INFO DISTRO:|0|0|0| + +2025-09-24 11:13:47,496 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:13:47,496 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-24 11:13:47,497 INFO DISTRO:|0|0|0| + +2025-09-24 11:14:47,497 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:14:47,497 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-24 11:14:47,497 INFO DISTRO:|0|0|0| + +2025-09-24 11:15:47,497 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:15:47,498 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-24 11:15:47,498 INFO DISTRO:|0|0|0| + +2025-09-24 11:16:47,498 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:16:47,499 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-24 11:16:47,499 INFO DISTRO:|0|0|0| + +2025-09-24 11:17:47,499 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:17:47,499 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-24 11:17:47,499 INFO DISTRO:|0|0|0| + +2025-09-24 11:18:47,500 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:18:47,501 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-24 11:18:47,501 INFO DISTRO:|0|0|0| + +2025-09-24 11:19:47,502 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:19:47,502 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-24 11:19:47,502 INFO DISTRO:|0|0|0| + +2025-09-24 11:20:47,504 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 11:20:47,505 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 11:20:47,505 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:20:47,505 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-24 11:20:47,505 INFO DISTRO:|0|0|0| + +2025-09-24 11:21:47,506 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:21:47,506 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-24 11:21:47,506 INFO DISTRO:|0|0|0| + +2025-09-24 11:22:47,507 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:22:47,507 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-24 11:22:47,507 INFO DISTRO:|0|0|0| + +2025-09-24 11:23:47,507 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:23:47,507 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-24 11:23:47,508 INFO DISTRO:|0|0|0| + +2025-09-24 11:24:47,508 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:24:47,509 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-24 11:24:47,509 INFO DISTRO:|0|0|0| + +2025-09-24 11:25:47,509 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:25:47,510 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-24 11:25:47,510 INFO DISTRO:|0|0|0| + +2025-09-24 11:26:47,512 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:26:47,513 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-24 11:26:47,513 INFO DISTRO:|0|0|0| + +2025-09-24 11:27:47,515 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:27:47,516 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-24 11:27:47,516 INFO DISTRO:|0|0|0| + +2025-09-24 11:28:47,517 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:28:47,518 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-24 11:28:47,518 INFO DISTRO:|0|0|0| + +2025-09-24 11:29:47,518 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:29:47,519 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-24 11:29:47,519 INFO DISTRO:|0|0|0| + +2025-09-24 11:30:47,521 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 11:30:47,523 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 11:30:47,523 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:30:47,523 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-24 11:30:47,523 INFO DISTRO:|0|0|0| + +2025-09-24 11:31:47,524 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:31:47,525 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-24 11:31:47,525 INFO DISTRO:|0|0|0| + +2025-09-24 11:32:47,525 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:32:47,526 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-24 11:32:47,526 INFO DISTRO:|0|0|0| + +2025-09-24 11:33:47,526 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:33:47,526 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-24 11:33:47,526 INFO DISTRO:|0|0|0| + +2025-09-24 11:34:47,529 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:34:47,530 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-24 11:34:47,530 INFO DISTRO:|0|0|0| + +2025-09-24 11:35:47,530 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:35:47,531 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-24 11:35:47,531 INFO DISTRO:|0|0|0| + +2025-09-24 11:36:47,531 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:36:47,532 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-24 11:36:47,532 INFO DISTRO:|0|0|0| + +2025-09-24 11:37:47,532 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:37:47,533 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-24 11:37:47,533 INFO DISTRO:|0|0|0| + +2025-09-24 11:38:47,533 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:38:47,534 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-24 11:38:47,534 INFO DISTRO:|0|0|0| + +2025-09-24 11:39:47,534 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:39:47,534 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-24 11:39:47,534 INFO DISTRO:|0|0|0| + +2025-09-24 11:40:47,535 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 11:40:47,535 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 11:40:47,535 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:40:47,535 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-24 11:40:47,535 INFO DISTRO:|0|0|0| + +2025-09-24 11:41:47,536 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:41:47,536 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-24 11:41:47,536 INFO DISTRO:|0|0|0| + +2025-09-24 11:42:47,537 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:42:47,538 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-24 11:42:47,538 INFO DISTRO:|0|0|0| + +2025-09-24 11:43:47,538 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:43:47,539 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-24 11:43:47,539 INFO DISTRO:|0|0|0| + +2025-09-24 11:44:47,539 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:44:47,546 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-24 11:44:47,546 INFO DISTRO:|0|0|0| + +2025-09-24 11:45:47,548 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:45:47,549 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-24 11:45:47,549 INFO DISTRO:|0|0|0| + +2025-09-24 11:46:47,551 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:46:47,551 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-24 11:46:47,552 INFO DISTRO:|0|0|0| + +2025-09-24 11:47:47,552 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:47:47,552 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-24 11:47:47,552 INFO DISTRO:|0|0|0| + +2025-09-24 11:48:47,554 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:48:47,554 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-24 11:48:47,554 INFO DISTRO:|0|0|0| + +2025-09-24 11:49:47,557 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:49:47,557 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-24 11:49:47,557 INFO DISTRO:|0|0|0| + +2025-09-24 11:50:47,558 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 11:50:47,558 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 11:50:47,558 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:50:47,558 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-24 11:50:47,558 INFO DISTRO:|0|0|0| + +2025-09-24 11:51:47,559 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:51:47,559 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-24 11:51:47,559 INFO DISTRO:|0|0|0| + +2025-09-24 11:52:47,561 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:52:47,561 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-24 11:52:47,561 INFO DISTRO:|0|0|0| + +2025-09-24 11:53:47,562 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:53:47,562 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-24 11:53:47,562 INFO DISTRO:|0|0|0| + +2025-09-24 11:54:47,563 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:54:47,563 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-24 11:54:47,563 INFO DISTRO:|0|0|0| + +2025-09-24 11:55:47,564 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:55:47,564 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-24 11:55:47,564 INFO DISTRO:|0|0|0| + +2025-09-24 11:56:47,566 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:56:47,567 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-24 11:56:47,567 INFO DISTRO:|0|0|0| + +2025-09-24 11:57:47,567 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:57:47,567 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-24 11:57:47,567 INFO DISTRO:|0|0|0| + +2025-09-24 11:58:47,567 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:58:47,567 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-24 11:58:47,568 INFO DISTRO:|0|0|0| + +2025-09-24 11:59:47,568 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 11:59:47,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-24 11:59:47,568 INFO DISTRO:|0|0|0| + +2025-09-24 12:00:47,570 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 12:00:47,570 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 12:00:47,571 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:00:47,571 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-24 12:00:47,571 INFO DISTRO:|0|0|0| + +2025-09-24 12:01:47,572 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:01:47,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-24 12:01:47,573 INFO DISTRO:|0|0|0| + +2025-09-24 12:02:47,573 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:02:47,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-24 12:02:47,573 INFO DISTRO:|0|0|0| + +2025-09-24 12:03:47,574 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:03:47,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-24 12:03:47,574 INFO DISTRO:|0|0|0| + +2025-09-24 12:04:47,574 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:04:47,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-24 12:04:47,574 INFO DISTRO:|0|0|0| + +2025-09-24 12:05:47,574 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:05:47,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-24 12:05:47,575 INFO DISTRO:|0|0|0| + +2025-09-24 12:06:47,577 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:06:47,577 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-24 12:06:47,577 INFO DISTRO:|0|0|0| + +2025-09-24 12:07:47,577 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:07:47,577 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-24 12:07:47,577 INFO DISTRO:|0|0|0| + +2025-09-24 12:08:47,578 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:08:47,579 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-24 12:08:47,579 INFO DISTRO:|0|0|0| + +2025-09-24 12:09:47,580 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:09:47,580 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-24 12:09:47,580 INFO DISTRO:|0|0|0| + +2025-09-24 12:10:47,581 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 12:10:47,581 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 12:10:47,581 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:10:47,581 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-24 12:10:47,581 INFO DISTRO:|0|0|0| + +2025-09-24 12:11:47,582 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:11:47,583 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-24 12:11:47,583 INFO DISTRO:|0|0|0| + +2025-09-24 12:12:47,584 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:12:47,585 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-24 12:12:47,585 INFO DISTRO:|0|0|0| + +2025-09-24 12:13:47,586 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:13:47,587 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-24 12:13:47,587 INFO DISTRO:|0|0|0| + +2025-09-24 12:14:47,587 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:14:47,588 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-24 12:14:47,588 INFO DISTRO:|0|0|0| + +2025-09-24 12:15:47,589 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:15:47,590 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-24 12:15:47,590 INFO DISTRO:|0|0|0| + +2025-09-24 12:16:47,591 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:16:47,592 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-24 12:16:47,592 INFO DISTRO:|0|0|0| + +2025-09-24 12:17:47,592 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:17:47,593 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-24 12:17:47,593 INFO DISTRO:|0|0|0| + +2025-09-24 12:18:47,595 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:18:47,596 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-24 12:18:47,596 INFO DISTRO:|0|0|0| + +2025-09-24 12:19:47,597 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:19:47,598 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-24 12:19:47,598 INFO DISTRO:|0|0|0| + +2025-09-24 12:20:47,599 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 12:20:47,600 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 12:20:47,600 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:20:47,600 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-24 12:20:47,600 INFO DISTRO:|0|0|0| + +2025-09-24 12:21:47,601 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:21:47,602 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-24 12:21:47,602 INFO DISTRO:|0|0|0| + +2025-09-24 12:22:47,604 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:22:47,605 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-24 12:22:47,605 INFO DISTRO:|0|0|0| + +2025-09-24 12:23:47,607 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:23:47,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-24 12:23:47,608 INFO DISTRO:|0|0|0| + +2025-09-24 12:24:47,608 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:24:47,608 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-24 12:24:47,608 INFO DISTRO:|0|0|0| + +2025-09-24 12:25:47,610 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:25:47,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-24 12:25:47,611 INFO DISTRO:|0|0|0| + +2025-09-24 12:26:47,611 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:26:47,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-24 12:26:47,611 INFO DISTRO:|0|0|0| + +2025-09-24 12:27:47,612 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:27:47,613 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-24 12:27:47,613 INFO DISTRO:|0|0|0| + +2025-09-24 12:28:47,613 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:28:47,613 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-24 12:28:47,613 INFO DISTRO:|0|0|0| + +2025-09-24 12:29:47,614 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:29:47,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-24 12:29:47,615 INFO DISTRO:|0|0|0| + +2025-09-24 12:30:47,617 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 12:30:47,617 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 12:30:47,618 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:30:47,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-24 12:30:47,618 INFO DISTRO:|0|0|0| + +2025-09-24 12:31:47,618 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:31:47,619 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-24 12:31:47,619 INFO DISTRO:|0|0|0| + +2025-09-24 12:32:47,620 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:32:47,621 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-24 12:32:47,621 INFO DISTRO:|0|0|0| + +2025-09-24 12:33:47,623 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:33:47,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-24 12:33:47,624 INFO DISTRO:|0|0|0| + +2025-09-24 12:34:47,624 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:34:47,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-24 12:34:47,624 INFO DISTRO:|0|0|0| + +2025-09-24 12:35:47,624 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:35:47,625 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-24 12:35:47,626 INFO DISTRO:|0|0|0| + +2025-09-24 12:36:47,626 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:36:47,627 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-24 12:36:47,627 INFO DISTRO:|0|0|0| + +2025-09-24 12:37:47,628 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:37:47,628 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-24 12:37:47,628 INFO DISTRO:|0|0|0| + +2025-09-24 12:38:47,629 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:38:47,629 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-24 12:38:47,629 INFO DISTRO:|0|0|0| + +2025-09-24 12:39:47,629 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:39:47,630 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-24 12:39:47,630 INFO DISTRO:|0|0|0| + +2025-09-24 12:40:47,632 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 12:40:47,632 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 12:40:47,632 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:40:47,632 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-24 12:40:47,632 INFO DISTRO:|0|0|0| + +2025-09-24 12:41:47,633 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:41:47,633 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-24 12:41:47,633 INFO DISTRO:|0|0|0| + +2025-09-24 12:42:47,634 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:42:47,635 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-24 12:42:47,635 INFO DISTRO:|0|0|0| + +2025-09-24 12:43:47,636 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:43:47,638 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-24 12:43:47,638 INFO DISTRO:|0|0|0| + +2025-09-24 12:44:47,638 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:44:47,638 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-24 12:44:47,638 INFO DISTRO:|0|0|0| + +2025-09-24 12:45:47,639 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:45:47,639 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-24 12:45:47,639 INFO DISTRO:|0|0|0| + +2025-09-24 12:46:47,640 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:46:47,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-24 12:46:47,640 INFO DISTRO:|0|0|0| + +2025-09-24 12:47:47,642 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:47:47,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-24 12:47:47,643 INFO DISTRO:|0|0|0| + +2025-09-24 12:48:47,643 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:48:47,644 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-24 12:48:47,644 INFO DISTRO:|0|0|0| + +2025-09-24 12:49:47,644 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:49:47,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-24 12:49:47,645 INFO DISTRO:|0|0|0| + +2025-09-24 12:50:47,645 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 12:50:47,645 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 12:50:47,646 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:50:47,646 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-24 12:50:47,646 INFO DISTRO:|0|0|0| + +2025-09-24 12:51:47,647 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:51:47,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-24 12:51:47,648 INFO DISTRO:|0|0|0| + +2025-09-24 12:52:47,648 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:52:47,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-24 12:52:47,648 INFO DISTRO:|0|0|0| + +2025-09-24 12:53:47,649 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:53:47,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-24 12:53:47,650 INFO DISTRO:|0|0|0| + +2025-09-24 12:54:47,650 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:54:47,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-24 12:54:47,650 INFO DISTRO:|0|0|0| + +2025-09-24 12:55:47,651 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:55:47,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-24 12:55:47,651 INFO DISTRO:|0|0|0| + +2025-09-24 12:56:47,652 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:56:47,652 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-24 12:56:47,652 INFO DISTRO:|0|0|0| + +2025-09-24 12:57:47,654 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:57:47,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-24 12:57:47,654 INFO DISTRO:|0|0|0| + +2025-09-24 12:58:47,655 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:58:47,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-24 12:58:47,656 INFO DISTRO:|0|0|0| + +2025-09-24 12:59:47,656 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 12:59:47,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-24 12:59:47,656 INFO DISTRO:|0|0|0| + +2025-09-24 13:00:47,657 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 13:00:47,658 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 13:00:47,658 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:00:47,658 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-24 13:00:47,658 INFO DISTRO:|0|0|0| + +2025-09-24 13:01:47,659 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:01:47,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-24 13:01:47,659 INFO DISTRO:|0|0|0| + +2025-09-24 13:02:47,660 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:02:47,662 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-24 13:02:47,663 INFO DISTRO:|0|0|0| + +2025-09-24 13:03:47,664 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:03:47,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-24 13:03:47,665 INFO DISTRO:|0|0|0| + +2025-09-24 13:04:47,665 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:04:47,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-24 13:04:47,666 INFO DISTRO:|0|0|0| + +2025-09-24 13:05:47,666 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:05:47,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-24 13:05:47,667 INFO DISTRO:|0|0|0| + +2025-09-24 13:06:47,668 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:06:47,682 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-24 13:06:47,682 INFO DISTRO:|0|0|0| + +2025-09-24 13:07:47,682 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:07:47,683 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-24 13:07:47,683 INFO DISTRO:|0|0|0| + +2025-09-24 13:08:47,685 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:08:47,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-24 13:08:47,687 INFO DISTRO:|0|0|0| + +2025-09-24 13:09:47,687 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:09:47,688 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-24 13:09:47,688 INFO DISTRO:|0|0|0| + +2025-09-24 13:10:47,690 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 13:10:47,691 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 13:10:47,692 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:10:47,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-24 13:10:47,692 INFO DISTRO:|0|0|0| + +2025-09-24 13:11:47,693 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:11:47,694 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-24 13:11:47,694 INFO DISTRO:|0|0|0| + +2025-09-24 13:12:47,696 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:12:47,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-24 13:12:47,696 INFO DISTRO:|0|0|0| + +2025-09-24 13:13:47,697 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:13:47,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-24 13:13:47,697 INFO DISTRO:|0|0|0| + +2025-09-24 13:14:47,697 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:14:47,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-24 13:14:47,699 INFO DISTRO:|0|0|0| + +2025-09-24 13:15:47,699 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:15:47,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-24 13:15:47,700 INFO DISTRO:|0|0|0| + +2025-09-24 13:16:47,700 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:16:47,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-24 13:16:47,701 INFO DISTRO:|0|0|0| + +2025-09-24 13:17:47,701 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:17:47,702 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-24 13:17:47,703 INFO DISTRO:|0|0|0| + +2025-09-24 13:18:47,703 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:18:47,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-24 13:18:47,704 INFO DISTRO:|0|0|0| + +2025-09-24 13:19:47,704 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:19:47,705 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-24 13:19:47,706 INFO DISTRO:|0|0|0| + +2025-09-24 13:20:47,706 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 13:20:47,707 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 13:20:47,707 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:20:47,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-24 13:20:47,707 INFO DISTRO:|0|0|0| + +2025-09-24 13:21:47,708 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:21:47,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-24 13:21:47,709 INFO DISTRO:|0|0|0| + +2025-09-24 13:22:47,709 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:22:47,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-24 13:22:47,709 INFO DISTRO:|0|0|0| + +2025-09-24 13:23:47,710 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:23:47,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-24 13:23:47,711 INFO DISTRO:|0|0|0| + +2025-09-24 13:24:47,711 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:24:47,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-24 13:24:47,712 INFO DISTRO:|0|0|0| + +2025-09-24 13:25:47,713 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:25:47,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-24 13:25:47,713 INFO DISTRO:|0|0|0| + +2025-09-24 13:26:47,714 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:26:47,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-24 13:26:47,714 INFO DISTRO:|0|0|0| + +2025-09-24 13:27:47,714 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:27:47,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-24 13:27:47,715 INFO DISTRO:|0|0|0| + +2025-09-24 13:28:47,716 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:28:47,717 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-24 13:28:47,717 INFO DISTRO:|0|0|0| + +2025-09-24 13:29:47,717 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:29:47,717 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-24 13:29:47,717 INFO DISTRO:|0|0|0| + +2025-09-24 13:30:47,719 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 13:30:47,720 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 13:30:47,720 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:30:47,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-24 13:30:47,720 INFO DISTRO:|0|0|0| + +2025-09-24 13:31:47,722 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:31:47,723 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-24 13:31:47,723 INFO DISTRO:|0|0|0| + +2025-09-24 13:32:47,723 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:32:47,723 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-24 13:32:47,723 INFO DISTRO:|0|0|0| + +2025-09-24 13:33:47,726 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:33:47,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-24 13:33:47,727 INFO DISTRO:|0|0|0| + +2025-09-24 13:34:47,727 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:34:47,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-24 13:34:47,728 INFO DISTRO:|0|0|0| + +2025-09-24 13:35:47,728 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:35:47,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-24 13:35:47,729 INFO DISTRO:|0|0|0| + +2025-09-24 13:36:47,730 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:36:47,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-24 13:36:47,730 INFO DISTRO:|0|0|0| + +2025-09-24 13:37:47,732 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:37:47,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-24 13:37:47,733 INFO DISTRO:|0|0|0| + +2025-09-24 13:38:47,733 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:38:47,734 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-24 13:38:47,734 INFO DISTRO:|0|0|0| + +2025-09-24 13:39:47,735 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:39:47,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-24 13:39:47,736 INFO DISTRO:|0|0|0| + +2025-09-24 13:40:47,736 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 13:40:47,736 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 13:40:47,736 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:40:47,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-24 13:40:47,736 INFO DISTRO:|0|0|0| + +2025-09-24 13:41:47,737 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:41:47,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-24 13:41:47,737 INFO DISTRO:|0|0|0| + +2025-09-24 13:42:47,738 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:42:47,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-24 13:42:47,739 INFO DISTRO:|0|0|0| + +2025-09-24 13:43:47,739 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:43:47,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-24 13:43:47,741 INFO DISTRO:|0|0|0| + +2025-09-24 13:44:47,741 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:44:47,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-24 13:44:47,742 INFO DISTRO:|0|0|0| + +2025-09-24 13:45:47,742 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:45:47,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-24 13:45:47,744 INFO DISTRO:|0|0|0| + +2025-09-24 13:46:47,744 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:46:47,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-24 13:46:47,745 INFO DISTRO:|0|0|0| + +2025-09-24 13:47:47,745 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:47:47,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-24 13:47:47,746 INFO DISTRO:|0|0|0| + +2025-09-24 13:48:47,746 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:48:47,747 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-24 13:48:47,747 INFO DISTRO:|0|0|0| + +2025-09-24 13:49:47,748 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:49:47,749 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-24 13:49:47,749 INFO DISTRO:|0|0|0| + +2025-09-24 13:50:47,749 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 13:50:47,749 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 13:50:47,749 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:50:47,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-24 13:50:47,750 INFO DISTRO:|0|0|0| + +2025-09-24 13:51:47,751 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:51:47,752 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-24 13:51:47,752 INFO DISTRO:|0|0|0| + +2025-09-24 13:52:47,755 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:52:47,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-24 13:52:47,755 INFO DISTRO:|0|0|0| + +2025-09-24 13:53:47,755 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:53:47,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-24 13:53:47,755 INFO DISTRO:|0|0|0| + +2025-09-24 13:54:47,756 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:54:47,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-24 13:54:47,756 INFO DISTRO:|0|0|0| + +2025-09-24 13:55:47,756 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:55:47,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-24 13:55:47,756 INFO DISTRO:|0|0|0| + +2025-09-24 13:56:47,757 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:56:47,757 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-24 13:56:47,757 INFO DISTRO:|0|0|0| + +2025-09-24 13:57:47,758 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:57:47,758 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-24 13:57:47,758 INFO DISTRO:|0|0|0| + +2025-09-24 13:58:47,758 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:58:47,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-24 13:58:47,759 INFO DISTRO:|0|0|0| + +2025-09-24 13:59:47,759 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 13:59:47,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-24 13:59:47,759 INFO DISTRO:|0|0|0| + +2025-09-24 14:00:47,759 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 14:00:47,760 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 14:00:47,760 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:00:47,760 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-24 14:00:47,760 INFO DISTRO:|0|0|0| + +2025-09-24 14:01:47,760 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:01:47,761 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-24 14:01:47,761 INFO DISTRO:|0|0|0| + +2025-09-24 14:02:47,761 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:02:47,762 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-24 14:02:47,762 INFO DISTRO:|0|0|0| + +2025-09-24 14:03:47,763 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:03:47,764 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-24 14:03:47,764 INFO DISTRO:|0|0|0| + +2025-09-24 14:04:47,764 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:04:47,765 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-24 14:04:47,765 INFO DISTRO:|0|0|0| + +2025-09-24 14:05:47,765 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:05:47,766 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-24 14:05:47,767 INFO DISTRO:|0|0|0| + +2025-09-24 14:06:47,767 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:06:47,767 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-24 14:06:47,767 INFO DISTRO:|0|0|0| + +2025-09-24 14:07:47,768 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:07:47,769 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-24 14:07:47,769 INFO DISTRO:|0|0|0| + +2025-09-24 14:08:47,770 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:08:47,771 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-24 14:08:47,771 INFO DISTRO:|0|0|0| + +2025-09-24 14:09:47,772 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:09:47,772 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-24 14:09:47,772 INFO DISTRO:|0|0|0| + +2025-09-24 14:10:47,774 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 14:10:47,774 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 14:10:47,774 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:10:47,774 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-24 14:10:47,774 INFO DISTRO:|0|0|0| + +2025-09-24 14:11:47,774 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:11:47,775 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-24 14:11:47,775 INFO DISTRO:|0|0|0| + +2025-09-24 14:12:47,775 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:12:47,776 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-24 14:12:47,776 INFO DISTRO:|0|0|0| + +2025-09-24 14:13:47,777 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:13:47,777 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-24 14:13:47,777 INFO DISTRO:|0|0|0| + +2025-09-24 14:14:47,777 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:14:47,778 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-24 14:14:47,778 INFO DISTRO:|0|0|0| + +2025-09-24 14:15:47,779 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:15:47,780 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-24 14:15:47,780 INFO DISTRO:|0|0|0| + +2025-09-24 14:16:47,782 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:16:47,783 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-24 14:16:47,784 INFO DISTRO:|0|0|0| + +2025-09-24 14:17:47,784 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:17:47,785 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-24 14:17:47,786 INFO DISTRO:|0|0|0| + +2025-09-24 14:18:47,786 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:18:47,787 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-24 14:18:47,787 INFO DISTRO:|0|0|0| + +2025-09-24 14:19:47,789 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:19:47,790 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-24 14:19:47,790 INFO DISTRO:|0|0|0| + +2025-09-24 14:20:47,790 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 14:20:47,791 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 14:20:47,792 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:20:47,792 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-24 14:20:47,792 INFO DISTRO:|0|0|0| + +2025-09-24 14:21:47,792 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:21:47,793 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-24 14:21:47,793 INFO DISTRO:|0|0|0| + +2025-09-24 14:22:47,793 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:22:47,795 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-24 14:22:47,795 INFO DISTRO:|0|0|0| + +2025-09-24 14:23:47,795 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:23:47,796 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-24 14:23:47,797 INFO DISTRO:|0|0|0| + +2025-09-24 14:24:47,797 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:24:47,799 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-24 14:24:47,799 INFO DISTRO:|0|0|0| + +2025-09-24 14:25:47,801 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:25:47,801 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-24 14:25:47,801 INFO DISTRO:|0|0|0| + +2025-09-24 14:26:47,802 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:26:47,802 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-24 14:26:47,802 INFO DISTRO:|0|0|0| + +2025-09-24 14:27:47,803 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:27:47,804 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-24 14:27:47,804 INFO DISTRO:|0|0|0| + +2025-09-24 14:28:47,804 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:28:47,805 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-24 14:28:47,805 INFO DISTRO:|0|0|0| + +2025-09-24 14:29:47,805 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:29:47,806 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-24 14:29:47,806 INFO DISTRO:|0|0|0| + +2025-09-24 14:30:47,807 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 14:30:47,807 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 14:30:47,807 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:30:47,807 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-24 14:30:47,807 INFO DISTRO:|0|0|0| + +2025-09-24 14:31:47,809 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:31:47,810 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-24 14:31:47,810 INFO DISTRO:|0|0|0| + +2025-09-24 14:32:47,813 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:32:47,814 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-24 14:32:47,814 INFO DISTRO:|0|0|0| + +2025-09-24 14:33:47,814 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:33:47,815 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-24 14:33:47,815 INFO DISTRO:|0|0|0| + +2025-09-24 14:34:47,817 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:34:47,818 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-24 14:34:47,818 INFO DISTRO:|0|0|0| + +2025-09-24 14:35:47,819 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:35:47,819 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-24 14:35:47,819 INFO DISTRO:|0|0|0| + +2025-09-24 14:36:47,820 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:36:47,821 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-24 14:36:47,822 INFO DISTRO:|0|0|0| + +2025-09-24 14:37:47,822 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:37:47,823 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-24 14:37:47,823 INFO DISTRO:|0|0|0| + +2025-09-24 14:38:47,825 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:38:47,826 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-24 14:38:47,826 INFO DISTRO:|0|0|0| + +2025-09-24 14:39:47,826 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:39:47,827 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-24 14:39:47,827 INFO DISTRO:|0|0|0| + +2025-09-24 14:40:47,828 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 14:40:47,829 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 14:40:47,829 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:40:47,829 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-24 14:40:47,829 INFO DISTRO:|0|0|0| + +2025-09-24 14:41:47,831 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:41:47,831 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-24 14:41:47,831 INFO DISTRO:|0|0|0| + +2025-09-24 14:42:47,832 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:42:47,832 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-24 14:42:47,832 INFO DISTRO:|0|0|0| + +2025-09-24 14:43:47,833 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:43:47,834 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-24 14:43:47,834 INFO DISTRO:|0|0|0| + +2025-09-24 14:44:47,835 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:44:47,837 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-24 14:44:47,837 INFO DISTRO:|0|0|0| + +2025-09-24 14:45:47,837 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:45:47,838 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-24 14:45:47,838 INFO DISTRO:|0|0|0| + +2025-09-24 14:46:47,839 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:46:47,840 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-24 14:46:47,840 INFO DISTRO:|0|0|0| + +2025-09-24 14:47:47,842 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:47:47,842 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-24 14:47:47,843 INFO DISTRO:|0|0|0| + +2025-09-24 14:48:47,844 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:48:47,844 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-24 14:48:47,844 INFO DISTRO:|0|0|0| + +2025-09-24 14:49:47,845 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:49:47,845 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-24 14:49:47,845 INFO DISTRO:|0|0|0| + +2025-09-24 14:50:47,847 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 14:50:47,848 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 14:50:47,848 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:50:47,848 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-24 14:50:47,848 INFO DISTRO:|0|0|0| + +2025-09-24 14:51:47,849 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:51:47,850 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-24 14:51:47,850 INFO DISTRO:|0|0|0| + +2025-09-24 14:52:47,852 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:52:47,853 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-24 14:52:47,853 INFO DISTRO:|0|0|0| + +2025-09-24 14:53:47,855 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:53:47,856 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-24 14:53:47,856 INFO DISTRO:|0|0|0| + +2025-09-24 14:54:47,857 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:54:47,858 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-24 14:54:47,858 INFO DISTRO:|0|0|0| + +2025-09-24 14:55:47,860 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:55:47,861 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-24 14:55:47,861 INFO DISTRO:|0|0|0| + +2025-09-24 14:56:47,862 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:56:47,863 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-24 14:56:47,863 INFO DISTRO:|0|0|0| + +2025-09-24 14:57:47,865 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:57:47,866 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-24 14:57:47,866 INFO DISTRO:|0|0|0| + +2025-09-24 14:58:47,866 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:58:47,867 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-24 14:58:47,867 INFO DISTRO:|0|0|0| + +2025-09-24 14:59:47,867 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 14:59:47,868 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-24 14:59:47,868 INFO DISTRO:|0|0|0| + +2025-09-24 15:00:47,870 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 15:00:47,871 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 15:00:47,871 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:00:47,871 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-24 15:00:47,871 INFO DISTRO:|0|0|0| + +2025-09-24 15:01:47,871 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:01:47,872 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-24 15:01:47,873 INFO DISTRO:|0|0|0| + +2025-09-24 15:02:47,875 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:02:47,876 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-24 15:02:47,876 INFO DISTRO:|0|0|0| + +2025-09-24 15:03:47,877 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:03:47,878 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-24 15:03:47,878 INFO DISTRO:|0|0|0| + +2025-09-24 15:04:47,878 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:04:47,879 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-24 15:04:47,879 INFO DISTRO:|0|0|0| + +2025-09-24 15:05:47,881 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:05:47,882 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-24 15:05:47,882 INFO DISTRO:|0|0|0| + +2025-09-24 15:06:47,883 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:06:47,884 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-24 15:06:47,884 INFO DISTRO:|0|0|0| + +2025-09-24 15:07:47,884 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:07:47,885 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-24 15:07:47,885 INFO DISTRO:|0|0|0| + +2025-09-24 15:08:47,886 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:08:47,886 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-24 15:08:47,886 INFO DISTRO:|0|0|0| + +2025-09-24 15:09:47,887 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:09:47,888 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-24 15:09:47,888 INFO DISTRO:|0|0|0| + +2025-09-24 15:10:47,890 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 15:10:47,890 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 15:10:47,890 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:10:47,890 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-24 15:10:47,890 INFO DISTRO:|0|0|0| + +2025-09-24 15:11:47,892 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:11:47,893 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-24 15:11:47,893 INFO DISTRO:|0|0|0| + +2025-09-24 15:12:47,895 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:12:47,895 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-24 15:12:47,895 INFO DISTRO:|0|0|0| + +2025-09-24 15:13:47,896 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:13:47,897 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-24 15:13:47,897 INFO DISTRO:|0|0|0| + +2025-09-24 15:14:47,897 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:14:47,898 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-24 15:14:47,898 INFO DISTRO:|0|0|0| + +2025-09-24 15:15:47,900 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:15:47,900 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-24 15:15:47,900 INFO DISTRO:|0|0|0| + +2025-09-24 15:16:47,900 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:16:47,900 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-24 15:16:47,900 INFO DISTRO:|0|0|0| + +2025-09-24 15:17:47,902 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:17:47,903 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-24 15:17:47,903 INFO DISTRO:|0|0|0| + +2025-09-24 15:18:47,903 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:18:47,904 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-24 15:18:47,905 INFO DISTRO:|0|0|0| + +2025-09-24 15:19:47,906 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:19:47,907 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-24 15:19:47,908 INFO DISTRO:|0|0|0| + +2025-09-24 15:20:47,908 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 15:20:47,909 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 15:20:47,909 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:20:47,909 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-24 15:20:47,910 INFO DISTRO:|0|0|0| + +2025-09-24 15:21:47,910 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:21:47,912 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-24 15:21:47,912 INFO DISTRO:|0|0|0| + +2025-09-24 15:22:47,913 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:22:47,914 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-24 15:22:47,914 INFO DISTRO:|0|0|0| + +2025-09-24 15:23:47,916 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:23:47,917 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-24 15:23:47,917 INFO DISTRO:|0|0|0| + +2025-09-24 15:24:47,918 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:24:47,918 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-24 15:24:47,918 INFO DISTRO:|0|0|0| + +2025-09-24 15:25:47,919 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:25:47,919 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-24 15:25:47,919 INFO DISTRO:|0|0|0| + +2025-09-24 15:26:47,920 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:26:47,920 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-24 15:26:47,920 INFO DISTRO:|0|0|0| + +2025-09-24 15:27:47,920 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:27:47,922 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-24 15:27:47,922 INFO DISTRO:|0|0|0| + +2025-09-24 15:28:47,924 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:28:47,924 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-24 15:28:47,924 INFO DISTRO:|0|0|0| + +2025-09-24 15:29:47,925 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:29:47,926 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-24 15:29:47,926 INFO DISTRO:|0|0|0| + +2025-09-24 15:30:47,927 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 15:30:47,928 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 15:30:47,928 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:30:47,928 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-24 15:30:47,928 INFO DISTRO:|0|0|0| + +2025-09-24 15:31:47,929 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:31:47,930 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-24 15:31:47,930 INFO DISTRO:|0|0|0| + +2025-09-24 15:32:47,930 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:32:47,930 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-24 15:32:47,930 INFO DISTRO:|0|0|0| + +2025-09-24 15:33:47,931 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:33:47,931 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-24 15:33:47,931 INFO DISTRO:|0|0|0| + +2025-09-24 15:34:47,932 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:34:47,933 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-24 15:34:47,933 INFO DISTRO:|0|0|0| + +2025-09-24 15:35:47,935 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:35:47,937 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-24 15:35:47,937 INFO DISTRO:|0|0|0| + +2025-09-24 15:36:47,937 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:36:47,938 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-24 15:36:47,938 INFO DISTRO:|0|0|0| + +2025-09-24 15:37:47,938 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:37:47,939 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-24 15:37:47,940 INFO DISTRO:|0|0|0| + +2025-09-24 15:38:47,941 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:38:47,942 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-24 15:38:47,942 INFO DISTRO:|0|0|0| + +2025-09-24 15:39:47,943 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:39:47,944 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-24 15:39:47,944 INFO DISTRO:|0|0|0| + +2025-09-24 15:40:47,945 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 15:40:47,945 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 15:40:47,945 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:40:47,945 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-24 15:40:47,945 INFO DISTRO:|0|0|0| + +2025-09-24 15:41:47,946 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:41:47,947 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-24 15:41:47,947 INFO DISTRO:|0|0|0| + +2025-09-24 15:42:47,948 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:42:47,948 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-24 15:42:47,948 INFO DISTRO:|0|0|0| + +2025-09-24 15:43:47,948 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:43:47,949 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-24 15:43:47,949 INFO DISTRO:|0|0|0| + +2025-09-24 15:44:47,951 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:44:47,951 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-24 15:44:47,951 INFO DISTRO:|0|0|0| + +2025-09-24 15:45:47,951 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:45:47,952 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-24 15:45:47,952 INFO DISTRO:|0|0|0| + +2025-09-24 15:46:47,952 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:46:47,953 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-24 15:46:47,953 INFO DISTRO:|0|0|0| + +2025-09-24 15:47:47,954 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:47:47,954 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-24 15:47:47,954 INFO DISTRO:|0|0|0| + +2025-09-24 15:48:47,955 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:48:47,956 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-24 15:48:47,956 INFO DISTRO:|0|0|0| + +2025-09-24 15:49:47,958 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:49:47,959 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-24 15:49:47,959 INFO DISTRO:|0|0|0| + +2025-09-24 15:50:47,961 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 15:50:47,962 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 15:50:47,962 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:50:47,962 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-24 15:50:47,962 INFO DISTRO:|0|0|0| + +2025-09-24 15:51:47,964 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:51:47,965 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-24 15:51:47,965 INFO DISTRO:|0|0|0| + +2025-09-24 15:52:47,965 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:52:47,966 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-24 15:52:47,966 INFO DISTRO:|0|0|0| + +2025-09-24 15:53:47,967 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:53:47,968 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-24 15:53:47,968 INFO DISTRO:|0|0|0| + +2025-09-24 15:54:47,970 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:54:47,971 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-24 15:54:47,972 INFO DISTRO:|0|0|0| + +2025-09-24 15:55:47,972 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:55:47,973 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-24 15:55:47,973 INFO DISTRO:|0|0|0| + +2025-09-24 15:56:47,973 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:56:47,974 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-24 15:56:47,974 INFO DISTRO:|0|0|0| + +2025-09-24 15:57:47,974 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:57:47,975 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-24 15:57:47,975 INFO DISTRO:|0|0|0| + +2025-09-24 15:58:47,976 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:58:47,976 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-24 15:58:47,977 INFO DISTRO:|0|0|0| + +2025-09-24 15:59:47,977 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 15:59:47,978 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-24 15:59:47,979 INFO DISTRO:|0|0|0| + +2025-09-24 16:00:47,979 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 16:00:47,980 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 16:00:47,980 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:00:47,980 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-24 16:00:47,980 INFO DISTRO:|0|0|0| + +2025-09-24 16:01:47,980 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:01:47,981 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-24 16:01:47,982 INFO DISTRO:|0|0|0| + +2025-09-24 16:02:47,984 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:02:47,984 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-24 16:02:47,984 INFO DISTRO:|0|0|0| + +2025-09-24 16:03:47,984 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:03:47,985 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-24 16:03:47,985 INFO DISTRO:|0|0|0| + +2025-09-24 16:04:47,987 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:04:47,988 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-24 16:04:47,988 INFO DISTRO:|0|0|0| + +2025-09-24 16:05:47,988 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:05:47,989 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-24 16:05:47,989 INFO DISTRO:|0|0|0| + +2025-09-24 16:06:47,989 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:06:47,990 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-24 16:06:47,990 INFO DISTRO:|0|0|0| + +2025-09-24 16:07:47,992 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:07:47,993 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-24 16:07:47,993 INFO DISTRO:|0|0|0| + +2025-09-24 16:08:47,995 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:08:47,995 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-24 16:08:47,995 INFO DISTRO:|0|0|0| + +2025-09-24 16:09:47,996 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:09:47,996 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-24 16:09:47,996 INFO DISTRO:|0|0|0| + +2025-09-24 16:10:47,998 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 16:10:47,999 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 16:10:47,999 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:10:47,999 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-24 16:10:47,999 INFO DISTRO:|0|0|0| + +2025-09-24 16:11:48,000 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:11:48,000 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-24 16:11:48,000 INFO DISTRO:|0|0|0| + +2025-09-24 16:12:48,002 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:12:48,004 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-24 16:12:48,004 INFO DISTRO:|0|0|0| + +2025-09-24 16:13:48,005 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:13:48,006 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-24 16:13:48,006 INFO DISTRO:|0|0|0| + +2025-09-24 16:14:48,008 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:14:48,009 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-24 16:14:48,009 INFO DISTRO:|0|0|0| + +2025-09-24 16:15:48,010 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:15:48,010 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-24 16:15:48,010 INFO DISTRO:|0|0|0| + +2025-09-24 16:16:48,012 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:16:48,012 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-24 16:16:48,012 INFO DISTRO:|0|0|0| + +2025-09-24 16:17:48,012 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:17:48,013 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-24 16:17:48,013 INFO DISTRO:|0|0|0| + +2025-09-24 16:18:48,013 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:18:48,014 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-24 16:18:48,014 INFO DISTRO:|0|0|0| + +2025-09-24 16:19:48,014 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:19:48,014 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-24 16:19:48,015 INFO DISTRO:|0|0|0| + +2025-09-24 16:20:48,015 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 16:20:48,016 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 16:20:48,017 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:20:48,017 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-24 16:20:48,017 INFO DISTRO:|0|0|0| + +2025-09-24 16:21:48,017 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:21:48,017 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-24 16:21:48,017 INFO DISTRO:|0|0|0| + +2025-09-24 16:22:48,019 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:22:48,020 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-24 16:22:48,020 INFO DISTRO:|0|0|0| + +2025-09-24 16:23:48,021 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:23:48,022 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-24 16:23:48,022 INFO DISTRO:|0|0|0| + +2025-09-24 16:24:48,022 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:24:48,023 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-24 16:24:48,023 INFO DISTRO:|0|0|0| + +2025-09-24 16:25:48,024 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:25:48,024 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-24 16:25:48,024 INFO DISTRO:|0|0|0| + +2025-09-24 16:26:48,024 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:26:48,024 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-24 16:26:48,024 INFO DISTRO:|0|0|0| + +2025-09-24 16:27:48,025 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:27:48,025 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-24 16:27:48,025 INFO DISTRO:|0|0|0| + +2025-09-24 16:28:48,025 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:28:48,026 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-24 16:28:48,026 INFO DISTRO:|0|0|0| + +2025-09-24 16:29:48,026 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:29:48,026 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-24 16:29:48,026 INFO DISTRO:|0|0|0| + +2025-09-24 16:30:48,026 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 16:30:48,027 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 16:30:48,027 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:30:48,027 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-24 16:30:48,027 INFO DISTRO:|0|0|0| + +2025-09-24 16:31:48,028 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:31:48,029 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-24 16:31:48,029 INFO DISTRO:|0|0|0| + +2025-09-24 16:32:48,030 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:32:48,030 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-24 16:32:48,030 INFO DISTRO:|0|0|0| + +2025-09-24 16:33:48,032 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:33:48,032 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-24 16:33:48,032 INFO DISTRO:|0|0|0| + +2025-09-24 16:34:48,032 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:34:48,032 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-24 16:34:48,032 INFO DISTRO:|0|0|0| + +2025-09-24 16:35:48,035 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:35:48,035 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-24 16:35:48,035 INFO DISTRO:|0|0|0| + +2025-09-24 16:36:48,035 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:36:48,038 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-24 16:36:48,038 INFO DISTRO:|0|0|0| + +2025-09-24 16:37:48,039 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:37:48,039 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-24 16:37:48,039 INFO DISTRO:|0|0|0| + +2025-09-24 16:38:48,039 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:38:48,039 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-24 16:38:48,039 INFO DISTRO:|0|0|0| + +2025-09-24 16:39:48,040 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:39:48,040 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-24 16:39:48,040 INFO DISTRO:|0|0|0| + +2025-09-24 16:40:48,041 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 16:40:48,042 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 16:40:48,042 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:40:48,042 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-24 16:40:48,042 INFO DISTRO:|0|0|0| + +2025-09-24 16:41:48,043 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:41:48,043 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-24 16:41:48,043 INFO DISTRO:|0|0|0| + +2025-09-24 16:42:48,043 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:42:48,045 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-24 16:42:48,045 INFO DISTRO:|0|0|0| + +2025-09-24 16:43:48,046 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:43:48,047 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-24 16:43:48,047 INFO DISTRO:|0|0|0| + +2025-09-24 16:44:48,047 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:44:48,048 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-24 16:44:48,048 INFO DISTRO:|0|0|0| + +2025-09-24 16:45:48,048 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:45:48,049 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-24 16:45:48,049 INFO DISTRO:|0|0|0| + +2025-09-24 16:46:48,051 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:46:48,051 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-24 16:46:48,051 INFO DISTRO:|0|0|0| + +2025-09-24 16:47:48,051 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:47:48,052 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-24 16:47:48,052 INFO DISTRO:|0|0|0| + +2025-09-24 16:48:48,074 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:48:48,074 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-24 16:48:48,074 INFO DISTRO:|0|0|0| + +2025-09-24 16:49:48,074 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:49:48,075 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-24 16:49:48,075 INFO DISTRO:|0|0|0| + +2025-09-24 16:50:48,075 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 16:50:48,075 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 16:50:48,075 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:50:48,076 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-24 16:50:48,076 INFO DISTRO:|0|0|0| + +2025-09-24 16:51:48,076 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:51:48,077 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-24 16:51:48,077 INFO DISTRO:|0|0|0| + +2025-09-24 16:52:48,079 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:52:48,079 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-24 16:52:48,079 INFO DISTRO:|0|0|0| + +2025-09-24 16:53:48,080 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:53:48,080 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-24 16:53:48,080 INFO DISTRO:|0|0|0| + +2025-09-24 16:54:48,082 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:54:48,082 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-24 16:54:48,082 INFO DISTRO:|0|0|0| + +2025-09-24 16:55:48,083 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:55:48,084 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-24 16:55:48,084 INFO DISTRO:|0|0|0| + +2025-09-24 16:56:48,084 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:56:48,085 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-24 16:56:48,085 INFO DISTRO:|0|0|0| + +2025-09-24 16:57:48,086 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:57:48,086 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-24 16:57:48,086 INFO DISTRO:|0|0|0| + +2025-09-24 16:58:48,088 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:58:48,088 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-24 16:58:48,088 INFO DISTRO:|0|0|0| + +2025-09-24 16:59:48,089 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 16:59:48,089 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-24 16:59:48,089 INFO DISTRO:|0|0|0| + +2025-09-24 17:00:48,090 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 17:00:48,090 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 17:00:48,090 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:00:48,090 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-24 17:00:48,090 INFO DISTRO:|0|0|0| + +2025-09-24 17:01:48,091 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:01:48,092 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-24 17:01:48,092 INFO DISTRO:|0|0|0| + +2025-09-24 17:02:48,093 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:02:48,094 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-24 17:02:48,094 INFO DISTRO:|0|0|0| + +2025-09-24 17:03:48,095 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:03:48,096 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-24 17:03:48,096 INFO DISTRO:|0|0|0| + +2025-09-24 17:04:48,096 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:04:48,096 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-24 17:04:48,097 INFO DISTRO:|0|0|0| + +2025-09-24 17:05:48,097 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:05:48,098 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-24 17:05:48,098 INFO DISTRO:|0|0|0| + +2025-09-24 17:06:48,098 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:06:48,099 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-24 17:06:48,099 INFO DISTRO:|0|0|0| + +2025-09-24 17:07:48,099 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:07:48,100 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-24 17:07:48,100 INFO DISTRO:|0|0|0| + +2025-09-24 17:08:48,101 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:08:48,101 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-24 17:08:48,101 INFO DISTRO:|0|0|0| + +2025-09-24 17:09:48,101 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:09:48,102 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-24 17:09:48,102 INFO DISTRO:|0|0|0| + +2025-09-24 17:10:48,104 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 17:10:48,105 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 17:10:48,105 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:10:48,105 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-24 17:10:48,105 INFO DISTRO:|0|0|0| + +2025-09-24 17:11:48,107 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:11:48,108 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-24 17:11:48,108 INFO DISTRO:|0|0|0| + +2025-09-24 17:12:48,109 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:12:48,110 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-24 17:12:48,110 INFO DISTRO:|0|0|0| + +2025-09-24 17:13:48,110 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:13:48,111 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-24 17:13:48,111 INFO DISTRO:|0|0|0| + +2025-09-24 17:14:48,111 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:14:48,112 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-24 17:14:48,112 INFO DISTRO:|0|0|0| + +2025-09-24 17:15:48,113 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:15:48,114 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-24 17:15:48,114 INFO DISTRO:|0|0|0| + +2025-09-24 17:16:48,115 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:16:48,116 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-24 17:16:48,116 INFO DISTRO:|0|0|0| + +2025-09-24 17:17:48,116 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:17:48,117 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-24 17:17:48,117 INFO DISTRO:|0|0|0| + +2025-09-24 17:18:48,118 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:18:48,119 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-24 17:18:48,120 INFO DISTRO:|0|0|0| + +2025-09-24 17:19:48,121 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:19:48,122 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-24 17:19:48,122 INFO DISTRO:|0|0|0| + +2025-09-24 17:20:48,123 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 17:20:48,124 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 17:20:48,124 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:20:48,124 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-24 17:20:48,124 INFO DISTRO:|0|0|0| + +2025-09-24 17:21:48,126 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:21:48,127 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-24 17:21:48,127 INFO DISTRO:|0|0|0| + +2025-09-24 17:22:48,128 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:22:48,129 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-24 17:22:48,129 INFO DISTRO:|0|0|0| + +2025-09-24 17:23:48,129 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:23:48,130 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-24 17:23:48,131 INFO DISTRO:|0|0|0| + +2025-09-24 17:24:48,132 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:24:48,133 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-24 17:24:48,133 INFO DISTRO:|0|0|0| + +2025-09-24 17:25:48,133 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:25:48,133 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-24 17:25:48,133 INFO DISTRO:|0|0|0| + +2025-09-24 17:26:48,134 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:26:48,134 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-24 17:26:48,134 INFO DISTRO:|0|0|0| + +2025-09-24 17:27:48,135 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:27:48,135 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-24 17:27:48,135 INFO DISTRO:|0|0|0| + +2025-09-24 17:28:48,136 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:28:48,136 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-24 17:28:48,136 INFO DISTRO:|0|0|0| + +2025-09-24 17:29:48,136 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:29:48,136 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-24 17:29:48,136 INFO DISTRO:|0|0|0| + +2025-09-24 17:30:48,137 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 17:30:48,137 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 17:30:48,137 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:30:48,137 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-24 17:30:48,137 INFO DISTRO:|0|0|0| + +2025-09-24 17:31:48,137 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:31:48,138 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-24 17:31:48,139 INFO DISTRO:|0|0|0| + +2025-09-24 17:32:48,139 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:32:48,140 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-24 17:32:48,140 INFO DISTRO:|0|0|0| + +2025-09-24 17:33:48,140 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:33:48,141 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-24 17:33:48,141 INFO DISTRO:|0|0|0| + +2025-09-24 17:34:48,142 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:34:48,143 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-24 17:34:48,143 INFO DISTRO:|0|0|0| + +2025-09-24 17:35:48,143 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:35:48,144 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-24 17:35:48,144 INFO DISTRO:|0|0|0| + +2025-09-24 17:36:48,145 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:36:48,145 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-24 17:36:48,145 INFO DISTRO:|0|0|0| + +2025-09-24 17:37:48,145 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:37:48,145 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-24 17:37:48,145 INFO DISTRO:|0|0|0| + +2025-09-24 17:38:48,146 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:38:48,147 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-24 17:38:48,147 INFO DISTRO:|0|0|0| + +2025-09-24 17:39:48,148 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:39:48,149 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-24 17:39:48,149 INFO DISTRO:|0|0|0| + +2025-09-24 17:40:48,149 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 17:40:48,150 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 17:40:48,151 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:40:48,151 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-24 17:40:48,151 INFO DISTRO:|0|0|0| + +2025-09-24 17:41:48,151 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:41:48,152 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-24 17:41:48,152 INFO DISTRO:|0|0|0| + +2025-09-24 17:42:48,152 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:42:48,153 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-24 17:42:48,153 INFO DISTRO:|0|0|0| + +2025-09-24 17:43:48,154 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:43:48,155 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-24 17:43:48,155 INFO DISTRO:|0|0|0| + +2025-09-24 17:44:48,155 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:44:48,156 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-24 17:44:48,156 INFO DISTRO:|0|0|0| + +2025-09-24 17:45:48,157 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:45:48,158 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-24 17:45:48,158 INFO DISTRO:|0|0|0| + +2025-09-24 17:46:48,159 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:46:48,160 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-24 17:46:48,160 INFO DISTRO:|0|0|0| + +2025-09-24 17:47:48,161 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:47:48,162 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-24 17:47:48,162 INFO DISTRO:|0|0|0| + +2025-09-24 17:48:48,164 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:48:48,165 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-24 17:48:48,165 INFO DISTRO:|0|0|0| + +2025-09-24 17:49:48,165 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:49:48,166 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-24 17:49:48,166 INFO DISTRO:|0|0|0| + +2025-09-24 17:50:48,168 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 17:50:48,168 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 17:50:48,169 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:50:48,169 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-24 17:50:48,169 INFO DISTRO:|0|0|0| + +2025-09-24 17:51:48,169 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:51:48,170 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-24 17:51:48,170 INFO DISTRO:|0|0|0| + +2025-09-24 17:52:48,171 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:52:48,172 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-24 17:52:48,172 INFO DISTRO:|0|0|0| + +2025-09-24 17:53:48,172 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:53:48,172 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-24 17:53:48,172 INFO DISTRO:|0|0|0| + +2025-09-24 17:54:48,173 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:54:48,174 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-24 17:54:48,174 INFO DISTRO:|0|0|0| + +2025-09-24 17:55:48,176 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:55:48,177 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-24 17:55:48,177 INFO DISTRO:|0|0|0| + +2025-09-24 17:56:48,179 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:56:48,180 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-24 17:56:48,180 INFO DISTRO:|0|0|0| + +2025-09-24 17:57:48,181 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:57:48,182 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-24 17:57:48,182 INFO DISTRO:|0|0|0| + +2025-09-24 17:58:48,183 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:58:48,184 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-24 17:58:48,184 INFO DISTRO:|0|0|0| + +2025-09-24 17:59:48,185 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 17:59:48,186 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-24 17:59:48,186 INFO DISTRO:|0|0|0| + +2025-09-24 18:00:48,188 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 18:00:48,188 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 18:00:48,188 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:00:48,188 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-24 18:00:48,188 INFO DISTRO:|0|0|0| + +2025-09-24 18:01:48,189 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:01:48,190 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-24 18:01:48,190 INFO DISTRO:|0|0|0| + +2025-09-24 18:02:48,192 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:02:48,192 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-24 18:02:48,192 INFO DISTRO:|0|0|0| + +2025-09-24 18:03:48,194 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:03:48,195 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-24 18:03:48,195 INFO DISTRO:|0|0|0| + +2025-09-24 18:04:48,197 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:04:48,198 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-24 18:04:48,198 INFO DISTRO:|0|0|0| + +2025-09-24 18:05:48,199 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:05:48,200 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-24 18:05:48,200 INFO DISTRO:|0|0|0| + +2025-09-24 18:06:48,201 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:06:48,202 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-24 18:06:48,202 INFO DISTRO:|0|0|0| + +2025-09-24 18:07:48,204 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:07:48,205 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-24 18:07:48,205 INFO DISTRO:|0|0|0| + +2025-09-24 18:08:48,205 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:08:48,206 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-24 18:08:48,207 INFO DISTRO:|0|0|0| + +2025-09-24 18:09:48,209 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:09:48,210 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-24 18:09:48,210 INFO DISTRO:|0|0|0| + +2025-09-24 18:10:48,211 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 18:10:48,211 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 18:10:48,211 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:10:48,211 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-24 18:10:48,211 INFO DISTRO:|0|0|0| + +2025-09-24 18:11:48,212 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:11:48,213 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-24 18:11:48,213 INFO DISTRO:|0|0|0| + +2025-09-24 18:12:48,214 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:12:48,214 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-24 18:12:48,214 INFO DISTRO:|0|0|0| + +2025-09-24 18:13:48,216 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:13:48,217 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-24 18:13:48,217 INFO DISTRO:|0|0|0| + +2025-09-24 18:14:48,219 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:14:48,220 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-24 18:14:48,220 INFO DISTRO:|0|0|0| + +2025-09-24 18:15:48,221 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:15:48,221 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-24 18:15:48,221 INFO DISTRO:|0|0|0| + +2025-09-24 18:16:48,221 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:16:48,222 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-24 18:16:48,222 INFO DISTRO:|0|0|0| + +2025-09-24 18:17:48,222 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:17:48,223 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-24 18:17:48,224 INFO DISTRO:|0|0|0| + +2025-09-24 18:18:48,224 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:18:48,225 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-24 18:18:48,225 INFO DISTRO:|0|0|0| + +2025-09-24 18:19:48,226 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:19:48,226 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-24 18:19:48,226 INFO DISTRO:|0|0|0| + +2025-09-24 18:20:48,227 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 18:20:48,227 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 18:20:48,227 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:20:48,227 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-24 18:20:48,227 INFO DISTRO:|0|0|0| + +2025-09-24 18:21:48,227 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:21:48,228 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-24 18:21:48,228 INFO DISTRO:|0|0|0| + +2025-09-24 18:22:48,229 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:22:48,229 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-24 18:22:48,229 INFO DISTRO:|0|0|0| + +2025-09-24 18:23:48,230 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:23:48,230 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-24 18:23:48,230 INFO DISTRO:|0|0|0| + +2025-09-24 18:24:48,232 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:24:48,233 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-24 18:24:48,233 INFO DISTRO:|0|0|0| + +2025-09-24 18:25:48,234 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:25:48,234 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-24 18:25:48,234 INFO DISTRO:|0|0|0| + +2025-09-24 18:26:48,234 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:26:48,234 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-24 18:26:48,234 INFO DISTRO:|0|0|0| + +2025-09-24 18:27:48,235 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:27:48,235 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-24 18:27:48,235 INFO DISTRO:|0|0|0| + +2025-09-24 18:28:48,236 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:28:48,236 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-24 18:28:48,236 INFO DISTRO:|0|0|0| + +2025-09-24 18:29:48,236 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:29:48,237 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-24 18:29:48,237 INFO DISTRO:|0|0|0| + +2025-09-24 18:30:48,238 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 18:30:48,239 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 18:30:48,239 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:30:48,239 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-24 18:30:48,239 INFO DISTRO:|0|0|0| + +2025-09-24 18:31:48,239 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:31:48,240 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-24 18:31:48,240 INFO DISTRO:|0|0|0| + +2025-09-24 18:32:48,240 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:32:48,241 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-24 18:32:48,241 INFO DISTRO:|0|0|0| + +2025-09-24 18:33:48,241 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:33:48,242 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-24 18:33:48,242 INFO DISTRO:|0|0|0| + +2025-09-24 18:34:48,244 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:34:48,245 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-24 18:34:48,245 INFO DISTRO:|0|0|0| + +2025-09-24 18:35:48,246 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:35:48,246 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-24 18:35:48,246 INFO DISTRO:|0|0|0| + +2025-09-24 18:36:48,246 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:36:48,247 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-24 18:36:48,247 INFO DISTRO:|0|0|0| + +2025-09-24 18:37:48,249 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:37:48,249 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-24 18:37:48,249 INFO DISTRO:|0|0|0| + +2025-09-24 18:38:48,251 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:38:48,252 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-24 18:38:48,252 INFO DISTRO:|0|0|0| + +2025-09-24 18:39:48,254 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:39:48,255 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-24 18:39:48,255 INFO DISTRO:|0|0|0| + +2025-09-24 18:40:48,255 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 18:40:48,255 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 18:40:48,255 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:40:48,255 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-24 18:40:48,256 INFO DISTRO:|0|0|0| + +2025-09-24 18:41:48,256 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:41:48,256 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-24 18:41:48,256 INFO DISTRO:|0|0|0| + +2025-09-24 18:42:48,257 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:42:48,258 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-24 18:42:48,258 INFO DISTRO:|0|0|0| + +2025-09-24 18:43:48,258 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:43:48,259 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-24 18:43:48,259 INFO DISTRO:|0|0|0| + +2025-09-24 18:44:48,261 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:44:48,261 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-24 18:44:48,261 INFO DISTRO:|0|0|0| + +2025-09-24 18:45:48,263 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:45:48,263 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-24 18:45:48,263 INFO DISTRO:|0|0|0| + +2025-09-24 18:46:48,265 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:46:48,266 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-24 18:46:48,266 INFO DISTRO:|0|0|0| + +2025-09-24 18:47:48,267 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:47:48,268 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-24 18:47:48,268 INFO DISTRO:|0|0|0| + +2025-09-24 18:48:48,271 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:48:48,272 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-24 18:48:48,272 INFO DISTRO:|0|0|0| + +2025-09-24 18:49:48,274 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:49:48,274 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-24 18:49:48,274 INFO DISTRO:|0|0|0| + +2025-09-24 18:50:48,275 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 18:50:48,275 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 18:50:48,275 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:50:48,275 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-24 18:50:48,275 INFO DISTRO:|0|0|0| + +2025-09-24 18:51:48,276 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:51:48,276 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-24 18:51:48,277 INFO DISTRO:|0|0|0| + +2025-09-24 18:52:48,277 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:52:48,277 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-24 18:52:48,277 INFO DISTRO:|0|0|0| + +2025-09-24 18:53:48,279 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:53:48,279 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-24 18:53:48,280 INFO DISTRO:|0|0|0| + +2025-09-24 18:54:48,280 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:54:48,280 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-24 18:54:48,280 INFO DISTRO:|0|0|0| + +2025-09-24 18:55:48,282 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:55:48,282 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-24 18:55:48,282 INFO DISTRO:|0|0|0| + +2025-09-24 18:56:48,283 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:56:48,283 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-24 18:56:48,283 INFO DISTRO:|0|0|0| + +2025-09-24 18:57:48,284 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:57:48,284 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-24 18:57:48,284 INFO DISTRO:|0|0|0| + +2025-09-24 18:58:48,286 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:58:48,286 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-24 18:58:48,286 INFO DISTRO:|0|0|0| + +2025-09-24 18:59:48,289 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 18:59:48,289 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-24 18:59:48,289 INFO DISTRO:|0|0|0| + +2025-09-24 19:00:48,291 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 19:00:48,291 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 19:00:48,291 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:00:48,291 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-24 19:00:48,291 INFO DISTRO:|0|0|0| + +2025-09-24 19:01:48,293 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:01:48,293 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-24 19:01:48,293 INFO DISTRO:|0|0|0| + +2025-09-24 19:02:48,294 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:02:48,294 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-24 19:02:48,294 INFO DISTRO:|0|0|0| + +2025-09-24 19:03:48,295 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:03:48,295 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-24 19:03:48,295 INFO DISTRO:|0|0|0| + +2025-09-24 19:04:48,297 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:04:48,297 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-24 19:04:48,297 INFO DISTRO:|0|0|0| + +2025-09-24 19:05:48,298 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:05:48,298 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-24 19:05:48,298 INFO DISTRO:|0|0|0| + +2025-09-24 19:06:48,300 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:06:48,300 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-24 19:06:48,300 INFO DISTRO:|0|0|0| + +2025-09-24 19:07:48,301 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:07:48,301 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-24 19:07:48,301 INFO DISTRO:|0|0|0| + +2025-09-24 19:08:48,303 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:08:48,303 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-24 19:08:48,303 INFO DISTRO:|0|0|0| + +2025-09-24 19:09:48,303 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:09:48,304 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-24 19:09:48,304 INFO DISTRO:|0|0|0| + +2025-09-24 19:10:48,305 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 19:10:48,305 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 19:10:48,305 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:10:48,306 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-24 19:10:48,306 INFO DISTRO:|0|0|0| + +2025-09-24 19:11:48,308 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:11:48,308 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-24 19:11:48,308 INFO DISTRO:|0|0|0| + +2025-09-24 19:12:48,309 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:12:48,309 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-24 19:12:48,309 INFO DISTRO:|0|0|0| + +2025-09-24 19:13:48,311 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:13:48,312 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-24 19:13:48,313 INFO DISTRO:|0|0|0| + +2025-09-24 19:14:48,313 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:14:48,313 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-24 19:14:48,314 INFO DISTRO:|0|0|0| + +2025-09-24 19:15:48,314 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:15:48,314 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-24 19:15:48,314 INFO DISTRO:|0|0|0| + +2025-09-24 19:16:48,314 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:16:48,315 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-24 19:16:48,315 INFO DISTRO:|0|0|0| + +2025-09-24 19:17:48,316 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:17:48,316 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-24 19:17:48,316 INFO DISTRO:|0|0|0| + +2025-09-24 19:18:48,319 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:18:48,319 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-24 19:18:48,319 INFO DISTRO:|0|0|0| + +2025-09-24 19:19:48,320 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:19:48,320 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-24 19:19:48,320 INFO DISTRO:|0|0|0| + +2025-09-24 19:20:48,320 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 19:20:48,320 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 19:20:48,320 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:20:48,320 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-24 19:20:48,321 INFO DISTRO:|0|0|0| + +2025-09-24 19:21:48,323 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:21:48,323 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-24 19:21:48,323 INFO DISTRO:|0|0|0| + +2025-09-24 19:22:48,325 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:22:48,325 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-24 19:22:48,325 INFO DISTRO:|0|0|0| + +2025-09-24 19:23:48,326 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:23:48,326 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-24 19:23:48,326 INFO DISTRO:|0|0|0| + +2025-09-24 19:24:48,328 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:24:48,329 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-24 19:24:48,329 INFO DISTRO:|0|0|0| + +2025-09-24 19:25:48,331 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:25:48,331 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-24 19:25:48,331 INFO DISTRO:|0|0|0| + +2025-09-24 19:26:48,332 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:26:48,332 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-24 19:26:48,332 INFO DISTRO:|0|0|0| + +2025-09-24 19:27:48,334 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:27:48,335 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-24 19:27:48,335 INFO DISTRO:|0|0|0| + +2025-09-24 19:28:48,337 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:28:48,338 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-24 19:28:48,338 INFO DISTRO:|0|0|0| + +2025-09-24 19:29:48,340 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:29:48,341 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-24 19:29:48,341 INFO DISTRO:|0|0|0| + +2025-09-24 19:30:48,342 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 19:30:48,342 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 19:30:48,342 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:30:48,342 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-24 19:30:48,342 INFO DISTRO:|0|0|0| + +2025-09-24 19:31:48,343 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:31:48,343 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-24 19:31:48,344 INFO DISTRO:|0|0|0| + +2025-09-24 19:32:48,344 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:32:48,345 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-24 19:32:48,345 INFO DISTRO:|0|0|0| + +2025-09-24 19:33:48,347 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:33:48,348 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-24 19:33:48,349 INFO DISTRO:|0|0|0| + +2025-09-24 19:34:48,349 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:34:48,350 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-24 19:34:48,350 INFO DISTRO:|0|0|0| + +2025-09-24 19:35:48,352 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:35:48,353 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-24 19:35:48,353 INFO DISTRO:|0|0|0| + +2025-09-24 19:36:48,354 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:36:48,355 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-24 19:36:48,355 INFO DISTRO:|0|0|0| + +2025-09-24 19:37:48,357 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:37:48,357 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-24 19:37:48,357 INFO DISTRO:|0|0|0| + +2025-09-24 19:38:48,358 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:38:48,358 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-24 19:38:48,358 INFO DISTRO:|0|0|0| + +2025-09-24 19:39:48,359 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:39:48,360 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-24 19:39:48,360 INFO DISTRO:|0|0|0| + +2025-09-24 19:40:48,360 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 19:40:48,360 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 19:40:48,360 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:40:48,360 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-24 19:40:48,361 INFO DISTRO:|0|0|0| + +2025-09-24 19:41:48,361 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:41:48,361 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-24 19:41:48,361 INFO DISTRO:|0|0|0| + +2025-09-24 19:42:48,362 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:42:48,363 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-24 19:42:48,363 INFO DISTRO:|0|0|0| + +2025-09-24 19:43:48,365 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:43:48,366 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-24 19:43:48,367 INFO DISTRO:|0|0|0| + +2025-09-24 19:44:48,368 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:44:48,368 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-24 19:44:48,368 INFO DISTRO:|0|0|0| + +2025-09-24 19:45:48,369 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:45:48,370 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-24 19:45:48,370 INFO DISTRO:|0|0|0| + +2025-09-24 19:46:48,371 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:46:48,371 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-24 19:46:48,371 INFO DISTRO:|0|0|0| + +2025-09-24 19:47:48,373 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:47:48,374 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-24 19:47:48,374 INFO DISTRO:|0|0|0| + +2025-09-24 19:48:48,377 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:48:48,377 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-24 19:48:48,377 INFO DISTRO:|0|0|0| + +2025-09-24 19:49:48,379 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:49:48,380 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-24 19:49:48,380 INFO DISTRO:|0|0|0| + +2025-09-24 19:50:48,380 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 19:50:48,381 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 19:50:48,382 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:50:48,382 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-24 19:50:48,382 INFO DISTRO:|0|0|0| + +2025-09-24 19:51:48,383 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:51:48,383 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-24 19:51:48,383 INFO DISTRO:|0|0|0| + +2025-09-24 19:52:48,384 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:52:48,384 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-24 19:52:48,384 INFO DISTRO:|0|0|0| + +2025-09-24 19:53:48,385 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:53:48,386 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-24 19:53:48,386 INFO DISTRO:|0|0|0| + +2025-09-24 19:54:48,386 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:54:48,387 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-24 19:54:48,387 INFO DISTRO:|0|0|0| + +2025-09-24 19:55:48,388 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:55:48,389 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-24 19:55:48,389 INFO DISTRO:|0|0|0| + +2025-09-24 19:56:48,390 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:56:48,391 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-24 19:56:48,392 INFO DISTRO:|0|0|0| + +2025-09-24 19:57:48,392 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:57:48,393 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-24 19:57:48,393 INFO DISTRO:|0|0|0| + +2025-09-24 19:58:48,395 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:58:48,396 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-24 19:58:48,396 INFO DISTRO:|0|0|0| + +2025-09-24 19:59:48,398 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 19:59:48,399 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-24 19:59:48,399 INFO DISTRO:|0|0|0| + +2025-09-24 20:00:48,399 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 20:00:48,400 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 20:00:48,400 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:00:48,400 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-24 20:00:48,400 INFO DISTRO:|0|0|0| + +2025-09-24 20:01:48,401 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:01:48,402 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-24 20:01:48,402 INFO DISTRO:|0|0|0| + +2025-09-24 20:02:48,403 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:02:48,404 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-24 20:02:48,404 INFO DISTRO:|0|0|0| + +2025-09-24 20:03:48,404 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:03:48,405 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-24 20:03:48,405 INFO DISTRO:|0|0|0| + +2025-09-24 20:04:48,406 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:04:48,406 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-24 20:04:48,406 INFO DISTRO:|0|0|0| + +2025-09-24 20:05:48,408 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:05:48,409 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-24 20:05:48,409 INFO DISTRO:|0|0|0| + +2025-09-24 20:06:48,409 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:06:48,410 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-24 20:06:48,410 INFO DISTRO:|0|0|0| + +2025-09-24 20:07:48,412 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:07:48,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-24 20:07:48,413 INFO DISTRO:|0|0|0| + +2025-09-24 20:08:48,414 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:08:48,414 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-24 20:08:48,414 INFO DISTRO:|0|0|0| + +2025-09-24 20:09:48,415 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:09:48,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-24 20:09:48,416 INFO DISTRO:|0|0|0| + +2025-09-24 20:10:48,417 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 20:10:48,418 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 20:10:48,418 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:10:48,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-24 20:10:48,418 INFO DISTRO:|0|0|0| + +2025-09-24 20:11:48,420 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:11:48,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-24 20:11:48,421 INFO DISTRO:|0|0|0| + +2025-09-24 20:12:48,422 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:12:48,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-24 20:12:48,422 INFO DISTRO:|0|0|0| + +2025-09-24 20:13:48,422 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:13:48,423 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-24 20:13:48,423 INFO DISTRO:|0|0|0| + +2025-09-24 20:14:48,424 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:14:48,425 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-24 20:14:48,425 INFO DISTRO:|0|0|0| + +2025-09-24 20:15:48,427 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:15:48,428 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-24 20:15:48,428 INFO DISTRO:|0|0|0| + +2025-09-24 20:16:48,430 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:16:48,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-24 20:16:48,430 INFO DISTRO:|0|0|0| + +2025-09-24 20:17:48,430 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:17:48,431 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-24 20:17:48,431 INFO DISTRO:|0|0|0| + +2025-09-24 20:18:48,432 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:18:48,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-24 20:18:48,433 INFO DISTRO:|0|0|0| + +2025-09-24 20:19:48,438 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:19:48,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-24 20:19:48,439 INFO DISTRO:|0|0|0| + +2025-09-24 20:20:48,439 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 20:20:48,440 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 20:20:48,440 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:20:48,440 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-24 20:20:48,440 INFO DISTRO:|0|0|0| + +2025-09-24 20:21:48,442 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:21:48,442 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-24 20:21:48,442 INFO DISTRO:|0|0|0| + +2025-09-24 20:22:48,442 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:22:48,443 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-24 20:22:48,444 INFO DISTRO:|0|0|0| + +2025-09-24 20:23:48,444 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:23:48,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-24 20:23:48,445 INFO DISTRO:|0|0|0| + +2025-09-24 20:24:48,447 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:24:48,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-24 20:24:48,448 INFO DISTRO:|0|0|0| + +2025-09-24 20:25:48,449 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:25:48,449 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-24 20:25:48,449 INFO DISTRO:|0|0|0| + +2025-09-24 20:26:48,449 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:26:48,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-24 20:26:48,450 INFO DISTRO:|0|0|0| + +2025-09-24 20:27:48,450 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:27:48,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-24 20:27:48,450 INFO DISTRO:|0|0|0| + +2025-09-24 20:28:48,451 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:28:48,451 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-24 20:28:48,451 INFO DISTRO:|0|0|0| + +2025-09-24 20:29:48,453 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:29:48,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-24 20:29:48,453 INFO DISTRO:|0|0|0| + +2025-09-24 20:30:48,453 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 20:30:48,454 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 20:30:48,454 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:30:48,454 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-24 20:30:48,454 INFO DISTRO:|0|0|0| + +2025-09-24 20:31:48,455 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:31:48,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-24 20:31:48,456 INFO DISTRO:|0|0|0| + +2025-09-24 20:32:48,456 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:32:48,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-24 20:32:48,457 INFO DISTRO:|0|0|0| + +2025-09-24 20:33:48,458 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:33:48,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-24 20:33:48,459 INFO DISTRO:|0|0|0| + +2025-09-24 20:34:48,460 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:34:48,461 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-24 20:34:48,461 INFO DISTRO:|0|0|0| + +2025-09-24 20:35:48,463 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:35:48,464 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-24 20:35:48,464 INFO DISTRO:|0|0|0| + +2025-09-24 20:36:48,464 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:36:48,464 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-24 20:36:48,464 INFO DISTRO:|0|0|0| + +2025-09-24 20:37:48,465 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:37:48,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-24 20:37:48,465 INFO DISTRO:|0|0|0| + +2025-09-24 20:38:48,467 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:38:48,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-24 20:38:48,468 INFO DISTRO:|0|0|0| + +2025-09-24 20:39:48,470 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:39:48,471 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-24 20:39:48,471 INFO DISTRO:|0|0|0| + +2025-09-24 20:40:48,471 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 20:40:48,472 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 20:40:48,472 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:40:48,472 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-24 20:40:48,472 INFO DISTRO:|0|0|0| + +2025-09-24 20:41:48,474 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:41:48,475 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-24 20:41:48,476 INFO DISTRO:|0|0|0| + +2025-09-24 20:42:48,477 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:42:48,478 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-24 20:42:48,478 INFO DISTRO:|0|0|0| + +2025-09-24 20:43:48,478 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:43:48,478 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-24 20:43:48,478 INFO DISTRO:|0|0|0| + +2025-09-24 20:44:48,478 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:44:48,479 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-24 20:44:48,480 INFO DISTRO:|0|0|0| + +2025-09-24 20:45:48,482 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:45:48,482 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-24 20:45:48,482 INFO DISTRO:|0|0|0| + +2025-09-24 20:46:48,482 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:46:48,483 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-24 20:46:48,484 INFO DISTRO:|0|0|0| + +2025-09-24 20:47:48,486 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:47:48,487 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-24 20:47:48,487 INFO DISTRO:|0|0|0| + +2025-09-24 20:48:48,487 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:48:48,487 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-24 20:48:48,487 INFO DISTRO:|0|0|0| + +2025-09-24 20:49:48,489 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:49:48,490 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-24 20:49:48,490 INFO DISTRO:|0|0|0| + +2025-09-24 20:50:48,491 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 20:50:48,491 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 20:50:48,491 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:50:48,491 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-24 20:50:48,491 INFO DISTRO:|0|0|0| + +2025-09-24 20:51:48,492 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:51:48,493 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-24 20:51:48,493 INFO DISTRO:|0|0|0| + +2025-09-24 20:52:48,494 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:52:48,495 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-24 20:52:48,495 INFO DISTRO:|0|0|0| + +2025-09-24 20:53:48,498 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:53:48,499 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-24 20:53:48,499 INFO DISTRO:|0|0|0| + +2025-09-24 20:54:48,500 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:54:48,501 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-24 20:54:48,501 INFO DISTRO:|0|0|0| + +2025-09-24 20:55:48,503 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:55:48,504 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-24 20:55:48,504 INFO DISTRO:|0|0|0| + +2025-09-24 20:56:48,504 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:56:48,504 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-24 20:56:48,505 INFO DISTRO:|0|0|0| + +2025-09-24 20:57:48,505 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:57:48,505 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-24 20:57:48,505 INFO DISTRO:|0|0|0| + +2025-09-24 20:58:48,505 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:58:48,506 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-24 20:58:48,507 INFO DISTRO:|0|0|0| + +2025-09-24 20:59:48,508 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 20:59:48,509 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-24 20:59:48,509 INFO DISTRO:|0|0|0| + +2025-09-24 21:00:48,509 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 21:00:48,510 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 21:00:48,510 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:00:48,510 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-24 21:00:48,510 INFO DISTRO:|0|0|0| + +2025-09-24 21:01:48,511 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:01:48,512 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-24 21:01:48,512 INFO DISTRO:|0|0|0| + +2025-09-24 21:02:48,512 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:02:48,512 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-24 21:02:48,512 INFO DISTRO:|0|0|0| + +2025-09-24 21:03:48,514 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:03:48,515 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-24 21:03:48,515 INFO DISTRO:|0|0|0| + +2025-09-24 21:04:48,516 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:04:48,516 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-24 21:04:48,516 INFO DISTRO:|0|0|0| + +2025-09-24 21:05:48,518 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:05:48,519 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-24 21:05:48,519 INFO DISTRO:|0|0|0| + +2025-09-24 21:06:48,519 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:06:48,520 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-24 21:06:48,520 INFO DISTRO:|0|0|0| + +2025-09-24 21:07:48,521 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:07:48,521 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-24 21:07:48,521 INFO DISTRO:|0|0|0| + +2025-09-24 21:08:48,521 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:08:48,522 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-24 21:08:48,522 INFO DISTRO:|0|0|0| + +2025-09-24 21:09:48,524 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:09:48,524 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-24 21:09:48,524 INFO DISTRO:|0|0|0| + +2025-09-24 21:10:48,525 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 21:10:48,525 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 21:10:48,525 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:10:48,525 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-24 21:10:48,525 INFO DISTRO:|0|0|0| + +2025-09-24 21:11:48,525 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:11:48,526 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-24 21:11:48,527 INFO DISTRO:|0|0|0| + +2025-09-24 21:12:48,527 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:12:48,527 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-24 21:12:48,527 INFO DISTRO:|0|0|0| + +2025-09-24 21:13:48,529 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:13:48,530 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-24 21:13:48,530 INFO DISTRO:|0|0|0| + +2025-09-24 21:14:48,531 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:14:48,532 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-24 21:14:48,532 INFO DISTRO:|0|0|0| + +2025-09-24 21:15:48,532 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:15:48,532 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-24 21:15:48,532 INFO DISTRO:|0|0|0| + +2025-09-24 21:16:48,534 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:16:48,534 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-24 21:16:48,534 INFO DISTRO:|0|0|0| + +2025-09-24 21:17:48,536 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:17:48,537 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-24 21:17:48,537 INFO DISTRO:|0|0|0| + +2025-09-24 21:18:48,539 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:18:48,540 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-24 21:18:48,540 INFO DISTRO:|0|0|0| + +2025-09-24 21:19:48,541 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:19:48,542 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-24 21:19:48,542 INFO DISTRO:|0|0|0| + +2025-09-24 21:20:48,543 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 21:20:48,544 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 21:20:48,544 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:20:48,544 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-24 21:20:48,544 INFO DISTRO:|0|0|0| + +2025-09-24 21:21:48,545 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:21:48,546 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-24 21:21:48,546 INFO DISTRO:|0|0|0| + +2025-09-24 21:22:48,547 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:22:48,548 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-24 21:22:48,548 INFO DISTRO:|0|0|0| + +2025-09-24 21:23:48,548 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:23:48,548 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-24 21:23:48,548 INFO DISTRO:|0|0|0| + +2025-09-24 21:24:48,549 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:24:48,550 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-24 21:24:48,550 INFO DISTRO:|0|0|0| + +2025-09-24 21:25:48,551 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:25:48,551 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-24 21:25:48,551 INFO DISTRO:|0|0|0| + +2025-09-24 21:26:48,552 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:26:48,552 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-24 21:26:48,552 INFO DISTRO:|0|0|0| + +2025-09-24 21:27:48,552 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:27:48,552 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-24 21:27:48,553 INFO DISTRO:|0|0|0| + +2025-09-24 21:28:48,555 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:28:48,555 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-24 21:28:48,555 INFO DISTRO:|0|0|0| + +2025-09-24 21:29:48,557 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:29:48,557 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-24 21:29:48,557 INFO DISTRO:|0|0|0| + +2025-09-24 21:30:48,558 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 21:30:48,558 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 21:30:48,558 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:30:48,558 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-24 21:30:48,558 INFO DISTRO:|0|0|0| + +2025-09-24 21:31:48,560 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:31:48,561 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-24 21:31:48,561 INFO DISTRO:|0|0|0| + +2025-09-24 21:32:48,561 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:32:48,561 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-24 21:32:48,561 INFO DISTRO:|0|0|0| + +2025-09-24 21:33:48,562 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:33:48,562 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-24 21:33:48,562 INFO DISTRO:|0|0|0| + +2025-09-24 21:34:48,563 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:34:48,563 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-24 21:34:48,563 INFO DISTRO:|0|0|0| + +2025-09-24 21:35:48,565 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:35:48,565 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-24 21:35:48,565 INFO DISTRO:|0|0|0| + +2025-09-24 21:36:48,567 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:36:48,567 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-24 21:36:48,567 INFO DISTRO:|0|0|0| + +2025-09-24 21:37:48,569 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:37:48,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-24 21:37:48,569 INFO DISTRO:|0|0|0| + +2025-09-24 21:38:48,570 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:38:48,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-24 21:38:48,570 INFO DISTRO:|0|0|0| + +2025-09-24 21:39:48,571 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:39:48,571 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-24 21:39:48,571 INFO DISTRO:|0|0|0| + +2025-09-24 21:40:48,573 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 21:40:48,573 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 21:40:48,573 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:40:48,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-24 21:40:48,573 INFO DISTRO:|0|0|0| + +2025-09-24 21:41:48,575 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:41:48,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-24 21:41:48,576 INFO DISTRO:|0|0|0| + +2025-09-24 21:42:48,576 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:42:48,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-24 21:42:48,576 INFO DISTRO:|0|0|0| + +2025-09-24 21:43:48,577 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:43:48,577 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-24 21:43:48,578 INFO DISTRO:|0|0|0| + +2025-09-24 21:44:48,578 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:44:48,578 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-24 21:44:48,578 INFO DISTRO:|0|0|0| + +2025-09-24 21:45:48,579 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:45:48,579 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-24 21:45:48,579 INFO DISTRO:|0|0|0| + +2025-09-24 21:46:48,579 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:46:48,580 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-24 21:46:48,580 INFO DISTRO:|0|0|0| + +2025-09-24 21:47:48,580 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:47:48,580 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-24 21:47:48,580 INFO DISTRO:|0|0|0| + +2025-09-24 21:48:48,581 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:48:48,581 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-24 21:48:48,581 INFO DISTRO:|0|0|0| + +2025-09-24 21:49:48,582 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:49:48,582 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-24 21:49:48,582 INFO DISTRO:|0|0|0| + +2025-09-24 21:50:48,582 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 21:50:48,582 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 21:50:48,582 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:50:48,582 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-24 21:50:48,583 INFO DISTRO:|0|0|0| + +2025-09-24 21:51:48,584 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:51:48,584 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-24 21:51:48,584 INFO DISTRO:|0|0|0| + +2025-09-24 21:52:48,584 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:52:48,585 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-24 21:52:48,585 INFO DISTRO:|0|0|0| + +2025-09-24 21:53:48,586 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:53:48,586 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-24 21:53:48,587 INFO DISTRO:|0|0|0| + +2025-09-24 21:54:48,588 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:54:48,588 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-24 21:54:48,588 INFO DISTRO:|0|0|0| + +2025-09-24 21:55:48,589 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:55:48,590 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-24 21:55:48,590 INFO DISTRO:|0|0|0| + +2025-09-24 21:56:48,591 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:56:48,592 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-24 21:56:48,592 INFO DISTRO:|0|0|0| + +2025-09-24 21:57:48,593 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:57:48,594 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-24 21:57:48,594 INFO DISTRO:|0|0|0| + +2025-09-24 21:58:48,596 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:58:48,596 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-24 21:58:48,596 INFO DISTRO:|0|0|0| + +2025-09-24 21:59:48,597 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 21:59:48,597 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-24 21:59:48,597 INFO DISTRO:|0|0|0| + +2025-09-24 22:00:48,597 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 22:00:48,597 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 22:00:48,597 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:00:48,597 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-24 22:00:48,598 INFO DISTRO:|0|0|0| + +2025-09-24 22:01:48,599 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:01:48,600 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-24 22:01:48,600 INFO DISTRO:|0|0|0| + +2025-09-24 22:02:48,600 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:02:48,601 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-24 22:02:48,601 INFO DISTRO:|0|0|0| + +2025-09-24 22:03:48,601 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:03:48,602 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-24 22:03:48,602 INFO DISTRO:|0|0|0| + +2025-09-24 22:04:48,602 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:04:48,603 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-24 22:04:48,603 INFO DISTRO:|0|0|0| + +2025-09-24 22:05:48,603 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:05:48,603 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-24 22:05:48,603 INFO DISTRO:|0|0|0| + +2025-09-24 22:06:48,605 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:06:48,606 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-24 22:06:48,606 INFO DISTRO:|0|0|0| + +2025-09-24 22:07:48,608 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:07:48,608 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-24 22:07:48,608 INFO DISTRO:|0|0|0| + +2025-09-24 22:08:48,610 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:08:48,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-24 22:08:48,611 INFO DISTRO:|0|0|0| + +2025-09-24 22:09:48,611 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:09:48,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-24 22:09:48,612 INFO DISTRO:|0|0|0| + +2025-09-24 22:10:48,613 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 22:10:48,614 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 22:10:48,614 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:10:48,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-24 22:10:48,614 INFO DISTRO:|0|0|0| + +2025-09-24 22:11:48,616 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:11:48,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-24 22:11:48,617 INFO DISTRO:|0|0|0| + +2025-09-24 22:12:48,619 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:12:48,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-24 22:12:48,620 INFO DISTRO:|0|0|0| + +2025-09-24 22:13:48,621 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:13:48,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-24 22:13:48,622 INFO DISTRO:|0|0|0| + +2025-09-24 22:14:48,623 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:14:48,623 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-24 22:14:48,624 INFO DISTRO:|0|0|0| + +2025-09-24 22:15:48,624 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:15:48,625 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-24 22:15:48,625 INFO DISTRO:|0|0|0| + +2025-09-24 22:16:48,626 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:16:48,627 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-24 22:16:48,627 INFO DISTRO:|0|0|0| + +2025-09-24 22:17:48,628 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:17:48,629 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-24 22:17:48,629 INFO DISTRO:|0|0|0| + +2025-09-24 22:18:48,630 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:18:48,631 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-24 22:18:48,631 INFO DISTRO:|0|0|0| + +2025-09-24 22:19:48,632 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:19:48,633 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-24 22:19:48,634 INFO DISTRO:|0|0|0| + +2025-09-24 22:20:48,635 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 22:20:48,636 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 22:20:48,636 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:20:48,636 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-24 22:20:48,636 INFO DISTRO:|0|0|0| + +2025-09-24 22:21:48,637 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:21:48,637 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-24 22:21:48,637 INFO DISTRO:|0|0|0| + +2025-09-24 22:22:48,639 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:22:48,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-24 22:22:48,640 INFO DISTRO:|0|0|0| + +2025-09-24 22:23:48,642 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:23:48,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-24 22:23:48,643 INFO DISTRO:|0|0|0| + +2025-09-24 22:24:48,644 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:24:48,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-24 22:24:48,645 INFO DISTRO:|0|0|0| + +2025-09-24 22:25:48,646 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:25:48,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-24 22:25:48,647 INFO DISTRO:|0|0|0| + +2025-09-24 22:26:48,648 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:26:48,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-24 22:26:48,649 INFO DISTRO:|0|0|0| + +2025-09-24 22:27:48,649 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:27:48,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-24 22:27:48,650 INFO DISTRO:|0|0|0| + +2025-09-24 22:28:48,650 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:28:48,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-24 22:28:48,651 INFO DISTRO:|0|0|0| + +2025-09-24 22:29:48,651 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:29:48,652 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-24 22:29:48,652 INFO DISTRO:|0|0|0| + +2025-09-24 22:30:48,652 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 22:30:48,653 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 22:30:48,653 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:30:48,653 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-24 22:30:48,653 INFO DISTRO:|0|0|0| + +2025-09-24 22:31:48,653 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:31:48,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-24 22:31:48,654 INFO DISTRO:|0|0|0| + +2025-09-24 22:32:48,656 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:32:48,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-24 22:32:48,657 INFO DISTRO:|0|0|0| + +2025-09-24 22:33:48,658 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:33:48,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-24 22:33:48,659 INFO DISTRO:|0|0|0| + +2025-09-24 22:34:48,659 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:34:48,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-24 22:34:48,660 INFO DISTRO:|0|0|0| + +2025-09-24 22:35:48,660 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:35:48,661 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-24 22:35:48,661 INFO DISTRO:|0|0|0| + +2025-09-24 22:36:48,662 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:36:48,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-24 22:36:48,663 INFO DISTRO:|0|0|0| + +2025-09-24 22:37:48,665 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:37:48,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-24 22:37:48,666 INFO DISTRO:|0|0|0| + +2025-09-24 22:38:48,667 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:38:48,668 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-24 22:38:48,668 INFO DISTRO:|0|0|0| + +2025-09-24 22:39:48,668 INFO PERFORMANCE:|3|2|0|-1|-1|0|0 + +2025-09-24 22:39:48,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-24 22:39:48,669 INFO DISTRO:|0|0|0| + +2025-09-24 22:40:48,670 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 22:40:48,671 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 22:40:48,671 INFO PERFORMANCE:|3|2|0|-1|-1|0|0 + +2025-09-24 22:40:48,672 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-24 22:40:48,672 INFO DISTRO:|0|0|0| + +2025-09-24 22:41:48,672 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 22:41:48,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-24 22:41:48,674 INFO DISTRO:|0|0|0| + +2025-09-24 22:42:48,675 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 22:42:48,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-24 22:42:48,676 INFO DISTRO:|0|0|0| + +2025-09-24 22:43:48,676 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 22:43:48,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-24 22:43:48,676 INFO DISTRO:|0|0|0| + +2025-09-24 22:44:48,680 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 22:44:48,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-24 22:44:48,681 INFO DISTRO:|0|0|0| + +2025-09-24 22:45:48,681 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 22:45:48,682 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-24 22:45:48,682 INFO DISTRO:|0|0|0| + +2025-09-24 22:46:48,683 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 22:46:48,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-24 22:46:48,684 INFO DISTRO:|0|0|0| + +2025-09-24 22:47:48,685 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:47:48,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-24 22:47:48,686 INFO DISTRO:|0|0|0| + +2025-09-24 22:48:48,687 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:48:48,688 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-24 22:48:48,688 INFO DISTRO:|0|0|0| + +2025-09-24 22:49:48,688 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:49:48,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-24 22:49:48,690 INFO DISTRO:|0|0|0| + +2025-09-24 22:50:48,690 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 22:50:48,691 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 22:50:48,691 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:50:48,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-24 22:50:48,691 INFO DISTRO:|0|0|0| + +2025-09-24 22:51:48,693 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:51:48,694 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-24 22:51:48,694 INFO DISTRO:|0|0|0| + +2025-09-24 22:52:48,694 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:52:48,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-24 22:52:48,695 INFO DISTRO:|0|0|0| + +2025-09-24 22:53:48,695 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:53:48,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-24 22:53:48,697 INFO DISTRO:|0|0|0| + +2025-09-24 22:54:48,698 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:54:48,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-24 22:54:48,700 INFO DISTRO:|0|0|0| + +2025-09-24 22:55:48,701 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:55:48,702 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-24 22:55:48,702 INFO DISTRO:|0|0|0| + +2025-09-24 22:56:48,703 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:56:48,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-24 22:56:48,704 INFO DISTRO:|0|0|0| + +2025-09-24 22:57:48,704 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:57:48,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-24 22:57:48,706 INFO DISTRO:|0|0|0| + +2025-09-24 22:58:48,706 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:58:48,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-24 22:58:48,708 INFO DISTRO:|0|0|0| + +2025-09-24 22:59:48,708 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 22:59:48,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-24 22:59:48,709 INFO DISTRO:|0|0|0| + +2025-09-24 23:00:48,710 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 23:00:48,711 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 23:00:48,712 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:00:48,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-24 23:00:48,712 INFO DISTRO:|0|0|0| + +2025-09-24 23:01:48,712 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:01:48,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-24 23:01:48,713 INFO DISTRO:|0|0|0| + +2025-09-24 23:02:48,713 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:02:48,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-24 23:02:48,714 INFO DISTRO:|0|0|0| + +2025-09-24 23:03:48,715 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:03:48,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-24 23:03:48,716 INFO DISTRO:|0|0|0| + +2025-09-24 23:04:48,717 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:04:48,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-24 23:04:48,718 INFO DISTRO:|0|0|0| + +2025-09-24 23:05:48,719 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:05:48,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-24 23:05:48,720 INFO DISTRO:|0|0|0| + +2025-09-24 23:06:48,721 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:06:48,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-24 23:06:48,722 INFO DISTRO:|0|0|0| + +2025-09-24 23:07:48,724 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:07:48,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-24 23:07:48,726 INFO DISTRO:|0|0|0| + +2025-09-24 23:08:48,727 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:08:48,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-24 23:08:48,728 INFO DISTRO:|0|0|0| + +2025-09-24 23:09:48,728 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:09:48,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-24 23:09:48,728 INFO DISTRO:|0|0|0| + +2025-09-24 23:10:48,729 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 23:10:48,729 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 23:10:48,729 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:10:48,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-24 23:10:48,730 INFO DISTRO:|0|0|0| + +2025-09-24 23:11:48,730 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:11:48,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-24 23:11:48,731 INFO DISTRO:|0|0|0| + +2025-09-24 23:12:48,732 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:12:48,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-24 23:12:48,733 INFO DISTRO:|0|0|0| + +2025-09-24 23:13:48,734 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:13:48,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-24 23:13:48,736 INFO DISTRO:|0|0|0| + +2025-09-24 23:14:48,736 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:14:48,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-24 23:14:48,738 INFO DISTRO:|0|0|0| + +2025-09-24 23:15:48,740 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:15:48,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-24 23:15:48,741 INFO DISTRO:|0|0|0| + +2025-09-24 23:16:48,743 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:16:48,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-24 23:16:48,744 INFO DISTRO:|0|0|0| + +2025-09-24 23:17:48,745 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:17:48,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-24 23:17:48,746 INFO DISTRO:|0|0|0| + +2025-09-24 23:18:48,746 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:18:48,747 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-24 23:18:48,747 INFO DISTRO:|0|0|0| + +2025-09-24 23:19:48,748 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:19:48,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-24 23:19:48,748 INFO DISTRO:|0|0|0| + +2025-09-24 23:20:48,749 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 23:20:48,749 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 23:20:48,749 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:20:48,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-24 23:20:48,750 INFO DISTRO:|0|0|0| + +2025-09-24 23:21:48,750 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:21:48,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-24 23:21:48,750 INFO DISTRO:|0|0|0| + +2025-09-24 23:22:48,751 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:22:48,752 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-24 23:22:48,752 INFO DISTRO:|0|0|0| + +2025-09-24 23:23:48,753 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:23:48,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-24 23:23:48,753 INFO DISTRO:|0|0|0| + +2025-09-24 23:24:48,755 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:24:48,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-24 23:24:48,755 INFO DISTRO:|0|0|0| + +2025-09-24 23:25:48,756 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:25:48,758 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-24 23:25:48,758 INFO DISTRO:|0|0|0| + +2025-09-24 23:26:48,759 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:26:48,760 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-24 23:26:48,760 INFO DISTRO:|0|0|0| + +2025-09-24 23:27:48,761 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:27:48,762 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-24 23:27:48,762 INFO DISTRO:|0|0|0| + +2025-09-24 23:28:48,762 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:28:48,763 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-24 23:28:48,763 INFO DISTRO:|0|0|0| + +2025-09-24 23:29:48,763 INFO PERFORMANCE:|3|2|0|-1|-1|0|0 + +2025-09-24 23:29:48,764 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-24 23:29:48,764 INFO DISTRO:|0|0|0| + +2025-09-24 23:30:48,765 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 23:30:48,766 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 23:30:48,766 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:30:48,766 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-24 23:30:48,766 INFO DISTRO:|0|0|0| + +2025-09-24 23:31:48,766 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:31:48,767 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-24 23:31:48,767 INFO DISTRO:|0|0|0| + +2025-09-24 23:32:48,767 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:32:48,769 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-24 23:32:48,769 INFO DISTRO:|0|0|0| + +2025-09-24 23:33:48,769 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:33:48,770 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-24 23:33:48,770 INFO DISTRO:|0|0|0| + +2025-09-24 23:34:48,770 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:34:48,771 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-24 23:34:48,771 INFO DISTRO:|0|0|0| + +2025-09-24 23:35:48,771 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:35:48,772 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-24 23:35:48,772 INFO DISTRO:|0|0|0| + +2025-09-24 23:36:48,773 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:36:48,773 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-24 23:36:48,774 INFO DISTRO:|0|0|0| + +2025-09-24 23:37:48,774 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:37:48,775 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-24 23:37:48,776 INFO DISTRO:|0|0|0| + +2025-09-24 23:38:48,777 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 + +2025-09-24 23:38:48,777 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-24 23:38:48,778 INFO DISTRO:|0|0|0| + +2025-09-24 23:39:48,778 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:39:48,778 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-24 23:39:48,778 INFO DISTRO:|0|0|0| + +2025-09-24 23:40:48,779 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 23:40:48,780 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 23:40:48,780 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:40:48,780 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-24 23:40:48,780 INFO DISTRO:|0|0|0| + +2025-09-24 23:41:48,781 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:41:48,782 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-24 23:41:48,782 INFO DISTRO:|0|0|0| + +2025-09-24 23:42:48,782 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:42:48,782 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-24 23:42:48,782 INFO DISTRO:|0|0|0| + +2025-09-24 23:43:48,783 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:43:48,784 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-24 23:43:48,784 INFO DISTRO:|0|0|0| + +2025-09-24 23:44:48,784 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:44:48,785 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-24 23:44:48,785 INFO DISTRO:|0|0|0| + +2025-09-24 23:45:48,785 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:45:48,785 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-24 23:45:48,785 INFO DISTRO:|0|0|0| + +2025-09-24 23:46:48,787 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:46:48,788 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-24 23:46:48,788 INFO DISTRO:|0|0|0| + +2025-09-24 23:47:48,788 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:47:48,789 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-24 23:47:48,789 INFO DISTRO:|0|0|0| + +2025-09-24 23:48:48,790 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:48:48,791 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-24 23:48:48,791 INFO DISTRO:|0|0|0| + +2025-09-24 23:49:48,794 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:49:48,795 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-24 23:49:48,795 INFO DISTRO:|0|0|0| + +2025-09-24 23:50:48,796 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount + +2025-09-24 23:50:48,797 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| + +2025-09-24 23:50:48,797 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:50:48,797 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-24 23:50:48,797 INFO DISTRO:|0|0|0| + +2025-09-24 23:51:48,797 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:51:48,803 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-24 23:51:48,804 INFO DISTRO:|0|0|0| + +2025-09-24 23:52:48,806 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:52:48,806 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-24 23:52:48,806 INFO DISTRO:|0|0|0| + +2025-09-24 23:53:48,807 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:53:48,808 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-24 23:53:48,808 INFO DISTRO:|0|0|0| + +2025-09-24 23:54:48,808 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:54:48,809 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-24 23:54:48,809 INFO DISTRO:|0|0|0| + +2025-09-24 23:55:48,809 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:55:48,809 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-24 23:55:48,810 INFO DISTRO:|0|0|0| + +2025-09-24 23:56:48,810 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 + +2025-09-24 23:56:48,810 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-24 23:56:48,810 INFO DISTRO:|0|0|0| diff --git a/docker/nacos/standalone-logs/naming-push.log b/docker/nacos/standalone-logs/naming-push.log index 414d7c9..117a38e 100644 --- a/docker/nacos/standalone-logs/naming-push.log +++ b/docker/nacos/standalone-logs/naming-push.log @@ -1,4 +1,130 @@ -2025-09-23 00:29:49,850 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2} +2025-09-24 00:01:21,865 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=159} -2025-09-23 00:29:51,470 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=2} +2025-09-24 00:04:03,903 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=161} + +2025-09-24 00:04:48,332 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=163} + +2025-09-24 00:05:35,890 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=165} + +2025-09-24 00:07:38,433 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=167} + +2025-09-24 00:09:02,274 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=169} + +2025-09-24 00:09:43,628 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=171} + +2025-09-24 00:10:01,990 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=173} + +2025-09-24 00:13:57,317 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=175} + +2025-09-24 00:14:15,050 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=177} + +2025-09-24 00:18:17,978 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=179} + +2025-09-24 00:18:34,848 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=181} + +2025-09-24 00:21:34,182 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=50} + +2025-09-24 00:24:05,495 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=183} + +2025-09-24 00:24:58,377 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=185} + +2025-09-24 00:26:18,651 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=188} + +2025-09-24 00:26:58,756 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=190} + +2025-09-24 00:27:22,462 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=192} + +2025-09-24 00:36:48,412 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=194} + +2025-09-24 00:37:08,842 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=53} + +2025-09-24 00:39:39,004 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=196} + +2025-09-24 00:44:32,705 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=55} + +2025-09-24 00:46:14,055 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=198} + +2025-09-24 00:46:44,610 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=200} + +2025-09-24 00:48:43,506 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=202} + +2025-09-24 00:48:45,559 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=57} + +2025-09-24 00:51:47,644 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=59} + +2025-09-24 00:54:06,602 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=61} + +2025-09-24 00:56:09,674 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=63} + +2025-09-24 00:58:27,270 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=65} + +2025-09-24 01:02:16,378 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=67} + +2025-09-24 01:03:16,975 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=69} + +2025-09-24 01:03:39,084 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=71} + +2025-09-24 01:05:50,377 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=73} + +2025-09-24 01:06:28,750 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=75} + +2025-09-24 01:11:52,670 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=78} + +2025-09-24 01:13:09,422 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=80} + +2025-09-24 01:14:08,571 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=82} + +2025-09-24 01:14:28,190 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=84} + +2025-09-24 01:15:18,835 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=86} + +2025-09-24 01:15:43,070 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=88} + +2025-09-24 01:15:54,823 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=90} + +2025-09-24 01:16:10,364 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=92} + +2025-09-24 16:37:46,473 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=204} + +2025-09-24 16:37:49,681 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=94} + +2025-09-24 16:43:16,804 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=96} + +2025-09-24 22:26:17,764 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=206} + +2025-09-24 22:26:20,926 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=98} + +2025-09-24 22:27:20,513 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=100} + +2025-09-24 22:29:15,300 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=103} + +2025-09-24 22:31:14,596 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=105} + +2025-09-24 22:32:20,588 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=107} + +2025-09-24 22:46:50,056 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=2} + +2025-09-24 22:47:12,733 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=4} + +2025-09-24 22:48:30,547 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=6} + +2025-09-24 23:01:46,202 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=8} + +2025-09-24 23:08:27,422 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=10} + +2025-09-24 23:09:46,434 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=12} + +2025-09-24 23:10:00,640 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=14} + +2025-09-24 23:14:53,350 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=16} + +2025-09-24 23:15:18,536 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=18} + +2025-09-24 23:16:35,890 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=20} + +2025-09-24 23:19:32,321 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=22} + +2025-09-24 23:26:30,233 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=24} + +2025-09-24 23:39:36,396 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=2} diff --git a/docker/nacos/standalone-logs/naming-server.log b/docker/nacos/standalone-logs/naming-server.log index fa86c41..984b879 100644 --- a/docker/nacos/standalone-logs/naming-server.log +++ b/docker/nacos/standalone-logs/naming-server.log @@ -1,70 +1,348 @@ -2025-09-23 00:08:02,999 ERROR got exception. caused: Param 'pageNo' is required.; +2025-09-24 00:01:21,846 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=157}, 192.168.31.101:1301#true -2025-09-23 00:08:16,350 ERROR got exception. caused: Param 'pageSize' is required.; +2025-09-24 00:01:21,865 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=158}, 192.168.31.101:1301#true -2025-09-23 00:24:56,314 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=12}, 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":1758558264995,"metadataId":"192.168.31.101:1333:DEFAULT"} +2025-09-24 00:04:03,885 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=159}, 192.168.31.101:1301#true -2025-09-23 00:24:56,314 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=12}, 192.168.31.101:1333#true +2025-09-24 00:04:03,903 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=160}, 192.168.31.101:1301#true -2025-09-23 00:24:56,315 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE +2025-09-24 00:04:48,314 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=161}, 192.168.31.101:1301#true -2025-09-23 00:24:57,128 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=3}, 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":1758558264663,"metadataId":"192.168.31.101:1300:DEFAULT"} +2025-09-24 00:04:48,332 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=162}, 192.168.31.101:1301#true -2025-09-23 00:24:57,129 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=3}, 192.168.31.101:1300#true +2025-09-24 00:05:35,870 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=163}, 192.168.31.101:1301#true -2025-09-23 00:24:57,129 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type DELETE_SERVICE +2025-09-24 00:05:35,890 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=164}, 192.168.31.101:1301#true -2025-09-23 00:24:58,478 INFO Client connection 192.168.31.101:1300#true disconnect, remove instances and subscribers +2025-09-24 00:07:38,420 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=165}, 192.168.31.101:1301#true -2025-09-23 00:24:58,479 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers +2025-09-24 00:07:38,433 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=166}, 192.168.31.101:1301#true -2025-09-23 00:24:58,634 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=11}, 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":1758558265674,"metadataId":"192.168.31.101:1301:DEFAULT"} +2025-09-24 00:09:02,243 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=167}, 192.168.31.101:1301#true -2025-09-23 00:24:58,634 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=11}, 192.168.31.101:1301#true +2025-09-24 00:09:02,274 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=168}, 192.168.31.101:1301#true -2025-09-23 00:24:58,635 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-product,changed type DELETE_SERVICE +2025-09-24 00:09:43,538 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=169}, 192.168.31.101:1301#true -2025-09-23 00:25:03,479 INFO Client connection 192.168.31.101:1301#true disconnect, remove instances and subscribers +2025-09-24 00:09:43,628 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=170}, 192.168.31.101:1301#true -2025-09-23 00:25:46,882 INFO Client connection 192.168.31.101:1300#true connect +2025-09-24 00:10:01,969 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=171}, 192.168.31.101:1301#true -2025-09-23 00:25:46,882 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-24 00:10:01,990 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=172}, 192.168.31.101:1301#true -2025-09-23 00:25:46,883 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE +2025-09-24 00:13:57,233 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=173}, 192.168.31.101:1301#true -2025-09-23 00:26:16,885 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":1758558346882,"metadataId":"192.168.31.101:1300:DEFAULT"} +2025-09-24 00:13:57,317 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=174}, 192.168.31.101:1301#true -2025-09-23 00:26:16,886 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-24 00:14:14,992 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=175}, 192.168.31.101:1301#true -2025-09-23 00:26:16,886 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type DELETE_SERVICE +2025-09-24 00:14:15,050 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=176}, 192.168.31.101:1301#true -2025-09-23 00:26:18,485 INFO Client connection 192.168.31.101:1300#true disconnect, remove instances and subscribers +2025-09-24 00:18:17,959 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=177}, 192.168.31.101:1301#true -2025-09-23 00:26:42,433 WARN namespace : public, [DEFAULT_GROUP@@app-product] services are automatically cleaned +2025-09-24 00:18:17,978 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=178}, 192.168.31.101:1301#true -2025-09-23 00:26:59,460 ERROR got exception. caused: Param 'pageNo' is required.; +2025-09-24 00:18:34,827 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=179}, 192.168.31.101:1301#true -2025-09-23 00:27:42,434 WARN namespace : public, [DEFAULT_GROUP@@main-app] services are automatically cleaned +2025-09-24 00:18:34,848 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=180}, 192.168.31.101:1301#true -2025-09-23 00:29:47,219 INFO Client connection 192.168.31.101:1300#true connect +2025-09-24 00:19:02,408 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=66}, 192.168.31.101:1300#true -2025-09-23 00:29:47,219 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-24 00:21:34,168 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=48}, 192.168.31.101:1333#true -2025-09-23 00:29:47,219 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE +2025-09-24 00:21:34,182 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=49}, 192.168.31.101:1333#true -2025-09-23 00:29:49,759 INFO Client connection 192.168.31.101:1301#true connect +2025-09-24 00:24:05,479 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=181}, 192.168.31.101:1301#true -2025-09-23 00:29:49,759 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-24 00:24:05,495 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=182}, 192.168.31.101:1301#true -2025-09-23 00:29:49,760 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-product,changed type ADD_SERVICE +2025-09-24 00:24:58,356 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=183}, 192.168.31.101:1301#true -2025-09-23 00:29:49,850 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-24 00:24:58,377 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=184}, 192.168.31.101:1301#true -2025-09-23 00:29:51,396 INFO Client connection 192.168.31.101:1333#true connect +2025-09-24 00:26:13,700 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=185}, 192.168.31.101:1301#true -2025-09-23 00:29:51,396 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-24 00:26:18,630 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=186}, 192.168.31.101:1301#true -2025-09-23 00:29:51,396 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE +2025-09-24 00:26:18,651 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=187}, 192.168.31.101:1301#true -2025-09-23 00:29:51,470 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-24 00:26:33,067 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=50}, 192.168.31.101:1333#true + +2025-09-24 00:26:58,735 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=188}, 192.168.31.101:1301#true + +2025-09-24 00:26:58,755 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=189}, 192.168.31.101:1301#true + +2025-09-24 00:27:22,440 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=190}, 192.168.31.101:1301#true + +2025-09-24 00:27:22,462 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=191}, 192.168.31.101:1301#true + +2025-09-24 00:36:48,397 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=192}, 192.168.31.101:1301#true + +2025-09-24 00:36:48,412 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=193}, 192.168.31.101:1301#true + +2025-09-24 00:37:08,820 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=51}, 192.168.31.101:1333#true + +2025-09-24 00:37:08,840 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=52}, 192.168.31.101:1333#true + +2025-09-24 00:39:38,982 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=194}, 192.168.31.101:1301#true + +2025-09-24 00:39:38,999 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=195}, 192.168.31.101:1301#true + +2025-09-24 00:44:32,685 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=53}, 192.168.31.101:1333#true + +2025-09-24 00:44:32,705 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=54}, 192.168.31.101:1333#true + +2025-09-24 00:46:14,039 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=196}, 192.168.31.101:1301#true + +2025-09-24 00:46:14,054 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=197}, 192.168.31.101:1301#true + +2025-09-24 00:46:44,592 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=198}, 192.168.31.101:1301#true + +2025-09-24 00:46:44,610 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=199}, 192.168.31.101:1301#true + +2025-09-24 00:48:43,468 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=200}, 192.168.31.101:1301#true + +2025-09-24 00:48:43,505 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=201}, 192.168.31.101:1301#true + +2025-09-24 00:48:45,540 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=55}, 192.168.31.101:1333#true + +2025-09-24 00:48:45,559 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=56}, 192.168.31.101:1333#true + +2025-09-24 00:51:47,626 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=57}, 192.168.31.101:1333#true + +2025-09-24 00:51:47,644 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=58}, 192.168.31.101:1333#true + +2025-09-24 00:54:06,576 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=59}, 192.168.31.101:1333#true + +2025-09-24 00:54:06,602 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=60}, 192.168.31.101:1333#true + +2025-09-24 00:56:09,657 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=61}, 192.168.31.101:1333#true + +2025-09-24 00:56:09,673 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=62}, 192.168.31.101:1333#true + +2025-09-24 00:58:27,250 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=63}, 192.168.31.101:1333#true + +2025-09-24 00:58:27,269 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=64}, 192.168.31.101:1333#true + +2025-09-24 01:02:16,358 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=65}, 192.168.31.101:1333#true + +2025-09-24 01:02:16,378 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=66}, 192.168.31.101:1333#true + +2025-09-24 01:03:16,953 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=67}, 192.168.31.101:1333#true + +2025-09-24 01:03:16,975 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=68}, 192.168.31.101:1333#true + +2025-09-24 01:03:39,061 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=69}, 192.168.31.101:1333#true + +2025-09-24 01:03:39,084 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=70}, 192.168.31.101:1333#true + +2025-09-24 01:05:50,358 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=71}, 192.168.31.101:1333#true + +2025-09-24 01:05:50,377 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=72}, 192.168.31.101:1333#true + +2025-09-24 01:06:28,731 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=73}, 192.168.31.101:1333#true + +2025-09-24 01:06:28,750 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=74}, 192.168.31.101:1333#true + +2025-09-24 01:11:09,609 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=75}, 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":1758647438972,"metadataId":"192.168.31.101:1333:DEFAULT"} + +2025-09-24 01:11:09,609 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=75}, 192.168.31.101:1333#true + +2025-09-24 01:11:09,610 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE + +2025-09-24 01:11:11,888 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers + +2025-09-24 01:11:52,648 INFO Client connection 192.168.31.101:1333#true connect + +2025-09-24 01:11:52,653 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=76}, 192.168.31.101:1333#true + +2025-09-24 01:11:52,653 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE + +2025-09-24 01:11:52,670 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=77}, 192.168.31.101:1333#true + +2025-09-24 01:13:09,404 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=78}, 192.168.31.101:1333#true + +2025-09-24 01:13:09,422 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=79}, 192.168.31.101:1333#true + +2025-09-24 01:14:08,548 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=80}, 192.168.31.101:1333#true + +2025-09-24 01:14:08,571 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=81}, 192.168.31.101:1333#true + +2025-09-24 01:14:28,168 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=82}, 192.168.31.101:1333#true + +2025-09-24 01:14:28,190 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=83}, 192.168.31.101:1333#true + +2025-09-24 01:15:18,797 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=84}, 192.168.31.101:1333#true + +2025-09-24 01:15:18,834 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=85}, 192.168.31.101:1333#true + +2025-09-24 01:15:43,048 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=86}, 192.168.31.101:1333#true + +2025-09-24 01:15:43,070 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=87}, 192.168.31.101:1333#true + +2025-09-24 01:15:54,804 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=88}, 192.168.31.101:1333#true + +2025-09-24 01:15:54,823 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=89}, 192.168.31.101:1333#true + +2025-09-24 01:16:10,335 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=90}, 192.168.31.101:1333#true + +2025-09-24 01:16:10,363 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=91}, 192.168.31.101:1333#true + +2025-09-24 01:18:55,055 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=67}, 192.168.31.101:1300#true + +2025-09-24 01:19:38,229 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=68}, 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":1758647945044,"metadataId":"192.168.31.101:1300:DEFAULT"} + +2025-09-24 01:19:38,229 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=68}, 192.168.31.101:1300#true + +2025-09-24 01:19:38,229 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type DELETE_SERVICE + +2025-09-24 01:19:41,953 INFO Client connection 192.168.31.101:1300#true disconnect, remove instances and subscribers + +2025-09-24 01:20:02,894 INFO Client connection 192.168.31.101:1300#true connect + +2025-09-24 01:20:02,894 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=69}, 192.168.31.101:1300#true + +2025-09-24 01:20:02,895 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE + +2025-09-24 16:37:43,907 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=70}, 192.168.31.101:1300#true + +2025-09-24 16:37:46,412 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=202}, 192.168.31.101:1301#true + +2025-09-24 16:37:46,473 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=203}, 192.168.31.101:1301#true + +2025-09-24 16:37:49,635 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=92}, 192.168.31.101:1333#true + +2025-09-24 16:37:49,681 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=93}, 192.168.31.101:1333#true + +2025-09-24 16:43:16,794 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=94}, 192.168.31.101:1333#true + +2025-09-24 16:43:16,804 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=95}, 192.168.31.101:1333#true + +2025-09-24 22:26:12,893 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=71}, 192.168.31.101:1300#true + +2025-09-24 22:26:17,746 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=204}, 192.168.31.101:1301#true + +2025-09-24 22:26:17,764 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=205}, 192.168.31.101:1301#true + +2025-09-24 22:26:20,846 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=96}, 192.168.31.101:1333#true + +2025-09-24 22:26:20,926 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=97}, 192.168.31.101:1333#true + +2025-09-24 22:27:20,490 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=98}, 192.168.31.101:1333#true + +2025-09-24 22:27:20,513 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=99}, 192.168.31.101:1333#true + +2025-09-24 22:28:56,528 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=100}, 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":1758724105616,"metadataId":"192.168.31.101:1333:DEFAULT"} + +2025-09-24 22:28:56,528 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=100}, 192.168.31.101:1333#true + +2025-09-24 22:28:56,530 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE + +2025-09-24 22:28:59,337 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers + +2025-09-24 22:29:15,281 INFO Client connection 192.168.31.101:1333#true connect + +2025-09-24 22:29:15,281 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=101}, 192.168.31.101:1333#true + +2025-09-24 22:29:15,281 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE + +2025-09-24 22:29:15,300 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=102}, 192.168.31.101:1333#true + +2025-09-24 22:31:14,578 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=103}, 192.168.31.101:1333#true + +2025-09-24 22:31:14,596 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=104}, 192.168.31.101:1333#true + +2025-09-24 22:31:38,460 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=72}, 192.168.31.101:1300#true + +2025-09-24 22:32:20,567 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=105}, 192.168.31.101:1333#true + +2025-09-24 22:32:20,588 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=106}, 192.168.31.101:1333#true + +2025-09-24 22:39:45,341 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=107}, 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":1758724750949,"metadataId":"192.168.31.101:1333:DEFAULT"} + +2025-09-24 22:39:45,341 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=107}, 192.168.31.101:1333#true + +2025-09-24 22:39:45,342 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE + +2025-09-24 22:39:49,415 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers + +2025-09-24 22:41:44,971 WARN namespace : public, [DEFAULT_GROUP@@app-shared] services are automatically cleaned + +2025-09-24 22:46:50,036 INFO Client connection 192.168.31.101:1333#true connect + +2025-09-24 22:46:50,036 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-24 22:46:50,037 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE + +2025-09-24 22:46:50,056 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-24 22:46:55,702 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=73}, 192.168.31.101:1300#true + +2025-09-24 22:47:12,713 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-24 22:47:12,733 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-24 22:48:30,528 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=4}, 192.168.31.101:1333#true + +2025-09-24 22:48:30,546 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-24 22:55:01,020 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=74}, 192.168.31.101:1300#true + +2025-09-24 23:01:46,183 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-24 23:01:46,202 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-24 23:08:27,405 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=8}, 192.168.31.101:1333#true + +2025-09-24 23:08:27,422 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=9}, 192.168.31.101:1333#true + +2025-09-24 23:08:43,522 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=75}, 192.168.31.101:1300#true + +2025-09-24 23:09:42,190 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=76}, 192.168.31.101:1300#true + +2025-09-24 23:09:46,410 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=10}, 192.168.31.101:1333#true + +2025-09-24 23:09:46,434 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=11}, 192.168.31.101:1333#true + +2025-09-24 23:10:00,619 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=12}, 192.168.31.101:1333#true + +2025-09-24 23:10:00,640 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=13}, 192.168.31.101:1333#true + +2025-09-24 23:14:53,335 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=14}, 192.168.31.101:1333#true + +2025-09-24 23:14:53,350 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=15}, 192.168.31.101:1333#true + +2025-09-24 23:15:18,512 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-24 23:15:18,535 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-24 23:16:35,870 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-24 23:16:35,890 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-24 23:19:32,300 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-24 23:19:32,321 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-24 23:26:30,215 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-24 23:26:30,233 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-24 23:29:20,392 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=24}, 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":1758727725419,"metadataId":"192.168.31.101:1333:DEFAULT"} + +2025-09-24 23:29:20,392 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=24}, 192.168.31.101:1333#true + +2025-09-24 23:29:20,392 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE + +2025-09-24 23:29:24,788 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers + +2025-09-24 23:30:45,000 WARN namespace : public, [DEFAULT_GROUP@@app-shared] services are automatically cleaned + +2025-09-24 23:39:36,385 INFO Client connection 192.168.31.101:1333#true connect + +2025-09-24 23:39:36,386 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-24 23:39:36,386 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE + +2025-09-24 23:39:36,396 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=1}, 192.168.31.101:1333#true diff --git a/docker/nacos/standalone-logs/plugin-control-connection.log b/docker/nacos/standalone-logs/plugin-control-connection.log index 9ddbbf3..97953ef 100644 --- a/docker/nacos/standalone-logs/plugin-control-connection.log +++ b/docker/nacos/standalone-logs/plugin-control-connection.log @@ -1,12228 +1,287262 @@ -2025-09-23 00:00:00,189 INFO Connection check task start +2025-09-24 00:00:02,278 INFO Connection check task start -2025-09-23 00:00:00,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:02,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:00,195 INFO Out dated connection ,size=0 +2025-09-24 00:00:02,294 INFO Out dated connection ,size=0 -2025-09-23 00:00:00,195 INFO Connection check task end +2025-09-24 00:00:02,294 INFO Connection check task end -2025-09-23 00:00:02,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:02,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:03,196 INFO Connection check task start +2025-09-24 00:00:05,295 INFO Connection check task start -2025-09-23 00:00:03,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:05,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:03,196 INFO Out dated connection ,size=0 +2025-09-24 00:00:05,295 INFO Out dated connection ,size=0 -2025-09-23 00:00:03,196 INFO Connection check task end +2025-09-24 00:00:05,295 INFO Connection check task end -2025-09-23 00:00:05,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:05,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:06,197 INFO Connection check task start +2025-09-24 00:00:08,296 INFO Connection check task start -2025-09-23 00:00:06,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:08,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:06,198 INFO Out dated connection ,size=0 +2025-09-24 00:00:08,296 INFO Out dated connection ,size=0 -2025-09-23 00:00:06,198 INFO Connection check task end +2025-09-24 00:00:08,296 INFO Connection check task end -2025-09-23 00:00:08,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:08,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:09,198 INFO Connection check task start +2025-09-24 00:00:11,296 INFO Connection check task start -2025-09-23 00:00:09,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:11,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:09,199 INFO Out dated connection ,size=0 +2025-09-24 00:00:11,296 INFO Out dated connection ,size=0 -2025-09-23 00:00:09,199 INFO Connection check task end +2025-09-24 00:00:11,297 INFO Connection check task end -2025-09-23 00:00:11,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:11,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:12,199 INFO Connection check task start +2025-09-24 00:00:14,297 INFO Connection check task start -2025-09-23 00:00:12,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:14,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:12,199 INFO Out dated connection ,size=0 +2025-09-24 00:00:14,298 INFO Out dated connection ,size=0 -2025-09-23 00:00:12,199 INFO Connection check task end +2025-09-24 00:00:14,298 INFO Connection check task end -2025-09-23 00:00:14,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:14,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:15,200 INFO Connection check task start +2025-09-24 00:00:17,298 INFO Connection check task start -2025-09-23 00:00:15,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:17,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:15,200 INFO Out dated connection ,size=0 +2025-09-24 00:00:17,298 INFO Out dated connection ,size=0 -2025-09-23 00:00:15,200 INFO Connection check task end +2025-09-24 00:00:17,298 INFO Connection check task end -2025-09-23 00:00:17,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:17,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:18,200 INFO Connection check task start +2025-09-24 00:00:20,298 INFO Connection check task start -2025-09-23 00:00:18,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:20,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:18,201 INFO Out dated connection ,size=0 +2025-09-24 00:00:20,299 INFO Out dated connection ,size=0 -2025-09-23 00:00:18,201 INFO Connection check task end +2025-09-24 00:00:20,299 INFO Connection check task end -2025-09-23 00:00:20,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:20,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:21,203 INFO Connection check task start +2025-09-24 00:00:23,299 INFO Connection check task start -2025-09-23 00:00:21,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:23,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:21,203 INFO Out dated connection ,size=0 +2025-09-24 00:00:23,300 INFO Out dated connection ,size=0 -2025-09-23 00:00:21,203 INFO Connection check task end +2025-09-24 00:00:23,300 INFO Connection check task end -2025-09-23 00:00:23,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:23,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:24,204 INFO Connection check task start +2025-09-24 00:00:26,301 INFO Connection check task start -2025-09-23 00:00:24,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:26,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:24,204 INFO Out dated connection ,size=0 +2025-09-24 00:00:26,301 INFO Out dated connection ,size=0 -2025-09-23 00:00:24,204 INFO Connection check task end +2025-09-24 00:00:26,301 INFO Connection check task end -2025-09-23 00:00:26,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:26,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:27,205 INFO Connection check task start +2025-09-24 00:00:29,302 INFO Connection check task start -2025-09-23 00:00:27,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:29,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:27,205 INFO Out dated connection ,size=0 +2025-09-24 00:00:29,303 INFO Out dated connection ,size=0 -2025-09-23 00:00:27,205 INFO Connection check task end +2025-09-24 00:00:29,303 INFO Connection check task end -2025-09-23 00:00:29,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:29,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:30,207 INFO Connection check task start +2025-09-24 00:00:32,303 INFO Connection check task start -2025-09-23 00:00:30,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:32,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:30,207 INFO Out dated connection ,size=0 +2025-09-24 00:00:32,303 INFO Out dated connection ,size=0 -2025-09-23 00:00:30,207 INFO Connection check task end +2025-09-24 00:00:32,303 INFO Connection check task end -2025-09-23 00:00:32,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:32,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:33,207 INFO Connection check task start +2025-09-24 00:00:35,304 INFO Connection check task start -2025-09-23 00:00:33,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:35,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:33,208 INFO Out dated connection ,size=0 +2025-09-24 00:00:35,304 INFO Out dated connection ,size=0 -2025-09-23 00:00:33,208 INFO Connection check task end +2025-09-24 00:00:35,304 INFO Connection check task end -2025-09-23 00:00:35,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:35,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:36,208 INFO Connection check task start +2025-09-24 00:00:38,304 INFO Connection check task start -2025-09-23 00:00:36,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:38,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:36,208 INFO Out dated connection ,size=0 +2025-09-24 00:00:38,304 INFO Out dated connection ,size=0 -2025-09-23 00:00:36,208 INFO Connection check task end +2025-09-24 00:00:38,304 INFO Connection check task end -2025-09-23 00:00:38,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:38,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:39,210 INFO Connection check task start +2025-09-24 00:00:41,305 INFO Connection check task start -2025-09-23 00:00:39,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:41,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:39,210 INFO Out dated connection ,size=0 +2025-09-24 00:00:41,305 INFO Out dated connection ,size=0 -2025-09-23 00:00:39,210 INFO Connection check task end +2025-09-24 00:00:41,305 INFO Connection check task end -2025-09-23 00:00:41,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:41,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:42,211 INFO Connection check task start +2025-09-24 00:00:44,305 INFO Connection check task start -2025-09-23 00:00:42,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:44,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:42,212 INFO Out dated connection ,size=0 +2025-09-24 00:00:44,306 INFO Out dated connection ,size=0 -2025-09-23 00:00:42,212 INFO Connection check task end +2025-09-24 00:00:44,306 INFO Connection check task end -2025-09-23 00:00:44,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:44,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:45,213 INFO Connection check task start +2025-09-24 00:00:47,307 INFO Connection check task start -2025-09-23 00:00:45,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:47,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:45,213 INFO Out dated connection ,size=0 +2025-09-24 00:00:47,307 INFO Out dated connection ,size=0 -2025-09-23 00:00:45,213 INFO Connection check task end +2025-09-24 00:00:47,307 INFO Connection check task end -2025-09-23 00:00:47,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:47,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:48,214 INFO Connection check task start +2025-09-24 00:00:50,308 INFO Connection check task start -2025-09-23 00:00:48,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:50,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:48,214 INFO Out dated connection ,size=0 +2025-09-24 00:00:50,308 INFO Out dated connection ,size=0 -2025-09-23 00:00:48,214 INFO Connection check task end +2025-09-24 00:00:50,308 INFO Connection check task end -2025-09-23 00:00:50,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:50,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:51,216 INFO Connection check task start +2025-09-24 00:00:53,308 INFO Connection check task start -2025-09-23 00:00:51,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:53,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:51,216 INFO Out dated connection ,size=0 +2025-09-24 00:00:53,308 INFO Out dated connection ,size=0 -2025-09-23 00:00:51,216 INFO Connection check task end +2025-09-24 00:00:53,309 INFO Connection check task end -2025-09-23 00:00:53,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:53,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:54,216 INFO Connection check task start +2025-09-24 00:00:56,309 INFO Connection check task start -2025-09-23 00:00:54,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:56,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:54,217 INFO Out dated connection ,size=0 +2025-09-24 00:00:56,309 INFO Out dated connection ,size=0 -2025-09-23 00:00:54,217 INFO Connection check task end +2025-09-24 00:00:56,309 INFO Connection check task end -2025-09-23 00:00:56,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:56,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:00:57,218 INFO Connection check task start +2025-09-24 00:00:59,310 INFO Connection check task start -2025-09-23 00:00:57,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:00:59,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:00:57,218 INFO Out dated connection ,size=0 +2025-09-24 00:00:59,311 INFO Out dated connection ,size=0 -2025-09-23 00:00:57,218 INFO Connection check task end +2025-09-24 00:00:59,311 INFO Connection check task end -2025-09-23 00:00:59,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:00:59,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:00,219 INFO Connection check task start +2025-09-24 00:01:02,312 INFO Connection check task start -2025-09-23 00:01:00,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:02,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:00,219 INFO Out dated connection ,size=0 +2025-09-24 00:01:02,312 INFO Out dated connection ,size=0 -2025-09-23 00:01:00,219 INFO Connection check task end +2025-09-24 00:01:02,312 INFO Connection check task end -2025-09-23 00:01:02,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:02,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:03,220 INFO Connection check task start +2025-09-24 00:01:05,312 INFO Connection check task start -2025-09-23 00:01:03,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:05,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:03,221 INFO Out dated connection ,size=0 +2025-09-24 00:01:05,312 INFO Out dated connection ,size=0 -2025-09-23 00:01:03,221 INFO Connection check task end +2025-09-24 00:01:05,312 INFO Connection check task end -2025-09-23 00:01:05,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:05,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:06,222 INFO Connection check task start +2025-09-24 00:01:08,313 INFO Connection check task start -2025-09-23 00:01:06,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:08,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:06,222 INFO Out dated connection ,size=0 +2025-09-24 00:01:08,313 INFO Out dated connection ,size=0 -2025-09-23 00:01:06,222 INFO Connection check task end +2025-09-24 00:01:08,313 INFO Connection check task end -2025-09-23 00:01:08,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:08,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:09,223 INFO Connection check task start +2025-09-24 00:01:11,314 INFO Connection check task start -2025-09-23 00:01:09,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:11,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:09,224 INFO Out dated connection ,size=0 +2025-09-24 00:01:11,315 INFO Out dated connection ,size=0 -2025-09-23 00:01:09,224 INFO Connection check task end +2025-09-24 00:01:11,315 INFO Connection check task end -2025-09-23 00:01:11,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:11,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:12,224 INFO Connection check task start +2025-09-24 00:01:14,315 INFO Connection check task start -2025-09-23 00:01:12,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:14,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:12,224 INFO Out dated connection ,size=0 +2025-09-24 00:01:14,316 INFO Out dated connection ,size=0 -2025-09-23 00:01:12,224 INFO Connection check task end +2025-09-24 00:01:14,316 INFO Connection check task end -2025-09-23 00:01:14,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:14,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:15,225 INFO Connection check task start +2025-09-24 00:01:17,317 INFO Connection check task start -2025-09-23 00:01:15,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:17,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:15,225 INFO Out dated connection ,size=0 +2025-09-24 00:01:17,317 INFO Out dated connection ,size=0 -2025-09-23 00:01:15,226 INFO Connection check task end +2025-09-24 00:01:17,317 INFO Connection check task end -2025-09-23 00:01:17,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:17,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:18,227 INFO Connection check task start +2025-09-24 00:01:20,318 INFO Connection check task start -2025-09-23 00:01:18,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:20,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:18,227 INFO Out dated connection ,size=0 +2025-09-24 00:01:20,318 INFO Out dated connection ,size=0 -2025-09-23 00:01:18,227 INFO Connection check task end +2025-09-24 00:01:20,318 INFO Connection check task end -2025-09-23 00:01:20,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:20,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:21,227 INFO Connection check task start +2025-09-24 00:01:23,318 INFO Connection check task start -2025-09-23 00:01:21,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:23,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:21,228 INFO Out dated connection ,size=0 +2025-09-24 00:01:23,319 INFO Out dated connection ,size=0 -2025-09-23 00:01:21,228 INFO Connection check task end +2025-09-24 00:01:23,319 INFO Connection check task end -2025-09-23 00:01:23,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:23,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:24,228 INFO Connection check task start +2025-09-24 00:01:26,319 INFO Connection check task start -2025-09-23 00:01:24,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:26,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:24,228 INFO Out dated connection ,size=0 +2025-09-24 00:01:26,319 INFO Out dated connection ,size=0 -2025-09-23 00:01:24,228 INFO Connection check task end +2025-09-24 00:01:26,319 INFO Connection check task end -2025-09-23 00:01:26,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:26,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:27,229 INFO Connection check task start +2025-09-24 00:01:29,320 INFO Connection check task start -2025-09-23 00:01:27,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:29,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:27,230 INFO Out dated connection ,size=0 +2025-09-24 00:01:29,320 INFO Out dated connection ,size=0 -2025-09-23 00:01:27,230 INFO Connection check task end +2025-09-24 00:01:29,320 INFO Connection check task end -2025-09-23 00:01:29,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:29,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:30,230 INFO Connection check task start +2025-09-24 00:01:32,321 INFO Connection check task start -2025-09-23 00:01:30,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:32,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:30,231 INFO Out dated connection ,size=0 +2025-09-24 00:01:32,321 INFO Out dated connection ,size=0 -2025-09-23 00:01:30,231 INFO Connection check task end +2025-09-24 00:01:32,321 INFO Connection check task end -2025-09-23 00:01:32,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:32,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:33,231 INFO Connection check task start +2025-09-24 00:01:35,322 INFO Connection check task start -2025-09-23 00:01:33,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:35,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:33,232 INFO Out dated connection ,size=0 +2025-09-24 00:01:35,322 INFO Out dated connection ,size=0 -2025-09-23 00:01:33,232 INFO Connection check task end +2025-09-24 00:01:35,322 INFO Connection check task end -2025-09-23 00:01:35,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:35,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:36,233 INFO Connection check task start +2025-09-24 00:01:38,322 INFO Connection check task start -2025-09-23 00:01:36,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:38,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:36,233 INFO Out dated connection ,size=0 +2025-09-24 00:01:38,322 INFO Out dated connection ,size=0 -2025-09-23 00:01:36,233 INFO Connection check task end +2025-09-24 00:01:38,323 INFO Connection check task end -2025-09-23 00:01:38,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:38,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:39,234 INFO Connection check task start +2025-09-24 00:01:41,323 INFO Connection check task start -2025-09-23 00:01:39,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:41,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:39,234 INFO Out dated connection ,size=0 +2025-09-24 00:01:41,324 INFO Out dated connection ,size=0 -2025-09-23 00:01:39,234 INFO Connection check task end +2025-09-24 00:01:41,324 INFO Connection check task end -2025-09-23 00:01:41,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:41,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:42,235 INFO Connection check task start +2025-09-24 00:01:44,324 INFO Connection check task start -2025-09-23 00:01:42,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:44,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:42,235 INFO Out dated connection ,size=0 +2025-09-24 00:01:44,324 INFO Out dated connection ,size=0 -2025-09-23 00:01:42,235 INFO Connection check task end +2025-09-24 00:01:44,324 INFO Connection check task end -2025-09-23 00:01:44,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:44,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:45,236 INFO Connection check task start +2025-09-24 00:01:47,325 INFO Connection check task start -2025-09-23 00:01:45,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:47,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:45,236 INFO Out dated connection ,size=0 +2025-09-24 00:01:47,325 INFO Out dated connection ,size=0 -2025-09-23 00:01:45,236 INFO Connection check task end +2025-09-24 00:01:47,325 INFO Connection check task end -2025-09-23 00:01:47,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:47,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:48,237 INFO Connection check task start +2025-09-24 00:01:50,325 INFO Connection check task start -2025-09-23 00:01:48,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:50,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:48,237 INFO Out dated connection ,size=0 +2025-09-24 00:01:50,326 INFO Out dated connection ,size=0 -2025-09-23 00:01:48,237 INFO Connection check task end +2025-09-24 00:01:50,326 INFO Connection check task end -2025-09-23 00:01:50,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:50,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:51,237 INFO Connection check task start +2025-09-24 00:01:53,327 INFO Connection check task start -2025-09-23 00:01:51,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:53,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:51,238 INFO Out dated connection ,size=0 +2025-09-24 00:01:53,327 INFO Out dated connection ,size=0 -2025-09-23 00:01:51,238 INFO Connection check task end +2025-09-24 00:01:53,327 INFO Connection check task end -2025-09-23 00:01:53,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:53,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:54,238 INFO Connection check task start +2025-09-24 00:01:56,328 INFO Connection check task start -2025-09-23 00:01:54,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:56,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:54,238 INFO Out dated connection ,size=0 +2025-09-24 00:01:56,329 INFO Out dated connection ,size=0 -2025-09-23 00:01:54,238 INFO Connection check task end +2025-09-24 00:01:56,329 INFO Connection check task end -2025-09-23 00:01:56,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:56,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:01:57,239 INFO Connection check task start +2025-09-24 00:01:59,330 INFO Connection check task start -2025-09-23 00:01:57,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:01:59,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:01:57,239 INFO Out dated connection ,size=0 +2025-09-24 00:01:59,330 INFO Out dated connection ,size=0 -2025-09-23 00:01:57,239 INFO Connection check task end +2025-09-24 00:01:59,330 INFO Connection check task end -2025-09-23 00:01:59,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:01:59,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:00,239 INFO Connection check task start +2025-09-24 00:02:02,331 INFO Connection check task start -2025-09-23 00:02:00,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:02,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:00,240 INFO Out dated connection ,size=0 +2025-09-24 00:02:02,331 INFO Out dated connection ,size=0 -2025-09-23 00:02:00,240 INFO Connection check task end +2025-09-24 00:02:02,331 INFO Connection check task end -2025-09-23 00:02:02,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:02,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:03,240 INFO Connection check task start +2025-09-24 00:02:05,331 INFO Connection check task start -2025-09-23 00:02:03,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:05,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:03,240 INFO Out dated connection ,size=0 +2025-09-24 00:02:05,332 INFO Out dated connection ,size=0 -2025-09-23 00:02:03,240 INFO Connection check task end +2025-09-24 00:02:05,332 INFO Connection check task end -2025-09-23 00:02:05,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:05,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:06,241 INFO Connection check task start +2025-09-24 00:02:08,333 INFO Connection check task start -2025-09-23 00:02:06,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:08,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:06,241 INFO Out dated connection ,size=0 +2025-09-24 00:02:08,333 INFO Out dated connection ,size=0 -2025-09-23 00:02:06,241 INFO Connection check task end +2025-09-24 00:02:08,333 INFO Connection check task end -2025-09-23 00:02:08,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:08,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:09,241 INFO Connection check task start +2025-09-24 00:02:11,334 INFO Connection check task start -2025-09-23 00:02:09,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:11,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:09,242 INFO Out dated connection ,size=0 +2025-09-24 00:02:11,334 INFO Out dated connection ,size=0 -2025-09-23 00:02:09,242 INFO Connection check task end +2025-09-24 00:02:11,334 INFO Connection check task end -2025-09-23 00:02:11,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:11,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:12,242 INFO Connection check task start +2025-09-24 00:02:14,335 INFO Connection check task start -2025-09-23 00:02:12,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:14,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:12,243 INFO Out dated connection ,size=0 +2025-09-24 00:02:14,335 INFO Out dated connection ,size=0 -2025-09-23 00:02:12,243 INFO Connection check task end +2025-09-24 00:02:14,335 INFO Connection check task end -2025-09-23 00:02:14,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:14,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:15,243 INFO Connection check task start +2025-09-24 00:02:17,336 INFO Connection check task start -2025-09-23 00:02:15,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:17,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:15,243 INFO Out dated connection ,size=0 +2025-09-24 00:02:17,340 INFO Out dated connection ,size=0 -2025-09-23 00:02:15,243 INFO Connection check task end +2025-09-24 00:02:17,340 INFO Connection check task end -2025-09-23 00:02:17,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:17,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:18,243 INFO Connection check task start +2025-09-24 00:02:20,341 INFO Connection check task start -2025-09-23 00:02:18,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:20,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:18,244 INFO Out dated connection ,size=0 +2025-09-24 00:02:20,341 INFO Out dated connection ,size=0 -2025-09-23 00:02:18,244 INFO Connection check task end +2025-09-24 00:02:20,341 INFO Connection check task end -2025-09-23 00:02:20,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:20,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:21,244 INFO Connection check task start +2025-09-24 00:02:23,341 INFO Connection check task start -2025-09-23 00:02:21,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:23,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:21,244 INFO Out dated connection ,size=0 +2025-09-24 00:02:23,342 INFO Out dated connection ,size=0 -2025-09-23 00:02:21,244 INFO Connection check task end +2025-09-24 00:02:23,342 INFO Connection check task end -2025-09-23 00:02:23,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:23,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:24,245 INFO Connection check task start +2025-09-24 00:02:26,342 INFO Connection check task start -2025-09-23 00:02:24,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:26,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:24,245 INFO Out dated connection ,size=0 +2025-09-24 00:02:26,342 INFO Out dated connection ,size=0 -2025-09-23 00:02:24,246 INFO Connection check task end +2025-09-24 00:02:26,342 INFO Connection check task end -2025-09-23 00:02:26,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:26,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:27,247 INFO Connection check task start +2025-09-24 00:02:29,343 INFO Connection check task start -2025-09-23 00:02:27,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:29,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:27,247 INFO Out dated connection ,size=0 +2025-09-24 00:02:29,343 INFO Out dated connection ,size=0 -2025-09-23 00:02:27,247 INFO Connection check task end +2025-09-24 00:02:29,343 INFO Connection check task end -2025-09-23 00:02:29,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:29,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:30,248 INFO Connection check task start +2025-09-24 00:02:32,343 INFO Connection check task start -2025-09-23 00:02:30,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:32,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:30,248 INFO Out dated connection ,size=0 +2025-09-24 00:02:32,343 INFO Out dated connection ,size=0 -2025-09-23 00:02:30,248 INFO Connection check task end +2025-09-24 00:02:32,343 INFO Connection check task end -2025-09-23 00:02:32,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:32,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:33,249 INFO Connection check task start +2025-09-24 00:02:35,344 INFO Connection check task start -2025-09-23 00:02:33,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:35,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:33,249 INFO Out dated connection ,size=0 +2025-09-24 00:02:35,344 INFO Out dated connection ,size=0 -2025-09-23 00:02:33,249 INFO Connection check task end +2025-09-24 00:02:35,344 INFO Connection check task end -2025-09-23 00:02:35,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:35,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:36,250 INFO Connection check task start +2025-09-24 00:02:38,345 INFO Connection check task start -2025-09-23 00:02:36,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:38,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:36,251 INFO Out dated connection ,size=0 +2025-09-24 00:02:38,345 INFO Out dated connection ,size=0 -2025-09-23 00:02:36,251 INFO Connection check task end +2025-09-24 00:02:38,345 INFO Connection check task end -2025-09-23 00:02:38,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:38,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:39,251 INFO Connection check task start +2025-09-24 00:02:41,346 INFO Connection check task start -2025-09-23 00:02:39,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:41,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:39,251 INFO Out dated connection ,size=0 +2025-09-24 00:02:41,346 INFO Out dated connection ,size=0 -2025-09-23 00:02:39,251 INFO Connection check task end +2025-09-24 00:02:41,346 INFO Connection check task end -2025-09-23 00:02:41,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:41,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:42,251 INFO Connection check task start +2025-09-24 00:02:44,346 INFO Connection check task start -2025-09-23 00:02:42,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:44,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:42,251 INFO Out dated connection ,size=0 +2025-09-24 00:02:44,346 INFO Out dated connection ,size=0 -2025-09-23 00:02:42,252 INFO Connection check task end +2025-09-24 00:02:44,346 INFO Connection check task end -2025-09-23 00:02:44,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:44,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:45,252 INFO Connection check task start +2025-09-24 00:02:47,347 INFO Connection check task start -2025-09-23 00:02:45,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:47,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:45,252 INFO Out dated connection ,size=0 +2025-09-24 00:02:47,348 INFO Out dated connection ,size=0 -2025-09-23 00:02:45,252 INFO Connection check task end +2025-09-24 00:02:47,348 INFO Connection check task end -2025-09-23 00:02:47,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:47,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:48,253 INFO Connection check task start +2025-09-24 00:02:50,348 INFO Connection check task start -2025-09-23 00:02:48,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:50,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:48,253 INFO Out dated connection ,size=0 +2025-09-24 00:02:50,349 INFO Out dated connection ,size=0 -2025-09-23 00:02:48,253 INFO Connection check task end +2025-09-24 00:02:50,349 INFO Connection check task end -2025-09-23 00:02:50,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:50,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:51,254 INFO Connection check task start +2025-09-24 00:02:53,349 INFO Connection check task start -2025-09-23 00:02:51,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:53,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:51,254 INFO Out dated connection ,size=0 +2025-09-24 00:02:53,349 INFO Out dated connection ,size=0 -2025-09-23 00:02:51,254 INFO Connection check task end +2025-09-24 00:02:53,349 INFO Connection check task end -2025-09-23 00:02:53,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:53,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:54,255 INFO Connection check task start +2025-09-24 00:02:56,349 INFO Connection check task start -2025-09-23 00:02:54,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:56,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:54,255 INFO Out dated connection ,size=0 +2025-09-24 00:02:56,349 INFO Out dated connection ,size=0 -2025-09-23 00:02:54,255 INFO Connection check task end +2025-09-24 00:02:56,349 INFO Connection check task end -2025-09-23 00:02:56,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:56,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:02:57,255 INFO Connection check task start +2025-09-24 00:02:59,350 INFO Connection check task start -2025-09-23 00:02:57,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:02:59,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:02:57,255 INFO Out dated connection ,size=0 +2025-09-24 00:02:59,351 INFO Out dated connection ,size=0 -2025-09-23 00:02:57,256 INFO Connection check task end +2025-09-24 00:02:59,351 INFO Connection check task end -2025-09-23 00:02:59,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:02:59,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:00,256 INFO Connection check task start +2025-09-24 00:03:02,351 INFO Connection check task start -2025-09-23 00:03:00,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:02,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:00,256 INFO Out dated connection ,size=0 +2025-09-24 00:03:02,351 INFO Out dated connection ,size=0 -2025-09-23 00:03:00,256 INFO Connection check task end +2025-09-24 00:03:02,351 INFO Connection check task end -2025-09-23 00:03:02,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:02,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:03,256 INFO Connection check task start +2025-09-24 00:03:05,352 INFO Connection check task start -2025-09-23 00:03:03,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:05,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:03,256 INFO Out dated connection ,size=0 +2025-09-24 00:03:05,352 INFO Out dated connection ,size=0 -2025-09-23 00:03:03,256 INFO Connection check task end +2025-09-24 00:03:05,352 INFO Connection check task end -2025-09-23 00:03:05,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:05,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:06,257 INFO Connection check task start +2025-09-24 00:03:08,352 INFO Connection check task start -2025-09-23 00:03:06,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:08,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:06,257 INFO Out dated connection ,size=0 +2025-09-24 00:03:08,352 INFO Out dated connection ,size=0 -2025-09-23 00:03:06,257 INFO Connection check task end +2025-09-24 00:03:08,352 INFO Connection check task end -2025-09-23 00:03:08,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:08,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:09,257 INFO Connection check task start +2025-09-24 00:03:11,353 INFO Connection check task start -2025-09-23 00:03:09,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:11,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:09,257 INFO Out dated connection ,size=0 +2025-09-24 00:03:11,353 INFO Out dated connection ,size=0 -2025-09-23 00:03:09,257 INFO Connection check task end +2025-09-24 00:03:11,353 INFO Connection check task end -2025-09-23 00:03:11,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:11,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:12,258 INFO Connection check task start +2025-09-24 00:03:14,355 INFO Connection check task start -2025-09-23 00:03:12,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:14,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:12,258 INFO Out dated connection ,size=0 +2025-09-24 00:03:14,355 INFO Out dated connection ,size=0 -2025-09-23 00:03:12,258 INFO Connection check task end +2025-09-24 00:03:14,355 INFO Connection check task end -2025-09-23 00:03:14,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:14,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:15,259 INFO Connection check task start +2025-09-24 00:03:17,356 INFO Connection check task start -2025-09-23 00:03:15,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:17,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:15,259 INFO Out dated connection ,size=0 +2025-09-24 00:03:17,357 INFO Out dated connection ,size=0 -2025-09-23 00:03:15,259 INFO Connection check task end +2025-09-24 00:03:17,357 INFO Connection check task end -2025-09-23 00:03:17,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:17,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:18,260 INFO Connection check task start +2025-09-24 00:03:20,357 INFO Connection check task start -2025-09-23 00:03:18,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:20,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:18,260 INFO Out dated connection ,size=0 +2025-09-24 00:03:20,358 INFO Out dated connection ,size=0 -2025-09-23 00:03:18,260 INFO Connection check task end +2025-09-24 00:03:20,358 INFO Connection check task end -2025-09-23 00:03:20,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:20,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:21,261 INFO Connection check task start +2025-09-24 00:03:23,359 INFO Connection check task start -2025-09-23 00:03:21,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:23,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:21,261 INFO Out dated connection ,size=0 +2025-09-24 00:03:23,359 INFO Out dated connection ,size=0 -2025-09-23 00:03:21,261 INFO Connection check task end +2025-09-24 00:03:23,359 INFO Connection check task end -2025-09-23 00:03:23,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:23,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:24,262 INFO Connection check task start +2025-09-24 00:03:26,360 INFO Connection check task start -2025-09-23 00:03:24,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:26,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:24,262 INFO Out dated connection ,size=0 +2025-09-24 00:03:26,360 INFO Out dated connection ,size=0 -2025-09-23 00:03:24,262 INFO Connection check task end +2025-09-24 00:03:26,360 INFO Connection check task end -2025-09-23 00:03:26,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:26,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:27,263 INFO Connection check task start +2025-09-24 00:03:29,361 INFO Connection check task start -2025-09-23 00:03:27,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:29,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:27,263 INFO Out dated connection ,size=0 +2025-09-24 00:03:29,361 INFO Out dated connection ,size=0 -2025-09-23 00:03:27,263 INFO Connection check task end +2025-09-24 00:03:29,361 INFO Connection check task end -2025-09-23 00:03:29,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:29,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:30,265 INFO Connection check task start +2025-09-24 00:03:32,361 INFO Connection check task start -2025-09-23 00:03:30,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:32,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:30,265 INFO Out dated connection ,size=0 +2025-09-24 00:03:32,362 INFO Out dated connection ,size=0 -2025-09-23 00:03:30,265 INFO Connection check task end +2025-09-24 00:03:32,362 INFO Connection check task end -2025-09-23 00:03:32,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:32,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:33,266 INFO Connection check task start +2025-09-24 00:03:35,362 INFO Connection check task start -2025-09-23 00:03:33,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:35,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:33,266 INFO Out dated connection ,size=0 +2025-09-24 00:03:35,362 INFO Out dated connection ,size=0 -2025-09-23 00:03:33,266 INFO Connection check task end +2025-09-24 00:03:35,362 INFO Connection check task end -2025-09-23 00:03:35,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:35,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:36,267 INFO Connection check task start +2025-09-24 00:03:38,363 INFO Connection check task start -2025-09-23 00:03:36,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:38,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:36,267 INFO Out dated connection ,size=0 +2025-09-24 00:03:38,364 INFO Out dated connection ,size=0 -2025-09-23 00:03:36,267 INFO Connection check task end +2025-09-24 00:03:38,364 INFO Connection check task end -2025-09-23 00:03:38,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:38,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:39,267 INFO Connection check task start +2025-09-24 00:03:41,365 INFO Connection check task start -2025-09-23 00:03:39,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:41,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:39,268 INFO Out dated connection ,size=0 +2025-09-24 00:03:41,365 INFO Out dated connection ,size=0 -2025-09-23 00:03:39,268 INFO Connection check task end +2025-09-24 00:03:41,365 INFO Connection check task end -2025-09-23 00:03:41,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:41,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:42,269 INFO Connection check task start +2025-09-24 00:03:44,366 INFO Connection check task start -2025-09-23 00:03:42,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:44,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:42,269 INFO Out dated connection ,size=0 +2025-09-24 00:03:44,366 INFO Out dated connection ,size=0 -2025-09-23 00:03:42,269 INFO Connection check task end +2025-09-24 00:03:44,366 INFO Connection check task end -2025-09-23 00:03:44,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:44,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:45,270 INFO Connection check task start +2025-09-24 00:03:47,366 INFO Connection check task start -2025-09-23 00:03:45,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:47,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:45,270 INFO Out dated connection ,size=0 +2025-09-24 00:03:47,366 INFO Out dated connection ,size=0 -2025-09-23 00:03:45,270 INFO Connection check task end +2025-09-24 00:03:47,366 INFO Connection check task end -2025-09-23 00:03:47,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:47,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:48,271 INFO Connection check task start +2025-09-24 00:03:50,367 INFO Connection check task start -2025-09-23 00:03:48,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:50,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:48,271 INFO Out dated connection ,size=0 +2025-09-24 00:03:50,367 INFO Out dated connection ,size=0 -2025-09-23 00:03:48,271 INFO Connection check task end +2025-09-24 00:03:50,367 INFO Connection check task end -2025-09-23 00:03:50,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:50,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:51,291 INFO Connection check task start +2025-09-24 00:03:53,368 INFO Connection check task start -2025-09-23 00:03:51,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:53,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:51,291 INFO Out dated connection ,size=0 +2025-09-24 00:03:53,368 INFO Out dated connection ,size=0 -2025-09-23 00:03:51,291 INFO Connection check task end +2025-09-24 00:03:53,368 INFO Connection check task end -2025-09-23 00:03:53,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:53,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:54,292 INFO Connection check task start +2025-09-24 00:03:56,369 INFO Connection check task start -2025-09-23 00:03:54,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:56,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:54,292 INFO Out dated connection ,size=0 +2025-09-24 00:03:56,369 INFO Out dated connection ,size=0 -2025-09-23 00:03:54,292 INFO Connection check task end +2025-09-24 00:03:56,369 INFO Connection check task end -2025-09-23 00:03:56,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:56,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:03:57,293 INFO Connection check task start +2025-09-24 00:03:59,370 INFO Connection check task start -2025-09-23 00:03:57,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:03:59,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:03:57,293 INFO Out dated connection ,size=0 +2025-09-24 00:03:59,370 INFO Out dated connection ,size=0 -2025-09-23 00:03:57,293 INFO Connection check task end +2025-09-24 00:03:59,370 INFO Connection check task end -2025-09-23 00:03:59,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:03:59,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:00,294 INFO Connection check task start +2025-09-24 00:04:02,371 INFO Connection check task start -2025-09-23 00:04:00,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:02,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:00,294 INFO Out dated connection ,size=0 +2025-09-24 00:04:02,371 INFO Out dated connection ,size=0 -2025-09-23 00:04:00,294 INFO Connection check task end +2025-09-24 00:04:02,371 INFO Connection check task end -2025-09-23 00:04:02,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:02,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:03,295 INFO Connection check task start +2025-09-24 00:04:05,372 INFO Connection check task start -2025-09-23 00:04:03,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:05,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:03,295 INFO Out dated connection ,size=0 +2025-09-24 00:04:05,372 INFO Out dated connection ,size=0 -2025-09-23 00:04:03,295 INFO Connection check task end +2025-09-24 00:04:05,372 INFO Connection check task end -2025-09-23 00:04:05,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:05,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:06,296 INFO Connection check task start +2025-09-24 00:04:08,372 INFO Connection check task start -2025-09-23 00:04:06,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:08,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:06,296 INFO Out dated connection ,size=0 +2025-09-24 00:04:08,372 INFO Out dated connection ,size=0 -2025-09-23 00:04:06,296 INFO Connection check task end +2025-09-24 00:04:08,372 INFO Connection check task end -2025-09-23 00:04:08,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:08,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:09,297 INFO Connection check task start +2025-09-24 00:04:11,373 INFO Connection check task start -2025-09-23 00:04:09,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:11,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:09,297 INFO Out dated connection ,size=0 +2025-09-24 00:04:11,373 INFO Out dated connection ,size=0 -2025-09-23 00:04:09,297 INFO Connection check task end +2025-09-24 00:04:11,373 INFO Connection check task end -2025-09-23 00:04:11,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:11,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:12,298 INFO Connection check task start +2025-09-24 00:04:14,374 INFO Connection check task start -2025-09-23 00:04:12,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:14,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:12,298 INFO Out dated connection ,size=0 +2025-09-24 00:04:14,374 INFO Out dated connection ,size=0 -2025-09-23 00:04:12,298 INFO Connection check task end +2025-09-24 00:04:14,375 INFO Connection check task end -2025-09-23 00:04:14,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:14,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:15,299 INFO Connection check task start +2025-09-24 00:04:17,375 INFO Connection check task start -2025-09-23 00:04:15,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:17,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:15,300 INFO Out dated connection ,size=0 +2025-09-24 00:04:17,375 INFO Out dated connection ,size=0 -2025-09-23 00:04:15,300 INFO Connection check task end +2025-09-24 00:04:17,375 INFO Connection check task end -2025-09-23 00:04:17,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:17,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:18,300 INFO Connection check task start +2025-09-24 00:04:20,376 INFO Connection check task start -2025-09-23 00:04:18,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:20,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:18,301 INFO Out dated connection ,size=0 +2025-09-24 00:04:20,376 INFO Out dated connection ,size=0 -2025-09-23 00:04:18,301 INFO Connection check task end +2025-09-24 00:04:20,376 INFO Connection check task end -2025-09-23 00:04:20,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:20,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:21,302 INFO Connection check task start +2025-09-24 00:04:23,377 INFO Connection check task start -2025-09-23 00:04:21,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:23,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:21,302 INFO Out dated connection ,size=0 +2025-09-24 00:04:23,377 INFO Out dated connection ,size=0 -2025-09-23 00:04:21,302 INFO Connection check task end +2025-09-24 00:04:23,377 INFO Connection check task end -2025-09-23 00:04:23,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:23,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:24,302 INFO Connection check task start +2025-09-24 00:04:26,377 INFO Connection check task start -2025-09-23 00:04:24,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:26,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:24,302 INFO Out dated connection ,size=0 +2025-09-24 00:04:26,378 INFO Out dated connection ,size=0 -2025-09-23 00:04:24,302 INFO Connection check task end +2025-09-24 00:04:26,378 INFO Connection check task end -2025-09-23 00:04:26,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:26,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:27,303 INFO Connection check task start +2025-09-24 00:04:29,378 INFO Connection check task start -2025-09-23 00:04:27,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:29,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:27,303 INFO Out dated connection ,size=0 +2025-09-24 00:04:29,378 INFO Out dated connection ,size=0 -2025-09-23 00:04:27,303 INFO Connection check task end +2025-09-24 00:04:29,378 INFO Connection check task end -2025-09-23 00:04:29,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:29,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:30,304 INFO Connection check task start +2025-09-24 00:04:32,379 INFO Connection check task start -2025-09-23 00:04:30,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:32,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:30,304 INFO Out dated connection ,size=0 +2025-09-24 00:04:32,379 INFO Out dated connection ,size=0 -2025-09-23 00:04:30,304 INFO Connection check task end +2025-09-24 00:04:32,379 INFO Connection check task end -2025-09-23 00:04:32,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:32,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:33,304 INFO Connection check task start +2025-09-24 00:04:35,379 INFO Connection check task start -2025-09-23 00:04:33,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:35,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:33,305 INFO Out dated connection ,size=0 +2025-09-24 00:04:35,379 INFO Out dated connection ,size=0 -2025-09-23 00:04:33,305 INFO Connection check task end +2025-09-24 00:04:35,379 INFO Connection check task end -2025-09-23 00:04:35,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:35,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:36,305 INFO Connection check task start +2025-09-24 00:04:38,379 INFO Connection check task start -2025-09-23 00:04:36,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:38,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:36,305 INFO Out dated connection ,size=0 +2025-09-24 00:04:38,380 INFO Out dated connection ,size=0 -2025-09-23 00:04:36,305 INFO Connection check task end +2025-09-24 00:04:38,380 INFO Connection check task end -2025-09-23 00:04:38,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:38,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:39,305 INFO Connection check task start +2025-09-24 00:04:41,381 INFO Connection check task start -2025-09-23 00:04:39,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:41,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:39,306 INFO Out dated connection ,size=0 +2025-09-24 00:04:41,381 INFO Out dated connection ,size=0 -2025-09-23 00:04:39,306 INFO Connection check task end +2025-09-24 00:04:41,381 INFO Connection check task end -2025-09-23 00:04:41,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:41,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:42,307 INFO Connection check task start +2025-09-24 00:04:44,382 INFO Connection check task start -2025-09-23 00:04:42,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:44,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:42,307 INFO Out dated connection ,size=0 +2025-09-24 00:04:44,382 INFO Out dated connection ,size=0 -2025-09-23 00:04:42,307 INFO Connection check task end +2025-09-24 00:04:44,382 INFO Connection check task end -2025-09-23 00:04:44,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:44,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:45,308 INFO Connection check task start +2025-09-24 00:04:47,382 INFO Connection check task start -2025-09-23 00:04:45,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:47,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:45,308 INFO Out dated connection ,size=0 +2025-09-24 00:04:47,382 INFO Out dated connection ,size=0 -2025-09-23 00:04:45,308 INFO Connection check task end +2025-09-24 00:04:47,382 INFO Connection check task end -2025-09-23 00:04:47,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:47,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:48,309 INFO Connection check task start +2025-09-24 00:04:50,382 INFO Connection check task start -2025-09-23 00:04:48,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:50,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:48,309 INFO Out dated connection ,size=0 +2025-09-24 00:04:50,383 INFO Out dated connection ,size=0 -2025-09-23 00:04:48,309 INFO Connection check task end +2025-09-24 00:04:50,383 INFO Connection check task end -2025-09-23 00:04:50,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:50,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:51,309 INFO Connection check task start +2025-09-24 00:04:53,383 INFO Connection check task start -2025-09-23 00:04:51,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:53,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:51,310 INFO Out dated connection ,size=0 +2025-09-24 00:04:53,383 INFO Out dated connection ,size=0 -2025-09-23 00:04:51,310 INFO Connection check task end +2025-09-24 00:04:53,383 INFO Connection check task end -2025-09-23 00:04:53,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:53,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:54,310 INFO Connection check task start +2025-09-24 00:04:56,384 INFO Connection check task start -2025-09-23 00:04:54,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:56,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:54,310 INFO Out dated connection ,size=0 +2025-09-24 00:04:56,384 INFO Out dated connection ,size=0 -2025-09-23 00:04:54,310 INFO Connection check task end +2025-09-24 00:04:56,384 INFO Connection check task end -2025-09-23 00:04:56,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:56,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:04:57,310 INFO Connection check task start +2025-09-24 00:04:59,385 INFO Connection check task start -2025-09-23 00:04:57,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:04:59,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:04:57,311 INFO Out dated connection ,size=0 +2025-09-24 00:04:59,385 INFO Out dated connection ,size=0 -2025-09-23 00:04:57,311 INFO Connection check task end +2025-09-24 00:04:59,385 INFO Connection check task end -2025-09-23 00:04:59,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:04:59,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:00,311 INFO Connection check task start +2025-09-24 00:05:02,386 INFO Connection check task start -2025-09-23 00:05:00,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:02,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:00,311 INFO Out dated connection ,size=0 +2025-09-24 00:05:02,386 INFO Out dated connection ,size=0 -2025-09-23 00:05:00,311 INFO Connection check task end +2025-09-24 00:05:02,386 INFO Connection check task end -2025-09-23 00:05:02,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:02,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:03,312 INFO Connection check task start +2025-09-24 00:05:05,386 INFO Connection check task start -2025-09-23 00:05:03,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:05,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:03,312 INFO Out dated connection ,size=0 +2025-09-24 00:05:05,386 INFO Out dated connection ,size=0 -2025-09-23 00:05:03,312 INFO Connection check task end +2025-09-24 00:05:05,387 INFO Connection check task end -2025-09-23 00:05:05,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:05,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:06,313 INFO Connection check task start +2025-09-24 00:05:08,387 INFO Connection check task start -2025-09-23 00:05:06,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:08,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:06,313 INFO Out dated connection ,size=0 +2025-09-24 00:05:08,387 INFO Out dated connection ,size=0 -2025-09-23 00:05:06,313 INFO Connection check task end +2025-09-24 00:05:08,387 INFO Connection check task end -2025-09-23 00:05:08,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:08,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:09,313 INFO Connection check task start +2025-09-24 00:05:11,388 INFO Connection check task start -2025-09-23 00:05:09,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:11,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:09,313 INFO Out dated connection ,size=0 +2025-09-24 00:05:11,388 INFO Out dated connection ,size=0 -2025-09-23 00:05:09,313 INFO Connection check task end +2025-09-24 00:05:11,388 INFO Connection check task end -2025-09-23 00:05:11,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:11,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:12,314 INFO Connection check task start +2025-09-24 00:05:14,389 INFO Connection check task start -2025-09-23 00:05:12,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:14,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:12,314 INFO Out dated connection ,size=0 +2025-09-24 00:05:14,389 INFO Out dated connection ,size=0 -2025-09-23 00:05:12,314 INFO Connection check task end +2025-09-24 00:05:14,389 INFO Connection check task end -2025-09-23 00:05:14,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:14,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:15,314 INFO Connection check task start +2025-09-24 00:05:17,389 INFO Connection check task start -2025-09-23 00:05:15,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:17,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:15,314 INFO Out dated connection ,size=0 +2025-09-24 00:05:17,389 INFO Out dated connection ,size=0 -2025-09-23 00:05:15,314 INFO Connection check task end +2025-09-24 00:05:17,389 INFO Connection check task end -2025-09-23 00:05:17,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:17,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:18,316 INFO Connection check task start +2025-09-24 00:05:20,390 INFO Connection check task start -2025-09-23 00:05:18,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:20,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:18,316 INFO Out dated connection ,size=0 +2025-09-24 00:05:20,391 INFO Out dated connection ,size=0 -2025-09-23 00:05:18,316 INFO Connection check task end +2025-09-24 00:05:20,391 INFO Connection check task end -2025-09-23 00:05:20,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:20,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:21,317 INFO Connection check task start +2025-09-24 00:05:23,392 INFO Connection check task start -2025-09-23 00:05:21,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:23,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:21,317 INFO Out dated connection ,size=0 +2025-09-24 00:05:23,392 INFO Out dated connection ,size=0 -2025-09-23 00:05:21,317 INFO Connection check task end +2025-09-24 00:05:23,392 INFO Connection check task end -2025-09-23 00:05:23,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:23,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:24,318 INFO Connection check task start +2025-09-24 00:05:26,393 INFO Connection check task start -2025-09-23 00:05:24,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:26,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:24,318 INFO Out dated connection ,size=0 +2025-09-24 00:05:26,393 INFO Out dated connection ,size=0 -2025-09-23 00:05:24,318 INFO Connection check task end +2025-09-24 00:05:26,393 INFO Connection check task end -2025-09-23 00:05:26,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:26,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:27,319 INFO Connection check task start +2025-09-24 00:05:29,395 INFO Connection check task start -2025-09-23 00:05:27,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:29,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:27,319 INFO Out dated connection ,size=0 +2025-09-24 00:05:29,395 INFO Out dated connection ,size=0 -2025-09-23 00:05:27,319 INFO Connection check task end +2025-09-24 00:05:29,395 INFO Connection check task end -2025-09-23 00:05:29,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:29,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:30,319 INFO Connection check task start +2025-09-24 00:05:32,396 INFO Connection check task start -2025-09-23 00:05:30,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:32,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:30,320 INFO Out dated connection ,size=0 +2025-09-24 00:05:32,396 INFO Out dated connection ,size=0 -2025-09-23 00:05:30,321 INFO Connection check task end +2025-09-24 00:05:32,396 INFO Connection check task end -2025-09-23 00:05:32,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:32,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:33,321 INFO Connection check task start +2025-09-24 00:05:35,396 INFO Connection check task start -2025-09-23 00:05:33,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:35,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:33,322 INFO Out dated connection ,size=0 +2025-09-24 00:05:35,397 INFO Out dated connection ,size=0 -2025-09-23 00:05:33,322 INFO Connection check task end +2025-09-24 00:05:35,397 INFO Connection check task end -2025-09-23 00:05:35,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:35,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:36,323 INFO Connection check task start +2025-09-24 00:05:38,397 INFO Connection check task start -2025-09-23 00:05:36,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:38,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:36,323 INFO Out dated connection ,size=0 +2025-09-24 00:05:38,397 INFO Out dated connection ,size=0 -2025-09-23 00:05:36,323 INFO Connection check task end +2025-09-24 00:05:38,397 INFO Connection check task end -2025-09-23 00:05:38,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:38,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:39,324 INFO Connection check task start +2025-09-24 00:05:41,398 INFO Connection check task start -2025-09-23 00:05:39,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:41,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:39,324 INFO Out dated connection ,size=0 +2025-09-24 00:05:41,398 INFO Out dated connection ,size=0 -2025-09-23 00:05:39,324 INFO Connection check task end +2025-09-24 00:05:41,398 INFO Connection check task end -2025-09-23 00:05:41,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:41,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:42,325 INFO Connection check task start +2025-09-24 00:05:44,399 INFO Connection check task start -2025-09-23 00:05:42,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:44,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:42,325 INFO Out dated connection ,size=0 +2025-09-24 00:05:44,399 INFO Out dated connection ,size=0 -2025-09-23 00:05:42,325 INFO Connection check task end +2025-09-24 00:05:44,399 INFO Connection check task end -2025-09-23 00:05:44,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:44,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:45,325 INFO Connection check task start +2025-09-24 00:05:47,399 INFO Connection check task start -2025-09-23 00:05:45,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:47,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:45,325 INFO Out dated connection ,size=0 +2025-09-24 00:05:47,399 INFO Out dated connection ,size=0 -2025-09-23 00:05:45,326 INFO Connection check task end +2025-09-24 00:05:47,400 INFO Connection check task end -2025-09-23 00:05:47,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:47,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:48,326 INFO Connection check task start +2025-09-24 00:05:50,401 INFO Connection check task start -2025-09-23 00:05:48,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:50,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:48,327 INFO Out dated connection ,size=0 +2025-09-24 00:05:50,401 INFO Out dated connection ,size=0 -2025-09-23 00:05:48,327 INFO Connection check task end +2025-09-24 00:05:50,401 INFO Connection check task end -2025-09-23 00:05:50,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:50,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:51,328 INFO Connection check task start +2025-09-24 00:05:53,402 INFO Connection check task start -2025-09-23 00:05:51,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:53,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:51,329 INFO Out dated connection ,size=0 +2025-09-24 00:05:53,402 INFO Out dated connection ,size=0 -2025-09-23 00:05:51,329 INFO Connection check task end +2025-09-24 00:05:53,402 INFO Connection check task end -2025-09-23 00:05:53,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:53,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:54,329 INFO Connection check task start +2025-09-24 00:05:56,403 INFO Connection check task start -2025-09-23 00:05:54,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:56,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:54,330 INFO Out dated connection ,size=0 +2025-09-24 00:05:56,403 INFO Out dated connection ,size=0 -2025-09-23 00:05:54,330 INFO Connection check task end +2025-09-24 00:05:56,403 INFO Connection check task end -2025-09-23 00:05:56,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:56,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:05:57,330 INFO Connection check task start +2025-09-24 00:05:59,404 INFO Connection check task start -2025-09-23 00:05:57,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:05:59,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:05:57,330 INFO Out dated connection ,size=0 +2025-09-24 00:05:59,404 INFO Out dated connection ,size=0 -2025-09-23 00:05:57,330 INFO Connection check task end +2025-09-24 00:05:59,404 INFO Connection check task end -2025-09-23 00:05:59,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:05:59,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:00,331 INFO Connection check task start +2025-09-24 00:06:02,405 INFO Connection check task start -2025-09-23 00:06:00,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:02,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:00,332 INFO Out dated connection ,size=0 +2025-09-24 00:06:02,405 INFO Out dated connection ,size=0 -2025-09-23 00:06:00,332 INFO Connection check task end +2025-09-24 00:06:02,405 INFO Connection check task end -2025-09-23 00:06:02,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:02,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:03,332 INFO Connection check task start +2025-09-24 00:06:05,406 INFO Connection check task start -2025-09-23 00:06:03,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:05,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:03,332 INFO Out dated connection ,size=0 +2025-09-24 00:06:05,406 INFO Out dated connection ,size=0 -2025-09-23 00:06:03,332 INFO Connection check task end +2025-09-24 00:06:05,406 INFO Connection check task end -2025-09-23 00:06:05,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:05,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:06,333 INFO Connection check task start +2025-09-24 00:06:08,406 INFO Connection check task start -2025-09-23 00:06:06,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:08,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:06,333 INFO Out dated connection ,size=0 +2025-09-24 00:06:08,407 INFO Out dated connection ,size=0 -2025-09-23 00:06:06,333 INFO Connection check task end +2025-09-24 00:06:08,407 INFO Connection check task end -2025-09-23 00:06:08,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:08,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:09,333 INFO Connection check task start +2025-09-24 00:06:11,407 INFO Connection check task start -2025-09-23 00:06:09,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:11,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:09,333 INFO Out dated connection ,size=0 +2025-09-24 00:06:11,407 INFO Out dated connection ,size=0 -2025-09-23 00:06:09,333 INFO Connection check task end +2025-09-24 00:06:11,407 INFO Connection check task end -2025-09-23 00:06:11,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:11,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:12,334 INFO Connection check task start +2025-09-24 00:06:14,408 INFO Connection check task start -2025-09-23 00:06:12,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:14,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:12,335 INFO Out dated connection ,size=0 +2025-09-24 00:06:14,408 INFO Out dated connection ,size=0 -2025-09-23 00:06:12,335 INFO Connection check task end +2025-09-24 00:06:14,408 INFO Connection check task end -2025-09-23 00:06:14,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:14,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:15,335 INFO Connection check task start +2025-09-24 00:06:17,409 INFO Connection check task start -2025-09-23 00:06:15,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:17,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:15,335 INFO Out dated connection ,size=0 +2025-09-24 00:06:17,409 INFO Out dated connection ,size=0 -2025-09-23 00:06:15,336 INFO Connection check task end +2025-09-24 00:06:17,409 INFO Connection check task end -2025-09-23 00:06:17,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:17,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:18,336 INFO Connection check task start +2025-09-24 00:06:20,409 INFO Connection check task start -2025-09-23 00:06:18,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:20,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:18,336 INFO Out dated connection ,size=0 +2025-09-24 00:06:20,409 INFO Out dated connection ,size=0 -2025-09-23 00:06:18,336 INFO Connection check task end +2025-09-24 00:06:20,409 INFO Connection check task end -2025-09-23 00:06:20,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:20,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:21,337 INFO Connection check task start +2025-09-24 00:06:23,409 INFO Connection check task start -2025-09-23 00:06:21,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:23,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:21,338 INFO Out dated connection ,size=0 +2025-09-24 00:06:23,410 INFO Out dated connection ,size=0 -2025-09-23 00:06:21,338 INFO Connection check task end +2025-09-24 00:06:23,410 INFO Connection check task end -2025-09-23 00:06:23,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:23,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:24,338 INFO Connection check task start +2025-09-24 00:06:26,411 INFO Connection check task start -2025-09-23 00:06:24,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:26,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:24,338 INFO Out dated connection ,size=0 +2025-09-24 00:06:26,411 INFO Out dated connection ,size=0 -2025-09-23 00:06:24,338 INFO Connection check task end +2025-09-24 00:06:26,411 INFO Connection check task end -2025-09-23 00:06:26,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:26,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:27,339 INFO Connection check task start +2025-09-24 00:06:29,412 INFO Connection check task start -2025-09-23 00:06:27,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:29,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:27,339 INFO Out dated connection ,size=0 +2025-09-24 00:06:29,412 INFO Out dated connection ,size=0 -2025-09-23 00:06:27,339 INFO Connection check task end +2025-09-24 00:06:29,412 INFO Connection check task end -2025-09-23 00:06:29,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:29,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:30,344 INFO Connection check task start +2025-09-24 00:06:32,412 INFO Connection check task start -2025-09-23 00:06:30,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:32,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:30,345 INFO Out dated connection ,size=0 +2025-09-24 00:06:32,412 INFO Out dated connection ,size=0 -2025-09-23 00:06:30,345 INFO Connection check task end +2025-09-24 00:06:32,413 INFO Connection check task end -2025-09-23 00:06:32,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:32,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:33,346 INFO Connection check task start +2025-09-24 00:06:35,414 INFO Connection check task start -2025-09-23 00:06:33,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:35,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:33,346 INFO Out dated connection ,size=0 +2025-09-24 00:06:35,414 INFO Out dated connection ,size=0 -2025-09-23 00:06:33,346 INFO Connection check task end +2025-09-24 00:06:35,414 INFO Connection check task end -2025-09-23 00:06:35,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:35,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:36,347 INFO Connection check task start +2025-09-24 00:06:38,415 INFO Connection check task start -2025-09-23 00:06:36,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:38,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:36,348 INFO Out dated connection ,size=0 +2025-09-24 00:06:38,415 INFO Out dated connection ,size=0 -2025-09-23 00:06:36,348 INFO Connection check task end +2025-09-24 00:06:38,415 INFO Connection check task end -2025-09-23 00:06:38,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:38,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:39,348 INFO Connection check task start +2025-09-24 00:06:41,416 INFO Connection check task start -2025-09-23 00:06:39,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:41,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:39,349 INFO Out dated connection ,size=0 +2025-09-24 00:06:41,417 INFO Out dated connection ,size=0 -2025-09-23 00:06:39,349 INFO Connection check task end +2025-09-24 00:06:41,417 INFO Connection check task end -2025-09-23 00:06:41,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:41,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:42,349 INFO Connection check task start +2025-09-24 00:06:44,417 INFO Connection check task start -2025-09-23 00:06:42,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:44,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:42,350 INFO Out dated connection ,size=0 +2025-09-24 00:06:44,418 INFO Out dated connection ,size=0 -2025-09-23 00:06:42,350 INFO Connection check task end +2025-09-24 00:06:44,418 INFO Connection check task end -2025-09-23 00:06:44,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:44,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:45,350 INFO Connection check task start +2025-09-24 00:06:47,419 INFO Connection check task start -2025-09-23 00:06:45,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:47,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:45,350 INFO Out dated connection ,size=0 +2025-09-24 00:06:47,419 INFO Out dated connection ,size=0 -2025-09-23 00:06:45,350 INFO Connection check task end +2025-09-24 00:06:47,420 INFO Connection check task end -2025-09-23 00:06:47,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:47,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:48,351 INFO Connection check task start +2025-09-24 00:06:50,421 INFO Connection check task start -2025-09-23 00:06:48,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:50,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:48,351 INFO Out dated connection ,size=0 +2025-09-24 00:06:50,421 INFO Out dated connection ,size=0 -2025-09-23 00:06:48,351 INFO Connection check task end +2025-09-24 00:06:50,421 INFO Connection check task end -2025-09-23 00:06:50,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:50,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:51,352 INFO Connection check task start +2025-09-24 00:06:53,422 INFO Connection check task start -2025-09-23 00:06:51,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:53,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:51,352 INFO Out dated connection ,size=0 +2025-09-24 00:06:53,422 INFO Out dated connection ,size=0 -2025-09-23 00:06:51,352 INFO Connection check task end +2025-09-24 00:06:53,422 INFO Connection check task end -2025-09-23 00:06:53,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:53,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:54,353 INFO Connection check task start +2025-09-24 00:06:56,423 INFO Connection check task start -2025-09-23 00:06:54,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:56,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:54,353 INFO Out dated connection ,size=0 +2025-09-24 00:06:56,423 INFO Out dated connection ,size=0 -2025-09-23 00:06:54,354 INFO Connection check task end +2025-09-24 00:06:56,423 INFO Connection check task end -2025-09-23 00:06:56,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:56,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:06:57,354 INFO Connection check task start +2025-09-24 00:06:59,423 INFO Connection check task start -2025-09-23 00:06:57,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:06:59,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:06:57,354 INFO Out dated connection ,size=0 +2025-09-24 00:06:59,423 INFO Out dated connection ,size=0 -2025-09-23 00:06:57,354 INFO Connection check task end +2025-09-24 00:06:59,423 INFO Connection check task end -2025-09-23 00:06:59,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:06:59,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:00,355 INFO Connection check task start +2025-09-24 00:07:02,424 INFO Connection check task start -2025-09-23 00:07:00,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:02,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:00,355 INFO Out dated connection ,size=0 +2025-09-24 00:07:02,424 INFO Out dated connection ,size=0 -2025-09-23 00:07:00,355 INFO Connection check task end +2025-09-24 00:07:02,424 INFO Connection check task end -2025-09-23 00:07:02,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:02,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:03,356 INFO Connection check task start +2025-09-24 00:07:05,425 INFO Connection check task start -2025-09-23 00:07:03,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:05,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:03,356 INFO Out dated connection ,size=0 +2025-09-24 00:07:05,425 INFO Out dated connection ,size=0 -2025-09-23 00:07:03,356 INFO Connection check task end +2025-09-24 00:07:05,425 INFO Connection check task end -2025-09-23 00:07:05,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:05,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:06,357 INFO Connection check task start +2025-09-24 00:07:08,426 INFO Connection check task start -2025-09-23 00:07:06,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:08,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:06,357 INFO Out dated connection ,size=0 +2025-09-24 00:07:08,426 INFO Out dated connection ,size=0 -2025-09-23 00:07:06,357 INFO Connection check task end +2025-09-24 00:07:08,426 INFO Connection check task end -2025-09-23 00:07:08,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:08,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:09,357 INFO Connection check task start +2025-09-24 00:07:11,427 INFO Connection check task start -2025-09-23 00:07:09,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:11,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:09,358 INFO Out dated connection ,size=0 +2025-09-24 00:07:11,427 INFO Out dated connection ,size=0 -2025-09-23 00:07:09,358 INFO Connection check task end +2025-09-24 00:07:11,427 INFO Connection check task end -2025-09-23 00:07:11,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:11,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:12,358 INFO Connection check task start +2025-09-24 00:07:14,427 INFO Connection check task start -2025-09-23 00:07:12,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:14,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:12,358 INFO Out dated connection ,size=0 +2025-09-24 00:07:14,429 INFO Out dated connection ,size=0 -2025-09-23 00:07:12,359 INFO Connection check task end +2025-09-24 00:07:14,429 INFO Connection check task end -2025-09-23 00:07:14,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:14,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:15,359 INFO Connection check task start +2025-09-24 00:07:17,429 INFO Connection check task start -2025-09-23 00:07:15,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:17,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:15,360 INFO Out dated connection ,size=0 +2025-09-24 00:07:17,430 INFO Out dated connection ,size=0 -2025-09-23 00:07:15,360 INFO Connection check task end +2025-09-24 00:07:17,430 INFO Connection check task end -2025-09-23 00:07:17,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:17,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:18,361 INFO Connection check task start +2025-09-24 00:07:20,430 INFO Connection check task start -2025-09-23 00:07:18,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:20,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:18,361 INFO Out dated connection ,size=0 +2025-09-24 00:07:20,430 INFO Out dated connection ,size=0 -2025-09-23 00:07:18,361 INFO Connection check task end +2025-09-24 00:07:20,430 INFO Connection check task end -2025-09-23 00:07:20,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:20,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:21,362 INFO Connection check task start +2025-09-24 00:07:23,430 INFO Connection check task start -2025-09-23 00:07:21,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:23,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:21,362 INFO Out dated connection ,size=0 +2025-09-24 00:07:23,430 INFO Out dated connection ,size=0 -2025-09-23 00:07:21,362 INFO Connection check task end +2025-09-24 00:07:23,430 INFO Connection check task end -2025-09-23 00:07:23,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:23,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:24,363 INFO Connection check task start +2025-09-24 00:07:26,431 INFO Connection check task start -2025-09-23 00:07:24,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:26,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:24,363 INFO Out dated connection ,size=0 +2025-09-24 00:07:26,431 INFO Out dated connection ,size=0 -2025-09-23 00:07:24,363 INFO Connection check task end +2025-09-24 00:07:26,431 INFO Connection check task end -2025-09-23 00:07:26,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:26,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:27,364 INFO Connection check task start +2025-09-24 00:07:29,431 INFO Connection check task start -2025-09-23 00:07:27,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:29,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:27,364 INFO Out dated connection ,size=0 +2025-09-24 00:07:29,432 INFO Out dated connection ,size=0 -2025-09-23 00:07:27,364 INFO Connection check task end +2025-09-24 00:07:29,432 INFO Connection check task end -2025-09-23 00:07:29,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:29,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:30,365 INFO Connection check task start +2025-09-24 00:07:32,432 INFO Connection check task start -2025-09-23 00:07:30,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:32,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:30,365 INFO Out dated connection ,size=0 +2025-09-24 00:07:32,432 INFO Out dated connection ,size=0 -2025-09-23 00:07:30,365 INFO Connection check task end +2025-09-24 00:07:32,432 INFO Connection check task end -2025-09-23 00:07:32,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:32,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:33,366 INFO Connection check task start +2025-09-24 00:07:35,433 INFO Connection check task start -2025-09-23 00:07:33,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:35,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:33,366 INFO Out dated connection ,size=0 +2025-09-24 00:07:35,433 INFO Out dated connection ,size=0 -2025-09-23 00:07:33,367 INFO Connection check task end +2025-09-24 00:07:35,433 INFO Connection check task end -2025-09-23 00:07:35,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:35,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:36,367 INFO Connection check task start +2025-09-24 00:07:38,433 INFO Connection check task start -2025-09-23 00:07:36,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:38,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:36,367 INFO Out dated connection ,size=0 +2025-09-24 00:07:38,434 INFO Out dated connection ,size=0 -2025-09-23 00:07:36,367 INFO Connection check task end +2025-09-24 00:07:38,434 INFO Connection check task end -2025-09-23 00:07:38,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:38,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:39,368 INFO Connection check task start +2025-09-24 00:07:41,434 INFO Connection check task start -2025-09-23 00:07:39,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:41,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:39,368 INFO Out dated connection ,size=0 +2025-09-24 00:07:41,435 INFO Out dated connection ,size=0 -2025-09-23 00:07:39,368 INFO Connection check task end +2025-09-24 00:07:41,435 INFO Connection check task end -2025-09-23 00:07:41,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:41,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:42,369 INFO Connection check task start +2025-09-24 00:07:44,436 INFO Connection check task start -2025-09-23 00:07:42,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:44,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:42,369 INFO Out dated connection ,size=0 +2025-09-24 00:07:44,437 INFO Out dated connection ,size=0 -2025-09-23 00:07:42,369 INFO Connection check task end +2025-09-24 00:07:44,437 INFO Connection check task end -2025-09-23 00:07:44,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:44,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:45,370 INFO Connection check task start +2025-09-24 00:07:47,437 INFO Connection check task start -2025-09-23 00:07:45,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:47,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:45,370 INFO Out dated connection ,size=0 +2025-09-24 00:07:47,437 INFO Out dated connection ,size=0 -2025-09-23 00:07:45,370 INFO Connection check task end +2025-09-24 00:07:47,438 INFO Connection check task end -2025-09-23 00:07:47,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:47,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:48,370 INFO Connection check task start +2025-09-24 00:07:50,438 INFO Connection check task start -2025-09-23 00:07:48,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:50,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:48,370 INFO Out dated connection ,size=0 +2025-09-24 00:07:50,438 INFO Out dated connection ,size=0 -2025-09-23 00:07:48,370 INFO Connection check task end +2025-09-24 00:07:50,438 INFO Connection check task end -2025-09-23 00:07:50,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:50,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:51,371 INFO Connection check task start +2025-09-24 00:07:53,439 INFO Connection check task start -2025-09-23 00:07:51,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:53,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:51,371 INFO Out dated connection ,size=0 +2025-09-24 00:07:53,439 INFO Out dated connection ,size=0 -2025-09-23 00:07:51,371 INFO Connection check task end +2025-09-24 00:07:53,439 INFO Connection check task end -2025-09-23 00:07:53,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:53,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:54,372 INFO Connection check task start +2025-09-24 00:07:56,440 INFO Connection check task start -2025-09-23 00:07:54,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:56,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:54,372 INFO Out dated connection ,size=0 +2025-09-24 00:07:56,441 INFO Out dated connection ,size=0 -2025-09-23 00:07:54,372 INFO Connection check task end +2025-09-24 00:07:56,441 INFO Connection check task end -2025-09-23 00:07:56,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:56,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:07:57,373 INFO Connection check task start +2025-09-24 00:07:59,442 INFO Connection check task start -2025-09-23 00:07:57,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:07:59,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:07:57,373 INFO Out dated connection ,size=0 +2025-09-24 00:07:59,442 INFO Out dated connection ,size=0 -2025-09-23 00:07:57,373 INFO Connection check task end +2025-09-24 00:07:59,442 INFO Connection check task end -2025-09-23 00:07:59,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:07:59,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:00,374 INFO Connection check task start +2025-09-24 00:08:02,442 INFO Connection check task start -2025-09-23 00:08:00,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:02,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:00,374 INFO Out dated connection ,size=0 +2025-09-24 00:08:02,442 INFO Out dated connection ,size=0 -2025-09-23 00:08:00,374 INFO Connection check task end +2025-09-24 00:08:02,442 INFO Connection check task end -2025-09-23 00:08:02,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:02,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:03,375 INFO Connection check task start +2025-09-24 00:08:05,443 INFO Connection check task start -2025-09-23 00:08:03,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:05,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:03,375 INFO Out dated connection ,size=0 +2025-09-24 00:08:05,443 INFO Out dated connection ,size=0 -2025-09-23 00:08:03,375 INFO Connection check task end +2025-09-24 00:08:05,443 INFO Connection check task end -2025-09-23 00:08:05,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:05,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:06,376 INFO Connection check task start +2025-09-24 00:08:08,444 INFO Connection check task start -2025-09-23 00:08:06,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:08,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:06,377 INFO Out dated connection ,size=0 +2025-09-24 00:08:08,444 INFO Out dated connection ,size=0 -2025-09-23 00:08:06,377 INFO Connection check task end +2025-09-24 00:08:08,444 INFO Connection check task end -2025-09-23 00:08:08,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:08,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:09,383 INFO Connection check task start +2025-09-24 00:08:11,445 INFO Connection check task start -2025-09-23 00:08:09,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:11,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:09,384 INFO Out dated connection ,size=0 +2025-09-24 00:08:11,445 INFO Out dated connection ,size=0 -2025-09-23 00:08:09,384 INFO Connection check task end +2025-09-24 00:08:11,445 INFO Connection check task end -2025-09-23 00:08:11,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:11,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:12,385 INFO Connection check task start +2025-09-24 00:08:14,445 INFO Connection check task start -2025-09-23 00:08:12,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:14,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:12,385 INFO Out dated connection ,size=0 +2025-09-24 00:08:14,446 INFO Out dated connection ,size=0 -2025-09-23 00:08:12,385 INFO Connection check task end +2025-09-24 00:08:14,446 INFO Connection check task end -2025-09-23 00:08:14,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:14,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:15,385 INFO Connection check task start +2025-09-24 00:08:17,447 INFO Connection check task start -2025-09-23 00:08:15,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:17,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:15,385 INFO Out dated connection ,size=0 +2025-09-24 00:08:17,447 INFO Out dated connection ,size=0 -2025-09-23 00:08:15,385 INFO Connection check task end +2025-09-24 00:08:17,447 INFO Connection check task end -2025-09-23 00:08:17,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:17,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:18,386 INFO Connection check task start +2025-09-24 00:08:20,447 INFO Connection check task start -2025-09-23 00:08:18,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:20,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:18,386 INFO Out dated connection ,size=0 +2025-09-24 00:08:20,448 INFO Out dated connection ,size=0 -2025-09-23 00:08:18,386 INFO Connection check task end +2025-09-24 00:08:20,448 INFO Connection check task end -2025-09-23 00:08:20,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:20,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:21,392 INFO Connection check task start +2025-09-24 00:08:23,449 INFO Connection check task start -2025-09-23 00:08:21,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:23,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:21,392 INFO Out dated connection ,size=0 +2025-09-24 00:08:23,449 INFO Out dated connection ,size=0 -2025-09-23 00:08:21,392 INFO Connection check task end +2025-09-24 00:08:23,449 INFO Connection check task end -2025-09-23 00:08:23,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:23,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:24,393 INFO Connection check task start +2025-09-24 00:08:26,449 INFO Connection check task start -2025-09-23 00:08:24,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:26,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:24,394 INFO Out dated connection ,size=0 +2025-09-24 00:08:26,449 INFO Out dated connection ,size=0 -2025-09-23 00:08:24,394 INFO Connection check task end +2025-09-24 00:08:26,450 INFO Connection check task end -2025-09-23 00:08:26,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:26,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:27,394 INFO Connection check task start +2025-09-24 00:08:29,450 INFO Connection check task start -2025-09-23 00:08:27,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:29,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:27,395 INFO Out dated connection ,size=0 +2025-09-24 00:08:29,450 INFO Out dated connection ,size=0 -2025-09-23 00:08:27,395 INFO Connection check task end +2025-09-24 00:08:29,450 INFO Connection check task end -2025-09-23 00:08:29,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:29,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:30,395 INFO Connection check task start +2025-09-24 00:08:32,450 INFO Connection check task start -2025-09-23 00:08:30,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:32,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:30,395 INFO Out dated connection ,size=0 +2025-09-24 00:08:32,451 INFO Out dated connection ,size=0 -2025-09-23 00:08:30,395 INFO Connection check task end +2025-09-24 00:08:32,451 INFO Connection check task end -2025-09-23 00:08:32,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:32,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:33,396 INFO Connection check task start +2025-09-24 00:08:35,451 INFO Connection check task start -2025-09-23 00:08:33,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:35,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:33,397 INFO Out dated connection ,size=0 +2025-09-24 00:08:35,458 INFO Out dated connection ,size=0 -2025-09-23 00:08:33,397 INFO Connection check task end +2025-09-24 00:08:35,458 INFO Connection check task end -2025-09-23 00:08:35,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:35,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:36,397 INFO Connection check task start +2025-09-24 00:08:38,459 INFO Connection check task start -2025-09-23 00:08:36,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:38,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:36,397 INFO Out dated connection ,size=0 +2025-09-24 00:08:38,459 INFO Out dated connection ,size=0 -2025-09-23 00:08:36,397 INFO Connection check task end +2025-09-24 00:08:38,459 INFO Connection check task end -2025-09-23 00:08:38,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:38,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:39,398 INFO Connection check task start +2025-09-24 00:08:41,460 INFO Connection check task start -2025-09-23 00:08:39,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:41,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:39,398 INFO Out dated connection ,size=0 +2025-09-24 00:08:41,460 INFO Out dated connection ,size=0 -2025-09-23 00:08:39,398 INFO Connection check task end +2025-09-24 00:08:41,460 INFO Connection check task end -2025-09-23 00:08:41,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:41,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:42,399 INFO Connection check task start +2025-09-24 00:08:44,460 INFO Connection check task start -2025-09-23 00:08:42,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:44,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:42,399 INFO Out dated connection ,size=0 +2025-09-24 00:08:44,460 INFO Out dated connection ,size=0 -2025-09-23 00:08:42,399 INFO Connection check task end +2025-09-24 00:08:44,460 INFO Connection check task end -2025-09-23 00:08:44,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:44,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:45,399 INFO Connection check task start +2025-09-24 00:08:47,461 INFO Connection check task start -2025-09-23 00:08:45,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:47,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:45,400 INFO Out dated connection ,size=0 +2025-09-24 00:08:47,462 INFO Out dated connection ,size=0 -2025-09-23 00:08:45,400 INFO Connection check task end +2025-09-24 00:08:47,462 INFO Connection check task end -2025-09-23 00:08:47,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:47,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:48,400 INFO Connection check task start +2025-09-24 00:08:50,462 INFO Connection check task start -2025-09-23 00:08:48,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:50,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:48,401 INFO Out dated connection ,size=0 +2025-09-24 00:08:50,463 INFO Out dated connection ,size=0 -2025-09-23 00:08:48,401 INFO Connection check task end +2025-09-24 00:08:50,463 INFO Connection check task end -2025-09-23 00:08:50,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:50,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:51,402 INFO Connection check task start +2025-09-24 00:08:53,463 INFO Connection check task start -2025-09-23 00:08:51,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:53,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:51,402 INFO Out dated connection ,size=0 +2025-09-24 00:08:53,463 INFO Out dated connection ,size=0 -2025-09-23 00:08:51,402 INFO Connection check task end +2025-09-24 00:08:53,463 INFO Connection check task end -2025-09-23 00:08:53,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:53,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:54,403 INFO Connection check task start +2025-09-24 00:08:56,464 INFO Connection check task start -2025-09-23 00:08:54,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:56,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:54,403 INFO Out dated connection ,size=0 +2025-09-24 00:08:56,465 INFO Out dated connection ,size=0 -2025-09-23 00:08:54,403 INFO Connection check task end +2025-09-24 00:08:56,465 INFO Connection check task end -2025-09-23 00:08:56,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:56,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:08:57,404 INFO Connection check task start +2025-09-24 00:08:59,465 INFO Connection check task start -2025-09-23 00:08:57,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:08:59,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:08:57,404 INFO Out dated connection ,size=0 +2025-09-24 00:08:59,465 INFO Out dated connection ,size=0 -2025-09-23 00:08:57,405 INFO Connection check task end +2025-09-24 00:08:59,465 INFO Connection check task end -2025-09-23 00:08:59,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:08:59,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:00,406 INFO Connection check task start +2025-09-24 00:09:02,466 INFO Connection check task start -2025-09-23 00:09:00,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:02,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:00,406 INFO Out dated connection ,size=0 +2025-09-24 00:09:02,466 INFO Out dated connection ,size=0 -2025-09-23 00:09:00,406 INFO Connection check task end +2025-09-24 00:09:02,466 INFO Connection check task end -2025-09-23 00:09:02,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:02,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:03,407 INFO Connection check task start +2025-09-24 00:09:05,467 INFO Connection check task start -2025-09-23 00:09:03,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:05,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:03,407 INFO Out dated connection ,size=0 +2025-09-24 00:09:05,467 INFO Out dated connection ,size=0 -2025-09-23 00:09:03,407 INFO Connection check task end +2025-09-24 00:09:05,467 INFO Connection check task end -2025-09-23 00:09:05,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:05,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:06,407 INFO Connection check task start +2025-09-24 00:09:08,468 INFO Connection check task start -2025-09-23 00:09:06,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:08,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:06,407 INFO Out dated connection ,size=0 +2025-09-24 00:09:08,469 INFO Out dated connection ,size=0 -2025-09-23 00:09:06,408 INFO Connection check task end +2025-09-24 00:09:08,469 INFO Connection check task end -2025-09-23 00:09:08,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:08,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:09,409 INFO Connection check task start +2025-09-24 00:09:11,469 INFO Connection check task start -2025-09-23 00:09:09,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:11,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:09,409 INFO Out dated connection ,size=0 +2025-09-24 00:09:11,470 INFO Out dated connection ,size=0 -2025-09-23 00:09:09,409 INFO Connection check task end +2025-09-24 00:09:11,470 INFO Connection check task end -2025-09-23 00:09:11,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:11,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:12,410 INFO Connection check task start +2025-09-24 00:09:14,501 INFO Connection check task start -2025-09-23 00:09:12,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:14,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:12,411 INFO Out dated connection ,size=0 +2025-09-24 00:09:14,502 INFO Out dated connection ,size=0 -2025-09-23 00:09:12,411 INFO Connection check task end +2025-09-24 00:09:14,502 INFO Connection check task end -2025-09-23 00:09:14,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:14,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:15,411 INFO Connection check task start +2025-09-24 00:09:17,502 INFO Connection check task start -2025-09-23 00:09:15,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:17,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:15,411 INFO Out dated connection ,size=0 +2025-09-24 00:09:17,502 INFO Out dated connection ,size=0 -2025-09-23 00:09:15,411 INFO Connection check task end +2025-09-24 00:09:17,502 INFO Connection check task end -2025-09-23 00:09:17,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:17,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:18,412 INFO Connection check task start +2025-09-24 00:09:20,503 INFO Connection check task start -2025-09-23 00:09:18,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:20,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:18,412 INFO Out dated connection ,size=0 +2025-09-24 00:09:20,503 INFO Out dated connection ,size=0 -2025-09-23 00:09:18,412 INFO Connection check task end +2025-09-24 00:09:20,503 INFO Connection check task end -2025-09-23 00:09:20,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:20,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:21,413 INFO Connection check task start +2025-09-24 00:09:23,503 INFO Connection check task start -2025-09-23 00:09:21,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:23,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:21,414 INFO Out dated connection ,size=0 +2025-09-24 00:09:23,503 INFO Out dated connection ,size=0 -2025-09-23 00:09:21,414 INFO Connection check task end +2025-09-24 00:09:23,503 INFO Connection check task end -2025-09-23 00:09:23,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:23,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:24,415 INFO Connection check task start +2025-09-24 00:09:26,503 INFO Connection check task start -2025-09-23 00:09:24,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:26,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:24,415 INFO Out dated connection ,size=0 +2025-09-24 00:09:26,503 INFO Out dated connection ,size=0 -2025-09-23 00:09:24,415 INFO Connection check task end +2025-09-24 00:09:26,503 INFO Connection check task end -2025-09-23 00:09:26,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:26,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:27,415 INFO Connection check task start +2025-09-24 00:09:29,504 INFO Connection check task start -2025-09-23 00:09:27,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:29,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:27,416 INFO Out dated connection ,size=0 +2025-09-24 00:09:29,504 INFO Out dated connection ,size=0 -2025-09-23 00:09:27,416 INFO Connection check task end +2025-09-24 00:09:29,504 INFO Connection check task end -2025-09-23 00:09:29,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:29,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:30,416 INFO Connection check task start +2025-09-24 00:09:32,504 INFO Connection check task start -2025-09-23 00:09:30,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:32,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:30,416 INFO Out dated connection ,size=0 +2025-09-24 00:09:32,504 INFO Out dated connection ,size=0 -2025-09-23 00:09:30,417 INFO Connection check task end +2025-09-24 00:09:32,504 INFO Connection check task end -2025-09-23 00:09:32,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:32,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:33,417 INFO Connection check task start +2025-09-24 00:09:35,505 INFO Connection check task start -2025-09-23 00:09:33,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:35,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:33,417 INFO Out dated connection ,size=0 +2025-09-24 00:09:35,505 INFO Out dated connection ,size=0 -2025-09-23 00:09:33,417 INFO Connection check task end +2025-09-24 00:09:35,505 INFO Connection check task end -2025-09-23 00:09:35,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:35,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:36,417 INFO Connection check task start +2025-09-24 00:09:38,506 INFO Connection check task start -2025-09-23 00:09:36,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:38,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:36,418 INFO Out dated connection ,size=0 +2025-09-24 00:09:38,506 INFO Out dated connection ,size=0 -2025-09-23 00:09:36,418 INFO Connection check task end +2025-09-24 00:09:38,506 INFO Connection check task end -2025-09-23 00:09:38,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:38,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:39,418 INFO Connection check task start +2025-09-24 00:09:41,506 INFO Connection check task start -2025-09-23 00:09:39,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:41,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:39,418 INFO Out dated connection ,size=0 +2025-09-24 00:09:41,506 INFO Out dated connection ,size=0 -2025-09-23 00:09:39,418 INFO Connection check task end +2025-09-24 00:09:41,506 INFO Connection check task end -2025-09-23 00:09:41,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:41,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:42,419 INFO Connection check task start +2025-09-24 00:09:44,507 INFO Connection check task start -2025-09-23 00:09:42,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:44,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:42,420 INFO Out dated connection ,size=0 +2025-09-24 00:09:44,508 INFO Out dated connection ,size=0 -2025-09-23 00:09:42,420 INFO Connection check task end +2025-09-24 00:09:44,508 INFO Connection check task end -2025-09-23 00:09:44,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:44,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:45,420 INFO Connection check task start +2025-09-24 00:09:47,508 INFO Connection check task start -2025-09-23 00:09:45,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:47,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:45,420 INFO Out dated connection ,size=0 +2025-09-24 00:09:47,508 INFO Out dated connection ,size=0 -2025-09-23 00:09:45,420 INFO Connection check task end +2025-09-24 00:09:47,508 INFO Connection check task end -2025-09-23 00:09:47,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:47,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:48,420 INFO Connection check task start +2025-09-24 00:09:50,509 INFO Connection check task start -2025-09-23 00:09:48,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:50,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:48,421 INFO Out dated connection ,size=0 +2025-09-24 00:09:50,509 INFO Out dated connection ,size=0 -2025-09-23 00:09:48,421 INFO Connection check task end +2025-09-24 00:09:50,509 INFO Connection check task end -2025-09-23 00:09:50,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:50,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:51,422 INFO Connection check task start +2025-09-24 00:09:53,510 INFO Connection check task start -2025-09-23 00:09:51,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:53,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:51,422 INFO Out dated connection ,size=0 +2025-09-24 00:09:53,511 INFO Out dated connection ,size=0 -2025-09-23 00:09:51,422 INFO Connection check task end +2025-09-24 00:09:53,511 INFO Connection check task end -2025-09-23 00:09:53,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:53,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:54,423 INFO Connection check task start +2025-09-24 00:09:56,512 INFO Connection check task start -2025-09-23 00:09:54,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:56,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:54,423 INFO Out dated connection ,size=0 +2025-09-24 00:09:56,512 INFO Out dated connection ,size=0 -2025-09-23 00:09:54,423 INFO Connection check task end +2025-09-24 00:09:56,512 INFO Connection check task end -2025-09-23 00:09:56,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:56,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:09:57,424 INFO Connection check task start +2025-09-24 00:09:59,512 INFO Connection check task start -2025-09-23 00:09:57,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:09:59,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:09:57,424 INFO Out dated connection ,size=0 +2025-09-24 00:09:59,512 INFO Out dated connection ,size=0 -2025-09-23 00:09:57,424 INFO Connection check task end +2025-09-24 00:09:59,512 INFO Connection check task end -2025-09-23 00:09:59,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:09:59,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:00,425 INFO Connection check task start +2025-09-24 00:10:02,513 INFO Connection check task start -2025-09-23 00:10:00,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:02,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:00,425 INFO Out dated connection ,size=0 +2025-09-24 00:10:02,513 INFO Out dated connection ,size=0 -2025-09-23 00:10:00,425 INFO Connection check task end +2025-09-24 00:10:02,513 INFO Connection check task end -2025-09-23 00:10:02,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:02,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:03,426 INFO Connection check task start +2025-09-24 00:10:05,513 INFO Connection check task start -2025-09-23 00:10:03,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:05,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:03,426 INFO Out dated connection ,size=0 +2025-09-24 00:10:05,514 INFO Out dated connection ,size=0 -2025-09-23 00:10:03,426 INFO Connection check task end +2025-09-24 00:10:05,514 INFO Connection check task end -2025-09-23 00:10:05,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:05,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:06,427 INFO Connection check task start +2025-09-24 00:10:08,515 INFO Connection check task start -2025-09-23 00:10:06,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:08,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:06,427 INFO Out dated connection ,size=0 +2025-09-24 00:10:08,515 INFO Out dated connection ,size=0 -2025-09-23 00:10:06,427 INFO Connection check task end +2025-09-24 00:10:08,515 INFO Connection check task end -2025-09-23 00:10:08,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:08,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:09,427 INFO Connection check task start +2025-09-24 00:10:11,515 INFO Connection check task start -2025-09-23 00:10:09,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:11,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:09,428 INFO Out dated connection ,size=0 +2025-09-24 00:10:11,515 INFO Out dated connection ,size=0 -2025-09-23 00:10:09,428 INFO Connection check task end +2025-09-24 00:10:11,516 INFO Connection check task end -2025-09-23 00:10:11,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:11,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:12,429 INFO Connection check task start +2025-09-24 00:10:14,516 INFO Connection check task start -2025-09-23 00:10:12,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:14,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:12,429 INFO Out dated connection ,size=0 +2025-09-24 00:10:14,517 INFO Out dated connection ,size=0 -2025-09-23 00:10:12,429 INFO Connection check task end +2025-09-24 00:10:14,517 INFO Connection check task end -2025-09-23 00:10:14,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:14,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:15,430 INFO Connection check task start +2025-09-24 00:10:17,518 INFO Connection check task start -2025-09-23 00:10:15,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:17,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:15,431 INFO Out dated connection ,size=0 +2025-09-24 00:10:17,518 INFO Out dated connection ,size=0 -2025-09-23 00:10:15,431 INFO Connection check task end +2025-09-24 00:10:17,518 INFO Connection check task end -2025-09-23 00:10:17,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:17,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:18,432 INFO Connection check task start +2025-09-24 00:10:20,518 INFO Connection check task start -2025-09-23 00:10:18,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:20,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:18,433 INFO Out dated connection ,size=0 +2025-09-24 00:10:20,519 INFO Out dated connection ,size=0 -2025-09-23 00:10:18,433 INFO Connection check task end +2025-09-24 00:10:20,519 INFO Connection check task end -2025-09-23 00:10:20,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:20,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:21,434 INFO Connection check task start +2025-09-24 00:10:23,519 INFO Connection check task start -2025-09-23 00:10:21,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:23,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:21,434 INFO Out dated connection ,size=0 +2025-09-24 00:10:23,521 INFO Out dated connection ,size=0 -2025-09-23 00:10:21,434 INFO Connection check task end +2025-09-24 00:10:23,521 INFO Connection check task end -2025-09-23 00:10:23,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:23,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:24,435 INFO Connection check task start +2025-09-24 00:10:26,522 INFO Connection check task start -2025-09-23 00:10:24,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:26,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:24,435 INFO Out dated connection ,size=0 +2025-09-24 00:10:26,522 INFO Out dated connection ,size=0 -2025-09-23 00:10:24,435 INFO Connection check task end +2025-09-24 00:10:26,522 INFO Connection check task end -2025-09-23 00:10:26,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:26,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:27,437 INFO Connection check task start +2025-09-24 00:10:29,522 INFO Connection check task start -2025-09-23 00:10:27,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:29,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:27,437 INFO Out dated connection ,size=0 +2025-09-24 00:10:29,523 INFO Out dated connection ,size=0 -2025-09-23 00:10:27,437 INFO Connection check task end +2025-09-24 00:10:29,523 INFO Connection check task end -2025-09-23 00:10:29,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:29,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:30,437 INFO Connection check task start +2025-09-24 00:10:32,523 INFO Connection check task start -2025-09-23 00:10:30,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:32,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:30,438 INFO Out dated connection ,size=0 +2025-09-24 00:10:32,523 INFO Out dated connection ,size=0 -2025-09-23 00:10:30,438 INFO Connection check task end +2025-09-24 00:10:32,523 INFO Connection check task end -2025-09-23 00:10:32,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:32,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:33,438 INFO Connection check task start +2025-09-24 00:10:35,524 INFO Connection check task start -2025-09-23 00:10:33,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:35,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:33,438 INFO Out dated connection ,size=0 +2025-09-24 00:10:35,524 INFO Out dated connection ,size=0 -2025-09-23 00:10:33,438 INFO Connection check task end +2025-09-24 00:10:35,525 INFO Connection check task end -2025-09-23 00:10:35,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:35,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:36,439 INFO Connection check task start +2025-09-24 00:10:38,526 INFO Connection check task start -2025-09-23 00:10:36,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:38,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:36,440 INFO Out dated connection ,size=0 +2025-09-24 00:10:38,526 INFO Out dated connection ,size=0 -2025-09-23 00:10:36,440 INFO Connection check task end +2025-09-24 00:10:38,526 INFO Connection check task end -2025-09-23 00:10:38,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:38,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:39,441 INFO Connection check task start +2025-09-24 00:10:41,527 INFO Connection check task start -2025-09-23 00:10:39,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:41,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:39,441 INFO Out dated connection ,size=0 +2025-09-24 00:10:41,527 INFO Out dated connection ,size=0 -2025-09-23 00:10:39,441 INFO Connection check task end +2025-09-24 00:10:41,527 INFO Connection check task end -2025-09-23 00:10:41,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:41,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:42,442 INFO Connection check task start +2025-09-24 00:10:44,527 INFO Connection check task start -2025-09-23 00:10:42,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:44,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:42,443 INFO Out dated connection ,size=0 +2025-09-24 00:10:44,528 INFO Out dated connection ,size=0 -2025-09-23 00:10:42,443 INFO Connection check task end +2025-09-24 00:10:44,528 INFO Connection check task end -2025-09-23 00:10:44,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:44,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:45,443 INFO Connection check task start +2025-09-24 00:10:47,528 INFO Connection check task start -2025-09-23 00:10:45,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:47,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:45,443 INFO Out dated connection ,size=0 +2025-09-24 00:10:47,528 INFO Out dated connection ,size=0 -2025-09-23 00:10:45,443 INFO Connection check task end +2025-09-24 00:10:47,528 INFO Connection check task end -2025-09-23 00:10:47,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:47,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:48,443 INFO Connection check task start +2025-09-24 00:10:50,529 INFO Connection check task start -2025-09-23 00:10:48,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:50,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:48,443 INFO Out dated connection ,size=0 +2025-09-24 00:10:50,529 INFO Out dated connection ,size=0 -2025-09-23 00:10:48,444 INFO Connection check task end +2025-09-24 00:10:50,529 INFO Connection check task end -2025-09-23 00:10:50,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:50,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:51,444 INFO Connection check task start +2025-09-24 00:10:53,529 INFO Connection check task start -2025-09-23 00:10:51,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:53,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:51,444 INFO Out dated connection ,size=0 +2025-09-24 00:10:53,530 INFO Out dated connection ,size=0 -2025-09-23 00:10:51,444 INFO Connection check task end +2025-09-24 00:10:53,530 INFO Connection check task end -2025-09-23 00:10:53,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:53,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:54,444 INFO Connection check task start +2025-09-24 00:10:56,530 INFO Connection check task start -2025-09-23 00:10:54,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:56,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:54,445 INFO Out dated connection ,size=0 +2025-09-24 00:10:56,530 INFO Out dated connection ,size=0 -2025-09-23 00:10:54,445 INFO Connection check task end +2025-09-24 00:10:56,530 INFO Connection check task end -2025-09-23 00:10:56,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:56,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:10:57,446 INFO Connection check task start +2025-09-24 00:10:59,531 INFO Connection check task start -2025-09-23 00:10:57,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:10:59,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:10:57,446 INFO Out dated connection ,size=0 +2025-09-24 00:10:59,531 INFO Out dated connection ,size=0 -2025-09-23 00:10:57,447 INFO Connection check task end +2025-09-24 00:10:59,532 INFO Connection check task end -2025-09-23 00:10:59,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:10:59,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:00,448 INFO Connection check task start +2025-09-24 00:11:02,533 INFO Connection check task start -2025-09-23 00:11:00,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:02,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:00,448 INFO Out dated connection ,size=0 +2025-09-24 00:11:02,533 INFO Out dated connection ,size=0 -2025-09-23 00:11:00,448 INFO Connection check task end +2025-09-24 00:11:02,533 INFO Connection check task end -2025-09-23 00:11:02,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:02,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:03,449 INFO Connection check task start +2025-09-24 00:11:05,533 INFO Connection check task start -2025-09-23 00:11:03,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:05,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:03,449 INFO Out dated connection ,size=0 +2025-09-24 00:11:05,533 INFO Out dated connection ,size=0 -2025-09-23 00:11:03,449 INFO Connection check task end +2025-09-24 00:11:05,533 INFO Connection check task end -2025-09-23 00:11:05,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:05,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:06,449 INFO Connection check task start +2025-09-24 00:11:08,535 INFO Connection check task start -2025-09-23 00:11:06,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:08,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:06,450 INFO Out dated connection ,size=0 +2025-09-24 00:11:08,535 INFO Out dated connection ,size=0 -2025-09-23 00:11:06,450 INFO Connection check task end +2025-09-24 00:11:08,535 INFO Connection check task end -2025-09-23 00:11:08,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:08,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:09,450 INFO Connection check task start +2025-09-24 00:11:11,536 INFO Connection check task start -2025-09-23 00:11:09,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:11,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:09,450 INFO Out dated connection ,size=0 +2025-09-24 00:11:11,536 INFO Out dated connection ,size=0 -2025-09-23 00:11:09,450 INFO Connection check task end +2025-09-24 00:11:11,537 INFO Connection check task end -2025-09-23 00:11:11,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:11,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:12,451 INFO Connection check task start +2025-09-24 00:11:14,538 INFO Connection check task start -2025-09-23 00:11:12,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:14,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:12,452 INFO Out dated connection ,size=0 +2025-09-24 00:11:14,538 INFO Out dated connection ,size=0 -2025-09-23 00:11:12,452 INFO Connection check task end +2025-09-24 00:11:14,538 INFO Connection check task end -2025-09-23 00:11:14,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:14,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:15,453 INFO Connection check task start +2025-09-24 00:11:17,539 INFO Connection check task start -2025-09-23 00:11:15,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:17,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:15,453 INFO Out dated connection ,size=0 +2025-09-24 00:11:17,539 INFO Out dated connection ,size=0 -2025-09-23 00:11:15,453 INFO Connection check task end +2025-09-24 00:11:17,539 INFO Connection check task end -2025-09-23 00:11:17,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:17,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:18,454 INFO Connection check task start +2025-09-24 00:11:20,540 INFO Connection check task start -2025-09-23 00:11:18,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:20,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:18,455 INFO Out dated connection ,size=0 +2025-09-24 00:11:20,541 INFO Out dated connection ,size=0 -2025-09-23 00:11:18,455 INFO Connection check task end +2025-09-24 00:11:20,541 INFO Connection check task end -2025-09-23 00:11:20,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:20,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:21,455 INFO Connection check task start +2025-09-24 00:11:23,542 INFO Connection check task start -2025-09-23 00:11:21,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:23,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:21,455 INFO Out dated connection ,size=0 +2025-09-24 00:11:23,542 INFO Out dated connection ,size=0 -2025-09-23 00:11:21,455 INFO Connection check task end +2025-09-24 00:11:23,542 INFO Connection check task end -2025-09-23 00:11:23,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:23,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:24,456 INFO Connection check task start +2025-09-24 00:11:26,543 INFO Connection check task start -2025-09-23 00:11:24,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:26,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:24,456 INFO Out dated connection ,size=0 +2025-09-24 00:11:26,543 INFO Out dated connection ,size=0 -2025-09-23 00:11:24,456 INFO Connection check task end +2025-09-24 00:11:26,543 INFO Connection check task end -2025-09-23 00:11:26,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:26,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:27,457 INFO Connection check task start +2025-09-24 00:11:29,543 INFO Connection check task start -2025-09-23 00:11:27,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:29,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:27,457 INFO Out dated connection ,size=0 +2025-09-24 00:11:29,543 INFO Out dated connection ,size=0 -2025-09-23 00:11:27,457 INFO Connection check task end +2025-09-24 00:11:29,543 INFO Connection check task end -2025-09-23 00:11:29,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:29,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:30,459 INFO Connection check task start +2025-09-24 00:11:32,544 INFO Connection check task start -2025-09-23 00:11:30,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:32,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:30,459 INFO Out dated connection ,size=0 +2025-09-24 00:11:32,544 INFO Out dated connection ,size=0 -2025-09-23 00:11:30,459 INFO Connection check task end +2025-09-24 00:11:32,544 INFO Connection check task end -2025-09-23 00:11:32,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:32,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:33,460 INFO Connection check task start +2025-09-24 00:11:35,545 INFO Connection check task start -2025-09-23 00:11:33,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:35,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:33,461 INFO Out dated connection ,size=0 +2025-09-24 00:11:35,545 INFO Out dated connection ,size=0 -2025-09-23 00:11:33,461 INFO Connection check task end +2025-09-24 00:11:35,545 INFO Connection check task end -2025-09-23 00:11:35,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:35,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:36,461 INFO Connection check task start +2025-09-24 00:11:38,545 INFO Connection check task start -2025-09-23 00:11:36,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:38,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:36,461 INFO Out dated connection ,size=0 +2025-09-24 00:11:38,545 INFO Out dated connection ,size=0 -2025-09-23 00:11:36,461 INFO Connection check task end +2025-09-24 00:11:38,545 INFO Connection check task end -2025-09-23 00:11:38,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:38,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:39,462 INFO Connection check task start +2025-09-24 00:11:41,546 INFO Connection check task start -2025-09-23 00:11:39,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:41,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:39,462 INFO Out dated connection ,size=0 +2025-09-24 00:11:41,546 INFO Out dated connection ,size=0 -2025-09-23 00:11:39,462 INFO Connection check task end +2025-09-24 00:11:41,546 INFO Connection check task end -2025-09-23 00:11:41,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:41,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:42,462 INFO Connection check task start +2025-09-24 00:11:44,546 INFO Connection check task start -2025-09-23 00:11:42,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:44,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:42,463 INFO Out dated connection ,size=0 +2025-09-24 00:11:44,546 INFO Out dated connection ,size=0 -2025-09-23 00:11:42,463 INFO Connection check task end +2025-09-24 00:11:44,546 INFO Connection check task end -2025-09-23 00:11:44,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:44,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:45,463 INFO Connection check task start +2025-09-24 00:11:47,547 INFO Connection check task start -2025-09-23 00:11:45,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:47,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:45,463 INFO Out dated connection ,size=0 +2025-09-24 00:11:47,547 INFO Out dated connection ,size=0 -2025-09-23 00:11:45,463 INFO Connection check task end +2025-09-24 00:11:47,547 INFO Connection check task end -2025-09-23 00:11:47,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:47,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:48,464 INFO Connection check task start +2025-09-24 00:11:50,548 INFO Connection check task start -2025-09-23 00:11:48,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:50,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:48,465 INFO Out dated connection ,size=0 +2025-09-24 00:11:50,548 INFO Out dated connection ,size=0 -2025-09-23 00:11:48,465 INFO Connection check task end +2025-09-24 00:11:50,548 INFO Connection check task end -2025-09-23 00:11:50,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:50,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:51,465 INFO Connection check task start +2025-09-24 00:11:53,548 INFO Connection check task start -2025-09-23 00:11:51,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:53,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:51,465 INFO Out dated connection ,size=0 +2025-09-24 00:11:53,548 INFO Out dated connection ,size=0 -2025-09-23 00:11:51,465 INFO Connection check task end +2025-09-24 00:11:53,548 INFO Connection check task end -2025-09-23 00:11:53,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:53,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:54,466 INFO Connection check task start +2025-09-24 00:11:56,549 INFO Connection check task start -2025-09-23 00:11:54,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:56,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:54,466 INFO Out dated connection ,size=0 +2025-09-24 00:11:56,549 INFO Out dated connection ,size=0 -2025-09-23 00:11:54,466 INFO Connection check task end +2025-09-24 00:11:56,549 INFO Connection check task end -2025-09-23 00:11:56,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:56,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:11:57,467 INFO Connection check task start +2025-09-24 00:11:59,549 INFO Connection check task start -2025-09-23 00:11:57,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:11:59,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:11:57,467 INFO Out dated connection ,size=0 +2025-09-24 00:11:59,549 INFO Out dated connection ,size=0 -2025-09-23 00:11:57,467 INFO Connection check task end +2025-09-24 00:11:59,549 INFO Connection check task end -2025-09-23 00:11:59,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:11:59,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:00,468 INFO Connection check task start +2025-09-24 00:12:02,550 INFO Connection check task start -2025-09-23 00:12:00,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:02,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:00,468 INFO Out dated connection ,size=0 +2025-09-24 00:12:02,550 INFO Out dated connection ,size=0 -2025-09-23 00:12:00,469 INFO Connection check task end +2025-09-24 00:12:02,550 INFO Connection check task end -2025-09-23 00:12:02,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:02,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:03,469 INFO Connection check task start +2025-09-24 00:12:05,551 INFO Connection check task start -2025-09-23 00:12:03,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:05,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:03,469 INFO Out dated connection ,size=0 +2025-09-24 00:12:05,551 INFO Out dated connection ,size=0 -2025-09-23 00:12:03,469 INFO Connection check task end +2025-09-24 00:12:05,551 INFO Connection check task end -2025-09-23 00:12:05,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:05,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:06,470 INFO Connection check task start +2025-09-24 00:12:08,552 INFO Connection check task start -2025-09-23 00:12:06,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:08,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:06,471 INFO Out dated connection ,size=0 +2025-09-24 00:12:08,553 INFO Out dated connection ,size=0 -2025-09-23 00:12:06,471 INFO Connection check task end +2025-09-24 00:12:08,553 INFO Connection check task end -2025-09-23 00:12:08,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:08,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:09,471 INFO Connection check task start +2025-09-24 00:12:11,554 INFO Connection check task start -2025-09-23 00:12:09,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:11,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:09,471 INFO Out dated connection ,size=0 +2025-09-24 00:12:11,554 INFO Out dated connection ,size=0 -2025-09-23 00:12:09,472 INFO Connection check task end +2025-09-24 00:12:11,554 INFO Connection check task end -2025-09-23 00:12:11,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:11,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:12,472 INFO Connection check task start +2025-09-24 00:12:14,555 INFO Connection check task start -2025-09-23 00:12:12,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:14,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:12,472 INFO Out dated connection ,size=0 +2025-09-24 00:12:14,555 INFO Out dated connection ,size=0 -2025-09-23 00:12:12,472 INFO Connection check task end +2025-09-24 00:12:14,555 INFO Connection check task end -2025-09-23 00:12:14,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:14,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:15,473 INFO Connection check task start +2025-09-24 00:12:17,555 INFO Connection check task start -2025-09-23 00:12:15,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:17,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:15,473 INFO Out dated connection ,size=0 +2025-09-24 00:12:17,560 INFO Out dated connection ,size=0 -2025-09-23 00:12:15,474 INFO Connection check task end +2025-09-24 00:12:17,560 INFO Connection check task end -2025-09-23 00:12:17,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:17,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:18,474 INFO Connection check task start +2025-09-24 00:12:20,560 INFO Connection check task start -2025-09-23 00:12:18,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:20,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:18,475 INFO Out dated connection ,size=0 +2025-09-24 00:12:20,560 INFO Out dated connection ,size=0 -2025-09-23 00:12:18,475 INFO Connection check task end +2025-09-24 00:12:20,560 INFO Connection check task end -2025-09-23 00:12:20,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:20,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:21,476 INFO Connection check task start +2025-09-24 00:12:23,561 INFO Connection check task start -2025-09-23 00:12:21,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:23,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:21,476 INFO Out dated connection ,size=0 +2025-09-24 00:12:23,562 INFO Out dated connection ,size=0 -2025-09-23 00:12:21,476 INFO Connection check task end +2025-09-24 00:12:23,562 INFO Connection check task end -2025-09-23 00:12:23,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:23,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:24,476 INFO Connection check task start +2025-09-24 00:12:26,562 INFO Connection check task start -2025-09-23 00:12:24,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:26,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:24,477 INFO Out dated connection ,size=0 +2025-09-24 00:12:26,562 INFO Out dated connection ,size=0 -2025-09-23 00:12:24,477 INFO Connection check task end +2025-09-24 00:12:26,562 INFO Connection check task end -2025-09-23 00:12:26,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:26,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:27,477 INFO Connection check task start +2025-09-24 00:12:29,563 INFO Connection check task start -2025-09-23 00:12:27,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:29,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:27,477 INFO Out dated connection ,size=0 +2025-09-24 00:12:29,563 INFO Out dated connection ,size=0 -2025-09-23 00:12:27,477 INFO Connection check task end +2025-09-24 00:12:29,563 INFO Connection check task end -2025-09-23 00:12:29,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:29,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:30,477 INFO Connection check task start +2025-09-24 00:12:32,563 INFO Connection check task start -2025-09-23 00:12:30,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:32,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:30,478 INFO Out dated connection ,size=0 +2025-09-24 00:12:32,564 INFO Out dated connection ,size=0 -2025-09-23 00:12:30,478 INFO Connection check task end +2025-09-24 00:12:32,564 INFO Connection check task end -2025-09-23 00:12:32,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:32,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:33,478 INFO Connection check task start +2025-09-24 00:12:35,564 INFO Connection check task start -2025-09-23 00:12:33,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:35,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:33,478 INFO Out dated connection ,size=0 +2025-09-24 00:12:35,564 INFO Out dated connection ,size=0 -2025-09-23 00:12:33,478 INFO Connection check task end +2025-09-24 00:12:35,564 INFO Connection check task end -2025-09-23 00:12:35,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:35,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:36,479 INFO Connection check task start +2025-09-24 00:12:38,565 INFO Connection check task start -2025-09-23 00:12:36,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:38,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:36,479 INFO Out dated connection ,size=0 +2025-09-24 00:12:38,565 INFO Out dated connection ,size=0 -2025-09-23 00:12:36,479 INFO Connection check task end +2025-09-24 00:12:38,565 INFO Connection check task end -2025-09-23 00:12:38,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:38,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:39,480 INFO Connection check task start +2025-09-24 00:12:41,565 INFO Connection check task start -2025-09-23 00:12:39,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:41,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:39,480 INFO Out dated connection ,size=0 +2025-09-24 00:12:41,566 INFO Out dated connection ,size=0 -2025-09-23 00:12:39,480 INFO Connection check task end +2025-09-24 00:12:41,566 INFO Connection check task end -2025-09-23 00:12:41,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:41,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:42,481 INFO Connection check task start +2025-09-24 00:12:44,566 INFO Connection check task start -2025-09-23 00:12:42,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:44,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:42,482 INFO Out dated connection ,size=0 +2025-09-24 00:12:44,566 INFO Out dated connection ,size=0 -2025-09-23 00:12:42,482 INFO Connection check task end +2025-09-24 00:12:44,566 INFO Connection check task end -2025-09-23 00:12:44,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:44,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:45,483 INFO Connection check task start +2025-09-24 00:12:47,567 INFO Connection check task start -2025-09-23 00:12:45,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:47,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:45,483 INFO Out dated connection ,size=0 +2025-09-24 00:12:47,567 INFO Out dated connection ,size=0 -2025-09-23 00:12:45,483 INFO Connection check task end +2025-09-24 00:12:47,567 INFO Connection check task end -2025-09-23 00:12:47,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:47,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:48,483 INFO Connection check task start +2025-09-24 00:12:50,568 INFO Connection check task start -2025-09-23 00:12:48,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:50,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:48,483 INFO Out dated connection ,size=0 +2025-09-24 00:12:50,568 INFO Out dated connection ,size=0 -2025-09-23 00:12:48,484 INFO Connection check task end +2025-09-24 00:12:50,568 INFO Connection check task end -2025-09-23 00:12:50,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:50,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:51,485 INFO Connection check task start +2025-09-24 00:12:53,569 INFO Connection check task start -2025-09-23 00:12:51,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:53,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:51,485 INFO Out dated connection ,size=0 +2025-09-24 00:12:53,569 INFO Out dated connection ,size=0 -2025-09-23 00:12:51,485 INFO Connection check task end +2025-09-24 00:12:53,569 INFO Connection check task end -2025-09-23 00:12:53,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:53,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:54,486 INFO Connection check task start +2025-09-24 00:12:56,569 INFO Connection check task start -2025-09-23 00:12:54,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:56,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:54,486 INFO Out dated connection ,size=0 +2025-09-24 00:12:56,569 INFO Out dated connection ,size=0 -2025-09-23 00:12:54,486 INFO Connection check task end +2025-09-24 00:12:56,569 INFO Connection check task end -2025-09-23 00:12:56,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:56,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:12:57,486 INFO Connection check task start +2025-09-24 00:12:59,569 INFO Connection check task start -2025-09-23 00:12:57,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:12:59,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:12:57,487 INFO Out dated connection ,size=0 +2025-09-24 00:12:59,570 INFO Out dated connection ,size=0 -2025-09-23 00:12:57,487 INFO Connection check task end +2025-09-24 00:12:59,570 INFO Connection check task end -2025-09-23 00:12:59,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:12:59,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:00,488 INFO Connection check task start +2025-09-24 00:13:02,571 INFO Connection check task start -2025-09-23 00:13:00,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:02,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:00,488 INFO Out dated connection ,size=0 +2025-09-24 00:13:02,571 INFO Out dated connection ,size=0 -2025-09-23 00:13:00,488 INFO Connection check task end +2025-09-24 00:13:02,571 INFO Connection check task end -2025-09-23 00:13:02,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:02,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:03,489 INFO Connection check task start +2025-09-24 00:13:05,571 INFO Connection check task start -2025-09-23 00:13:03,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:05,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:03,489 INFO Out dated connection ,size=0 +2025-09-24 00:13:05,571 INFO Out dated connection ,size=0 -2025-09-23 00:13:03,489 INFO Connection check task end +2025-09-24 00:13:05,571 INFO Connection check task end -2025-09-23 00:13:05,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:05,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:06,489 INFO Connection check task start +2025-09-24 00:13:08,572 INFO Connection check task start -2025-09-23 00:13:06,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:08,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:06,489 INFO Out dated connection ,size=0 +2025-09-24 00:13:08,572 INFO Out dated connection ,size=0 -2025-09-23 00:13:06,489 INFO Connection check task end +2025-09-24 00:13:08,572 INFO Connection check task end -2025-09-23 00:13:08,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:08,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:09,490 INFO Connection check task start +2025-09-24 00:13:11,572 INFO Connection check task start -2025-09-23 00:13:09,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:11,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:09,491 INFO Out dated connection ,size=0 +2025-09-24 00:13:11,572 INFO Out dated connection ,size=0 -2025-09-23 00:13:09,491 INFO Connection check task end +2025-09-24 00:13:11,572 INFO Connection check task end -2025-09-23 00:13:11,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:11,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:12,491 INFO Connection check task start +2025-09-24 00:13:14,572 INFO Connection check task start -2025-09-23 00:13:12,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:14,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:12,491 INFO Out dated connection ,size=0 +2025-09-24 00:13:14,572 INFO Out dated connection ,size=0 -2025-09-23 00:13:12,491 INFO Connection check task end +2025-09-24 00:13:14,572 INFO Connection check task end -2025-09-23 00:13:14,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:14,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:15,492 INFO Connection check task start +2025-09-24 00:13:17,573 INFO Connection check task start -2025-09-23 00:13:15,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:17,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:15,492 INFO Out dated connection ,size=0 +2025-09-24 00:13:17,573 INFO Out dated connection ,size=0 -2025-09-23 00:13:15,492 INFO Connection check task end +2025-09-24 00:13:17,573 INFO Connection check task end -2025-09-23 00:13:17,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:17,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:18,492 INFO Connection check task start +2025-09-24 00:13:20,574 INFO Connection check task start -2025-09-23 00:13:18,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:20,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:18,493 INFO Out dated connection ,size=0 +2025-09-24 00:13:20,575 INFO Out dated connection ,size=0 -2025-09-23 00:13:18,493 INFO Connection check task end +2025-09-24 00:13:20,575 INFO Connection check task end -2025-09-23 00:13:20,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:20,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:21,493 INFO Connection check task start +2025-09-24 00:13:23,576 INFO Connection check task start -2025-09-23 00:13:21,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:23,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:21,494 INFO Out dated connection ,size=0 +2025-09-24 00:13:23,576 INFO Out dated connection ,size=0 -2025-09-23 00:13:21,494 INFO Connection check task end +2025-09-24 00:13:23,576 INFO Connection check task end -2025-09-23 00:13:23,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:23,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:24,494 INFO Connection check task start +2025-09-24 00:13:26,577 INFO Connection check task start -2025-09-23 00:13:24,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:26,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:24,494 INFO Out dated connection ,size=0 +2025-09-24 00:13:26,577 INFO Out dated connection ,size=0 -2025-09-23 00:13:24,494 INFO Connection check task end +2025-09-24 00:13:26,577 INFO Connection check task end -2025-09-23 00:13:26,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:26,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:27,495 INFO Connection check task start +2025-09-24 00:13:29,578 INFO Connection check task start -2025-09-23 00:13:27,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:29,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:27,495 INFO Out dated connection ,size=0 +2025-09-24 00:13:29,578 INFO Out dated connection ,size=0 -2025-09-23 00:13:27,495 INFO Connection check task end +2025-09-24 00:13:29,578 INFO Connection check task end -2025-09-23 00:13:29,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:29,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:30,496 INFO Connection check task start +2025-09-24 00:13:32,578 INFO Connection check task start -2025-09-23 00:13:30,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:32,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:30,497 INFO Out dated connection ,size=0 +2025-09-24 00:13:32,578 INFO Out dated connection ,size=0 -2025-09-23 00:13:30,497 INFO Connection check task end +2025-09-24 00:13:32,578 INFO Connection check task end -2025-09-23 00:13:32,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:32,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:33,498 INFO Connection check task start +2025-09-24 00:13:35,579 INFO Connection check task start -2025-09-23 00:13:33,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:35,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:33,498 INFO Out dated connection ,size=0 +2025-09-24 00:13:35,579 INFO Out dated connection ,size=0 -2025-09-23 00:13:33,498 INFO Connection check task end +2025-09-24 00:13:35,579 INFO Connection check task end -2025-09-23 00:13:35,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:35,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:36,499 INFO Connection check task start +2025-09-24 00:13:38,579 INFO Connection check task start -2025-09-23 00:13:36,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:38,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:36,499 INFO Out dated connection ,size=0 +2025-09-24 00:13:38,580 INFO Out dated connection ,size=0 -2025-09-23 00:13:36,499 INFO Connection check task end +2025-09-24 00:13:38,580 INFO Connection check task end -2025-09-23 00:13:38,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:38,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:39,499 INFO Connection check task start +2025-09-24 00:13:41,580 INFO Connection check task start -2025-09-23 00:13:39,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:41,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:39,499 INFO Out dated connection ,size=0 +2025-09-24 00:13:41,580 INFO Out dated connection ,size=0 -2025-09-23 00:13:39,499 INFO Connection check task end +2025-09-24 00:13:41,580 INFO Connection check task end -2025-09-23 00:13:41,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:41,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:42,500 INFO Connection check task start +2025-09-24 00:13:44,580 INFO Connection check task start -2025-09-23 00:13:42,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:44,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:42,500 INFO Out dated connection ,size=0 +2025-09-24 00:13:44,581 INFO Out dated connection ,size=0 -2025-09-23 00:13:42,500 INFO Connection check task end +2025-09-24 00:13:44,581 INFO Connection check task end -2025-09-23 00:13:44,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:44,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:45,500 INFO Connection check task start +2025-09-24 00:13:47,581 INFO Connection check task start -2025-09-23 00:13:45,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:47,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:45,501 INFO Out dated connection ,size=0 +2025-09-24 00:13:47,582 INFO Out dated connection ,size=0 -2025-09-23 00:13:45,501 INFO Connection check task end +2025-09-24 00:13:47,582 INFO Connection check task end -2025-09-23 00:13:47,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:47,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:48,501 INFO Connection check task start +2025-09-24 00:13:50,583 INFO Connection check task start -2025-09-23 00:13:48,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:50,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:48,501 INFO Out dated connection ,size=0 +2025-09-24 00:13:50,583 INFO Out dated connection ,size=0 -2025-09-23 00:13:48,501 INFO Connection check task end +2025-09-24 00:13:50,583 INFO Connection check task end -2025-09-23 00:13:50,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:50,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:51,501 INFO Connection check task start +2025-09-24 00:13:53,584 INFO Connection check task start -2025-09-23 00:13:51,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:53,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:51,502 INFO Out dated connection ,size=0 +2025-09-24 00:13:53,584 INFO Out dated connection ,size=0 -2025-09-23 00:13:51,502 INFO Connection check task end +2025-09-24 00:13:53,584 INFO Connection check task end -2025-09-23 00:13:53,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:53,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:54,502 INFO Connection check task start +2025-09-24 00:13:56,584 INFO Connection check task start -2025-09-23 00:13:54,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:56,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:54,502 INFO Out dated connection ,size=0 +2025-09-24 00:13:56,585 INFO Out dated connection ,size=0 -2025-09-23 00:13:54,502 INFO Connection check task end +2025-09-24 00:13:56,585 INFO Connection check task end -2025-09-23 00:13:56,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:56,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:13:57,502 INFO Connection check task start +2025-09-24 00:13:59,586 INFO Connection check task start -2025-09-23 00:13:57,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:13:59,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:13:57,503 INFO Out dated connection ,size=0 +2025-09-24 00:13:59,586 INFO Out dated connection ,size=0 -2025-09-23 00:13:57,503 INFO Connection check task end +2025-09-24 00:13:59,586 INFO Connection check task end -2025-09-23 00:13:59,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:13:59,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:00,503 INFO Connection check task start +2025-09-24 00:14:02,587 INFO Connection check task start -2025-09-23 00:14:00,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:02,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:00,503 INFO Out dated connection ,size=0 +2025-09-24 00:14:02,587 INFO Out dated connection ,size=0 -2025-09-23 00:14:00,503 INFO Connection check task end +2025-09-24 00:14:02,587 INFO Connection check task end -2025-09-23 00:14:02,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:02,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:03,503 INFO Connection check task start +2025-09-24 00:14:05,587 INFO Connection check task start -2025-09-23 00:14:03,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:05,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:03,504 INFO Out dated connection ,size=0 +2025-09-24 00:14:05,587 INFO Out dated connection ,size=0 -2025-09-23 00:14:03,504 INFO Connection check task end +2025-09-24 00:14:05,587 INFO Connection check task end -2025-09-23 00:14:05,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:05,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:06,504 INFO Connection check task start +2025-09-24 00:14:08,588 INFO Connection check task start -2025-09-23 00:14:06,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:08,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:06,505 INFO Out dated connection ,size=0 +2025-09-24 00:14:08,588 INFO Out dated connection ,size=0 -2025-09-23 00:14:06,505 INFO Connection check task end +2025-09-24 00:14:08,588 INFO Connection check task end -2025-09-23 00:14:08,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:08,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:09,505 INFO Connection check task start +2025-09-24 00:14:11,589 INFO Connection check task start -2025-09-23 00:14:09,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:11,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:09,506 INFO Out dated connection ,size=0 +2025-09-24 00:14:11,589 INFO Out dated connection ,size=0 -2025-09-23 00:14:09,506 INFO Connection check task end +2025-09-24 00:14:11,589 INFO Connection check task end -2025-09-23 00:14:11,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:11,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:12,507 INFO Connection check task start +2025-09-24 00:14:14,590 INFO Connection check task start -2025-09-23 00:14:12,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:14,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:12,507 INFO Out dated connection ,size=0 +2025-09-24 00:14:14,590 INFO Out dated connection ,size=0 -2025-09-23 00:14:12,507 INFO Connection check task end +2025-09-24 00:14:14,590 INFO Connection check task end -2025-09-23 00:14:14,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:14,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:15,508 INFO Connection check task start +2025-09-24 00:14:17,591 INFO Connection check task start -2025-09-23 00:14:15,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:17,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:15,509 INFO Out dated connection ,size=0 +2025-09-24 00:14:17,592 INFO Out dated connection ,size=0 -2025-09-23 00:14:15,509 INFO Connection check task end +2025-09-24 00:14:17,592 INFO Connection check task end -2025-09-23 00:14:17,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:17,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:18,509 INFO Connection check task start +2025-09-24 00:14:20,592 INFO Connection check task start -2025-09-23 00:14:18,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:20,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:18,530 INFO Out dated connection ,size=0 +2025-09-24 00:14:20,592 INFO Out dated connection ,size=0 -2025-09-23 00:14:18,530 INFO Connection check task end +2025-09-24 00:14:20,592 INFO Connection check task end -2025-09-23 00:14:20,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:20,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:21,551 INFO Connection check task start +2025-09-24 00:14:23,593 INFO Connection check task start -2025-09-23 00:14:21,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:23,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:21,551 INFO Out dated connection ,size=0 +2025-09-24 00:14:23,593 INFO Out dated connection ,size=0 -2025-09-23 00:14:21,551 INFO Connection check task end +2025-09-24 00:14:23,593 INFO Connection check task end -2025-09-23 00:14:23,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:23,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:24,552 INFO Connection check task start +2025-09-24 00:14:26,593 INFO Connection check task start -2025-09-23 00:14:24,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:26,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:24,552 INFO Out dated connection ,size=0 +2025-09-24 00:14:26,594 INFO Out dated connection ,size=0 -2025-09-23 00:14:24,552 INFO Connection check task end +2025-09-24 00:14:26,594 INFO Connection check task end -2025-09-23 00:14:26,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:26,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:27,553 INFO Connection check task start +2025-09-24 00:14:29,594 INFO Connection check task start -2025-09-23 00:14:27,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:29,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:27,553 INFO Out dated connection ,size=0 +2025-09-24 00:14:29,594 INFO Out dated connection ,size=0 -2025-09-23 00:14:27,553 INFO Connection check task end +2025-09-24 00:14:29,594 INFO Connection check task end -2025-09-23 00:14:29,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:29,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:30,554 INFO Connection check task start +2025-09-24 00:14:32,595 INFO Connection check task start -2025-09-23 00:14:30,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:32,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:30,554 INFO Out dated connection ,size=0 +2025-09-24 00:14:32,595 INFO Out dated connection ,size=0 -2025-09-23 00:14:30,554 INFO Connection check task end +2025-09-24 00:14:32,595 INFO Connection check task end -2025-09-23 00:14:32,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:32,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:33,555 INFO Connection check task start +2025-09-24 00:14:35,597 INFO Connection check task start -2025-09-23 00:14:33,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:35,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:33,556 INFO Out dated connection ,size=0 +2025-09-24 00:14:35,598 INFO Out dated connection ,size=0 -2025-09-23 00:14:33,556 INFO Connection check task end +2025-09-24 00:14:35,598 INFO Connection check task end -2025-09-23 00:14:35,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:35,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:36,556 INFO Connection check task start +2025-09-24 00:14:38,599 INFO Connection check task start -2025-09-23 00:14:36,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:38,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:36,556 INFO Out dated connection ,size=0 +2025-09-24 00:14:38,599 INFO Out dated connection ,size=0 -2025-09-23 00:14:36,556 INFO Connection check task end +2025-09-24 00:14:38,599 INFO Connection check task end -2025-09-23 00:14:38,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:38,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:39,556 INFO Connection check task start +2025-09-24 00:14:41,599 INFO Connection check task start -2025-09-23 00:14:39,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:41,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:39,557 INFO Out dated connection ,size=0 +2025-09-24 00:14:41,600 INFO Out dated connection ,size=0 -2025-09-23 00:14:39,557 INFO Connection check task end +2025-09-24 00:14:41,600 INFO Connection check task end -2025-09-23 00:14:41,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:41,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:42,557 INFO Connection check task start +2025-09-24 00:14:44,600 INFO Connection check task start -2025-09-23 00:14:42,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:44,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:42,558 INFO Out dated connection ,size=0 +2025-09-24 00:14:44,601 INFO Out dated connection ,size=0 -2025-09-23 00:14:42,558 INFO Connection check task end +2025-09-24 00:14:44,601 INFO Connection check task end -2025-09-23 00:14:44,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:44,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:45,559 INFO Connection check task start +2025-09-24 00:14:47,602 INFO Connection check task start -2025-09-23 00:14:45,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:47,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:45,559 INFO Out dated connection ,size=0 +2025-09-24 00:14:47,602 INFO Out dated connection ,size=0 -2025-09-23 00:14:45,559 INFO Connection check task end +2025-09-24 00:14:47,602 INFO Connection check task end -2025-09-23 00:14:47,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:47,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:48,560 INFO Connection check task start +2025-09-24 00:14:50,603 INFO Connection check task start -2025-09-23 00:14:48,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:50,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:48,560 INFO Out dated connection ,size=0 +2025-09-24 00:14:50,603 INFO Out dated connection ,size=0 -2025-09-23 00:14:48,561 INFO Connection check task end +2025-09-24 00:14:50,603 INFO Connection check task end -2025-09-23 00:14:50,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:50,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:51,562 INFO Connection check task start +2025-09-24 00:14:53,604 INFO Connection check task start -2025-09-23 00:14:51,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:53,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:51,562 INFO Out dated connection ,size=0 +2025-09-24 00:14:53,604 INFO Out dated connection ,size=0 -2025-09-23 00:14:51,562 INFO Connection check task end +2025-09-24 00:14:53,604 INFO Connection check task end -2025-09-23 00:14:53,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:53,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:54,562 INFO Connection check task start +2025-09-24 00:14:56,605 INFO Connection check task start -2025-09-23 00:14:54,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:56,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:54,562 INFO Out dated connection ,size=0 +2025-09-24 00:14:56,605 INFO Out dated connection ,size=0 -2025-09-23 00:14:54,562 INFO Connection check task end +2025-09-24 00:14:56,605 INFO Connection check task end -2025-09-23 00:14:56,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:56,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:14:57,563 INFO Connection check task start +2025-09-24 00:14:59,605 INFO Connection check task start -2025-09-23 00:14:57,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:14:59,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:14:57,564 INFO Out dated connection ,size=0 +2025-09-24 00:14:59,605 INFO Out dated connection ,size=0 -2025-09-23 00:14:57,564 INFO Connection check task end +2025-09-24 00:14:59,606 INFO Connection check task end -2025-09-23 00:14:59,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:14:59,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:00,564 INFO Connection check task start +2025-09-24 00:15:02,607 INFO Connection check task start -2025-09-23 00:15:00,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:02,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:00,564 INFO Out dated connection ,size=0 +2025-09-24 00:15:02,607 INFO Out dated connection ,size=0 -2025-09-23 00:15:00,564 INFO Connection check task end +2025-09-24 00:15:02,607 INFO Connection check task end -2025-09-23 00:15:02,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:02,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:03,565 INFO Connection check task start +2025-09-24 00:15:05,607 INFO Connection check task start -2025-09-23 00:15:03,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:05,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:03,565 INFO Out dated connection ,size=0 +2025-09-24 00:15:05,607 INFO Out dated connection ,size=0 -2025-09-23 00:15:03,565 INFO Connection check task end +2025-09-24 00:15:05,607 INFO Connection check task end -2025-09-23 00:15:05,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:05,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:06,566 INFO Connection check task start +2025-09-24 00:15:08,608 INFO Connection check task start -2025-09-23 00:15:06,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:08,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:06,566 INFO Out dated connection ,size=0 +2025-09-24 00:15:08,608 INFO Out dated connection ,size=0 -2025-09-23 00:15:06,566 INFO Connection check task end +2025-09-24 00:15:08,608 INFO Connection check task end -2025-09-23 00:15:08,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:08,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:09,567 INFO Connection check task start +2025-09-24 00:15:11,608 INFO Connection check task start -2025-09-23 00:15:09,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:11,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:09,567 INFO Out dated connection ,size=0 +2025-09-24 00:15:11,608 INFO Out dated connection ,size=0 -2025-09-23 00:15:09,567 INFO Connection check task end +2025-09-24 00:15:11,609 INFO Connection check task end -2025-09-23 00:15:11,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:11,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:12,567 INFO Connection check task start +2025-09-24 00:15:14,609 INFO Connection check task start -2025-09-23 00:15:12,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:14,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:12,568 INFO Out dated connection ,size=0 +2025-09-24 00:15:14,609 INFO Out dated connection ,size=0 -2025-09-23 00:15:12,568 INFO Connection check task end +2025-09-24 00:15:14,609 INFO Connection check task end -2025-09-23 00:15:14,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:14,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:15,568 INFO Connection check task start +2025-09-24 00:15:17,610 INFO Connection check task start -2025-09-23 00:15:15,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:17,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:15,568 INFO Out dated connection ,size=0 +2025-09-24 00:15:17,610 INFO Out dated connection ,size=0 -2025-09-23 00:15:15,568 INFO Connection check task end +2025-09-24 00:15:17,610 INFO Connection check task end -2025-09-23 00:15:17,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:17,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:18,569 INFO Connection check task start +2025-09-24 00:15:20,611 INFO Connection check task start -2025-09-23 00:15:18,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:20,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:18,569 INFO Out dated connection ,size=0 +2025-09-24 00:15:20,611 INFO Out dated connection ,size=0 -2025-09-23 00:15:18,569 INFO Connection check task end +2025-09-24 00:15:20,611 INFO Connection check task end -2025-09-23 00:15:20,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:20,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:21,571 INFO Connection check task start +2025-09-24 00:15:23,612 INFO Connection check task start -2025-09-23 00:15:21,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:23,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:21,571 INFO Out dated connection ,size=0 +2025-09-24 00:15:23,612 INFO Out dated connection ,size=0 -2025-09-23 00:15:21,571 INFO Connection check task end +2025-09-24 00:15:23,612 INFO Connection check task end -2025-09-23 00:15:23,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:23,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:24,572 INFO Connection check task start +2025-09-24 00:15:26,613 INFO Connection check task start -2025-09-23 00:15:24,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:26,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:24,572 INFO Out dated connection ,size=0 +2025-09-24 00:15:26,613 INFO Out dated connection ,size=0 -2025-09-23 00:15:24,572 INFO Connection check task end +2025-09-24 00:15:26,613 INFO Connection check task end -2025-09-23 00:15:26,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:26,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:27,573 INFO Connection check task start +2025-09-24 00:15:29,614 INFO Connection check task start -2025-09-23 00:15:27,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:29,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:27,573 INFO Out dated connection ,size=0 +2025-09-24 00:15:29,614 INFO Out dated connection ,size=0 -2025-09-23 00:15:27,573 INFO Connection check task end +2025-09-24 00:15:29,614 INFO Connection check task end -2025-09-23 00:15:29,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:29,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:30,573 INFO Connection check task start +2025-09-24 00:15:32,615 INFO Connection check task start -2025-09-23 00:15:30,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:32,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:30,573 INFO Out dated connection ,size=0 +2025-09-24 00:15:32,616 INFO Out dated connection ,size=0 -2025-09-23 00:15:30,573 INFO Connection check task end +2025-09-24 00:15:32,616 INFO Connection check task end -2025-09-23 00:15:32,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:32,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:33,574 INFO Connection check task start +2025-09-24 00:15:35,617 INFO Connection check task start -2025-09-23 00:15:33,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:35,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:33,574 INFO Out dated connection ,size=0 +2025-09-24 00:15:35,617 INFO Out dated connection ,size=0 -2025-09-23 00:15:33,574 INFO Connection check task end +2025-09-24 00:15:35,617 INFO Connection check task end -2025-09-23 00:15:35,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:35,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:36,575 INFO Connection check task start +2025-09-24 00:15:38,618 INFO Connection check task start -2025-09-23 00:15:36,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:38,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:36,575 INFO Out dated connection ,size=0 +2025-09-24 00:15:38,619 INFO Out dated connection ,size=0 -2025-09-23 00:15:36,575 INFO Connection check task end +2025-09-24 00:15:38,619 INFO Connection check task end -2025-09-23 00:15:38,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:38,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:39,576 INFO Connection check task start +2025-09-24 00:15:41,620 INFO Connection check task start -2025-09-23 00:15:39,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:41,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:39,576 INFO Out dated connection ,size=0 +2025-09-24 00:15:41,620 INFO Out dated connection ,size=0 -2025-09-23 00:15:39,576 INFO Connection check task end +2025-09-24 00:15:41,620 INFO Connection check task end -2025-09-23 00:15:41,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:41,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:42,576 INFO Connection check task start +2025-09-24 00:15:44,621 INFO Connection check task start -2025-09-23 00:15:42,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:44,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:42,576 INFO Out dated connection ,size=0 +2025-09-24 00:15:44,621 INFO Out dated connection ,size=0 -2025-09-23 00:15:42,576 INFO Connection check task end +2025-09-24 00:15:44,621 INFO Connection check task end -2025-09-23 00:15:44,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:44,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:45,576 INFO Connection check task start +2025-09-24 00:15:47,623 INFO Connection check task start -2025-09-23 00:15:45,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:47,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:45,577 INFO Out dated connection ,size=0 +2025-09-24 00:15:47,623 INFO Out dated connection ,size=0 -2025-09-23 00:15:45,577 INFO Connection check task end +2025-09-24 00:15:47,623 INFO Connection check task end -2025-09-23 00:15:47,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:47,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:48,578 INFO Connection check task start +2025-09-24 00:15:50,624 INFO Connection check task start -2025-09-23 00:15:48,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:50,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:48,578 INFO Out dated connection ,size=0 +2025-09-24 00:15:50,624 INFO Out dated connection ,size=0 -2025-09-23 00:15:48,578 INFO Connection check task end +2025-09-24 00:15:50,624 INFO Connection check task end -2025-09-23 00:15:50,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:50,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:51,579 INFO Connection check task start +2025-09-24 00:15:53,625 INFO Connection check task start -2025-09-23 00:15:51,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:53,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:51,579 INFO Out dated connection ,size=0 +2025-09-24 00:15:53,626 INFO Out dated connection ,size=0 -2025-09-23 00:15:51,579 INFO Connection check task end +2025-09-24 00:15:53,626 INFO Connection check task end -2025-09-23 00:15:53,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:53,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:54,580 INFO Connection check task start +2025-09-24 00:15:56,626 INFO Connection check task start -2025-09-23 00:15:54,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:56,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:54,580 INFO Out dated connection ,size=0 +2025-09-24 00:15:56,627 INFO Out dated connection ,size=0 -2025-09-23 00:15:54,580 INFO Connection check task end +2025-09-24 00:15:56,627 INFO Connection check task end -2025-09-23 00:15:56,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:56,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:15:57,580 INFO Connection check task start +2025-09-24 00:15:59,628 INFO Connection check task start -2025-09-23 00:15:57,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:15:59,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:15:57,581 INFO Out dated connection ,size=0 +2025-09-24 00:15:59,628 INFO Out dated connection ,size=0 -2025-09-23 00:15:57,581 INFO Connection check task end +2025-09-24 00:15:59,628 INFO Connection check task end -2025-09-23 00:15:59,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:15:59,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:00,581 INFO Connection check task start +2025-09-24 00:16:02,628 INFO Connection check task start -2025-09-23 00:16:00,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:02,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:00,581 INFO Out dated connection ,size=0 +2025-09-24 00:16:02,628 INFO Out dated connection ,size=0 -2025-09-23 00:16:00,581 INFO Connection check task end +2025-09-24 00:16:02,628 INFO Connection check task end -2025-09-23 00:16:02,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:02,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:03,581 INFO Connection check task start +2025-09-24 00:16:05,629 INFO Connection check task start -2025-09-23 00:16:03,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:05,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:03,581 INFO Out dated connection ,size=0 +2025-09-24 00:16:05,629 INFO Out dated connection ,size=0 -2025-09-23 00:16:03,582 INFO Connection check task end +2025-09-24 00:16:05,630 INFO Connection check task end -2025-09-23 00:16:05,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:05,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:06,582 INFO Connection check task start +2025-09-24 00:16:08,630 INFO Connection check task start -2025-09-23 00:16:06,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:08,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:06,582 INFO Out dated connection ,size=0 +2025-09-24 00:16:08,630 INFO Out dated connection ,size=0 -2025-09-23 00:16:06,582 INFO Connection check task end +2025-09-24 00:16:08,630 INFO Connection check task end -2025-09-23 00:16:08,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:08,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:09,582 INFO Connection check task start +2025-09-24 00:16:11,631 INFO Connection check task start -2025-09-23 00:16:09,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:11,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:09,582 INFO Out dated connection ,size=0 +2025-09-24 00:16:11,631 INFO Out dated connection ,size=0 -2025-09-23 00:16:09,582 INFO Connection check task end +2025-09-24 00:16:11,631 INFO Connection check task end -2025-09-23 00:16:11,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:11,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:12,584 INFO Connection check task start +2025-09-24 00:16:14,632 INFO Connection check task start -2025-09-23 00:16:12,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:14,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:12,584 INFO Out dated connection ,size=0 +2025-09-24 00:16:14,632 INFO Out dated connection ,size=0 -2025-09-23 00:16:12,584 INFO Connection check task end +2025-09-24 00:16:14,632 INFO Connection check task end -2025-09-23 00:16:14,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:14,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:15,585 INFO Connection check task start +2025-09-24 00:16:17,633 INFO Connection check task start -2025-09-23 00:16:15,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:17,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:15,585 INFO Out dated connection ,size=0 +2025-09-24 00:16:17,633 INFO Out dated connection ,size=0 -2025-09-23 00:16:15,585 INFO Connection check task end +2025-09-24 00:16:17,633 INFO Connection check task end -2025-09-23 00:16:17,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:17,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:18,587 INFO Connection check task start +2025-09-24 00:16:20,634 INFO Connection check task start -2025-09-23 00:16:18,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:20,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:18,588 INFO Out dated connection ,size=0 +2025-09-24 00:16:20,634 INFO Out dated connection ,size=0 -2025-09-23 00:16:18,588 INFO Connection check task end +2025-09-24 00:16:20,634 INFO Connection check task end -2025-09-23 00:16:20,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:20,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:21,588 INFO Connection check task start +2025-09-24 00:16:23,634 INFO Connection check task start -2025-09-23 00:16:21,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:23,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:21,588 INFO Out dated connection ,size=0 +2025-09-24 00:16:23,635 INFO Out dated connection ,size=0 -2025-09-23 00:16:21,588 INFO Connection check task end +2025-09-24 00:16:23,635 INFO Connection check task end -2025-09-23 00:16:23,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:23,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:24,589 INFO Connection check task start +2025-09-24 00:16:26,635 INFO Connection check task start -2025-09-23 00:16:24,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:26,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:24,590 INFO Out dated connection ,size=0 +2025-09-24 00:16:26,635 INFO Out dated connection ,size=0 -2025-09-23 00:16:24,590 INFO Connection check task end +2025-09-24 00:16:26,635 INFO Connection check task end -2025-09-23 00:16:26,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:26,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:27,591 INFO Connection check task start +2025-09-24 00:16:29,636 INFO Connection check task start -2025-09-23 00:16:27,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:29,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:27,591 INFO Out dated connection ,size=0 +2025-09-24 00:16:29,637 INFO Out dated connection ,size=0 -2025-09-23 00:16:27,591 INFO Connection check task end +2025-09-24 00:16:29,637 INFO Connection check task end -2025-09-23 00:16:29,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:29,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:30,592 INFO Connection check task start +2025-09-24 00:16:32,637 INFO Connection check task start -2025-09-23 00:16:30,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:32,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:30,592 INFO Out dated connection ,size=0 +2025-09-24 00:16:32,637 INFO Out dated connection ,size=0 -2025-09-23 00:16:30,592 INFO Connection check task end +2025-09-24 00:16:32,637 INFO Connection check task end -2025-09-23 00:16:32,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:32,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:33,593 INFO Connection check task start +2025-09-24 00:16:35,638 INFO Connection check task start -2025-09-23 00:16:33,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:35,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:33,593 INFO Out dated connection ,size=0 +2025-09-24 00:16:35,639 INFO Out dated connection ,size=0 -2025-09-23 00:16:33,593 INFO Connection check task end +2025-09-24 00:16:35,640 INFO Connection check task end -2025-09-23 00:16:35,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:35,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:36,594 INFO Connection check task start +2025-09-24 00:16:38,640 INFO Connection check task start -2025-09-23 00:16:36,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:38,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:36,594 INFO Out dated connection ,size=0 +2025-09-24 00:16:38,641 INFO Out dated connection ,size=0 -2025-09-23 00:16:36,595 INFO Connection check task end +2025-09-24 00:16:38,641 INFO Connection check task end -2025-09-23 00:16:38,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:38,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:39,595 INFO Connection check task start +2025-09-24 00:16:41,642 INFO Connection check task start -2025-09-23 00:16:39,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:41,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:39,595 INFO Out dated connection ,size=0 +2025-09-24 00:16:41,642 INFO Out dated connection ,size=0 -2025-09-23 00:16:39,595 INFO Connection check task end +2025-09-24 00:16:41,642 INFO Connection check task end -2025-09-23 00:16:41,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:41,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:42,595 INFO Connection check task start +2025-09-24 00:16:44,643 INFO Connection check task start -2025-09-23 00:16:42,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:44,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:42,596 INFO Out dated connection ,size=0 +2025-09-24 00:16:44,643 INFO Out dated connection ,size=0 -2025-09-23 00:16:42,596 INFO Connection check task end +2025-09-24 00:16:44,643 INFO Connection check task end -2025-09-23 00:16:44,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:44,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:45,597 INFO Connection check task start +2025-09-24 00:16:47,644 INFO Connection check task start -2025-09-23 00:16:45,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:47,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:45,597 INFO Out dated connection ,size=0 +2025-09-24 00:16:47,644 INFO Out dated connection ,size=0 -2025-09-23 00:16:45,597 INFO Connection check task end +2025-09-24 00:16:47,644 INFO Connection check task end -2025-09-23 00:16:47,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:47,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:48,598 INFO Connection check task start +2025-09-24 00:16:50,645 INFO Connection check task start -2025-09-23 00:16:48,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:50,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:48,598 INFO Out dated connection ,size=0 +2025-09-24 00:16:50,645 INFO Out dated connection ,size=0 -2025-09-23 00:16:48,598 INFO Connection check task end +2025-09-24 00:16:50,645 INFO Connection check task end -2025-09-23 00:16:50,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:50,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:51,599 INFO Connection check task start +2025-09-24 00:16:53,646 INFO Connection check task start -2025-09-23 00:16:51,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:53,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:51,600 INFO Out dated connection ,size=0 +2025-09-24 00:16:53,647 INFO Out dated connection ,size=0 -2025-09-23 00:16:51,600 INFO Connection check task end +2025-09-24 00:16:53,647 INFO Connection check task end -2025-09-23 00:16:53,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:53,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:54,600 INFO Connection check task start +2025-09-24 00:16:56,647 INFO Connection check task start -2025-09-23 00:16:54,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:56,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:54,600 INFO Out dated connection ,size=0 +2025-09-24 00:16:56,647 INFO Out dated connection ,size=0 -2025-09-23 00:16:54,600 INFO Connection check task end +2025-09-24 00:16:56,647 INFO Connection check task end -2025-09-23 00:16:56,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:56,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:16:57,601 INFO Connection check task start +2025-09-24 00:16:59,648 INFO Connection check task start -2025-09-23 00:16:57,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:16:59,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:16:57,601 INFO Out dated connection ,size=0 +2025-09-24 00:16:59,648 INFO Out dated connection ,size=0 -2025-09-23 00:16:57,601 INFO Connection check task end +2025-09-24 00:16:59,648 INFO Connection check task end -2025-09-23 00:16:59,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:16:59,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:00,602 INFO Connection check task start +2025-09-24 00:17:02,649 INFO Connection check task start -2025-09-23 00:17:00,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:02,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:00,603 INFO Out dated connection ,size=0 +2025-09-24 00:17:02,649 INFO Out dated connection ,size=0 -2025-09-23 00:17:00,603 INFO Connection check task end +2025-09-24 00:17:02,649 INFO Connection check task end -2025-09-23 00:17:02,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:02,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:03,604 INFO Connection check task start +2025-09-24 00:17:05,650 INFO Connection check task start -2025-09-23 00:17:03,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:05,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:03,604 INFO Out dated connection ,size=0 +2025-09-24 00:17:05,650 INFO Out dated connection ,size=0 -2025-09-23 00:17:03,604 INFO Connection check task end +2025-09-24 00:17:05,650 INFO Connection check task end -2025-09-23 00:17:05,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:05,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:06,605 INFO Connection check task start +2025-09-24 00:17:08,651 INFO Connection check task start -2025-09-23 00:17:06,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:08,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:06,605 INFO Out dated connection ,size=0 +2025-09-24 00:17:08,651 INFO Out dated connection ,size=0 -2025-09-23 00:17:06,605 INFO Connection check task end +2025-09-24 00:17:08,651 INFO Connection check task end -2025-09-23 00:17:08,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:08,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:09,606 INFO Connection check task start +2025-09-24 00:17:11,651 INFO Connection check task start -2025-09-23 00:17:09,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:11,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:09,606 INFO Out dated connection ,size=0 +2025-09-24 00:17:11,651 INFO Out dated connection ,size=0 -2025-09-23 00:17:09,606 INFO Connection check task end +2025-09-24 00:17:11,651 INFO Connection check task end -2025-09-23 00:17:11,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:11,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:12,606 INFO Connection check task start +2025-09-24 00:17:14,652 INFO Connection check task start -2025-09-23 00:17:12,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:14,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:12,607 INFO Out dated connection ,size=0 +2025-09-24 00:17:14,652 INFO Out dated connection ,size=0 -2025-09-23 00:17:12,607 INFO Connection check task end +2025-09-24 00:17:14,652 INFO Connection check task end -2025-09-23 00:17:14,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:14,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:15,607 INFO Connection check task start +2025-09-24 00:17:17,653 INFO Connection check task start -2025-09-23 00:17:15,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:17,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:15,607 INFO Out dated connection ,size=0 +2025-09-24 00:17:17,654 INFO Out dated connection ,size=0 -2025-09-23 00:17:15,607 INFO Connection check task end +2025-09-24 00:17:17,654 INFO Connection check task end -2025-09-23 00:17:17,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:17,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:18,607 INFO Connection check task start +2025-09-24 00:17:20,654 INFO Connection check task start -2025-09-23 00:17:18,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:20,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:18,607 INFO Out dated connection ,size=0 +2025-09-24 00:17:20,654 INFO Out dated connection ,size=0 -2025-09-23 00:17:18,607 INFO Connection check task end +2025-09-24 00:17:20,654 INFO Connection check task end -2025-09-23 00:17:20,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:20,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:21,608 INFO Connection check task start +2025-09-24 00:17:23,654 INFO Connection check task start -2025-09-23 00:17:21,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:23,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:21,608 INFO Out dated connection ,size=0 +2025-09-24 00:17:23,655 INFO Out dated connection ,size=0 -2025-09-23 00:17:21,608 INFO Connection check task end +2025-09-24 00:17:23,655 INFO Connection check task end -2025-09-23 00:17:23,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:23,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:24,608 INFO Connection check task start +2025-09-24 00:17:26,655 INFO Connection check task start -2025-09-23 00:17:24,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:26,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:24,608 INFO Out dated connection ,size=0 +2025-09-24 00:17:26,655 INFO Out dated connection ,size=0 -2025-09-23 00:17:24,608 INFO Connection check task end +2025-09-24 00:17:26,655 INFO Connection check task end -2025-09-23 00:17:26,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:26,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:27,609 INFO Connection check task start +2025-09-24 00:17:29,657 INFO Connection check task start -2025-09-23 00:17:27,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:29,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:27,609 INFO Out dated connection ,size=0 +2025-09-24 00:17:29,657 INFO Out dated connection ,size=0 -2025-09-23 00:17:27,609 INFO Connection check task end +2025-09-24 00:17:29,657 INFO Connection check task end -2025-09-23 00:17:29,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:29,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:30,611 INFO Connection check task start +2025-09-24 00:17:32,657 INFO Connection check task start -2025-09-23 00:17:30,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:32,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:30,611 INFO Out dated connection ,size=0 +2025-09-24 00:17:32,658 INFO Out dated connection ,size=0 -2025-09-23 00:17:30,611 INFO Connection check task end +2025-09-24 00:17:32,658 INFO Connection check task end -2025-09-23 00:17:32,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:32,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:33,612 INFO Connection check task start +2025-09-24 00:17:35,658 INFO Connection check task start -2025-09-23 00:17:33,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:35,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:33,612 INFO Out dated connection ,size=0 +2025-09-24 00:17:35,659 INFO Out dated connection ,size=0 -2025-09-23 00:17:33,612 INFO Connection check task end +2025-09-24 00:17:35,659 INFO Connection check task end -2025-09-23 00:17:35,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:35,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:36,613 INFO Connection check task start +2025-09-24 00:17:38,659 INFO Connection check task start -2025-09-23 00:17:36,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:38,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:36,613 INFO Out dated connection ,size=0 +2025-09-24 00:17:38,659 INFO Out dated connection ,size=0 -2025-09-23 00:17:36,613 INFO Connection check task end +2025-09-24 00:17:38,659 INFO Connection check task end -2025-09-23 00:17:38,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:38,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:39,614 INFO Connection check task start +2025-09-24 00:17:41,660 INFO Connection check task start -2025-09-23 00:17:39,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:41,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:39,614 INFO Out dated connection ,size=0 +2025-09-24 00:17:41,661 INFO Out dated connection ,size=0 -2025-09-23 00:17:39,614 INFO Connection check task end +2025-09-24 00:17:41,661 INFO Connection check task end -2025-09-23 00:17:41,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:41,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:42,614 INFO Connection check task start +2025-09-24 00:17:44,661 INFO Connection check task start -2025-09-23 00:17:42,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:44,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:42,614 INFO Out dated connection ,size=0 +2025-09-24 00:17:44,662 INFO Out dated connection ,size=0 -2025-09-23 00:17:42,615 INFO Connection check task end +2025-09-24 00:17:44,662 INFO Connection check task end -2025-09-23 00:17:44,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:44,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:45,615 INFO Connection check task start +2025-09-24 00:17:47,662 INFO Connection check task start -2025-09-23 00:17:45,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:47,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:45,615 INFO Out dated connection ,size=0 +2025-09-24 00:17:47,662 INFO Out dated connection ,size=0 -2025-09-23 00:17:45,615 INFO Connection check task end +2025-09-24 00:17:47,662 INFO Connection check task end -2025-09-23 00:17:47,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:47,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:48,616 INFO Connection check task start +2025-09-24 00:17:50,663 INFO Connection check task start -2025-09-23 00:17:48,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:50,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:48,616 INFO Out dated connection ,size=0 +2025-09-24 00:17:50,663 INFO Out dated connection ,size=0 -2025-09-23 00:17:48,616 INFO Connection check task end +2025-09-24 00:17:50,663 INFO Connection check task end -2025-09-23 00:17:50,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:50,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:51,616 INFO Connection check task start +2025-09-24 00:17:53,664 INFO Connection check task start -2025-09-23 00:17:51,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:53,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:51,616 INFO Out dated connection ,size=0 +2025-09-24 00:17:53,664 INFO Out dated connection ,size=0 -2025-09-23 00:17:51,616 INFO Connection check task end +2025-09-24 00:17:53,664 INFO Connection check task end -2025-09-23 00:17:53,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:53,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:54,616 INFO Connection check task start +2025-09-24 00:17:56,664 INFO Connection check task start -2025-09-23 00:17:54,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:56,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:54,617 INFO Out dated connection ,size=0 +2025-09-24 00:17:56,665 INFO Out dated connection ,size=0 -2025-09-23 00:17:54,617 INFO Connection check task end +2025-09-24 00:17:56,665 INFO Connection check task end -2025-09-23 00:17:56,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:56,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:17:57,617 INFO Connection check task start +2025-09-24 00:17:59,665 INFO Connection check task start -2025-09-23 00:17:57,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:17:59,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:17:57,617 INFO Out dated connection ,size=0 +2025-09-24 00:17:59,665 INFO Out dated connection ,size=0 -2025-09-23 00:17:57,617 INFO Connection check task end +2025-09-24 00:17:59,665 INFO Connection check task end -2025-09-23 00:17:59,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:17:59,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:00,617 INFO Connection check task start +2025-09-24 00:18:02,666 INFO Connection check task start -2025-09-23 00:18:00,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:02,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:00,618 INFO Out dated connection ,size=0 +2025-09-24 00:18:02,666 INFO Out dated connection ,size=0 -2025-09-23 00:18:00,618 INFO Connection check task end +2025-09-24 00:18:02,666 INFO Connection check task end -2025-09-23 00:18:02,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:02,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:03,618 INFO Connection check task start +2025-09-24 00:18:05,666 INFO Connection check task start -2025-09-23 00:18:03,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:05,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:03,618 INFO Out dated connection ,size=0 +2025-09-24 00:18:05,667 INFO Out dated connection ,size=0 -2025-09-23 00:18:03,618 INFO Connection check task end +2025-09-24 00:18:05,667 INFO Connection check task end -2025-09-23 00:18:05,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:05,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:06,619 INFO Connection check task start +2025-09-24 00:18:08,667 INFO Connection check task start -2025-09-23 00:18:06,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:08,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:06,619 INFO Out dated connection ,size=0 +2025-09-24 00:18:08,668 INFO Out dated connection ,size=0 -2025-09-23 00:18:06,619 INFO Connection check task end +2025-09-24 00:18:08,668 INFO Connection check task end -2025-09-23 00:18:08,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:08,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:09,619 INFO Connection check task start +2025-09-24 00:18:11,668 INFO Connection check task start -2025-09-23 00:18:09,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:11,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:09,619 INFO Out dated connection ,size=0 +2025-09-24 00:18:11,669 INFO Out dated connection ,size=0 -2025-09-23 00:18:09,619 INFO Connection check task end +2025-09-24 00:18:11,669 INFO Connection check task end -2025-09-23 00:18:11,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:11,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:12,620 INFO Connection check task start +2025-09-24 00:18:14,669 INFO Connection check task start -2025-09-23 00:18:12,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:14,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:12,620 INFO Out dated connection ,size=0 +2025-09-24 00:18:14,669 INFO Out dated connection ,size=0 -2025-09-23 00:18:12,620 INFO Connection check task end +2025-09-24 00:18:14,669 INFO Connection check task end -2025-09-23 00:18:14,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:14,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:15,621 INFO Connection check task start +2025-09-24 00:18:17,670 INFO Connection check task start -2025-09-23 00:18:15,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:17,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:15,621 INFO Out dated connection ,size=0 +2025-09-24 00:18:17,670 INFO Out dated connection ,size=0 -2025-09-23 00:18:15,621 INFO Connection check task end +2025-09-24 00:18:17,670 INFO Connection check task end -2025-09-23 00:18:17,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:17,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:18,621 INFO Connection check task start +2025-09-24 00:18:20,670 INFO Connection check task start -2025-09-23 00:18:18,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:20,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:18,622 INFO Out dated connection ,size=0 +2025-09-24 00:18:20,670 INFO Out dated connection ,size=0 -2025-09-23 00:18:18,622 INFO Connection check task end +2025-09-24 00:18:20,670 INFO Connection check task end -2025-09-23 00:18:20,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:20,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:21,622 INFO Connection check task start +2025-09-24 00:18:23,672 INFO Connection check task start -2025-09-23 00:18:21,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:23,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:21,622 INFO Out dated connection ,size=0 +2025-09-24 00:18:23,672 INFO Out dated connection ,size=0 -2025-09-23 00:18:21,622 INFO Connection check task end +2025-09-24 00:18:23,672 INFO Connection check task end -2025-09-23 00:18:23,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:23,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:24,623 INFO Connection check task start +2025-09-24 00:18:26,673 INFO Connection check task start -2025-09-23 00:18:24,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:26,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:24,623 INFO Out dated connection ,size=0 +2025-09-24 00:18:26,673 INFO Out dated connection ,size=0 -2025-09-23 00:18:24,623 INFO Connection check task end +2025-09-24 00:18:26,673 INFO Connection check task end -2025-09-23 00:18:26,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:26,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:27,623 INFO Connection check task start +2025-09-24 00:18:29,673 INFO Connection check task start -2025-09-23 00:18:27,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:29,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:27,623 INFO Out dated connection ,size=0 +2025-09-24 00:18:29,673 INFO Out dated connection ,size=0 -2025-09-23 00:18:27,623 INFO Connection check task end +2025-09-24 00:18:29,673 INFO Connection check task end -2025-09-23 00:18:29,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:29,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:30,624 INFO Connection check task start +2025-09-24 00:18:32,674 INFO Connection check task start -2025-09-23 00:18:30,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:32,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:30,624 INFO Out dated connection ,size=0 +2025-09-24 00:18:32,674 INFO Out dated connection ,size=0 -2025-09-23 00:18:30,624 INFO Connection check task end +2025-09-24 00:18:32,674 INFO Connection check task end -2025-09-23 00:18:32,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:32,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:33,625 INFO Connection check task start +2025-09-24 00:18:35,675 INFO Connection check task start -2025-09-23 00:18:33,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:35,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:33,625 INFO Out dated connection ,size=0 +2025-09-24 00:18:35,675 INFO Out dated connection ,size=0 -2025-09-23 00:18:33,625 INFO Connection check task end +2025-09-24 00:18:35,675 INFO Connection check task end -2025-09-23 00:18:35,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:35,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:36,625 INFO Connection check task start +2025-09-24 00:18:38,675 INFO Connection check task start -2025-09-23 00:18:36,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:38,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:36,626 INFO Out dated connection ,size=0 +2025-09-24 00:18:38,675 INFO Out dated connection ,size=0 -2025-09-23 00:18:36,626 INFO Connection check task end +2025-09-24 00:18:38,675 INFO Connection check task end -2025-09-23 00:18:38,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:38,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:39,626 INFO Connection check task start +2025-09-24 00:18:41,676 INFO Connection check task start -2025-09-23 00:18:39,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:41,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:39,626 INFO Out dated connection ,size=0 +2025-09-24 00:18:41,676 INFO Out dated connection ,size=0 -2025-09-23 00:18:39,626 INFO Connection check task end +2025-09-24 00:18:41,676 INFO Connection check task end -2025-09-23 00:18:41,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:41,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:42,627 INFO Connection check task start +2025-09-24 00:18:44,677 INFO Connection check task start -2025-09-23 00:18:42,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:44,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:42,627 INFO Out dated connection ,size=0 +2025-09-24 00:18:44,677 INFO Out dated connection ,size=0 -2025-09-23 00:18:42,627 INFO Connection check task end +2025-09-24 00:18:44,677 INFO Connection check task end -2025-09-23 00:18:44,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:44,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:45,627 INFO Connection check task start +2025-09-24 00:18:47,678 INFO Connection check task start -2025-09-23 00:18:45,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:47,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:45,628 INFO Out dated connection ,size=0 +2025-09-24 00:18:47,678 INFO Out dated connection ,size=0 -2025-09-23 00:18:45,628 INFO Connection check task end +2025-09-24 00:18:47,678 INFO Connection check task end -2025-09-23 00:18:47,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:47,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:48,628 INFO Connection check task start +2025-09-24 00:18:50,679 INFO Connection check task start -2025-09-23 00:18:48,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:50,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:48,628 INFO Out dated connection ,size=0 +2025-09-24 00:18:50,679 INFO Out dated connection ,size=0 -2025-09-23 00:18:48,628 INFO Connection check task end +2025-09-24 00:18:50,680 INFO Connection check task end -2025-09-23 00:18:50,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:50,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:51,628 INFO Connection check task start +2025-09-24 00:18:53,680 INFO Connection check task start -2025-09-23 00:18:51,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:53,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:51,629 INFO Out dated connection ,size=0 +2025-09-24 00:18:53,695 INFO Out dated connection ,size=0 -2025-09-23 00:18:51,629 INFO Connection check task end +2025-09-24 00:18:53,695 INFO Connection check task end -2025-09-23 00:18:53,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:53,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:54,629 INFO Connection check task start +2025-09-24 00:18:56,696 INFO Connection check task start -2025-09-23 00:18:54,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:56,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:54,629 INFO Out dated connection ,size=0 +2025-09-24 00:18:56,696 INFO Out dated connection ,size=0 -2025-09-23 00:18:54,629 INFO Connection check task end +2025-09-24 00:18:56,697 INFO Connection check task end -2025-09-23 00:18:56,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:56,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:18:57,629 INFO Connection check task start +2025-09-24 00:18:59,698 INFO Connection check task start -2025-09-23 00:18:57,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:18:59,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:18:57,629 INFO Out dated connection ,size=0 +2025-09-24 00:18:59,698 INFO Out dated connection ,size=0 -2025-09-23 00:18:57,630 INFO Connection check task end +2025-09-24 00:18:59,698 INFO Connection check task end -2025-09-23 00:18:59,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:18:59,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:00,630 INFO Connection check task start +2025-09-24 00:19:02,698 INFO Connection check task start -2025-09-23 00:19:00,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:02,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:00,630 INFO Out dated connection ,size=0 +2025-09-24 00:19:02,699 INFO Out dated connection ,size=0 -2025-09-23 00:19:00,630 INFO Connection check task end +2025-09-24 00:19:02,699 INFO Connection check task end -2025-09-23 00:19:02,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:02,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:03,631 INFO Connection check task start +2025-09-24 00:19:05,699 INFO Connection check task start -2025-09-23 00:19:03,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:05,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:03,631 INFO Out dated connection ,size=0 +2025-09-24 00:19:05,699 INFO Out dated connection ,size=0 -2025-09-23 00:19:03,632 INFO Connection check task end +2025-09-24 00:19:05,699 INFO Connection check task end -2025-09-23 00:19:05,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:05,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:06,632 INFO Connection check task start +2025-09-24 00:19:08,700 INFO Connection check task start -2025-09-23 00:19:06,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:08,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:06,632 INFO Out dated connection ,size=0 +2025-09-24 00:19:08,700 INFO Out dated connection ,size=0 -2025-09-23 00:19:06,632 INFO Connection check task end +2025-09-24 00:19:08,700 INFO Connection check task end -2025-09-23 00:19:08,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:08,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:09,632 INFO Connection check task start +2025-09-24 00:19:11,700 INFO Connection check task start -2025-09-23 00:19:09,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:11,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:09,632 INFO Out dated connection ,size=0 +2025-09-24 00:19:11,701 INFO Out dated connection ,size=0 -2025-09-23 00:19:09,632 INFO Connection check task end +2025-09-24 00:19:11,701 INFO Connection check task end -2025-09-23 00:19:11,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:11,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:12,633 INFO Connection check task start +2025-09-24 00:19:14,702 INFO Connection check task start -2025-09-23 00:19:12,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:14,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:12,633 INFO Out dated connection ,size=0 +2025-09-24 00:19:14,702 INFO Out dated connection ,size=0 -2025-09-23 00:19:12,633 INFO Connection check task end +2025-09-24 00:19:14,702 INFO Connection check task end -2025-09-23 00:19:14,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:14,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:15,633 INFO Connection check task start +2025-09-24 00:19:17,703 INFO Connection check task start -2025-09-23 00:19:15,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:17,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:15,633 INFO Out dated connection ,size=0 +2025-09-24 00:19:17,703 INFO Out dated connection ,size=0 -2025-09-23 00:19:15,633 INFO Connection check task end +2025-09-24 00:19:17,703 INFO Connection check task end -2025-09-23 00:19:17,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:17,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:18,634 INFO Connection check task start +2025-09-24 00:19:20,704 INFO Connection check task start -2025-09-23 00:19:18,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:20,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:18,634 INFO Out dated connection ,size=0 +2025-09-24 00:19:20,704 INFO Out dated connection ,size=0 -2025-09-23 00:19:18,634 INFO Connection check task end +2025-09-24 00:19:20,704 INFO Connection check task end -2025-09-23 00:19:20,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:20,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:21,634 INFO Connection check task start +2025-09-24 00:19:23,705 INFO Connection check task start -2025-09-23 00:19:21,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:23,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:21,634 INFO Out dated connection ,size=0 +2025-09-24 00:19:23,705 INFO Out dated connection ,size=0 -2025-09-23 00:19:21,634 INFO Connection check task end +2025-09-24 00:19:23,705 INFO Connection check task end -2025-09-23 00:19:23,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:23,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:24,635 INFO Connection check task start +2025-09-24 00:19:26,706 INFO Connection check task start -2025-09-23 00:19:24,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:26,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:24,635 INFO Out dated connection ,size=0 +2025-09-24 00:19:26,706 INFO Out dated connection ,size=0 -2025-09-23 00:19:24,635 INFO Connection check task end +2025-09-24 00:19:26,706 INFO Connection check task end -2025-09-23 00:19:26,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:26,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:27,636 INFO Connection check task start +2025-09-24 00:19:29,707 INFO Connection check task start -2025-09-23 00:19:27,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:29,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:27,636 INFO Out dated connection ,size=0 +2025-09-24 00:19:29,707 INFO Out dated connection ,size=0 -2025-09-23 00:19:27,636 INFO Connection check task end +2025-09-24 00:19:29,707 INFO Connection check task end -2025-09-23 00:19:29,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:29,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:30,637 INFO Connection check task start +2025-09-24 00:19:32,709 INFO Connection check task start -2025-09-23 00:19:30,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:32,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:30,637 INFO Out dated connection ,size=0 +2025-09-24 00:19:32,709 INFO Out dated connection ,size=0 -2025-09-23 00:19:30,637 INFO Connection check task end +2025-09-24 00:19:32,709 INFO Connection check task end -2025-09-23 00:19:32,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:32,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:33,638 INFO Connection check task start +2025-09-24 00:19:35,709 INFO Connection check task start -2025-09-23 00:19:33,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:35,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:33,638 INFO Out dated connection ,size=0 +2025-09-24 00:19:35,709 INFO Out dated connection ,size=0 -2025-09-23 00:19:33,638 INFO Connection check task end +2025-09-24 00:19:35,709 INFO Connection check task end -2025-09-23 00:19:35,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:35,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:36,638 INFO Connection check task start +2025-09-24 00:19:38,710 INFO Connection check task start -2025-09-23 00:19:36,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:38,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:36,654 INFO Out dated connection ,size=0 +2025-09-24 00:19:38,710 INFO Out dated connection ,size=0 -2025-09-23 00:19:36,654 INFO Connection check task end +2025-09-24 00:19:38,710 INFO Connection check task end -2025-09-23 00:19:38,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:38,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:39,655 INFO Connection check task start +2025-09-24 00:19:41,712 INFO Connection check task start -2025-09-23 00:19:39,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:41,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:39,655 INFO Out dated connection ,size=0 +2025-09-24 00:19:41,712 INFO Out dated connection ,size=0 -2025-09-23 00:19:39,655 INFO Connection check task end +2025-09-24 00:19:41,712 INFO Connection check task end -2025-09-23 00:19:41,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:41,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:42,655 INFO Connection check task start +2025-09-24 00:19:44,713 INFO Connection check task start -2025-09-23 00:19:42,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:44,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:42,655 INFO Out dated connection ,size=0 +2025-09-24 00:19:44,713 INFO Out dated connection ,size=0 -2025-09-23 00:19:42,655 INFO Connection check task end +2025-09-24 00:19:44,713 INFO Connection check task end -2025-09-23 00:19:44,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:44,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:45,656 INFO Connection check task start +2025-09-24 00:19:47,713 INFO Connection check task start -2025-09-23 00:19:45,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:47,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:45,656 INFO Out dated connection ,size=0 +2025-09-24 00:19:47,714 INFO Out dated connection ,size=0 -2025-09-23 00:19:45,656 INFO Connection check task end +2025-09-24 00:19:47,714 INFO Connection check task end -2025-09-23 00:19:47,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:47,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:48,656 INFO Connection check task start +2025-09-24 00:19:50,714 INFO Connection check task start -2025-09-23 00:19:48,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:50,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:48,656 INFO Out dated connection ,size=0 +2025-09-24 00:19:50,714 INFO Out dated connection ,size=0 -2025-09-23 00:19:48,656 INFO Connection check task end +2025-09-24 00:19:50,714 INFO Connection check task end -2025-09-23 00:19:50,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:50,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:51,657 INFO Connection check task start +2025-09-24 00:19:53,715 INFO Connection check task start -2025-09-23 00:19:51,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:53,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:51,657 INFO Out dated connection ,size=0 +2025-09-24 00:19:53,715 INFO Out dated connection ,size=0 -2025-09-23 00:19:51,657 INFO Connection check task end +2025-09-24 00:19:53,715 INFO Connection check task end -2025-09-23 00:19:53,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:53,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:54,657 INFO Connection check task start +2025-09-24 00:19:56,715 INFO Connection check task start -2025-09-23 00:19:54,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:56,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:54,658 INFO Out dated connection ,size=0 +2025-09-24 00:19:56,716 INFO Out dated connection ,size=0 -2025-09-23 00:19:54,658 INFO Connection check task end +2025-09-24 00:19:56,716 INFO Connection check task end -2025-09-23 00:19:56,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:56,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:19:57,658 INFO Connection check task start +2025-09-24 00:19:59,717 INFO Connection check task start -2025-09-23 00:19:57,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:19:59,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:19:57,658 INFO Out dated connection ,size=0 +2025-09-24 00:19:59,718 INFO Out dated connection ,size=0 -2025-09-23 00:19:57,658 INFO Connection check task end +2025-09-24 00:19:59,718 INFO Connection check task end -2025-09-23 00:19:59,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:19:59,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:00,658 INFO Connection check task start +2025-09-24 00:20:02,718 INFO Connection check task start -2025-09-23 00:20:00,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:02,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:00,659 INFO Out dated connection ,size=0 +2025-09-24 00:20:02,718 INFO Out dated connection ,size=0 -2025-09-23 00:20:00,659 INFO Connection check task end +2025-09-24 00:20:02,718 INFO Connection check task end -2025-09-23 00:20:02,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:02,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:03,660 INFO Connection check task start +2025-09-24 00:20:05,718 INFO Connection check task start -2025-09-23 00:20:03,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:05,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:03,660 INFO Out dated connection ,size=0 +2025-09-24 00:20:05,719 INFO Out dated connection ,size=0 -2025-09-23 00:20:03,660 INFO Connection check task end +2025-09-24 00:20:05,719 INFO Connection check task end -2025-09-23 00:20:05,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:05,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:06,660 INFO Connection check task start +2025-09-24 00:20:08,719 INFO Connection check task start -2025-09-23 00:20:06,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:08,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:06,661 INFO Out dated connection ,size=0 +2025-09-24 00:20:08,719 INFO Out dated connection ,size=0 -2025-09-23 00:20:06,661 INFO Connection check task end +2025-09-24 00:20:08,719 INFO Connection check task end -2025-09-23 00:20:08,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:08,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:09,661 INFO Connection check task start +2025-09-24 00:20:11,719 INFO Connection check task start -2025-09-23 00:20:09,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:11,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:09,661 INFO Out dated connection ,size=0 +2025-09-24 00:20:11,720 INFO Out dated connection ,size=0 -2025-09-23 00:20:09,661 INFO Connection check task end +2025-09-24 00:20:11,720 INFO Connection check task end -2025-09-23 00:20:11,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:11,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:12,662 INFO Connection check task start +2025-09-24 00:20:14,720 INFO Connection check task start -2025-09-23 00:20:12,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:14,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:12,662 INFO Out dated connection ,size=0 +2025-09-24 00:20:14,720 INFO Out dated connection ,size=0 -2025-09-23 00:20:12,662 INFO Connection check task end +2025-09-24 00:20:14,720 INFO Connection check task end -2025-09-23 00:20:14,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:14,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:15,662 INFO Connection check task start +2025-09-24 00:20:17,721 INFO Connection check task start -2025-09-23 00:20:15,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:17,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:15,663 INFO Out dated connection ,size=0 +2025-09-24 00:20:17,721 INFO Out dated connection ,size=0 -2025-09-23 00:20:15,663 INFO Connection check task end +2025-09-24 00:20:17,721 INFO Connection check task end -2025-09-23 00:20:17,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:17,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:18,663 INFO Connection check task start +2025-09-24 00:20:20,722 INFO Connection check task start -2025-09-23 00:20:18,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:20,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:18,663 INFO Out dated connection ,size=0 +2025-09-24 00:20:20,722 INFO Out dated connection ,size=0 -2025-09-23 00:20:18,663 INFO Connection check task end +2025-09-24 00:20:20,722 INFO Connection check task end -2025-09-23 00:20:20,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:20,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:21,663 INFO Connection check task start +2025-09-24 00:20:23,723 INFO Connection check task start -2025-09-23 00:20:21,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:23,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:21,663 INFO Out dated connection ,size=0 +2025-09-24 00:20:23,723 INFO Out dated connection ,size=0 -2025-09-23 00:20:21,663 INFO Connection check task end +2025-09-24 00:20:23,723 INFO Connection check task end -2025-09-23 00:20:23,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:23,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:24,664 INFO Connection check task start +2025-09-24 00:20:26,723 INFO Connection check task start -2025-09-23 00:20:24,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:26,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:24,664 INFO Out dated connection ,size=0 +2025-09-24 00:20:26,723 INFO Out dated connection ,size=0 -2025-09-23 00:20:24,664 INFO Connection check task end +2025-09-24 00:20:26,723 INFO Connection check task end -2025-09-23 00:20:26,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:26,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:27,664 INFO Connection check task start +2025-09-24 00:20:29,724 INFO Connection check task start -2025-09-23 00:20:27,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:29,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:27,664 INFO Out dated connection ,size=0 +2025-09-24 00:20:29,724 INFO Out dated connection ,size=0 -2025-09-23 00:20:27,664 INFO Connection check task end +2025-09-24 00:20:29,724 INFO Connection check task end -2025-09-23 00:20:29,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:29,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:30,665 INFO Connection check task start +2025-09-24 00:20:32,736 INFO Connection check task start -2025-09-23 00:20:30,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:32,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:30,665 INFO Out dated connection ,size=0 +2025-09-24 00:20:32,768 INFO Out dated connection ,size=0 -2025-09-23 00:20:30,665 INFO Connection check task end +2025-09-24 00:20:32,769 INFO Connection check task end -2025-09-23 00:20:32,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:32,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:33,666 INFO Connection check task start +2025-09-24 00:20:35,770 INFO Connection check task start -2025-09-23 00:20:33,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:35,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:33,666 INFO Out dated connection ,size=0 +2025-09-24 00:20:35,770 INFO Out dated connection ,size=0 -2025-09-23 00:20:33,666 INFO Connection check task end +2025-09-24 00:20:35,770 INFO Connection check task end -2025-09-23 00:20:35,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:35,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:36,667 INFO Connection check task start +2025-09-24 00:20:38,771 INFO Connection check task start -2025-09-23 00:20:36,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:38,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:36,667 INFO Out dated connection ,size=0 +2025-09-24 00:20:38,771 INFO Out dated connection ,size=0 -2025-09-23 00:20:36,667 INFO Connection check task end +2025-09-24 00:20:38,771 INFO Connection check task end -2025-09-23 00:20:38,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:38,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:39,668 INFO Connection check task start +2025-09-24 00:20:41,772 INFO Connection check task start -2025-09-23 00:20:39,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:41,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:39,668 INFO Out dated connection ,size=0 +2025-09-24 00:20:41,772 INFO Out dated connection ,size=0 -2025-09-23 00:20:39,668 INFO Connection check task end +2025-09-24 00:20:41,772 INFO Connection check task end -2025-09-23 00:20:41,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:41,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:42,668 INFO Connection check task start +2025-09-24 00:20:44,772 INFO Connection check task start -2025-09-23 00:20:42,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:44,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:42,669 INFO Out dated connection ,size=0 +2025-09-24 00:20:44,773 INFO Out dated connection ,size=0 -2025-09-23 00:20:42,669 INFO Connection check task end +2025-09-24 00:20:44,773 INFO Connection check task end -2025-09-23 00:20:44,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:44,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:45,670 INFO Connection check task start +2025-09-24 00:20:47,774 INFO Connection check task start -2025-09-23 00:20:45,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:47,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:45,670 INFO Out dated connection ,size=0 +2025-09-24 00:20:47,774 INFO Out dated connection ,size=0 -2025-09-23 00:20:45,670 INFO Connection check task end +2025-09-24 00:20:47,774 INFO Connection check task end -2025-09-23 00:20:47,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:47,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:48,671 INFO Connection check task start +2025-09-24 00:20:50,775 INFO Connection check task start -2025-09-23 00:20:48,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:50,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:48,671 INFO Out dated connection ,size=0 +2025-09-24 00:20:50,775 INFO Out dated connection ,size=0 -2025-09-23 00:20:48,671 INFO Connection check task end +2025-09-24 00:20:50,775 INFO Connection check task end -2025-09-23 00:20:50,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:50,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:51,672 INFO Connection check task start +2025-09-24 00:20:53,775 INFO Connection check task start -2025-09-23 00:20:51,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:53,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:51,672 INFO Out dated connection ,size=0 +2025-09-24 00:20:53,776 INFO Out dated connection ,size=0 -2025-09-23 00:20:51,672 INFO Connection check task end +2025-09-24 00:20:53,776 INFO Connection check task end -2025-09-23 00:20:53,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:53,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:54,673 INFO Connection check task start +2025-09-24 00:20:56,776 INFO Connection check task start -2025-09-23 00:20:54,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:56,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:54,673 INFO Out dated connection ,size=0 +2025-09-24 00:20:56,776 INFO Out dated connection ,size=0 -2025-09-23 00:20:54,673 INFO Connection check task end +2025-09-24 00:20:56,776 INFO Connection check task end -2025-09-23 00:20:56,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:56,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:20:57,674 INFO Connection check task start +2025-09-24 00:20:59,778 INFO Connection check task start -2025-09-23 00:20:57,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:20:59,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:20:57,674 INFO Out dated connection ,size=0 +2025-09-24 00:20:59,778 INFO Out dated connection ,size=0 -2025-09-23 00:20:57,674 INFO Connection check task end +2025-09-24 00:20:59,778 INFO Connection check task end -2025-09-23 00:20:59,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:20:59,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:00,675 INFO Connection check task start +2025-09-24 00:21:02,778 INFO Connection check task start -2025-09-23 00:21:00,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:02,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:00,675 INFO Out dated connection ,size=0 +2025-09-24 00:21:02,779 INFO Out dated connection ,size=0 -2025-09-23 00:21:00,675 INFO Connection check task end +2025-09-24 00:21:02,779 INFO Connection check task end -2025-09-23 00:21:02,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:02,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:03,676 INFO Connection check task start +2025-09-24 00:21:05,779 INFO Connection check task start -2025-09-23 00:21:03,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:05,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:03,676 INFO Out dated connection ,size=0 +2025-09-24 00:21:05,779 INFO Out dated connection ,size=0 -2025-09-23 00:21:03,676 INFO Connection check task end +2025-09-24 00:21:05,779 INFO Connection check task end -2025-09-23 00:21:05,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:05,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:06,677 INFO Connection check task start +2025-09-24 00:21:08,780 INFO Connection check task start -2025-09-23 00:21:06,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:08,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:06,678 INFO Out dated connection ,size=0 +2025-09-24 00:21:08,780 INFO Out dated connection ,size=0 -2025-09-23 00:21:06,678 INFO Connection check task end +2025-09-24 00:21:08,780 INFO Connection check task end -2025-09-23 00:21:08,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:08,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:09,679 INFO Connection check task start +2025-09-24 00:21:11,781 INFO Connection check task start -2025-09-23 00:21:09,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:11,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:09,679 INFO Out dated connection ,size=0 +2025-09-24 00:21:11,781 INFO Out dated connection ,size=0 -2025-09-23 00:21:09,679 INFO Connection check task end +2025-09-24 00:21:11,781 INFO Connection check task end -2025-09-23 00:21:11,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:11,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:12,679 INFO Connection check task start +2025-09-24 00:21:14,782 INFO Connection check task start -2025-09-23 00:21:12,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:14,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:12,680 INFO Out dated connection ,size=0 +2025-09-24 00:21:14,783 INFO Out dated connection ,size=0 -2025-09-23 00:21:12,680 INFO Connection check task end +2025-09-24 00:21:14,783 INFO Connection check task end -2025-09-23 00:21:14,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:14,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:15,681 INFO Connection check task start +2025-09-24 00:21:17,784 INFO Connection check task start -2025-09-23 00:21:15,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:17,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:15,681 INFO Out dated connection ,size=0 +2025-09-24 00:21:17,784 INFO Out dated connection ,size=0 -2025-09-23 00:21:15,681 INFO Connection check task end +2025-09-24 00:21:17,784 INFO Connection check task end -2025-09-23 00:21:17,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:17,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:18,682 INFO Connection check task start +2025-09-24 00:21:20,784 INFO Connection check task start -2025-09-23 00:21:18,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:20,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:18,682 INFO Out dated connection ,size=0 +2025-09-24 00:21:20,784 INFO Out dated connection ,size=0 -2025-09-23 00:21:18,682 INFO Connection check task end +2025-09-24 00:21:20,785 INFO Connection check task end -2025-09-23 00:21:20,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:20,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:21,683 INFO Connection check task start +2025-09-24 00:21:23,785 INFO Connection check task start -2025-09-23 00:21:21,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:23,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:21,683 INFO Out dated connection ,size=0 +2025-09-24 00:21:23,785 INFO Out dated connection ,size=0 -2025-09-23 00:21:21,683 INFO Connection check task end +2025-09-24 00:21:23,786 INFO Connection check task end -2025-09-23 00:21:23,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:23,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:24,683 INFO Connection check task start +2025-09-24 00:21:26,786 INFO Connection check task start -2025-09-23 00:21:24,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:26,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:24,684 INFO Out dated connection ,size=0 +2025-09-24 00:21:26,786 INFO Out dated connection ,size=0 -2025-09-23 00:21:24,684 INFO Connection check task end +2025-09-24 00:21:26,786 INFO Connection check task end -2025-09-23 00:21:26,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:26,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:27,684 INFO Connection check task start +2025-09-24 00:21:29,787 INFO Connection check task start -2025-09-23 00:21:27,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:29,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:27,685 INFO Out dated connection ,size=0 +2025-09-24 00:21:29,788 INFO Out dated connection ,size=0 -2025-09-23 00:21:27,685 INFO Connection check task end +2025-09-24 00:21:29,788 INFO Connection check task end -2025-09-23 00:21:29,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:29,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:30,686 INFO Connection check task start +2025-09-24 00:21:32,788 INFO Connection check task start -2025-09-23 00:21:30,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:32,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:30,686 INFO Out dated connection ,size=0 +2025-09-24 00:21:32,788 INFO Out dated connection ,size=0 -2025-09-23 00:21:30,686 INFO Connection check task end +2025-09-24 00:21:32,788 INFO Connection check task end -2025-09-23 00:21:32,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:32,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:33,686 INFO Connection check task start +2025-09-24 00:21:35,789 INFO Connection check task start -2025-09-23 00:21:33,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:35,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:33,687 INFO Out dated connection ,size=0 +2025-09-24 00:21:35,790 INFO Out dated connection ,size=0 -2025-09-23 00:21:33,687 INFO Connection check task end +2025-09-24 00:21:35,790 INFO Connection check task end -2025-09-23 00:21:35,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:35,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:36,687 INFO Connection check task start +2025-09-24 00:21:38,791 INFO Connection check task start -2025-09-23 00:21:36,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:38,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:36,687 INFO Out dated connection ,size=0 +2025-09-24 00:21:38,791 INFO Out dated connection ,size=0 -2025-09-23 00:21:36,687 INFO Connection check task end +2025-09-24 00:21:38,791 INFO Connection check task end -2025-09-23 00:21:38,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:38,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:39,688 INFO Connection check task start +2025-09-24 00:21:41,791 INFO Connection check task start -2025-09-23 00:21:39,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:41,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:39,688 INFO Out dated connection ,size=0 +2025-09-24 00:21:41,793 INFO Out dated connection ,size=0 -2025-09-23 00:21:39,688 INFO Connection check task end +2025-09-24 00:21:41,793 INFO Connection check task end -2025-09-23 00:21:41,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:41,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:42,689 INFO Connection check task start +2025-09-24 00:21:44,794 INFO Connection check task start -2025-09-23 00:21:42,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:44,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:42,689 INFO Out dated connection ,size=0 +2025-09-24 00:21:44,794 INFO Out dated connection ,size=0 -2025-09-23 00:21:42,689 INFO Connection check task end +2025-09-24 00:21:44,794 INFO Connection check task end -2025-09-23 00:21:44,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:44,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:45,690 INFO Connection check task start +2025-09-24 00:21:47,795 INFO Connection check task start -2025-09-23 00:21:45,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:47,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:45,690 INFO Out dated connection ,size=0 +2025-09-24 00:21:47,795 INFO Out dated connection ,size=0 -2025-09-23 00:21:45,690 INFO Connection check task end +2025-09-24 00:21:47,795 INFO Connection check task end -2025-09-23 00:21:47,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:47,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:48,691 INFO Connection check task start +2025-09-24 00:21:50,795 INFO Connection check task start -2025-09-23 00:21:48,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:50,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:48,691 INFO Out dated connection ,size=0 +2025-09-24 00:21:50,796 INFO Out dated connection ,size=0 -2025-09-23 00:21:48,691 INFO Connection check task end +2025-09-24 00:21:50,796 INFO Connection check task end -2025-09-23 00:21:50,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:50,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:51,693 INFO Connection check task start +2025-09-24 00:21:53,796 INFO Connection check task start -2025-09-23 00:21:51,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:53,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:51,693 INFO Out dated connection ,size=0 +2025-09-24 00:21:53,796 INFO Out dated connection ,size=0 -2025-09-23 00:21:51,693 INFO Connection check task end +2025-09-24 00:21:53,796 INFO Connection check task end -2025-09-23 00:21:53,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:53,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:54,694 INFO Connection check task start +2025-09-24 00:21:56,797 INFO Connection check task start -2025-09-23 00:21:54,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:56,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:54,694 INFO Out dated connection ,size=0 +2025-09-24 00:21:56,797 INFO Out dated connection ,size=0 -2025-09-23 00:21:54,694 INFO Connection check task end +2025-09-24 00:21:56,797 INFO Connection check task end -2025-09-23 00:21:56,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:56,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:21:57,695 INFO Connection check task start +2025-09-24 00:21:59,798 INFO Connection check task start -2025-09-23 00:21:57,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:21:59,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:21:57,695 INFO Out dated connection ,size=0 +2025-09-24 00:21:59,798 INFO Out dated connection ,size=0 -2025-09-23 00:21:57,695 INFO Connection check task end +2025-09-24 00:21:59,798 INFO Connection check task end -2025-09-23 00:21:59,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:21:59,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:00,696 INFO Connection check task start +2025-09-24 00:22:02,799 INFO Connection check task start -2025-09-23 00:22:00,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:02,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:00,696 INFO Out dated connection ,size=0 +2025-09-24 00:22:02,799 INFO Out dated connection ,size=0 -2025-09-23 00:22:00,696 INFO Connection check task end +2025-09-24 00:22:02,799 INFO Connection check task end -2025-09-23 00:22:02,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:02,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:03,696 INFO Connection check task start +2025-09-24 00:22:05,800 INFO Connection check task start -2025-09-23 00:22:03,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:05,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:03,697 INFO Out dated connection ,size=0 +2025-09-24 00:22:05,800 INFO Out dated connection ,size=0 -2025-09-23 00:22:03,697 INFO Connection check task end +2025-09-24 00:22:05,800 INFO Connection check task end -2025-09-23 00:22:05,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:05,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:06,698 INFO Connection check task start +2025-09-24 00:22:08,801 INFO Connection check task start -2025-09-23 00:22:06,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:08,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:06,698 INFO Out dated connection ,size=0 +2025-09-24 00:22:08,802 INFO Out dated connection ,size=0 -2025-09-23 00:22:06,698 INFO Connection check task end +2025-09-24 00:22:08,802 INFO Connection check task end -2025-09-23 00:22:08,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:08,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:09,700 INFO Connection check task start +2025-09-24 00:22:11,802 INFO Connection check task start -2025-09-23 00:22:09,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:11,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:09,700 INFO Out dated connection ,size=0 +2025-09-24 00:22:11,803 INFO Out dated connection ,size=0 -2025-09-23 00:22:09,700 INFO Connection check task end +2025-09-24 00:22:11,803 INFO Connection check task end -2025-09-23 00:22:11,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:11,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:12,703 INFO Connection check task start +2025-09-24 00:22:14,804 INFO Connection check task start -2025-09-23 00:22:12,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:14,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:12,703 INFO Out dated connection ,size=0 +2025-09-24 00:22:14,804 INFO Out dated connection ,size=0 -2025-09-23 00:22:12,703 INFO Connection check task end +2025-09-24 00:22:14,804 INFO Connection check task end -2025-09-23 00:22:14,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:14,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:15,704 INFO Connection check task start +2025-09-24 00:22:17,805 INFO Connection check task start -2025-09-23 00:22:15,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:17,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:15,704 INFO Out dated connection ,size=0 +2025-09-24 00:22:17,806 INFO Out dated connection ,size=0 -2025-09-23 00:22:15,705 INFO Connection check task end +2025-09-24 00:22:17,806 INFO Connection check task end -2025-09-23 00:22:17,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:17,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:18,706 INFO Connection check task start +2025-09-24 00:22:20,807 INFO Connection check task start -2025-09-23 00:22:18,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:20,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:18,706 INFO Out dated connection ,size=0 +2025-09-24 00:22:20,825 INFO Out dated connection ,size=0 -2025-09-23 00:22:18,706 INFO Connection check task end +2025-09-24 00:22:20,825 INFO Connection check task end -2025-09-23 00:22:20,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:20,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:21,707 INFO Connection check task start +2025-09-24 00:22:23,826 INFO Connection check task start -2025-09-23 00:22:21,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:23,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:21,708 INFO Out dated connection ,size=0 +2025-09-24 00:22:23,826 INFO Out dated connection ,size=0 -2025-09-23 00:22:21,708 INFO Connection check task end +2025-09-24 00:22:23,826 INFO Connection check task end -2025-09-23 00:22:23,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:23,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:24,708 INFO Connection check task start +2025-09-24 00:22:26,827 INFO Connection check task start -2025-09-23 00:22:24,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:26,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:24,709 INFO Out dated connection ,size=0 +2025-09-24 00:22:26,827 INFO Out dated connection ,size=0 -2025-09-23 00:22:24,709 INFO Connection check task end +2025-09-24 00:22:26,827 INFO Connection check task end -2025-09-23 00:22:26,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:26,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:27,709 INFO Connection check task start +2025-09-24 00:22:29,828 INFO Connection check task start -2025-09-23 00:22:27,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:29,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:27,709 INFO Out dated connection ,size=0 +2025-09-24 00:22:29,829 INFO Out dated connection ,size=0 -2025-09-23 00:22:27,709 INFO Connection check task end +2025-09-24 00:22:29,829 INFO Connection check task end -2025-09-23 00:22:29,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:29,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:30,710 INFO Connection check task start +2025-09-24 00:22:32,830 INFO Connection check task start -2025-09-23 00:22:30,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:32,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:30,710 INFO Out dated connection ,size=0 +2025-09-24 00:22:32,830 INFO Out dated connection ,size=0 -2025-09-23 00:22:30,710 INFO Connection check task end +2025-09-24 00:22:32,830 INFO Connection check task end -2025-09-23 00:22:32,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:32,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:33,711 INFO Connection check task start +2025-09-24 00:22:35,830 INFO Connection check task start -2025-09-23 00:22:33,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:35,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:33,711 INFO Out dated connection ,size=0 +2025-09-24 00:22:35,830 INFO Out dated connection ,size=0 -2025-09-23 00:22:33,711 INFO Connection check task end +2025-09-24 00:22:35,830 INFO Connection check task end -2025-09-23 00:22:35,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:35,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:36,712 INFO Connection check task start +2025-09-24 00:22:38,830 INFO Connection check task start -2025-09-23 00:22:36,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:38,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:36,712 INFO Out dated connection ,size=0 +2025-09-24 00:22:38,831 INFO Out dated connection ,size=0 -2025-09-23 00:22:36,712 INFO Connection check task end +2025-09-24 00:22:38,831 INFO Connection check task end -2025-09-23 00:22:38,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:38,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:39,712 INFO Connection check task start +2025-09-24 00:22:41,831 INFO Connection check task start -2025-09-23 00:22:39,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:41,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:39,713 INFO Out dated connection ,size=0 +2025-09-24 00:22:41,831 INFO Out dated connection ,size=0 -2025-09-23 00:22:39,713 INFO Connection check task end +2025-09-24 00:22:41,831 INFO Connection check task end -2025-09-23 00:22:41,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:41,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:42,713 INFO Connection check task start +2025-09-24 00:22:44,832 INFO Connection check task start -2025-09-23 00:22:42,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:44,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:42,714 INFO Out dated connection ,size=0 +2025-09-24 00:22:44,832 INFO Out dated connection ,size=0 -2025-09-23 00:22:42,714 INFO Connection check task end +2025-09-24 00:22:44,832 INFO Connection check task end -2025-09-23 00:22:44,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:44,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:45,714 INFO Connection check task start +2025-09-24 00:22:47,833 INFO Connection check task start -2025-09-23 00:22:45,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:47,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:45,715 INFO Out dated connection ,size=0 +2025-09-24 00:22:47,834 INFO Out dated connection ,size=0 -2025-09-23 00:22:45,715 INFO Connection check task end +2025-09-24 00:22:47,834 INFO Connection check task end -2025-09-23 00:22:47,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:47,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:48,716 INFO Connection check task start +2025-09-24 00:22:50,835 INFO Connection check task start -2025-09-23 00:22:48,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:50,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:48,716 INFO Out dated connection ,size=0 +2025-09-24 00:22:50,835 INFO Out dated connection ,size=0 -2025-09-23 00:22:48,716 INFO Connection check task end +2025-09-24 00:22:50,835 INFO Connection check task end -2025-09-23 00:22:50,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:50,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:51,716 INFO Connection check task start +2025-09-24 00:22:53,835 INFO Connection check task start -2025-09-23 00:22:51,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:53,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:51,716 INFO Out dated connection ,size=0 +2025-09-24 00:22:53,836 INFO Out dated connection ,size=0 -2025-09-23 00:22:51,716 INFO Connection check task end +2025-09-24 00:22:53,836 INFO Connection check task end -2025-09-23 00:22:53,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:53,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:54,717 INFO Connection check task start +2025-09-24 00:22:56,837 INFO Connection check task start -2025-09-23 00:22:54,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:56,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:54,717 INFO Out dated connection ,size=0 +2025-09-24 00:22:56,837 INFO Out dated connection ,size=0 -2025-09-23 00:22:54,717 INFO Connection check task end +2025-09-24 00:22:56,837 INFO Connection check task end -2025-09-23 00:22:56,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:56,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:22:57,717 INFO Connection check task start +2025-09-24 00:22:59,838 INFO Connection check task start -2025-09-23 00:22:57,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:22:59,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:22:57,718 INFO Out dated connection ,size=0 +2025-09-24 00:22:59,839 INFO Out dated connection ,size=0 -2025-09-23 00:22:57,718 INFO Connection check task end +2025-09-24 00:22:59,839 INFO Connection check task end -2025-09-23 00:22:59,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:22:59,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:00,718 INFO Connection check task start +2025-09-24 00:23:02,839 INFO Connection check task start -2025-09-23 00:23:00,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:02,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:00,719 INFO Out dated connection ,size=0 +2025-09-24 00:23:02,839 INFO Out dated connection ,size=0 -2025-09-23 00:23:00,719 INFO Connection check task end +2025-09-24 00:23:02,839 INFO Connection check task end -2025-09-23 00:23:02,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:02,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:03,719 INFO Connection check task start +2025-09-24 00:23:05,840 INFO Connection check task start -2025-09-23 00:23:03,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:05,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:03,719 INFO Out dated connection ,size=0 +2025-09-24 00:23:05,840 INFO Out dated connection ,size=0 -2025-09-23 00:23:03,719 INFO Connection check task end +2025-09-24 00:23:05,840 INFO Connection check task end -2025-09-23 00:23:05,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:05,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:06,721 INFO Connection check task start +2025-09-24 00:23:08,841 INFO Connection check task start -2025-09-23 00:23:06,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:08,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:06,721 INFO Out dated connection ,size=0 +2025-09-24 00:23:08,841 INFO Out dated connection ,size=0 -2025-09-23 00:23:06,721 INFO Connection check task end +2025-09-24 00:23:08,841 INFO Connection check task end -2025-09-23 00:23:08,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:08,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:09,721 INFO Connection check task start +2025-09-24 00:23:11,842 INFO Connection check task start -2025-09-23 00:23:09,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:11,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:09,722 INFO Out dated connection ,size=0 +2025-09-24 00:23:11,842 INFO Out dated connection ,size=0 -2025-09-23 00:23:09,722 INFO Connection check task end +2025-09-24 00:23:11,842 INFO Connection check task end -2025-09-23 00:23:11,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:11,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:12,722 INFO Connection check task start +2025-09-24 00:23:14,843 INFO Connection check task start -2025-09-23 00:23:12,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:14,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:12,722 INFO Out dated connection ,size=0 +2025-09-24 00:23:14,843 INFO Out dated connection ,size=0 -2025-09-23 00:23:12,722 INFO Connection check task end +2025-09-24 00:23:14,843 INFO Connection check task end -2025-09-23 00:23:14,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:14,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:15,723 INFO Connection check task start +2025-09-24 00:23:17,844 INFO Connection check task start -2025-09-23 00:23:15,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:17,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:15,723 INFO Out dated connection ,size=0 +2025-09-24 00:23:17,844 INFO Out dated connection ,size=0 -2025-09-23 00:23:15,723 INFO Connection check task end +2025-09-24 00:23:17,844 INFO Connection check task end -2025-09-23 00:23:17,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:17,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:18,724 INFO Connection check task start +2025-09-24 00:23:20,844 INFO Connection check task start -2025-09-23 00:23:18,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:20,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:18,724 INFO Out dated connection ,size=0 +2025-09-24 00:23:20,845 INFO Out dated connection ,size=0 -2025-09-23 00:23:18,724 INFO Connection check task end +2025-09-24 00:23:20,845 INFO Connection check task end -2025-09-23 00:23:20,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:20,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:21,724 INFO Connection check task start +2025-09-24 00:23:23,845 INFO Connection check task start -2025-09-23 00:23:21,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:23,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:21,725 INFO Out dated connection ,size=0 +2025-09-24 00:23:23,845 INFO Out dated connection ,size=0 -2025-09-23 00:23:21,725 INFO Connection check task end +2025-09-24 00:23:23,845 INFO Connection check task end -2025-09-23 00:23:23,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:23,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:24,726 INFO Connection check task start +2025-09-24 00:23:26,845 INFO Connection check task start -2025-09-23 00:23:24,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:26,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:24,726 INFO Out dated connection ,size=0 +2025-09-24 00:23:26,845 INFO Out dated connection ,size=0 -2025-09-23 00:23:24,726 INFO Connection check task end +2025-09-24 00:23:26,846 INFO Connection check task end -2025-09-23 00:23:26,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:26,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:27,727 INFO Connection check task start +2025-09-24 00:23:29,846 INFO Connection check task start -2025-09-23 00:23:27,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:29,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:27,727 INFO Out dated connection ,size=0 +2025-09-24 00:23:29,846 INFO Out dated connection ,size=0 -2025-09-23 00:23:27,727 INFO Connection check task end +2025-09-24 00:23:29,846 INFO Connection check task end -2025-09-23 00:23:29,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:29,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:30,727 INFO Connection check task start +2025-09-24 00:23:32,846 INFO Connection check task start -2025-09-23 00:23:30,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:32,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:30,728 INFO Out dated connection ,size=0 +2025-09-24 00:23:32,846 INFO Out dated connection ,size=0 -2025-09-23 00:23:30,728 INFO Connection check task end +2025-09-24 00:23:32,846 INFO Connection check task end -2025-09-23 00:23:32,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:32,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:33,728 INFO Connection check task start +2025-09-24 00:23:35,847 INFO Connection check task start -2025-09-23 00:23:33,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:35,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:33,728 INFO Out dated connection ,size=0 +2025-09-24 00:23:35,847 INFO Out dated connection ,size=0 -2025-09-23 00:23:33,728 INFO Connection check task end +2025-09-24 00:23:35,847 INFO Connection check task end -2025-09-23 00:23:35,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:35,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:36,729 INFO Connection check task start +2025-09-24 00:23:38,847 INFO Connection check task start -2025-09-23 00:23:36,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:38,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:36,729 INFO Out dated connection ,size=0 +2025-09-24 00:23:38,847 INFO Out dated connection ,size=0 -2025-09-23 00:23:36,729 INFO Connection check task end +2025-09-24 00:23:38,847 INFO Connection check task end -2025-09-23 00:23:38,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:38,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:39,731 INFO Connection check task start +2025-09-24 00:23:41,848 INFO Connection check task start -2025-09-23 00:23:39,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:41,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:39,731 INFO Out dated connection ,size=0 +2025-09-24 00:23:41,848 INFO Out dated connection ,size=0 -2025-09-23 00:23:39,731 INFO Connection check task end +2025-09-24 00:23:41,848 INFO Connection check task end -2025-09-23 00:23:41,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:41,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:42,732 INFO Connection check task start +2025-09-24 00:23:44,849 INFO Connection check task start -2025-09-23 00:23:42,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:44,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:42,732 INFO Out dated connection ,size=0 +2025-09-24 00:23:44,850 INFO Out dated connection ,size=0 -2025-09-23 00:23:42,732 INFO Connection check task end +2025-09-24 00:23:44,850 INFO Connection check task end -2025-09-23 00:23:44,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:44,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:45,733 INFO Connection check task start +2025-09-24 00:23:47,850 INFO Connection check task start -2025-09-23 00:23:45,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:47,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:45,734 INFO Out dated connection ,size=0 +2025-09-24 00:23:47,850 INFO Out dated connection ,size=0 -2025-09-23 00:23:45,734 INFO Connection check task end +2025-09-24 00:23:47,850 INFO Connection check task end -2025-09-23 00:23:47,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:47,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:48,735 INFO Connection check task start +2025-09-24 00:23:50,851 INFO Connection check task start -2025-09-23 00:23:48,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:50,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:48,735 INFO Out dated connection ,size=0 +2025-09-24 00:23:50,851 INFO Out dated connection ,size=0 -2025-09-23 00:23:48,735 INFO Connection check task end +2025-09-24 00:23:50,851 INFO Connection check task end -2025-09-23 00:23:50,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:50,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:51,736 INFO Connection check task start +2025-09-24 00:23:53,852 INFO Connection check task start -2025-09-23 00:23:51,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:53,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:51,736 INFO Out dated connection ,size=0 +2025-09-24 00:23:53,853 INFO Out dated connection ,size=0 -2025-09-23 00:23:51,736 INFO Connection check task end +2025-09-24 00:23:53,853 INFO Connection check task end -2025-09-23 00:23:53,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:53,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:54,736 INFO Connection check task start +2025-09-24 00:23:56,861 INFO Connection check task start -2025-09-23 00:23:54,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:56,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:54,737 INFO Out dated connection ,size=0 +2025-09-24 00:23:56,862 INFO Out dated connection ,size=0 -2025-09-23 00:23:54,737 INFO Connection check task end +2025-09-24 00:23:56,862 INFO Connection check task end -2025-09-23 00:23:56,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:56,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:23:57,738 INFO Connection check task start +2025-09-24 00:23:59,862 INFO Connection check task start -2025-09-23 00:23:57,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:23:59,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:23:57,738 INFO Out dated connection ,size=0 +2025-09-24 00:23:59,863 INFO Out dated connection ,size=0 -2025-09-23 00:23:57,738 INFO Connection check task end +2025-09-24 00:23:59,863 INFO Connection check task end -2025-09-23 00:23:59,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:23:59,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:00,739 INFO Connection check task start +2025-09-24 00:24:02,863 INFO Connection check task start -2025-09-23 00:24:00,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:02,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:00,739 INFO Out dated connection ,size=0 +2025-09-24 00:24:02,863 INFO Out dated connection ,size=0 -2025-09-23 00:24:00,739 INFO Connection check task end +2025-09-24 00:24:02,863 INFO Connection check task end -2025-09-23 00:24:02,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:02,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:03,741 INFO Connection check task start +2025-09-24 00:24:05,864 INFO Connection check task start -2025-09-23 00:24:03,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:05,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:03,741 INFO Out dated connection ,size=0 +2025-09-24 00:24:05,864 INFO Out dated connection ,size=0 -2025-09-23 00:24:03,741 INFO Connection check task end +2025-09-24 00:24:05,864 INFO Connection check task end -2025-09-23 00:24:05,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:05,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:06,742 INFO Connection check task start +2025-09-24 00:24:08,865 INFO Connection check task start -2025-09-23 00:24:06,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:08,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:06,743 INFO Out dated connection ,size=0 +2025-09-24 00:24:08,865 INFO Out dated connection ,size=0 -2025-09-23 00:24:06,743 INFO Connection check task end +2025-09-24 00:24:08,865 INFO Connection check task end -2025-09-23 00:24:08,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:08,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:09,743 INFO Connection check task start +2025-09-24 00:24:11,865 INFO Connection check task start -2025-09-23 00:24:09,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:11,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:09,743 INFO Out dated connection ,size=0 +2025-09-24 00:24:11,866 INFO Out dated connection ,size=0 -2025-09-23 00:24:09,743 INFO Connection check task end +2025-09-24 00:24:11,866 INFO Connection check task end -2025-09-23 00:24:11,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:11,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:12,743 INFO Connection check task start +2025-09-24 00:24:14,866 INFO Connection check task start -2025-09-23 00:24:12,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:14,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:12,743 INFO Out dated connection ,size=0 +2025-09-24 00:24:14,867 INFO Out dated connection ,size=0 -2025-09-23 00:24:12,744 INFO Connection check task end +2025-09-24 00:24:14,867 INFO Connection check task end -2025-09-23 00:24:14,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:14,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:15,744 INFO Connection check task start +2025-09-24 00:24:17,867 INFO Connection check task start -2025-09-23 00:24:15,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:17,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:15,745 INFO Out dated connection ,size=0 +2025-09-24 00:24:17,868 INFO Out dated connection ,size=0 -2025-09-23 00:24:15,745 INFO Connection check task end +2025-09-24 00:24:17,868 INFO Connection check task end -2025-09-23 00:24:17,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:17,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:18,745 INFO Connection check task start +2025-09-24 00:24:20,868 INFO Connection check task start -2025-09-23 00:24:18,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:20,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:18,746 INFO Out dated connection ,size=0 +2025-09-24 00:24:20,868 INFO Out dated connection ,size=0 -2025-09-23 00:24:18,746 INFO Connection check task end +2025-09-24 00:24:20,868 INFO Connection check task end -2025-09-23 00:24:20,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:20,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:21,746 INFO Connection check task start +2025-09-24 00:24:23,868 INFO Connection check task start -2025-09-23 00:24:21,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:23,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:21,746 INFO Out dated connection ,size=0 +2025-09-24 00:24:23,869 INFO Out dated connection ,size=0 -2025-09-23 00:24:21,746 INFO Connection check task end +2025-09-24 00:24:23,869 INFO Connection check task end -2025-09-23 00:24:23,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:23,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:24,746 INFO Connection check task start +2025-09-24 00:24:26,869 INFO Connection check task start -2025-09-23 00:24:24,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:26,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:24,746 INFO Out dated connection ,size=0 +2025-09-24 00:24:26,869 INFO Out dated connection ,size=0 -2025-09-23 00:24:24,746 INFO Connection check task end +2025-09-24 00:24:26,869 INFO Connection check task end -2025-09-23 00:24:26,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:26,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:27,747 INFO Connection check task start +2025-09-24 00:24:29,869 INFO Connection check task start -2025-09-23 00:24:27,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:29,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:27,747 INFO Out dated connection ,size=0 +2025-09-24 00:24:29,869 INFO Out dated connection ,size=0 -2025-09-23 00:24:27,747 INFO Connection check task end +2025-09-24 00:24:29,870 INFO Connection check task end -2025-09-23 00:24:29,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:29,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:30,747 INFO Connection check task start +2025-09-24 00:24:32,870 INFO Connection check task start -2025-09-23 00:24:30,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:32,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:30,747 INFO Out dated connection ,size=0 +2025-09-24 00:24:32,870 INFO Out dated connection ,size=0 -2025-09-23 00:24:30,747 INFO Connection check task end +2025-09-24 00:24:32,870 INFO Connection check task end -2025-09-23 00:24:32,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:32,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:33,748 INFO Connection check task start +2025-09-24 00:24:35,871 INFO Connection check task start -2025-09-23 00:24:33,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:35,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:33,748 INFO Out dated connection ,size=0 +2025-09-24 00:24:35,871 INFO Out dated connection ,size=0 -2025-09-23 00:24:33,748 INFO Connection check task end +2025-09-24 00:24:35,871 INFO Connection check task end -2025-09-23 00:24:35,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:35,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:36,748 INFO Connection check task start +2025-09-24 00:24:38,873 INFO Connection check task start -2025-09-23 00:24:36,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:38,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:36,748 INFO Out dated connection ,size=0 +2025-09-24 00:24:38,874 INFO Out dated connection ,size=0 -2025-09-23 00:24:36,749 INFO Connection check task end +2025-09-24 00:24:38,874 INFO Connection check task end -2025-09-23 00:24:38,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:38,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:39,749 INFO Connection check task start +2025-09-24 00:24:41,875 INFO Connection check task start -2025-09-23 00:24:39,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:41,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:39,749 INFO Out dated connection ,size=0 +2025-09-24 00:24:41,875 INFO Out dated connection ,size=0 -2025-09-23 00:24:39,749 INFO Connection check task end +2025-09-24 00:24:41,875 INFO Connection check task end -2025-09-23 00:24:41,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:41,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:42,749 INFO Connection check task start +2025-09-24 00:24:44,876 INFO Connection check task start -2025-09-23 00:24:42,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:44,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:42,750 INFO Out dated connection ,size=0 +2025-09-24 00:24:44,876 INFO Out dated connection ,size=0 -2025-09-23 00:24:42,750 INFO Connection check task end +2025-09-24 00:24:44,876 INFO Connection check task end -2025-09-23 00:24:44,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:44,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:45,750 INFO Connection check task start +2025-09-24 00:24:47,876 INFO Connection check task start -2025-09-23 00:24:45,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:47,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:45,750 INFO Out dated connection ,size=0 +2025-09-24 00:24:47,876 INFO Out dated connection ,size=0 -2025-09-23 00:24:45,750 INFO Connection check task end +2025-09-24 00:24:47,877 INFO Connection check task end -2025-09-23 00:24:47,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:47,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:48,751 INFO Connection check task start +2025-09-24 00:24:50,877 INFO Connection check task start -2025-09-23 00:24:48,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:50,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:48,751 INFO Out dated connection ,size=0 +2025-09-24 00:24:50,877 INFO Out dated connection ,size=0 -2025-09-23 00:24:48,751 INFO Connection check task end +2025-09-24 00:24:50,877 INFO Connection check task end -2025-09-23 00:24:50,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:51,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:51,752 INFO Connection check task start +2025-09-24 00:24:53,878 INFO Connection check task start -2025-09-23 00:24:51,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:53,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:51,752 INFO Out dated connection ,size=0 +2025-09-24 00:24:53,878 INFO Out dated connection ,size=0 -2025-09-23 00:24:51,752 INFO Connection check task end +2025-09-24 00:24:53,879 INFO Connection check task end -2025-09-23 00:24:53,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:54,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:54,753 INFO Connection check task start +2025-09-24 00:24:56,879 INFO Connection check task start -2025-09-23 00:24:54,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:56,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:54,753 INFO Out dated connection ,size=0 +2025-09-24 00:24:56,879 INFO Out dated connection ,size=0 -2025-09-23 00:24:54,753 INFO Connection check task end +2025-09-24 00:24:56,879 INFO Connection check task end -2025-09-23 00:24:56,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:24:57,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:24:57,753 INFO Connection check task start +2025-09-24 00:24:59,880 INFO Connection check task start -2025-09-23 00:24:57,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:24:59,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:24:57,753 INFO Out dated connection ,size=0 +2025-09-24 00:24:59,881 INFO Out dated connection ,size=0 -2025-09-23 00:24:57,753 INFO Connection check task end +2025-09-24 00:24:59,881 INFO Connection check task end -2025-09-23 00:24:59,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:00,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:00,753 INFO Connection check task start +2025-09-24 00:25:02,881 INFO Connection check task start -2025-09-23 00:25:00,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:02,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:00,754 INFO Out dated connection ,size=0 +2025-09-24 00:25:02,881 INFO Out dated connection ,size=0 -2025-09-23 00:25:00,754 INFO Connection check task end +2025-09-24 00:25:02,881 INFO Connection check task end -2025-09-23 00:25:02,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:03,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:03,754 INFO Connection check task start +2025-09-24 00:25:05,882 INFO Connection check task start -2025-09-23 00:25:03,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:05,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:03,755 INFO Out dated connection ,size=0 +2025-09-24 00:25:05,882 INFO Out dated connection ,size=0 -2025-09-23 00:25:03,755 INFO Connection check task end +2025-09-24 00:25:05,882 INFO Connection check task end -2025-09-23 00:25:05,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:06,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:06,755 INFO Connection check task start +2025-09-24 00:25:08,882 INFO Connection check task start -2025-09-23 00:25:06,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:08,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:06,755 INFO Out dated connection ,size=0 +2025-09-24 00:25:08,882 INFO Out dated connection ,size=0 -2025-09-23 00:25:06,755 INFO Connection check task end +2025-09-24 00:25:08,882 INFO Connection check task end -2025-09-23 00:25:08,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:09,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:09,756 INFO Connection check task start +2025-09-24 00:25:11,884 INFO Connection check task start -2025-09-23 00:25:09,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:11,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:09,757 INFO Out dated connection ,size=0 +2025-09-24 00:25:11,884 INFO Out dated connection ,size=0 -2025-09-23 00:25:09,757 INFO Connection check task end +2025-09-24 00:25:11,884 INFO Connection check task end -2025-09-23 00:25:11,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:12,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:12,758 INFO Connection check task start +2025-09-24 00:25:14,885 INFO Connection check task start -2025-09-23 00:25:12,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:14,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:12,759 INFO Out dated connection ,size=0 +2025-09-24 00:25:14,886 INFO Out dated connection ,size=0 -2025-09-23 00:25:12,759 INFO Connection check task end +2025-09-24 00:25:14,886 INFO Connection check task end -2025-09-23 00:25:14,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:15,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:15,760 INFO Connection check task start +2025-09-24 00:25:17,887 INFO Connection check task start -2025-09-23 00:25:15,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:17,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:15,760 INFO Out dated connection ,size=0 +2025-09-24 00:25:17,887 INFO Out dated connection ,size=0 -2025-09-23 00:25:15,760 INFO Connection check task end +2025-09-24 00:25:17,887 INFO Connection check task end -2025-09-23 00:25:17,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:18,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:18,760 INFO Connection check task start +2025-09-24 00:25:20,887 INFO Connection check task start -2025-09-23 00:25:18,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:20,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:18,760 INFO Out dated connection ,size=0 +2025-09-24 00:25:20,888 INFO Out dated connection ,size=0 -2025-09-23 00:25:18,760 INFO Connection check task end +2025-09-24 00:25:20,888 INFO Connection check task end -2025-09-23 00:25:20,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:21,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:21,761 INFO Connection check task start +2025-09-24 00:25:23,889 INFO Connection check task start -2025-09-23 00:25:21,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:23,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:21,761 INFO Out dated connection ,size=0 +2025-09-24 00:25:23,889 INFO Out dated connection ,size=0 -2025-09-23 00:25:21,761 INFO Connection check task end +2025-09-24 00:25:23,889 INFO Connection check task end -2025-09-23 00:25:23,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:24,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:24,762 INFO Connection check task start +2025-09-24 00:25:26,891 INFO Connection check task start -2025-09-23 00:25:24,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:26,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:24,762 INFO Out dated connection ,size=0 +2025-09-24 00:25:26,891 INFO Out dated connection ,size=0 -2025-09-23 00:25:24,763 INFO Connection check task end +2025-09-24 00:25:26,891 INFO Connection check task end -2025-09-23 00:25:26,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:27,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:27,763 INFO Connection check task start +2025-09-24 00:25:29,893 INFO Connection check task start -2025-09-23 00:25:27,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:29,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:27,764 INFO Out dated connection ,size=0 +2025-09-24 00:25:29,893 INFO Out dated connection ,size=0 -2025-09-23 00:25:27,764 INFO Connection check task end +2025-09-24 00:25:29,893 INFO Connection check task end -2025-09-23 00:25:29,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:30,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:30,765 INFO Connection check task start +2025-09-24 00:25:32,894 INFO Connection check task start -2025-09-23 00:25:30,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:32,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:30,765 INFO Out dated connection ,size=0 +2025-09-24 00:25:32,894 INFO Out dated connection ,size=0 -2025-09-23 00:25:30,765 INFO Connection check task end +2025-09-24 00:25:32,894 INFO Connection check task end -2025-09-23 00:25:32,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:33,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:33,765 INFO Connection check task start +2025-09-24 00:25:35,895 INFO Connection check task start -2025-09-23 00:25:33,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:35,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:33,766 INFO Out dated connection ,size=0 +2025-09-24 00:25:35,896 INFO Out dated connection ,size=0 -2025-09-23 00:25:33,766 INFO Connection check task end +2025-09-24 00:25:35,896 INFO Connection check task end -2025-09-23 00:25:35,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:36,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:36,767 INFO Connection check task start +2025-09-24 00:25:38,896 INFO Connection check task start -2025-09-23 00:25:36,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:38,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:36,767 INFO Out dated connection ,size=0 +2025-09-24 00:25:38,896 INFO Out dated connection ,size=0 -2025-09-23 00:25:36,767 INFO Connection check task end +2025-09-24 00:25:38,896 INFO Connection check task end -2025-09-23 00:25:38,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:39,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:39,768 INFO Connection check task start +2025-09-24 00:25:41,897 INFO Connection check task start -2025-09-23 00:25:39,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:41,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:39,769 INFO Out dated connection ,size=0 +2025-09-24 00:25:41,897 INFO Out dated connection ,size=0 -2025-09-23 00:25:39,769 INFO Connection check task end +2025-09-24 00:25:41,897 INFO Connection check task end -2025-09-23 00:25:41,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:42,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:42,770 INFO Connection check task start +2025-09-24 00:25:44,898 INFO Connection check task start -2025-09-23 00:25:42,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:44,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:42,770 INFO Out dated connection ,size=0 +2025-09-24 00:25:44,898 INFO Out dated connection ,size=0 -2025-09-23 00:25:42,770 INFO Connection check task end +2025-09-24 00:25:44,898 INFO Connection check task end -2025-09-23 00:25:44,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:45,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:45,771 INFO Connection check task start +2025-09-24 00:25:47,899 INFO Connection check task start -2025-09-23 00:25:45,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:47,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:45,771 INFO Out dated connection ,size=0 +2025-09-24 00:25:47,899 INFO Out dated connection ,size=0 -2025-09-23 00:25:45,771 INFO Connection check task end +2025-09-24 00:25:47,900 INFO Connection check task end -2025-09-23 00:25:47,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:48,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:48,773 INFO Connection check task start +2025-09-24 00:25:50,901 INFO Connection check task start -2025-09-23 00:25:48,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:50,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:48,773 INFO Out dated connection ,size=0 +2025-09-24 00:25:50,901 INFO Out dated connection ,size=0 -2025-09-23 00:25:48,773 INFO Connection check task end +2025-09-24 00:25:50,901 INFO Connection check task end -2025-09-23 00:25:50,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:51,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:51,774 INFO Connection check task start +2025-09-24 00:25:53,901 INFO Connection check task start -2025-09-23 00:25:51,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:53,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:51,774 INFO Out dated connection ,size=0 +2025-09-24 00:25:53,902 INFO Out dated connection ,size=0 -2025-09-23 00:25:51,774 INFO Connection check task end +2025-09-24 00:25:53,902 INFO Connection check task end -2025-09-23 00:25:53,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:54,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:54,776 INFO Connection check task start +2025-09-24 00:25:56,903 INFO Connection check task start -2025-09-23 00:25:54,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:56,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:54,776 INFO Out dated connection ,size=0 +2025-09-24 00:25:56,904 INFO Out dated connection ,size=0 -2025-09-23 00:25:54,776 INFO Connection check task end +2025-09-24 00:25:56,904 INFO Connection check task end -2025-09-23 00:25:56,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:25:57,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:25:57,778 INFO Connection check task start +2025-09-24 00:25:59,907 INFO Connection check task start -2025-09-23 00:25:57,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:25:59,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:25:57,778 INFO Out dated connection ,size=0 +2025-09-24 00:25:59,907 INFO Out dated connection ,size=0 -2025-09-23 00:25:57,778 INFO Connection check task end +2025-09-24 00:25:59,907 INFO Connection check task end -2025-09-23 00:25:59,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:00,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:00,779 INFO Connection check task start +2025-09-24 00:26:02,908 INFO Connection check task start -2025-09-23 00:26:00,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:02,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:00,779 INFO Out dated connection ,size=0 +2025-09-24 00:26:02,908 INFO Out dated connection ,size=0 -2025-09-23 00:26:00,779 INFO Connection check task end +2025-09-24 00:26:02,908 INFO Connection check task end -2025-09-23 00:26:02,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:03,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:03,780 INFO Connection check task start +2025-09-24 00:26:05,909 INFO Connection check task start -2025-09-23 00:26:03,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:05,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:03,780 INFO Out dated connection ,size=0 +2025-09-24 00:26:05,909 INFO Out dated connection ,size=0 -2025-09-23 00:26:03,780 INFO Connection check task end +2025-09-24 00:26:05,909 INFO Connection check task end -2025-09-23 00:26:05,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:06,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:06,780 INFO Connection check task start +2025-09-24 00:26:08,910 INFO Connection check task start -2025-09-23 00:26:06,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:08,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:06,780 INFO Out dated connection ,size=0 +2025-09-24 00:26:08,910 INFO Out dated connection ,size=0 -2025-09-23 00:26:06,781 INFO Connection check task end +2025-09-24 00:26:08,910 INFO Connection check task end -2025-09-23 00:26:08,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:09,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:09,781 INFO Connection check task start +2025-09-24 00:26:11,910 INFO Connection check task start -2025-09-23 00:26:09,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:11,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:09,781 INFO Out dated connection ,size=0 +2025-09-24 00:26:11,910 INFO Out dated connection ,size=0 -2025-09-23 00:26:09,781 INFO Connection check task end +2025-09-24 00:26:11,910 INFO Connection check task end -2025-09-23 00:26:11,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:12,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:12,782 INFO Connection check task start +2025-09-24 00:26:14,912 INFO Connection check task start -2025-09-23 00:26:12,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:14,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:12,782 INFO Out dated connection ,size=0 +2025-09-24 00:26:14,912 INFO Out dated connection ,size=0 -2025-09-23 00:26:12,782 INFO Connection check task end +2025-09-24 00:26:14,912 INFO Connection check task end -2025-09-23 00:26:14,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:15,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:15,783 INFO Connection check task start +2025-09-24 00:26:17,912 INFO Connection check task start -2025-09-23 00:26:15,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:17,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:15,783 INFO Out dated connection ,size=0 +2025-09-24 00:26:17,912 INFO Out dated connection ,size=0 -2025-09-23 00:26:15,783 INFO Connection check task end +2025-09-24 00:26:17,912 INFO Connection check task end -2025-09-23 00:26:17,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:18,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:18,784 INFO Connection check task start +2025-09-24 00:26:20,913 INFO Connection check task start -2025-09-23 00:26:18,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:20,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:18,784 INFO Out dated connection ,size=0 +2025-09-24 00:26:20,913 INFO Out dated connection ,size=0 -2025-09-23 00:26:18,784 INFO Connection check task end +2025-09-24 00:26:20,913 INFO Connection check task end -2025-09-23 00:26:20,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:21,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:21,785 INFO Connection check task start +2025-09-24 00:26:23,913 INFO Connection check task start -2025-09-23 00:26:21,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:23,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:21,785 INFO Out dated connection ,size=0 +2025-09-24 00:26:23,914 INFO Out dated connection ,size=0 -2025-09-23 00:26:21,785 INFO Connection check task end +2025-09-24 00:26:23,914 INFO Connection check task end -2025-09-23 00:26:23,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:24,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:24,785 INFO Connection check task start +2025-09-24 00:26:26,914 INFO Connection check task start -2025-09-23 00:26:24,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:26,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:24,786 INFO Out dated connection ,size=0 +2025-09-24 00:26:26,914 INFO Out dated connection ,size=0 -2025-09-23 00:26:24,786 INFO Connection check task end +2025-09-24 00:26:26,914 INFO Connection check task end -2025-09-23 00:26:26,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:27,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:27,786 INFO Connection check task start +2025-09-24 00:26:29,915 INFO Connection check task start -2025-09-23 00:26:27,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:29,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:27,787 INFO Out dated connection ,size=0 +2025-09-24 00:26:29,915 INFO Out dated connection ,size=0 -2025-09-23 00:26:27,787 INFO Connection check task end +2025-09-24 00:26:29,915 INFO Connection check task end -2025-09-23 00:26:29,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:30,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:30,787 INFO Connection check task start +2025-09-24 00:26:32,916 INFO Connection check task start -2025-09-23 00:26:30,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:32,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:30,787 INFO Out dated connection ,size=0 +2025-09-24 00:26:32,916 INFO Out dated connection ,size=0 -2025-09-23 00:26:30,787 INFO Connection check task end +2025-09-24 00:26:32,916 INFO Connection check task end -2025-09-23 00:26:32,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:33,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:33,788 INFO Connection check task start +2025-09-24 00:26:35,918 INFO Connection check task start -2025-09-23 00:26:33,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:35,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:33,788 INFO Out dated connection ,size=0 +2025-09-24 00:26:35,918 INFO Out dated connection ,size=0 -2025-09-23 00:26:33,788 INFO Connection check task end +2025-09-24 00:26:35,918 INFO Connection check task end -2025-09-23 00:26:35,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:36,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:36,789 INFO Connection check task start +2025-09-24 00:26:38,919 INFO Connection check task start -2025-09-23 00:26:36,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:38,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:36,789 INFO Out dated connection ,size=0 +2025-09-24 00:26:38,919 INFO Out dated connection ,size=0 -2025-09-23 00:26:36,789 INFO Connection check task end +2025-09-24 00:26:38,919 INFO Connection check task end -2025-09-23 00:26:38,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:39,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:39,790 INFO Connection check task start +2025-09-24 00:26:41,920 INFO Connection check task start -2025-09-23 00:26:39,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:41,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:39,790 INFO Out dated connection ,size=0 +2025-09-24 00:26:41,920 INFO Out dated connection ,size=0 -2025-09-23 00:26:39,790 INFO Connection check task end +2025-09-24 00:26:41,920 INFO Connection check task end -2025-09-23 00:26:41,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:42,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:42,790 INFO Connection check task start +2025-09-24 00:26:44,920 INFO Connection check task start -2025-09-23 00:26:42,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:44,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:42,791 INFO Out dated connection ,size=0 +2025-09-24 00:26:44,921 INFO Out dated connection ,size=0 -2025-09-23 00:26:42,791 INFO Connection check task end +2025-09-24 00:26:44,921 INFO Connection check task end -2025-09-23 00:26:44,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:45,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:45,791 INFO Connection check task start +2025-09-24 00:26:47,921 INFO Connection check task start -2025-09-23 00:26:45,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:47,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:45,791 INFO Out dated connection ,size=0 +2025-09-24 00:26:47,922 INFO Out dated connection ,size=0 -2025-09-23 00:26:45,791 INFO Connection check task end +2025-09-24 00:26:47,922 INFO Connection check task end -2025-09-23 00:26:47,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:48,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:48,791 INFO Connection check task start +2025-09-24 00:26:50,922 INFO Connection check task start -2025-09-23 00:26:48,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:50,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:48,791 INFO Out dated connection ,size=0 +2025-09-24 00:26:50,922 INFO Out dated connection ,size=0 -2025-09-23 00:26:48,791 INFO Connection check task end +2025-09-24 00:26:50,922 INFO Connection check task end -2025-09-23 00:26:50,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:51,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:51,792 INFO Connection check task start +2025-09-24 00:26:53,924 INFO Connection check task start -2025-09-23 00:26:51,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:53,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:51,793 INFO Out dated connection ,size=0 +2025-09-24 00:26:53,926 INFO Out dated connection ,size=0 -2025-09-23 00:26:51,793 INFO Connection check task end +2025-09-24 00:26:53,926 INFO Connection check task end -2025-09-23 00:26:53,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:54,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:54,793 INFO Connection check task start +2025-09-24 00:26:56,927 INFO Connection check task start -2025-09-23 00:26:54,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:56,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:54,794 INFO Out dated connection ,size=0 +2025-09-24 00:26:56,927 INFO Out dated connection ,size=0 -2025-09-23 00:26:54,794 INFO Connection check task end +2025-09-24 00:26:56,927 INFO Connection check task end -2025-09-23 00:26:56,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:26:57,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:26:57,794 INFO Connection check task start +2025-09-24 00:26:59,927 INFO Connection check task start -2025-09-23 00:26:57,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:26:59,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:26:57,795 INFO Out dated connection ,size=0 +2025-09-24 00:26:59,927 INFO Out dated connection ,size=0 -2025-09-23 00:26:57,795 INFO Connection check task end +2025-09-24 00:26:59,927 INFO Connection check task end -2025-09-23 00:26:59,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:00,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:00,795 INFO Connection check task start +2025-09-24 00:27:02,946 INFO Connection check task start -2025-09-23 00:27:00,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:02,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:00,796 INFO Out dated connection ,size=0 +2025-09-24 00:27:02,946 INFO Out dated connection ,size=0 -2025-09-23 00:27:00,796 INFO Connection check task end +2025-09-24 00:27:02,946 INFO Connection check task end -2025-09-23 00:27:02,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:03,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:03,797 INFO Connection check task start +2025-09-24 00:27:05,946 INFO Connection check task start -2025-09-23 00:27:03,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:05,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:03,797 INFO Out dated connection ,size=0 +2025-09-24 00:27:05,947 INFO Out dated connection ,size=0 -2025-09-23 00:27:03,797 INFO Connection check task end +2025-09-24 00:27:05,947 INFO Connection check task end -2025-09-23 00:27:05,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:06,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:06,798 INFO Connection check task start +2025-09-24 00:27:08,948 INFO Connection check task start -2025-09-23 00:27:06,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:08,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:06,798 INFO Out dated connection ,size=0 +2025-09-24 00:27:08,948 INFO Out dated connection ,size=0 -2025-09-23 00:27:06,798 INFO Connection check task end +2025-09-24 00:27:08,948 INFO Connection check task end -2025-09-23 00:27:08,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:09,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:09,798 INFO Connection check task start +2025-09-24 00:27:11,949 INFO Connection check task start -2025-09-23 00:27:09,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:11,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:09,799 INFO Out dated connection ,size=0 +2025-09-24 00:27:11,949 INFO Out dated connection ,size=0 -2025-09-23 00:27:09,799 INFO Connection check task end +2025-09-24 00:27:11,949 INFO Connection check task end -2025-09-23 00:27:11,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:12,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:12,800 INFO Connection check task start +2025-09-24 00:27:14,950 INFO Connection check task start -2025-09-23 00:27:12,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:14,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:12,800 INFO Out dated connection ,size=0 +2025-09-24 00:27:14,950 INFO Out dated connection ,size=0 -2025-09-23 00:27:12,800 INFO Connection check task end +2025-09-24 00:27:14,950 INFO Connection check task end -2025-09-23 00:27:14,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:15,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:15,802 INFO Connection check task start +2025-09-24 00:27:17,952 INFO Connection check task start -2025-09-23 00:27:15,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:17,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:15,802 INFO Out dated connection ,size=0 +2025-09-24 00:27:17,952 INFO Out dated connection ,size=0 -2025-09-23 00:27:15,802 INFO Connection check task end +2025-09-24 00:27:17,952 INFO Connection check task end -2025-09-23 00:27:17,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:18,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:18,802 INFO Connection check task start +2025-09-24 00:27:20,952 INFO Connection check task start -2025-09-23 00:27:18,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:20,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:18,803 INFO Out dated connection ,size=0 +2025-09-24 00:27:20,952 INFO Out dated connection ,size=0 -2025-09-23 00:27:18,803 INFO Connection check task end +2025-09-24 00:27:20,952 INFO Connection check task end -2025-09-23 00:27:20,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:21,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:21,804 INFO Connection check task start +2025-09-24 00:27:23,953 INFO Connection check task start -2025-09-23 00:27:21,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:23,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:21,804 INFO Out dated connection ,size=0 +2025-09-24 00:27:23,953 INFO Out dated connection ,size=0 -2025-09-23 00:27:21,804 INFO Connection check task end +2025-09-24 00:27:23,953 INFO Connection check task end -2025-09-23 00:27:23,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:24,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:24,805 INFO Connection check task start +2025-09-24 00:27:26,954 INFO Connection check task start -2025-09-23 00:27:24,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:26,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:24,805 INFO Out dated connection ,size=0 +2025-09-24 00:27:26,954 INFO Out dated connection ,size=0 -2025-09-23 00:27:24,805 INFO Connection check task end +2025-09-24 00:27:26,954 INFO Connection check task end -2025-09-23 00:27:26,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:27,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:27,806 INFO Connection check task start +2025-09-24 00:27:29,954 INFO Connection check task start -2025-09-23 00:27:27,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:29,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:27,806 INFO Out dated connection ,size=0 +2025-09-24 00:27:29,955 INFO Out dated connection ,size=0 -2025-09-23 00:27:27,806 INFO Connection check task end +2025-09-24 00:27:29,955 INFO Connection check task end -2025-09-23 00:27:29,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:30,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:30,807 INFO Connection check task start +2025-09-24 00:27:32,955 INFO Connection check task start -2025-09-23 00:27:30,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:32,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:30,808 INFO Out dated connection ,size=0 +2025-09-24 00:27:32,955 INFO Out dated connection ,size=0 -2025-09-23 00:27:30,808 INFO Connection check task end +2025-09-24 00:27:32,955 INFO Connection check task end -2025-09-23 00:27:32,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:33,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:33,809 INFO Connection check task start +2025-09-24 00:27:35,956 INFO Connection check task start -2025-09-23 00:27:33,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:35,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:33,809 INFO Out dated connection ,size=0 +2025-09-24 00:27:35,956 INFO Out dated connection ,size=0 -2025-09-23 00:27:33,809 INFO Connection check task end +2025-09-24 00:27:35,956 INFO Connection check task end -2025-09-23 00:27:35,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:36,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:36,809 INFO Connection check task start +2025-09-24 00:27:38,957 INFO Connection check task start -2025-09-23 00:27:36,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:38,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:36,810 INFO Out dated connection ,size=0 +2025-09-24 00:27:38,957 INFO Out dated connection ,size=0 -2025-09-23 00:27:36,810 INFO Connection check task end +2025-09-24 00:27:38,957 INFO Connection check task end -2025-09-23 00:27:38,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:39,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:39,810 INFO Connection check task start +2025-09-24 00:27:41,957 INFO Connection check task start -2025-09-23 00:27:39,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:41,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:39,810 INFO Out dated connection ,size=0 +2025-09-24 00:27:41,958 INFO Out dated connection ,size=0 -2025-09-23 00:27:39,810 INFO Connection check task end +2025-09-24 00:27:41,958 INFO Connection check task end -2025-09-23 00:27:41,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:42,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:42,811 INFO Connection check task start +2025-09-24 00:27:44,958 INFO Connection check task start -2025-09-23 00:27:42,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:44,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:42,811 INFO Out dated connection ,size=0 +2025-09-24 00:27:44,958 INFO Out dated connection ,size=0 -2025-09-23 00:27:42,811 INFO Connection check task end +2025-09-24 00:27:44,958 INFO Connection check task end -2025-09-23 00:27:44,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:45,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:45,812 INFO Connection check task start +2025-09-24 00:27:47,959 INFO Connection check task start -2025-09-23 00:27:45,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:47,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:45,812 INFO Out dated connection ,size=0 +2025-09-24 00:27:47,959 INFO Out dated connection ,size=0 -2025-09-23 00:27:45,812 INFO Connection check task end +2025-09-24 00:27:47,959 INFO Connection check task end -2025-09-23 00:27:47,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:48,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:48,812 INFO Connection check task start +2025-09-24 00:27:50,960 INFO Connection check task start -2025-09-23 00:27:48,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:50,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:48,813 INFO Out dated connection ,size=0 +2025-09-24 00:27:50,960 INFO Out dated connection ,size=0 -2025-09-23 00:27:48,813 INFO Connection check task end +2025-09-24 00:27:50,960 INFO Connection check task end -2025-09-23 00:27:50,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:51,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:51,813 INFO Connection check task start +2025-09-24 00:27:53,960 INFO Connection check task start -2025-09-23 00:27:51,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:53,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:51,814 INFO Out dated connection ,size=0 +2025-09-24 00:27:53,960 INFO Out dated connection ,size=0 -2025-09-23 00:27:51,814 INFO Connection check task end +2025-09-24 00:27:53,960 INFO Connection check task end -2025-09-23 00:27:53,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:54,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:54,814 INFO Connection check task start +2025-09-24 00:27:56,961 INFO Connection check task start -2025-09-23 00:27:54,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:56,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:54,814 INFO Out dated connection ,size=0 +2025-09-24 00:27:56,962 INFO Out dated connection ,size=0 -2025-09-23 00:27:54,814 INFO Connection check task end +2025-09-24 00:27:56,962 INFO Connection check task end -2025-09-23 00:27:56,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:27:57,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:27:57,815 INFO Connection check task start +2025-09-24 00:27:59,962 INFO Connection check task start -2025-09-23 00:27:57,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:27:59,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:27:57,815 INFO Out dated connection ,size=0 +2025-09-24 00:27:59,962 INFO Out dated connection ,size=0 -2025-09-23 00:27:57,815 INFO Connection check task end +2025-09-24 00:27:59,962 INFO Connection check task end -2025-09-23 00:27:59,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:00,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:00,817 INFO Connection check task start +2025-09-24 00:28:02,963 INFO Connection check task start -2025-09-23 00:28:00,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:02,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:00,817 INFO Out dated connection ,size=0 +2025-09-24 00:28:02,963 INFO Out dated connection ,size=0 -2025-09-23 00:28:00,817 INFO Connection check task end +2025-09-24 00:28:02,963 INFO Connection check task end -2025-09-23 00:28:02,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:03,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:03,818 INFO Connection check task start +2025-09-24 00:28:05,965 INFO Connection check task start -2025-09-23 00:28:03,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:05,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:03,818 INFO Out dated connection ,size=0 +2025-09-24 00:28:05,965 INFO Out dated connection ,size=0 -2025-09-23 00:28:03,818 INFO Connection check task end +2025-09-24 00:28:05,965 INFO Connection check task end -2025-09-23 00:28:05,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:06,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:06,819 INFO Connection check task start +2025-09-24 00:28:08,965 INFO Connection check task start -2025-09-23 00:28:06,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:08,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:06,820 INFO Out dated connection ,size=0 +2025-09-24 00:28:08,966 INFO Out dated connection ,size=0 -2025-09-23 00:28:06,820 INFO Connection check task end +2025-09-24 00:28:08,966 INFO Connection check task end -2025-09-23 00:28:08,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:09,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:09,821 INFO Connection check task start +2025-09-24 00:28:11,966 INFO Connection check task start -2025-09-23 00:28:09,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:11,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:09,821 INFO Out dated connection ,size=0 +2025-09-24 00:28:11,966 INFO Out dated connection ,size=0 -2025-09-23 00:28:09,821 INFO Connection check task end +2025-09-24 00:28:11,966 INFO Connection check task end -2025-09-23 00:28:11,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:12,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:12,822 INFO Connection check task start +2025-09-24 00:28:14,967 INFO Connection check task start -2025-09-23 00:28:12,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:14,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:12,822 INFO Out dated connection ,size=0 +2025-09-24 00:28:14,967 INFO Out dated connection ,size=0 -2025-09-23 00:28:12,822 INFO Connection check task end +2025-09-24 00:28:14,967 INFO Connection check task end -2025-09-23 00:28:14,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:15,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:15,823 INFO Connection check task start +2025-09-24 00:28:17,967 INFO Connection check task start -2025-09-23 00:28:15,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:17,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:15,823 INFO Out dated connection ,size=0 +2025-09-24 00:28:17,968 INFO Out dated connection ,size=0 -2025-09-23 00:28:15,823 INFO Connection check task end +2025-09-24 00:28:17,968 INFO Connection check task end -2025-09-23 00:28:17,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:18,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:18,824 INFO Connection check task start +2025-09-24 00:28:20,968 INFO Connection check task start -2025-09-23 00:28:18,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:20,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:18,824 INFO Out dated connection ,size=0 +2025-09-24 00:28:20,968 INFO Out dated connection ,size=0 -2025-09-23 00:28:18,824 INFO Connection check task end +2025-09-24 00:28:20,968 INFO Connection check task end -2025-09-23 00:28:20,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:21,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:21,824 INFO Connection check task start +2025-09-24 00:28:23,973 INFO Connection check task start -2025-09-23 00:28:21,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:23,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:21,824 INFO Out dated connection ,size=0 +2025-09-24 00:28:24,000 INFO Out dated connection ,size=0 -2025-09-23 00:28:21,824 INFO Connection check task end +2025-09-24 00:28:24,021 INFO Connection check task end -2025-09-23 00:28:23,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:24,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:24,826 INFO Connection check task start +2025-09-24 00:28:27,023 INFO Connection check task start -2025-09-23 00:28:24,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:27,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:24,826 INFO Out dated connection ,size=0 +2025-09-24 00:28:27,023 INFO Out dated connection ,size=0 -2025-09-23 00:28:24,826 INFO Connection check task end +2025-09-24 00:28:27,023 INFO Connection check task end -2025-09-23 00:28:26,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:27,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:27,826 INFO Connection check task start +2025-09-24 00:28:30,024 INFO Connection check task start -2025-09-23 00:28:27,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:30,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:27,826 INFO Out dated connection ,size=0 +2025-09-24 00:28:30,024 INFO Out dated connection ,size=0 -2025-09-23 00:28:27,827 INFO Connection check task end +2025-09-24 00:28:30,024 INFO Connection check task end -2025-09-23 00:28:29,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:30,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:30,827 INFO Connection check task start +2025-09-24 00:28:33,024 INFO Connection check task start -2025-09-23 00:28:30,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:33,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:30,827 INFO Out dated connection ,size=0 +2025-09-24 00:28:33,024 INFO Out dated connection ,size=0 -2025-09-23 00:28:30,828 INFO Connection check task end +2025-09-24 00:28:33,024 INFO Connection check task end -2025-09-23 00:28:32,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:33,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:33,828 INFO Connection check task start +2025-09-24 00:28:36,032 INFO Connection check task start -2025-09-23 00:28:33,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:36,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:33,828 INFO Out dated connection ,size=0 +2025-09-24 00:28:36,032 INFO Out dated connection ,size=0 -2025-09-23 00:28:33,828 INFO Connection check task end +2025-09-24 00:28:36,032 INFO Connection check task end -2025-09-23 00:28:35,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:36,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:36,829 INFO Connection check task start +2025-09-24 00:28:39,033 INFO Connection check task start -2025-09-23 00:28:36,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:39,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:36,829 INFO Out dated connection ,size=0 +2025-09-24 00:28:39,033 INFO Out dated connection ,size=0 -2025-09-23 00:28:36,829 INFO Connection check task end +2025-09-24 00:28:39,033 INFO Connection check task end -2025-09-23 00:28:38,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:39,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:39,830 INFO Connection check task start +2025-09-24 00:28:42,053 INFO Connection check task start -2025-09-23 00:28:39,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:42,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:39,830 INFO Out dated connection ,size=0 +2025-09-24 00:28:42,055 INFO Out dated connection ,size=0 -2025-09-23 00:28:39,830 INFO Connection check task end +2025-09-24 00:28:42,055 INFO Connection check task end -2025-09-23 00:28:41,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:42,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:42,830 INFO Connection check task start +2025-09-24 00:28:45,056 INFO Connection check task start -2025-09-23 00:28:42,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:45,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:42,830 INFO Out dated connection ,size=0 +2025-09-24 00:28:45,056 INFO Out dated connection ,size=0 -2025-09-23 00:28:42,831 INFO Connection check task end +2025-09-24 00:28:45,056 INFO Connection check task end -2025-09-23 00:28:44,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:45,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:45,831 INFO Connection check task start +2025-09-24 00:28:48,056 INFO Connection check task start -2025-09-23 00:28:45,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:48,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:45,831 INFO Out dated connection ,size=0 +2025-09-24 00:28:48,057 INFO Out dated connection ,size=0 -2025-09-23 00:28:45,831 INFO Connection check task end +2025-09-24 00:28:48,057 INFO Connection check task end -2025-09-23 00:28:47,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:48,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:48,832 INFO Connection check task start +2025-09-24 00:28:51,057 INFO Connection check task start -2025-09-23 00:28:48,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:51,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:48,832 INFO Out dated connection ,size=0 +2025-09-24 00:28:51,057 INFO Out dated connection ,size=0 -2025-09-23 00:28:48,832 INFO Connection check task end +2025-09-24 00:28:51,057 INFO Connection check task end -2025-09-23 00:28:50,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:51,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:51,833 INFO Connection check task start +2025-09-24 00:28:54,058 INFO Connection check task start -2025-09-23 00:28:51,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:54,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:51,833 INFO Out dated connection ,size=0 +2025-09-24 00:28:54,059 INFO Out dated connection ,size=0 -2025-09-23 00:28:51,833 INFO Connection check task end +2025-09-24 00:28:54,059 INFO Connection check task end -2025-09-23 00:28:53,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:54,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:54,834 INFO Connection check task start +2025-09-24 00:28:57,060 INFO Connection check task start -2025-09-23 00:28:54,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:28:57,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:54,834 INFO Out dated connection ,size=0 +2025-09-24 00:28:57,060 INFO Out dated connection ,size=0 -2025-09-23 00:28:54,834 INFO Connection check task end +2025-09-24 00:28:57,060 INFO Connection check task end -2025-09-23 00:28:56,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:28:57,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:28:57,835 INFO Connection check task start +2025-09-24 00:29:00,060 INFO Connection check task start -2025-09-23 00:28:57,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:00,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:28:57,835 INFO Out dated connection ,size=0 +2025-09-24 00:29:00,061 INFO Out dated connection ,size=0 -2025-09-23 00:28:57,835 INFO Connection check task end +2025-09-24 00:29:00,061 INFO Connection check task end -2025-09-23 00:28:59,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:00,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:00,837 INFO Connection check task start +2025-09-24 00:29:03,062 INFO Connection check task start -2025-09-23 00:29:00,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:03,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:00,837 INFO Out dated connection ,size=0 +2025-09-24 00:29:03,062 INFO Out dated connection ,size=0 -2025-09-23 00:29:00,837 INFO Connection check task end +2025-09-24 00:29:03,062 INFO Connection check task end -2025-09-23 00:29:02,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:03,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:03,837 INFO Connection check task start +2025-09-24 00:29:06,063 INFO Connection check task start -2025-09-23 00:29:03,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:06,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:03,837 INFO Out dated connection ,size=0 +2025-09-24 00:29:06,063 INFO Out dated connection ,size=0 -2025-09-23 00:29:03,837 INFO Connection check task end +2025-09-24 00:29:06,064 INFO Connection check task end -2025-09-23 00:29:05,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:06,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:06,838 INFO Connection check task start +2025-09-24 00:29:09,065 INFO Connection check task start -2025-09-23 00:29:06,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:09,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:06,838 INFO Out dated connection ,size=0 +2025-09-24 00:29:09,066 INFO Out dated connection ,size=0 -2025-09-23 00:29:06,838 INFO Connection check task end +2025-09-24 00:29:09,066 INFO Connection check task end -2025-09-23 00:29:08,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:09,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:09,839 INFO Connection check task start +2025-09-24 00:29:12,067 INFO Connection check task start -2025-09-23 00:29:09,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:12,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:09,839 INFO Out dated connection ,size=0 +2025-09-24 00:29:12,067 INFO Out dated connection ,size=0 -2025-09-23 00:29:09,839 INFO Connection check task end +2025-09-24 00:29:12,067 INFO Connection check task end -2025-09-23 00:29:11,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:12,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:12,840 INFO Connection check task start +2025-09-24 00:29:15,068 INFO Connection check task start -2025-09-23 00:29:12,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:15,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:12,840 INFO Out dated connection ,size=0 +2025-09-24 00:29:15,068 INFO Out dated connection ,size=0 -2025-09-23 00:29:12,840 INFO Connection check task end +2025-09-24 00:29:15,068 INFO Connection check task end -2025-09-23 00:29:14,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:15,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:15,841 INFO Connection check task start +2025-09-24 00:29:18,069 INFO Connection check task start -2025-09-23 00:29:15,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:18,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:15,841 INFO Out dated connection ,size=0 +2025-09-24 00:29:18,069 INFO Out dated connection ,size=0 -2025-09-23 00:29:15,841 INFO Connection check task end +2025-09-24 00:29:18,069 INFO Connection check task end -2025-09-23 00:29:17,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:18,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:18,842 INFO Connection check task start +2025-09-24 00:29:21,070 INFO Connection check task start -2025-09-23 00:29:18,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:21,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:18,842 INFO Out dated connection ,size=0 +2025-09-24 00:29:21,071 INFO Out dated connection ,size=0 -2025-09-23 00:29:18,842 INFO Connection check task end +2025-09-24 00:29:21,071 INFO Connection check task end -2025-09-23 00:29:20,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:21,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:21,843 INFO Connection check task start +2025-09-24 00:29:24,071 INFO Connection check task start -2025-09-23 00:29:21,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:24,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:21,843 INFO Out dated connection ,size=0 +2025-09-24 00:29:24,071 INFO Out dated connection ,size=0 -2025-09-23 00:29:21,843 INFO Connection check task end +2025-09-24 00:29:24,072 INFO Connection check task end -2025-09-23 00:29:23,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:24,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:24,843 INFO Connection check task start +2025-09-24 00:29:27,073 INFO Connection check task start -2025-09-23 00:29:24,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:27,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:24,844 INFO Out dated connection ,size=0 +2025-09-24 00:29:27,073 INFO Out dated connection ,size=0 -2025-09-23 00:29:24,844 INFO Connection check task end +2025-09-24 00:29:27,073 INFO Connection check task end -2025-09-23 00:29:26,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:27,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:27,844 INFO Connection check task start +2025-09-24 00:29:30,073 INFO Connection check task start -2025-09-23 00:29:27,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:30,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:27,844 INFO Out dated connection ,size=0 +2025-09-24 00:29:30,074 INFO Out dated connection ,size=0 -2025-09-23 00:29:27,844 INFO Connection check task end +2025-09-24 00:29:30,074 INFO Connection check task end -2025-09-23 00:29:29,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:30,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:30,845 INFO Connection check task start +2025-09-24 00:29:33,074 INFO Connection check task start -2025-09-23 00:29:30,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:33,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:30,845 INFO Out dated connection ,size=0 +2025-09-24 00:29:33,075 INFO Out dated connection ,size=0 -2025-09-23 00:29:30,845 INFO Connection check task end +2025-09-24 00:29:33,075 INFO Connection check task end -2025-09-23 00:29:32,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:33,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:33,846 INFO Connection check task start +2025-09-24 00:29:36,075 INFO Connection check task start -2025-09-23 00:29:33,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:36,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:33,846 INFO Out dated connection ,size=0 +2025-09-24 00:29:36,075 INFO Out dated connection ,size=0 -2025-09-23 00:29:33,847 INFO Connection check task end +2025-09-24 00:29:36,075 INFO Connection check task end -2025-09-23 00:29:35,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:36,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:36,848 INFO Connection check task start +2025-09-24 00:29:39,075 INFO Connection check task start -2025-09-23 00:29:36,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:39,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:36,848 INFO Out dated connection ,size=0 +2025-09-24 00:29:39,076 INFO Out dated connection ,size=0 -2025-09-23 00:29:36,848 INFO Connection check task end +2025-09-24 00:29:39,076 INFO Connection check task end -2025-09-23 00:29:38,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:39,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:39,849 INFO Connection check task start +2025-09-24 00:29:42,076 INFO Connection check task start -2025-09-23 00:29:39,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:42,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:39,850 INFO Out dated connection ,size=0 +2025-09-24 00:29:42,077 INFO Out dated connection ,size=0 -2025-09-23 00:29:39,850 INFO Connection check task end +2025-09-24 00:29:42,077 INFO Connection check task end -2025-09-23 00:29:41,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:42,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:42,851 INFO Connection check task start +2025-09-24 00:29:45,078 INFO Connection check task start -2025-09-23 00:29:42,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:45,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:42,851 INFO Out dated connection ,size=0 +2025-09-24 00:29:45,078 INFO Out dated connection ,size=0 -2025-09-23 00:29:42,851 INFO Connection check task end +2025-09-24 00:29:45,078 INFO Connection check task end -2025-09-23 00:29:44,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:45,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:45,852 INFO Connection check task start +2025-09-24 00:29:48,078 INFO Connection check task start -2025-09-23 00:29:45,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:48,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:45,852 INFO Out dated connection ,size=0 +2025-09-24 00:29:48,078 INFO Out dated connection ,size=0 -2025-09-23 00:29:45,852 INFO Connection check task end +2025-09-24 00:29:48,078 INFO Connection check task end -2025-09-23 00:29:47,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:48,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:48,852 INFO Connection check task start +2025-09-24 00:29:51,079 INFO Connection check task start -2025-09-23 00:29:48,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:51,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:48,853 INFO Out dated connection ,size=0 +2025-09-24 00:29:51,079 INFO Out dated connection ,size=0 -2025-09-23 00:29:48,853 INFO Connection check task end +2025-09-24 00:29:51,080 INFO Connection check task end -2025-09-23 00:29:50,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:51,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:51,853 INFO Connection check task start +2025-09-24 00:29:54,081 INFO Connection check task start -2025-09-23 00:29:51,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:54,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:51,853 INFO Out dated connection ,size=0 +2025-09-24 00:29:54,081 INFO Out dated connection ,size=0 -2025-09-23 00:29:51,853 INFO Connection check task end +2025-09-24 00:29:54,081 INFO Connection check task end -2025-09-23 00:29:53,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:54,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:54,854 INFO Connection check task start +2025-09-24 00:29:57,082 INFO Connection check task start -2025-09-23 00:29:54,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:29:57,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:54,854 INFO Out dated connection ,size=0 +2025-09-24 00:29:57,083 INFO Out dated connection ,size=0 -2025-09-23 00:29:54,854 INFO Connection check task end +2025-09-24 00:29:57,083 INFO Connection check task end -2025-09-23 00:29:56,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:29:57,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:29:57,855 INFO Connection check task start +2025-09-24 00:30:00,083 INFO Connection check task start -2025-09-23 00:29:57,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:00,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:29:57,856 INFO Out dated connection ,size=0 +2025-09-24 00:30:00,083 INFO Out dated connection ,size=0 -2025-09-23 00:29:57,856 INFO Connection check task end +2025-09-24 00:30:00,083 INFO Connection check task end -2025-09-23 00:29:59,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:00,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:00,856 INFO Connection check task start +2025-09-24 00:30:03,084 INFO Connection check task start -2025-09-23 00:30:00,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:03,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:00,856 INFO Out dated connection ,size=0 +2025-09-24 00:30:03,084 INFO Out dated connection ,size=0 -2025-09-23 00:30:00,856 INFO Connection check task end +2025-09-24 00:30:03,085 INFO Connection check task end -2025-09-23 00:30:02,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:03,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:03,857 INFO Connection check task start +2025-09-24 00:30:06,085 INFO Connection check task start -2025-09-23 00:30:03,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:06,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:03,857 INFO Out dated connection ,size=0 +2025-09-24 00:30:06,086 INFO Out dated connection ,size=0 -2025-09-23 00:30:03,857 INFO Connection check task end +2025-09-24 00:30:06,086 INFO Connection check task end -2025-09-23 00:30:05,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:06,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:06,858 INFO Connection check task start +2025-09-24 00:30:09,086 INFO Connection check task start -2025-09-23 00:30:06,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:09,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:06,858 INFO Out dated connection ,size=0 +2025-09-24 00:30:09,086 INFO Out dated connection ,size=0 -2025-09-23 00:30:06,858 INFO Connection check task end +2025-09-24 00:30:09,086 INFO Connection check task end -2025-09-23 00:30:08,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:09,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:09,859 INFO Connection check task start +2025-09-24 00:30:12,087 INFO Connection check task start -2025-09-23 00:30:09,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:12,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:09,859 INFO Out dated connection ,size=0 +2025-09-24 00:30:12,087 INFO Out dated connection ,size=0 -2025-09-23 00:30:09,859 INFO Connection check task end +2025-09-24 00:30:12,087 INFO Connection check task end -2025-09-23 00:30:11,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:12,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:12,860 INFO Connection check task start +2025-09-24 00:30:15,087 INFO Connection check task start -2025-09-23 00:30:12,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:15,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:12,860 INFO Out dated connection ,size=0 +2025-09-24 00:30:15,088 INFO Out dated connection ,size=0 -2025-09-23 00:30:12,860 INFO Connection check task end +2025-09-24 00:30:15,088 INFO Connection check task end -2025-09-23 00:30:14,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:15,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:15,861 INFO Connection check task start +2025-09-24 00:30:18,088 INFO Connection check task start -2025-09-23 00:30:15,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:18,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:15,861 INFO Out dated connection ,size=0 +2025-09-24 00:30:18,089 INFO Out dated connection ,size=0 -2025-09-23 00:30:15,861 INFO Connection check task end +2025-09-24 00:30:18,089 INFO Connection check task end -2025-09-23 00:30:17,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:18,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:18,862 INFO Connection check task start +2025-09-24 00:30:21,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:18,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:21,090 INFO Connection check task start -2025-09-23 00:30:18,862 INFO Out dated connection ,size=0 +2025-09-24 00:30:21,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:18,862 INFO Connection check task end +2025-09-24 00:30:21,090 INFO Out dated connection ,size=0 -2025-09-23 00:30:20,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:21,090 INFO Connection check task end -2025-09-23 00:30:21,862 INFO Connection check task start +2025-09-24 00:30:24,091 INFO Connection check task start -2025-09-23 00:30:21,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:24,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:21,862 INFO Out dated connection ,size=0 +2025-09-24 00:30:24,091 INFO Out dated connection ,size=0 -2025-09-23 00:30:21,862 INFO Connection check task end +2025-09-24 00:30:24,091 INFO Connection check task end -2025-09-23 00:30:23,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:24,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:24,863 INFO Connection check task start +2025-09-24 00:30:27,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:24,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:27,092 INFO Connection check task start -2025-09-23 00:30:24,863 INFO Out dated connection ,size=0 +2025-09-24 00:30:27,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:24,863 INFO Connection check task end +2025-09-24 00:30:27,092 INFO Out dated connection ,size=0 -2025-09-23 00:30:26,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:27,092 INFO Connection check task end -2025-09-23 00:30:27,864 INFO Connection check task start +2025-09-24 00:30:30,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:27,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:30,093 INFO Connection check task start -2025-09-23 00:30:27,865 INFO Out dated connection ,size=0 +2025-09-24 00:30:30,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:27,865 INFO Connection check task end +2025-09-24 00:30:30,093 INFO Out dated connection ,size=0 -2025-09-23 00:30:29,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:30,093 INFO Connection check task end -2025-09-23 00:30:30,865 INFO Connection check task start +2025-09-24 00:30:33,099 INFO Connection check task start -2025-09-23 00:30:30,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:33,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:30,865 INFO Out dated connection ,size=0 +2025-09-24 00:30:33,099 INFO Out dated connection ,size=0 -2025-09-23 00:30:30,865 INFO Connection check task end +2025-09-24 00:30:33,099 INFO Connection check task end -2025-09-23 00:30:32,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:33,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:33,866 INFO Connection check task start +2025-09-24 00:30:36,100 INFO Connection check task start -2025-09-23 00:30:33,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:36,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:33,866 INFO Out dated connection ,size=0 +2025-09-24 00:30:36,100 INFO Out dated connection ,size=0 -2025-09-23 00:30:33,866 INFO Connection check task end +2025-09-24 00:30:36,100 INFO Connection check task end -2025-09-23 00:30:35,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:36,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:36,867 INFO Connection check task start +2025-09-24 00:30:39,102 INFO Connection check task start -2025-09-23 00:30:36,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:39,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:36,867 INFO Out dated connection ,size=0 +2025-09-24 00:30:39,103 INFO Out dated connection ,size=0 -2025-09-23 00:30:36,867 INFO Connection check task end +2025-09-24 00:30:39,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:38,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:39,103 INFO Connection check task end -2025-09-23 00:30:39,867 INFO Connection check task start +2025-09-24 00:30:42,103 INFO Connection check task start -2025-09-23 00:30:39,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:42,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:39,868 INFO Out dated connection ,size=0 +2025-09-24 00:30:42,104 INFO Out dated connection ,size=0 -2025-09-23 00:30:39,868 INFO Connection check task end +2025-09-24 00:30:42,104 INFO Connection check task end -2025-09-23 00:30:41,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:42,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:42,868 INFO Connection check task start +2025-09-24 00:30:45,104 INFO Connection check task start -2025-09-23 00:30:42,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:45,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:42,868 INFO Out dated connection ,size=0 +2025-09-24 00:30:45,104 INFO Out dated connection ,size=0 -2025-09-23 00:30:42,868 INFO Connection check task end +2025-09-24 00:30:45,104 INFO Connection check task end -2025-09-23 00:30:44,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:45,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:45,869 INFO Connection check task start +2025-09-24 00:30:48,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:45,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:48,105 INFO Connection check task start -2025-09-23 00:30:45,869 INFO Out dated connection ,size=0 +2025-09-24 00:30:48,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:45,869 INFO Connection check task end +2025-09-24 00:30:48,105 INFO Out dated connection ,size=0 -2025-09-23 00:30:47,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:48,105 INFO Connection check task end -2025-09-23 00:30:48,870 INFO Connection check task start +2025-09-24 00:30:51,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:48,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:51,105 INFO Connection check task start -2025-09-23 00:30:48,870 INFO Out dated connection ,size=0 +2025-09-24 00:30:51,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:48,870 INFO Connection check task end +2025-09-24 00:30:51,105 INFO Out dated connection ,size=0 -2025-09-23 00:30:50,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:51,105 INFO Connection check task end -2025-09-23 00:30:51,871 INFO Connection check task start +2025-09-24 00:30:54,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:51,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:54,106 INFO Connection check task start -2025-09-23 00:30:51,871 INFO Out dated connection ,size=0 +2025-09-24 00:30:54,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:51,871 INFO Connection check task end +2025-09-24 00:30:54,106 INFO Out dated connection ,size=0 -2025-09-23 00:30:53,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:54,106 INFO Connection check task end -2025-09-23 00:30:54,872 INFO Connection check task start +2025-09-24 00:30:57,106 INFO Connection check task start -2025-09-23 00:30:54,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:30:57,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:54,872 INFO Out dated connection ,size=0 +2025-09-24 00:30:57,106 INFO Out dated connection ,size=0 -2025-09-23 00:30:54,872 INFO Connection check task end +2025-09-24 00:30:57,106 INFO Connection check task end -2025-09-23 00:30:56,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:30:57,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:57,872 INFO Connection check task start +2025-09-24 00:31:00,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:30:57,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:00,108 INFO Connection check task start -2025-09-23 00:30:57,872 INFO Out dated connection ,size=0 +2025-09-24 00:31:00,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:30:57,872 INFO Connection check task end +2025-09-24 00:31:00,108 INFO Out dated connection ,size=0 -2025-09-23 00:30:59,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:00,108 INFO Connection check task end -2025-09-23 00:31:00,873 INFO Connection check task start +2025-09-24 00:31:03,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:00,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:03,108 INFO Connection check task start -2025-09-23 00:31:00,873 INFO Out dated connection ,size=0 +2025-09-24 00:31:03,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:00,873 INFO Connection check task end +2025-09-24 00:31:03,108 INFO Out dated connection ,size=0 -2025-09-23 00:31:02,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:03,108 INFO Connection check task end -2025-09-23 00:31:03,874 INFO Connection check task start +2025-09-24 00:31:06,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:03,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:06,109 INFO Connection check task start -2025-09-23 00:31:03,874 INFO Out dated connection ,size=0 +2025-09-24 00:31:06,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:03,874 INFO Connection check task end +2025-09-24 00:31:06,109 INFO Out dated connection ,size=0 -2025-09-23 00:31:05,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:06,109 INFO Connection check task end -2025-09-23 00:31:06,874 INFO Connection check task start +2025-09-24 00:31:09,110 INFO Connection check task start -2025-09-23 00:31:06,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:09,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:06,875 INFO Out dated connection ,size=0 +2025-09-24 00:31:09,110 INFO Out dated connection ,size=0 -2025-09-23 00:31:06,875 INFO Connection check task end +2025-09-24 00:31:09,110 INFO Connection check task end -2025-09-23 00:31:08,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:09,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:09,875 INFO Connection check task start +2025-09-24 00:31:12,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:09,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:12,111 INFO Connection check task start -2025-09-23 00:31:09,875 INFO Out dated connection ,size=0 +2025-09-24 00:31:12,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:09,875 INFO Connection check task end +2025-09-24 00:31:12,111 INFO Out dated connection ,size=0 -2025-09-23 00:31:11,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:12,111 INFO Connection check task end -2025-09-23 00:31:12,876 INFO Connection check task start +2025-09-24 00:31:15,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:12,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:15,112 INFO Connection check task start -2025-09-23 00:31:12,877 INFO Out dated connection ,size=0 +2025-09-24 00:31:15,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:12,877 INFO Connection check task end +2025-09-24 00:31:15,112 INFO Out dated connection ,size=0 -2025-09-23 00:31:14,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:15,112 INFO Connection check task end -2025-09-23 00:31:15,877 INFO Connection check task start +2025-09-24 00:31:18,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:15,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:18,113 INFO Connection check task start -2025-09-23 00:31:15,877 INFO Out dated connection ,size=0 +2025-09-24 00:31:18,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:15,878 INFO Connection check task end +2025-09-24 00:31:18,113 INFO Out dated connection ,size=0 -2025-09-23 00:31:17,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:18,113 INFO Connection check task end -2025-09-23 00:31:18,878 INFO Connection check task start +2025-09-24 00:31:21,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:18,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:21,114 INFO Connection check task start -2025-09-23 00:31:18,878 INFO Out dated connection ,size=0 +2025-09-24 00:31:21,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:18,878 INFO Connection check task end +2025-09-24 00:31:21,114 INFO Out dated connection ,size=0 -2025-09-23 00:31:20,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:21,114 INFO Connection check task end -2025-09-23 00:31:21,879 INFO Connection check task start +2025-09-24 00:31:24,117 INFO Connection check task start -2025-09-23 00:31:21,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:24,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:21,879 INFO Out dated connection ,size=0 +2025-09-24 00:31:24,117 INFO Out dated connection ,size=0 -2025-09-23 00:31:21,879 INFO Connection check task end +2025-09-24 00:31:24,117 INFO Connection check task end -2025-09-23 00:31:23,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:24,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:24,880 INFO Connection check task start +2025-09-24 00:31:27,117 INFO Connection check task start -2025-09-23 00:31:24,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:27,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:24,880 INFO Out dated connection ,size=0 +2025-09-24 00:31:27,117 INFO Out dated connection ,size=0 -2025-09-23 00:31:24,880 INFO Connection check task end +2025-09-24 00:31:27,117 INFO Connection check task end -2025-09-23 00:31:26,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:27,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:27,880 INFO Connection check task start +2025-09-24 00:31:30,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:27,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:30,118 INFO Connection check task start -2025-09-23 00:31:27,881 INFO Out dated connection ,size=0 +2025-09-24 00:31:30,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:27,881 INFO Connection check task end +2025-09-24 00:31:30,119 INFO Out dated connection ,size=0 -2025-09-23 00:31:29,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:30,119 INFO Connection check task end -2025-09-23 00:31:30,882 INFO Connection check task start +2025-09-24 00:31:33,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:30,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:33,119 INFO Connection check task start -2025-09-23 00:31:30,882 INFO Out dated connection ,size=0 +2025-09-24 00:31:33,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:30,882 INFO Connection check task end +2025-09-24 00:31:33,119 INFO Out dated connection ,size=0 -2025-09-23 00:31:32,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:33,119 INFO Connection check task end -2025-09-23 00:31:33,883 INFO Connection check task start +2025-09-24 00:31:36,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:33,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:36,120 INFO Connection check task start -2025-09-23 00:31:33,884 INFO Out dated connection ,size=0 +2025-09-24 00:31:36,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:33,884 INFO Connection check task end +2025-09-24 00:31:36,120 INFO Out dated connection ,size=0 -2025-09-23 00:31:35,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:36,120 INFO Connection check task end -2025-09-23 00:31:36,885 INFO Connection check task start +2025-09-24 00:31:39,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:36,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:39,121 INFO Connection check task start -2025-09-23 00:31:36,885 INFO Out dated connection ,size=0 +2025-09-24 00:31:39,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:36,885 INFO Connection check task end +2025-09-24 00:31:39,121 INFO Out dated connection ,size=0 -2025-09-23 00:31:38,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:39,121 INFO Connection check task end -2025-09-23 00:31:39,885 INFO Connection check task start +2025-09-24 00:31:42,122 INFO Connection check task start -2025-09-23 00:31:39,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:42,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:39,886 INFO Out dated connection ,size=0 +2025-09-24 00:31:42,122 INFO Out dated connection ,size=0 -2025-09-23 00:31:39,886 INFO Connection check task end +2025-09-24 00:31:42,122 INFO Connection check task end -2025-09-23 00:31:41,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:42,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:42,887 INFO Connection check task start +2025-09-24 00:31:45,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:42,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:45,123 INFO Connection check task start -2025-09-23 00:31:42,887 INFO Out dated connection ,size=0 +2025-09-24 00:31:45,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:42,887 INFO Connection check task end +2025-09-24 00:31:45,123 INFO Out dated connection ,size=0 -2025-09-23 00:31:44,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:45,124 INFO Connection check task end -2025-09-23 00:31:45,887 INFO Connection check task start +2025-09-24 00:31:48,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:45,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:48,124 INFO Connection check task start -2025-09-23 00:31:45,888 INFO Out dated connection ,size=0 +2025-09-24 00:31:48,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:45,888 INFO Connection check task end +2025-09-24 00:31:48,125 INFO Out dated connection ,size=0 -2025-09-23 00:31:47,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:48,125 INFO Connection check task end -2025-09-23 00:31:48,888 INFO Connection check task start +2025-09-24 00:31:51,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:48,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:51,125 INFO Connection check task start -2025-09-23 00:31:48,888 INFO Out dated connection ,size=0 +2025-09-24 00:31:51,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:48,888 INFO Connection check task end +2025-09-24 00:31:51,125 INFO Out dated connection ,size=0 -2025-09-23 00:31:50,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:51,125 INFO Connection check task end -2025-09-23 00:31:51,889 INFO Connection check task start +2025-09-24 00:31:54,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:51,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:54,126 INFO Connection check task start -2025-09-23 00:31:51,889 INFO Out dated connection ,size=0 +2025-09-24 00:31:54,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:51,889 INFO Connection check task end +2025-09-24 00:31:54,126 INFO Out dated connection ,size=0 -2025-09-23 00:31:53,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:54,126 INFO Connection check task end -2025-09-23 00:31:54,890 INFO Connection check task start +2025-09-24 00:31:57,127 INFO Connection check task start -2025-09-23 00:31:54,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:31:57,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:54,890 INFO Out dated connection ,size=0 +2025-09-24 00:31:57,127 INFO Out dated connection ,size=0 -2025-09-23 00:31:54,890 INFO Connection check task end +2025-09-24 00:31:57,127 INFO Connection check task end -2025-09-23 00:31:56,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:31:57,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:57,892 INFO Connection check task start +2025-09-24 00:32:00,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:31:57,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:00,129 INFO Connection check task start -2025-09-23 00:31:57,892 INFO Out dated connection ,size=0 +2025-09-24 00:32:00,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:31:57,892 INFO Connection check task end +2025-09-24 00:32:00,129 INFO Out dated connection ,size=0 -2025-09-23 00:31:59,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:00,129 INFO Connection check task end -2025-09-23 00:32:00,892 INFO Connection check task start +2025-09-24 00:32:03,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:00,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:03,130 INFO Connection check task start -2025-09-23 00:32:00,893 INFO Out dated connection ,size=0 +2025-09-24 00:32:03,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:00,893 INFO Connection check task end +2025-09-24 00:32:03,130 INFO Out dated connection ,size=0 -2025-09-23 00:32:02,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:03,130 INFO Connection check task end -2025-09-23 00:32:03,893 INFO Connection check task start +2025-09-24 00:32:06,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:03,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:06,130 INFO Connection check task start -2025-09-23 00:32:03,893 INFO Out dated connection ,size=0 +2025-09-24 00:32:06,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:03,893 INFO Connection check task end +2025-09-24 00:32:06,131 INFO Out dated connection ,size=0 -2025-09-23 00:32:05,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:06,131 INFO Connection check task end -2025-09-23 00:32:06,893 INFO Connection check task start +2025-09-24 00:32:09,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:06,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:09,131 INFO Connection check task start -2025-09-23 00:32:06,894 INFO Out dated connection ,size=0 +2025-09-24 00:32:09,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:06,894 INFO Connection check task end +2025-09-24 00:32:09,132 INFO Out dated connection ,size=0 -2025-09-23 00:32:08,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:09,132 INFO Connection check task end -2025-09-23 00:32:09,895 INFO Connection check task start +2025-09-24 00:32:12,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:09,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:12,132 INFO Connection check task start -2025-09-23 00:32:09,895 INFO Out dated connection ,size=0 +2025-09-24 00:32:12,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:09,895 INFO Connection check task end +2025-09-24 00:32:12,132 INFO Out dated connection ,size=0 -2025-09-23 00:32:11,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:12,132 INFO Connection check task end -2025-09-23 00:32:12,896 INFO Connection check task start +2025-09-24 00:32:15,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:12,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:15,132 INFO Connection check task start -2025-09-23 00:32:12,897 INFO Out dated connection ,size=0 +2025-09-24 00:32:15,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:12,897 INFO Connection check task end +2025-09-24 00:32:15,133 INFO Out dated connection ,size=0 -2025-09-23 00:32:14,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:15,133 INFO Connection check task end -2025-09-23 00:32:15,898 INFO Connection check task start +2025-09-24 00:32:18,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:15,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:18,133 INFO Connection check task start -2025-09-23 00:32:15,898 INFO Out dated connection ,size=0 +2025-09-24 00:32:18,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:15,898 INFO Connection check task end +2025-09-24 00:32:18,133 INFO Out dated connection ,size=0 -2025-09-23 00:32:17,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:18,133 INFO Connection check task end -2025-09-23 00:32:18,900 INFO Connection check task start +2025-09-24 00:32:21,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:18,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:21,134 INFO Connection check task start -2025-09-23 00:32:18,900 INFO Out dated connection ,size=0 +2025-09-24 00:32:21,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:18,900 INFO Connection check task end +2025-09-24 00:32:21,134 INFO Out dated connection ,size=0 -2025-09-23 00:32:20,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:21,134 INFO Connection check task end -2025-09-23 00:32:21,900 INFO Connection check task start +2025-09-24 00:32:24,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:21,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:24,135 INFO Connection check task start -2025-09-23 00:32:21,900 INFO Out dated connection ,size=0 +2025-09-24 00:32:24,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:21,900 INFO Connection check task end +2025-09-24 00:32:24,136 INFO Out dated connection ,size=0 -2025-09-23 00:32:23,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:24,136 INFO Connection check task end -2025-09-23 00:32:24,901 INFO Connection check task start +2025-09-24 00:32:27,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:24,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:27,136 INFO Connection check task start -2025-09-23 00:32:24,901 INFO Out dated connection ,size=0 +2025-09-24 00:32:27,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:24,901 INFO Connection check task end +2025-09-24 00:32:27,137 INFO Out dated connection ,size=0 -2025-09-23 00:32:26,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:27,137 INFO Connection check task end -2025-09-23 00:32:27,903 INFO Connection check task start +2025-09-24 00:32:30,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:27,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:30,138 INFO Connection check task start -2025-09-23 00:32:27,903 INFO Out dated connection ,size=0 +2025-09-24 00:32:30,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:27,903 INFO Connection check task end +2025-09-24 00:32:30,138 INFO Out dated connection ,size=0 -2025-09-23 00:32:29,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:30,138 INFO Connection check task end -2025-09-23 00:32:30,904 INFO Connection check task start +2025-09-24 00:32:33,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:30,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:33,139 INFO Connection check task start -2025-09-23 00:32:30,905 INFO Out dated connection ,size=0 +2025-09-24 00:32:33,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:30,905 INFO Connection check task end +2025-09-24 00:32:33,139 INFO Out dated connection ,size=0 -2025-09-23 00:32:32,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:33,139 INFO Connection check task end -2025-09-23 00:32:33,905 INFO Connection check task start +2025-09-24 00:32:36,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:33,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:36,140 INFO Connection check task start -2025-09-23 00:32:33,906 INFO Out dated connection ,size=0 +2025-09-24 00:32:36,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:33,906 INFO Connection check task end +2025-09-24 00:32:36,140 INFO Out dated connection ,size=0 -2025-09-23 00:32:35,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:36,140 INFO Connection check task end -2025-09-23 00:32:36,906 INFO Connection check task start +2025-09-24 00:32:39,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:36,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:39,141 INFO Connection check task start -2025-09-23 00:32:36,906 INFO Out dated connection ,size=0 +2025-09-24 00:32:39,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:36,906 INFO Connection check task end +2025-09-24 00:32:39,141 INFO Out dated connection ,size=0 -2025-09-23 00:32:38,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:39,141 INFO Connection check task end -2025-09-23 00:32:39,907 INFO Connection check task start +2025-09-24 00:32:42,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:39,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:42,142 INFO Connection check task start -2025-09-23 00:32:39,907 INFO Out dated connection ,size=0 +2025-09-24 00:32:42,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:39,907 INFO Connection check task end +2025-09-24 00:32:42,142 INFO Out dated connection ,size=0 -2025-09-23 00:32:41,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:42,142 INFO Connection check task end -2025-09-23 00:32:42,907 INFO Connection check task start +2025-09-24 00:32:45,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:42,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:45,143 INFO Connection check task start -2025-09-23 00:32:42,907 INFO Out dated connection ,size=0 +2025-09-24 00:32:45,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:42,907 INFO Connection check task end +2025-09-24 00:32:45,143 INFO Out dated connection ,size=0 -2025-09-23 00:32:44,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:45,143 INFO Connection check task end -2025-09-23 00:32:45,908 INFO Connection check task start +2025-09-24 00:32:48,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:45,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:48,144 INFO Connection check task start -2025-09-23 00:32:45,908 INFO Out dated connection ,size=0 +2025-09-24 00:32:48,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:45,908 INFO Connection check task end +2025-09-24 00:32:48,144 INFO Out dated connection ,size=0 -2025-09-23 00:32:47,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:48,145 INFO Connection check task end -2025-09-23 00:32:48,908 INFO Connection check task start +2025-09-24 00:32:51,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:48,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:51,146 INFO Connection check task start -2025-09-23 00:32:48,909 INFO Out dated connection ,size=0 +2025-09-24 00:32:51,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:48,909 INFO Connection check task end +2025-09-24 00:32:51,146 INFO Out dated connection ,size=0 -2025-09-23 00:32:50,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:51,146 INFO Connection check task end -2025-09-23 00:32:51,909 INFO Connection check task start +2025-09-24 00:32:54,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:51,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:54,147 INFO Connection check task start -2025-09-23 00:32:51,909 INFO Out dated connection ,size=0 +2025-09-24 00:32:54,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:51,909 INFO Connection check task end +2025-09-24 00:32:54,147 INFO Out dated connection ,size=0 -2025-09-23 00:32:53,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:54,148 INFO Connection check task end -2025-09-23 00:32:54,910 INFO Connection check task start +2025-09-24 00:32:57,148 INFO Connection check task start -2025-09-23 00:32:54,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:32:57,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:54,910 INFO Out dated connection ,size=0 +2025-09-24 00:32:57,149 INFO Out dated connection ,size=0 -2025-09-23 00:32:54,910 INFO Connection check task end +2025-09-24 00:32:57,149 INFO Connection check task end -2025-09-23 00:32:56,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:32:57,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:32:57,910 INFO Connection check task start +2025-09-24 00:33:00,149 INFO Connection check task start -2025-09-23 00:32:57,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:00,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:32:57,911 INFO Out dated connection ,size=0 +2025-09-24 00:33:00,150 INFO Out dated connection ,size=0 -2025-09-23 00:32:57,911 INFO Connection check task end +2025-09-24 00:33:00,150 INFO Connection check task end -2025-09-23 00:32:59,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:00,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:00,912 INFO Connection check task start +2025-09-24 00:33:03,150 INFO Connection check task start -2025-09-23 00:33:00,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:03,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:00,912 INFO Out dated connection ,size=0 +2025-09-24 00:33:03,151 INFO Out dated connection ,size=0 -2025-09-23 00:33:00,912 INFO Connection check task end +2025-09-24 00:33:03,151 INFO Connection check task end -2025-09-23 00:33:02,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:03,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:03,914 INFO Connection check task start +2025-09-24 00:33:06,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:03,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:06,151 INFO Connection check task start -2025-09-23 00:33:03,914 INFO Out dated connection ,size=0 +2025-09-24 00:33:06,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:03,914 INFO Connection check task end +2025-09-24 00:33:06,151 INFO Out dated connection ,size=0 -2025-09-23 00:33:05,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:06,151 INFO Connection check task end -2025-09-23 00:33:06,916 INFO Connection check task start +2025-09-24 00:33:09,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:06,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:09,152 INFO Connection check task start -2025-09-23 00:33:06,916 INFO Out dated connection ,size=0 +2025-09-24 00:33:09,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:06,916 INFO Connection check task end +2025-09-24 00:33:09,153 INFO Out dated connection ,size=0 -2025-09-23 00:33:08,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:09,153 INFO Connection check task end -2025-09-23 00:33:09,917 INFO Connection check task start +2025-09-24 00:33:12,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:09,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:12,154 INFO Connection check task start -2025-09-23 00:33:09,917 INFO Out dated connection ,size=0 +2025-09-24 00:33:12,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:09,917 INFO Connection check task end +2025-09-24 00:33:12,154 INFO Out dated connection ,size=0 -2025-09-23 00:33:11,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:12,154 INFO Connection check task end -2025-09-23 00:33:12,917 INFO Connection check task start +2025-09-24 00:33:15,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:12,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:15,154 INFO Connection check task start -2025-09-23 00:33:12,918 INFO Out dated connection ,size=0 +2025-09-24 00:33:15,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:12,918 INFO Connection check task end +2025-09-24 00:33:15,154 INFO Out dated connection ,size=0 -2025-09-23 00:33:14,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:15,155 INFO Connection check task end -2025-09-23 00:33:15,918 INFO Connection check task start +2025-09-24 00:33:18,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:15,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:18,155 INFO Connection check task start -2025-09-23 00:33:15,918 INFO Out dated connection ,size=0 +2025-09-24 00:33:18,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:15,918 INFO Connection check task end +2025-09-24 00:33:18,155 INFO Out dated connection ,size=0 -2025-09-23 00:33:17,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:18,155 INFO Connection check task end -2025-09-23 00:33:18,919 INFO Connection check task start +2025-09-24 00:33:21,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:18,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:21,156 INFO Connection check task start -2025-09-23 00:33:18,919 INFO Out dated connection ,size=0 +2025-09-24 00:33:21,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:18,919 INFO Connection check task end +2025-09-24 00:33:21,156 INFO Out dated connection ,size=0 -2025-09-23 00:33:20,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:21,156 INFO Connection check task end -2025-09-23 00:33:21,920 INFO Connection check task start +2025-09-24 00:33:24,157 INFO Connection check task start -2025-09-23 00:33:21,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:24,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:21,921 INFO Out dated connection ,size=0 +2025-09-24 00:33:24,157 INFO Out dated connection ,size=0 -2025-09-23 00:33:21,921 INFO Connection check task end +2025-09-24 00:33:24,157 INFO Connection check task end -2025-09-23 00:33:23,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:24,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:24,922 INFO Connection check task start +2025-09-24 00:33:27,158 INFO Connection check task start -2025-09-23 00:33:24,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:27,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:24,922 INFO Out dated connection ,size=0 +2025-09-24 00:33:27,159 INFO Out dated connection ,size=0 -2025-09-23 00:33:24,922 INFO Connection check task end +2025-09-24 00:33:27,159 INFO Connection check task end -2025-09-23 00:33:26,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:27,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:27,922 INFO Connection check task start +2025-09-24 00:33:30,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:27,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:30,160 INFO Connection check task start -2025-09-23 00:33:27,923 INFO Out dated connection ,size=0 +2025-09-24 00:33:30,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:27,923 INFO Connection check task end +2025-09-24 00:33:30,160 INFO Out dated connection ,size=0 -2025-09-23 00:33:29,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:30,160 INFO Connection check task end -2025-09-23 00:33:30,923 INFO Connection check task start +2025-09-24 00:33:33,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:30,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:33,160 INFO Connection check task start -2025-09-23 00:33:30,923 INFO Out dated connection ,size=0 +2025-09-24 00:33:33,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:30,923 INFO Connection check task end +2025-09-24 00:33:33,160 INFO Out dated connection ,size=0 -2025-09-23 00:33:32,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:33,161 INFO Connection check task end -2025-09-23 00:33:33,924 INFO Connection check task start +2025-09-24 00:33:36,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:33,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:36,161 INFO Connection check task start -2025-09-23 00:33:33,924 INFO Out dated connection ,size=0 +2025-09-24 00:33:36,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:33,924 INFO Connection check task end +2025-09-24 00:33:36,161 INFO Out dated connection ,size=0 -2025-09-23 00:33:35,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:36,161 INFO Connection check task end -2025-09-23 00:33:36,925 INFO Connection check task start +2025-09-24 00:33:39,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:36,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:39,161 INFO Connection check task start -2025-09-23 00:33:36,925 INFO Out dated connection ,size=0 +2025-09-24 00:33:39,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:36,925 INFO Connection check task end +2025-09-24 00:33:39,162 INFO Out dated connection ,size=0 -2025-09-23 00:33:38,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:39,162 INFO Connection check task end -2025-09-23 00:33:39,925 INFO Connection check task start +2025-09-24 00:33:42,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:39,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:42,162 INFO Connection check task start -2025-09-23 00:33:39,926 INFO Out dated connection ,size=0 +2025-09-24 00:33:42,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:39,926 INFO Connection check task end +2025-09-24 00:33:42,162 INFO Out dated connection ,size=0 -2025-09-23 00:33:41,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:42,162 INFO Connection check task end -2025-09-23 00:33:42,926 INFO Connection check task start +2025-09-24 00:33:45,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:42,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:45,162 INFO Connection check task start -2025-09-23 00:33:42,927 INFO Out dated connection ,size=0 +2025-09-24 00:33:45,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:42,927 INFO Connection check task end +2025-09-24 00:33:45,162 INFO Out dated connection ,size=0 -2025-09-23 00:33:44,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:45,162 INFO Connection check task end -2025-09-23 00:33:45,927 INFO Connection check task start +2025-09-24 00:33:48,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:45,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:48,163 INFO Connection check task start -2025-09-23 00:33:45,927 INFO Out dated connection ,size=0 +2025-09-24 00:33:48,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:45,927 INFO Connection check task end +2025-09-24 00:33:48,163 INFO Out dated connection ,size=0 -2025-09-23 00:33:47,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:48,163 INFO Connection check task end -2025-09-23 00:33:48,928 INFO Connection check task start +2025-09-24 00:33:51,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:48,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:51,164 INFO Connection check task start -2025-09-23 00:33:48,928 INFO Out dated connection ,size=0 +2025-09-24 00:33:51,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:48,928 INFO Connection check task end +2025-09-24 00:33:51,164 INFO Out dated connection ,size=0 -2025-09-23 00:33:50,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:51,164 INFO Connection check task end -2025-09-23 00:33:51,928 INFO Connection check task start +2025-09-24 00:33:54,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:51,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:54,164 INFO Connection check task start -2025-09-23 00:33:51,929 INFO Out dated connection ,size=0 +2025-09-24 00:33:54,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:51,929 INFO Connection check task end +2025-09-24 00:33:54,164 INFO Out dated connection ,size=0 -2025-09-23 00:33:53,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:54,164 INFO Connection check task end -2025-09-23 00:33:54,929 INFO Connection check task start +2025-09-24 00:33:57,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:54,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:33:57,165 INFO Connection check task start -2025-09-23 00:33:54,929 INFO Out dated connection ,size=0 +2025-09-24 00:33:57,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:54,929 INFO Connection check task end +2025-09-24 00:33:57,166 INFO Out dated connection ,size=0 -2025-09-23 00:33:56,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:33:57,166 INFO Connection check task end -2025-09-23 00:33:57,929 INFO Connection check task start +2025-09-24 00:34:00,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:33:57,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:00,167 INFO Connection check task start -2025-09-23 00:33:57,930 INFO Out dated connection ,size=0 +2025-09-24 00:34:00,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:33:57,930 INFO Connection check task end +2025-09-24 00:34:00,167 INFO Out dated connection ,size=0 -2025-09-23 00:33:59,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:00,167 INFO Connection check task end -2025-09-23 00:34:00,930 INFO Connection check task start +2025-09-24 00:34:03,168 INFO Connection check task start -2025-09-23 00:34:00,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:03,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:00,930 INFO Out dated connection ,size=0 +2025-09-24 00:34:03,168 INFO Out dated connection ,size=0 -2025-09-23 00:34:00,930 INFO Connection check task end +2025-09-24 00:34:03,168 INFO Connection check task end -2025-09-23 00:34:02,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:03,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:03,931 INFO Connection check task start +2025-09-24 00:34:06,169 INFO Connection check task start -2025-09-23 00:34:03,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:06,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:03,931 INFO Out dated connection ,size=0 +2025-09-24 00:34:06,170 INFO Out dated connection ,size=0 -2025-09-23 00:34:03,931 INFO Connection check task end +2025-09-24 00:34:06,170 INFO Connection check task end -2025-09-23 00:34:05,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:06,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:06,931 INFO Connection check task start +2025-09-24 00:34:09,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:06,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:09,170 INFO Connection check task start -2025-09-23 00:34:06,931 INFO Out dated connection ,size=0 +2025-09-24 00:34:09,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:06,931 INFO Connection check task end +2025-09-24 00:34:09,171 INFO Out dated connection ,size=0 -2025-09-23 00:34:08,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:09,171 INFO Connection check task end -2025-09-23 00:34:09,932 INFO Connection check task start +2025-09-24 00:34:12,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:09,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:12,171 INFO Connection check task start -2025-09-23 00:34:09,932 INFO Out dated connection ,size=0 +2025-09-24 00:34:12,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:09,932 INFO Connection check task end +2025-09-24 00:34:12,171 INFO Out dated connection ,size=0 -2025-09-23 00:34:11,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:12,171 INFO Connection check task end -2025-09-23 00:34:12,933 INFO Connection check task start +2025-09-24 00:34:15,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:12,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:15,171 INFO Connection check task start -2025-09-23 00:34:12,933 INFO Out dated connection ,size=0 +2025-09-24 00:34:15,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:12,933 INFO Connection check task end +2025-09-24 00:34:15,171 INFO Out dated connection ,size=0 -2025-09-23 00:34:14,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:15,171 INFO Connection check task end -2025-09-23 00:34:15,934 INFO Connection check task start +2025-09-24 00:34:18,172 INFO Connection check task start -2025-09-23 00:34:15,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:18,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:15,934 INFO Out dated connection ,size=0 +2025-09-24 00:34:18,172 INFO Out dated connection ,size=0 -2025-09-23 00:34:15,934 INFO Connection check task end +2025-09-24 00:34:18,173 INFO Connection check task end -2025-09-23 00:34:17,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:18,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:18,935 INFO Connection check task start +2025-09-24 00:34:21,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:18,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:21,173 INFO Connection check task start -2025-09-23 00:34:18,936 INFO Out dated connection ,size=0 +2025-09-24 00:34:21,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:18,936 INFO Connection check task end +2025-09-24 00:34:21,173 INFO Out dated connection ,size=0 -2025-09-23 00:34:20,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:21,173 INFO Connection check task end -2025-09-23 00:34:21,936 INFO Connection check task start +2025-09-24 00:34:24,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:21,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:24,191 INFO Connection check task start -2025-09-23 00:34:21,936 INFO Out dated connection ,size=0 +2025-09-24 00:34:24,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:21,936 INFO Connection check task end +2025-09-24 00:34:24,192 INFO Out dated connection ,size=0 -2025-09-23 00:34:23,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:24,192 INFO Connection check task end -2025-09-23 00:34:24,936 INFO Connection check task start +2025-09-24 00:34:27,192 INFO Connection check task start -2025-09-23 00:34:24,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:27,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:24,937 INFO Out dated connection ,size=0 +2025-09-24 00:34:27,192 INFO Out dated connection ,size=0 -2025-09-23 00:34:24,937 INFO Connection check task end +2025-09-24 00:34:27,192 INFO Connection check task end -2025-09-23 00:34:26,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:27,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:27,937 INFO Connection check task start +2025-09-24 00:34:30,193 INFO Connection check task start -2025-09-23 00:34:27,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:30,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:27,937 INFO Out dated connection ,size=0 +2025-09-24 00:34:30,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:27,937 INFO Connection check task end +2025-09-24 00:34:30,193 INFO Out dated connection ,size=0 -2025-09-23 00:34:29,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:30,193 INFO Connection check task end -2025-09-23 00:34:30,938 INFO Connection check task start +2025-09-24 00:34:33,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:30,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:33,194 INFO Connection check task start -2025-09-23 00:34:30,938 INFO Out dated connection ,size=0 +2025-09-24 00:34:33,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:30,938 INFO Connection check task end +2025-09-24 00:34:33,194 INFO Out dated connection ,size=0 -2025-09-23 00:34:32,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:33,194 INFO Connection check task end -2025-09-23 00:34:33,939 INFO Connection check task start +2025-09-24 00:34:36,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:33,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:36,195 INFO Connection check task start -2025-09-23 00:34:33,940 INFO Out dated connection ,size=0 +2025-09-24 00:34:36,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:33,940 INFO Connection check task end +2025-09-24 00:34:36,195 INFO Out dated connection ,size=0 -2025-09-23 00:34:35,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:36,195 INFO Connection check task end -2025-09-23 00:34:36,941 INFO Connection check task start +2025-09-24 00:34:39,195 INFO Connection check task start -2025-09-23 00:34:36,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:39,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:36,941 INFO Out dated connection ,size=0 +2025-09-24 00:34:39,196 INFO Out dated connection ,size=0 -2025-09-23 00:34:36,941 INFO Connection check task end +2025-09-24 00:34:39,196 INFO Connection check task end -2025-09-23 00:34:38,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:39,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:39,941 INFO Connection check task start +2025-09-24 00:34:42,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:39,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:42,197 INFO Connection check task start -2025-09-23 00:34:39,941 INFO Out dated connection ,size=0 +2025-09-24 00:34:42,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:39,941 INFO Connection check task end +2025-09-24 00:34:42,197 INFO Out dated connection ,size=0 -2025-09-23 00:34:41,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:42,197 INFO Connection check task end -2025-09-23 00:34:42,942 INFO Connection check task start +2025-09-24 00:34:45,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:42,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:45,197 INFO Connection check task start -2025-09-23 00:34:42,943 INFO Out dated connection ,size=0 +2025-09-24 00:34:45,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:42,943 INFO Connection check task end +2025-09-24 00:34:45,198 INFO Out dated connection ,size=0 -2025-09-23 00:34:44,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:45,198 INFO Connection check task end -2025-09-23 00:34:45,944 INFO Connection check task start +2025-09-24 00:34:48,198 INFO Connection check task start -2025-09-23 00:34:45,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:48,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:45,944 INFO Out dated connection ,size=0 +2025-09-24 00:34:48,198 INFO Out dated connection ,size=0 -2025-09-23 00:34:45,944 INFO Connection check task end +2025-09-24 00:34:48,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:47,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:48,199 INFO Connection check task end -2025-09-23 00:34:48,945 INFO Connection check task start +2025-09-24 00:34:51,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:48,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:51,199 INFO Connection check task start -2025-09-23 00:34:48,946 INFO Out dated connection ,size=0 +2025-09-24 00:34:51,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:48,946 INFO Connection check task end +2025-09-24 00:34:51,201 INFO Out dated connection ,size=0 -2025-09-23 00:34:50,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:51,201 INFO Connection check task end -2025-09-23 00:34:51,946 INFO Connection check task start +2025-09-24 00:34:54,201 INFO Connection check task start -2025-09-23 00:34:51,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:54,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:51,946 INFO Out dated connection ,size=0 +2025-09-24 00:34:54,201 INFO Out dated connection ,size=0 -2025-09-23 00:34:51,946 INFO Connection check task end +2025-09-24 00:34:54,201 INFO Connection check task end -2025-09-23 00:34:53,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:54,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:54,947 INFO Connection check task start +2025-09-24 00:34:57,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:54,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:34:57,202 INFO Connection check task start -2025-09-23 00:34:54,947 INFO Out dated connection ,size=0 +2025-09-24 00:34:57,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:54,947 INFO Connection check task end +2025-09-24 00:34:57,202 INFO Out dated connection ,size=0 -2025-09-23 00:34:56,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:34:57,202 INFO Connection check task end -2025-09-23 00:34:57,949 INFO Connection check task start +2025-09-24 00:35:00,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:34:57,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:00,203 INFO Connection check task start -2025-09-23 00:34:57,949 INFO Out dated connection ,size=0 +2025-09-24 00:35:00,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:34:57,949 INFO Connection check task end +2025-09-24 00:35:00,203 INFO Out dated connection ,size=0 -2025-09-23 00:34:59,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:00,203 INFO Connection check task end -2025-09-23 00:35:00,950 INFO Connection check task start +2025-09-24 00:35:03,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:00,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:03,204 INFO Connection check task start -2025-09-23 00:35:00,950 INFO Out dated connection ,size=0 +2025-09-24 00:35:03,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:00,951 INFO Connection check task end +2025-09-24 00:35:03,204 INFO Out dated connection ,size=0 -2025-09-23 00:35:02,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:03,204 INFO Connection check task end -2025-09-23 00:35:03,951 INFO Connection check task start +2025-09-24 00:35:06,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:03,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:06,205 INFO Connection check task start -2025-09-23 00:35:03,951 INFO Out dated connection ,size=0 +2025-09-24 00:35:06,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:03,951 INFO Connection check task end +2025-09-24 00:35:06,205 INFO Out dated connection ,size=0 -2025-09-23 00:35:05,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:06,205 INFO Connection check task end -2025-09-23 00:35:06,952 INFO Connection check task start +2025-09-24 00:35:09,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:06,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:09,206 INFO Connection check task start -2025-09-23 00:35:06,952 INFO Out dated connection ,size=0 +2025-09-24 00:35:09,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:06,952 INFO Connection check task end +2025-09-24 00:35:09,206 INFO Out dated connection ,size=0 -2025-09-23 00:35:08,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:09,206 INFO Connection check task end -2025-09-23 00:35:09,953 INFO Connection check task start +2025-09-24 00:35:12,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:09,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:12,207 INFO Connection check task start -2025-09-23 00:35:09,953 INFO Out dated connection ,size=0 +2025-09-24 00:35:12,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:09,953 INFO Connection check task end +2025-09-24 00:35:12,207 INFO Out dated connection ,size=0 -2025-09-23 00:35:11,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:12,207 INFO Connection check task end -2025-09-23 00:35:12,954 INFO Connection check task start +2025-09-24 00:35:15,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:12,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:15,208 INFO Connection check task start -2025-09-23 00:35:12,955 INFO Out dated connection ,size=0 +2025-09-24 00:35:15,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:12,955 INFO Connection check task end +2025-09-24 00:35:15,208 INFO Out dated connection ,size=0 -2025-09-23 00:35:14,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:15,209 INFO Connection check task end -2025-09-23 00:35:15,956 INFO Connection check task start +2025-09-24 00:35:18,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:15,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:18,209 INFO Connection check task start -2025-09-23 00:35:15,956 INFO Out dated connection ,size=0 +2025-09-24 00:35:18,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:15,956 INFO Connection check task end +2025-09-24 00:35:18,209 INFO Out dated connection ,size=0 -2025-09-23 00:35:17,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:18,209 INFO Connection check task end -2025-09-23 00:35:18,957 INFO Connection check task start +2025-09-24 00:35:21,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:18,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:21,210 INFO Connection check task start -2025-09-23 00:35:18,957 INFO Out dated connection ,size=0 +2025-09-24 00:35:21,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:18,957 INFO Connection check task end +2025-09-24 00:35:21,210 INFO Out dated connection ,size=0 -2025-09-23 00:35:20,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:21,210 INFO Connection check task end -2025-09-23 00:35:21,958 INFO Connection check task start +2025-09-24 00:35:24,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:21,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:24,210 INFO Connection check task start -2025-09-23 00:35:21,958 INFO Out dated connection ,size=0 +2025-09-24 00:35:24,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:21,958 INFO Connection check task end +2025-09-24 00:35:24,211 INFO Out dated connection ,size=0 -2025-09-23 00:35:23,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:24,211 INFO Connection check task end -2025-09-23 00:35:24,959 INFO Connection check task start +2025-09-24 00:35:27,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:24,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:27,212 INFO Connection check task start -2025-09-23 00:35:24,959 INFO Out dated connection ,size=0 +2025-09-24 00:35:27,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:24,959 INFO Connection check task end +2025-09-24 00:35:27,212 INFO Out dated connection ,size=0 -2025-09-23 00:35:26,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:27,212 INFO Connection check task end -2025-09-23 00:35:27,960 INFO Connection check task start +2025-09-24 00:35:30,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:27,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:30,213 INFO Connection check task start -2025-09-23 00:35:27,960 INFO Out dated connection ,size=0 +2025-09-24 00:35:30,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:27,960 INFO Connection check task end +2025-09-24 00:35:30,214 INFO Out dated connection ,size=0 -2025-09-23 00:35:29,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:30,214 INFO Connection check task end -2025-09-23 00:35:30,960 INFO Connection check task start +2025-09-24 00:35:33,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:30,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:33,215 INFO Connection check task start -2025-09-23 00:35:30,960 INFO Out dated connection ,size=0 +2025-09-24 00:35:33,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:30,961 INFO Connection check task end +2025-09-24 00:35:33,215 INFO Out dated connection ,size=0 -2025-09-23 00:35:32,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:33,215 INFO Connection check task end -2025-09-23 00:35:33,961 INFO Connection check task start +2025-09-24 00:35:36,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:33,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:36,215 INFO Connection check task start -2025-09-23 00:35:33,961 INFO Out dated connection ,size=0 +2025-09-24 00:35:36,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:33,961 INFO Connection check task end +2025-09-24 00:35:36,215 INFO Out dated connection ,size=0 -2025-09-23 00:35:35,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:36,215 INFO Connection check task end -2025-09-23 00:35:36,962 INFO Connection check task start +2025-09-24 00:35:39,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:36,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:39,215 INFO Connection check task start -2025-09-23 00:35:36,962 INFO Out dated connection ,size=0 +2025-09-24 00:35:39,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:36,962 INFO Connection check task end +2025-09-24 00:35:39,216 INFO Out dated connection ,size=0 -2025-09-23 00:35:38,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:39,216 INFO Connection check task end -2025-09-23 00:35:39,962 INFO Connection check task start +2025-09-24 00:35:42,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:39,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:42,216 INFO Connection check task start -2025-09-23 00:35:39,962 INFO Out dated connection ,size=0 +2025-09-24 00:35:42,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:39,963 INFO Connection check task end +2025-09-24 00:35:42,217 INFO Out dated connection ,size=0 -2025-09-23 00:35:41,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:42,217 INFO Connection check task end -2025-09-23 00:35:42,963 INFO Connection check task start +2025-09-24 00:35:45,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:42,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:45,217 INFO Connection check task start -2025-09-23 00:35:42,963 INFO Out dated connection ,size=0 +2025-09-24 00:35:45,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:42,963 INFO Connection check task end +2025-09-24 00:35:45,217 INFO Out dated connection ,size=0 -2025-09-23 00:35:44,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:45,217 INFO Connection check task end -2025-09-23 00:35:45,963 INFO Connection check task start +2025-09-24 00:35:48,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:45,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:48,218 INFO Connection check task start -2025-09-23 00:35:45,964 INFO Out dated connection ,size=0 +2025-09-24 00:35:48,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:45,964 INFO Connection check task end +2025-09-24 00:35:48,218 INFO Out dated connection ,size=0 -2025-09-23 00:35:47,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:48,219 INFO Connection check task end -2025-09-23 00:35:48,964 INFO Connection check task start +2025-09-24 00:35:51,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:48,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:51,219 INFO Connection check task start -2025-09-23 00:35:48,964 INFO Out dated connection ,size=0 +2025-09-24 00:35:51,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:48,964 INFO Connection check task end +2025-09-24 00:35:51,219 INFO Out dated connection ,size=0 -2025-09-23 00:35:50,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:51,219 INFO Connection check task end -2025-09-23 00:35:51,964 INFO Connection check task start +2025-09-24 00:35:54,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:51,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:54,219 INFO Connection check task start -2025-09-23 00:35:51,965 INFO Out dated connection ,size=0 +2025-09-24 00:35:54,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:51,965 INFO Connection check task end +2025-09-24 00:35:54,219 INFO Out dated connection ,size=0 -2025-09-23 00:35:53,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:54,220 INFO Connection check task end -2025-09-23 00:35:54,965 INFO Connection check task start +2025-09-24 00:35:57,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:54,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:35:57,220 INFO Connection check task start -2025-09-23 00:35:54,965 INFO Out dated connection ,size=0 +2025-09-24 00:35:57,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:54,965 INFO Connection check task end +2025-09-24 00:35:57,220 INFO Out dated connection ,size=0 -2025-09-23 00:35:56,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:35:57,220 INFO Connection check task end -2025-09-23 00:35:57,965 INFO Connection check task start +2025-09-24 00:36:00,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:35:57,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:00,221 INFO Connection check task start -2025-09-23 00:35:57,966 INFO Out dated connection ,size=0 +2025-09-24 00:36:00,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:35:57,966 INFO Connection check task end +2025-09-24 00:36:00,221 INFO Out dated connection ,size=0 -2025-09-23 00:35:59,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:00,221 INFO Connection check task end -2025-09-23 00:36:00,967 INFO Connection check task start +2025-09-24 00:36:03,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:00,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:03,221 INFO Connection check task start -2025-09-23 00:36:00,967 INFO Out dated connection ,size=0 +2025-09-24 00:36:03,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:00,967 INFO Connection check task end +2025-09-24 00:36:03,221 INFO Out dated connection ,size=0 -2025-09-23 00:36:02,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:03,221 INFO Connection check task end -2025-09-23 00:36:03,968 INFO Connection check task start +2025-09-24 00:36:06,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:03,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:06,223 INFO Connection check task start -2025-09-23 00:36:03,968 INFO Out dated connection ,size=0 +2025-09-24 00:36:06,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:03,968 INFO Connection check task end +2025-09-24 00:36:06,223 INFO Out dated connection ,size=0 -2025-09-23 00:36:05,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:06,223 INFO Connection check task end -2025-09-23 00:36:06,968 INFO Connection check task start +2025-09-24 00:36:09,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:06,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:09,224 INFO Connection check task start -2025-09-23 00:36:06,969 INFO Out dated connection ,size=0 +2025-09-24 00:36:09,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:06,969 INFO Connection check task end +2025-09-24 00:36:09,225 INFO Out dated connection ,size=0 -2025-09-23 00:36:08,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:09,225 INFO Connection check task end -2025-09-23 00:36:09,969 INFO Connection check task start +2025-09-24 00:36:12,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:09,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:12,225 INFO Connection check task start -2025-09-23 00:36:09,970 INFO Out dated connection ,size=0 +2025-09-24 00:36:12,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:09,970 INFO Connection check task end +2025-09-24 00:36:12,225 INFO Out dated connection ,size=0 -2025-09-23 00:36:11,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:12,225 INFO Connection check task end -2025-09-23 00:36:12,970 INFO Connection check task start +2025-09-24 00:36:15,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:12,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:15,225 INFO Connection check task start -2025-09-23 00:36:12,970 INFO Out dated connection ,size=0 +2025-09-24 00:36:15,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:12,970 INFO Connection check task end +2025-09-24 00:36:15,226 INFO Out dated connection ,size=0 -2025-09-23 00:36:14,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:15,226 INFO Connection check task end -2025-09-23 00:36:15,971 INFO Connection check task start +2025-09-24 00:36:18,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:15,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:18,226 INFO Connection check task start -2025-09-23 00:36:15,971 INFO Out dated connection ,size=0 +2025-09-24 00:36:18,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:15,971 INFO Connection check task end +2025-09-24 00:36:18,227 INFO Out dated connection ,size=0 -2025-09-23 00:36:17,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:18,227 INFO Connection check task end -2025-09-23 00:36:18,971 INFO Connection check task start +2025-09-24 00:36:21,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:18,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:21,227 INFO Connection check task start -2025-09-23 00:36:18,971 INFO Out dated connection ,size=0 +2025-09-24 00:36:21,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:18,972 INFO Connection check task end +2025-09-24 00:36:21,227 INFO Out dated connection ,size=0 -2025-09-23 00:36:20,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:21,227 INFO Connection check task end -2025-09-23 00:36:21,972 INFO Connection check task start +2025-09-24 00:36:24,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:21,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:24,227 INFO Connection check task start -2025-09-23 00:36:21,973 INFO Out dated connection ,size=0 +2025-09-24 00:36:24,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:21,973 INFO Connection check task end +2025-09-24 00:36:24,228 INFO Out dated connection ,size=0 -2025-09-23 00:36:23,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:24,228 INFO Connection check task end -2025-09-23 00:36:24,973 INFO Connection check task start +2025-09-24 00:36:27,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:24,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:27,228 INFO Connection check task start -2025-09-23 00:36:24,973 INFO Out dated connection ,size=0 +2025-09-24 00:36:27,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:24,973 INFO Connection check task end +2025-09-24 00:36:27,228 INFO Out dated connection ,size=0 -2025-09-23 00:36:26,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:27,228 INFO Connection check task end -2025-09-23 00:36:27,974 INFO Connection check task start +2025-09-24 00:36:30,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:27,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:30,229 INFO Connection check task start -2025-09-23 00:36:27,974 INFO Out dated connection ,size=0 +2025-09-24 00:36:30,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:27,974 INFO Connection check task end +2025-09-24 00:36:30,232 INFO Out dated connection ,size=0 -2025-09-23 00:36:29,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:30,232 INFO Connection check task end -2025-09-23 00:36:30,975 INFO Connection check task start +2025-09-24 00:36:33,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:30,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:33,254 INFO Connection check task start -2025-09-23 00:36:30,975 INFO Out dated connection ,size=0 +2025-09-24 00:36:33,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:30,976 INFO Connection check task end +2025-09-24 00:36:33,255 INFO Out dated connection ,size=0 -2025-09-23 00:36:32,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:33,255 INFO Connection check task end -2025-09-23 00:36:33,976 INFO Connection check task start +2025-09-24 00:36:36,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:33,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:36,255 INFO Connection check task start -2025-09-23 00:36:33,977 INFO Out dated connection ,size=0 +2025-09-24 00:36:36,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:33,977 INFO Connection check task end +2025-09-24 00:36:36,256 INFO Out dated connection ,size=0 -2025-09-23 00:36:35,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:36,256 INFO Connection check task end -2025-09-23 00:36:36,977 INFO Connection check task start +2025-09-24 00:36:39,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:36,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:39,257 INFO Connection check task start -2025-09-23 00:36:36,977 INFO Out dated connection ,size=0 +2025-09-24 00:36:39,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:36,977 INFO Connection check task end +2025-09-24 00:36:39,257 INFO Out dated connection ,size=0 -2025-09-23 00:36:38,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:39,257 INFO Connection check task end -2025-09-23 00:36:39,977 INFO Connection check task start +2025-09-24 00:36:42,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:39,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:42,257 INFO Connection check task start -2025-09-23 00:36:39,978 INFO Out dated connection ,size=0 +2025-09-24 00:36:42,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:39,978 INFO Connection check task end +2025-09-24 00:36:42,257 INFO Out dated connection ,size=0 -2025-09-23 00:36:41,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:42,257 INFO Connection check task end -2025-09-23 00:36:42,978 INFO Connection check task start +2025-09-24 00:36:45,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:42,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:45,259 INFO Connection check task start -2025-09-23 00:36:42,978 INFO Out dated connection ,size=0 +2025-09-24 00:36:45,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:42,979 INFO Connection check task end +2025-09-24 00:36:45,259 INFO Out dated connection ,size=0 -2025-09-23 00:36:44,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:45,259 INFO Connection check task end -2025-09-23 00:36:45,979 INFO Connection check task start +2025-09-24 00:36:48,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:45,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:48,259 INFO Connection check task start -2025-09-23 00:36:45,979 INFO Out dated connection ,size=0 +2025-09-24 00:36:48,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:45,979 INFO Connection check task end +2025-09-24 00:36:48,259 INFO Out dated connection ,size=0 -2025-09-23 00:36:47,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:48,260 INFO Connection check task end -2025-09-23 00:36:48,980 INFO Connection check task start +2025-09-24 00:36:51,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:48,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:51,260 INFO Connection check task start -2025-09-23 00:36:48,981 INFO Out dated connection ,size=0 +2025-09-24 00:36:51,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:48,981 INFO Connection check task end +2025-09-24 00:36:51,260 INFO Out dated connection ,size=0 -2025-09-23 00:36:50,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:51,260 INFO Connection check task end -2025-09-23 00:36:51,981 INFO Connection check task start +2025-09-24 00:36:54,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:51,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:54,261 INFO Connection check task start -2025-09-23 00:36:51,982 INFO Out dated connection ,size=0 +2025-09-24 00:36:54,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:51,982 INFO Connection check task end +2025-09-24 00:36:54,261 INFO Out dated connection ,size=0 -2025-09-23 00:36:53,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:54,261 INFO Connection check task end -2025-09-23 00:36:54,983 INFO Connection check task start +2025-09-24 00:36:57,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:54,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:36:57,261 INFO Connection check task start -2025-09-23 00:36:54,983 INFO Out dated connection ,size=0 +2025-09-24 00:36:57,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:54,983 INFO Connection check task end +2025-09-24 00:36:57,262 INFO Out dated connection ,size=0 -2025-09-23 00:36:56,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:36:57,262 INFO Connection check task end -2025-09-23 00:36:57,984 INFO Connection check task start +2025-09-24 00:37:00,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:36:57,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:00,263 INFO Connection check task start -2025-09-23 00:36:57,984 INFO Out dated connection ,size=0 +2025-09-24 00:37:00,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:36:57,984 INFO Connection check task end +2025-09-24 00:37:00,263 INFO Out dated connection ,size=0 -2025-09-23 00:36:59,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:00,263 INFO Connection check task end -2025-09-23 00:37:00,984 INFO Connection check task start +2025-09-24 00:37:03,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:00,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:03,264 INFO Connection check task start -2025-09-23 00:37:00,985 INFO Out dated connection ,size=0 +2025-09-24 00:37:03,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:00,985 INFO Connection check task end +2025-09-24 00:37:03,264 INFO Out dated connection ,size=0 -2025-09-23 00:37:02,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:03,264 INFO Connection check task end -2025-09-23 00:37:03,986 INFO Connection check task start +2025-09-24 00:37:06,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:03,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:06,265 INFO Connection check task start -2025-09-23 00:37:03,986 INFO Out dated connection ,size=0 +2025-09-24 00:37:06,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:03,986 INFO Connection check task end +2025-09-24 00:37:06,265 INFO Out dated connection ,size=0 -2025-09-23 00:37:05,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:06,265 INFO Connection check task end -2025-09-23 00:37:06,987 INFO Connection check task start +2025-09-24 00:37:09,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:06,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:09,266 INFO Connection check task start -2025-09-23 00:37:06,988 INFO Out dated connection ,size=0 +2025-09-24 00:37:09,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:06,988 INFO Connection check task end +2025-09-24 00:37:09,266 INFO Out dated connection ,size=0 -2025-09-23 00:37:08,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:09,266 INFO Connection check task end -2025-09-23 00:37:09,989 INFO Connection check task start +2025-09-24 00:37:12,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:09,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:12,267 INFO Connection check task start -2025-09-23 00:37:09,989 INFO Out dated connection ,size=0 +2025-09-24 00:37:12,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:09,990 INFO Connection check task end +2025-09-24 00:37:12,268 INFO Out dated connection ,size=0 -2025-09-23 00:37:11,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:12,268 INFO Connection check task end -2025-09-23 00:37:12,991 INFO Connection check task start +2025-09-24 00:37:15,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:12,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:15,268 INFO Connection check task start -2025-09-23 00:37:12,991 INFO Out dated connection ,size=0 +2025-09-24 00:37:15,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:12,991 INFO Connection check task end +2025-09-24 00:37:15,268 INFO Out dated connection ,size=0 -2025-09-23 00:37:14,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:15,268 INFO Connection check task end -2025-09-23 00:37:15,991 INFO Connection check task start +2025-09-24 00:37:18,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:15,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:18,269 INFO Connection check task start -2025-09-23 00:37:15,992 INFO Out dated connection ,size=0 +2025-09-24 00:37:18,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:15,992 INFO Connection check task end +2025-09-24 00:37:18,269 INFO Out dated connection ,size=0 -2025-09-23 00:37:17,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:18,269 INFO Connection check task end -2025-09-23 00:37:18,993 INFO Connection check task start +2025-09-24 00:37:21,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:18,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:21,269 INFO Connection check task start -2025-09-23 00:37:18,993 INFO Out dated connection ,size=0 +2025-09-24 00:37:21,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:18,993 INFO Connection check task end +2025-09-24 00:37:21,270 INFO Out dated connection ,size=0 -2025-09-23 00:37:20,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:21,270 INFO Connection check task end -2025-09-23 00:37:21,993 INFO Connection check task start +2025-09-24 00:37:24,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:21,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:24,271 INFO Connection check task start -2025-09-23 00:37:21,994 INFO Out dated connection ,size=0 +2025-09-24 00:37:24,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:21,994 INFO Connection check task end +2025-09-24 00:37:24,272 INFO Out dated connection ,size=0 -2025-09-23 00:37:23,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:24,272 INFO Connection check task end -2025-09-23 00:37:24,994 INFO Connection check task start +2025-09-24 00:37:27,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:24,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:27,273 INFO Connection check task start -2025-09-23 00:37:24,994 INFO Out dated connection ,size=0 +2025-09-24 00:37:27,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:24,995 INFO Connection check task end +2025-09-24 00:37:27,273 INFO Out dated connection ,size=0 -2025-09-23 00:37:26,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:27,273 INFO Connection check task end -2025-09-23 00:37:27,995 INFO Connection check task start +2025-09-24 00:37:30,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:27,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:30,273 INFO Connection check task start -2025-09-23 00:37:27,995 INFO Out dated connection ,size=0 +2025-09-24 00:37:30,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:27,995 INFO Connection check task end +2025-09-24 00:37:30,274 INFO Out dated connection ,size=0 -2025-09-23 00:37:29,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:30,274 INFO Connection check task end -2025-09-23 00:37:30,996 INFO Connection check task start +2025-09-24 00:37:33,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:30,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:33,274 INFO Connection check task start -2025-09-23 00:37:30,996 INFO Out dated connection ,size=0 +2025-09-24 00:37:33,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:30,996 INFO Connection check task end +2025-09-24 00:37:33,274 INFO Out dated connection ,size=0 -2025-09-23 00:37:32,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:33,274 INFO Connection check task end -2025-09-23 00:37:33,996 INFO Connection check task start +2025-09-24 00:37:36,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:33,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:36,275 INFO Connection check task start -2025-09-23 00:37:33,996 INFO Out dated connection ,size=0 +2025-09-24 00:37:36,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:33,996 INFO Connection check task end +2025-09-24 00:37:36,275 INFO Out dated connection ,size=0 -2025-09-23 00:37:35,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:36,275 INFO Connection check task end -2025-09-23 00:37:36,996 INFO Connection check task start +2025-09-24 00:37:39,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:36,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:39,276 INFO Connection check task start -2025-09-23 00:37:36,997 INFO Out dated connection ,size=0 +2025-09-24 00:37:39,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:36,997 INFO Connection check task end +2025-09-24 00:37:39,276 INFO Out dated connection ,size=0 -2025-09-23 00:37:38,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:39,276 INFO Connection check task end -2025-09-23 00:37:39,997 INFO Connection check task start +2025-09-24 00:37:42,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:39,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:42,276 INFO Connection check task start -2025-09-23 00:37:39,997 INFO Out dated connection ,size=0 +2025-09-24 00:37:42,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:39,997 INFO Connection check task end +2025-09-24 00:37:42,276 INFO Out dated connection ,size=0 -2025-09-23 00:37:41,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:42,277 INFO Connection check task end -2025-09-23 00:37:42,998 INFO Connection check task start +2025-09-24 00:37:45,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:42,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:45,277 INFO Connection check task start -2025-09-23 00:37:42,999 INFO Out dated connection ,size=0 +2025-09-24 00:37:45,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:42,999 INFO Connection check task end +2025-09-24 00:37:45,277 INFO Out dated connection ,size=0 -2025-09-23 00:37:44,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:45,277 INFO Connection check task end -2025-09-23 00:37:45,999 INFO Connection check task start +2025-09-24 00:37:48,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:46,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:48,279 INFO Connection check task start -2025-09-23 00:37:46,000 INFO Out dated connection ,size=0 +2025-09-24 00:37:48,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:46,000 INFO Connection check task end +2025-09-24 00:37:48,279 INFO Out dated connection ,size=0 -2025-09-23 00:37:47,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:48,279 INFO Connection check task end -2025-09-23 00:37:49,000 INFO Connection check task start +2025-09-24 00:37:51,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:49,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:51,280 INFO Connection check task start -2025-09-23 00:37:49,001 INFO Out dated connection ,size=0 +2025-09-24 00:37:51,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:49,001 INFO Connection check task end +2025-09-24 00:37:51,280 INFO Out dated connection ,size=0 -2025-09-23 00:37:50,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:51,280 INFO Connection check task end -2025-09-23 00:37:52,001 INFO Connection check task start +2025-09-24 00:37:54,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:52,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:54,280 INFO Connection check task start -2025-09-23 00:37:52,002 INFO Out dated connection ,size=0 +2025-09-24 00:37:54,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:52,002 INFO Connection check task end +2025-09-24 00:37:54,280 INFO Out dated connection ,size=0 -2025-09-23 00:37:53,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:54,280 INFO Connection check task end -2025-09-23 00:37:55,002 INFO Connection check task start +2025-09-24 00:37:57,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:55,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:37:57,321 INFO Connection check task start -2025-09-23 00:37:55,002 INFO Out dated connection ,size=0 +2025-09-24 00:37:57,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:55,002 INFO Connection check task end +2025-09-24 00:37:57,322 INFO Out dated connection ,size=0 -2025-09-23 00:37:56,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:37:57,322 INFO Connection check task end -2025-09-23 00:37:58,003 INFO Connection check task start +2025-09-24 00:38:00,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:37:58,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:00,323 INFO Connection check task start -2025-09-23 00:37:58,003 INFO Out dated connection ,size=0 +2025-09-24 00:38:00,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:37:58,003 INFO Connection check task end +2025-09-24 00:38:00,323 INFO Out dated connection ,size=0 -2025-09-23 00:37:59,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:00,323 INFO Connection check task end -2025-09-23 00:38:01,003 INFO Connection check task start +2025-09-24 00:38:03,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:01,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:03,324 INFO Connection check task start -2025-09-23 00:38:01,004 INFO Out dated connection ,size=0 +2025-09-24 00:38:03,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:01,004 INFO Connection check task end +2025-09-24 00:38:03,324 INFO Out dated connection ,size=0 -2025-09-23 00:38:02,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:03,324 INFO Connection check task end -2025-09-23 00:38:04,005 INFO Connection check task start +2025-09-24 00:38:06,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:04,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:06,324 INFO Connection check task start -2025-09-23 00:38:04,006 INFO Out dated connection ,size=0 +2025-09-24 00:38:06,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:04,006 INFO Connection check task end +2025-09-24 00:38:06,325 INFO Out dated connection ,size=0 -2025-09-23 00:38:05,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:06,325 INFO Connection check task end -2025-09-23 00:38:07,006 INFO Connection check task start +2025-09-24 00:38:09,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:07,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:09,325 INFO Connection check task start -2025-09-23 00:38:07,007 INFO Out dated connection ,size=0 +2025-09-24 00:38:09,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:07,007 INFO Connection check task end +2025-09-24 00:38:09,325 INFO Out dated connection ,size=0 -2025-09-23 00:38:08,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:09,325 INFO Connection check task end -2025-09-23 00:38:10,008 INFO Connection check task start +2025-09-24 00:38:12,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:10,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:12,326 INFO Connection check task start -2025-09-23 00:38:10,008 INFO Out dated connection ,size=0 +2025-09-24 00:38:12,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:10,008 INFO Connection check task end +2025-09-24 00:38:12,326 INFO Out dated connection ,size=0 -2025-09-23 00:38:11,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:12,326 INFO Connection check task end -2025-09-23 00:38:13,008 INFO Connection check task start +2025-09-24 00:38:15,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:13,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:15,326 INFO Connection check task start -2025-09-23 00:38:13,009 INFO Out dated connection ,size=0 +2025-09-24 00:38:15,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:13,009 INFO Connection check task end +2025-09-24 00:38:15,326 INFO Out dated connection ,size=0 -2025-09-23 00:38:14,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:15,326 INFO Connection check task end -2025-09-23 00:38:16,009 INFO Connection check task start +2025-09-24 00:38:18,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:16,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:18,327 INFO Connection check task start -2025-09-23 00:38:16,009 INFO Out dated connection ,size=0 +2025-09-24 00:38:18,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:16,009 INFO Connection check task end +2025-09-24 00:38:18,328 INFO Out dated connection ,size=0 -2025-09-23 00:38:17,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:18,328 INFO Connection check task end -2025-09-23 00:38:19,010 INFO Connection check task start +2025-09-24 00:38:21,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:19,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:21,328 INFO Connection check task start -2025-09-23 00:38:19,010 INFO Out dated connection ,size=0 +2025-09-24 00:38:21,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:19,010 INFO Connection check task end +2025-09-24 00:38:21,329 INFO Out dated connection ,size=0 -2025-09-23 00:38:20,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:21,329 INFO Connection check task end -2025-09-23 00:38:22,011 INFO Connection check task start +2025-09-24 00:38:24,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:22,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:24,329 INFO Connection check task start -2025-09-23 00:38:22,011 INFO Out dated connection ,size=0 +2025-09-24 00:38:24,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:22,011 INFO Connection check task end +2025-09-24 00:38:24,330 INFO Out dated connection ,size=0 -2025-09-23 00:38:23,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:24,330 INFO Connection check task end -2025-09-23 00:38:25,011 INFO Connection check task start +2025-09-24 00:38:27,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:25,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:27,330 INFO Connection check task start -2025-09-23 00:38:25,011 INFO Out dated connection ,size=0 +2025-09-24 00:38:27,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:25,012 INFO Connection check task end +2025-09-24 00:38:27,330 INFO Out dated connection ,size=0 -2025-09-23 00:38:26,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:27,330 INFO Connection check task end -2025-09-23 00:38:28,012 INFO Connection check task start +2025-09-24 00:38:30,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:28,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:30,331 INFO Connection check task start -2025-09-23 00:38:28,012 INFO Out dated connection ,size=0 +2025-09-24 00:38:30,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:28,012 INFO Connection check task end +2025-09-24 00:38:30,331 INFO Out dated connection ,size=0 -2025-09-23 00:38:29,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:30,331 INFO Connection check task end -2025-09-23 00:38:31,013 INFO Connection check task start +2025-09-24 00:38:33,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:31,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:33,332 INFO Connection check task start -2025-09-23 00:38:31,013 INFO Out dated connection ,size=0 +2025-09-24 00:38:33,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:31,014 INFO Connection check task end +2025-09-24 00:38:33,332 INFO Out dated connection ,size=0 -2025-09-23 00:38:32,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:33,332 INFO Connection check task end -2025-09-23 00:38:34,015 INFO Connection check task start +2025-09-24 00:38:36,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:34,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:36,333 INFO Connection check task start -2025-09-23 00:38:34,015 INFO Out dated connection ,size=0 +2025-09-24 00:38:36,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:34,015 INFO Connection check task end +2025-09-24 00:38:36,333 INFO Out dated connection ,size=0 -2025-09-23 00:38:35,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:36,333 INFO Connection check task end -2025-09-23 00:38:37,015 INFO Connection check task start +2025-09-24 00:38:39,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:37,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:39,333 INFO Connection check task start -2025-09-23 00:38:37,015 INFO Out dated connection ,size=0 +2025-09-24 00:38:39,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:37,015 INFO Connection check task end +2025-09-24 00:38:39,334 INFO Out dated connection ,size=0 -2025-09-23 00:38:38,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:39,334 INFO Connection check task end -2025-09-23 00:38:40,016 INFO Connection check task start +2025-09-24 00:38:42,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:40,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:42,334 INFO Connection check task start -2025-09-23 00:38:40,017 INFO Out dated connection ,size=0 +2025-09-24 00:38:42,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:40,017 INFO Connection check task end +2025-09-24 00:38:42,334 INFO Out dated connection ,size=0 -2025-09-23 00:38:41,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:42,334 INFO Connection check task end -2025-09-23 00:38:43,017 INFO Connection check task start +2025-09-24 00:38:45,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:43,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:45,335 INFO Connection check task start -2025-09-23 00:38:43,021 INFO Out dated connection ,size=0 +2025-09-24 00:38:45,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:43,021 INFO Connection check task end +2025-09-24 00:38:45,335 INFO Out dated connection ,size=0 -2025-09-23 00:38:44,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:45,335 INFO Connection check task end -2025-09-23 00:38:46,022 INFO Connection check task start +2025-09-24 00:38:48,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:46,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:48,335 INFO Connection check task start -2025-09-23 00:38:46,022 INFO Out dated connection ,size=0 +2025-09-24 00:38:48,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:46,022 INFO Connection check task end +2025-09-24 00:38:48,335 INFO Out dated connection ,size=0 -2025-09-23 00:38:47,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:48,335 INFO Connection check task end -2025-09-23 00:38:49,022 INFO Connection check task start +2025-09-24 00:38:51,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:49,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:51,336 INFO Connection check task start -2025-09-23 00:38:49,022 INFO Out dated connection ,size=0 +2025-09-24 00:38:51,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:49,022 INFO Connection check task end +2025-09-24 00:38:51,336 INFO Out dated connection ,size=0 -2025-09-23 00:38:50,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:51,336 INFO Connection check task end -2025-09-23 00:38:52,023 INFO Connection check task start +2025-09-24 00:38:54,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:52,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:54,336 INFO Connection check task start -2025-09-23 00:38:52,023 INFO Out dated connection ,size=0 +2025-09-24 00:38:54,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:52,023 INFO Connection check task end +2025-09-24 00:38:54,337 INFO Out dated connection ,size=0 -2025-09-23 00:38:53,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:54,337 INFO Connection check task end -2025-09-23 00:38:55,023 INFO Connection check task start +2025-09-24 00:38:57,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:55,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:38:57,337 INFO Connection check task start -2025-09-23 00:38:55,023 INFO Out dated connection ,size=0 +2025-09-24 00:38:57,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:55,023 INFO Connection check task end +2025-09-24 00:38:57,337 INFO Out dated connection ,size=0 -2025-09-23 00:38:56,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:38:57,337 INFO Connection check task end -2025-09-23 00:38:58,024 INFO Connection check task start +2025-09-24 00:39:00,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:38:58,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:00,338 INFO Connection check task start -2025-09-23 00:38:58,025 INFO Out dated connection ,size=0 +2025-09-24 00:39:00,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:38:58,025 INFO Connection check task end +2025-09-24 00:39:00,338 INFO Out dated connection ,size=0 -2025-09-23 00:38:59,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:00,338 INFO Connection check task end -2025-09-23 00:39:01,025 INFO Connection check task start +2025-09-24 00:39:03,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:01,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:03,339 INFO Connection check task start -2025-09-23 00:39:01,025 INFO Out dated connection ,size=0 +2025-09-24 00:39:03,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:01,025 INFO Connection check task end +2025-09-24 00:39:03,339 INFO Out dated connection ,size=0 -2025-09-23 00:39:02,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:03,340 INFO Connection check task end -2025-09-23 00:39:04,025 INFO Connection check task start +2025-09-24 00:39:06,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:04,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:06,340 INFO Connection check task start -2025-09-23 00:39:04,025 INFO Out dated connection ,size=0 +2025-09-24 00:39:06,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:04,025 INFO Connection check task end +2025-09-24 00:39:06,340 INFO Out dated connection ,size=0 -2025-09-23 00:39:05,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:06,340 INFO Connection check task end -2025-09-23 00:39:07,026 INFO Connection check task start +2025-09-24 00:39:09,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:07,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:09,341 INFO Connection check task start -2025-09-23 00:39:07,026 INFO Out dated connection ,size=0 +2025-09-24 00:39:09,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:07,026 INFO Connection check task end +2025-09-24 00:39:09,341 INFO Out dated connection ,size=0 -2025-09-23 00:39:08,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:09,341 INFO Connection check task end -2025-09-23 00:39:10,026 INFO Connection check task start +2025-09-24 00:39:12,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:10,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:12,342 INFO Connection check task start -2025-09-23 00:39:10,027 INFO Out dated connection ,size=0 +2025-09-24 00:39:12,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:10,027 INFO Connection check task end +2025-09-24 00:39:12,342 INFO Out dated connection ,size=0 -2025-09-23 00:39:11,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:12,342 INFO Connection check task end -2025-09-23 00:39:13,027 INFO Connection check task start +2025-09-24 00:39:15,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:13,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:15,342 INFO Connection check task start -2025-09-23 00:39:13,027 INFO Out dated connection ,size=0 +2025-09-24 00:39:15,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:13,027 INFO Connection check task end +2025-09-24 00:39:15,343 INFO Out dated connection ,size=0 -2025-09-23 00:39:14,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:15,343 INFO Connection check task end -2025-09-23 00:39:16,027 INFO Connection check task start +2025-09-24 00:39:18,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:16,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:18,344 INFO Connection check task start -2025-09-23 00:39:16,028 INFO Out dated connection ,size=0 +2025-09-24 00:39:18,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:16,028 INFO Connection check task end +2025-09-24 00:39:18,344 INFO Out dated connection ,size=0 -2025-09-23 00:39:17,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:18,344 INFO Connection check task end -2025-09-23 00:39:19,028 INFO Connection check task start +2025-09-24 00:39:21,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:19,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:21,345 INFO Connection check task start -2025-09-23 00:39:19,028 INFO Out dated connection ,size=0 +2025-09-24 00:39:21,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:19,028 INFO Connection check task end +2025-09-24 00:39:21,345 INFO Out dated connection ,size=0 -2025-09-23 00:39:20,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:21,345 INFO Connection check task end -2025-09-23 00:39:22,029 INFO Connection check task start +2025-09-24 00:39:24,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:22,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:24,346 INFO Connection check task start -2025-09-23 00:39:22,029 INFO Out dated connection ,size=0 +2025-09-24 00:39:24,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:22,029 INFO Connection check task end +2025-09-24 00:39:24,346 INFO Out dated connection ,size=0 -2025-09-23 00:39:23,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:24,346 INFO Connection check task end -2025-09-23 00:39:25,030 INFO Connection check task start +2025-09-24 00:39:27,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:25,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:27,346 INFO Connection check task start -2025-09-23 00:39:25,030 INFO Out dated connection ,size=0 +2025-09-24 00:39:27,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:25,030 INFO Connection check task end +2025-09-24 00:39:27,347 INFO Out dated connection ,size=0 -2025-09-23 00:39:26,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:27,347 INFO Connection check task end -2025-09-23 00:39:28,031 INFO Connection check task start +2025-09-24 00:39:30,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:28,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:30,348 INFO Connection check task start -2025-09-23 00:39:28,031 INFO Out dated connection ,size=0 +2025-09-24 00:39:30,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:28,031 INFO Connection check task end +2025-09-24 00:39:30,348 INFO Out dated connection ,size=0 -2025-09-23 00:39:29,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:30,348 INFO Connection check task end -2025-09-23 00:39:31,032 INFO Connection check task start +2025-09-24 00:39:33,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:31,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:33,349 INFO Connection check task start -2025-09-23 00:39:31,032 INFO Out dated connection ,size=0 +2025-09-24 00:39:33,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:31,032 INFO Connection check task end +2025-09-24 00:39:33,350 INFO Out dated connection ,size=0 -2025-09-23 00:39:32,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:33,350 INFO Connection check task end -2025-09-23 00:39:34,032 INFO Connection check task start +2025-09-24 00:39:36,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:34,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:36,350 INFO Connection check task start -2025-09-23 00:39:34,032 INFO Out dated connection ,size=0 +2025-09-24 00:39:36,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:34,032 INFO Connection check task end +2025-09-24 00:39:36,350 INFO Out dated connection ,size=0 -2025-09-23 00:39:35,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:36,350 INFO Connection check task end -2025-09-23 00:39:37,033 INFO Connection check task start +2025-09-24 00:39:39,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:37,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:39,351 INFO Connection check task start -2025-09-23 00:39:37,033 INFO Out dated connection ,size=0 +2025-09-24 00:39:39,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:37,033 INFO Connection check task end +2025-09-24 00:39:39,352 INFO Out dated connection ,size=0 -2025-09-23 00:39:38,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:39,352 INFO Connection check task end -2025-09-23 00:39:40,033 INFO Connection check task start +2025-09-24 00:39:42,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:40,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:42,352 INFO Connection check task start -2025-09-23 00:39:40,033 INFO Out dated connection ,size=0 +2025-09-24 00:39:42,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:40,033 INFO Connection check task end +2025-09-24 00:39:42,352 INFO Out dated connection ,size=0 -2025-09-23 00:39:41,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:42,352 INFO Connection check task end -2025-09-23 00:39:43,034 INFO Connection check task start +2025-09-24 00:39:45,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:43,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:45,353 INFO Connection check task start -2025-09-23 00:39:43,034 INFO Out dated connection ,size=0 +2025-09-24 00:39:45,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:43,034 INFO Connection check task end +2025-09-24 00:39:45,353 INFO Out dated connection ,size=0 -2025-09-23 00:39:44,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:45,353 INFO Connection check task end -2025-09-23 00:39:46,034 INFO Connection check task start +2025-09-24 00:39:48,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:46,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:48,354 INFO Connection check task start -2025-09-23 00:39:46,034 INFO Out dated connection ,size=0 +2025-09-24 00:39:48,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:46,034 INFO Connection check task end +2025-09-24 00:39:48,355 INFO Out dated connection ,size=0 -2025-09-23 00:39:47,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:48,355 INFO Connection check task end -2025-09-23 00:39:49,035 INFO Connection check task start +2025-09-24 00:39:51,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:49,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:51,355 INFO Connection check task start -2025-09-23 00:39:49,035 INFO Out dated connection ,size=0 +2025-09-24 00:39:51,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:49,035 INFO Connection check task end +2025-09-24 00:39:51,355 INFO Out dated connection ,size=0 -2025-09-23 00:39:50,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:51,355 INFO Connection check task end -2025-09-23 00:39:52,035 INFO Connection check task start +2025-09-24 00:39:54,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:52,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:54,356 INFO Connection check task start -2025-09-23 00:39:52,036 INFO Out dated connection ,size=0 +2025-09-24 00:39:54,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:52,036 INFO Connection check task end +2025-09-24 00:39:54,356 INFO Out dated connection ,size=0 -2025-09-23 00:39:53,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:54,356 INFO Connection check task end -2025-09-23 00:39:55,036 INFO Connection check task start +2025-09-24 00:39:57,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:55,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:39:57,356 INFO Connection check task start -2025-09-23 00:39:55,037 INFO Out dated connection ,size=0 +2025-09-24 00:39:57,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:55,037 INFO Connection check task end +2025-09-24 00:39:57,357 INFO Out dated connection ,size=0 -2025-09-23 00:39:56,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:39:57,357 INFO Connection check task end -2025-09-23 00:39:58,037 INFO Connection check task start +2025-09-24 00:40:00,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:39:58,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:00,357 INFO Connection check task start -2025-09-23 00:39:58,038 INFO Out dated connection ,size=0 +2025-09-24 00:40:00,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:39:58,038 INFO Connection check task end +2025-09-24 00:40:00,357 INFO Out dated connection ,size=0 -2025-09-23 00:39:59,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:00,357 INFO Connection check task end -2025-09-23 00:40:01,038 INFO Connection check task start +2025-09-24 00:40:03,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:01,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:03,358 INFO Connection check task start -2025-09-23 00:40:01,039 INFO Out dated connection ,size=0 +2025-09-24 00:40:03,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:01,039 INFO Connection check task end +2025-09-24 00:40:03,358 INFO Out dated connection ,size=0 -2025-09-23 00:40:02,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:03,358 INFO Connection check task end -2025-09-23 00:40:04,040 INFO Connection check task start +2025-09-24 00:40:06,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:04,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:06,359 INFO Connection check task start -2025-09-23 00:40:04,040 INFO Out dated connection ,size=0 +2025-09-24 00:40:06,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:04,040 INFO Connection check task end +2025-09-24 00:40:06,359 INFO Out dated connection ,size=0 -2025-09-23 00:40:05,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:06,359 INFO Connection check task end -2025-09-23 00:40:07,041 INFO Connection check task start +2025-09-24 00:40:09,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:07,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:09,360 INFO Connection check task start -2025-09-23 00:40:07,042 INFO Out dated connection ,size=0 +2025-09-24 00:40:09,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:07,042 INFO Connection check task end +2025-09-24 00:40:09,360 INFO Out dated connection ,size=0 -2025-09-23 00:40:08,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:09,360 INFO Connection check task end -2025-09-23 00:40:10,042 INFO Connection check task start +2025-09-24 00:40:12,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:10,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:12,361 INFO Connection check task start -2025-09-23 00:40:10,042 INFO Out dated connection ,size=0 +2025-09-24 00:40:12,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:10,042 INFO Connection check task end +2025-09-24 00:40:12,361 INFO Out dated connection ,size=0 -2025-09-23 00:40:11,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:12,361 INFO Connection check task end -2025-09-23 00:40:13,043 INFO Connection check task start +2025-09-24 00:40:15,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:13,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:15,362 INFO Connection check task start -2025-09-23 00:40:13,043 INFO Out dated connection ,size=0 +2025-09-24 00:40:15,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:13,043 INFO Connection check task end +2025-09-24 00:40:15,362 INFO Out dated connection ,size=0 -2025-09-23 00:40:14,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:15,362 INFO Connection check task end -2025-09-23 00:40:16,044 INFO Connection check task start +2025-09-24 00:40:18,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:16,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:18,362 INFO Connection check task start -2025-09-23 00:40:16,044 INFO Out dated connection ,size=0 +2025-09-24 00:40:18,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:16,044 INFO Connection check task end +2025-09-24 00:40:18,363 INFO Out dated connection ,size=0 -2025-09-23 00:40:17,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:18,363 INFO Connection check task end -2025-09-23 00:40:19,045 INFO Connection check task start +2025-09-24 00:40:21,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:19,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:21,364 INFO Connection check task start -2025-09-23 00:40:19,045 INFO Out dated connection ,size=0 +2025-09-24 00:40:21,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:19,045 INFO Connection check task end +2025-09-24 00:40:21,364 INFO Out dated connection ,size=0 -2025-09-23 00:40:20,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:21,364 INFO Connection check task end -2025-09-23 00:40:22,047 INFO Connection check task start +2025-09-24 00:40:24,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:22,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:24,365 INFO Connection check task start -2025-09-23 00:40:22,047 INFO Out dated connection ,size=0 +2025-09-24 00:40:24,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:22,047 INFO Connection check task end +2025-09-24 00:40:24,365 INFO Out dated connection ,size=0 -2025-09-23 00:40:23,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:24,366 INFO Connection check task end -2025-09-23 00:40:25,047 INFO Connection check task start +2025-09-24 00:40:27,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:25,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:27,366 INFO Connection check task start -2025-09-23 00:40:25,047 INFO Out dated connection ,size=0 +2025-09-24 00:40:27,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:25,047 INFO Connection check task end +2025-09-24 00:40:27,366 INFO Out dated connection ,size=0 -2025-09-23 00:40:26,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:27,366 INFO Connection check task end -2025-09-23 00:40:28,049 INFO Connection check task start +2025-09-24 00:40:30,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:28,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:30,366 INFO Connection check task start -2025-09-23 00:40:28,049 INFO Out dated connection ,size=0 +2025-09-24 00:40:30,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:28,049 INFO Connection check task end +2025-09-24 00:40:30,366 INFO Out dated connection ,size=0 -2025-09-23 00:40:29,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:30,366 INFO Connection check task end -2025-09-23 00:40:31,050 INFO Connection check task start +2025-09-24 00:40:33,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:31,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:33,367 INFO Connection check task start -2025-09-23 00:40:31,050 INFO Out dated connection ,size=0 +2025-09-24 00:40:33,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:31,050 INFO Connection check task end +2025-09-24 00:40:33,367 INFO Out dated connection ,size=0 -2025-09-23 00:40:32,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:33,367 INFO Connection check task end -2025-09-23 00:40:34,051 INFO Connection check task start +2025-09-24 00:40:36,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:34,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:36,368 INFO Connection check task start -2025-09-23 00:40:34,051 INFO Out dated connection ,size=0 +2025-09-24 00:40:36,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:34,051 INFO Connection check task end +2025-09-24 00:40:36,368 INFO Out dated connection ,size=0 -2025-09-23 00:40:35,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:36,368 INFO Connection check task end -2025-09-23 00:40:37,052 INFO Connection check task start +2025-09-24 00:40:39,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:37,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:39,368 INFO Connection check task start -2025-09-23 00:40:37,052 INFO Out dated connection ,size=0 +2025-09-24 00:40:39,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:37,052 INFO Connection check task end +2025-09-24 00:40:39,369 INFO Out dated connection ,size=0 -2025-09-23 00:40:38,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:39,369 INFO Connection check task end -2025-09-23 00:40:40,052 INFO Connection check task start +2025-09-24 00:40:42,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:40,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:42,369 INFO Connection check task start -2025-09-23 00:40:40,053 INFO Out dated connection ,size=0 +2025-09-24 00:40:42,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:40,053 INFO Connection check task end +2025-09-24 00:40:42,369 INFO Out dated connection ,size=0 -2025-09-23 00:40:41,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:42,369 INFO Connection check task end -2025-09-23 00:40:43,053 INFO Connection check task start +2025-09-24 00:40:45,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:43,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:45,370 INFO Connection check task start -2025-09-23 00:40:43,053 INFO Out dated connection ,size=0 +2025-09-24 00:40:45,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:43,053 INFO Connection check task end +2025-09-24 00:40:45,371 INFO Out dated connection ,size=0 -2025-09-23 00:40:44,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:45,371 INFO Connection check task end -2025-09-23 00:40:46,054 INFO Connection check task start +2025-09-24 00:40:48,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:46,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:48,371 INFO Connection check task start -2025-09-23 00:40:46,054 INFO Out dated connection ,size=0 +2025-09-24 00:40:48,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:46,054 INFO Connection check task end +2025-09-24 00:40:48,371 INFO Out dated connection ,size=0 -2025-09-23 00:40:47,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:48,371 INFO Connection check task end -2025-09-23 00:40:49,055 INFO Connection check task start +2025-09-24 00:40:51,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:49,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:51,371 INFO Connection check task start -2025-09-23 00:40:49,056 INFO Out dated connection ,size=0 +2025-09-24 00:40:51,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:49,056 INFO Connection check task end +2025-09-24 00:40:51,372 INFO Out dated connection ,size=0 -2025-09-23 00:40:50,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:51,372 INFO Connection check task end -2025-09-23 00:40:52,056 INFO Connection check task start +2025-09-24 00:40:54,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:52,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:54,372 INFO Connection check task start -2025-09-23 00:40:52,056 INFO Out dated connection ,size=0 +2025-09-24 00:40:54,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:52,056 INFO Connection check task end +2025-09-24 00:40:54,373 INFO Out dated connection ,size=0 -2025-09-23 00:40:53,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:54,373 INFO Connection check task end -2025-09-23 00:40:55,056 INFO Connection check task start +2025-09-24 00:40:57,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:55,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:40:57,374 INFO Connection check task start -2025-09-23 00:40:55,057 INFO Out dated connection ,size=0 +2025-09-24 00:40:57,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:55,057 INFO Connection check task end +2025-09-24 00:40:57,374 INFO Out dated connection ,size=0 -2025-09-23 00:40:56,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:40:57,375 INFO Connection check task end -2025-09-23 00:40:58,057 INFO Connection check task start +2025-09-24 00:41:00,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:40:58,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:00,375 INFO Connection check task start -2025-09-23 00:40:58,057 INFO Out dated connection ,size=0 +2025-09-24 00:41:00,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:40:58,057 INFO Connection check task end +2025-09-24 00:41:00,375 INFO Out dated connection ,size=0 -2025-09-23 00:40:59,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:00,375 INFO Connection check task end -2025-09-23 00:41:01,058 INFO Connection check task start +2025-09-24 00:41:03,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:01,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:03,376 INFO Connection check task start -2025-09-23 00:41:01,059 INFO Out dated connection ,size=0 +2025-09-24 00:41:03,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:01,059 INFO Connection check task end +2025-09-24 00:41:03,376 INFO Out dated connection ,size=0 -2025-09-23 00:41:02,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:03,377 INFO Connection check task end -2025-09-23 00:41:04,060 INFO Connection check task start +2025-09-24 00:41:06,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:04,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:06,377 INFO Connection check task start -2025-09-23 00:41:04,061 INFO Out dated connection ,size=0 +2025-09-24 00:41:06,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:04,061 INFO Connection check task end +2025-09-24 00:41:06,377 INFO Out dated connection ,size=0 -2025-09-23 00:41:05,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:06,377 INFO Connection check task end -2025-09-23 00:41:07,062 INFO Connection check task start +2025-09-24 00:41:09,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:07,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:09,378 INFO Connection check task start -2025-09-23 00:41:07,064 INFO Out dated connection ,size=0 +2025-09-24 00:41:09,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:07,064 INFO Connection check task end +2025-09-24 00:41:09,378 INFO Out dated connection ,size=0 -2025-09-23 00:41:08,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:09,378 INFO Connection check task end -2025-09-23 00:41:10,065 INFO Connection check task start +2025-09-24 00:41:12,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:10,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:12,379 INFO Connection check task start -2025-09-23 00:41:10,065 INFO Out dated connection ,size=0 +2025-09-24 00:41:12,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:10,065 INFO Connection check task end +2025-09-24 00:41:12,379 INFO Out dated connection ,size=0 -2025-09-23 00:41:11,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:12,379 INFO Connection check task end -2025-09-23 00:41:13,065 INFO Connection check task start +2025-09-24 00:41:15,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:13,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:15,379 INFO Connection check task start -2025-09-23 00:41:13,066 INFO Out dated connection ,size=0 +2025-09-24 00:41:15,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:13,066 INFO Connection check task end +2025-09-24 00:41:15,379 INFO Out dated connection ,size=0 -2025-09-23 00:41:14,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:15,379 INFO Connection check task end -2025-09-23 00:41:16,066 INFO Connection check task start +2025-09-24 00:41:18,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:16,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:18,380 INFO Connection check task start -2025-09-23 00:41:16,066 INFO Out dated connection ,size=0 +2025-09-24 00:41:18,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:16,066 INFO Connection check task end +2025-09-24 00:41:18,380 INFO Out dated connection ,size=0 -2025-09-23 00:41:17,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:18,380 INFO Connection check task end -2025-09-23 00:41:19,067 INFO Connection check task start +2025-09-24 00:41:21,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:19,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:21,380 INFO Connection check task start -2025-09-23 00:41:19,068 INFO Out dated connection ,size=0 +2025-09-24 00:41:21,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:19,068 INFO Connection check task end +2025-09-24 00:41:21,380 INFO Out dated connection ,size=0 -2025-09-23 00:41:20,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:21,380 INFO Connection check task end -2025-09-23 00:41:22,069 INFO Connection check task start +2025-09-24 00:41:24,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:22,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:24,381 INFO Connection check task start -2025-09-23 00:41:22,069 INFO Out dated connection ,size=0 +2025-09-24 00:41:24,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:22,069 INFO Connection check task end +2025-09-24 00:41:24,382 INFO Out dated connection ,size=0 -2025-09-23 00:41:23,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:24,382 INFO Connection check task end -2025-09-23 00:41:25,070 INFO Connection check task start +2025-09-24 00:41:27,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:25,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:27,383 INFO Connection check task start -2025-09-23 00:41:25,070 INFO Out dated connection ,size=0 +2025-09-24 00:41:27,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:25,070 INFO Connection check task end +2025-09-24 00:41:27,383 INFO Out dated connection ,size=0 -2025-09-23 00:41:26,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:27,383 INFO Connection check task end -2025-09-23 00:41:28,071 INFO Connection check task start +2025-09-24 00:41:30,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:28,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:30,384 INFO Connection check task start -2025-09-23 00:41:28,071 INFO Out dated connection ,size=0 +2025-09-24 00:41:30,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:28,071 INFO Connection check task end +2025-09-24 00:41:30,384 INFO Out dated connection ,size=0 -2025-09-23 00:41:29,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:30,384 INFO Connection check task end -2025-09-23 00:41:31,071 INFO Connection check task start +2025-09-24 00:41:33,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:31,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:33,385 INFO Connection check task start -2025-09-23 00:41:31,072 INFO Out dated connection ,size=0 +2025-09-24 00:41:33,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:31,072 INFO Connection check task end +2025-09-24 00:41:33,386 INFO Out dated connection ,size=0 -2025-09-23 00:41:32,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:33,387 INFO Connection check task end -2025-09-23 00:41:34,072 INFO Connection check task start +2025-09-24 00:41:36,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:34,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:36,388 INFO Connection check task start -2025-09-23 00:41:34,073 INFO Out dated connection ,size=0 +2025-09-24 00:41:36,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:34,073 INFO Connection check task end +2025-09-24 00:41:36,388 INFO Out dated connection ,size=0 -2025-09-23 00:41:35,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:36,388 INFO Connection check task end -2025-09-23 00:41:37,074 INFO Connection check task start +2025-09-24 00:41:39,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:37,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:39,388 INFO Connection check task start -2025-09-23 00:41:37,075 INFO Out dated connection ,size=0 +2025-09-24 00:41:39,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:37,075 INFO Connection check task end +2025-09-24 00:41:39,388 INFO Out dated connection ,size=0 -2025-09-23 00:41:38,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:39,388 INFO Connection check task end -2025-09-23 00:41:40,076 INFO Connection check task start +2025-09-24 00:41:42,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:40,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:42,389 INFO Connection check task start -2025-09-23 00:41:40,076 INFO Out dated connection ,size=0 +2025-09-24 00:41:42,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:40,076 INFO Connection check task end +2025-09-24 00:41:42,390 INFO Out dated connection ,size=0 -2025-09-23 00:41:41,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:42,390 INFO Connection check task end -2025-09-23 00:41:43,077 INFO Connection check task start +2025-09-24 00:41:45,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:43,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:45,391 INFO Connection check task start -2025-09-23 00:41:43,078 INFO Out dated connection ,size=0 +2025-09-24 00:41:45,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:43,078 INFO Connection check task end +2025-09-24 00:41:45,391 INFO Out dated connection ,size=0 -2025-09-23 00:41:44,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:45,391 INFO Connection check task end -2025-09-23 00:41:46,079 INFO Connection check task start +2025-09-24 00:41:48,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:46,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:48,392 INFO Connection check task start -2025-09-23 00:41:46,079 INFO Out dated connection ,size=0 +2025-09-24 00:41:48,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:46,079 INFO Connection check task end +2025-09-24 00:41:48,392 INFO Out dated connection ,size=0 -2025-09-23 00:41:47,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:48,392 INFO Connection check task end -2025-09-23 00:41:49,079 INFO Connection check task start +2025-09-24 00:41:51,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:49,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:51,393 INFO Connection check task start -2025-09-23 00:41:49,079 INFO Out dated connection ,size=0 +2025-09-24 00:41:51,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:49,079 INFO Connection check task end +2025-09-24 00:41:51,394 INFO Out dated connection ,size=0 -2025-09-23 00:41:50,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:51,394 INFO Connection check task end -2025-09-23 00:41:52,081 INFO Connection check task start +2025-09-24 00:41:54,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:52,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:54,394 INFO Connection check task start -2025-09-23 00:41:52,081 INFO Out dated connection ,size=0 +2025-09-24 00:41:54,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:52,081 INFO Connection check task end +2025-09-24 00:41:54,394 INFO Out dated connection ,size=0 -2025-09-23 00:41:53,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:54,394 INFO Connection check task end -2025-09-23 00:41:55,081 INFO Connection check task start +2025-09-24 00:41:57,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:55,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:41:57,396 INFO Connection check task start -2025-09-23 00:41:55,081 INFO Out dated connection ,size=0 +2025-09-24 00:41:57,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:55,082 INFO Connection check task end +2025-09-24 00:41:57,396 INFO Out dated connection ,size=0 -2025-09-23 00:41:56,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:41:57,396 INFO Connection check task end -2025-09-23 00:41:58,083 INFO Connection check task start +2025-09-24 00:42:00,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:41:58,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:00,397 INFO Connection check task start -2025-09-23 00:41:58,083 INFO Out dated connection ,size=0 +2025-09-24 00:42:00,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:41:58,083 INFO Connection check task end +2025-09-24 00:42:00,397 INFO Out dated connection ,size=0 -2025-09-23 00:41:59,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:00,397 INFO Connection check task end -2025-09-23 00:42:01,084 INFO Connection check task start +2025-09-24 00:42:03,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:01,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:03,398 INFO Connection check task start -2025-09-23 00:42:01,084 INFO Out dated connection ,size=0 +2025-09-24 00:42:03,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:01,084 INFO Connection check task end +2025-09-24 00:42:03,398 INFO Out dated connection ,size=0 -2025-09-23 00:42:02,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:03,398 INFO Connection check task end -2025-09-23 00:42:04,085 INFO Connection check task start +2025-09-24 00:42:06,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:06,398 INFO Connection check task start -2025-09-23 00:42:04,085 INFO Out dated connection ,size=0 +2025-09-24 00:42:06,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:04,085 INFO Connection check task end +2025-09-24 00:42:06,398 INFO Out dated connection ,size=0 -2025-09-23 00:42:05,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:06,398 INFO Connection check task end -2025-09-23 00:42:07,085 INFO Connection check task start +2025-09-24 00:42:09,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:07,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:09,399 INFO Connection check task start -2025-09-23 00:42:07,086 INFO Out dated connection ,size=0 +2025-09-24 00:42:09,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:07,086 INFO Connection check task end +2025-09-24 00:42:09,399 INFO Out dated connection ,size=0 -2025-09-23 00:42:08,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:09,399 INFO Connection check task end -2025-09-23 00:42:10,087 INFO Connection check task start +2025-09-24 00:42:12,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:10,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:12,400 INFO Connection check task start -2025-09-23 00:42:10,087 INFO Out dated connection ,size=0 +2025-09-24 00:42:12,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:10,087 INFO Connection check task end +2025-09-24 00:42:12,400 INFO Out dated connection ,size=0 -2025-09-23 00:42:11,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:12,400 INFO Connection check task end -2025-09-23 00:42:13,087 INFO Connection check task start +2025-09-24 00:42:15,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:13,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:15,401 INFO Connection check task start -2025-09-23 00:42:13,087 INFO Out dated connection ,size=0 +2025-09-24 00:42:15,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:13,087 INFO Connection check task end +2025-09-24 00:42:15,401 INFO Out dated connection ,size=0 -2025-09-23 00:42:14,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:15,401 INFO Connection check task end -2025-09-23 00:42:16,088 INFO Connection check task start +2025-09-24 00:42:18,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:16,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:18,403 INFO Connection check task start -2025-09-23 00:42:16,088 INFO Out dated connection ,size=0 +2025-09-24 00:42:18,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:16,088 INFO Connection check task end +2025-09-24 00:42:18,403 INFO Out dated connection ,size=0 -2025-09-23 00:42:17,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:18,403 INFO Connection check task end -2025-09-23 00:42:19,089 INFO Connection check task start +2025-09-24 00:42:21,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:19,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:21,404 INFO Connection check task start -2025-09-23 00:42:19,089 INFO Out dated connection ,size=0 +2025-09-24 00:42:21,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:19,089 INFO Connection check task end +2025-09-24 00:42:21,405 INFO Out dated connection ,size=0 -2025-09-23 00:42:20,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:21,405 INFO Connection check task end -2025-09-23 00:42:22,090 INFO Connection check task start +2025-09-24 00:42:24,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:22,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:24,406 INFO Connection check task start -2025-09-23 00:42:22,090 INFO Out dated connection ,size=0 +2025-09-24 00:42:24,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:22,090 INFO Connection check task end +2025-09-24 00:42:24,406 INFO Out dated connection ,size=0 -2025-09-23 00:42:23,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:24,406 INFO Connection check task end -2025-09-23 00:42:25,091 INFO Connection check task start +2025-09-24 00:42:27,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:25,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:27,407 INFO Connection check task start -2025-09-23 00:42:25,091 INFO Out dated connection ,size=0 +2025-09-24 00:42:27,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:25,091 INFO Connection check task end +2025-09-24 00:42:27,407 INFO Out dated connection ,size=0 -2025-09-23 00:42:26,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:27,407 INFO Connection check task end -2025-09-23 00:42:28,092 INFO Connection check task start +2025-09-24 00:42:30,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:28,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:30,407 INFO Connection check task start -2025-09-23 00:42:28,093 INFO Out dated connection ,size=0 +2025-09-24 00:42:30,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:28,093 INFO Connection check task end +2025-09-24 00:42:30,407 INFO Out dated connection ,size=0 -2025-09-23 00:42:29,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:30,407 INFO Connection check task end -2025-09-23 00:42:31,094 INFO Connection check task start +2025-09-24 00:42:33,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:31,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:33,408 INFO Connection check task start -2025-09-23 00:42:31,094 INFO Out dated connection ,size=0 +2025-09-24 00:42:33,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:31,094 INFO Connection check task end +2025-09-24 00:42:33,408 INFO Out dated connection ,size=0 -2025-09-23 00:42:32,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:33,408 INFO Connection check task end -2025-09-23 00:42:34,095 INFO Connection check task start +2025-09-24 00:42:36,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:34,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:36,408 INFO Connection check task start -2025-09-23 00:42:34,095 INFO Out dated connection ,size=0 +2025-09-24 00:42:36,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:34,095 INFO Connection check task end +2025-09-24 00:42:36,409 INFO Out dated connection ,size=0 -2025-09-23 00:42:35,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:36,409 INFO Connection check task end -2025-09-23 00:42:37,097 INFO Connection check task start +2025-09-24 00:42:39,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:37,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:39,409 INFO Connection check task start -2025-09-23 00:42:37,097 INFO Out dated connection ,size=0 +2025-09-24 00:42:39,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:37,097 INFO Connection check task end +2025-09-24 00:42:39,409 INFO Out dated connection ,size=0 -2025-09-23 00:42:38,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:39,409 INFO Connection check task end -2025-09-23 00:42:40,097 INFO Connection check task start +2025-09-24 00:42:42,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:40,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:42,410 INFO Connection check task start -2025-09-23 00:42:40,097 INFO Out dated connection ,size=0 +2025-09-24 00:42:42,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:40,098 INFO Connection check task end +2025-09-24 00:42:42,410 INFO Out dated connection ,size=0 -2025-09-23 00:42:41,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:42,410 INFO Connection check task end -2025-09-23 00:42:43,098 INFO Connection check task start +2025-09-24 00:42:45,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:43,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:45,411 INFO Connection check task start -2025-09-23 00:42:43,098 INFO Out dated connection ,size=0 +2025-09-24 00:42:45,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:43,098 INFO Connection check task end +2025-09-24 00:42:45,411 INFO Out dated connection ,size=0 -2025-09-23 00:42:44,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:45,411 INFO Connection check task end -2025-09-23 00:42:46,099 INFO Connection check task start +2025-09-24 00:42:48,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:46,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:48,412 INFO Connection check task start -2025-09-23 00:42:46,099 INFO Out dated connection ,size=0 +2025-09-24 00:42:48,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:46,099 INFO Connection check task end +2025-09-24 00:42:48,412 INFO Out dated connection ,size=0 -2025-09-23 00:42:47,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:48,412 INFO Connection check task end -2025-09-23 00:42:49,100 INFO Connection check task start +2025-09-24 00:42:51,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:49,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:51,413 INFO Connection check task start -2025-09-23 00:42:49,100 INFO Out dated connection ,size=0 +2025-09-24 00:42:51,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:49,100 INFO Connection check task end +2025-09-24 00:42:51,413 INFO Out dated connection ,size=0 -2025-09-23 00:42:50,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:51,413 INFO Connection check task end -2025-09-23 00:42:52,100 INFO Connection check task start +2025-09-24 00:42:54,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:52,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:54,413 INFO Connection check task start -2025-09-23 00:42:52,101 INFO Out dated connection ,size=0 +2025-09-24 00:42:54,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:52,101 INFO Connection check task end +2025-09-24 00:42:54,414 INFO Out dated connection ,size=0 -2025-09-23 00:42:53,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:54,414 INFO Connection check task end -2025-09-23 00:42:55,101 INFO Connection check task start +2025-09-24 00:42:57,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:55,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:42:57,415 INFO Connection check task start -2025-09-23 00:42:55,101 INFO Out dated connection ,size=0 +2025-09-24 00:42:57,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:55,102 INFO Connection check task end +2025-09-24 00:42:57,415 INFO Out dated connection ,size=0 -2025-09-23 00:42:56,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:42:57,415 INFO Connection check task end -2025-09-23 00:42:58,102 INFO Connection check task start +2025-09-24 00:43:00,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:42:58,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:00,415 INFO Connection check task start -2025-09-23 00:42:58,102 INFO Out dated connection ,size=0 +2025-09-24 00:43:00,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:42:58,102 INFO Connection check task end +2025-09-24 00:43:00,415 INFO Out dated connection ,size=0 -2025-09-23 00:42:59,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:00,415 INFO Connection check task end -2025-09-23 00:43:01,103 INFO Connection check task start +2025-09-24 00:43:03,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:01,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:03,416 INFO Connection check task start -2025-09-23 00:43:01,103 INFO Out dated connection ,size=0 +2025-09-24 00:43:03,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:01,103 INFO Connection check task end +2025-09-24 00:43:03,416 INFO Out dated connection ,size=0 -2025-09-23 00:43:02,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:03,416 INFO Connection check task end -2025-09-23 00:43:04,104 INFO Connection check task start +2025-09-24 00:43:06,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:04,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:06,417 INFO Connection check task start -2025-09-23 00:43:04,104 INFO Out dated connection ,size=0 +2025-09-24 00:43:06,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:04,104 INFO Connection check task end +2025-09-24 00:43:06,417 INFO Out dated connection ,size=0 -2025-09-23 00:43:05,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:06,417 INFO Connection check task end -2025-09-23 00:43:07,104 INFO Connection check task start +2025-09-24 00:43:09,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:07,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:09,418 INFO Connection check task start -2025-09-23 00:43:07,104 INFO Out dated connection ,size=0 +2025-09-24 00:43:09,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:07,104 INFO Connection check task end +2025-09-24 00:43:09,418 INFO Out dated connection ,size=0 -2025-09-23 00:43:08,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:09,418 INFO Connection check task end -2025-09-23 00:43:10,105 INFO Connection check task start +2025-09-24 00:43:12,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:10,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:12,418 INFO Connection check task start -2025-09-23 00:43:10,105 INFO Out dated connection ,size=0 +2025-09-24 00:43:12,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:10,105 INFO Connection check task end +2025-09-24 00:43:12,419 INFO Out dated connection ,size=0 -2025-09-23 00:43:11,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:12,419 INFO Connection check task end -2025-09-23 00:43:13,105 INFO Connection check task start +2025-09-24 00:43:15,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:13,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:15,419 INFO Connection check task start -2025-09-23 00:43:13,105 INFO Out dated connection ,size=0 +2025-09-24 00:43:15,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:13,105 INFO Connection check task end +2025-09-24 00:43:15,419 INFO Out dated connection ,size=0 -2025-09-23 00:43:14,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:15,419 INFO Connection check task end -2025-09-23 00:43:16,106 INFO Connection check task start +2025-09-24 00:43:18,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:16,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:18,419 INFO Connection check task start -2025-09-23 00:43:16,106 INFO Out dated connection ,size=0 +2025-09-24 00:43:18,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:16,106 INFO Connection check task end +2025-09-24 00:43:18,420 INFO Out dated connection ,size=0 -2025-09-23 00:43:17,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:18,420 INFO Connection check task end -2025-09-23 00:43:19,106 INFO Connection check task start +2025-09-24 00:43:21,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:19,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:21,420 INFO Connection check task start -2025-09-23 00:43:19,107 INFO Out dated connection ,size=0 +2025-09-24 00:43:21,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:19,107 INFO Connection check task end +2025-09-24 00:43:21,420 INFO Out dated connection ,size=0 -2025-09-23 00:43:20,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:21,420 INFO Connection check task end -2025-09-23 00:43:22,107 INFO Connection check task start +2025-09-24 00:43:24,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:22,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:24,421 INFO Connection check task start -2025-09-23 00:43:22,107 INFO Out dated connection ,size=0 +2025-09-24 00:43:24,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:22,107 INFO Connection check task end +2025-09-24 00:43:24,421 INFO Out dated connection ,size=0 -2025-09-23 00:43:23,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:24,421 INFO Connection check task end -2025-09-23 00:43:25,108 INFO Connection check task start +2025-09-24 00:43:27,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:25,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:27,421 INFO Connection check task start -2025-09-23 00:43:25,108 INFO Out dated connection ,size=0 +2025-09-24 00:43:27,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:25,108 INFO Connection check task end +2025-09-24 00:43:27,421 INFO Out dated connection ,size=0 -2025-09-23 00:43:26,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:27,421 INFO Connection check task end -2025-09-23 00:43:28,109 INFO Connection check task start +2025-09-24 00:43:30,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:28,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:30,422 INFO Connection check task start -2025-09-23 00:43:28,109 INFO Out dated connection ,size=0 +2025-09-24 00:43:30,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:28,109 INFO Connection check task end +2025-09-24 00:43:30,422 INFO Out dated connection ,size=0 -2025-09-23 00:43:29,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:30,422 INFO Connection check task end -2025-09-23 00:43:31,110 INFO Connection check task start +2025-09-24 00:43:33,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:31,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:33,424 INFO Connection check task start -2025-09-23 00:43:31,110 INFO Out dated connection ,size=0 +2025-09-24 00:43:33,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:31,110 INFO Connection check task end +2025-09-24 00:43:33,424 INFO Out dated connection ,size=0 -2025-09-23 00:43:32,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:33,424 INFO Connection check task end -2025-09-23 00:43:34,111 INFO Connection check task start +2025-09-24 00:43:36,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:34,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:36,425 INFO Connection check task start -2025-09-23 00:43:34,111 INFO Out dated connection ,size=0 +2025-09-24 00:43:36,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:34,111 INFO Connection check task end +2025-09-24 00:43:36,425 INFO Out dated connection ,size=0 -2025-09-23 00:43:35,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:36,425 INFO Connection check task end -2025-09-23 00:43:37,111 INFO Connection check task start +2025-09-24 00:43:39,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:37,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:39,425 INFO Connection check task start -2025-09-23 00:43:37,111 INFO Out dated connection ,size=0 +2025-09-24 00:43:39,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:37,111 INFO Connection check task end +2025-09-24 00:43:39,425 INFO Out dated connection ,size=0 -2025-09-23 00:43:38,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:39,425 INFO Connection check task end -2025-09-23 00:43:40,112 INFO Connection check task start +2025-09-24 00:43:42,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:40,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:42,426 INFO Connection check task start -2025-09-23 00:43:40,113 INFO Out dated connection ,size=0 +2025-09-24 00:43:42,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:40,113 INFO Connection check task end +2025-09-24 00:43:42,426 INFO Out dated connection ,size=0 -2025-09-23 00:43:41,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:42,426 INFO Connection check task end -2025-09-23 00:43:43,114 INFO Connection check task start +2025-09-24 00:43:45,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:43,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:45,427 INFO Connection check task start -2025-09-23 00:43:43,114 INFO Out dated connection ,size=0 +2025-09-24 00:43:45,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:43,114 INFO Connection check task end +2025-09-24 00:43:45,427 INFO Out dated connection ,size=0 -2025-09-23 00:43:44,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:45,427 INFO Connection check task end -2025-09-23 00:43:46,115 INFO Connection check task start +2025-09-24 00:43:48,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:46,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:48,428 INFO Connection check task start -2025-09-23 00:43:46,115 INFO Out dated connection ,size=0 +2025-09-24 00:43:48,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:46,115 INFO Connection check task end +2025-09-24 00:43:48,428 INFO Out dated connection ,size=0 -2025-09-23 00:43:47,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:48,428 INFO Connection check task end -2025-09-23 00:43:49,116 INFO Connection check task start +2025-09-24 00:43:51,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:49,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:51,429 INFO Connection check task start -2025-09-23 00:43:49,117 INFO Out dated connection ,size=0 +2025-09-24 00:43:51,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:49,117 INFO Connection check task end +2025-09-24 00:43:51,429 INFO Out dated connection ,size=0 -2025-09-23 00:43:50,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:51,429 INFO Connection check task end -2025-09-23 00:43:52,117 INFO Connection check task start +2025-09-24 00:43:54,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:52,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:54,430 INFO Connection check task start -2025-09-23 00:43:52,118 INFO Out dated connection ,size=0 +2025-09-24 00:43:54,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:52,118 INFO Connection check task end +2025-09-24 00:43:54,430 INFO Out dated connection ,size=0 -2025-09-23 00:43:53,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:54,430 INFO Connection check task end -2025-09-23 00:43:55,118 INFO Connection check task start +2025-09-24 00:43:57,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:55,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:43:57,430 INFO Connection check task start -2025-09-23 00:43:55,119 INFO Out dated connection ,size=0 +2025-09-24 00:43:57,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:55,119 INFO Connection check task end +2025-09-24 00:43:57,431 INFO Out dated connection ,size=0 -2025-09-23 00:43:56,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:43:57,431 INFO Connection check task end -2025-09-23 00:43:58,119 INFO Connection check task start +2025-09-24 00:44:00,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:43:58,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:00,433 INFO Connection check task start -2025-09-23 00:43:58,119 INFO Out dated connection ,size=0 +2025-09-24 00:44:00,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:43:58,120 INFO Connection check task end +2025-09-24 00:44:00,434 INFO Out dated connection ,size=0 -2025-09-23 00:43:59,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:00,434 INFO Connection check task end -2025-09-23 00:44:01,121 INFO Connection check task start +2025-09-24 00:44:03,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:01,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:03,435 INFO Connection check task start -2025-09-23 00:44:01,121 INFO Out dated connection ,size=0 +2025-09-24 00:44:03,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:01,121 INFO Connection check task end +2025-09-24 00:44:03,435 INFO Out dated connection ,size=0 -2025-09-23 00:44:02,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:03,435 INFO Connection check task end -2025-09-23 00:44:04,121 INFO Connection check task start +2025-09-24 00:44:06,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:04,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:06,435 INFO Connection check task start -2025-09-23 00:44:04,122 INFO Out dated connection ,size=0 +2025-09-24 00:44:06,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:04,122 INFO Connection check task end +2025-09-24 00:44:06,435 INFO Out dated connection ,size=0 -2025-09-23 00:44:05,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:06,435 INFO Connection check task end -2025-09-23 00:44:07,123 INFO Connection check task start +2025-09-24 00:44:09,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:07,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:09,436 INFO Connection check task start -2025-09-23 00:44:07,123 INFO Out dated connection ,size=0 +2025-09-24 00:44:09,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:07,123 INFO Connection check task end +2025-09-24 00:44:09,436 INFO Out dated connection ,size=0 -2025-09-23 00:44:08,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:09,436 INFO Connection check task end -2025-09-23 00:44:10,123 INFO Connection check task start +2025-09-24 00:44:12,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:10,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:12,436 INFO Connection check task start -2025-09-23 00:44:10,123 INFO Out dated connection ,size=0 +2025-09-24 00:44:12,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:10,123 INFO Connection check task end +2025-09-24 00:44:12,437 INFO Out dated connection ,size=0 -2025-09-23 00:44:11,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:12,437 INFO Connection check task end -2025-09-23 00:44:13,124 INFO Connection check task start +2025-09-24 00:44:15,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:13,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:15,437 INFO Connection check task start -2025-09-23 00:44:13,124 INFO Out dated connection ,size=0 +2025-09-24 00:44:15,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:13,124 INFO Connection check task end +2025-09-24 00:44:15,437 INFO Out dated connection ,size=0 -2025-09-23 00:44:14,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:15,437 INFO Connection check task end -2025-09-23 00:44:16,125 INFO Connection check task start +2025-09-24 00:44:18,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:16,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:18,437 INFO Connection check task start -2025-09-23 00:44:16,125 INFO Out dated connection ,size=0 +2025-09-24 00:44:18,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:16,126 INFO Connection check task end +2025-09-24 00:44:18,438 INFO Out dated connection ,size=0 -2025-09-23 00:44:17,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:18,438 INFO Connection check task end -2025-09-23 00:44:19,126 INFO Connection check task start +2025-09-24 00:44:21,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:19,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:21,438 INFO Connection check task start -2025-09-23 00:44:19,126 INFO Out dated connection ,size=0 +2025-09-24 00:44:21,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:19,126 INFO Connection check task end +2025-09-24 00:44:21,438 INFO Out dated connection ,size=0 -2025-09-23 00:44:20,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:21,438 INFO Connection check task end -2025-09-23 00:44:22,127 INFO Connection check task start +2025-09-24 00:44:24,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:22,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:24,438 INFO Connection check task start -2025-09-23 00:44:22,127 INFO Out dated connection ,size=0 +2025-09-24 00:44:24,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:22,127 INFO Connection check task end +2025-09-24 00:44:24,439 INFO Out dated connection ,size=0 -2025-09-23 00:44:23,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:24,439 INFO Connection check task end -2025-09-23 00:44:25,128 INFO Connection check task start +2025-09-24 00:44:27,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:25,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:27,439 INFO Connection check task start -2025-09-23 00:44:25,128 INFO Out dated connection ,size=0 +2025-09-24 00:44:27,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:25,128 INFO Connection check task end +2025-09-24 00:44:27,439 INFO Out dated connection ,size=0 -2025-09-23 00:44:26,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:27,439 INFO Connection check task end -2025-09-23 00:44:28,130 INFO Connection check task start +2025-09-24 00:44:30,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:28,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:30,440 INFO Connection check task start -2025-09-23 00:44:28,130 INFO Out dated connection ,size=0 +2025-09-24 00:44:30,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:28,130 INFO Connection check task end +2025-09-24 00:44:30,441 INFO Out dated connection ,size=0 -2025-09-23 00:44:29,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:30,441 INFO Connection check task end -2025-09-23 00:44:31,131 INFO Connection check task start +2025-09-24 00:44:33,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:31,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:33,441 INFO Connection check task start -2025-09-23 00:44:31,131 INFO Out dated connection ,size=0 +2025-09-24 00:44:33,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:31,131 INFO Connection check task end +2025-09-24 00:44:33,441 INFO Out dated connection ,size=0 -2025-09-23 00:44:32,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:33,441 INFO Connection check task end -2025-09-23 00:44:34,132 INFO Connection check task start +2025-09-24 00:44:36,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:34,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:36,441 INFO Connection check task start -2025-09-23 00:44:34,133 INFO Out dated connection ,size=0 +2025-09-24 00:44:36,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:34,133 INFO Connection check task end +2025-09-24 00:44:36,442 INFO Out dated connection ,size=0 -2025-09-23 00:44:35,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:36,442 INFO Connection check task end -2025-09-23 00:44:37,134 INFO Connection check task start +2025-09-24 00:44:39,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:37,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:39,442 INFO Connection check task start -2025-09-23 00:44:37,134 INFO Out dated connection ,size=0 +2025-09-24 00:44:39,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:37,134 INFO Connection check task end +2025-09-24 00:44:39,442 INFO Out dated connection ,size=0 -2025-09-23 00:44:38,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:39,442 INFO Connection check task end -2025-09-23 00:44:40,135 INFO Connection check task start +2025-09-24 00:44:42,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:40,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:42,443 INFO Connection check task start -2025-09-23 00:44:40,135 INFO Out dated connection ,size=0 +2025-09-24 00:44:42,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:40,135 INFO Connection check task end +2025-09-24 00:44:42,443 INFO Out dated connection ,size=0 -2025-09-23 00:44:41,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:42,443 INFO Connection check task end -2025-09-23 00:44:43,137 INFO Connection check task start +2025-09-24 00:44:45,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:43,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:45,444 INFO Connection check task start -2025-09-23 00:44:43,137 INFO Out dated connection ,size=0 +2025-09-24 00:44:45,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:43,137 INFO Connection check task end +2025-09-24 00:44:45,444 INFO Out dated connection ,size=0 -2025-09-23 00:44:44,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:45,444 INFO Connection check task end -2025-09-23 00:44:46,138 INFO Connection check task start +2025-09-24 00:44:48,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:46,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:48,444 INFO Connection check task start -2025-09-23 00:44:46,138 INFO Out dated connection ,size=0 +2025-09-24 00:44:48,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:46,138 INFO Connection check task end +2025-09-24 00:44:48,444 INFO Out dated connection ,size=0 -2025-09-23 00:44:47,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:48,444 INFO Connection check task end -2025-09-23 00:44:49,139 INFO Connection check task start +2025-09-24 00:44:51,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:49,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:51,445 INFO Connection check task start -2025-09-23 00:44:49,139 INFO Out dated connection ,size=0 +2025-09-24 00:44:51,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:49,139 INFO Connection check task end +2025-09-24 00:44:51,446 INFO Out dated connection ,size=0 -2025-09-23 00:44:50,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:51,446 INFO Connection check task end -2025-09-23 00:44:52,141 INFO Connection check task start +2025-09-24 00:44:54,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:52,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:54,447 INFO Connection check task start -2025-09-23 00:44:52,141 INFO Out dated connection ,size=0 +2025-09-24 00:44:54,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:52,141 INFO Connection check task end +2025-09-24 00:44:54,447 INFO Out dated connection ,size=0 -2025-09-23 00:44:53,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:54,447 INFO Connection check task end -2025-09-23 00:44:55,141 INFO Connection check task start +2025-09-24 00:44:57,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:55,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:44:57,448 INFO Connection check task start -2025-09-23 00:44:55,141 INFO Out dated connection ,size=0 +2025-09-24 00:44:57,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:55,141 INFO Connection check task end +2025-09-24 00:44:57,448 INFO Out dated connection ,size=0 -2025-09-23 00:44:56,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:44:57,448 INFO Connection check task end -2025-09-23 00:44:58,143 INFO Connection check task start +2025-09-24 00:45:00,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:44:58,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:00,449 INFO Connection check task start -2025-09-23 00:44:58,143 INFO Out dated connection ,size=0 +2025-09-24 00:45:00,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:44:58,143 INFO Connection check task end +2025-09-24 00:45:00,449 INFO Out dated connection ,size=0 -2025-09-23 00:44:59,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:00,449 INFO Connection check task end -2025-09-23 00:45:01,144 INFO Connection check task start +2025-09-24 00:45:03,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:01,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:03,450 INFO Connection check task start -2025-09-23 00:45:01,144 INFO Out dated connection ,size=0 +2025-09-24 00:45:03,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:01,144 INFO Connection check task end +2025-09-24 00:45:03,450 INFO Out dated connection ,size=0 -2025-09-23 00:45:02,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:03,450 INFO Connection check task end -2025-09-23 00:45:04,145 INFO Connection check task start +2025-09-24 00:45:06,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:04,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:06,451 INFO Connection check task start -2025-09-23 00:45:04,145 INFO Out dated connection ,size=0 +2025-09-24 00:45:06,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:04,145 INFO Connection check task end +2025-09-24 00:45:06,451 INFO Out dated connection ,size=0 -2025-09-23 00:45:05,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:06,451 INFO Connection check task end -2025-09-23 00:45:07,146 INFO Connection check task start +2025-09-24 00:45:09,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:07,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:09,451 INFO Connection check task start -2025-09-23 00:45:07,146 INFO Out dated connection ,size=0 +2025-09-24 00:45:09,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:07,146 INFO Connection check task end +2025-09-24 00:45:09,452 INFO Out dated connection ,size=0 -2025-09-23 00:45:08,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:09,452 INFO Connection check task end -2025-09-23 00:45:10,147 INFO Connection check task start +2025-09-24 00:45:12,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:10,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:12,452 INFO Connection check task start -2025-09-23 00:45:10,148 INFO Out dated connection ,size=0 +2025-09-24 00:45:12,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:10,148 INFO Connection check task end +2025-09-24 00:45:12,452 INFO Out dated connection ,size=0 -2025-09-23 00:45:11,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:12,452 INFO Connection check task end -2025-09-23 00:45:13,148 INFO Connection check task start +2025-09-24 00:45:15,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:13,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:15,453 INFO Connection check task start -2025-09-23 00:45:13,148 INFO Out dated connection ,size=0 +2025-09-24 00:45:15,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:13,148 INFO Connection check task end +2025-09-24 00:45:15,453 INFO Out dated connection ,size=0 -2025-09-23 00:45:14,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:15,453 INFO Connection check task end -2025-09-23 00:45:16,150 INFO Connection check task start +2025-09-24 00:45:18,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:16,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:18,454 INFO Connection check task start -2025-09-23 00:45:16,150 INFO Out dated connection ,size=0 +2025-09-24 00:45:18,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:16,150 INFO Connection check task end +2025-09-24 00:45:18,454 INFO Out dated connection ,size=0 -2025-09-23 00:45:17,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:18,454 INFO Connection check task end -2025-09-23 00:45:19,151 INFO Connection check task start +2025-09-24 00:45:21,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:19,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:21,455 INFO Connection check task start -2025-09-23 00:45:19,151 INFO Out dated connection ,size=0 +2025-09-24 00:45:21,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:19,151 INFO Connection check task end +2025-09-24 00:45:21,455 INFO Out dated connection ,size=0 -2025-09-23 00:45:20,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:21,455 INFO Connection check task end -2025-09-23 00:45:22,152 INFO Connection check task start +2025-09-24 00:45:24,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:22,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:24,456 INFO Connection check task start -2025-09-23 00:45:22,152 INFO Out dated connection ,size=0 +2025-09-24 00:45:24,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:22,153 INFO Connection check task end +2025-09-24 00:45:24,456 INFO Out dated connection ,size=0 -2025-09-23 00:45:23,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:24,456 INFO Connection check task end -2025-09-23 00:45:25,153 INFO Connection check task start +2025-09-24 00:45:27,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:25,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:27,457 INFO Connection check task start -2025-09-23 00:45:25,154 INFO Out dated connection ,size=0 +2025-09-24 00:45:27,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:25,154 INFO Connection check task end +2025-09-24 00:45:27,457 INFO Out dated connection ,size=0 -2025-09-23 00:45:26,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:27,457 INFO Connection check task end -2025-09-23 00:45:28,155 INFO Connection check task start +2025-09-24 00:45:30,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:28,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:30,457 INFO Connection check task start -2025-09-23 00:45:28,155 INFO Out dated connection ,size=0 +2025-09-24 00:45:30,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:28,155 INFO Connection check task end +2025-09-24 00:45:30,457 INFO Out dated connection ,size=0 -2025-09-23 00:45:29,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:30,457 INFO Connection check task end -2025-09-23 00:45:31,156 INFO Connection check task start +2025-09-24 00:45:33,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:31,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:33,458 INFO Connection check task start -2025-09-23 00:45:31,156 INFO Out dated connection ,size=0 +2025-09-24 00:45:33,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:31,156 INFO Connection check task end +2025-09-24 00:45:33,458 INFO Out dated connection ,size=0 -2025-09-23 00:45:32,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:33,458 INFO Connection check task end -2025-09-23 00:45:34,156 INFO Connection check task start +2025-09-24 00:45:36,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:34,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:36,459 INFO Connection check task start -2025-09-23 00:45:34,157 INFO Out dated connection ,size=0 +2025-09-24 00:45:36,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:34,157 INFO Connection check task end +2025-09-24 00:45:36,459 INFO Out dated connection ,size=0 -2025-09-23 00:45:35,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:36,459 INFO Connection check task end -2025-09-23 00:45:37,157 INFO Connection check task start +2025-09-24 00:45:39,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:37,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:39,460 INFO Connection check task start -2025-09-23 00:45:37,157 INFO Out dated connection ,size=0 +2025-09-24 00:45:39,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:37,157 INFO Connection check task end +2025-09-24 00:45:39,460 INFO Out dated connection ,size=0 -2025-09-23 00:45:38,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:39,460 INFO Connection check task end -2025-09-23 00:45:40,157 INFO Connection check task start +2025-09-24 00:45:42,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:40,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:42,461 INFO Connection check task start -2025-09-23 00:45:40,158 INFO Out dated connection ,size=0 +2025-09-24 00:45:42,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:40,158 INFO Connection check task end +2025-09-24 00:45:42,461 INFO Out dated connection ,size=0 -2025-09-23 00:45:41,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:42,461 INFO Connection check task end -2025-09-23 00:45:43,158 INFO Connection check task start +2025-09-24 00:45:45,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:43,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:45,462 INFO Connection check task start -2025-09-23 00:45:43,158 INFO Out dated connection ,size=0 +2025-09-24 00:45:45,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:43,158 INFO Connection check task end +2025-09-24 00:45:45,462 INFO Out dated connection ,size=0 -2025-09-23 00:45:44,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:45,462 INFO Connection check task end -2025-09-23 00:45:46,159 INFO Connection check task start +2025-09-24 00:45:48,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:46,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:48,462 INFO Connection check task start -2025-09-23 00:45:46,159 INFO Out dated connection ,size=0 +2025-09-24 00:45:48,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:46,159 INFO Connection check task end +2025-09-24 00:45:48,464 INFO Out dated connection ,size=0 -2025-09-23 00:45:47,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:48,486 INFO Connection check task end -2025-09-23 00:45:49,160 INFO Connection check task start +2025-09-24 00:45:51,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:49,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:51,487 INFO Connection check task start -2025-09-23 00:45:49,160 INFO Out dated connection ,size=0 +2025-09-24 00:45:51,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:49,160 INFO Connection check task end +2025-09-24 00:45:51,487 INFO Out dated connection ,size=0 -2025-09-23 00:45:50,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:51,487 INFO Connection check task end -2025-09-23 00:45:52,161 INFO Connection check task start +2025-09-24 00:45:54,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:52,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:54,487 INFO Connection check task start -2025-09-23 00:45:52,161 INFO Out dated connection ,size=0 +2025-09-24 00:45:54,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:52,161 INFO Connection check task end +2025-09-24 00:45:54,487 INFO Out dated connection ,size=0 -2025-09-23 00:45:53,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:54,487 INFO Connection check task end -2025-09-23 00:45:55,162 INFO Connection check task start +2025-09-24 00:45:57,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:55,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:45:57,488 INFO Connection check task start -2025-09-23 00:45:55,162 INFO Out dated connection ,size=0 +2025-09-24 00:45:57,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:55,162 INFO Connection check task end +2025-09-24 00:45:57,488 INFO Out dated connection ,size=0 -2025-09-23 00:45:56,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:45:57,488 INFO Connection check task end -2025-09-23 00:45:58,163 INFO Connection check task start +2025-09-24 00:46:00,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:45:58,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:00,488 INFO Connection check task start -2025-09-23 00:45:58,164 INFO Out dated connection ,size=0 +2025-09-24 00:46:00,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:45:58,164 INFO Connection check task end +2025-09-24 00:46:00,488 INFO Out dated connection ,size=0 -2025-09-23 00:45:59,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:00,488 INFO Connection check task end -2025-09-23 00:46:01,165 INFO Connection check task start +2025-09-24 00:46:03,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:01,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:03,489 INFO Connection check task start -2025-09-23 00:46:01,165 INFO Out dated connection ,size=0 +2025-09-24 00:46:03,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:01,165 INFO Connection check task end +2025-09-24 00:46:03,489 INFO Out dated connection ,size=0 -2025-09-23 00:46:02,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:03,489 INFO Connection check task end -2025-09-23 00:46:04,165 INFO Connection check task start +2025-09-24 00:46:06,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:04,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:06,489 INFO Connection check task start -2025-09-23 00:46:04,166 INFO Out dated connection ,size=0 +2025-09-24 00:46:06,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:04,166 INFO Connection check task end +2025-09-24 00:46:06,489 INFO Out dated connection ,size=0 -2025-09-23 00:46:05,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:06,490 INFO Connection check task end -2025-09-23 00:46:07,167 INFO Connection check task start +2025-09-24 00:46:09,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:07,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:09,490 INFO Connection check task start -2025-09-23 00:46:07,167 INFO Out dated connection ,size=0 +2025-09-24 00:46:09,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:07,167 INFO Connection check task end +2025-09-24 00:46:09,490 INFO Out dated connection ,size=0 -2025-09-23 00:46:08,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:09,490 INFO Connection check task end -2025-09-23 00:46:10,168 INFO Connection check task start +2025-09-24 00:46:12,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:10,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:12,491 INFO Connection check task start -2025-09-23 00:46:10,168 INFO Out dated connection ,size=0 +2025-09-24 00:46:12,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:10,168 INFO Connection check task end +2025-09-24 00:46:12,491 INFO Out dated connection ,size=0 -2025-09-23 00:46:11,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:12,491 INFO Connection check task end -2025-09-23 00:46:13,170 INFO Connection check task start +2025-09-24 00:46:15,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:13,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:15,491 INFO Connection check task start -2025-09-23 00:46:13,170 INFO Out dated connection ,size=0 +2025-09-24 00:46:15,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:13,170 INFO Connection check task end +2025-09-24 00:46:15,491 INFO Out dated connection ,size=0 -2025-09-23 00:46:14,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:15,491 INFO Connection check task end -2025-09-23 00:46:16,171 INFO Connection check task start +2025-09-24 00:46:18,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:16,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:18,491 INFO Connection check task start -2025-09-23 00:46:16,171 INFO Out dated connection ,size=0 +2025-09-24 00:46:18,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:16,171 INFO Connection check task end +2025-09-24 00:46:18,492 INFO Out dated connection ,size=0 -2025-09-23 00:46:17,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:18,492 INFO Connection check task end -2025-09-23 00:46:19,171 INFO Connection check task start +2025-09-24 00:46:21,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:19,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:21,492 INFO Connection check task start -2025-09-23 00:46:19,171 INFO Out dated connection ,size=0 +2025-09-24 00:46:21,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:19,171 INFO Connection check task end +2025-09-24 00:46:21,492 INFO Out dated connection ,size=0 -2025-09-23 00:46:20,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:21,492 INFO Connection check task end -2025-09-23 00:46:22,172 INFO Connection check task start +2025-09-24 00:46:24,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:22,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:24,492 INFO Connection check task start -2025-09-23 00:46:22,172 INFO Out dated connection ,size=0 +2025-09-24 00:46:24,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:22,172 INFO Connection check task end +2025-09-24 00:46:24,493 INFO Out dated connection ,size=0 -2025-09-23 00:46:23,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:24,493 INFO Connection check task end -2025-09-23 00:46:25,172 INFO Connection check task start +2025-09-24 00:46:27,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:25,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:27,494 INFO Connection check task start -2025-09-23 00:46:25,173 INFO Out dated connection ,size=0 +2025-09-24 00:46:27,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:25,173 INFO Connection check task end +2025-09-24 00:46:27,494 INFO Out dated connection ,size=0 -2025-09-23 00:46:26,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:27,494 INFO Connection check task end -2025-09-23 00:46:28,173 INFO Connection check task start +2025-09-24 00:46:30,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:28,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:30,494 INFO Connection check task start -2025-09-23 00:46:28,173 INFO Out dated connection ,size=0 +2025-09-24 00:46:30,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:28,173 INFO Connection check task end +2025-09-24 00:46:30,494 INFO Out dated connection ,size=0 -2025-09-23 00:46:29,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:30,495 INFO Connection check task end -2025-09-23 00:46:31,174 INFO Connection check task start +2025-09-24 00:46:33,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:31,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:33,495 INFO Connection check task start -2025-09-23 00:46:31,174 INFO Out dated connection ,size=0 +2025-09-24 00:46:33,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:31,174 INFO Connection check task end +2025-09-24 00:46:33,505 INFO Out dated connection ,size=0 -2025-09-23 00:46:32,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:33,505 INFO Connection check task end -2025-09-23 00:46:34,174 INFO Connection check task start +2025-09-24 00:46:36,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:34,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:36,506 INFO Connection check task start -2025-09-23 00:46:34,174 INFO Out dated connection ,size=0 +2025-09-24 00:46:36,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:34,174 INFO Connection check task end +2025-09-24 00:46:36,507 INFO Out dated connection ,size=0 -2025-09-23 00:46:35,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:36,507 INFO Connection check task end -2025-09-23 00:46:37,175 INFO Connection check task start +2025-09-24 00:46:39,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:37,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:39,507 INFO Connection check task start -2025-09-23 00:46:37,175 INFO Out dated connection ,size=0 +2025-09-24 00:46:39,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:37,175 INFO Connection check task end +2025-09-24 00:46:39,507 INFO Out dated connection ,size=0 -2025-09-23 00:46:38,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:39,508 INFO Connection check task end -2025-09-23 00:46:40,176 INFO Connection check task start +2025-09-24 00:46:42,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:40,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:42,508 INFO Connection check task start -2025-09-23 00:46:40,176 INFO Out dated connection ,size=0 +2025-09-24 00:46:42,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:40,176 INFO Connection check task end +2025-09-24 00:46:42,508 INFO Out dated connection ,size=0 -2025-09-23 00:46:41,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:42,508 INFO Connection check task end -2025-09-23 00:46:43,177 INFO Connection check task start +2025-09-24 00:46:45,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:43,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:45,509 INFO Connection check task start -2025-09-23 00:46:43,177 INFO Out dated connection ,size=0 +2025-09-24 00:46:45,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:43,177 INFO Connection check task end +2025-09-24 00:46:45,509 INFO Out dated connection ,size=0 -2025-09-23 00:46:44,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:45,509 INFO Connection check task end -2025-09-23 00:46:46,178 INFO Connection check task start +2025-09-24 00:46:48,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:46,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:48,510 INFO Connection check task start -2025-09-23 00:46:46,178 INFO Out dated connection ,size=0 +2025-09-24 00:46:48,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:46,178 INFO Connection check task end +2025-09-24 00:46:48,510 INFO Out dated connection ,size=0 -2025-09-23 00:46:47,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:48,510 INFO Connection check task end -2025-09-23 00:46:49,178 INFO Connection check task start +2025-09-24 00:46:51,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:49,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:51,511 INFO Connection check task start -2025-09-23 00:46:49,179 INFO Out dated connection ,size=0 +2025-09-24 00:46:51,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:49,179 INFO Connection check task end +2025-09-24 00:46:51,511 INFO Out dated connection ,size=0 -2025-09-23 00:46:50,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:51,511 INFO Connection check task end -2025-09-23 00:46:52,179 INFO Connection check task start +2025-09-24 00:46:54,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:52,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:54,513 INFO Connection check task start -2025-09-23 00:46:52,179 INFO Out dated connection ,size=0 +2025-09-24 00:46:54,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:52,179 INFO Connection check task end +2025-09-24 00:46:54,513 INFO Out dated connection ,size=0 -2025-09-23 00:46:53,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:54,513 INFO Connection check task end -2025-09-23 00:46:55,180 INFO Connection check task start +2025-09-24 00:46:57,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:55,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:46:57,514 INFO Connection check task start -2025-09-23 00:46:55,180 INFO Out dated connection ,size=0 +2025-09-24 00:46:57,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:55,180 INFO Connection check task end +2025-09-24 00:46:57,514 INFO Out dated connection ,size=0 -2025-09-23 00:46:56,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:46:57,514 INFO Connection check task end -2025-09-23 00:46:58,181 INFO Connection check task start +2025-09-24 00:47:00,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:46:58,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:00,515 INFO Connection check task start -2025-09-23 00:46:58,181 INFO Out dated connection ,size=0 +2025-09-24 00:47:00,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:46:58,181 INFO Connection check task end +2025-09-24 00:47:00,515 INFO Out dated connection ,size=0 -2025-09-23 00:46:59,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:00,515 INFO Connection check task end -2025-09-23 00:47:01,182 INFO Connection check task start +2025-09-24 00:47:03,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:01,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:03,515 INFO Connection check task start -2025-09-23 00:47:01,182 INFO Out dated connection ,size=0 +2025-09-24 00:47:03,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:01,182 INFO Connection check task end +2025-09-24 00:47:03,516 INFO Out dated connection ,size=0 -2025-09-23 00:47:02,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:03,516 INFO Connection check task end -2025-09-23 00:47:04,183 INFO Connection check task start +2025-09-24 00:47:06,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:04,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:06,517 INFO Connection check task start -2025-09-23 00:47:04,183 INFO Out dated connection ,size=0 +2025-09-24 00:47:06,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:04,183 INFO Connection check task end +2025-09-24 00:47:06,517 INFO Out dated connection ,size=0 -2025-09-23 00:47:05,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:06,517 INFO Connection check task end -2025-09-23 00:47:07,184 INFO Connection check task start +2025-09-24 00:47:09,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:07,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:09,518 INFO Connection check task start -2025-09-23 00:47:07,184 INFO Out dated connection ,size=0 +2025-09-24 00:47:09,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:07,184 INFO Connection check task end +2025-09-24 00:47:09,518 INFO Out dated connection ,size=0 -2025-09-23 00:47:08,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:09,518 INFO Connection check task end -2025-09-23 00:47:10,184 INFO Connection check task start +2025-09-24 00:47:12,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:10,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:12,519 INFO Connection check task start -2025-09-23 00:47:10,184 INFO Out dated connection ,size=0 +2025-09-24 00:47:12,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:10,184 INFO Connection check task end +2025-09-24 00:47:12,519 INFO Out dated connection ,size=0 -2025-09-23 00:47:11,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:12,519 INFO Connection check task end -2025-09-23 00:47:13,186 INFO Connection check task start +2025-09-24 00:47:15,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:13,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:15,520 INFO Connection check task start -2025-09-23 00:47:13,186 INFO Out dated connection ,size=0 +2025-09-24 00:47:15,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:13,186 INFO Connection check task end +2025-09-24 00:47:15,520 INFO Out dated connection ,size=0 -2025-09-23 00:47:14,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:15,520 INFO Connection check task end -2025-09-23 00:47:16,187 INFO Connection check task start +2025-09-24 00:47:18,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:16,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:18,521 INFO Connection check task start -2025-09-23 00:47:16,187 INFO Out dated connection ,size=0 +2025-09-24 00:47:18,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:16,187 INFO Connection check task end +2025-09-24 00:47:18,521 INFO Out dated connection ,size=0 -2025-09-23 00:47:17,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:18,521 INFO Connection check task end -2025-09-23 00:47:19,188 INFO Connection check task start +2025-09-24 00:47:21,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:19,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:21,521 INFO Connection check task start -2025-09-23 00:47:19,188 INFO Out dated connection ,size=0 +2025-09-24 00:47:21,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:19,189 INFO Connection check task end +2025-09-24 00:47:21,521 INFO Out dated connection ,size=0 -2025-09-23 00:47:20,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:21,522 INFO Connection check task end -2025-09-23 00:47:22,189 INFO Connection check task start +2025-09-24 00:47:24,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:22,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:24,522 INFO Connection check task start -2025-09-23 00:47:22,189 INFO Out dated connection ,size=0 +2025-09-24 00:47:24,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:22,189 INFO Connection check task end +2025-09-24 00:47:24,522 INFO Out dated connection ,size=0 -2025-09-23 00:47:23,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:24,522 INFO Connection check task end -2025-09-23 00:47:25,190 INFO Connection check task start +2025-09-24 00:47:27,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:25,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:27,523 INFO Connection check task start -2025-09-23 00:47:25,190 INFO Out dated connection ,size=0 +2025-09-24 00:47:27,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:25,190 INFO Connection check task end +2025-09-24 00:47:27,523 INFO Out dated connection ,size=0 -2025-09-23 00:47:26,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:27,523 INFO Connection check task end -2025-09-23 00:47:28,191 INFO Connection check task start +2025-09-24 00:47:30,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:28,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:30,524 INFO Connection check task start -2025-09-23 00:47:28,191 INFO Out dated connection ,size=0 +2025-09-24 00:47:30,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:28,191 INFO Connection check task end +2025-09-24 00:47:30,524 INFO Out dated connection ,size=0 -2025-09-23 00:47:29,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:30,524 INFO Connection check task end -2025-09-23 00:47:31,191 INFO Connection check task start +2025-09-24 00:47:33,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:31,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:33,525 INFO Connection check task start -2025-09-23 00:47:31,191 INFO Out dated connection ,size=0 +2025-09-24 00:47:33,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:31,192 INFO Connection check task end +2025-09-24 00:47:33,525 INFO Out dated connection ,size=0 -2025-09-23 00:47:32,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:33,525 INFO Connection check task end -2025-09-23 00:47:34,192 INFO Connection check task start +2025-09-24 00:47:36,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:34,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:36,525 INFO Connection check task start -2025-09-23 00:47:34,192 INFO Out dated connection ,size=0 +2025-09-24 00:47:36,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:34,192 INFO Connection check task end +2025-09-24 00:47:36,526 INFO Out dated connection ,size=0 -2025-09-23 00:47:35,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:36,526 INFO Connection check task end -2025-09-23 00:47:37,192 INFO Connection check task start +2025-09-24 00:47:39,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:37,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:39,526 INFO Connection check task start -2025-09-23 00:47:37,193 INFO Out dated connection ,size=0 +2025-09-24 00:47:39,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:37,193 INFO Connection check task end +2025-09-24 00:47:39,526 INFO Out dated connection ,size=0 -2025-09-23 00:47:38,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:39,526 INFO Connection check task end -2025-09-23 00:47:40,193 INFO Connection check task start +2025-09-24 00:47:42,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:40,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:42,526 INFO Connection check task start -2025-09-23 00:47:40,193 INFO Out dated connection ,size=0 +2025-09-24 00:47:42,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:40,193 INFO Connection check task end +2025-09-24 00:47:42,526 INFO Out dated connection ,size=0 -2025-09-23 00:47:41,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:42,526 INFO Connection check task end -2025-09-23 00:47:43,194 INFO Connection check task start +2025-09-24 00:47:45,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:43,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:45,527 INFO Connection check task start -2025-09-23 00:47:43,194 INFO Out dated connection ,size=0 +2025-09-24 00:47:45,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:43,194 INFO Connection check task end +2025-09-24 00:47:45,527 INFO Out dated connection ,size=0 -2025-09-23 00:47:44,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:45,527 INFO Connection check task end -2025-09-23 00:47:46,194 INFO Connection check task start +2025-09-24 00:47:48,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:46,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:48,527 INFO Connection check task start -2025-09-23 00:47:46,194 INFO Out dated connection ,size=0 +2025-09-24 00:47:48,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:46,195 INFO Connection check task end +2025-09-24 00:47:48,528 INFO Out dated connection ,size=0 -2025-09-23 00:47:47,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:48,528 INFO Connection check task end -2025-09-23 00:47:49,195 INFO Connection check task start +2025-09-24 00:47:51,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:49,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:51,528 INFO Connection check task start -2025-09-23 00:47:49,196 INFO Out dated connection ,size=0 +2025-09-24 00:47:51,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:49,196 INFO Connection check task end +2025-09-24 00:47:51,528 INFO Out dated connection ,size=0 -2025-09-23 00:47:50,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:51,528 INFO Connection check task end -2025-09-23 00:47:52,196 INFO Connection check task start +2025-09-24 00:47:54,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:52,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:54,529 INFO Connection check task start -2025-09-23 00:47:52,197 INFO Out dated connection ,size=0 +2025-09-24 00:47:54,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:52,197 INFO Connection check task end +2025-09-24 00:47:54,529 INFO Out dated connection ,size=0 -2025-09-23 00:47:53,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:54,530 INFO Connection check task end -2025-09-23 00:47:55,197 INFO Connection check task start +2025-09-24 00:47:57,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:55,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:47:57,530 INFO Connection check task start -2025-09-23 00:47:55,197 INFO Out dated connection ,size=0 +2025-09-24 00:47:57,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:55,197 INFO Connection check task end +2025-09-24 00:47:57,530 INFO Out dated connection ,size=0 -2025-09-23 00:47:56,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:47:57,530 INFO Connection check task end -2025-09-23 00:47:58,198 INFO Connection check task start +2025-09-24 00:48:00,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:47:58,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:00,531 INFO Connection check task start -2025-09-23 00:47:58,198 INFO Out dated connection ,size=0 +2025-09-24 00:48:00,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:47:58,198 INFO Connection check task end +2025-09-24 00:48:00,531 INFO Out dated connection ,size=0 -2025-09-23 00:47:59,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:00,531 INFO Connection check task end -2025-09-23 00:48:01,199 INFO Connection check task start +2025-09-24 00:48:03,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:01,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:03,531 INFO Connection check task start -2025-09-23 00:48:01,200 INFO Out dated connection ,size=0 +2025-09-24 00:48:03,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:01,200 INFO Connection check task end +2025-09-24 00:48:03,531 INFO Out dated connection ,size=0 -2025-09-23 00:48:02,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:03,531 INFO Connection check task end -2025-09-23 00:48:04,200 INFO Connection check task start +2025-09-24 00:48:06,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:04,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:06,532 INFO Connection check task start -2025-09-23 00:48:04,201 INFO Out dated connection ,size=0 +2025-09-24 00:48:06,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:04,201 INFO Connection check task end +2025-09-24 00:48:06,532 INFO Out dated connection ,size=0 -2025-09-23 00:48:05,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:06,532 INFO Connection check task end -2025-09-23 00:48:07,202 INFO Connection check task start +2025-09-24 00:48:09,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:07,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:09,533 INFO Connection check task start -2025-09-23 00:48:07,202 INFO Out dated connection ,size=0 +2025-09-24 00:48:09,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:07,202 INFO Connection check task end +2025-09-24 00:48:09,533 INFO Out dated connection ,size=0 -2025-09-23 00:48:08,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:09,533 INFO Connection check task end -2025-09-23 00:48:10,202 INFO Connection check task start +2025-09-24 00:48:12,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:10,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:12,534 INFO Connection check task start -2025-09-23 00:48:10,202 INFO Out dated connection ,size=0 +2025-09-24 00:48:12,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:10,203 INFO Connection check task end +2025-09-24 00:48:12,534 INFO Out dated connection ,size=0 -2025-09-23 00:48:11,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:12,534 INFO Connection check task end -2025-09-23 00:48:13,203 INFO Connection check task start +2025-09-24 00:48:15,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:13,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:15,534 INFO Connection check task start -2025-09-23 00:48:13,203 INFO Out dated connection ,size=0 +2025-09-24 00:48:15,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:13,203 INFO Connection check task end +2025-09-24 00:48:15,535 INFO Out dated connection ,size=0 -2025-09-23 00:48:14,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:15,535 INFO Connection check task end -2025-09-23 00:48:16,204 INFO Connection check task start +2025-09-24 00:48:18,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:16,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:18,535 INFO Connection check task start -2025-09-23 00:48:16,204 INFO Out dated connection ,size=0 +2025-09-24 00:48:18,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:16,204 INFO Connection check task end +2025-09-24 00:48:18,535 INFO Out dated connection ,size=0 -2025-09-23 00:48:17,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:18,535 INFO Connection check task end -2025-09-23 00:48:19,204 INFO Connection check task start +2025-09-24 00:48:21,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:19,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:21,536 INFO Connection check task start -2025-09-23 00:48:19,205 INFO Out dated connection ,size=0 +2025-09-24 00:48:21,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:19,205 INFO Connection check task end +2025-09-24 00:48:21,536 INFO Out dated connection ,size=0 -2025-09-23 00:48:20,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:21,536 INFO Connection check task end -2025-09-23 00:48:22,205 INFO Connection check task start +2025-09-24 00:48:24,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:22,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:24,537 INFO Connection check task start -2025-09-23 00:48:22,206 INFO Out dated connection ,size=0 +2025-09-24 00:48:24,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:22,206 INFO Connection check task end +2025-09-24 00:48:24,537 INFO Out dated connection ,size=0 -2025-09-23 00:48:23,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:24,537 INFO Connection check task end -2025-09-23 00:48:25,206 INFO Connection check task start +2025-09-24 00:48:27,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:25,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:27,538 INFO Connection check task start -2025-09-23 00:48:25,206 INFO Out dated connection ,size=0 +2025-09-24 00:48:27,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:25,206 INFO Connection check task end +2025-09-24 00:48:27,538 INFO Out dated connection ,size=0 -2025-09-23 00:48:26,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:27,538 INFO Connection check task end -2025-09-23 00:48:28,207 INFO Connection check task start +2025-09-24 00:48:30,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:28,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:30,539 INFO Connection check task start -2025-09-23 00:48:28,207 INFO Out dated connection ,size=0 +2025-09-24 00:48:30,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:28,207 INFO Connection check task end +2025-09-24 00:48:30,539 INFO Out dated connection ,size=0 -2025-09-23 00:48:29,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:30,539 INFO Connection check task end -2025-09-23 00:48:31,208 INFO Connection check task start +2025-09-24 00:48:33,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:31,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:33,539 INFO Connection check task start -2025-09-23 00:48:31,208 INFO Out dated connection ,size=0 +2025-09-24 00:48:33,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:31,208 INFO Connection check task end +2025-09-24 00:48:33,539 INFO Out dated connection ,size=0 -2025-09-23 00:48:32,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:33,540 INFO Connection check task end -2025-09-23 00:48:34,209 INFO Connection check task start +2025-09-24 00:48:36,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:34,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:36,540 INFO Connection check task start -2025-09-23 00:48:34,209 INFO Out dated connection ,size=0 +2025-09-24 00:48:36,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:34,209 INFO Connection check task end +2025-09-24 00:48:36,541 INFO Out dated connection ,size=0 -2025-09-23 00:48:35,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:36,541 INFO Connection check task end -2025-09-23 00:48:37,210 INFO Connection check task start +2025-09-24 00:48:39,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:37,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:39,542 INFO Connection check task start -2025-09-23 00:48:37,210 INFO Out dated connection ,size=0 +2025-09-24 00:48:39,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:37,210 INFO Connection check task end +2025-09-24 00:48:39,542 INFO Out dated connection ,size=0 -2025-09-23 00:48:38,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:39,542 INFO Connection check task end -2025-09-23 00:48:40,211 INFO Connection check task start +2025-09-24 00:48:42,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:40,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:42,542 INFO Connection check task start -2025-09-23 00:48:40,211 INFO Out dated connection ,size=0 +2025-09-24 00:48:42,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:40,211 INFO Connection check task end +2025-09-24 00:48:42,542 INFO Out dated connection ,size=0 -2025-09-23 00:48:41,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:42,543 INFO Connection check task end -2025-09-23 00:48:43,211 INFO Connection check task start +2025-09-24 00:48:45,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:43,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:45,543 INFO Connection check task start -2025-09-23 00:48:43,211 INFO Out dated connection ,size=0 +2025-09-24 00:48:45,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:43,212 INFO Connection check task end +2025-09-24 00:48:45,543 INFO Out dated connection ,size=0 -2025-09-23 00:48:44,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:45,544 INFO Connection check task end -2025-09-23 00:48:46,212 INFO Connection check task start +2025-09-24 00:48:48,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:46,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:48,545 INFO Connection check task start -2025-09-23 00:48:46,212 INFO Out dated connection ,size=0 +2025-09-24 00:48:48,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:46,212 INFO Connection check task end +2025-09-24 00:48:48,545 INFO Out dated connection ,size=0 -2025-09-23 00:48:47,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:48,545 INFO Connection check task end -2025-09-23 00:48:49,213 INFO Connection check task start +2025-09-24 00:48:51,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:49,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:51,546 INFO Connection check task start -2025-09-23 00:48:49,213 INFO Out dated connection ,size=0 +2025-09-24 00:48:51,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:49,213 INFO Connection check task end +2025-09-24 00:48:51,546 INFO Out dated connection ,size=0 -2025-09-23 00:48:50,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:51,546 INFO Connection check task end -2025-09-23 00:48:52,214 INFO Connection check task start +2025-09-24 00:48:54,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:52,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:54,547 INFO Connection check task start -2025-09-23 00:48:52,214 INFO Out dated connection ,size=0 +2025-09-24 00:48:54,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:52,214 INFO Connection check task end +2025-09-24 00:48:54,547 INFO Out dated connection ,size=0 -2025-09-23 00:48:53,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:54,547 INFO Connection check task end -2025-09-23 00:48:55,214 INFO Connection check task start +2025-09-24 00:48:57,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:55,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:48:57,548 INFO Connection check task start -2025-09-23 00:48:55,215 INFO Out dated connection ,size=0 +2025-09-24 00:48:57,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:55,215 INFO Connection check task end +2025-09-24 00:48:57,549 INFO Out dated connection ,size=0 -2025-09-23 00:48:56,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:48:57,549 INFO Connection check task end -2025-09-23 00:48:58,216 INFO Connection check task start +2025-09-24 00:49:00,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:48:58,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:00,549 INFO Connection check task start -2025-09-23 00:48:58,216 INFO Out dated connection ,size=0 +2025-09-24 00:49:00,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:48:58,216 INFO Connection check task end +2025-09-24 00:49:00,549 INFO Out dated connection ,size=0 -2025-09-23 00:48:59,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:00,549 INFO Connection check task end -2025-09-23 00:49:01,217 INFO Connection check task start +2025-09-24 00:49:03,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:01,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:03,550 INFO Connection check task start -2025-09-23 00:49:01,217 INFO Out dated connection ,size=0 +2025-09-24 00:49:03,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:01,217 INFO Connection check task end +2025-09-24 00:49:03,550 INFO Out dated connection ,size=0 -2025-09-23 00:49:02,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:03,550 INFO Connection check task end -2025-09-23 00:49:04,218 INFO Connection check task start +2025-09-24 00:49:06,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:04,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:06,550 INFO Connection check task start -2025-09-23 00:49:04,218 INFO Out dated connection ,size=0 +2025-09-24 00:49:06,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:04,218 INFO Connection check task end +2025-09-24 00:49:06,551 INFO Out dated connection ,size=0 -2025-09-23 00:49:05,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:06,551 INFO Connection check task end -2025-09-23 00:49:07,219 INFO Connection check task start +2025-09-24 00:49:09,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:07,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:09,551 INFO Connection check task start -2025-09-23 00:49:07,219 INFO Out dated connection ,size=0 +2025-09-24 00:49:09,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:07,219 INFO Connection check task end +2025-09-24 00:49:09,551 INFO Out dated connection ,size=0 -2025-09-23 00:49:08,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:09,551 INFO Connection check task end -2025-09-23 00:49:10,220 INFO Connection check task start +2025-09-24 00:49:12,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:10,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:12,552 INFO Connection check task start -2025-09-23 00:49:10,221 INFO Out dated connection ,size=0 +2025-09-24 00:49:12,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:10,221 INFO Connection check task end +2025-09-24 00:49:12,552 INFO Out dated connection ,size=0 -2025-09-23 00:49:11,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:12,552 INFO Connection check task end -2025-09-23 00:49:13,222 INFO Connection check task start +2025-09-24 00:49:15,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:13,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:15,553 INFO Connection check task start -2025-09-23 00:49:13,222 INFO Out dated connection ,size=0 +2025-09-24 00:49:15,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:13,222 INFO Connection check task end +2025-09-24 00:49:15,553 INFO Out dated connection ,size=0 -2025-09-23 00:49:14,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:15,553 INFO Connection check task end -2025-09-23 00:49:16,223 INFO Connection check task start +2025-09-24 00:49:18,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:16,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:18,554 INFO Connection check task start -2025-09-23 00:49:16,224 INFO Out dated connection ,size=0 +2025-09-24 00:49:18,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:16,224 INFO Connection check task end +2025-09-24 00:49:18,554 INFO Out dated connection ,size=0 -2025-09-23 00:49:17,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:18,554 INFO Connection check task end -2025-09-23 00:49:19,224 INFO Connection check task start +2025-09-24 00:49:21,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:19,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:21,554 INFO Connection check task start -2025-09-23 00:49:19,225 INFO Out dated connection ,size=0 +2025-09-24 00:49:21,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:19,225 INFO Connection check task end +2025-09-24 00:49:21,554 INFO Out dated connection ,size=0 -2025-09-23 00:49:20,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:21,555 INFO Connection check task end -2025-09-23 00:49:22,226 INFO Connection check task start +2025-09-24 00:49:24,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:22,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:24,555 INFO Connection check task start -2025-09-23 00:49:22,226 INFO Out dated connection ,size=0 +2025-09-24 00:49:24,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:22,226 INFO Connection check task end +2025-09-24 00:49:24,555 INFO Out dated connection ,size=0 -2025-09-23 00:49:23,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:24,555 INFO Connection check task end -2025-09-23 00:49:25,227 INFO Connection check task start +2025-09-24 00:49:27,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:25,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:27,556 INFO Connection check task start -2025-09-23 00:49:25,227 INFO Out dated connection ,size=0 +2025-09-24 00:49:27,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:25,227 INFO Connection check task end +2025-09-24 00:49:27,556 INFO Out dated connection ,size=0 -2025-09-23 00:49:26,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:27,556 INFO Connection check task end -2025-09-23 00:49:28,228 INFO Connection check task start +2025-09-24 00:49:30,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:28,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:30,556 INFO Connection check task start -2025-09-23 00:49:28,228 INFO Out dated connection ,size=0 +2025-09-24 00:49:30,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:28,228 INFO Connection check task end +2025-09-24 00:49:30,556 INFO Out dated connection ,size=0 -2025-09-23 00:49:29,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:30,557 INFO Connection check task end -2025-09-23 00:49:31,228 INFO Connection check task start +2025-09-24 00:49:33,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:31,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:33,557 INFO Connection check task start -2025-09-23 00:49:31,229 INFO Out dated connection ,size=0 +2025-09-24 00:49:33,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:31,229 INFO Connection check task end +2025-09-24 00:49:33,557 INFO Out dated connection ,size=0 -2025-09-23 00:49:32,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:33,557 INFO Connection check task end -2025-09-23 00:49:34,229 INFO Connection check task start +2025-09-24 00:49:36,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:34,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:36,558 INFO Connection check task start -2025-09-23 00:49:34,229 INFO Out dated connection ,size=0 +2025-09-24 00:49:36,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:34,229 INFO Connection check task end +2025-09-24 00:49:36,559 INFO Out dated connection ,size=0 -2025-09-23 00:49:35,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:36,559 INFO Connection check task end -2025-09-23 00:49:37,230 INFO Connection check task start +2025-09-24 00:49:39,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:37,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:39,560 INFO Connection check task start -2025-09-23 00:49:37,231 INFO Out dated connection ,size=0 +2025-09-24 00:49:39,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:37,231 INFO Connection check task end +2025-09-24 00:49:39,560 INFO Out dated connection ,size=0 -2025-09-23 00:49:38,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:39,560 INFO Connection check task end -2025-09-23 00:49:40,231 INFO Connection check task start +2025-09-24 00:49:42,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:40,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:42,560 INFO Connection check task start -2025-09-23 00:49:40,231 INFO Out dated connection ,size=0 +2025-09-24 00:49:42,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:40,231 INFO Connection check task end +2025-09-24 00:49:42,560 INFO Out dated connection ,size=0 -2025-09-23 00:49:41,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:42,560 INFO Connection check task end -2025-09-23 00:49:43,232 INFO Connection check task start +2025-09-24 00:49:45,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:43,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:45,560 INFO Connection check task start -2025-09-23 00:49:43,232 INFO Out dated connection ,size=0 +2025-09-24 00:49:45,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:43,232 INFO Connection check task end +2025-09-24 00:49:45,561 INFO Out dated connection ,size=0 -2025-09-23 00:49:44,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:45,561 INFO Connection check task end -2025-09-23 00:49:46,232 INFO Connection check task start +2025-09-24 00:49:48,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:46,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:48,562 INFO Connection check task start -2025-09-23 00:49:46,233 INFO Out dated connection ,size=0 +2025-09-24 00:49:48,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:46,233 INFO Connection check task end +2025-09-24 00:49:48,562 INFO Out dated connection ,size=0 -2025-09-23 00:49:47,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:48,562 INFO Connection check task end -2025-09-23 00:49:49,234 INFO Connection check task start +2025-09-24 00:49:51,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:49,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:51,563 INFO Connection check task start -2025-09-23 00:49:49,234 INFO Out dated connection ,size=0 +2025-09-24 00:49:51,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:49,234 INFO Connection check task end +2025-09-24 00:49:51,564 INFO Out dated connection ,size=0 -2025-09-23 00:49:50,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:51,564 INFO Connection check task end -2025-09-23 00:49:52,234 INFO Connection check task start +2025-09-24 00:49:54,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:52,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:54,565 INFO Connection check task start -2025-09-23 00:49:52,235 INFO Out dated connection ,size=0 +2025-09-24 00:49:54,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:52,235 INFO Connection check task end +2025-09-24 00:49:54,565 INFO Out dated connection ,size=0 -2025-09-23 00:49:53,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:54,565 INFO Connection check task end -2025-09-23 00:49:55,235 INFO Connection check task start +2025-09-24 00:49:57,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:55,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:49:57,566 INFO Connection check task start -2025-09-23 00:49:55,235 INFO Out dated connection ,size=0 +2025-09-24 00:49:57,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:55,235 INFO Connection check task end +2025-09-24 00:49:57,566 INFO Out dated connection ,size=0 -2025-09-23 00:49:56,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:49:57,566 INFO Connection check task end -2025-09-23 00:49:58,236 INFO Connection check task start +2025-09-24 00:50:00,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:49:58,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:00,567 INFO Connection check task start -2025-09-23 00:49:58,236 INFO Out dated connection ,size=0 +2025-09-24 00:50:00,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:49:58,236 INFO Connection check task end +2025-09-24 00:50:00,567 INFO Out dated connection ,size=0 -2025-09-23 00:49:59,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:00,567 INFO Connection check task end -2025-09-23 00:50:01,236 INFO Connection check task start +2025-09-24 00:50:03,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:01,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:03,568 INFO Connection check task start -2025-09-23 00:50:01,236 INFO Out dated connection ,size=0 +2025-09-24 00:50:03,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:01,236 INFO Connection check task end +2025-09-24 00:50:03,568 INFO Out dated connection ,size=0 -2025-09-23 00:50:02,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:03,568 INFO Connection check task end -2025-09-23 00:50:04,237 INFO Connection check task start +2025-09-24 00:50:06,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:04,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:06,569 INFO Connection check task start -2025-09-23 00:50:04,237 INFO Out dated connection ,size=0 +2025-09-24 00:50:06,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:04,238 INFO Connection check task end +2025-09-24 00:50:06,569 INFO Out dated connection ,size=0 -2025-09-23 00:50:05,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:06,569 INFO Connection check task end -2025-09-23 00:50:07,238 INFO Connection check task start +2025-09-24 00:50:09,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:07,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:09,570 INFO Connection check task start -2025-09-23 00:50:07,238 INFO Out dated connection ,size=0 +2025-09-24 00:50:09,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:07,238 INFO Connection check task end +2025-09-24 00:50:09,570 INFO Out dated connection ,size=0 -2025-09-23 00:50:08,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:09,570 INFO Connection check task end -2025-09-23 00:50:10,238 INFO Connection check task start +2025-09-24 00:50:12,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:10,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:12,570 INFO Connection check task start -2025-09-23 00:50:10,239 INFO Out dated connection ,size=0 +2025-09-24 00:50:12,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:10,239 INFO Connection check task end +2025-09-24 00:50:12,571 INFO Out dated connection ,size=0 -2025-09-23 00:50:12,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:12,571 INFO Connection check task end -2025-09-23 00:50:13,239 INFO Connection check task start +2025-09-24 00:50:15,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:13,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:15,572 INFO Connection check task start -2025-09-23 00:50:13,240 INFO Out dated connection ,size=0 +2025-09-24 00:50:15,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:13,240 INFO Connection check task end +2025-09-24 00:50:15,572 INFO Out dated connection ,size=0 -2025-09-23 00:50:15,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:15,572 INFO Connection check task end -2025-09-23 00:50:16,240 INFO Connection check task start +2025-09-24 00:50:18,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:16,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:18,573 INFO Connection check task start -2025-09-23 00:50:16,240 INFO Out dated connection ,size=0 +2025-09-24 00:50:18,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:16,240 INFO Connection check task end +2025-09-24 00:50:18,573 INFO Out dated connection ,size=0 -2025-09-23 00:50:18,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:18,573 INFO Connection check task end -2025-09-23 00:50:19,241 INFO Connection check task start +2025-09-24 00:50:21,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:19,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:21,574 INFO Connection check task start -2025-09-23 00:50:19,241 INFO Out dated connection ,size=0 +2025-09-24 00:50:21,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:19,241 INFO Connection check task end +2025-09-24 00:50:21,574 INFO Out dated connection ,size=0 -2025-09-23 00:50:21,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:21,574 INFO Connection check task end -2025-09-23 00:50:22,242 INFO Connection check task start +2025-09-24 00:50:24,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:22,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:24,575 INFO Connection check task start -2025-09-23 00:50:22,242 INFO Out dated connection ,size=0 +2025-09-24 00:50:24,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:22,242 INFO Connection check task end +2025-09-24 00:50:24,575 INFO Out dated connection ,size=0 -2025-09-23 00:50:24,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:24,576 INFO Connection check task end -2025-09-23 00:50:25,243 INFO Connection check task start +2025-09-24 00:50:27,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:25,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:27,576 INFO Connection check task start -2025-09-23 00:50:25,243 INFO Out dated connection ,size=0 +2025-09-24 00:50:27,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:25,243 INFO Connection check task end +2025-09-24 00:50:27,576 INFO Out dated connection ,size=0 -2025-09-23 00:50:27,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:27,576 INFO Connection check task end -2025-09-23 00:50:28,244 INFO Connection check task start +2025-09-24 00:50:30,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:28,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:30,577 INFO Connection check task start -2025-09-23 00:50:28,244 INFO Out dated connection ,size=0 +2025-09-24 00:50:30,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:28,244 INFO Connection check task end +2025-09-24 00:50:30,578 INFO Out dated connection ,size=0 -2025-09-23 00:50:30,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:30,578 INFO Connection check task end -2025-09-23 00:50:31,245 INFO Connection check task start +2025-09-24 00:50:33,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:31,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:33,578 INFO Connection check task start -2025-09-23 00:50:31,245 INFO Out dated connection ,size=0 +2025-09-24 00:50:33,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:31,245 INFO Connection check task end +2025-09-24 00:50:33,578 INFO Out dated connection ,size=0 -2025-09-23 00:50:33,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:33,578 INFO Connection check task end -2025-09-23 00:50:34,246 INFO Connection check task start +2025-09-24 00:50:36,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:34,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:36,579 INFO Connection check task start -2025-09-23 00:50:34,246 INFO Out dated connection ,size=0 +2025-09-24 00:50:36,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:34,246 INFO Connection check task end +2025-09-24 00:50:36,579 INFO Out dated connection ,size=0 -2025-09-23 00:50:36,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:36,579 INFO Connection check task end -2025-09-23 00:50:37,247 INFO Connection check task start +2025-09-24 00:50:39,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:37,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:39,580 INFO Connection check task start -2025-09-23 00:50:37,247 INFO Out dated connection ,size=0 +2025-09-24 00:50:39,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:37,247 INFO Connection check task end +2025-09-24 00:50:39,581 INFO Out dated connection ,size=0 -2025-09-23 00:50:39,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:39,581 INFO Connection check task end -2025-09-23 00:50:40,248 INFO Connection check task start +2025-09-24 00:50:42,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:40,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:42,581 INFO Connection check task start -2025-09-23 00:50:40,249 INFO Out dated connection ,size=0 +2025-09-24 00:50:42,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:40,249 INFO Connection check task end +2025-09-24 00:50:42,581 INFO Out dated connection ,size=0 -2025-09-23 00:50:42,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:42,582 INFO Connection check task end -2025-09-23 00:50:43,249 INFO Connection check task start +2025-09-24 00:50:45,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:43,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:45,582 INFO Connection check task start -2025-09-23 00:50:43,249 INFO Out dated connection ,size=0 +2025-09-24 00:50:45,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:43,249 INFO Connection check task end +2025-09-24 00:50:45,582 INFO Out dated connection ,size=0 -2025-09-23 00:50:45,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:45,582 INFO Connection check task end -2025-09-23 00:50:46,250 INFO Connection check task start +2025-09-24 00:50:48,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:46,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:48,582 INFO Connection check task start -2025-09-23 00:50:46,251 INFO Out dated connection ,size=0 +2025-09-24 00:50:48,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:46,251 INFO Connection check task end +2025-09-24 00:50:48,582 INFO Out dated connection ,size=0 -2025-09-23 00:50:48,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:48,582 INFO Connection check task end -2025-09-23 00:50:49,252 INFO Connection check task start +2025-09-24 00:50:51,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:49,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:51,583 INFO Connection check task start -2025-09-23 00:50:49,252 INFO Out dated connection ,size=0 +2025-09-24 00:50:51,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:49,252 INFO Connection check task end +2025-09-24 00:50:51,584 INFO Out dated connection ,size=0 -2025-09-23 00:50:51,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:51,584 INFO Connection check task end -2025-09-23 00:50:52,253 INFO Connection check task start +2025-09-24 00:50:54,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:52,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:54,585 INFO Connection check task start -2025-09-23 00:50:52,253 INFO Out dated connection ,size=0 +2025-09-24 00:50:54,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:52,253 INFO Connection check task end +2025-09-24 00:50:54,585 INFO Out dated connection ,size=0 -2025-09-23 00:50:54,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:54,585 INFO Connection check task end -2025-09-23 00:50:55,254 INFO Connection check task start +2025-09-24 00:50:57,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:55,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:50:57,586 INFO Connection check task start -2025-09-23 00:50:55,254 INFO Out dated connection ,size=0 +2025-09-24 00:50:57,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:55,255 INFO Connection check task end +2025-09-24 00:50:57,586 INFO Out dated connection ,size=0 -2025-09-23 00:50:57,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:50:57,586 INFO Connection check task end -2025-09-23 00:50:58,255 INFO Connection check task start +2025-09-24 00:51:00,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:50:58,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:00,587 INFO Connection check task start -2025-09-23 00:50:58,255 INFO Out dated connection ,size=0 +2025-09-24 00:51:00,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:50:58,255 INFO Connection check task end +2025-09-24 00:51:00,587 INFO Out dated connection ,size=0 -2025-09-23 00:51:00,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:00,587 INFO Connection check task end -2025-09-23 00:51:01,256 INFO Connection check task start +2025-09-24 00:51:03,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:01,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:03,588 INFO Connection check task start -2025-09-23 00:51:01,256 INFO Out dated connection ,size=0 +2025-09-24 00:51:03,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:01,256 INFO Connection check task end +2025-09-24 00:51:03,588 INFO Out dated connection ,size=0 -2025-09-23 00:51:03,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:03,588 INFO Connection check task end -2025-09-23 00:51:04,257 INFO Connection check task start +2025-09-24 00:51:06,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:04,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:06,589 INFO Connection check task start -2025-09-23 00:51:04,257 INFO Out dated connection ,size=0 +2025-09-24 00:51:06,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:04,257 INFO Connection check task end +2025-09-24 00:51:06,589 INFO Out dated connection ,size=0 -2025-09-23 00:51:06,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:06,589 INFO Connection check task end -2025-09-23 00:51:07,258 INFO Connection check task start +2025-09-24 00:51:09,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:07,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:09,590 INFO Connection check task start -2025-09-23 00:51:07,259 INFO Out dated connection ,size=0 +2025-09-24 00:51:09,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:07,259 INFO Connection check task end +2025-09-24 00:51:09,590 INFO Out dated connection ,size=0 -2025-09-23 00:51:09,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:09,590 INFO Connection check task end -2025-09-23 00:51:10,259 INFO Connection check task start +2025-09-24 00:51:12,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:10,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:12,591 INFO Connection check task start -2025-09-23 00:51:10,260 INFO Out dated connection ,size=0 +2025-09-24 00:51:12,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:10,260 INFO Connection check task end +2025-09-24 00:51:12,591 INFO Out dated connection ,size=0 -2025-09-23 00:51:12,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:12,591 INFO Connection check task end -2025-09-23 00:51:13,260 INFO Connection check task start +2025-09-24 00:51:15,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:13,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:15,592 INFO Connection check task start -2025-09-23 00:51:13,261 INFO Out dated connection ,size=0 +2025-09-24 00:51:15,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:13,261 INFO Connection check task end +2025-09-24 00:51:15,592 INFO Out dated connection ,size=0 -2025-09-23 00:51:15,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:15,592 INFO Connection check task end -2025-09-23 00:51:16,261 INFO Connection check task start +2025-09-24 00:51:18,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:16,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:18,593 INFO Connection check task start -2025-09-23 00:51:16,261 INFO Out dated connection ,size=0 +2025-09-24 00:51:18,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:16,261 INFO Connection check task end +2025-09-24 00:51:18,593 INFO Out dated connection ,size=0 -2025-09-23 00:51:18,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:18,593 INFO Connection check task end -2025-09-23 00:51:19,262 INFO Connection check task start +2025-09-24 00:51:21,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:19,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:21,593 INFO Connection check task start -2025-09-23 00:51:19,262 INFO Out dated connection ,size=0 +2025-09-24 00:51:21,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:19,262 INFO Connection check task end +2025-09-24 00:51:21,594 INFO Out dated connection ,size=0 -2025-09-23 00:51:21,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:21,594 INFO Connection check task end -2025-09-23 00:51:22,263 INFO Connection check task start +2025-09-24 00:51:24,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:22,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:24,595 INFO Connection check task start -2025-09-23 00:51:22,263 INFO Out dated connection ,size=0 +2025-09-24 00:51:24,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:22,263 INFO Connection check task end +2025-09-24 00:51:24,595 INFO Out dated connection ,size=0 -2025-09-23 00:51:24,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:24,595 INFO Connection check task end -2025-09-23 00:51:25,263 INFO Connection check task start +2025-09-24 00:51:27,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:25,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:27,596 INFO Connection check task start -2025-09-23 00:51:25,263 INFO Out dated connection ,size=0 +2025-09-24 00:51:27,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:25,263 INFO Connection check task end +2025-09-24 00:51:27,596 INFO Out dated connection ,size=0 -2025-09-23 00:51:27,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:27,596 INFO Connection check task end -2025-09-23 00:51:28,264 INFO Connection check task start +2025-09-24 00:51:30,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:28,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:30,596 INFO Connection check task start -2025-09-23 00:51:28,264 INFO Out dated connection ,size=0 +2025-09-24 00:51:30,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:28,264 INFO Connection check task end +2025-09-24 00:51:30,596 INFO Out dated connection ,size=0 -2025-09-23 00:51:30,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:30,596 INFO Connection check task end -2025-09-23 00:51:31,264 INFO Connection check task start +2025-09-24 00:51:33,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:31,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:33,597 INFO Connection check task start -2025-09-23 00:51:31,265 INFO Out dated connection ,size=0 +2025-09-24 00:51:33,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:31,265 INFO Connection check task end +2025-09-24 00:51:33,597 INFO Out dated connection ,size=0 -2025-09-23 00:51:33,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:33,597 INFO Connection check task end -2025-09-23 00:51:34,265 INFO Connection check task start +2025-09-24 00:51:36,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:34,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:36,598 INFO Connection check task start -2025-09-23 00:51:34,265 INFO Out dated connection ,size=0 +2025-09-24 00:51:36,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:34,266 INFO Connection check task end +2025-09-24 00:51:36,598 INFO Out dated connection ,size=0 -2025-09-23 00:51:36,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:36,598 INFO Connection check task end -2025-09-23 00:51:37,266 INFO Connection check task start +2025-09-24 00:51:39,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:37,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:39,598 INFO Connection check task start -2025-09-23 00:51:37,266 INFO Out dated connection ,size=0 +2025-09-24 00:51:39,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:37,266 INFO Connection check task end +2025-09-24 00:51:39,598 INFO Out dated connection ,size=0 -2025-09-23 00:51:39,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:39,598 INFO Connection check task end -2025-09-23 00:51:40,267 INFO Connection check task start +2025-09-24 00:51:42,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:40,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:42,601 INFO Connection check task start -2025-09-23 00:51:40,268 INFO Out dated connection ,size=0 +2025-09-24 00:51:42,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:40,268 INFO Connection check task end +2025-09-24 00:51:42,601 INFO Out dated connection ,size=0 -2025-09-23 00:51:42,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:42,601 INFO Connection check task end -2025-09-23 00:51:43,268 INFO Connection check task start +2025-09-24 00:51:45,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:43,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:45,601 INFO Connection check task start -2025-09-23 00:51:43,268 INFO Out dated connection ,size=0 +2025-09-24 00:51:45,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:43,268 INFO Connection check task end +2025-09-24 00:51:45,602 INFO Out dated connection ,size=0 -2025-09-23 00:51:45,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:45,602 INFO Connection check task end -2025-09-23 00:51:46,268 INFO Connection check task start +2025-09-24 00:51:48,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:46,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:48,602 INFO Connection check task start -2025-09-23 00:51:46,269 INFO Out dated connection ,size=0 +2025-09-24 00:51:48,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:46,269 INFO Connection check task end +2025-09-24 00:51:48,602 INFO Out dated connection ,size=0 -2025-09-23 00:51:48,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:48,602 INFO Connection check task end -2025-09-23 00:51:49,269 INFO Connection check task start +2025-09-24 00:51:51,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:49,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:51,603 INFO Connection check task start -2025-09-23 00:51:49,269 INFO Out dated connection ,size=0 +2025-09-24 00:51:51,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:49,269 INFO Connection check task end +2025-09-24 00:51:51,603 INFO Out dated connection ,size=0 -2025-09-23 00:51:51,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:51,603 INFO Connection check task end -2025-09-23 00:51:52,270 INFO Connection check task start +2025-09-24 00:51:54,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:52,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:54,604 INFO Connection check task start -2025-09-23 00:51:52,270 INFO Out dated connection ,size=0 +2025-09-24 00:51:54,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:52,270 INFO Connection check task end +2025-09-24 00:51:54,604 INFO Out dated connection ,size=0 -2025-09-23 00:51:54,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:54,604 INFO Connection check task end -2025-09-23 00:51:55,271 INFO Connection check task start +2025-09-24 00:51:57,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:55,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:51:57,604 INFO Connection check task start -2025-09-23 00:51:55,271 INFO Out dated connection ,size=0 +2025-09-24 00:51:57,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:55,271 INFO Connection check task end +2025-09-24 00:51:57,604 INFO Out dated connection ,size=0 -2025-09-23 00:51:57,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:51:57,605 INFO Connection check task end -2025-09-23 00:51:58,272 INFO Connection check task start +2025-09-24 00:52:00,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:51:58,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:00,605 INFO Connection check task start -2025-09-23 00:51:58,272 INFO Out dated connection ,size=0 +2025-09-24 00:52:00,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:51:58,272 INFO Connection check task end +2025-09-24 00:52:00,605 INFO Out dated connection ,size=0 -2025-09-23 00:52:00,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:00,605 INFO Connection check task end -2025-09-23 00:52:01,273 INFO Connection check task start +2025-09-24 00:52:03,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:01,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:03,606 INFO Connection check task start -2025-09-23 00:52:01,273 INFO Out dated connection ,size=0 +2025-09-24 00:52:03,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:01,273 INFO Connection check task end +2025-09-24 00:52:03,606 INFO Out dated connection ,size=0 -2025-09-23 00:52:03,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:03,606 INFO Connection check task end -2025-09-23 00:52:04,274 INFO Connection check task start +2025-09-24 00:52:06,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:04,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:06,606 INFO Connection check task start -2025-09-23 00:52:04,274 INFO Out dated connection ,size=0 +2025-09-24 00:52:06,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:04,274 INFO Connection check task end +2025-09-24 00:52:06,606 INFO Out dated connection ,size=0 -2025-09-23 00:52:06,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:06,606 INFO Connection check task end -2025-09-23 00:52:07,274 INFO Connection check task start +2025-09-24 00:52:09,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:07,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:09,607 INFO Connection check task start -2025-09-23 00:52:07,275 INFO Out dated connection ,size=0 +2025-09-24 00:52:09,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:07,275 INFO Connection check task end +2025-09-24 00:52:09,607 INFO Out dated connection ,size=0 -2025-09-23 00:52:09,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:09,607 INFO Connection check task end -2025-09-23 00:52:10,275 INFO Connection check task start +2025-09-24 00:52:12,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:10,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:12,607 INFO Connection check task start -2025-09-23 00:52:10,275 INFO Out dated connection ,size=0 +2025-09-24 00:52:12,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:10,275 INFO Connection check task end +2025-09-24 00:52:12,608 INFO Out dated connection ,size=0 -2025-09-23 00:52:12,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:12,608 INFO Connection check task end -2025-09-23 00:52:13,276 INFO Connection check task start +2025-09-24 00:52:15,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:13,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:15,608 INFO Connection check task start -2025-09-23 00:52:13,276 INFO Out dated connection ,size=0 +2025-09-24 00:52:15,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:13,276 INFO Connection check task end +2025-09-24 00:52:15,608 INFO Out dated connection ,size=0 -2025-09-23 00:52:15,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:15,608 INFO Connection check task end -2025-09-23 00:52:16,277 INFO Connection check task start +2025-09-24 00:52:18,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:16,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:18,609 INFO Connection check task start -2025-09-23 00:52:16,277 INFO Out dated connection ,size=0 +2025-09-24 00:52:18,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:16,277 INFO Connection check task end +2025-09-24 00:52:18,609 INFO Out dated connection ,size=0 -2025-09-23 00:52:18,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:18,609 INFO Connection check task end -2025-09-23 00:52:19,278 INFO Connection check task start +2025-09-24 00:52:21,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:19,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:21,610 INFO Connection check task start -2025-09-23 00:52:19,278 INFO Out dated connection ,size=0 +2025-09-24 00:52:21,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:19,278 INFO Connection check task end +2025-09-24 00:52:21,610 INFO Out dated connection ,size=0 -2025-09-23 00:52:21,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:21,610 INFO Connection check task end -2025-09-23 00:52:22,279 INFO Connection check task start +2025-09-24 00:52:24,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:22,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:24,611 INFO Connection check task start -2025-09-23 00:52:22,279 INFO Out dated connection ,size=0 +2025-09-24 00:52:24,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:22,279 INFO Connection check task end +2025-09-24 00:52:24,611 INFO Out dated connection ,size=0 -2025-09-23 00:52:24,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:24,611 INFO Connection check task end -2025-09-23 00:52:25,280 INFO Connection check task start +2025-09-24 00:52:27,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:25,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:27,612 INFO Connection check task start -2025-09-23 00:52:25,280 INFO Out dated connection ,size=0 +2025-09-24 00:52:27,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:25,280 INFO Connection check task end +2025-09-24 00:52:27,612 INFO Out dated connection ,size=0 -2025-09-23 00:52:27,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:27,612 INFO Connection check task end -2025-09-23 00:52:28,281 INFO Connection check task start +2025-09-24 00:52:30,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:28,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:30,612 INFO Connection check task start -2025-09-23 00:52:28,281 INFO Out dated connection ,size=0 +2025-09-24 00:52:30,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:28,281 INFO Connection check task end +2025-09-24 00:52:30,612 INFO Out dated connection ,size=0 -2025-09-23 00:52:30,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:30,612 INFO Connection check task end -2025-09-23 00:52:31,282 INFO Connection check task start +2025-09-24 00:52:33,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:31,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:33,613 INFO Connection check task start -2025-09-23 00:52:31,282 INFO Out dated connection ,size=0 +2025-09-24 00:52:33,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:31,282 INFO Connection check task end +2025-09-24 00:52:33,613 INFO Out dated connection ,size=0 -2025-09-23 00:52:33,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:33,613 INFO Connection check task end -2025-09-23 00:52:34,282 INFO Connection check task start +2025-09-24 00:52:36,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:34,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:36,613 INFO Connection check task start -2025-09-23 00:52:34,283 INFO Out dated connection ,size=0 +2025-09-24 00:52:36,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:34,283 INFO Connection check task end +2025-09-24 00:52:36,614 INFO Out dated connection ,size=0 -2025-09-23 00:52:36,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:36,614 INFO Connection check task end -2025-09-23 00:52:37,283 INFO Connection check task start +2025-09-24 00:52:39,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:37,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:39,614 INFO Connection check task start -2025-09-23 00:52:37,283 INFO Out dated connection ,size=0 +2025-09-24 00:52:39,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:37,283 INFO Connection check task end +2025-09-24 00:52:39,614 INFO Out dated connection ,size=0 -2025-09-23 00:52:39,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:39,614 INFO Connection check task end -2025-09-23 00:52:40,283 INFO Connection check task start +2025-09-24 00:52:42,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:40,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:42,615 INFO Connection check task start -2025-09-23 00:52:40,283 INFO Out dated connection ,size=0 +2025-09-24 00:52:42,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:40,283 INFO Connection check task end +2025-09-24 00:52:42,615 INFO Out dated connection ,size=0 -2025-09-23 00:52:42,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:42,615 INFO Connection check task end -2025-09-23 00:52:43,283 INFO Connection check task start +2025-09-24 00:52:45,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:43,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:45,615 INFO Connection check task start -2025-09-23 00:52:43,284 INFO Out dated connection ,size=0 +2025-09-24 00:52:45,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:43,284 INFO Connection check task end +2025-09-24 00:52:45,616 INFO Out dated connection ,size=0 -2025-09-23 00:52:45,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:45,616 INFO Connection check task end -2025-09-23 00:52:46,284 INFO Connection check task start +2025-09-24 00:52:48,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:46,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:48,616 INFO Connection check task start -2025-09-23 00:52:46,284 INFO Out dated connection ,size=0 +2025-09-24 00:52:48,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:46,284 INFO Connection check task end +2025-09-24 00:52:48,616 INFO Out dated connection ,size=0 -2025-09-23 00:52:48,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:48,616 INFO Connection check task end -2025-09-23 00:52:49,285 INFO Connection check task start +2025-09-24 00:52:51,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:49,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:51,616 INFO Connection check task start -2025-09-23 00:52:49,285 INFO Out dated connection ,size=0 +2025-09-24 00:52:51,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:49,285 INFO Connection check task end +2025-09-24 00:52:51,617 INFO Out dated connection ,size=0 -2025-09-23 00:52:51,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:51,617 INFO Connection check task end -2025-09-23 00:52:52,286 INFO Connection check task start +2025-09-24 00:52:54,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:52,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:54,617 INFO Connection check task start -2025-09-23 00:52:52,286 INFO Out dated connection ,size=0 +2025-09-24 00:52:54,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:52,286 INFO Connection check task end +2025-09-24 00:52:54,617 INFO Out dated connection ,size=0 -2025-09-23 00:52:54,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:54,617 INFO Connection check task end -2025-09-23 00:52:55,287 INFO Connection check task start +2025-09-24 00:52:57,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:55,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:52:57,617 INFO Connection check task start -2025-09-23 00:52:55,287 INFO Out dated connection ,size=0 +2025-09-24 00:52:57,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:55,287 INFO Connection check task end +2025-09-24 00:52:57,618 INFO Out dated connection ,size=0 -2025-09-23 00:52:57,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:52:57,618 INFO Connection check task end -2025-09-23 00:52:58,288 INFO Connection check task start +2025-09-24 00:53:00,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:52:58,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:00,618 INFO Connection check task start -2025-09-23 00:52:58,288 INFO Out dated connection ,size=0 +2025-09-24 00:53:00,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:52:58,288 INFO Connection check task end +2025-09-24 00:53:00,618 INFO Out dated connection ,size=0 -2025-09-23 00:53:00,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:00,618 INFO Connection check task end -2025-09-23 00:53:01,288 INFO Connection check task start +2025-09-24 00:53:03,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:01,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:03,619 INFO Connection check task start -2025-09-23 00:53:01,288 INFO Out dated connection ,size=0 +2025-09-24 00:53:03,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:01,288 INFO Connection check task end +2025-09-24 00:53:03,619 INFO Out dated connection ,size=0 -2025-09-23 00:53:03,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:03,619 INFO Connection check task end -2025-09-23 00:53:04,289 INFO Connection check task start +2025-09-24 00:53:06,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:04,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:06,619 INFO Connection check task start -2025-09-23 00:53:04,289 INFO Out dated connection ,size=0 +2025-09-24 00:53:06,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:04,289 INFO Connection check task end +2025-09-24 00:53:06,619 INFO Out dated connection ,size=0 -2025-09-23 00:53:06,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:06,619 INFO Connection check task end -2025-09-23 00:53:07,290 INFO Connection check task start +2025-09-24 00:53:09,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:07,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:09,619 INFO Connection check task start -2025-09-23 00:53:07,290 INFO Out dated connection ,size=0 +2025-09-24 00:53:09,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:07,291 INFO Connection check task end +2025-09-24 00:53:09,620 INFO Out dated connection ,size=0 -2025-09-23 00:53:09,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:09,620 INFO Connection check task end -2025-09-23 00:53:10,291 INFO Connection check task start +2025-09-24 00:53:12,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:10,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:12,620 INFO Connection check task start -2025-09-23 00:53:10,291 INFO Out dated connection ,size=0 +2025-09-24 00:53:12,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:10,291 INFO Connection check task end +2025-09-24 00:53:12,620 INFO Out dated connection ,size=0 -2025-09-23 00:53:12,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:12,621 INFO Connection check task end -2025-09-23 00:53:13,292 INFO Connection check task start +2025-09-24 00:53:15,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:13,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:15,621 INFO Connection check task start -2025-09-23 00:53:13,292 INFO Out dated connection ,size=0 +2025-09-24 00:53:15,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:13,292 INFO Connection check task end +2025-09-24 00:53:15,621 INFO Out dated connection ,size=0 -2025-09-23 00:53:15,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:15,621 INFO Connection check task end -2025-09-23 00:53:16,292 INFO Connection check task start +2025-09-24 00:53:18,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:16,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:18,622 INFO Connection check task start -2025-09-23 00:53:16,292 INFO Out dated connection ,size=0 +2025-09-24 00:53:18,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:16,293 INFO Connection check task end +2025-09-24 00:53:18,623 INFO Out dated connection ,size=0 -2025-09-23 00:53:18,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:18,623 INFO Connection check task end -2025-09-23 00:53:19,293 INFO Connection check task start +2025-09-24 00:53:21,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:19,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:21,623 INFO Connection check task start -2025-09-23 00:53:19,293 INFO Out dated connection ,size=0 +2025-09-24 00:53:21,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:19,293 INFO Connection check task end +2025-09-24 00:53:21,623 INFO Out dated connection ,size=0 -2025-09-23 00:53:21,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:21,623 INFO Connection check task end -2025-09-23 00:53:22,293 INFO Connection check task start +2025-09-24 00:53:24,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:22,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:24,623 INFO Connection check task start -2025-09-23 00:53:22,294 INFO Out dated connection ,size=0 +2025-09-24 00:53:24,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:22,294 INFO Connection check task end +2025-09-24 00:53:24,623 INFO Out dated connection ,size=0 -2025-09-23 00:53:24,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:24,623 INFO Connection check task end -2025-09-23 00:53:25,294 INFO Connection check task start +2025-09-24 00:53:27,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:25,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:27,625 INFO Connection check task start -2025-09-23 00:53:25,294 INFO Out dated connection ,size=0 +2025-09-24 00:53:27,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:25,294 INFO Connection check task end +2025-09-24 00:53:27,625 INFO Out dated connection ,size=0 -2025-09-23 00:53:27,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:27,625 INFO Connection check task end -2025-09-23 00:53:28,295 INFO Connection check task start +2025-09-24 00:53:30,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:28,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:30,625 INFO Connection check task start -2025-09-23 00:53:28,295 INFO Out dated connection ,size=0 +2025-09-24 00:53:30,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:28,295 INFO Connection check task end +2025-09-24 00:53:30,626 INFO Out dated connection ,size=0 -2025-09-23 00:53:30,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:30,626 INFO Connection check task end -2025-09-23 00:53:31,296 INFO Connection check task start +2025-09-24 00:53:33,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:31,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:33,626 INFO Connection check task start -2025-09-23 00:53:31,296 INFO Out dated connection ,size=0 +2025-09-24 00:53:33,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:31,296 INFO Connection check task end +2025-09-24 00:53:33,626 INFO Out dated connection ,size=0 -2025-09-23 00:53:33,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:33,626 INFO Connection check task end -2025-09-23 00:53:34,297 INFO Connection check task start +2025-09-24 00:53:36,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:34,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:36,627 INFO Connection check task start -2025-09-23 00:53:34,297 INFO Out dated connection ,size=0 +2025-09-24 00:53:36,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:34,297 INFO Connection check task end +2025-09-24 00:53:36,627 INFO Out dated connection ,size=0 -2025-09-23 00:53:36,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:36,628 INFO Connection check task end -2025-09-23 00:53:37,298 INFO Connection check task start +2025-09-24 00:53:39,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:37,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:39,628 INFO Connection check task start -2025-09-23 00:53:37,298 INFO Out dated connection ,size=0 +2025-09-24 00:53:39,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:37,298 INFO Connection check task end +2025-09-24 00:53:39,628 INFO Out dated connection ,size=0 -2025-09-23 00:53:39,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:39,628 INFO Connection check task end -2025-09-23 00:53:40,298 INFO Connection check task start +2025-09-24 00:53:42,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:40,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:42,630 INFO Connection check task start -2025-09-23 00:53:40,299 INFO Out dated connection ,size=0 +2025-09-24 00:53:42,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:40,299 INFO Connection check task end +2025-09-24 00:53:42,630 INFO Out dated connection ,size=0 -2025-09-23 00:53:42,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:42,630 INFO Connection check task end -2025-09-23 00:53:43,299 INFO Connection check task start +2025-09-24 00:53:45,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:43,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:45,631 INFO Connection check task start -2025-09-23 00:53:43,299 INFO Out dated connection ,size=0 +2025-09-24 00:53:45,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:43,299 INFO Connection check task end +2025-09-24 00:53:45,631 INFO Out dated connection ,size=0 -2025-09-23 00:53:45,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:45,631 INFO Connection check task end -2025-09-23 00:53:46,300 INFO Connection check task start +2025-09-24 00:53:48,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:46,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:48,632 INFO Connection check task start -2025-09-23 00:53:46,301 INFO Out dated connection ,size=0 +2025-09-24 00:53:48,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:46,301 INFO Connection check task end +2025-09-24 00:53:48,632 INFO Out dated connection ,size=0 -2025-09-23 00:53:48,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:48,632 INFO Connection check task end -2025-09-23 00:53:49,302 INFO Connection check task start +2025-09-24 00:53:51,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:49,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:51,632 INFO Connection check task start -2025-09-23 00:53:49,302 INFO Out dated connection ,size=0 +2025-09-24 00:53:51,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:49,302 INFO Connection check task end +2025-09-24 00:53:51,633 INFO Out dated connection ,size=0 -2025-09-23 00:53:51,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:51,633 INFO Connection check task end -2025-09-23 00:53:52,303 INFO Connection check task start +2025-09-24 00:53:54,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:52,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:54,634 INFO Connection check task start -2025-09-23 00:53:52,304 INFO Out dated connection ,size=0 +2025-09-24 00:53:54,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:52,304 INFO Connection check task end +2025-09-24 00:53:54,634 INFO Out dated connection ,size=0 -2025-09-23 00:53:54,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:54,634 INFO Connection check task end -2025-09-23 00:53:55,305 INFO Connection check task start +2025-09-24 00:53:57,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:55,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:53:57,635 INFO Connection check task start -2025-09-23 00:53:55,305 INFO Out dated connection ,size=0 +2025-09-24 00:53:57,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:55,305 INFO Connection check task end +2025-09-24 00:53:57,635 INFO Out dated connection ,size=0 -2025-09-23 00:53:57,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:53:57,635 INFO Connection check task end -2025-09-23 00:53:58,305 INFO Connection check task start +2025-09-24 00:54:00,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:53:58,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:00,636 INFO Connection check task start -2025-09-23 00:53:58,306 INFO Out dated connection ,size=0 +2025-09-24 00:54:00,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:53:58,306 INFO Connection check task end +2025-09-24 00:54:00,636 INFO Out dated connection ,size=0 -2025-09-23 00:54:00,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:00,636 INFO Connection check task end -2025-09-23 00:54:01,306 INFO Connection check task start +2025-09-24 00:54:03,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:01,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:03,636 INFO Connection check task start -2025-09-23 00:54:01,307 INFO Out dated connection ,size=0 +2025-09-24 00:54:03,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:01,307 INFO Connection check task end +2025-09-24 00:54:03,637 INFO Out dated connection ,size=0 -2025-09-23 00:54:03,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:03,637 INFO Connection check task end -2025-09-23 00:54:04,307 INFO Connection check task start +2025-09-24 00:54:06,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:04,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:06,637 INFO Connection check task start -2025-09-23 00:54:04,308 INFO Out dated connection ,size=0 +2025-09-24 00:54:06,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:04,308 INFO Connection check task end +2025-09-24 00:54:06,637 INFO Out dated connection ,size=0 -2025-09-23 00:54:06,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:06,637 INFO Connection check task end -2025-09-23 00:54:07,309 INFO Connection check task start +2025-09-24 00:54:09,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:07,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:09,637 INFO Connection check task start -2025-09-23 00:54:07,309 INFO Out dated connection ,size=0 +2025-09-24 00:54:09,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:07,309 INFO Connection check task end +2025-09-24 00:54:09,638 INFO Out dated connection ,size=0 -2025-09-23 00:54:09,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:09,638 INFO Connection check task end -2025-09-23 00:54:10,310 INFO Connection check task start +2025-09-24 00:54:12,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:10,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:12,638 INFO Connection check task start -2025-09-23 00:54:10,310 INFO Out dated connection ,size=0 +2025-09-24 00:54:12,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:10,310 INFO Connection check task end +2025-09-24 00:54:12,638 INFO Out dated connection ,size=0 -2025-09-23 00:54:12,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:12,638 INFO Connection check task end -2025-09-23 00:54:13,311 INFO Connection check task start +2025-09-24 00:54:15,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:13,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:15,639 INFO Connection check task start -2025-09-23 00:54:13,311 INFO Out dated connection ,size=0 +2025-09-24 00:54:15,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:13,311 INFO Connection check task end +2025-09-24 00:54:15,639 INFO Out dated connection ,size=0 -2025-09-23 00:54:15,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:15,639 INFO Connection check task end -2025-09-23 00:54:16,313 INFO Connection check task start +2025-09-24 00:54:18,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:16,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:18,639 INFO Connection check task start -2025-09-23 00:54:16,313 INFO Out dated connection ,size=0 +2025-09-24 00:54:18,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:16,313 INFO Connection check task end +2025-09-24 00:54:18,640 INFO Out dated connection ,size=0 -2025-09-23 00:54:18,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:18,640 INFO Connection check task end -2025-09-23 00:54:19,313 INFO Connection check task start +2025-09-24 00:54:21,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:19,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:21,640 INFO Connection check task start -2025-09-23 00:54:19,314 INFO Out dated connection ,size=0 +2025-09-24 00:54:21,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:19,314 INFO Connection check task end +2025-09-24 00:54:21,641 INFO Out dated connection ,size=0 -2025-09-23 00:54:21,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:21,641 INFO Connection check task end -2025-09-23 00:54:22,314 INFO Connection check task start +2025-09-24 00:54:24,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:22,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:24,641 INFO Connection check task start -2025-09-23 00:54:22,314 INFO Out dated connection ,size=0 +2025-09-24 00:54:24,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:22,315 INFO Connection check task end +2025-09-24 00:54:24,641 INFO Out dated connection ,size=0 -2025-09-23 00:54:24,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:24,641 INFO Connection check task end -2025-09-23 00:54:25,316 INFO Connection check task start +2025-09-24 00:54:27,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:25,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:27,642 INFO Connection check task start -2025-09-23 00:54:25,316 INFO Out dated connection ,size=0 +2025-09-24 00:54:27,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:25,316 INFO Connection check task end +2025-09-24 00:54:27,642 INFO Out dated connection ,size=0 -2025-09-23 00:54:27,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:27,642 INFO Connection check task end -2025-09-23 00:54:28,317 INFO Connection check task start +2025-09-24 00:54:30,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:28,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:30,643 INFO Connection check task start -2025-09-23 00:54:28,318 INFO Out dated connection ,size=0 +2025-09-24 00:54:30,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:28,318 INFO Connection check task end +2025-09-24 00:54:30,643 INFO Out dated connection ,size=0 -2025-09-23 00:54:30,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:30,643 INFO Connection check task end -2025-09-23 00:54:31,318 INFO Connection check task start +2025-09-24 00:54:33,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:31,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:33,644 INFO Connection check task start -2025-09-23 00:54:31,319 INFO Out dated connection ,size=0 +2025-09-24 00:54:33,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:31,319 INFO Connection check task end +2025-09-24 00:54:33,644 INFO Out dated connection ,size=0 -2025-09-23 00:54:33,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:33,644 INFO Connection check task end -2025-09-23 00:54:34,320 INFO Connection check task start +2025-09-24 00:54:36,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:34,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:36,645 INFO Connection check task start -2025-09-23 00:54:34,320 INFO Out dated connection ,size=0 +2025-09-24 00:54:36,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:34,320 INFO Connection check task end +2025-09-24 00:54:36,667 INFO Out dated connection ,size=0 -2025-09-23 00:54:36,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:36,667 INFO Connection check task end -2025-09-23 00:54:37,320 INFO Connection check task start +2025-09-24 00:54:39,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:37,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:39,667 INFO Connection check task start -2025-09-23 00:54:37,320 INFO Out dated connection ,size=0 +2025-09-24 00:54:39,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:37,320 INFO Connection check task end +2025-09-24 00:54:39,668 INFO Out dated connection ,size=0 -2025-09-23 00:54:39,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:39,668 INFO Connection check task end -2025-09-23 00:54:40,321 INFO Connection check task start +2025-09-24 00:54:42,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:40,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:42,668 INFO Connection check task start -2025-09-23 00:54:40,321 INFO Out dated connection ,size=0 +2025-09-24 00:54:42,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:40,321 INFO Connection check task end +2025-09-24 00:54:42,668 INFO Out dated connection ,size=0 -2025-09-23 00:54:42,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:42,669 INFO Connection check task end -2025-09-23 00:54:43,322 INFO Connection check task start +2025-09-24 00:54:45,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:43,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:45,669 INFO Connection check task start -2025-09-23 00:54:43,322 INFO Out dated connection ,size=0 +2025-09-24 00:54:45,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:43,322 INFO Connection check task end +2025-09-24 00:54:45,669 INFO Out dated connection ,size=0 -2025-09-23 00:54:45,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:45,669 INFO Connection check task end -2025-09-23 00:54:46,323 INFO Connection check task start +2025-09-24 00:54:48,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:46,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:48,669 INFO Connection check task start -2025-09-23 00:54:46,323 INFO Out dated connection ,size=0 +2025-09-24 00:54:48,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:46,323 INFO Connection check task end +2025-09-24 00:54:48,670 INFO Out dated connection ,size=0 -2025-09-23 00:54:48,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:48,670 INFO Connection check task end -2025-09-23 00:54:49,324 INFO Connection check task start +2025-09-24 00:54:51,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:49,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:51,671 INFO Connection check task start -2025-09-23 00:54:49,325 INFO Out dated connection ,size=0 +2025-09-24 00:54:51,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:49,325 INFO Connection check task end +2025-09-24 00:54:51,671 INFO Out dated connection ,size=0 -2025-09-23 00:54:51,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:51,671 INFO Connection check task end -2025-09-23 00:54:52,326 INFO Connection check task start +2025-09-24 00:54:54,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:52,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:54,672 INFO Connection check task start -2025-09-23 00:54:52,326 INFO Out dated connection ,size=0 +2025-09-24 00:54:54,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:52,326 INFO Connection check task end +2025-09-24 00:54:54,672 INFO Out dated connection ,size=0 -2025-09-23 00:54:54,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:54,672 INFO Connection check task end -2025-09-23 00:54:55,327 INFO Connection check task start +2025-09-24 00:54:57,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:55,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:54:57,672 INFO Connection check task start -2025-09-23 00:54:55,328 INFO Out dated connection ,size=0 +2025-09-24 00:54:57,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:55,328 INFO Connection check task end +2025-09-24 00:54:57,672 INFO Out dated connection ,size=0 -2025-09-23 00:54:57,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:54:57,672 INFO Connection check task end -2025-09-23 00:54:58,329 INFO Connection check task start +2025-09-24 00:55:00,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:54:58,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:00,673 INFO Connection check task start -2025-09-23 00:54:58,329 INFO Out dated connection ,size=0 +2025-09-24 00:55:00,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:54:58,329 INFO Connection check task end +2025-09-24 00:55:00,673 INFO Out dated connection ,size=0 -2025-09-23 00:55:00,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:00,673 INFO Connection check task end -2025-09-23 00:55:01,330 INFO Connection check task start +2025-09-24 00:55:03,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:01,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:03,674 INFO Connection check task start -2025-09-23 00:55:01,330 INFO Out dated connection ,size=0 +2025-09-24 00:55:03,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:01,330 INFO Connection check task end +2025-09-24 00:55:03,674 INFO Out dated connection ,size=0 -2025-09-23 00:55:03,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:03,674 INFO Connection check task end -2025-09-23 00:55:04,331 INFO Connection check task start +2025-09-24 00:55:06,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:04,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:06,675 INFO Connection check task start -2025-09-23 00:55:04,331 INFO Out dated connection ,size=0 +2025-09-24 00:55:06,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:04,331 INFO Connection check task end +2025-09-24 00:55:06,675 INFO Out dated connection ,size=0 -2025-09-23 00:55:06,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:06,675 INFO Connection check task end -2025-09-23 00:55:07,331 INFO Connection check task start +2025-09-24 00:55:09,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:07,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:09,680 INFO Connection check task start -2025-09-23 00:55:07,332 INFO Out dated connection ,size=0 +2025-09-24 00:55:09,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:07,332 INFO Connection check task end +2025-09-24 00:55:09,681 INFO Out dated connection ,size=0 -2025-09-23 00:55:09,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:09,681 INFO Connection check task end -2025-09-23 00:55:10,333 INFO Connection check task start +2025-09-24 00:55:12,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:10,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:12,681 INFO Connection check task start -2025-09-23 00:55:10,333 INFO Out dated connection ,size=0 +2025-09-24 00:55:12,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:10,333 INFO Connection check task end +2025-09-24 00:55:12,681 INFO Out dated connection ,size=0 -2025-09-23 00:55:12,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:12,682 INFO Connection check task end -2025-09-23 00:55:13,333 INFO Connection check task start +2025-09-24 00:55:15,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:13,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:15,682 INFO Connection check task start -2025-09-23 00:55:13,333 INFO Out dated connection ,size=0 +2025-09-24 00:55:15,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:13,333 INFO Connection check task end +2025-09-24 00:55:15,682 INFO Out dated connection ,size=0 -2025-09-23 00:55:15,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:15,682 INFO Connection check task end -2025-09-23 00:55:16,334 INFO Connection check task start +2025-09-24 00:55:18,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:16,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:18,682 INFO Connection check task start -2025-09-23 00:55:16,334 INFO Out dated connection ,size=0 +2025-09-24 00:55:18,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:16,334 INFO Connection check task end +2025-09-24 00:55:18,683 INFO Out dated connection ,size=0 -2025-09-23 00:55:18,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:18,683 INFO Connection check task end -2025-09-23 00:55:19,335 INFO Connection check task start +2025-09-24 00:55:21,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:19,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:21,683 INFO Connection check task start -2025-09-23 00:55:19,335 INFO Out dated connection ,size=0 +2025-09-24 00:55:21,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:19,335 INFO Connection check task end +2025-09-24 00:55:21,683 INFO Out dated connection ,size=0 -2025-09-23 00:55:21,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:21,683 INFO Connection check task end -2025-09-23 00:55:22,336 INFO Connection check task start +2025-09-24 00:55:24,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:22,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:24,683 INFO Connection check task start -2025-09-23 00:55:22,336 INFO Out dated connection ,size=0 +2025-09-24 00:55:24,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:22,336 INFO Connection check task end +2025-09-24 00:55:24,684 INFO Out dated connection ,size=0 -2025-09-23 00:55:24,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:24,684 INFO Connection check task end -2025-09-23 00:55:25,337 INFO Connection check task start +2025-09-24 00:55:27,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:25,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:27,684 INFO Connection check task start -2025-09-23 00:55:25,337 INFO Out dated connection ,size=0 +2025-09-24 00:55:27,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:25,337 INFO Connection check task end +2025-09-24 00:55:27,684 INFO Out dated connection ,size=0 -2025-09-23 00:55:27,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:27,684 INFO Connection check task end -2025-09-23 00:55:28,338 INFO Connection check task start +2025-09-24 00:55:30,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:28,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:30,685 INFO Connection check task start -2025-09-23 00:55:28,338 INFO Out dated connection ,size=0 +2025-09-24 00:55:30,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:28,338 INFO Connection check task end +2025-09-24 00:55:30,686 INFO Out dated connection ,size=0 -2025-09-23 00:55:30,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:30,686 INFO Connection check task end -2025-09-23 00:55:31,338 INFO Connection check task start +2025-09-24 00:55:33,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:31,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:33,686 INFO Connection check task start -2025-09-23 00:55:31,339 INFO Out dated connection ,size=0 +2025-09-24 00:55:33,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:31,339 INFO Connection check task end +2025-09-24 00:55:33,686 INFO Out dated connection ,size=0 -2025-09-23 00:55:33,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:33,686 INFO Connection check task end -2025-09-23 00:55:34,339 INFO Connection check task start +2025-09-24 00:55:36,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:34,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:36,686 INFO Connection check task start -2025-09-23 00:55:34,339 INFO Out dated connection ,size=0 +2025-09-24 00:55:36,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:34,340 INFO Connection check task end +2025-09-24 00:55:36,686 INFO Out dated connection ,size=0 -2025-09-23 00:55:36,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:36,687 INFO Connection check task end -2025-09-23 00:55:37,340 INFO Connection check task start +2025-09-24 00:55:39,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:37,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:39,687 INFO Connection check task start -2025-09-23 00:55:37,340 INFO Out dated connection ,size=0 +2025-09-24 00:55:39,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:37,340 INFO Connection check task end +2025-09-24 00:55:39,687 INFO Out dated connection ,size=0 -2025-09-23 00:55:39,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:39,687 INFO Connection check task end -2025-09-23 00:55:40,340 INFO Connection check task start +2025-09-24 00:55:42,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:40,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:42,687 INFO Connection check task start -2025-09-23 00:55:40,341 INFO Out dated connection ,size=0 +2025-09-24 00:55:42,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:40,341 INFO Connection check task end +2025-09-24 00:55:42,688 INFO Out dated connection ,size=0 -2025-09-23 00:55:42,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:42,688 INFO Connection check task end -2025-09-23 00:55:43,341 INFO Connection check task start +2025-09-24 00:55:45,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:43,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:45,688 INFO Connection check task start -2025-09-23 00:55:43,341 INFO Out dated connection ,size=0 +2025-09-24 00:55:45,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:43,341 INFO Connection check task end +2025-09-24 00:55:45,688 INFO Out dated connection ,size=0 -2025-09-23 00:55:45,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:45,688 INFO Connection check task end -2025-09-23 00:55:46,342 INFO Connection check task start +2025-09-24 00:55:48,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:46,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:48,689 INFO Connection check task start -2025-09-23 00:55:46,343 INFO Out dated connection ,size=0 +2025-09-24 00:55:48,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:46,343 INFO Connection check task end +2025-09-24 00:55:48,689 INFO Out dated connection ,size=0 -2025-09-23 00:55:48,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:48,689 INFO Connection check task end -2025-09-23 00:55:49,343 INFO Connection check task start +2025-09-24 00:55:51,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:49,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:51,690 INFO Connection check task start -2025-09-23 00:55:49,343 INFO Out dated connection ,size=0 +2025-09-24 00:55:51,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:49,343 INFO Connection check task end +2025-09-24 00:55:51,691 INFO Out dated connection ,size=0 -2025-09-23 00:55:51,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:51,691 INFO Connection check task end -2025-09-23 00:55:52,344 INFO Connection check task start +2025-09-24 00:55:54,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:52,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:54,691 INFO Connection check task start -2025-09-23 00:55:52,344 INFO Out dated connection ,size=0 +2025-09-24 00:55:54,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:52,344 INFO Connection check task end +2025-09-24 00:55:54,691 INFO Out dated connection ,size=0 -2025-09-23 00:55:54,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:54,691 INFO Connection check task end -2025-09-23 00:55:55,346 INFO Connection check task start +2025-09-24 00:55:57,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:55,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:55:57,692 INFO Connection check task start -2025-09-23 00:55:55,346 INFO Out dated connection ,size=0 +2025-09-24 00:55:57,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:55,346 INFO Connection check task end +2025-09-24 00:55:57,692 INFO Out dated connection ,size=0 -2025-09-23 00:55:57,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:55:57,692 INFO Connection check task end -2025-09-23 00:55:58,347 INFO Connection check task start +2025-09-24 00:56:00,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:55:58,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:00,693 INFO Connection check task start -2025-09-23 00:55:58,348 INFO Out dated connection ,size=0 +2025-09-24 00:56:00,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:55:58,348 INFO Connection check task end +2025-09-24 00:56:00,693 INFO Out dated connection ,size=0 -2025-09-23 00:56:00,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:00,693 INFO Connection check task end -2025-09-23 00:56:01,349 INFO Connection check task start +2025-09-24 00:56:03,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:01,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:03,693 INFO Connection check task start -2025-09-23 00:56:01,349 INFO Out dated connection ,size=0 +2025-09-24 00:56:03,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:01,349 INFO Connection check task end +2025-09-24 00:56:03,693 INFO Out dated connection ,size=0 -2025-09-23 00:56:03,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:03,693 INFO Connection check task end -2025-09-23 00:56:04,349 INFO Connection check task start +2025-09-24 00:56:06,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:04,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:06,693 INFO Connection check task start -2025-09-23 00:56:04,350 INFO Out dated connection ,size=0 +2025-09-24 00:56:06,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:04,350 INFO Connection check task end +2025-09-24 00:56:06,694 INFO Out dated connection ,size=0 -2025-09-23 00:56:06,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:06,694 INFO Connection check task end -2025-09-23 00:56:07,350 INFO Connection check task start +2025-09-24 00:56:09,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:07,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:09,695 INFO Connection check task start -2025-09-23 00:56:07,350 INFO Out dated connection ,size=0 +2025-09-24 00:56:09,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:07,350 INFO Connection check task end +2025-09-24 00:56:09,695 INFO Out dated connection ,size=0 -2025-09-23 00:56:09,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:09,695 INFO Connection check task end -2025-09-23 00:56:10,351 INFO Connection check task start +2025-09-24 00:56:12,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:10,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:12,695 INFO Connection check task start -2025-09-23 00:56:10,351 INFO Out dated connection ,size=0 +2025-09-24 00:56:12,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:10,351 INFO Connection check task end +2025-09-24 00:56:12,695 INFO Out dated connection ,size=0 -2025-09-23 00:56:12,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:12,695 INFO Connection check task end -2025-09-23 00:56:13,351 INFO Connection check task start +2025-09-24 00:56:15,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:13,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:15,696 INFO Connection check task start -2025-09-23 00:56:13,352 INFO Out dated connection ,size=0 +2025-09-24 00:56:15,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:13,352 INFO Connection check task end +2025-09-24 00:56:15,696 INFO Out dated connection ,size=0 -2025-09-23 00:56:15,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:15,696 INFO Connection check task end -2025-09-23 00:56:16,353 INFO Connection check task start +2025-09-24 00:56:18,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:16,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:18,696 INFO Connection check task start -2025-09-23 00:56:16,353 INFO Out dated connection ,size=0 +2025-09-24 00:56:18,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:16,353 INFO Connection check task end +2025-09-24 00:56:18,696 INFO Out dated connection ,size=0 -2025-09-23 00:56:18,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:18,696 INFO Connection check task end -2025-09-23 00:56:19,354 INFO Connection check task start +2025-09-24 00:56:21,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:19,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:21,696 INFO Connection check task start -2025-09-23 00:56:19,354 INFO Out dated connection ,size=0 +2025-09-24 00:56:21,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:19,354 INFO Connection check task end +2025-09-24 00:56:21,697 INFO Out dated connection ,size=0 -2025-09-23 00:56:21,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:21,697 INFO Connection check task end -2025-09-23 00:56:22,354 INFO Connection check task start +2025-09-24 00:56:24,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:22,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:24,697 INFO Connection check task start -2025-09-23 00:56:22,354 INFO Out dated connection ,size=0 +2025-09-24 00:56:24,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:22,354 INFO Connection check task end +2025-09-24 00:56:24,698 INFO Out dated connection ,size=0 -2025-09-23 00:56:24,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:24,698 INFO Connection check task end -2025-09-23 00:56:25,355 INFO Connection check task start +2025-09-24 00:56:27,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:25,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:27,698 INFO Connection check task start -2025-09-23 00:56:25,355 INFO Out dated connection ,size=0 +2025-09-24 00:56:27,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:25,355 INFO Connection check task end +2025-09-24 00:56:27,699 INFO Out dated connection ,size=0 -2025-09-23 00:56:27,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:27,699 INFO Connection check task end -2025-09-23 00:56:28,355 INFO Connection check task start +2025-09-24 00:56:30,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:28,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:30,699 INFO Connection check task start -2025-09-23 00:56:28,355 INFO Out dated connection ,size=0 +2025-09-24 00:56:30,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:28,355 INFO Connection check task end +2025-09-24 00:56:30,699 INFO Out dated connection ,size=0 -2025-09-23 00:56:30,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:30,699 INFO Connection check task end -2025-09-23 00:56:31,356 INFO Connection check task start +2025-09-24 00:56:33,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:31,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:33,700 INFO Connection check task start -2025-09-23 00:56:31,356 INFO Out dated connection ,size=0 +2025-09-24 00:56:33,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:31,356 INFO Connection check task end +2025-09-24 00:56:33,701 INFO Out dated connection ,size=0 -2025-09-23 00:56:33,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:33,701 INFO Connection check task end -2025-09-23 00:56:34,357 INFO Connection check task start +2025-09-24 00:56:36,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:34,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:36,702 INFO Connection check task start -2025-09-23 00:56:34,357 INFO Out dated connection ,size=0 +2025-09-24 00:56:36,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:34,357 INFO Connection check task end +2025-09-24 00:56:36,702 INFO Out dated connection ,size=0 -2025-09-23 00:56:36,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:36,702 INFO Connection check task end -2025-09-23 00:56:37,358 INFO Connection check task start +2025-09-24 00:56:39,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:37,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:39,702 INFO Connection check task start -2025-09-23 00:56:37,358 INFO Out dated connection ,size=0 +2025-09-24 00:56:39,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:37,358 INFO Connection check task end +2025-09-24 00:56:39,703 INFO Out dated connection ,size=0 -2025-09-23 00:56:39,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:39,703 INFO Connection check task end -2025-09-23 00:56:40,358 INFO Connection check task start +2025-09-24 00:56:42,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:40,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:42,703 INFO Connection check task start -2025-09-23 00:56:40,358 INFO Out dated connection ,size=0 +2025-09-24 00:56:42,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:40,358 INFO Connection check task end +2025-09-24 00:56:42,703 INFO Out dated connection ,size=0 -2025-09-23 00:56:42,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:42,703 INFO Connection check task end -2025-09-23 00:56:43,359 INFO Connection check task start +2025-09-24 00:56:45,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:43,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:45,703 INFO Connection check task start -2025-09-23 00:56:43,359 INFO Out dated connection ,size=0 +2025-09-24 00:56:45,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:43,359 INFO Connection check task end +2025-09-24 00:56:45,705 INFO Out dated connection ,size=0 -2025-09-23 00:56:45,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:45,705 INFO Connection check task end -2025-09-23 00:56:46,360 INFO Connection check task start +2025-09-24 00:56:48,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:46,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:48,706 INFO Connection check task start -2025-09-23 00:56:46,361 INFO Out dated connection ,size=0 +2025-09-24 00:56:48,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:46,361 INFO Connection check task end +2025-09-24 00:56:48,706 INFO Out dated connection ,size=0 -2025-09-23 00:56:48,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:48,706 INFO Connection check task end -2025-09-23 00:56:49,361 INFO Connection check task start +2025-09-24 00:56:51,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:49,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:51,707 INFO Connection check task start -2025-09-23 00:56:49,361 INFO Out dated connection ,size=0 +2025-09-24 00:56:51,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:49,361 INFO Connection check task end +2025-09-24 00:56:51,708 INFO Out dated connection ,size=0 -2025-09-23 00:56:51,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:51,708 INFO Connection check task end -2025-09-23 00:56:52,361 INFO Connection check task start +2025-09-24 00:56:54,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:52,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:54,708 INFO Connection check task start -2025-09-23 00:56:52,361 INFO Out dated connection ,size=0 +2025-09-24 00:56:54,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:52,361 INFO Connection check task end +2025-09-24 00:56:54,708 INFO Out dated connection ,size=0 -2025-09-23 00:56:54,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:54,708 INFO Connection check task end -2025-09-23 00:56:55,362 INFO Connection check task start +2025-09-24 00:56:57,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:55,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:56:57,709 INFO Connection check task start -2025-09-23 00:56:55,362 INFO Out dated connection ,size=0 +2025-09-24 00:56:57,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:55,362 INFO Connection check task end +2025-09-24 00:56:57,709 INFO Out dated connection ,size=0 -2025-09-23 00:56:57,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:56:57,709 INFO Connection check task end -2025-09-23 00:56:58,363 INFO Connection check task start +2025-09-24 00:57:00,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:56:58,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:00,710 INFO Connection check task start -2025-09-23 00:56:58,363 INFO Out dated connection ,size=0 +2025-09-24 00:57:00,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:56:58,363 INFO Connection check task end +2025-09-24 00:57:00,710 INFO Out dated connection ,size=0 -2025-09-23 00:57:00,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:00,710 INFO Connection check task end -2025-09-23 00:57:01,364 INFO Connection check task start +2025-09-24 00:57:03,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:01,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:03,710 INFO Connection check task start -2025-09-23 00:57:01,364 INFO Out dated connection ,size=0 +2025-09-24 00:57:03,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:01,364 INFO Connection check task end +2025-09-24 00:57:03,710 INFO Out dated connection ,size=0 -2025-09-23 00:57:03,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:03,710 INFO Connection check task end -2025-09-23 00:57:04,364 INFO Connection check task start +2025-09-24 00:57:06,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:04,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:06,710 INFO Connection check task start -2025-09-23 00:57:04,364 INFO Out dated connection ,size=0 +2025-09-24 00:57:06,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:04,364 INFO Connection check task end +2025-09-24 00:57:06,710 INFO Out dated connection ,size=0 -2025-09-23 00:57:06,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:06,711 INFO Connection check task end -2025-09-23 00:57:07,365 INFO Connection check task start +2025-09-24 00:57:09,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:07,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:09,711 INFO Connection check task start -2025-09-23 00:57:07,365 INFO Out dated connection ,size=0 +2025-09-24 00:57:09,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:07,365 INFO Connection check task end +2025-09-24 00:57:09,711 INFO Out dated connection ,size=0 -2025-09-23 00:57:09,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:09,711 INFO Connection check task end -2025-09-23 00:57:10,365 INFO Connection check task start +2025-09-24 00:57:12,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:10,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:12,712 INFO Connection check task start -2025-09-23 00:57:10,366 INFO Out dated connection ,size=0 +2025-09-24 00:57:12,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:10,366 INFO Connection check task end +2025-09-24 00:57:12,712 INFO Out dated connection ,size=0 -2025-09-23 00:57:12,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:12,712 INFO Connection check task end -2025-09-23 00:57:13,366 INFO Connection check task start +2025-09-24 00:57:15,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:13,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:15,713 INFO Connection check task start -2025-09-23 00:57:13,366 INFO Out dated connection ,size=0 +2025-09-24 00:57:15,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:13,366 INFO Connection check task end +2025-09-24 00:57:15,713 INFO Out dated connection ,size=0 -2025-09-23 00:57:15,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:15,713 INFO Connection check task end -2025-09-23 00:57:16,367 INFO Connection check task start +2025-09-24 00:57:18,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:16,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:18,714 INFO Connection check task start -2025-09-23 00:57:16,368 INFO Out dated connection ,size=0 +2025-09-24 00:57:18,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:16,368 INFO Connection check task end +2025-09-24 00:57:18,714 INFO Out dated connection ,size=0 -2025-09-23 00:57:18,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:18,715 INFO Connection check task end -2025-09-23 00:57:19,368 INFO Connection check task start +2025-09-24 00:57:21,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:19,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:21,716 INFO Connection check task start -2025-09-23 00:57:19,368 INFO Out dated connection ,size=0 +2025-09-24 00:57:21,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:19,368 INFO Connection check task end +2025-09-24 00:57:21,716 INFO Out dated connection ,size=0 -2025-09-23 00:57:21,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:21,716 INFO Connection check task end -2025-09-23 00:57:22,369 INFO Connection check task start +2025-09-24 00:57:24,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:22,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:24,717 INFO Connection check task start -2025-09-23 00:57:22,369 INFO Out dated connection ,size=0 +2025-09-24 00:57:24,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:22,369 INFO Connection check task end +2025-09-24 00:57:24,717 INFO Out dated connection ,size=0 -2025-09-23 00:57:24,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:24,717 INFO Connection check task end -2025-09-23 00:57:25,370 INFO Connection check task start +2025-09-24 00:57:27,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:25,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:27,718 INFO Connection check task start -2025-09-23 00:57:25,370 INFO Out dated connection ,size=0 +2025-09-24 00:57:27,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:25,370 INFO Connection check task end +2025-09-24 00:57:27,718 INFO Out dated connection ,size=0 -2025-09-23 00:57:27,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:27,719 INFO Connection check task end -2025-09-23 00:57:28,370 INFO Connection check task start +2025-09-24 00:57:30,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:28,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:30,719 INFO Connection check task start -2025-09-23 00:57:28,371 INFO Out dated connection ,size=0 +2025-09-24 00:57:30,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:28,371 INFO Connection check task end +2025-09-24 00:57:30,719 INFO Out dated connection ,size=0 -2025-09-23 00:57:30,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:30,719 INFO Connection check task end -2025-09-23 00:57:31,371 INFO Connection check task start +2025-09-24 00:57:33,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:31,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:33,721 INFO Connection check task start -2025-09-23 00:57:31,371 INFO Out dated connection ,size=0 +2025-09-24 00:57:33,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:31,371 INFO Connection check task end +2025-09-24 00:57:33,721 INFO Out dated connection ,size=0 -2025-09-23 00:57:33,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:33,721 INFO Connection check task end -2025-09-23 00:57:34,372 INFO Connection check task start +2025-09-24 00:57:36,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:34,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:36,722 INFO Connection check task start -2025-09-23 00:57:34,372 INFO Out dated connection ,size=0 +2025-09-24 00:57:36,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:34,372 INFO Connection check task end +2025-09-24 00:57:36,722 INFO Out dated connection ,size=0 -2025-09-23 00:57:36,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:36,722 INFO Connection check task end -2025-09-23 00:57:37,373 INFO Connection check task start +2025-09-24 00:57:39,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:37,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:39,723 INFO Connection check task start -2025-09-23 00:57:37,373 INFO Out dated connection ,size=0 +2025-09-24 00:57:39,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:37,373 INFO Connection check task end +2025-09-24 00:57:39,723 INFO Out dated connection ,size=0 -2025-09-23 00:57:39,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:39,723 INFO Connection check task end -2025-09-23 00:57:40,374 INFO Connection check task start +2025-09-24 00:57:42,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:40,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:42,723 INFO Connection check task start -2025-09-23 00:57:40,375 INFO Out dated connection ,size=0 +2025-09-24 00:57:42,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:40,375 INFO Connection check task end +2025-09-24 00:57:42,724 INFO Out dated connection ,size=0 -2025-09-23 00:57:42,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:42,724 INFO Connection check task end -2025-09-23 00:57:43,376 INFO Connection check task start +2025-09-24 00:57:45,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:43,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:45,724 INFO Connection check task start -2025-09-23 00:57:43,376 INFO Out dated connection ,size=0 +2025-09-24 00:57:45,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:43,376 INFO Connection check task end +2025-09-24 00:57:45,724 INFO Out dated connection ,size=0 -2025-09-23 00:57:45,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:45,724 INFO Connection check task end -2025-09-23 00:57:46,377 INFO Connection check task start +2025-09-24 00:57:48,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:46,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:48,725 INFO Connection check task start -2025-09-23 00:57:46,377 INFO Out dated connection ,size=0 +2025-09-24 00:57:48,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:46,377 INFO Connection check task end +2025-09-24 00:57:48,725 INFO Out dated connection ,size=0 -2025-09-23 00:57:48,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:48,725 INFO Connection check task end -2025-09-23 00:57:49,378 INFO Connection check task start +2025-09-24 00:57:51,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:49,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:51,726 INFO Connection check task start -2025-09-23 00:57:49,378 INFO Out dated connection ,size=0 +2025-09-24 00:57:51,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:49,378 INFO Connection check task end +2025-09-24 00:57:51,726 INFO Out dated connection ,size=0 -2025-09-23 00:57:51,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:51,726 INFO Connection check task end -2025-09-23 00:57:52,379 INFO Connection check task start +2025-09-24 00:57:54,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:52,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:54,727 INFO Connection check task start -2025-09-23 00:57:52,379 INFO Out dated connection ,size=0 +2025-09-24 00:57:54,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:52,379 INFO Connection check task end +2025-09-24 00:57:54,727 INFO Out dated connection ,size=0 -2025-09-23 00:57:54,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:54,728 INFO Connection check task end -2025-09-23 00:57:55,379 INFO Connection check task start +2025-09-24 00:57:57,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:55,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:57:57,728 INFO Connection check task start -2025-09-23 00:57:55,380 INFO Out dated connection ,size=0 +2025-09-24 00:57:57,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:55,380 INFO Connection check task end +2025-09-24 00:57:57,728 INFO Out dated connection ,size=0 -2025-09-23 00:57:57,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:57:57,728 INFO Connection check task end -2025-09-23 00:57:58,380 INFO Connection check task start +2025-09-24 00:58:00,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:57:58,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:00,729 INFO Connection check task start -2025-09-23 00:57:58,380 INFO Out dated connection ,size=0 +2025-09-24 00:58:00,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:57:58,380 INFO Connection check task end +2025-09-24 00:58:00,729 INFO Out dated connection ,size=0 -2025-09-23 00:58:00,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:00,729 INFO Connection check task end -2025-09-23 00:58:01,381 INFO Connection check task start +2025-09-24 00:58:03,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:01,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:03,730 INFO Connection check task start -2025-09-23 00:58:01,381 INFO Out dated connection ,size=0 +2025-09-24 00:58:03,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:01,381 INFO Connection check task end +2025-09-24 00:58:03,730 INFO Out dated connection ,size=0 -2025-09-23 00:58:03,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:03,730 INFO Connection check task end -2025-09-23 00:58:04,382 INFO Connection check task start +2025-09-24 00:58:06,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:04,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:06,731 INFO Connection check task start -2025-09-23 00:58:04,383 INFO Out dated connection ,size=0 +2025-09-24 00:58:06,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:04,383 INFO Connection check task end +2025-09-24 00:58:06,731 INFO Out dated connection ,size=0 -2025-09-23 00:58:06,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:06,731 INFO Connection check task end -2025-09-23 00:58:07,384 INFO Connection check task start +2025-09-24 00:58:09,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:07,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:09,731 INFO Connection check task start -2025-09-23 00:58:07,384 INFO Out dated connection ,size=0 +2025-09-24 00:58:09,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:07,384 INFO Connection check task end +2025-09-24 00:58:09,731 INFO Out dated connection ,size=0 -2025-09-23 00:58:09,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:09,731 INFO Connection check task end -2025-09-23 00:58:10,385 INFO Connection check task start +2025-09-24 00:58:12,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:10,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:12,732 INFO Connection check task start -2025-09-23 00:58:10,385 INFO Out dated connection ,size=0 +2025-09-24 00:58:12,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:10,385 INFO Connection check task end +2025-09-24 00:58:12,732 INFO Out dated connection ,size=0 -2025-09-23 00:58:12,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:12,732 INFO Connection check task end -2025-09-23 00:58:13,387 INFO Connection check task start +2025-09-24 00:58:15,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:13,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:15,733 INFO Connection check task start -2025-09-23 00:58:13,387 INFO Out dated connection ,size=0 +2025-09-24 00:58:15,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:13,387 INFO Connection check task end +2025-09-24 00:58:15,733 INFO Out dated connection ,size=0 -2025-09-23 00:58:15,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:15,733 INFO Connection check task end -2025-09-23 00:58:16,387 INFO Connection check task start +2025-09-24 00:58:18,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:16,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:18,734 INFO Connection check task start -2025-09-23 00:58:16,388 INFO Out dated connection ,size=0 +2025-09-24 00:58:18,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:16,388 INFO Connection check task end +2025-09-24 00:58:18,734 INFO Out dated connection ,size=0 -2025-09-23 00:58:18,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:18,734 INFO Connection check task end -2025-09-23 00:58:19,389 INFO Connection check task start +2025-09-24 00:58:21,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:19,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:21,734 INFO Connection check task start -2025-09-23 00:58:19,389 INFO Out dated connection ,size=0 +2025-09-24 00:58:21,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:19,389 INFO Connection check task end +2025-09-24 00:58:21,735 INFO Out dated connection ,size=0 -2025-09-23 00:58:21,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:21,735 INFO Connection check task end -2025-09-23 00:58:22,390 INFO Connection check task start +2025-09-24 00:58:24,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:22,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:24,736 INFO Connection check task start -2025-09-23 00:58:22,390 INFO Out dated connection ,size=0 +2025-09-24 00:58:24,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:22,390 INFO Connection check task end +2025-09-24 00:58:24,736 INFO Out dated connection ,size=0 -2025-09-23 00:58:24,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:24,736 INFO Connection check task end -2025-09-23 00:58:25,390 INFO Connection check task start +2025-09-24 00:58:27,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:25,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:27,737 INFO Connection check task start -2025-09-23 00:58:25,390 INFO Out dated connection ,size=0 +2025-09-24 00:58:27,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:25,391 INFO Connection check task end +2025-09-24 00:58:27,737 INFO Out dated connection ,size=0 -2025-09-23 00:58:27,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:27,737 INFO Connection check task end -2025-09-23 00:58:28,391 INFO Connection check task start +2025-09-24 00:58:30,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:28,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:30,738 INFO Connection check task start -2025-09-23 00:58:28,392 INFO Out dated connection ,size=0 +2025-09-24 00:58:30,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:28,392 INFO Connection check task end +2025-09-24 00:58:30,738 INFO Out dated connection ,size=0 -2025-09-23 00:58:30,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:30,738 INFO Connection check task end -2025-09-23 00:58:31,392 INFO Connection check task start +2025-09-24 00:58:33,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:31,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:33,739 INFO Connection check task start -2025-09-23 00:58:31,392 INFO Out dated connection ,size=0 +2025-09-24 00:58:33,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:31,392 INFO Connection check task end +2025-09-24 00:58:33,739 INFO Out dated connection ,size=0 -2025-09-23 00:58:33,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:33,740 INFO Connection check task end -2025-09-23 00:58:34,392 INFO Connection check task start +2025-09-24 00:58:36,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:34,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:36,740 INFO Connection check task start -2025-09-23 00:58:34,392 INFO Out dated connection ,size=0 +2025-09-24 00:58:36,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:34,392 INFO Connection check task end +2025-09-24 00:58:36,740 INFO Out dated connection ,size=0 -2025-09-23 00:58:36,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:36,740 INFO Connection check task end -2025-09-23 00:58:37,393 INFO Connection check task start +2025-09-24 00:58:39,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:37,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:39,742 INFO Connection check task start -2025-09-23 00:58:37,394 INFO Out dated connection ,size=0 +2025-09-24 00:58:39,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:37,394 INFO Connection check task end +2025-09-24 00:58:39,742 INFO Out dated connection ,size=0 -2025-09-23 00:58:39,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:39,742 INFO Connection check task end -2025-09-23 00:58:40,394 INFO Connection check task start +2025-09-24 00:58:42,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:40,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:42,742 INFO Connection check task start -2025-09-23 00:58:40,394 INFO Out dated connection ,size=0 +2025-09-24 00:58:42,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:40,394 INFO Connection check task end +2025-09-24 00:58:42,742 INFO Out dated connection ,size=0 -2025-09-23 00:58:42,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:42,742 INFO Connection check task end -2025-09-23 00:58:43,395 INFO Connection check task start +2025-09-24 00:58:45,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:43,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:45,743 INFO Connection check task start -2025-09-23 00:58:43,395 INFO Out dated connection ,size=0 +2025-09-24 00:58:45,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:43,395 INFO Connection check task end +2025-09-24 00:58:45,743 INFO Out dated connection ,size=0 -2025-09-23 00:58:45,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:45,743 INFO Connection check task end -2025-09-23 00:58:46,396 INFO Connection check task start +2025-09-24 00:58:48,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:46,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:48,744 INFO Connection check task start -2025-09-23 00:58:46,396 INFO Out dated connection ,size=0 +2025-09-24 00:58:48,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:46,396 INFO Connection check task end +2025-09-24 00:58:48,744 INFO Out dated connection ,size=0 -2025-09-23 00:58:48,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:48,744 INFO Connection check task end -2025-09-23 00:58:49,397 INFO Connection check task start +2025-09-24 00:58:51,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:49,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:51,745 INFO Connection check task start -2025-09-23 00:58:49,397 INFO Out dated connection ,size=0 +2025-09-24 00:58:51,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:49,397 INFO Connection check task end +2025-09-24 00:58:51,745 INFO Out dated connection ,size=0 -2025-09-23 00:58:51,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:51,745 INFO Connection check task end -2025-09-23 00:58:52,398 INFO Connection check task start +2025-09-24 00:58:54,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:52,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:54,746 INFO Connection check task start -2025-09-23 00:58:52,398 INFO Out dated connection ,size=0 +2025-09-24 00:58:54,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:52,398 INFO Connection check task end +2025-09-24 00:58:54,747 INFO Out dated connection ,size=0 -2025-09-23 00:58:54,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:54,747 INFO Connection check task end -2025-09-23 00:58:55,399 INFO Connection check task start +2025-09-24 00:58:57,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:55,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:58:57,748 INFO Connection check task start -2025-09-23 00:58:55,399 INFO Out dated connection ,size=0 +2025-09-24 00:58:57,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:55,399 INFO Connection check task end +2025-09-24 00:58:57,748 INFO Out dated connection ,size=0 -2025-09-23 00:58:57,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:58:57,748 INFO Connection check task end -2025-09-23 00:58:58,400 INFO Connection check task start +2025-09-24 00:59:00,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:58:58,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:00,749 INFO Connection check task start -2025-09-23 00:58:58,400 INFO Out dated connection ,size=0 +2025-09-24 00:59:00,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:58:58,400 INFO Connection check task end +2025-09-24 00:59:00,749 INFO Out dated connection ,size=0 -2025-09-23 00:59:00,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:00,749 INFO Connection check task end -2025-09-23 00:59:01,400 INFO Connection check task start +2025-09-24 00:59:03,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:01,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:03,750 INFO Connection check task start -2025-09-23 00:59:01,400 INFO Out dated connection ,size=0 +2025-09-24 00:59:03,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:01,400 INFO Connection check task end +2025-09-24 00:59:03,750 INFO Out dated connection ,size=0 -2025-09-23 00:59:03,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:03,750 INFO Connection check task end -2025-09-23 00:59:04,401 INFO Connection check task start +2025-09-24 00:59:06,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:04,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:06,751 INFO Connection check task start -2025-09-23 00:59:04,401 INFO Out dated connection ,size=0 +2025-09-24 00:59:06,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:04,402 INFO Connection check task end +2025-09-24 00:59:06,751 INFO Out dated connection ,size=0 -2025-09-23 00:59:06,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:06,751 INFO Connection check task end -2025-09-23 00:59:07,402 INFO Connection check task start +2025-09-24 00:59:09,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:07,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:09,752 INFO Connection check task start -2025-09-23 00:59:07,402 INFO Out dated connection ,size=0 +2025-09-24 00:59:09,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:07,402 INFO Connection check task end +2025-09-24 00:59:09,752 INFO Out dated connection ,size=0 -2025-09-23 00:59:09,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:09,752 INFO Connection check task end -2025-09-23 00:59:10,402 INFO Connection check task start +2025-09-24 00:59:12,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:10,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:12,753 INFO Connection check task start -2025-09-23 00:59:10,402 INFO Out dated connection ,size=0 +2025-09-24 00:59:12,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:10,402 INFO Connection check task end +2025-09-24 00:59:12,753 INFO Out dated connection ,size=0 -2025-09-23 00:59:12,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:12,753 INFO Connection check task end -2025-09-23 00:59:13,402 INFO Connection check task start +2025-09-24 00:59:15,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:13,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:15,754 INFO Connection check task start -2025-09-23 00:59:13,403 INFO Out dated connection ,size=0 +2025-09-24 00:59:15,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:13,403 INFO Connection check task end +2025-09-24 00:59:15,754 INFO Out dated connection ,size=0 -2025-09-23 00:59:15,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:15,754 INFO Connection check task end -2025-09-23 00:59:16,404 INFO Connection check task start +2025-09-24 00:59:18,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:16,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:18,755 INFO Connection check task start -2025-09-23 00:59:16,404 INFO Out dated connection ,size=0 +2025-09-24 00:59:18,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:16,404 INFO Connection check task end +2025-09-24 00:59:18,756 INFO Out dated connection ,size=0 -2025-09-23 00:59:18,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:18,756 INFO Connection check task end -2025-09-23 00:59:19,404 INFO Connection check task start +2025-09-24 00:59:21,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:19,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:21,756 INFO Connection check task start -2025-09-23 00:59:19,404 INFO Out dated connection ,size=0 +2025-09-24 00:59:21,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:19,404 INFO Connection check task end +2025-09-24 00:59:21,756 INFO Out dated connection ,size=0 -2025-09-23 00:59:21,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:21,756 INFO Connection check task end -2025-09-23 00:59:22,405 INFO Connection check task start +2025-09-24 00:59:24,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:22,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:24,756 INFO Connection check task start -2025-09-23 00:59:22,405 INFO Out dated connection ,size=0 +2025-09-24 00:59:24,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:22,405 INFO Connection check task end +2025-09-24 00:59:24,757 INFO Out dated connection ,size=0 -2025-09-23 00:59:24,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:24,757 INFO Connection check task end -2025-09-23 00:59:25,406 INFO Connection check task start +2025-09-24 00:59:27,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:25,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:27,757 INFO Connection check task start -2025-09-23 00:59:25,406 INFO Out dated connection ,size=0 +2025-09-24 00:59:27,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:25,407 INFO Connection check task end +2025-09-24 00:59:27,757 INFO Out dated connection ,size=0 -2025-09-23 00:59:27,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:27,757 INFO Connection check task end -2025-09-23 00:59:28,408 INFO Connection check task start +2025-09-24 00:59:30,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:28,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:30,758 INFO Connection check task start -2025-09-23 00:59:28,408 INFO Out dated connection ,size=0 +2025-09-24 00:59:30,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:28,408 INFO Connection check task end +2025-09-24 00:59:30,758 INFO Out dated connection ,size=0 -2025-09-23 00:59:30,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:30,758 INFO Connection check task end -2025-09-23 00:59:31,409 INFO Connection check task start +2025-09-24 00:59:33,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:31,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:33,760 INFO Connection check task start -2025-09-23 00:59:31,409 INFO Out dated connection ,size=0 +2025-09-24 00:59:33,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:31,409 INFO Connection check task end +2025-09-24 00:59:33,760 INFO Out dated connection ,size=0 -2025-09-23 00:59:33,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:33,760 INFO Connection check task end -2025-09-23 00:59:34,410 INFO Connection check task start +2025-09-24 00:59:36,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:34,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:36,761 INFO Connection check task start -2025-09-23 00:59:34,410 INFO Out dated connection ,size=0 +2025-09-24 00:59:36,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:34,410 INFO Connection check task end +2025-09-24 00:59:36,761 INFO Out dated connection ,size=0 -2025-09-23 00:59:36,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:36,761 INFO Connection check task end -2025-09-23 00:59:37,411 INFO Connection check task start +2025-09-24 00:59:39,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:37,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:39,762 INFO Connection check task start -2025-09-23 00:59:37,411 INFO Out dated connection ,size=0 +2025-09-24 00:59:39,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:37,411 INFO Connection check task end +2025-09-24 00:59:39,762 INFO Out dated connection ,size=0 -2025-09-23 00:59:39,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:39,762 INFO Connection check task end -2025-09-23 00:59:40,411 INFO Connection check task start +2025-09-24 00:59:42,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:40,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:42,763 INFO Connection check task start -2025-09-23 00:59:40,412 INFO Out dated connection ,size=0 +2025-09-24 00:59:42,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:40,412 INFO Connection check task end +2025-09-24 00:59:42,763 INFO Out dated connection ,size=0 -2025-09-23 00:59:42,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:42,763 INFO Connection check task end -2025-09-23 00:59:43,412 INFO Connection check task start +2025-09-24 00:59:45,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:43,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:45,764 INFO Connection check task start -2025-09-23 00:59:43,412 INFO Out dated connection ,size=0 +2025-09-24 00:59:45,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:43,412 INFO Connection check task end +2025-09-24 00:59:45,764 INFO Out dated connection ,size=0 -2025-09-23 00:59:45,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:45,764 INFO Connection check task end -2025-09-23 00:59:46,413 INFO Connection check task start +2025-09-24 00:59:48,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:46,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:48,765 INFO Connection check task start -2025-09-23 00:59:46,413 INFO Out dated connection ,size=0 +2025-09-24 00:59:48,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:46,413 INFO Connection check task end +2025-09-24 00:59:48,765 INFO Out dated connection ,size=0 -2025-09-23 00:59:48,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:48,765 INFO Connection check task end -2025-09-23 00:59:49,414 INFO Connection check task start +2025-09-24 00:59:51,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:49,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:51,765 INFO Connection check task start -2025-09-23 00:59:49,414 INFO Out dated connection ,size=0 +2025-09-24 00:59:51,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:49,414 INFO Connection check task end +2025-09-24 00:59:51,765 INFO Out dated connection ,size=0 -2025-09-23 00:59:51,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:51,765 INFO Connection check task end -2025-09-23 00:59:52,415 INFO Connection check task start +2025-09-24 00:59:54,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:52,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:54,767 INFO Connection check task start -2025-09-23 00:59:52,415 INFO Out dated connection ,size=0 +2025-09-24 00:59:54,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:52,415 INFO Connection check task end +2025-09-24 00:59:54,767 INFO Out dated connection ,size=0 -2025-09-23 00:59:54,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:54,767 INFO Connection check task end -2025-09-23 00:59:55,416 INFO Connection check task start +2025-09-24 00:59:57,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:55,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 00:59:57,768 INFO Connection check task start -2025-09-23 00:59:55,416 INFO Out dated connection ,size=0 +2025-09-24 00:59:57,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:55,416 INFO Connection check task end +2025-09-24 00:59:57,769 INFO Out dated connection ,size=0 -2025-09-23 00:59:57,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 00:59:57,769 INFO Connection check task end -2025-09-23 00:59:58,417 INFO Connection check task start +2025-09-24 01:00:00,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 00:59:58,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:00,770 INFO Connection check task start -2025-09-23 00:59:58,417 INFO Out dated connection ,size=0 +2025-09-24 01:00:00,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 00:59:58,417 INFO Connection check task end +2025-09-24 01:00:00,770 INFO Out dated connection ,size=0 -2025-09-23 01:00:00,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:00,770 INFO Connection check task end -2025-09-23 01:00:01,418 INFO Connection check task start +2025-09-24 01:00:03,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:01,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:03,770 INFO Connection check task start -2025-09-23 01:00:01,418 INFO Out dated connection ,size=0 +2025-09-24 01:00:03,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:01,418 INFO Connection check task end +2025-09-24 01:00:03,771 INFO Out dated connection ,size=0 -2025-09-23 01:00:03,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:03,771 INFO Connection check task end -2025-09-23 01:00:04,419 INFO Connection check task start +2025-09-24 01:00:06,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:04,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:06,772 INFO Connection check task start -2025-09-23 01:00:04,419 INFO Out dated connection ,size=0 +2025-09-24 01:00:06,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:04,419 INFO Connection check task end +2025-09-24 01:00:06,772 INFO Out dated connection ,size=0 -2025-09-23 01:00:06,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:06,772 INFO Connection check task end -2025-09-23 01:00:07,419 INFO Connection check task start +2025-09-24 01:00:09,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:07,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:09,816 INFO Connection check task start -2025-09-23 01:00:07,419 INFO Out dated connection ,size=0 +2025-09-24 01:00:09,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:07,419 INFO Connection check task end +2025-09-24 01:00:09,816 INFO Out dated connection ,size=0 -2025-09-23 01:00:09,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:09,816 INFO Connection check task end -2025-09-23 01:00:10,419 INFO Connection check task start +2025-09-24 01:00:12,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:10,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:12,817 INFO Connection check task start -2025-09-23 01:00:10,420 INFO Out dated connection ,size=0 +2025-09-24 01:00:12,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:10,420 INFO Connection check task end +2025-09-24 01:00:12,817 INFO Out dated connection ,size=0 -2025-09-23 01:00:12,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:12,817 INFO Connection check task end -2025-09-23 01:00:13,421 INFO Connection check task start +2025-09-24 01:00:15,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:13,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:15,817 INFO Connection check task start -2025-09-23 01:00:13,421 INFO Out dated connection ,size=0 +2025-09-24 01:00:15,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:13,421 INFO Connection check task end +2025-09-24 01:00:15,817 INFO Out dated connection ,size=0 -2025-09-23 01:00:15,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:15,817 INFO Connection check task end -2025-09-23 01:00:16,422 INFO Connection check task start +2025-09-24 01:00:18,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:16,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:18,818 INFO Connection check task start -2025-09-23 01:00:16,422 INFO Out dated connection ,size=0 +2025-09-24 01:00:18,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:16,422 INFO Connection check task end +2025-09-24 01:00:18,819 INFO Out dated connection ,size=0 -2025-09-23 01:00:18,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:18,819 INFO Connection check task end -2025-09-23 01:00:19,423 INFO Connection check task start +2025-09-24 01:00:21,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:19,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:21,819 INFO Connection check task start -2025-09-23 01:00:19,425 INFO Out dated connection ,size=0 +2025-09-24 01:00:21,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:19,425 INFO Connection check task end +2025-09-24 01:00:21,820 INFO Out dated connection ,size=0 -2025-09-23 01:00:21,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:21,820 INFO Connection check task end -2025-09-23 01:00:22,427 INFO Connection check task start +2025-09-24 01:00:24,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:22,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:24,820 INFO Connection check task start -2025-09-23 01:00:22,427 INFO Out dated connection ,size=0 +2025-09-24 01:00:24,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:22,427 INFO Connection check task end +2025-09-24 01:00:24,820 INFO Out dated connection ,size=0 -2025-09-23 01:00:24,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:24,820 INFO Connection check task end -2025-09-23 01:00:25,427 INFO Connection check task start +2025-09-24 01:00:27,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:25,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:27,820 INFO Connection check task start -2025-09-23 01:00:25,428 INFO Out dated connection ,size=0 +2025-09-24 01:00:27,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:25,428 INFO Connection check task end +2025-09-24 01:00:27,820 INFO Out dated connection ,size=0 -2025-09-23 01:00:27,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:27,821 INFO Connection check task end -2025-09-23 01:00:28,428 INFO Connection check task start +2025-09-24 01:00:30,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:28,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:30,821 INFO Connection check task start -2025-09-23 01:00:28,429 INFO Out dated connection ,size=0 +2025-09-24 01:00:30,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:28,429 INFO Connection check task end +2025-09-24 01:00:30,821 INFO Out dated connection ,size=0 -2025-09-23 01:00:30,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:30,821 INFO Connection check task end -2025-09-23 01:00:31,429 INFO Connection check task start +2025-09-24 01:00:33,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:31,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:33,821 INFO Connection check task start -2025-09-23 01:00:31,429 INFO Out dated connection ,size=0 +2025-09-24 01:00:33,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:31,429 INFO Connection check task end +2025-09-24 01:00:33,822 INFO Out dated connection ,size=0 -2025-09-23 01:00:33,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:33,822 INFO Connection check task end -2025-09-23 01:00:34,430 INFO Connection check task start +2025-09-24 01:00:36,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:34,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:36,822 INFO Connection check task start -2025-09-23 01:00:34,430 INFO Out dated connection ,size=0 +2025-09-24 01:00:36,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:34,430 INFO Connection check task end +2025-09-24 01:00:36,822 INFO Out dated connection ,size=0 -2025-09-23 01:00:36,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:36,822 INFO Connection check task end -2025-09-23 01:00:37,431 INFO Connection check task start +2025-09-24 01:00:39,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:37,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:39,823 INFO Connection check task start -2025-09-23 01:00:37,431 INFO Out dated connection ,size=0 +2025-09-24 01:00:39,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:37,431 INFO Connection check task end +2025-09-24 01:00:39,823 INFO Out dated connection ,size=0 -2025-09-23 01:00:39,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:39,823 INFO Connection check task end -2025-09-23 01:00:40,431 INFO Connection check task start +2025-09-24 01:00:42,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:40,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:42,824 INFO Connection check task start -2025-09-23 01:00:40,431 INFO Out dated connection ,size=0 +2025-09-24 01:00:42,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:40,432 INFO Connection check task end +2025-09-24 01:00:42,824 INFO Out dated connection ,size=0 -2025-09-23 01:00:42,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:42,824 INFO Connection check task end -2025-09-23 01:00:43,433 INFO Connection check task start +2025-09-24 01:00:45,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:43,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:45,825 INFO Connection check task start -2025-09-23 01:00:43,433 INFO Out dated connection ,size=0 +2025-09-24 01:00:45,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:43,433 INFO Connection check task end +2025-09-24 01:00:45,825 INFO Out dated connection ,size=0 -2025-09-23 01:00:45,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:45,825 INFO Connection check task end -2025-09-23 01:00:46,433 INFO Connection check task start +2025-09-24 01:00:48,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:46,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:48,826 INFO Connection check task start -2025-09-23 01:00:46,434 INFO Out dated connection ,size=0 +2025-09-24 01:00:48,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:46,434 INFO Connection check task end +2025-09-24 01:00:48,827 INFO Out dated connection ,size=0 -2025-09-23 01:00:48,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:48,827 INFO Connection check task end -2025-09-23 01:00:49,435 INFO Connection check task start +2025-09-24 01:00:51,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:49,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:51,827 INFO Connection check task start -2025-09-23 01:00:49,435 INFO Out dated connection ,size=0 +2025-09-24 01:00:51,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:49,436 INFO Connection check task end +2025-09-24 01:00:51,827 INFO Out dated connection ,size=0 -2025-09-23 01:00:51,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:51,827 INFO Connection check task end -2025-09-23 01:00:52,436 INFO Connection check task start +2025-09-24 01:00:54,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:52,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:54,828 INFO Connection check task start -2025-09-23 01:00:52,436 INFO Out dated connection ,size=0 +2025-09-24 01:00:54,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:52,437 INFO Connection check task end +2025-09-24 01:00:54,828 INFO Out dated connection ,size=0 -2025-09-23 01:00:54,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:54,828 INFO Connection check task end -2025-09-23 01:00:55,438 INFO Connection check task start +2025-09-24 01:00:57,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:55,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:00:57,829 INFO Connection check task start -2025-09-23 01:00:55,438 INFO Out dated connection ,size=0 +2025-09-24 01:00:57,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:55,438 INFO Connection check task end +2025-09-24 01:00:57,830 INFO Out dated connection ,size=0 -2025-09-23 01:00:57,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:00:57,830 INFO Connection check task end -2025-09-23 01:00:58,439 INFO Connection check task start +2025-09-24 01:01:00,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:00:58,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:01:00,830 INFO Connection check task start -2025-09-23 01:00:58,439 INFO Out dated connection ,size=0 +2025-09-24 01:01:00,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:00:58,439 INFO Connection check task end +2025-09-24 01:01:00,830 INFO Out dated connection ,size=0 -2025-09-23 01:01:00,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:01:00,830 INFO Connection check task end -2025-09-23 01:01:01,440 INFO Connection check task start +2025-09-24 01:01:03,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:01:01,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:01:03,830 INFO Connection check task start -2025-09-23 01:01:01,441 INFO Out dated connection ,size=0 +2025-09-24 01:01:03,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:01:01,441 INFO Connection check task end +2025-09-24 01:01:03,831 INFO Out dated connection ,size=0 -2025-09-23 01:01:03,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:01:03,831 INFO Connection check task end -2025-09-23 01:01:04,442 INFO Connection check task start +2025-09-24 01:01:06,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:01:04,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:01:06,832 INFO Connection check task start -2025-09-23 01:01:04,442 INFO Out dated connection ,size=0 +2025-09-24 01:01:06,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:01:04,442 INFO Connection check task end +2025-09-24 01:01:06,832 INFO Out dated connection ,size=0 -2025-09-23 01:01:06,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} +2025-09-24 01:01:06,832 INFO Connection check task end -2025-09-23 01:01:07,443 INFO Connection check task start +2025-09-24 01:01:09,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} -2025-09-23 01:01:07,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 +2025-09-24 01:01:09,832 INFO Connection check task start -2025-09-23 01:01:07,443 INFO Out dated connection ,size=0 +2025-09-24 01:01:09,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 -2025-09-23 01:01:07,443 INFO Connection check task end +2025-09-24 01:01:09,832 INFO Out dated connection ,size=0 + +2025-09-24 01:01:09,832 INFO Connection check task end + +2025-09-24 01:01:12,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:12,833 INFO Connection check task start + +2025-09-24 01:01:12,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:12,833 INFO Out dated connection ,size=0 + +2025-09-24 01:01:12,833 INFO Connection check task end + +2025-09-24 01:01:15,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:15,835 INFO Connection check task start + +2025-09-24 01:01:15,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:15,835 INFO Out dated connection ,size=0 + +2025-09-24 01:01:15,835 INFO Connection check task end + +2025-09-24 01:01:18,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:18,836 INFO Connection check task start + +2025-09-24 01:01:18,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:18,836 INFO Out dated connection ,size=0 + +2025-09-24 01:01:18,836 INFO Connection check task end + +2025-09-24 01:01:21,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:21,836 INFO Connection check task start + +2025-09-24 01:01:21,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:21,836 INFO Out dated connection ,size=0 + +2025-09-24 01:01:21,837 INFO Connection check task end + +2025-09-24 01:01:24,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:24,838 INFO Connection check task start + +2025-09-24 01:01:24,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:24,838 INFO Out dated connection ,size=0 + +2025-09-24 01:01:24,838 INFO Connection check task end + +2025-09-24 01:01:27,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:27,838 INFO Connection check task start + +2025-09-24 01:01:27,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:27,839 INFO Out dated connection ,size=0 + +2025-09-24 01:01:27,839 INFO Connection check task end + +2025-09-24 01:01:30,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:30,839 INFO Connection check task start + +2025-09-24 01:01:30,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:30,840 INFO Out dated connection ,size=0 + +2025-09-24 01:01:30,840 INFO Connection check task end + +2025-09-24 01:01:33,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:33,841 INFO Connection check task start + +2025-09-24 01:01:33,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:33,841 INFO Out dated connection ,size=0 + +2025-09-24 01:01:33,841 INFO Connection check task end + +2025-09-24 01:01:36,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:36,841 INFO Connection check task start + +2025-09-24 01:01:36,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:36,842 INFO Out dated connection ,size=0 + +2025-09-24 01:01:36,842 INFO Connection check task end + +2025-09-24 01:01:39,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:39,843 INFO Connection check task start + +2025-09-24 01:01:39,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:39,843 INFO Out dated connection ,size=0 + +2025-09-24 01:01:39,843 INFO Connection check task end + +2025-09-24 01:01:42,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:42,843 INFO Connection check task start + +2025-09-24 01:01:42,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:42,844 INFO Out dated connection ,size=0 + +2025-09-24 01:01:42,844 INFO Connection check task end + +2025-09-24 01:01:45,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:45,844 INFO Connection check task start + +2025-09-24 01:01:45,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:45,844 INFO Out dated connection ,size=0 + +2025-09-24 01:01:45,844 INFO Connection check task end + +2025-09-24 01:01:48,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:48,845 INFO Connection check task start + +2025-09-24 01:01:48,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:48,845 INFO Out dated connection ,size=0 + +2025-09-24 01:01:48,845 INFO Connection check task end + +2025-09-24 01:01:51,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:51,846 INFO Connection check task start + +2025-09-24 01:01:51,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:51,847 INFO Out dated connection ,size=0 + +2025-09-24 01:01:51,847 INFO Connection check task end + +2025-09-24 01:01:54,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:54,848 INFO Connection check task start + +2025-09-24 01:01:54,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:54,848 INFO Out dated connection ,size=0 + +2025-09-24 01:01:54,848 INFO Connection check task end + +2025-09-24 01:01:57,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:01:57,849 INFO Connection check task start + +2025-09-24 01:01:57,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:01:57,849 INFO Out dated connection ,size=0 + +2025-09-24 01:01:57,849 INFO Connection check task end + +2025-09-24 01:02:00,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:00,850 INFO Connection check task start + +2025-09-24 01:02:00,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:00,850 INFO Out dated connection ,size=0 + +2025-09-24 01:02:00,850 INFO Connection check task end + +2025-09-24 01:02:03,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:03,851 INFO Connection check task start + +2025-09-24 01:02:03,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:03,851 INFO Out dated connection ,size=0 + +2025-09-24 01:02:03,851 INFO Connection check task end + +2025-09-24 01:02:06,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:06,851 INFO Connection check task start + +2025-09-24 01:02:06,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:06,852 INFO Out dated connection ,size=0 + +2025-09-24 01:02:06,852 INFO Connection check task end + +2025-09-24 01:02:09,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:09,853 INFO Connection check task start + +2025-09-24 01:02:09,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:09,853 INFO Out dated connection ,size=0 + +2025-09-24 01:02:09,853 INFO Connection check task end + +2025-09-24 01:02:12,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:12,853 INFO Connection check task start + +2025-09-24 01:02:12,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:12,853 INFO Out dated connection ,size=0 + +2025-09-24 01:02:12,853 INFO Connection check task end + +2025-09-24 01:02:15,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:15,854 INFO Connection check task start + +2025-09-24 01:02:15,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:15,854 INFO Out dated connection ,size=0 + +2025-09-24 01:02:15,854 INFO Connection check task end + +2025-09-24 01:02:18,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:18,855 INFO Connection check task start + +2025-09-24 01:02:18,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:18,855 INFO Out dated connection ,size=0 + +2025-09-24 01:02:18,855 INFO Connection check task end + +2025-09-24 01:02:21,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:21,856 INFO Connection check task start + +2025-09-24 01:02:21,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:21,857 INFO Out dated connection ,size=0 + +2025-09-24 01:02:21,857 INFO Connection check task end + +2025-09-24 01:02:24,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:24,858 INFO Connection check task start + +2025-09-24 01:02:24,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:24,858 INFO Out dated connection ,size=0 + +2025-09-24 01:02:24,858 INFO Connection check task end + +2025-09-24 01:02:27,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:27,859 INFO Connection check task start + +2025-09-24 01:02:27,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:27,859 INFO Out dated connection ,size=0 + +2025-09-24 01:02:27,859 INFO Connection check task end + +2025-09-24 01:02:30,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:30,859 INFO Connection check task start + +2025-09-24 01:02:30,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:30,860 INFO Out dated connection ,size=0 + +2025-09-24 01:02:30,860 INFO Connection check task end + +2025-09-24 01:02:33,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:33,860 INFO Connection check task start + +2025-09-24 01:02:33,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:33,860 INFO Out dated connection ,size=0 + +2025-09-24 01:02:33,860 INFO Connection check task end + +2025-09-24 01:02:36,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:36,861 INFO Connection check task start + +2025-09-24 01:02:36,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:36,861 INFO Out dated connection ,size=0 + +2025-09-24 01:02:36,861 INFO Connection check task end + +2025-09-24 01:02:39,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:39,861 INFO Connection check task start + +2025-09-24 01:02:39,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:39,862 INFO Out dated connection ,size=0 + +2025-09-24 01:02:39,862 INFO Connection check task end + +2025-09-24 01:02:42,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:42,863 INFO Connection check task start + +2025-09-24 01:02:42,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:42,864 INFO Out dated connection ,size=0 + +2025-09-24 01:02:42,864 INFO Connection check task end + +2025-09-24 01:02:45,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:45,865 INFO Connection check task start + +2025-09-24 01:02:45,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:45,865 INFO Out dated connection ,size=0 + +2025-09-24 01:02:45,865 INFO Connection check task end + +2025-09-24 01:02:48,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:48,866 INFO Connection check task start + +2025-09-24 01:02:48,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:48,866 INFO Out dated connection ,size=0 + +2025-09-24 01:02:48,866 INFO Connection check task end + +2025-09-24 01:02:51,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:51,867 INFO Connection check task start + +2025-09-24 01:02:51,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:51,867 INFO Out dated connection ,size=0 + +2025-09-24 01:02:51,867 INFO Connection check task end + +2025-09-24 01:02:54,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:54,868 INFO Connection check task start + +2025-09-24 01:02:54,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:54,868 INFO Out dated connection ,size=0 + +2025-09-24 01:02:54,868 INFO Connection check task end + +2025-09-24 01:02:57,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:02:57,869 INFO Connection check task start + +2025-09-24 01:02:57,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:02:57,870 INFO Out dated connection ,size=0 + +2025-09-24 01:02:57,870 INFO Connection check task end + +2025-09-24 01:03:00,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:00,870 INFO Connection check task start + +2025-09-24 01:03:00,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:00,870 INFO Out dated connection ,size=0 + +2025-09-24 01:03:00,871 INFO Connection check task end + +2025-09-24 01:03:03,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:03,871 INFO Connection check task start + +2025-09-24 01:03:03,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:03,871 INFO Out dated connection ,size=0 + +2025-09-24 01:03:03,871 INFO Connection check task end + +2025-09-24 01:03:06,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:06,872 INFO Connection check task start + +2025-09-24 01:03:06,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:06,873 INFO Out dated connection ,size=0 + +2025-09-24 01:03:06,873 INFO Connection check task end + +2025-09-24 01:03:09,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:09,873 INFO Connection check task start + +2025-09-24 01:03:09,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:09,874 INFO Out dated connection ,size=0 + +2025-09-24 01:03:09,874 INFO Connection check task end + +2025-09-24 01:03:12,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:12,874 INFO Connection check task start + +2025-09-24 01:03:12,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:12,875 INFO Out dated connection ,size=0 + +2025-09-24 01:03:12,875 INFO Connection check task end + +2025-09-24 01:03:15,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:15,876 INFO Connection check task start + +2025-09-24 01:03:15,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:15,876 INFO Out dated connection ,size=0 + +2025-09-24 01:03:15,876 INFO Connection check task end + +2025-09-24 01:03:18,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:18,876 INFO Connection check task start + +2025-09-24 01:03:18,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:18,876 INFO Out dated connection ,size=0 + +2025-09-24 01:03:18,876 INFO Connection check task end + +2025-09-24 01:03:21,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:21,877 INFO Connection check task start + +2025-09-24 01:03:21,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:21,877 INFO Out dated connection ,size=0 + +2025-09-24 01:03:21,877 INFO Connection check task end + +2025-09-24 01:03:24,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:24,877 INFO Connection check task start + +2025-09-24 01:03:24,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:24,878 INFO Out dated connection ,size=0 + +2025-09-24 01:03:24,878 INFO Connection check task end + +2025-09-24 01:03:27,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:27,878 INFO Connection check task start + +2025-09-24 01:03:27,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:27,878 INFO Out dated connection ,size=0 + +2025-09-24 01:03:27,879 INFO Connection check task end + +2025-09-24 01:03:30,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:30,879 INFO Connection check task start + +2025-09-24 01:03:30,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:30,879 INFO Out dated connection ,size=0 + +2025-09-24 01:03:30,879 INFO Connection check task end + +2025-09-24 01:03:33,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:33,879 INFO Connection check task start + +2025-09-24 01:03:33,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:33,880 INFO Out dated connection ,size=0 + +2025-09-24 01:03:33,880 INFO Connection check task end + +2025-09-24 01:03:36,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:36,881 INFO Connection check task start + +2025-09-24 01:03:36,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:36,881 INFO Out dated connection ,size=0 + +2025-09-24 01:03:36,881 INFO Connection check task end + +2025-09-24 01:03:39,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:39,882 INFO Connection check task start + +2025-09-24 01:03:39,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:39,882 INFO Out dated connection ,size=0 + +2025-09-24 01:03:39,882 INFO Connection check task end + +2025-09-24 01:03:42,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:42,882 INFO Connection check task start + +2025-09-24 01:03:42,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:42,883 INFO Out dated connection ,size=0 + +2025-09-24 01:03:42,883 INFO Connection check task end + +2025-09-24 01:03:45,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:45,883 INFO Connection check task start + +2025-09-24 01:03:45,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:45,883 INFO Out dated connection ,size=0 + +2025-09-24 01:03:45,883 INFO Connection check task end + +2025-09-24 01:03:48,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:48,885 INFO Connection check task start + +2025-09-24 01:03:48,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:48,885 INFO Out dated connection ,size=0 + +2025-09-24 01:03:48,885 INFO Connection check task end + +2025-09-24 01:03:51,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:51,885 INFO Connection check task start + +2025-09-24 01:03:51,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:51,885 INFO Out dated connection ,size=0 + +2025-09-24 01:03:51,885 INFO Connection check task end + +2025-09-24 01:03:54,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:54,885 INFO Connection check task start + +2025-09-24 01:03:54,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:54,886 INFO Out dated connection ,size=0 + +2025-09-24 01:03:54,886 INFO Connection check task end + +2025-09-24 01:03:57,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:03:57,886 INFO Connection check task start + +2025-09-24 01:03:57,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:03:57,886 INFO Out dated connection ,size=0 + +2025-09-24 01:03:57,887 INFO Connection check task end + +2025-09-24 01:04:00,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:00,887 INFO Connection check task start + +2025-09-24 01:04:00,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:00,888 INFO Out dated connection ,size=0 + +2025-09-24 01:04:00,888 INFO Connection check task end + +2025-09-24 01:04:03,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:03,888 INFO Connection check task start + +2025-09-24 01:04:03,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:03,888 INFO Out dated connection ,size=0 + +2025-09-24 01:04:03,888 INFO Connection check task end + +2025-09-24 01:04:06,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:06,888 INFO Connection check task start + +2025-09-24 01:04:06,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:06,895 INFO Out dated connection ,size=0 + +2025-09-24 01:04:06,895 INFO Connection check task end + +2025-09-24 01:04:09,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:09,895 INFO Connection check task start + +2025-09-24 01:04:09,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:09,896 INFO Out dated connection ,size=0 + +2025-09-24 01:04:09,896 INFO Connection check task end + +2025-09-24 01:04:12,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:12,897 INFO Connection check task start + +2025-09-24 01:04:12,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:12,897 INFO Out dated connection ,size=0 + +2025-09-24 01:04:12,897 INFO Connection check task end + +2025-09-24 01:04:15,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:15,898 INFO Connection check task start + +2025-09-24 01:04:15,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:15,898 INFO Out dated connection ,size=0 + +2025-09-24 01:04:15,898 INFO Connection check task end + +2025-09-24 01:04:18,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:18,899 INFO Connection check task start + +2025-09-24 01:04:18,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:18,899 INFO Out dated connection ,size=0 + +2025-09-24 01:04:18,899 INFO Connection check task end + +2025-09-24 01:04:21,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:21,899 INFO Connection check task start + +2025-09-24 01:04:21,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:21,900 INFO Out dated connection ,size=0 + +2025-09-24 01:04:21,900 INFO Connection check task end + +2025-09-24 01:04:24,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:24,900 INFO Connection check task start + +2025-09-24 01:04:24,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:24,900 INFO Out dated connection ,size=0 + +2025-09-24 01:04:24,900 INFO Connection check task end + +2025-09-24 01:04:27,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:27,901 INFO Connection check task start + +2025-09-24 01:04:27,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:27,901 INFO Out dated connection ,size=0 + +2025-09-24 01:04:27,901 INFO Connection check task end + +2025-09-24 01:04:30,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:30,902 INFO Connection check task start + +2025-09-24 01:04:30,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:30,902 INFO Out dated connection ,size=0 + +2025-09-24 01:04:30,902 INFO Connection check task end + +2025-09-24 01:04:33,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:33,902 INFO Connection check task start + +2025-09-24 01:04:33,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:33,902 INFO Out dated connection ,size=0 + +2025-09-24 01:04:33,902 INFO Connection check task end + +2025-09-24 01:04:36,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:36,903 INFO Connection check task start + +2025-09-24 01:04:36,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:36,903 INFO Out dated connection ,size=0 + +2025-09-24 01:04:36,904 INFO Connection check task end + +2025-09-24 01:04:39,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:39,904 INFO Connection check task start + +2025-09-24 01:04:39,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:39,904 INFO Out dated connection ,size=0 + +2025-09-24 01:04:39,904 INFO Connection check task end + +2025-09-24 01:04:42,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:42,905 INFO Connection check task start + +2025-09-24 01:04:42,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:42,905 INFO Out dated connection ,size=0 + +2025-09-24 01:04:42,905 INFO Connection check task end + +2025-09-24 01:04:45,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:45,906 INFO Connection check task start + +2025-09-24 01:04:45,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:45,906 INFO Out dated connection ,size=0 + +2025-09-24 01:04:45,906 INFO Connection check task end + +2025-09-24 01:04:48,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:48,907 INFO Connection check task start + +2025-09-24 01:04:48,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:48,907 INFO Out dated connection ,size=0 + +2025-09-24 01:04:48,907 INFO Connection check task end + +2025-09-24 01:04:51,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:51,908 INFO Connection check task start + +2025-09-24 01:04:51,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:51,908 INFO Out dated connection ,size=0 + +2025-09-24 01:04:51,908 INFO Connection check task end + +2025-09-24 01:04:54,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:54,909 INFO Connection check task start + +2025-09-24 01:04:54,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:54,909 INFO Out dated connection ,size=0 + +2025-09-24 01:04:54,909 INFO Connection check task end + +2025-09-24 01:04:57,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:04:57,911 INFO Connection check task start + +2025-09-24 01:04:57,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:04:57,911 INFO Out dated connection ,size=0 + +2025-09-24 01:04:57,911 INFO Connection check task end + +2025-09-24 01:05:00,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:00,912 INFO Connection check task start + +2025-09-24 01:05:00,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:00,912 INFO Out dated connection ,size=0 + +2025-09-24 01:05:00,912 INFO Connection check task end + +2025-09-24 01:05:03,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:03,913 INFO Connection check task start + +2025-09-24 01:05:03,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:03,913 INFO Out dated connection ,size=0 + +2025-09-24 01:05:03,913 INFO Connection check task end + +2025-09-24 01:05:06,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:06,915 INFO Connection check task start + +2025-09-24 01:05:06,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:06,915 INFO Out dated connection ,size=0 + +2025-09-24 01:05:06,915 INFO Connection check task end + +2025-09-24 01:05:09,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:09,916 INFO Connection check task start + +2025-09-24 01:05:09,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:09,916 INFO Out dated connection ,size=0 + +2025-09-24 01:05:09,916 INFO Connection check task end + +2025-09-24 01:05:12,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:12,917 INFO Connection check task start + +2025-09-24 01:05:12,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:12,917 INFO Out dated connection ,size=0 + +2025-09-24 01:05:12,917 INFO Connection check task end + +2025-09-24 01:05:15,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:15,918 INFO Connection check task start + +2025-09-24 01:05:15,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:15,919 INFO Out dated connection ,size=0 + +2025-09-24 01:05:15,919 INFO Connection check task end + +2025-09-24 01:05:18,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:18,920 INFO Connection check task start + +2025-09-24 01:05:18,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:18,920 INFO Out dated connection ,size=0 + +2025-09-24 01:05:18,920 INFO Connection check task end + +2025-09-24 01:05:21,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:21,920 INFO Connection check task start + +2025-09-24 01:05:21,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:21,921 INFO Out dated connection ,size=0 + +2025-09-24 01:05:21,921 INFO Connection check task end + +2025-09-24 01:05:24,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:24,921 INFO Connection check task start + +2025-09-24 01:05:24,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:24,922 INFO Out dated connection ,size=0 + +2025-09-24 01:05:24,922 INFO Connection check task end + +2025-09-24 01:05:27,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:27,922 INFO Connection check task start + +2025-09-24 01:05:27,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:27,922 INFO Out dated connection ,size=0 + +2025-09-24 01:05:27,922 INFO Connection check task end + +2025-09-24 01:05:30,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:30,923 INFO Connection check task start + +2025-09-24 01:05:30,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:30,923 INFO Out dated connection ,size=0 + +2025-09-24 01:05:30,923 INFO Connection check task end + +2025-09-24 01:05:33,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:33,923 INFO Connection check task start + +2025-09-24 01:05:33,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:33,923 INFO Out dated connection ,size=0 + +2025-09-24 01:05:33,923 INFO Connection check task end + +2025-09-24 01:05:36,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:36,924 INFO Connection check task start + +2025-09-24 01:05:36,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:36,924 INFO Out dated connection ,size=0 + +2025-09-24 01:05:36,924 INFO Connection check task end + +2025-09-24 01:05:39,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:39,925 INFO Connection check task start + +2025-09-24 01:05:39,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:39,925 INFO Out dated connection ,size=0 + +2025-09-24 01:05:39,925 INFO Connection check task end + +2025-09-24 01:05:42,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:42,926 INFO Connection check task start + +2025-09-24 01:05:42,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:42,926 INFO Out dated connection ,size=0 + +2025-09-24 01:05:42,926 INFO Connection check task end + +2025-09-24 01:05:45,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:45,927 INFO Connection check task start + +2025-09-24 01:05:45,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:45,927 INFO Out dated connection ,size=0 + +2025-09-24 01:05:45,927 INFO Connection check task end + +2025-09-24 01:05:48,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:48,928 INFO Connection check task start + +2025-09-24 01:05:48,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:48,928 INFO Out dated connection ,size=0 + +2025-09-24 01:05:48,928 INFO Connection check task end + +2025-09-24 01:05:51,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:51,929 INFO Connection check task start + +2025-09-24 01:05:51,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:51,930 INFO Out dated connection ,size=0 + +2025-09-24 01:05:51,930 INFO Connection check task end + +2025-09-24 01:05:54,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:54,930 INFO Connection check task start + +2025-09-24 01:05:54,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:54,931 INFO Out dated connection ,size=0 + +2025-09-24 01:05:54,931 INFO Connection check task end + +2025-09-24 01:05:57,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:05:57,931 INFO Connection check task start + +2025-09-24 01:05:57,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:05:57,931 INFO Out dated connection ,size=0 + +2025-09-24 01:05:57,931 INFO Connection check task end + +2025-09-24 01:06:00,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:00,932 INFO Connection check task start + +2025-09-24 01:06:00,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:00,932 INFO Out dated connection ,size=0 + +2025-09-24 01:06:00,932 INFO Connection check task end + +2025-09-24 01:06:03,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:03,933 INFO Connection check task start + +2025-09-24 01:06:03,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:03,933 INFO Out dated connection ,size=0 + +2025-09-24 01:06:03,933 INFO Connection check task end + +2025-09-24 01:06:06,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:06,934 INFO Connection check task start + +2025-09-24 01:06:06,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:06,934 INFO Out dated connection ,size=0 + +2025-09-24 01:06:06,934 INFO Connection check task end + +2025-09-24 01:06:09,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:09,935 INFO Connection check task start + +2025-09-24 01:06:09,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:09,935 INFO Out dated connection ,size=0 + +2025-09-24 01:06:09,935 INFO Connection check task end + +2025-09-24 01:06:12,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:12,935 INFO Connection check task start + +2025-09-24 01:06:12,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:12,936 INFO Out dated connection ,size=0 + +2025-09-24 01:06:12,936 INFO Connection check task end + +2025-09-24 01:06:15,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:15,937 INFO Connection check task start + +2025-09-24 01:06:15,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:15,937 INFO Out dated connection ,size=0 + +2025-09-24 01:06:15,937 INFO Connection check task end + +2025-09-24 01:06:18,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:18,938 INFO Connection check task start + +2025-09-24 01:06:18,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:18,938 INFO Out dated connection ,size=0 + +2025-09-24 01:06:18,938 INFO Connection check task end + +2025-09-24 01:06:21,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:21,939 INFO Connection check task start + +2025-09-24 01:06:21,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:21,939 INFO Out dated connection ,size=0 + +2025-09-24 01:06:21,939 INFO Connection check task end + +2025-09-24 01:06:24,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:24,939 INFO Connection check task start + +2025-09-24 01:06:24,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:24,940 INFO Out dated connection ,size=0 + +2025-09-24 01:06:24,940 INFO Connection check task end + +2025-09-24 01:06:27,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:27,940 INFO Connection check task start + +2025-09-24 01:06:27,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:27,940 INFO Out dated connection ,size=0 + +2025-09-24 01:06:27,940 INFO Connection check task end + +2025-09-24 01:06:30,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:30,940 INFO Connection check task start + +2025-09-24 01:06:30,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:30,941 INFO Out dated connection ,size=0 + +2025-09-24 01:06:30,941 INFO Connection check task end + +2025-09-24 01:06:33,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:33,941 INFO Connection check task start + +2025-09-24 01:06:33,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:33,941 INFO Out dated connection ,size=0 + +2025-09-24 01:06:33,941 INFO Connection check task end + +2025-09-24 01:06:36,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:36,941 INFO Connection check task start + +2025-09-24 01:06:36,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:36,942 INFO Out dated connection ,size=0 + +2025-09-24 01:06:36,942 INFO Connection check task end + +2025-09-24 01:06:39,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:39,942 INFO Connection check task start + +2025-09-24 01:06:39,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:39,942 INFO Out dated connection ,size=0 + +2025-09-24 01:06:39,942 INFO Connection check task end + +2025-09-24 01:06:42,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:42,943 INFO Connection check task start + +2025-09-24 01:06:42,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:42,943 INFO Out dated connection ,size=0 + +2025-09-24 01:06:42,943 INFO Connection check task end + +2025-09-24 01:06:45,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:45,944 INFO Connection check task start + +2025-09-24 01:06:45,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:45,944 INFO Out dated connection ,size=0 + +2025-09-24 01:06:45,944 INFO Connection check task end + +2025-09-24 01:06:48,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:48,945 INFO Connection check task start + +2025-09-24 01:06:48,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:48,945 INFO Out dated connection ,size=0 + +2025-09-24 01:06:48,945 INFO Connection check task end + +2025-09-24 01:06:51,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:51,945 INFO Connection check task start + +2025-09-24 01:06:51,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:51,945 INFO Out dated connection ,size=0 + +2025-09-24 01:06:51,945 INFO Connection check task end + +2025-09-24 01:06:54,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:54,945 INFO Connection check task start + +2025-09-24 01:06:54,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:54,946 INFO Out dated connection ,size=0 + +2025-09-24 01:06:54,946 INFO Connection check task end + +2025-09-24 01:06:57,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:06:57,946 INFO Connection check task start + +2025-09-24 01:06:57,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:06:57,946 INFO Out dated connection ,size=0 + +2025-09-24 01:06:57,946 INFO Connection check task end + +2025-09-24 01:07:00,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:00,946 INFO Connection check task start + +2025-09-24 01:07:00,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:00,947 INFO Out dated connection ,size=0 + +2025-09-24 01:07:00,947 INFO Connection check task end + +2025-09-24 01:07:03,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:03,947 INFO Connection check task start + +2025-09-24 01:07:03,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:03,947 INFO Out dated connection ,size=0 + +2025-09-24 01:07:03,947 INFO Connection check task end + +2025-09-24 01:07:06,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:06,948 INFO Connection check task start + +2025-09-24 01:07:06,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:06,948 INFO Out dated connection ,size=0 + +2025-09-24 01:07:06,948 INFO Connection check task end + +2025-09-24 01:07:09,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:09,948 INFO Connection check task start + +2025-09-24 01:07:09,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:09,949 INFO Out dated connection ,size=0 + +2025-09-24 01:07:09,949 INFO Connection check task end + +2025-09-24 01:07:12,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:12,949 INFO Connection check task start + +2025-09-24 01:07:12,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:12,949 INFO Out dated connection ,size=0 + +2025-09-24 01:07:12,949 INFO Connection check task end + +2025-09-24 01:07:15,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:15,949 INFO Connection check task start + +2025-09-24 01:07:15,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:15,950 INFO Out dated connection ,size=0 + +2025-09-24 01:07:15,950 INFO Connection check task end + +2025-09-24 01:07:18,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:18,950 INFO Connection check task start + +2025-09-24 01:07:18,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:18,950 INFO Out dated connection ,size=0 + +2025-09-24 01:07:18,950 INFO Connection check task end + +2025-09-24 01:07:21,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:21,951 INFO Connection check task start + +2025-09-24 01:07:21,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:21,951 INFO Out dated connection ,size=0 + +2025-09-24 01:07:21,951 INFO Connection check task end + +2025-09-24 01:07:24,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:24,952 INFO Connection check task start + +2025-09-24 01:07:24,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:24,952 INFO Out dated connection ,size=0 + +2025-09-24 01:07:24,952 INFO Connection check task end + +2025-09-24 01:07:27,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:27,953 INFO Connection check task start + +2025-09-24 01:07:27,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:27,953 INFO Out dated connection ,size=0 + +2025-09-24 01:07:27,953 INFO Connection check task end + +2025-09-24 01:07:30,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:30,953 INFO Connection check task start + +2025-09-24 01:07:30,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:30,954 INFO Out dated connection ,size=0 + +2025-09-24 01:07:30,954 INFO Connection check task end + +2025-09-24 01:07:33,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:33,954 INFO Connection check task start + +2025-09-24 01:07:33,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:33,954 INFO Out dated connection ,size=0 + +2025-09-24 01:07:33,954 INFO Connection check task end + +2025-09-24 01:07:36,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:36,955 INFO Connection check task start + +2025-09-24 01:07:36,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:36,955 INFO Out dated connection ,size=0 + +2025-09-24 01:07:36,955 INFO Connection check task end + +2025-09-24 01:07:39,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:39,955 INFO Connection check task start + +2025-09-24 01:07:39,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:39,955 INFO Out dated connection ,size=0 + +2025-09-24 01:07:39,956 INFO Connection check task end + +2025-09-24 01:07:42,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:42,956 INFO Connection check task start + +2025-09-24 01:07:42,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:42,956 INFO Out dated connection ,size=0 + +2025-09-24 01:07:42,956 INFO Connection check task end + +2025-09-24 01:07:45,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:45,956 INFO Connection check task start + +2025-09-24 01:07:45,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:45,957 INFO Out dated connection ,size=0 + +2025-09-24 01:07:45,957 INFO Connection check task end + +2025-09-24 01:07:48,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:48,957 INFO Connection check task start + +2025-09-24 01:07:48,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:48,960 INFO Out dated connection ,size=0 + +2025-09-24 01:07:48,960 INFO Connection check task end + +2025-09-24 01:07:51,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:51,960 INFO Connection check task start + +2025-09-24 01:07:51,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:51,960 INFO Out dated connection ,size=0 + +2025-09-24 01:07:51,960 INFO Connection check task end + +2025-09-24 01:07:54,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:54,961 INFO Connection check task start + +2025-09-24 01:07:54,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:54,961 INFO Out dated connection ,size=0 + +2025-09-24 01:07:54,962 INFO Connection check task end + +2025-09-24 01:07:57,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:07:57,962 INFO Connection check task start + +2025-09-24 01:07:57,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:07:57,962 INFO Out dated connection ,size=0 + +2025-09-24 01:07:57,962 INFO Connection check task end + +2025-09-24 01:08:00,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:00,963 INFO Connection check task start + +2025-09-24 01:08:00,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:00,963 INFO Out dated connection ,size=0 + +2025-09-24 01:08:00,963 INFO Connection check task end + +2025-09-24 01:08:03,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:03,964 INFO Connection check task start + +2025-09-24 01:08:03,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:03,964 INFO Out dated connection ,size=0 + +2025-09-24 01:08:03,964 INFO Connection check task end + +2025-09-24 01:08:06,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:06,965 INFO Connection check task start + +2025-09-24 01:08:06,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:06,965 INFO Out dated connection ,size=0 + +2025-09-24 01:08:06,965 INFO Connection check task end + +2025-09-24 01:08:09,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:09,965 INFO Connection check task start + +2025-09-24 01:08:09,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:09,965 INFO Out dated connection ,size=0 + +2025-09-24 01:08:09,966 INFO Connection check task end + +2025-09-24 01:08:12,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:12,966 INFO Connection check task start + +2025-09-24 01:08:12,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:12,966 INFO Out dated connection ,size=0 + +2025-09-24 01:08:12,966 INFO Connection check task end + +2025-09-24 01:08:15,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:15,966 INFO Connection check task start + +2025-09-24 01:08:15,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:15,967 INFO Out dated connection ,size=0 + +2025-09-24 01:08:15,967 INFO Connection check task end + +2025-09-24 01:08:18,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:18,967 INFO Connection check task start + +2025-09-24 01:08:18,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:18,967 INFO Out dated connection ,size=0 + +2025-09-24 01:08:18,967 INFO Connection check task end + +2025-09-24 01:08:21,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:21,967 INFO Connection check task start + +2025-09-24 01:08:21,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:21,968 INFO Out dated connection ,size=0 + +2025-09-24 01:08:21,968 INFO Connection check task end + +2025-09-24 01:08:24,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:24,968 INFO Connection check task start + +2025-09-24 01:08:24,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:24,968 INFO Out dated connection ,size=0 + +2025-09-24 01:08:24,968 INFO Connection check task end + +2025-09-24 01:08:27,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:27,968 INFO Connection check task start + +2025-09-24 01:08:27,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:27,969 INFO Out dated connection ,size=0 + +2025-09-24 01:08:27,969 INFO Connection check task end + +2025-09-24 01:08:30,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:30,969 INFO Connection check task start + +2025-09-24 01:08:30,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:30,969 INFO Out dated connection ,size=0 + +2025-09-24 01:08:30,969 INFO Connection check task end + +2025-09-24 01:08:33,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:33,970 INFO Connection check task start + +2025-09-24 01:08:33,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:33,970 INFO Out dated connection ,size=0 + +2025-09-24 01:08:33,970 INFO Connection check task end + +2025-09-24 01:08:36,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:36,970 INFO Connection check task start + +2025-09-24 01:08:36,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:36,970 INFO Out dated connection ,size=0 + +2025-09-24 01:08:36,970 INFO Connection check task end + +2025-09-24 01:08:39,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:39,971 INFO Connection check task start + +2025-09-24 01:08:39,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:39,971 INFO Out dated connection ,size=0 + +2025-09-24 01:08:39,971 INFO Connection check task end + +2025-09-24 01:08:42,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:42,972 INFO Connection check task start + +2025-09-24 01:08:42,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:42,972 INFO Out dated connection ,size=0 + +2025-09-24 01:08:42,972 INFO Connection check task end + +2025-09-24 01:08:45,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:45,973 INFO Connection check task start + +2025-09-24 01:08:45,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:45,973 INFO Out dated connection ,size=0 + +2025-09-24 01:08:45,973 INFO Connection check task end + +2025-09-24 01:08:48,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:48,973 INFO Connection check task start + +2025-09-24 01:08:48,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:48,973 INFO Out dated connection ,size=0 + +2025-09-24 01:08:48,973 INFO Connection check task end + +2025-09-24 01:08:51,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:51,974 INFO Connection check task start + +2025-09-24 01:08:51,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:51,974 INFO Out dated connection ,size=0 + +2025-09-24 01:08:51,974 INFO Connection check task end + +2025-09-24 01:08:54,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:54,974 INFO Connection check task start + +2025-09-24 01:08:54,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:54,975 INFO Out dated connection ,size=0 + +2025-09-24 01:08:54,975 INFO Connection check task end + +2025-09-24 01:08:57,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:08:57,975 INFO Connection check task start + +2025-09-24 01:08:57,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:08:57,975 INFO Out dated connection ,size=0 + +2025-09-24 01:08:57,975 INFO Connection check task end + +2025-09-24 01:09:00,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:00,975 INFO Connection check task start + +2025-09-24 01:09:00,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:00,976 INFO Out dated connection ,size=0 + +2025-09-24 01:09:00,976 INFO Connection check task end + +2025-09-24 01:09:03,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:03,976 INFO Connection check task start + +2025-09-24 01:09:03,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:03,976 INFO Out dated connection ,size=0 + +2025-09-24 01:09:03,976 INFO Connection check task end + +2025-09-24 01:09:06,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:06,980 INFO Connection check task start + +2025-09-24 01:09:06,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:06,990 INFO Out dated connection ,size=0 + +2025-09-24 01:09:06,991 INFO Connection check task end + +2025-09-24 01:09:09,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:09,991 INFO Connection check task start + +2025-09-24 01:09:09,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:09,991 INFO Out dated connection ,size=0 + +2025-09-24 01:09:09,991 INFO Connection check task end + +2025-09-24 01:09:12,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:12,992 INFO Connection check task start + +2025-09-24 01:09:12,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:12,992 INFO Out dated connection ,size=0 + +2025-09-24 01:09:12,992 INFO Connection check task end + +2025-09-24 01:09:15,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:15,992 INFO Connection check task start + +2025-09-24 01:09:15,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:15,992 INFO Out dated connection ,size=0 + +2025-09-24 01:09:15,992 INFO Connection check task end + +2025-09-24 01:09:18,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:18,993 INFO Connection check task start + +2025-09-24 01:09:18,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:18,993 INFO Out dated connection ,size=0 + +2025-09-24 01:09:18,993 INFO Connection check task end + +2025-09-24 01:09:21,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:21,993 INFO Connection check task start + +2025-09-24 01:09:21,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:21,994 INFO Out dated connection ,size=0 + +2025-09-24 01:09:21,994 INFO Connection check task end + +2025-09-24 01:09:24,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:24,994 INFO Connection check task start + +2025-09-24 01:09:24,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:24,994 INFO Out dated connection ,size=0 + +2025-09-24 01:09:24,994 INFO Connection check task end + +2025-09-24 01:09:27,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:27,994 INFO Connection check task start + +2025-09-24 01:09:27,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:27,994 INFO Out dated connection ,size=0 + +2025-09-24 01:09:27,994 INFO Connection check task end + +2025-09-24 01:09:30,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:30,995 INFO Connection check task start + +2025-09-24 01:09:30,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:30,995 INFO Out dated connection ,size=0 + +2025-09-24 01:09:30,995 INFO Connection check task end + +2025-09-24 01:09:33,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:33,995 INFO Connection check task start + +2025-09-24 01:09:33,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:33,995 INFO Out dated connection ,size=0 + +2025-09-24 01:09:33,995 INFO Connection check task end + +2025-09-24 01:09:36,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:36,996 INFO Connection check task start + +2025-09-24 01:09:36,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:36,996 INFO Out dated connection ,size=0 + +2025-09-24 01:09:36,996 INFO Connection check task end + +2025-09-24 01:09:39,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:39,997 INFO Connection check task start + +2025-09-24 01:09:39,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:39,997 INFO Out dated connection ,size=0 + +2025-09-24 01:09:39,997 INFO Connection check task end + +2025-09-24 01:09:42,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:42,997 INFO Connection check task start + +2025-09-24 01:09:42,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:42,997 INFO Out dated connection ,size=0 + +2025-09-24 01:09:42,998 INFO Connection check task end + +2025-09-24 01:09:45,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:45,998 INFO Connection check task start + +2025-09-24 01:09:45,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:45,998 INFO Out dated connection ,size=0 + +2025-09-24 01:09:45,998 INFO Connection check task end + +2025-09-24 01:09:48,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:48,998 INFO Connection check task start + +2025-09-24 01:09:48,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:48,998 INFO Out dated connection ,size=0 + +2025-09-24 01:09:48,998 INFO Connection check task end + +2025-09-24 01:09:51,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:51,999 INFO Connection check task start + +2025-09-24 01:09:51,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:51,999 INFO Out dated connection ,size=0 + +2025-09-24 01:09:51,999 INFO Connection check task end + +2025-09-24 01:09:54,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:55,006 INFO Connection check task start + +2025-09-24 01:09:55,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:55,006 INFO Out dated connection ,size=0 + +2025-09-24 01:09:55,006 INFO Connection check task end + +2025-09-24 01:09:57,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:09:58,007 INFO Connection check task start + +2025-09-24 01:09:58,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:09:58,007 INFO Out dated connection ,size=0 + +2025-09-24 01:09:58,007 INFO Connection check task end + +2025-09-24 01:10:00,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:01,007 INFO Connection check task start + +2025-09-24 01:10:01,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:01,007 INFO Out dated connection ,size=0 + +2025-09-24 01:10:01,007 INFO Connection check task end + +2025-09-24 01:10:03,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:04,007 INFO Connection check task start + +2025-09-24 01:10:04,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:04,008 INFO Out dated connection ,size=0 + +2025-09-24 01:10:04,008 INFO Connection check task end + +2025-09-24 01:10:06,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:07,008 INFO Connection check task start + +2025-09-24 01:10:07,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:07,008 INFO Out dated connection ,size=0 + +2025-09-24 01:10:07,008 INFO Connection check task end + +2025-09-24 01:10:09,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:10,008 INFO Connection check task start + +2025-09-24 01:10:10,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:10,008 INFO Out dated connection ,size=0 + +2025-09-24 01:10:10,009 INFO Connection check task end + +2025-09-24 01:10:12,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:13,009 INFO Connection check task start + +2025-09-24 01:10:13,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:13,010 INFO Out dated connection ,size=0 + +2025-09-24 01:10:13,010 INFO Connection check task end + +2025-09-24 01:10:15,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:16,011 INFO Connection check task start + +2025-09-24 01:10:16,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:16,011 INFO Out dated connection ,size=0 + +2025-09-24 01:10:16,011 INFO Connection check task end + +2025-09-24 01:10:18,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:19,011 INFO Connection check task start + +2025-09-24 01:10:19,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:19,012 INFO Out dated connection ,size=0 + +2025-09-24 01:10:19,012 INFO Connection check task end + +2025-09-24 01:10:21,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:22,013 INFO Connection check task start + +2025-09-24 01:10:22,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:22,013 INFO Out dated connection ,size=0 + +2025-09-24 01:10:22,013 INFO Connection check task end + +2025-09-24 01:10:24,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:25,013 INFO Connection check task start + +2025-09-24 01:10:25,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:25,013 INFO Out dated connection ,size=0 + +2025-09-24 01:10:25,013 INFO Connection check task end + +2025-09-24 01:10:27,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:28,014 INFO Connection check task start + +2025-09-24 01:10:28,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:28,015 INFO Out dated connection ,size=0 + +2025-09-24 01:10:28,015 INFO Connection check task end + +2025-09-24 01:10:30,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:31,016 INFO Connection check task start + +2025-09-24 01:10:31,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:31,016 INFO Out dated connection ,size=0 + +2025-09-24 01:10:31,016 INFO Connection check task end + +2025-09-24 01:10:33,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:34,017 INFO Connection check task start + +2025-09-24 01:10:34,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:34,017 INFO Out dated connection ,size=0 + +2025-09-24 01:10:34,017 INFO Connection check task end + +2025-09-24 01:10:36,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:37,018 INFO Connection check task start + +2025-09-24 01:10:37,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:37,018 INFO Out dated connection ,size=0 + +2025-09-24 01:10:37,018 INFO Connection check task end + +2025-09-24 01:10:39,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:40,019 INFO Connection check task start + +2025-09-24 01:10:40,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:40,019 INFO Out dated connection ,size=0 + +2025-09-24 01:10:40,019 INFO Connection check task end + +2025-09-24 01:10:42,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:43,019 INFO Connection check task start + +2025-09-24 01:10:43,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:43,020 INFO Out dated connection ,size=0 + +2025-09-24 01:10:43,020 INFO Connection check task end + +2025-09-24 01:10:45,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:46,020 INFO Connection check task start + +2025-09-24 01:10:46,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:46,020 INFO Out dated connection ,size=0 + +2025-09-24 01:10:46,020 INFO Connection check task end + +2025-09-24 01:10:48,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:49,021 INFO Connection check task start + +2025-09-24 01:10:49,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:49,021 INFO Out dated connection ,size=0 + +2025-09-24 01:10:49,021 INFO Connection check task end + +2025-09-24 01:10:51,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:52,022 INFO Connection check task start + +2025-09-24 01:10:52,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:52,022 INFO Out dated connection ,size=0 + +2025-09-24 01:10:52,022 INFO Connection check task end + +2025-09-24 01:10:54,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:55,023 INFO Connection check task start + +2025-09-24 01:10:55,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:55,023 INFO Out dated connection ,size=0 + +2025-09-24 01:10:55,023 INFO Connection check task end + +2025-09-24 01:10:57,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:10:58,024 INFO Connection check task start + +2025-09-24 01:10:58,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:10:58,025 INFO Out dated connection ,size=0 + +2025-09-24 01:10:58,025 INFO Connection check task end + +2025-09-24 01:11:00,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:01,026 INFO Connection check task start + +2025-09-24 01:11:01,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:01,026 INFO Out dated connection ,size=0 + +2025-09-24 01:11:01,026 INFO Connection check task end + +2025-09-24 01:11:03,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:04,027 INFO Connection check task start + +2025-09-24 01:11:04,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:04,028 INFO Out dated connection ,size=0 + +2025-09-24 01:11:04,028 INFO Connection check task end + +2025-09-24 01:11:06,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:07,029 INFO Connection check task start + +2025-09-24 01:11:07,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:07,029 INFO Out dated connection ,size=0 + +2025-09-24 01:11:07,029 INFO Connection check task end + +2025-09-24 01:11:09,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:10,030 INFO Connection check task start + +2025-09-24 01:11:10,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:10,030 INFO Out dated connection ,size=0 + +2025-09-24 01:11:10,030 INFO Connection check task end + +2025-09-24 01:11:12,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:13,031 INFO Connection check task start + +2025-09-24 01:11:13,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:13,031 INFO Out dated connection ,size=0 + +2025-09-24 01:11:13,031 INFO Connection check task end + +2025-09-24 01:11:15,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:16,032 INFO Connection check task start + +2025-09-24 01:11:16,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:16,032 INFO Out dated connection ,size=0 + +2025-09-24 01:11:16,032 INFO Connection check task end + +2025-09-24 01:11:18,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:19,034 INFO Connection check task start + +2025-09-24 01:11:19,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:19,034 INFO Out dated connection ,size=0 + +2025-09-24 01:11:19,034 INFO Connection check task end + +2025-09-24 01:11:21,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:22,034 INFO Connection check task start + +2025-09-24 01:11:22,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:22,035 INFO Out dated connection ,size=0 + +2025-09-24 01:11:22,035 INFO Connection check task end + +2025-09-24 01:11:24,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:25,035 INFO Connection check task start + +2025-09-24 01:11:25,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:25,035 INFO Out dated connection ,size=0 + +2025-09-24 01:11:25,035 INFO Connection check task end + +2025-09-24 01:11:27,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:28,036 INFO Connection check task start + +2025-09-24 01:11:28,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:28,036 INFO Out dated connection ,size=0 + +2025-09-24 01:11:28,036 INFO Connection check task end + +2025-09-24 01:11:30,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:31,036 INFO Connection check task start + +2025-09-24 01:11:31,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:31,037 INFO Out dated connection ,size=0 + +2025-09-24 01:11:31,037 INFO Connection check task end + +2025-09-24 01:11:33,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:34,038 INFO Connection check task start + +2025-09-24 01:11:34,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:34,038 INFO Out dated connection ,size=0 + +2025-09-24 01:11:34,038 INFO Connection check task end + +2025-09-24 01:11:36,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:37,038 INFO Connection check task start + +2025-09-24 01:11:37,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:37,039 INFO Out dated connection ,size=0 + +2025-09-24 01:11:37,039 INFO Connection check task end + +2025-09-24 01:11:39,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:40,039 INFO Connection check task start + +2025-09-24 01:11:40,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:40,039 INFO Out dated connection ,size=0 + +2025-09-24 01:11:40,039 INFO Connection check task end + +2025-09-24 01:11:42,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:43,040 INFO Connection check task start + +2025-09-24 01:11:43,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:43,040 INFO Out dated connection ,size=0 + +2025-09-24 01:11:43,040 INFO Connection check task end + +2025-09-24 01:11:45,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:46,040 INFO Connection check task start + +2025-09-24 01:11:46,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:46,040 INFO Out dated connection ,size=0 + +2025-09-24 01:11:46,040 INFO Connection check task end + +2025-09-24 01:11:48,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:49,041 INFO Connection check task start + +2025-09-24 01:11:49,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:49,041 INFO Out dated connection ,size=0 + +2025-09-24 01:11:49,041 INFO Connection check task end + +2025-09-24 01:11:51,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:52,042 INFO Connection check task start + +2025-09-24 01:11:52,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:52,042 INFO Out dated connection ,size=0 + +2025-09-24 01:11:52,042 INFO Connection check task end + +2025-09-24 01:11:54,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:55,043 INFO Connection check task start + +2025-09-24 01:11:55,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:55,044 INFO Out dated connection ,size=0 + +2025-09-24 01:11:55,044 INFO Connection check task end + +2025-09-24 01:11:57,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:11:58,044 INFO Connection check task start + +2025-09-24 01:11:58,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:11:58,044 INFO Out dated connection ,size=0 + +2025-09-24 01:11:58,044 INFO Connection check task end + +2025-09-24 01:12:00,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:01,045 INFO Connection check task start + +2025-09-24 01:12:01,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:01,045 INFO Out dated connection ,size=0 + +2025-09-24 01:12:01,045 INFO Connection check task end + +2025-09-24 01:12:03,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:04,045 INFO Connection check task start + +2025-09-24 01:12:04,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:04,045 INFO Out dated connection ,size=0 + +2025-09-24 01:12:04,045 INFO Connection check task end + +2025-09-24 01:12:06,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:07,047 INFO Connection check task start + +2025-09-24 01:12:07,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:07,047 INFO Out dated connection ,size=0 + +2025-09-24 01:12:07,047 INFO Connection check task end + +2025-09-24 01:12:09,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:10,047 INFO Connection check task start + +2025-09-24 01:12:10,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:10,048 INFO Out dated connection ,size=0 + +2025-09-24 01:12:10,048 INFO Connection check task end + +2025-09-24 01:12:12,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:13,048 INFO Connection check task start + +2025-09-24 01:12:13,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:13,048 INFO Out dated connection ,size=0 + +2025-09-24 01:12:13,048 INFO Connection check task end + +2025-09-24 01:12:15,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:16,048 INFO Connection check task start + +2025-09-24 01:12:16,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:16,049 INFO Out dated connection ,size=0 + +2025-09-24 01:12:16,049 INFO Connection check task end + +2025-09-24 01:12:18,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:19,049 INFO Connection check task start + +2025-09-24 01:12:19,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:19,049 INFO Out dated connection ,size=0 + +2025-09-24 01:12:19,049 INFO Connection check task end + +2025-09-24 01:12:21,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:22,050 INFO Connection check task start + +2025-09-24 01:12:22,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:22,050 INFO Out dated connection ,size=0 + +2025-09-24 01:12:22,050 INFO Connection check task end + +2025-09-24 01:12:24,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:25,051 INFO Connection check task start + +2025-09-24 01:12:25,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:25,051 INFO Out dated connection ,size=0 + +2025-09-24 01:12:25,051 INFO Connection check task end + +2025-09-24 01:12:27,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:28,052 INFO Connection check task start + +2025-09-24 01:12:28,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:28,052 INFO Out dated connection ,size=0 + +2025-09-24 01:12:28,052 INFO Connection check task end + +2025-09-24 01:12:30,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:31,053 INFO Connection check task start + +2025-09-24 01:12:31,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:31,053 INFO Out dated connection ,size=0 + +2025-09-24 01:12:31,053 INFO Connection check task end + +2025-09-24 01:12:33,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:34,053 INFO Connection check task start + +2025-09-24 01:12:34,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:34,054 INFO Out dated connection ,size=0 + +2025-09-24 01:12:34,054 INFO Connection check task end + +2025-09-24 01:12:36,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:37,055 INFO Connection check task start + +2025-09-24 01:12:37,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:37,055 INFO Out dated connection ,size=0 + +2025-09-24 01:12:37,055 INFO Connection check task end + +2025-09-24 01:12:39,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:40,056 INFO Connection check task start + +2025-09-24 01:12:40,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:40,056 INFO Out dated connection ,size=0 + +2025-09-24 01:12:40,056 INFO Connection check task end + +2025-09-24 01:12:42,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:43,057 INFO Connection check task start + +2025-09-24 01:12:43,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:43,057 INFO Out dated connection ,size=0 + +2025-09-24 01:12:43,057 INFO Connection check task end + +2025-09-24 01:12:45,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:46,058 INFO Connection check task start + +2025-09-24 01:12:46,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:46,059 INFO Out dated connection ,size=0 + +2025-09-24 01:12:46,059 INFO Connection check task end + +2025-09-24 01:12:48,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:49,059 INFO Connection check task start + +2025-09-24 01:12:49,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:49,059 INFO Out dated connection ,size=0 + +2025-09-24 01:12:49,059 INFO Connection check task end + +2025-09-24 01:12:51,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:52,060 INFO Connection check task start + +2025-09-24 01:12:52,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:52,060 INFO Out dated connection ,size=0 + +2025-09-24 01:12:52,060 INFO Connection check task end + +2025-09-24 01:12:54,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:55,061 INFO Connection check task start + +2025-09-24 01:12:55,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:55,061 INFO Out dated connection ,size=0 + +2025-09-24 01:12:55,061 INFO Connection check task end + +2025-09-24 01:12:57,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:12:58,061 INFO Connection check task start + +2025-09-24 01:12:58,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:12:58,062 INFO Out dated connection ,size=0 + +2025-09-24 01:12:58,062 INFO Connection check task end + +2025-09-24 01:13:00,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:01,062 INFO Connection check task start + +2025-09-24 01:13:01,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:01,062 INFO Out dated connection ,size=0 + +2025-09-24 01:13:01,062 INFO Connection check task end + +2025-09-24 01:13:03,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:04,063 INFO Connection check task start + +2025-09-24 01:13:04,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:04,063 INFO Out dated connection ,size=0 + +2025-09-24 01:13:04,063 INFO Connection check task end + +2025-09-24 01:13:06,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:07,065 INFO Connection check task start + +2025-09-24 01:13:07,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:07,065 INFO Out dated connection ,size=0 + +2025-09-24 01:13:07,065 INFO Connection check task end + +2025-09-24 01:13:09,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:10,066 INFO Connection check task start + +2025-09-24 01:13:10,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:10,066 INFO Out dated connection ,size=0 + +2025-09-24 01:13:10,066 INFO Connection check task end + +2025-09-24 01:13:12,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:13,067 INFO Connection check task start + +2025-09-24 01:13:13,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:13,067 INFO Out dated connection ,size=0 + +2025-09-24 01:13:13,067 INFO Connection check task end + +2025-09-24 01:13:15,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:16,068 INFO Connection check task start + +2025-09-24 01:13:16,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:16,068 INFO Out dated connection ,size=0 + +2025-09-24 01:13:16,068 INFO Connection check task end + +2025-09-24 01:13:18,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:19,068 INFO Connection check task start + +2025-09-24 01:13:19,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:19,068 INFO Out dated connection ,size=0 + +2025-09-24 01:13:19,068 INFO Connection check task end + +2025-09-24 01:13:21,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:22,069 INFO Connection check task start + +2025-09-24 01:13:22,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:22,070 INFO Out dated connection ,size=0 + +2025-09-24 01:13:22,070 INFO Connection check task end + +2025-09-24 01:13:24,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:25,070 INFO Connection check task start + +2025-09-24 01:13:25,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:25,070 INFO Out dated connection ,size=0 + +2025-09-24 01:13:25,070 INFO Connection check task end + +2025-09-24 01:13:27,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:28,070 INFO Connection check task start + +2025-09-24 01:13:28,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:28,071 INFO Out dated connection ,size=0 + +2025-09-24 01:13:28,071 INFO Connection check task end + +2025-09-24 01:13:30,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:31,072 INFO Connection check task start + +2025-09-24 01:13:31,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:31,072 INFO Out dated connection ,size=0 + +2025-09-24 01:13:31,072 INFO Connection check task end + +2025-09-24 01:13:33,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:34,073 INFO Connection check task start + +2025-09-24 01:13:34,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:34,073 INFO Out dated connection ,size=0 + +2025-09-24 01:13:34,073 INFO Connection check task end + +2025-09-24 01:13:36,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:37,073 INFO Connection check task start + +2025-09-24 01:13:37,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:37,074 INFO Out dated connection ,size=0 + +2025-09-24 01:13:37,074 INFO Connection check task end + +2025-09-24 01:13:39,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:40,074 INFO Connection check task start + +2025-09-24 01:13:40,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:40,074 INFO Out dated connection ,size=0 + +2025-09-24 01:13:40,074 INFO Connection check task end + +2025-09-24 01:13:42,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:43,075 INFO Connection check task start + +2025-09-24 01:13:43,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:43,075 INFO Out dated connection ,size=0 + +2025-09-24 01:13:43,075 INFO Connection check task end + +2025-09-24 01:13:45,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:46,076 INFO Connection check task start + +2025-09-24 01:13:46,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:46,076 INFO Out dated connection ,size=0 + +2025-09-24 01:13:46,076 INFO Connection check task end + +2025-09-24 01:13:48,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:49,076 INFO Connection check task start + +2025-09-24 01:13:49,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:49,076 INFO Out dated connection ,size=0 + +2025-09-24 01:13:49,077 INFO Connection check task end + +2025-09-24 01:13:51,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:52,077 INFO Connection check task start + +2025-09-24 01:13:52,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:52,077 INFO Out dated connection ,size=0 + +2025-09-24 01:13:52,077 INFO Connection check task end + +2025-09-24 01:13:54,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:55,078 INFO Connection check task start + +2025-09-24 01:13:55,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:55,078 INFO Out dated connection ,size=0 + +2025-09-24 01:13:55,078 INFO Connection check task end + +2025-09-24 01:13:57,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:13:58,079 INFO Connection check task start + +2025-09-24 01:13:58,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:13:58,079 INFO Out dated connection ,size=0 + +2025-09-24 01:13:58,079 INFO Connection check task end + +2025-09-24 01:14:01,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:01,079 INFO Connection check task start + +2025-09-24 01:14:01,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:01,080 INFO Out dated connection ,size=0 + +2025-09-24 01:14:01,080 INFO Connection check task end + +2025-09-24 01:14:04,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:04,081 INFO Connection check task start + +2025-09-24 01:14:04,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:04,081 INFO Out dated connection ,size=0 + +2025-09-24 01:14:04,081 INFO Connection check task end + +2025-09-24 01:14:07,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:07,082 INFO Connection check task start + +2025-09-24 01:14:07,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:07,082 INFO Out dated connection ,size=0 + +2025-09-24 01:14:07,082 INFO Connection check task end + +2025-09-24 01:14:10,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:10,083 INFO Connection check task start + +2025-09-24 01:14:10,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:10,083 INFO Out dated connection ,size=0 + +2025-09-24 01:14:10,083 INFO Connection check task end + +2025-09-24 01:14:13,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:13,086 INFO Connection check task start + +2025-09-24 01:14:13,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:13,087 INFO Out dated connection ,size=0 + +2025-09-24 01:14:13,087 INFO Connection check task end + +2025-09-24 01:14:16,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:16,087 INFO Connection check task start + +2025-09-24 01:14:16,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:16,087 INFO Out dated connection ,size=0 + +2025-09-24 01:14:16,088 INFO Connection check task end + +2025-09-24 01:14:19,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:19,088 INFO Connection check task start + +2025-09-24 01:14:19,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:19,089 INFO Out dated connection ,size=0 + +2025-09-24 01:14:19,089 INFO Connection check task end + +2025-09-24 01:14:22,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:22,090 INFO Connection check task start + +2025-09-24 01:14:22,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:22,090 INFO Out dated connection ,size=0 + +2025-09-24 01:14:22,091 INFO Connection check task end + +2025-09-24 01:14:25,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:25,092 INFO Connection check task start + +2025-09-24 01:14:25,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:25,092 INFO Out dated connection ,size=0 + +2025-09-24 01:14:25,092 INFO Connection check task end + +2025-09-24 01:14:28,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:28,092 INFO Connection check task start + +2025-09-24 01:14:28,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:28,092 INFO Out dated connection ,size=0 + +2025-09-24 01:14:28,092 INFO Connection check task end + +2025-09-24 01:14:31,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:31,093 INFO Connection check task start + +2025-09-24 01:14:31,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:31,093 INFO Out dated connection ,size=0 + +2025-09-24 01:14:31,093 INFO Connection check task end + +2025-09-24 01:14:34,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:34,094 INFO Connection check task start + +2025-09-24 01:14:34,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:34,095 INFO Out dated connection ,size=0 + +2025-09-24 01:14:34,095 INFO Connection check task end + +2025-09-24 01:14:37,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:37,095 INFO Connection check task start + +2025-09-24 01:14:37,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:37,096 INFO Out dated connection ,size=0 + +2025-09-24 01:14:37,096 INFO Connection check task end + +2025-09-24 01:14:40,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:40,096 INFO Connection check task start + +2025-09-24 01:14:40,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:40,096 INFO Out dated connection ,size=0 + +2025-09-24 01:14:40,096 INFO Connection check task end + +2025-09-24 01:14:43,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:43,097 INFO Connection check task start + +2025-09-24 01:14:43,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:43,097 INFO Out dated connection ,size=0 + +2025-09-24 01:14:43,098 INFO Connection check task end + +2025-09-24 01:14:46,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:46,098 INFO Connection check task start + +2025-09-24 01:14:46,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:46,098 INFO Out dated connection ,size=0 + +2025-09-24 01:14:46,098 INFO Connection check task end + +2025-09-24 01:14:49,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:49,099 INFO Connection check task start + +2025-09-24 01:14:49,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:49,100 INFO Out dated connection ,size=0 + +2025-09-24 01:14:49,100 INFO Connection check task end + +2025-09-24 01:14:52,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:52,100 INFO Connection check task start + +2025-09-24 01:14:52,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:52,100 INFO Out dated connection ,size=0 + +2025-09-24 01:14:52,100 INFO Connection check task end + +2025-09-24 01:14:55,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:55,101 INFO Connection check task start + +2025-09-24 01:14:55,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:55,101 INFO Out dated connection ,size=0 + +2025-09-24 01:14:55,101 INFO Connection check task end + +2025-09-24 01:14:58,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:14:58,102 INFO Connection check task start + +2025-09-24 01:14:58,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:14:58,102 INFO Out dated connection ,size=0 + +2025-09-24 01:14:58,102 INFO Connection check task end + +2025-09-24 01:15:01,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:01,102 INFO Connection check task start + +2025-09-24 01:15:01,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:01,102 INFO Out dated connection ,size=0 + +2025-09-24 01:15:01,102 INFO Connection check task end + +2025-09-24 01:15:04,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:04,102 INFO Connection check task start + +2025-09-24 01:15:04,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:04,103 INFO Out dated connection ,size=0 + +2025-09-24 01:15:04,103 INFO Connection check task end + +2025-09-24 01:15:07,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:07,104 INFO Connection check task start + +2025-09-24 01:15:07,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:07,104 INFO Out dated connection ,size=0 + +2025-09-24 01:15:07,104 INFO Connection check task end + +2025-09-24 01:15:10,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:10,104 INFO Connection check task start + +2025-09-24 01:15:10,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:10,104 INFO Out dated connection ,size=0 + +2025-09-24 01:15:10,104 INFO Connection check task end + +2025-09-24 01:15:13,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:13,104 INFO Connection check task start + +2025-09-24 01:15:13,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:13,105 INFO Out dated connection ,size=0 + +2025-09-24 01:15:13,105 INFO Connection check task end + +2025-09-24 01:15:16,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:16,106 INFO Connection check task start + +2025-09-24 01:15:16,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:16,106 INFO Out dated connection ,size=0 + +2025-09-24 01:15:16,106 INFO Connection check task end + +2025-09-24 01:15:19,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:19,107 INFO Connection check task start + +2025-09-24 01:15:19,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:19,107 INFO Out dated connection ,size=0 + +2025-09-24 01:15:19,107 INFO Connection check task end + +2025-09-24 01:15:22,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:22,108 INFO Connection check task start + +2025-09-24 01:15:22,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:22,108 INFO Out dated connection ,size=0 + +2025-09-24 01:15:22,108 INFO Connection check task end + +2025-09-24 01:15:25,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:25,108 INFO Connection check task start + +2025-09-24 01:15:25,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:25,108 INFO Out dated connection ,size=0 + +2025-09-24 01:15:25,109 INFO Connection check task end + +2025-09-24 01:15:28,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:28,109 INFO Connection check task start + +2025-09-24 01:15:28,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:28,109 INFO Out dated connection ,size=0 + +2025-09-24 01:15:28,109 INFO Connection check task end + +2025-09-24 01:15:31,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:31,110 INFO Connection check task start + +2025-09-24 01:15:31,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:31,110 INFO Out dated connection ,size=0 + +2025-09-24 01:15:31,110 INFO Connection check task end + +2025-09-24 01:15:34,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:34,111 INFO Connection check task start + +2025-09-24 01:15:34,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:34,111 INFO Out dated connection ,size=0 + +2025-09-24 01:15:34,111 INFO Connection check task end + +2025-09-24 01:15:37,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:37,111 INFO Connection check task start + +2025-09-24 01:15:37,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:37,111 INFO Out dated connection ,size=0 + +2025-09-24 01:15:37,111 INFO Connection check task end + +2025-09-24 01:15:40,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:40,112 INFO Connection check task start + +2025-09-24 01:15:40,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:40,113 INFO Out dated connection ,size=0 + +2025-09-24 01:15:40,113 INFO Connection check task end + +2025-09-24 01:15:43,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:43,113 INFO Connection check task start + +2025-09-24 01:15:43,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:43,113 INFO Out dated connection ,size=0 + +2025-09-24 01:15:43,113 INFO Connection check task end + +2025-09-24 01:15:46,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:46,115 INFO Connection check task start + +2025-09-24 01:15:46,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:46,115 INFO Out dated connection ,size=0 + +2025-09-24 01:15:46,115 INFO Connection check task end + +2025-09-24 01:15:49,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:49,116 INFO Connection check task start + +2025-09-24 01:15:49,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:49,116 INFO Out dated connection ,size=0 + +2025-09-24 01:15:49,117 INFO Connection check task end + +2025-09-24 01:15:52,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:52,117 INFO Connection check task start + +2025-09-24 01:15:52,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:52,117 INFO Out dated connection ,size=0 + +2025-09-24 01:15:52,117 INFO Connection check task end + +2025-09-24 01:15:55,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:55,117 INFO Connection check task start + +2025-09-24 01:15:55,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:55,117 INFO Out dated connection ,size=0 + +2025-09-24 01:15:55,117 INFO Connection check task end + +2025-09-24 01:15:58,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:15:58,118 INFO Connection check task start + +2025-09-24 01:15:58,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:15:58,118 INFO Out dated connection ,size=0 + +2025-09-24 01:15:58,118 INFO Connection check task end + +2025-09-24 01:16:01,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:01,119 INFO Connection check task start + +2025-09-24 01:16:01,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:01,119 INFO Out dated connection ,size=0 + +2025-09-24 01:16:01,119 INFO Connection check task end + +2025-09-24 01:16:04,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:04,120 INFO Connection check task start + +2025-09-24 01:16:04,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:04,121 INFO Out dated connection ,size=0 + +2025-09-24 01:16:04,121 INFO Connection check task end + +2025-09-24 01:16:07,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:07,121 INFO Connection check task start + +2025-09-24 01:16:07,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:07,121 INFO Out dated connection ,size=0 + +2025-09-24 01:16:07,121 INFO Connection check task end + +2025-09-24 01:16:10,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:10,122 INFO Connection check task start + +2025-09-24 01:16:10,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:10,123 INFO Out dated connection ,size=0 + +2025-09-24 01:16:10,123 INFO Connection check task end + +2025-09-24 01:16:13,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:13,123 INFO Connection check task start + +2025-09-24 01:16:13,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:13,124 INFO Out dated connection ,size=0 + +2025-09-24 01:16:13,124 INFO Connection check task end + +2025-09-24 01:16:16,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:16,124 INFO Connection check task start + +2025-09-24 01:16:16,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:16,124 INFO Out dated connection ,size=0 + +2025-09-24 01:16:16,124 INFO Connection check task end + +2025-09-24 01:16:19,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:19,125 INFO Connection check task start + +2025-09-24 01:16:19,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:19,125 INFO Out dated connection ,size=0 + +2025-09-24 01:16:19,125 INFO Connection check task end + +2025-09-24 01:16:22,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:22,126 INFO Connection check task start + +2025-09-24 01:16:22,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:22,126 INFO Out dated connection ,size=0 + +2025-09-24 01:16:22,126 INFO Connection check task end + +2025-09-24 01:16:25,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:25,127 INFO Connection check task start + +2025-09-24 01:16:25,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:25,127 INFO Out dated connection ,size=0 + +2025-09-24 01:16:25,127 INFO Connection check task end + +2025-09-24 01:16:28,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:28,127 INFO Connection check task start + +2025-09-24 01:16:28,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:28,128 INFO Out dated connection ,size=0 + +2025-09-24 01:16:28,128 INFO Connection check task end + +2025-09-24 01:16:31,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:31,128 INFO Connection check task start + +2025-09-24 01:16:31,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:31,128 INFO Out dated connection ,size=0 + +2025-09-24 01:16:31,128 INFO Connection check task end + +2025-09-24 01:16:34,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:34,128 INFO Connection check task start + +2025-09-24 01:16:34,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:34,129 INFO Out dated connection ,size=0 + +2025-09-24 01:16:34,129 INFO Connection check task end + +2025-09-24 01:16:37,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:37,129 INFO Connection check task start + +2025-09-24 01:16:37,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:37,129 INFO Out dated connection ,size=0 + +2025-09-24 01:16:37,129 INFO Connection check task end + +2025-09-24 01:16:40,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:40,130 INFO Connection check task start + +2025-09-24 01:16:40,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:40,130 INFO Out dated connection ,size=0 + +2025-09-24 01:16:40,130 INFO Connection check task end + +2025-09-24 01:16:43,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:43,131 INFO Connection check task start + +2025-09-24 01:16:43,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:43,131 INFO Out dated connection ,size=0 + +2025-09-24 01:16:43,131 INFO Connection check task end + +2025-09-24 01:16:46,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:46,132 INFO Connection check task start + +2025-09-24 01:16:46,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:46,132 INFO Out dated connection ,size=0 + +2025-09-24 01:16:46,132 INFO Connection check task end + +2025-09-24 01:16:49,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:49,133 INFO Connection check task start + +2025-09-24 01:16:49,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:49,133 INFO Out dated connection ,size=0 + +2025-09-24 01:16:49,133 INFO Connection check task end + +2025-09-24 01:16:52,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:52,133 INFO Connection check task start + +2025-09-24 01:16:52,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:52,134 INFO Out dated connection ,size=0 + +2025-09-24 01:16:52,134 INFO Connection check task end + +2025-09-24 01:16:55,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:55,134 INFO Connection check task start + +2025-09-24 01:16:55,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:55,134 INFO Out dated connection ,size=0 + +2025-09-24 01:16:55,134 INFO Connection check task end + +2025-09-24 01:16:58,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:16:58,135 INFO Connection check task start + +2025-09-24 01:16:58,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:16:58,135 INFO Out dated connection ,size=0 + +2025-09-24 01:16:58,136 INFO Connection check task end + +2025-09-24 01:17:01,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:01,136 INFO Connection check task start + +2025-09-24 01:17:01,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:01,136 INFO Out dated connection ,size=0 + +2025-09-24 01:17:01,136 INFO Connection check task end + +2025-09-24 01:17:04,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:04,136 INFO Connection check task start + +2025-09-24 01:17:04,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:04,136 INFO Out dated connection ,size=0 + +2025-09-24 01:17:04,136 INFO Connection check task end + +2025-09-24 01:17:07,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:07,137 INFO Connection check task start + +2025-09-24 01:17:07,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:07,137 INFO Out dated connection ,size=0 + +2025-09-24 01:17:07,137 INFO Connection check task end + +2025-09-24 01:17:10,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:10,137 INFO Connection check task start + +2025-09-24 01:17:10,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:10,138 INFO Out dated connection ,size=0 + +2025-09-24 01:17:10,138 INFO Connection check task end + +2025-09-24 01:17:13,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:13,138 INFO Connection check task start + +2025-09-24 01:17:13,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:13,138 INFO Out dated connection ,size=0 + +2025-09-24 01:17:13,138 INFO Connection check task end + +2025-09-24 01:17:16,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:16,139 INFO Connection check task start + +2025-09-24 01:17:16,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:16,139 INFO Out dated connection ,size=0 + +2025-09-24 01:17:16,139 INFO Connection check task end + +2025-09-24 01:17:19,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:19,140 INFO Connection check task start + +2025-09-24 01:17:19,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:19,140 INFO Out dated connection ,size=0 + +2025-09-24 01:17:19,140 INFO Connection check task end + +2025-09-24 01:17:22,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:22,140 INFO Connection check task start + +2025-09-24 01:17:22,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:22,140 INFO Out dated connection ,size=0 + +2025-09-24 01:17:22,140 INFO Connection check task end + +2025-09-24 01:17:25,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:25,141 INFO Connection check task start + +2025-09-24 01:17:25,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:25,141 INFO Out dated connection ,size=0 + +2025-09-24 01:17:25,141 INFO Connection check task end + +2025-09-24 01:17:28,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:28,141 INFO Connection check task start + +2025-09-24 01:17:28,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:28,141 INFO Out dated connection ,size=0 + +2025-09-24 01:17:28,141 INFO Connection check task end + +2025-09-24 01:17:31,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:31,142 INFO Connection check task start + +2025-09-24 01:17:31,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:31,142 INFO Out dated connection ,size=0 + +2025-09-24 01:17:31,142 INFO Connection check task end + +2025-09-24 01:17:34,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:34,143 INFO Connection check task start + +2025-09-24 01:17:34,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:34,143 INFO Out dated connection ,size=0 + +2025-09-24 01:17:34,143 INFO Connection check task end + +2025-09-24 01:17:37,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:37,144 INFO Connection check task start + +2025-09-24 01:17:37,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:37,144 INFO Out dated connection ,size=0 + +2025-09-24 01:17:37,144 INFO Connection check task end + +2025-09-24 01:17:40,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:40,144 INFO Connection check task start + +2025-09-24 01:17:40,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:40,145 INFO Out dated connection ,size=0 + +2025-09-24 01:17:40,145 INFO Connection check task end + +2025-09-24 01:17:43,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:43,146 INFO Connection check task start + +2025-09-24 01:17:43,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:43,146 INFO Out dated connection ,size=0 + +2025-09-24 01:17:43,146 INFO Connection check task end + +2025-09-24 01:17:46,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:46,146 INFO Connection check task start + +2025-09-24 01:17:46,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:46,147 INFO Out dated connection ,size=0 + +2025-09-24 01:17:46,147 INFO Connection check task end + +2025-09-24 01:17:49,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:49,148 INFO Connection check task start + +2025-09-24 01:17:49,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:49,148 INFO Out dated connection ,size=0 + +2025-09-24 01:17:49,148 INFO Connection check task end + +2025-09-24 01:17:52,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:52,149 INFO Connection check task start + +2025-09-24 01:17:52,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:52,149 INFO Out dated connection ,size=0 + +2025-09-24 01:17:52,149 INFO Connection check task end + +2025-09-24 01:17:55,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:55,150 INFO Connection check task start + +2025-09-24 01:17:55,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:55,150 INFO Out dated connection ,size=0 + +2025-09-24 01:17:55,150 INFO Connection check task end + +2025-09-24 01:17:58,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:17:58,151 INFO Connection check task start + +2025-09-24 01:17:58,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:17:58,151 INFO Out dated connection ,size=0 + +2025-09-24 01:17:58,151 INFO Connection check task end + +2025-09-24 01:18:01,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:01,152 INFO Connection check task start + +2025-09-24 01:18:01,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:01,152 INFO Out dated connection ,size=0 + +2025-09-24 01:18:01,152 INFO Connection check task end + +2025-09-24 01:18:04,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:04,153 INFO Connection check task start + +2025-09-24 01:18:04,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:04,153 INFO Out dated connection ,size=0 + +2025-09-24 01:18:04,153 INFO Connection check task end + +2025-09-24 01:18:07,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:07,153 INFO Connection check task start + +2025-09-24 01:18:07,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:07,153 INFO Out dated connection ,size=0 + +2025-09-24 01:18:07,154 INFO Connection check task end + +2025-09-24 01:18:10,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:10,154 INFO Connection check task start + +2025-09-24 01:18:10,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:10,154 INFO Out dated connection ,size=0 + +2025-09-24 01:18:10,154 INFO Connection check task end + +2025-09-24 01:18:13,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:13,154 INFO Connection check task start + +2025-09-24 01:18:13,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:13,155 INFO Out dated connection ,size=0 + +2025-09-24 01:18:13,155 INFO Connection check task end + +2025-09-24 01:18:16,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:16,156 INFO Connection check task start + +2025-09-24 01:18:16,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:16,156 INFO Out dated connection ,size=0 + +2025-09-24 01:18:16,156 INFO Connection check task end + +2025-09-24 01:18:19,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:19,156 INFO Connection check task start + +2025-09-24 01:18:19,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:19,157 INFO Out dated connection ,size=0 + +2025-09-24 01:18:19,157 INFO Connection check task end + +2025-09-24 01:18:22,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:22,158 INFO Connection check task start + +2025-09-24 01:18:22,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:22,158 INFO Out dated connection ,size=0 + +2025-09-24 01:18:22,158 INFO Connection check task end + +2025-09-24 01:18:25,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:25,158 INFO Connection check task start + +2025-09-24 01:18:25,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:25,159 INFO Out dated connection ,size=0 + +2025-09-24 01:18:25,159 INFO Connection check task end + +2025-09-24 01:18:28,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:28,159 INFO Connection check task start + +2025-09-24 01:18:28,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:28,159 INFO Out dated connection ,size=0 + +2025-09-24 01:18:28,159 INFO Connection check task end + +2025-09-24 01:18:31,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:31,160 INFO Connection check task start + +2025-09-24 01:18:31,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:31,160 INFO Out dated connection ,size=0 + +2025-09-24 01:18:31,161 INFO Connection check task end + +2025-09-24 01:18:34,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:34,162 INFO Connection check task start + +2025-09-24 01:18:34,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:34,162 INFO Out dated connection ,size=0 + +2025-09-24 01:18:34,162 INFO Connection check task end + +2025-09-24 01:18:37,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:37,162 INFO Connection check task start + +2025-09-24 01:18:37,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:37,162 INFO Out dated connection ,size=0 + +2025-09-24 01:18:37,162 INFO Connection check task end + +2025-09-24 01:18:40,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:40,162 INFO Connection check task start + +2025-09-24 01:18:40,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:40,162 INFO Out dated connection ,size=0 + +2025-09-24 01:18:40,163 INFO Connection check task end + +2025-09-24 01:18:43,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:43,163 INFO Connection check task start + +2025-09-24 01:18:43,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:43,164 INFO Out dated connection ,size=0 + +2025-09-24 01:18:43,164 INFO Connection check task end + +2025-09-24 01:18:46,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:46,164 INFO Connection check task start + +2025-09-24 01:18:46,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:46,164 INFO Out dated connection ,size=0 + +2025-09-24 01:18:46,164 INFO Connection check task end + +2025-09-24 01:18:49,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:49,165 INFO Connection check task start + +2025-09-24 01:18:49,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:49,166 INFO Out dated connection ,size=0 + +2025-09-24 01:18:49,166 INFO Connection check task end + +2025-09-24 01:18:52,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:52,166 INFO Connection check task start + +2025-09-24 01:18:52,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:52,166 INFO Out dated connection ,size=0 + +2025-09-24 01:18:52,167 INFO Connection check task end + +2025-09-24 01:18:55,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:55,167 INFO Connection check task start + +2025-09-24 01:18:55,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:55,167 INFO Out dated connection ,size=0 + +2025-09-24 01:18:55,167 INFO Connection check task end + +2025-09-24 01:18:58,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:18:58,168 INFO Connection check task start + +2025-09-24 01:18:58,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:18:58,168 INFO Out dated connection ,size=0 + +2025-09-24 01:18:58,168 INFO Connection check task end + +2025-09-24 01:19:01,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:01,168 INFO Connection check task start + +2025-09-24 01:19:01,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:01,169 INFO Out dated connection ,size=0 + +2025-09-24 01:19:01,169 INFO Connection check task end + +2025-09-24 01:19:04,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:04,170 INFO Connection check task start + +2025-09-24 01:19:04,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:04,170 INFO Out dated connection ,size=0 + +2025-09-24 01:19:04,170 INFO Connection check task end + +2025-09-24 01:19:07,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:07,171 INFO Connection check task start + +2025-09-24 01:19:07,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:07,171 INFO Out dated connection ,size=0 + +2025-09-24 01:19:07,171 INFO Connection check task end + +2025-09-24 01:19:10,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:10,172 INFO Connection check task start + +2025-09-24 01:19:10,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:10,172 INFO Out dated connection ,size=0 + +2025-09-24 01:19:10,172 INFO Connection check task end + +2025-09-24 01:19:13,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:13,173 INFO Connection check task start + +2025-09-24 01:19:13,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:13,173 INFO Out dated connection ,size=0 + +2025-09-24 01:19:13,173 INFO Connection check task end + +2025-09-24 01:19:16,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:16,173 INFO Connection check task start + +2025-09-24 01:19:16,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:16,173 INFO Out dated connection ,size=0 + +2025-09-24 01:19:16,173 INFO Connection check task end + +2025-09-24 01:19:19,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:19,173 INFO Connection check task start + +2025-09-24 01:19:19,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:19,174 INFO Out dated connection ,size=0 + +2025-09-24 01:19:19,174 INFO Connection check task end + +2025-09-24 01:19:22,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:22,174 INFO Connection check task start + +2025-09-24 01:19:22,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:22,174 INFO Out dated connection ,size=0 + +2025-09-24 01:19:22,174 INFO Connection check task end + +2025-09-24 01:19:25,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:25,175 INFO Connection check task start + +2025-09-24 01:19:25,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:25,176 INFO Out dated connection ,size=0 + +2025-09-24 01:19:25,176 INFO Connection check task end + +2025-09-24 01:19:28,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:28,176 INFO Connection check task start + +2025-09-24 01:19:28,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:28,176 INFO Out dated connection ,size=0 + +2025-09-24 01:19:28,176 INFO Connection check task end + +2025-09-24 01:19:31,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:31,177 INFO Connection check task start + +2025-09-24 01:19:31,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:31,178 INFO Out dated connection ,size=0 + +2025-09-24 01:19:31,178 INFO Connection check task end + +2025-09-24 01:19:34,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:34,178 INFO Connection check task start + +2025-09-24 01:19:34,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:34,178 INFO Out dated connection ,size=0 + +2025-09-24 01:19:34,178 INFO Connection check task end + +2025-09-24 01:19:37,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:37,178 INFO Connection check task start + +2025-09-24 01:19:37,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:37,178 INFO Out dated connection ,size=0 + +2025-09-24 01:19:37,179 INFO Connection check task end + +2025-09-24 01:19:40,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:40,179 INFO Connection check task start + +2025-09-24 01:19:40,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:40,179 INFO Out dated connection ,size=0 + +2025-09-24 01:19:40,179 INFO Connection check task end + +2025-09-24 01:19:43,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:43,180 INFO Connection check task start + +2025-09-24 01:19:43,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:43,180 INFO Out dated connection ,size=0 + +2025-09-24 01:19:43,181 INFO Connection check task end + +2025-09-24 01:19:46,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:46,182 INFO Connection check task start + +2025-09-24 01:19:46,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:46,182 INFO Out dated connection ,size=0 + +2025-09-24 01:19:46,182 INFO Connection check task end + +2025-09-24 01:19:49,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:49,183 INFO Connection check task start + +2025-09-24 01:19:49,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:49,184 INFO Out dated connection ,size=0 + +2025-09-24 01:19:49,184 INFO Connection check task end + +2025-09-24 01:19:52,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:52,185 INFO Connection check task start + +2025-09-24 01:19:52,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:52,185 INFO Out dated connection ,size=0 + +2025-09-24 01:19:52,185 INFO Connection check task end + +2025-09-24 01:19:55,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:55,186 INFO Connection check task start + +2025-09-24 01:19:55,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:55,187 INFO Out dated connection ,size=0 + +2025-09-24 01:19:55,187 INFO Connection check task end + +2025-09-24 01:19:58,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:19:58,187 INFO Connection check task start + +2025-09-24 01:19:58,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:19:58,187 INFO Out dated connection ,size=0 + +2025-09-24 01:19:58,187 INFO Connection check task end + +2025-09-24 01:20:01,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:01,188 INFO Connection check task start + +2025-09-24 01:20:01,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:01,188 INFO Out dated connection ,size=0 + +2025-09-24 01:20:01,188 INFO Connection check task end + +2025-09-24 01:20:04,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:04,189 INFO Connection check task start + +2025-09-24 01:20:04,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:04,189 INFO Out dated connection ,size=0 + +2025-09-24 01:20:04,189 INFO Connection check task end + +2025-09-24 01:20:07,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:07,189 INFO Connection check task start + +2025-09-24 01:20:07,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:07,189 INFO Out dated connection ,size=0 + +2025-09-24 01:20:07,189 INFO Connection check task end + +2025-09-24 01:20:10,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:10,190 INFO Connection check task start + +2025-09-24 01:20:10,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:10,190 INFO Out dated connection ,size=0 + +2025-09-24 01:20:10,190 INFO Connection check task end + +2025-09-24 01:20:13,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:13,191 INFO Connection check task start + +2025-09-24 01:20:13,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:13,191 INFO Out dated connection ,size=0 + +2025-09-24 01:20:13,191 INFO Connection check task end + +2025-09-24 01:20:16,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:16,192 INFO Connection check task start + +2025-09-24 01:20:16,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:16,192 INFO Out dated connection ,size=0 + +2025-09-24 01:20:16,192 INFO Connection check task end + +2025-09-24 01:20:19,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:19,193 INFO Connection check task start + +2025-09-24 01:20:19,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:19,193 INFO Out dated connection ,size=0 + +2025-09-24 01:20:19,193 INFO Connection check task end + +2025-09-24 01:20:22,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:22,194 INFO Connection check task start + +2025-09-24 01:20:22,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:22,194 INFO Out dated connection ,size=0 + +2025-09-24 01:20:22,194 INFO Connection check task end + +2025-09-24 01:20:25,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:25,196 INFO Connection check task start + +2025-09-24 01:20:25,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:25,196 INFO Out dated connection ,size=0 + +2025-09-24 01:20:25,196 INFO Connection check task end + +2025-09-24 01:20:28,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:28,197 INFO Connection check task start + +2025-09-24 01:20:28,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:28,197 INFO Out dated connection ,size=0 + +2025-09-24 01:20:28,198 INFO Connection check task end + +2025-09-24 01:20:31,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:31,199 INFO Connection check task start + +2025-09-24 01:20:31,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:31,199 INFO Out dated connection ,size=0 + +2025-09-24 01:20:31,199 INFO Connection check task end + +2025-09-24 01:20:34,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:34,200 INFO Connection check task start + +2025-09-24 01:20:34,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:34,201 INFO Out dated connection ,size=0 + +2025-09-24 01:20:34,201 INFO Connection check task end + +2025-09-24 01:20:37,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:37,202 INFO Connection check task start + +2025-09-24 01:20:37,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:37,202 INFO Out dated connection ,size=0 + +2025-09-24 01:20:37,202 INFO Connection check task end + +2025-09-24 01:20:40,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:40,203 INFO Connection check task start + +2025-09-24 01:20:40,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:40,203 INFO Out dated connection ,size=0 + +2025-09-24 01:20:40,203 INFO Connection check task end + +2025-09-24 01:20:43,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:43,204 INFO Connection check task start + +2025-09-24 01:20:43,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:43,204 INFO Out dated connection ,size=0 + +2025-09-24 01:20:43,204 INFO Connection check task end + +2025-09-24 01:20:46,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:46,204 INFO Connection check task start + +2025-09-24 01:20:46,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:46,205 INFO Out dated connection ,size=0 + +2025-09-24 01:20:46,205 INFO Connection check task end + +2025-09-24 01:20:49,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:49,205 INFO Connection check task start + +2025-09-24 01:20:49,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:49,205 INFO Out dated connection ,size=0 + +2025-09-24 01:20:49,205 INFO Connection check task end + +2025-09-24 01:20:52,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:52,207 INFO Connection check task start + +2025-09-24 01:20:52,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:52,207 INFO Out dated connection ,size=0 + +2025-09-24 01:20:52,207 INFO Connection check task end + +2025-09-24 01:20:55,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:55,208 INFO Connection check task start + +2025-09-24 01:20:55,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:55,208 INFO Out dated connection ,size=0 + +2025-09-24 01:20:55,208 INFO Connection check task end + +2025-09-24 01:20:58,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:20:58,209 INFO Connection check task start + +2025-09-24 01:20:58,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:20:58,209 INFO Out dated connection ,size=0 + +2025-09-24 01:20:58,209 INFO Connection check task end + +2025-09-24 01:21:01,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:01,209 INFO Connection check task start + +2025-09-24 01:21:01,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:01,209 INFO Out dated connection ,size=0 + +2025-09-24 01:21:01,209 INFO Connection check task end + +2025-09-24 01:21:04,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:04,211 INFO Connection check task start + +2025-09-24 01:21:04,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:04,211 INFO Out dated connection ,size=0 + +2025-09-24 01:21:04,211 INFO Connection check task end + +2025-09-24 01:21:07,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:07,212 INFO Connection check task start + +2025-09-24 01:21:07,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:07,213 INFO Out dated connection ,size=0 + +2025-09-24 01:21:07,213 INFO Connection check task end + +2025-09-24 01:21:10,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:10,214 INFO Connection check task start + +2025-09-24 01:21:10,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:10,214 INFO Out dated connection ,size=0 + +2025-09-24 01:21:10,214 INFO Connection check task end + +2025-09-24 01:21:13,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:13,214 INFO Connection check task start + +2025-09-24 01:21:13,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:13,215 INFO Out dated connection ,size=0 + +2025-09-24 01:21:13,215 INFO Connection check task end + +2025-09-24 01:21:16,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:16,217 INFO Connection check task start + +2025-09-24 01:21:16,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:16,218 INFO Out dated connection ,size=0 + +2025-09-24 01:21:16,218 INFO Connection check task end + +2025-09-24 01:21:19,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:19,218 INFO Connection check task start + +2025-09-24 01:21:19,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:19,218 INFO Out dated connection ,size=0 + +2025-09-24 01:21:19,218 INFO Connection check task end + +2025-09-24 01:21:22,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:22,219 INFO Connection check task start + +2025-09-24 01:21:22,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:22,219 INFO Out dated connection ,size=0 + +2025-09-24 01:21:22,219 INFO Connection check task end + +2025-09-24 01:21:25,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:25,220 INFO Connection check task start + +2025-09-24 01:21:25,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:25,221 INFO Out dated connection ,size=0 + +2025-09-24 01:21:25,221 INFO Connection check task end + +2025-09-24 01:21:28,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:28,222 INFO Connection check task start + +2025-09-24 01:21:28,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:28,223 INFO Out dated connection ,size=0 + +2025-09-24 01:21:28,223 INFO Connection check task end + +2025-09-24 01:21:31,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:31,224 INFO Connection check task start + +2025-09-24 01:21:31,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:31,224 INFO Out dated connection ,size=0 + +2025-09-24 01:21:31,225 INFO Connection check task end + +2025-09-24 01:21:34,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:34,227 INFO Connection check task start + +2025-09-24 01:21:34,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:34,227 INFO Out dated connection ,size=0 + +2025-09-24 01:21:34,227 INFO Connection check task end + +2025-09-24 01:21:37,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:37,228 INFO Connection check task start + +2025-09-24 01:21:37,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:37,229 INFO Out dated connection ,size=0 + +2025-09-24 01:21:37,229 INFO Connection check task end + +2025-09-24 01:21:40,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:40,229 INFO Connection check task start + +2025-09-24 01:21:40,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:40,230 INFO Out dated connection ,size=0 + +2025-09-24 01:21:40,230 INFO Connection check task end + +2025-09-24 01:21:43,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:43,231 INFO Connection check task start + +2025-09-24 01:21:43,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:43,231 INFO Out dated connection ,size=0 + +2025-09-24 01:21:43,231 INFO Connection check task end + +2025-09-24 01:21:46,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:46,233 INFO Connection check task start + +2025-09-24 01:21:46,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:46,233 INFO Out dated connection ,size=0 + +2025-09-24 01:21:46,233 INFO Connection check task end + +2025-09-24 01:21:49,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:49,235 INFO Connection check task start + +2025-09-24 01:21:49,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:49,235 INFO Out dated connection ,size=0 + +2025-09-24 01:21:49,236 INFO Connection check task end + +2025-09-24 01:21:52,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:52,238 INFO Connection check task start + +2025-09-24 01:21:52,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:52,238 INFO Out dated connection ,size=0 + +2025-09-24 01:21:52,238 INFO Connection check task end + +2025-09-24 01:21:55,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:55,240 INFO Connection check task start + +2025-09-24 01:21:55,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:55,241 INFO Out dated connection ,size=0 + +2025-09-24 01:21:55,241 INFO Connection check task end + +2025-09-24 01:21:58,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:21:58,243 INFO Connection check task start + +2025-09-24 01:21:58,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:21:58,243 INFO Out dated connection ,size=0 + +2025-09-24 01:21:58,243 INFO Connection check task end + +2025-09-24 01:22:01,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:01,245 INFO Connection check task start + +2025-09-24 01:22:01,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:01,245 INFO Out dated connection ,size=0 + +2025-09-24 01:22:01,245 INFO Connection check task end + +2025-09-24 01:22:04,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:04,248 INFO Connection check task start + +2025-09-24 01:22:04,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:04,248 INFO Out dated connection ,size=0 + +2025-09-24 01:22:04,248 INFO Connection check task end + +2025-09-24 01:22:07,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:07,249 INFO Connection check task start + +2025-09-24 01:22:07,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:07,249 INFO Out dated connection ,size=0 + +2025-09-24 01:22:07,250 INFO Connection check task end + +2025-09-24 01:22:10,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:10,251 INFO Connection check task start + +2025-09-24 01:22:10,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:10,251 INFO Out dated connection ,size=0 + +2025-09-24 01:22:10,251 INFO Connection check task end + +2025-09-24 01:22:13,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:13,253 INFO Connection check task start + +2025-09-24 01:22:13,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:13,253 INFO Out dated connection ,size=0 + +2025-09-24 01:22:13,253 INFO Connection check task end + +2025-09-24 01:22:16,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:16,255 INFO Connection check task start + +2025-09-24 01:22:16,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:16,255 INFO Out dated connection ,size=0 + +2025-09-24 01:22:16,255 INFO Connection check task end + +2025-09-24 01:22:19,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:19,255 INFO Connection check task start + +2025-09-24 01:22:19,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:19,256 INFO Out dated connection ,size=0 + +2025-09-24 01:22:19,256 INFO Connection check task end + +2025-09-24 01:22:22,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:22,256 INFO Connection check task start + +2025-09-24 01:22:22,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:22,256 INFO Out dated connection ,size=0 + +2025-09-24 01:22:22,256 INFO Connection check task end + +2025-09-24 01:22:25,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:25,256 INFO Connection check task start + +2025-09-24 01:22:25,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:25,256 INFO Out dated connection ,size=0 + +2025-09-24 01:22:25,256 INFO Connection check task end + +2025-09-24 01:22:28,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:28,257 INFO Connection check task start + +2025-09-24 01:22:28,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:28,257 INFO Out dated connection ,size=0 + +2025-09-24 01:22:28,257 INFO Connection check task end + +2025-09-24 01:22:31,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:31,258 INFO Connection check task start + +2025-09-24 01:22:31,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:31,258 INFO Out dated connection ,size=0 + +2025-09-24 01:22:31,258 INFO Connection check task end + +2025-09-24 01:22:34,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:34,258 INFO Connection check task start + +2025-09-24 01:22:34,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:34,259 INFO Out dated connection ,size=0 + +2025-09-24 01:22:34,259 INFO Connection check task end + +2025-09-24 01:22:37,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:37,259 INFO Connection check task start + +2025-09-24 01:22:37,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:37,259 INFO Out dated connection ,size=0 + +2025-09-24 01:22:37,259 INFO Connection check task end + +2025-09-24 01:22:40,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:40,262 INFO Connection check task start + +2025-09-24 01:22:40,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:40,262 INFO Out dated connection ,size=0 + +2025-09-24 01:22:40,262 INFO Connection check task end + +2025-09-24 01:22:43,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:43,262 INFO Connection check task start + +2025-09-24 01:22:43,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:43,262 INFO Out dated connection ,size=0 + +2025-09-24 01:22:43,262 INFO Connection check task end + +2025-09-24 01:22:46,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:46,263 INFO Connection check task start + +2025-09-24 01:22:46,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:46,263 INFO Out dated connection ,size=0 + +2025-09-24 01:22:46,263 INFO Connection check task end + +2025-09-24 01:22:49,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:49,264 INFO Connection check task start + +2025-09-24 01:22:49,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:49,264 INFO Out dated connection ,size=0 + +2025-09-24 01:22:49,264 INFO Connection check task end + +2025-09-24 01:22:52,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:52,265 INFO Connection check task start + +2025-09-24 01:22:52,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:52,265 INFO Out dated connection ,size=0 + +2025-09-24 01:22:52,265 INFO Connection check task end + +2025-09-24 01:22:55,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:55,266 INFO Connection check task start + +2025-09-24 01:22:55,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:55,266 INFO Out dated connection ,size=0 + +2025-09-24 01:22:55,266 INFO Connection check task end + +2025-09-24 01:22:58,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:22:58,266 INFO Connection check task start + +2025-09-24 01:22:58,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:22:58,266 INFO Out dated connection ,size=0 + +2025-09-24 01:22:58,266 INFO Connection check task end + +2025-09-24 01:23:01,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:01,267 INFO Connection check task start + +2025-09-24 01:23:01,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:01,267 INFO Out dated connection ,size=0 + +2025-09-24 01:23:01,267 INFO Connection check task end + +2025-09-24 01:23:04,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:04,268 INFO Connection check task start + +2025-09-24 01:23:04,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:04,268 INFO Out dated connection ,size=0 + +2025-09-24 01:23:04,268 INFO Connection check task end + +2025-09-24 01:23:07,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:07,269 INFO Connection check task start + +2025-09-24 01:23:07,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:07,269 INFO Out dated connection ,size=0 + +2025-09-24 01:23:07,269 INFO Connection check task end + +2025-09-24 01:23:10,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:10,269 INFO Connection check task start + +2025-09-24 01:23:10,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:10,270 INFO Out dated connection ,size=0 + +2025-09-24 01:23:10,270 INFO Connection check task end + +2025-09-24 01:23:13,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:13,270 INFO Connection check task start + +2025-09-24 01:23:13,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:13,270 INFO Out dated connection ,size=0 + +2025-09-24 01:23:13,270 INFO Connection check task end + +2025-09-24 01:23:16,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:16,270 INFO Connection check task start + +2025-09-24 01:23:16,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:16,270 INFO Out dated connection ,size=0 + +2025-09-24 01:23:16,271 INFO Connection check task end + +2025-09-24 01:23:19,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:19,271 INFO Connection check task start + +2025-09-24 01:23:19,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:19,271 INFO Out dated connection ,size=0 + +2025-09-24 01:23:19,271 INFO Connection check task end + +2025-09-24 01:23:22,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:22,272 INFO Connection check task start + +2025-09-24 01:23:22,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:22,272 INFO Out dated connection ,size=0 + +2025-09-24 01:23:22,272 INFO Connection check task end + +2025-09-24 01:23:25,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:25,273 INFO Connection check task start + +2025-09-24 01:23:25,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:25,273 INFO Out dated connection ,size=0 + +2025-09-24 01:23:25,273 INFO Connection check task end + +2025-09-24 01:23:28,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:28,274 INFO Connection check task start + +2025-09-24 01:23:28,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:28,274 INFO Out dated connection ,size=0 + +2025-09-24 01:23:28,274 INFO Connection check task end + +2025-09-24 01:23:31,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:31,274 INFO Connection check task start + +2025-09-24 01:23:31,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:31,274 INFO Out dated connection ,size=0 + +2025-09-24 01:23:31,274 INFO Connection check task end + +2025-09-24 01:23:34,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:34,275 INFO Connection check task start + +2025-09-24 01:23:34,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:34,275 INFO Out dated connection ,size=0 + +2025-09-24 01:23:34,275 INFO Connection check task end + +2025-09-24 01:23:37,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:37,276 INFO Connection check task start + +2025-09-24 01:23:37,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:37,276 INFO Out dated connection ,size=0 + +2025-09-24 01:23:37,276 INFO Connection check task end + +2025-09-24 01:23:40,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:40,276 INFO Connection check task start + +2025-09-24 01:23:40,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:40,277 INFO Out dated connection ,size=0 + +2025-09-24 01:23:40,277 INFO Connection check task end + +2025-09-24 01:23:43,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:43,279 INFO Connection check task start + +2025-09-24 01:23:43,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:43,279 INFO Out dated connection ,size=0 + +2025-09-24 01:23:43,279 INFO Connection check task end + +2025-09-24 01:23:46,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:46,280 INFO Connection check task start + +2025-09-24 01:23:46,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:46,280 INFO Out dated connection ,size=0 + +2025-09-24 01:23:46,280 INFO Connection check task end + +2025-09-24 01:23:49,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:49,282 INFO Connection check task start + +2025-09-24 01:23:49,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:49,282 INFO Out dated connection ,size=0 + +2025-09-24 01:23:49,282 INFO Connection check task end + +2025-09-24 01:23:52,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:52,283 INFO Connection check task start + +2025-09-24 01:23:52,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:52,283 INFO Out dated connection ,size=0 + +2025-09-24 01:23:52,283 INFO Connection check task end + +2025-09-24 01:23:55,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:55,286 INFO Connection check task start + +2025-09-24 01:23:55,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:55,286 INFO Out dated connection ,size=0 + +2025-09-24 01:23:55,286 INFO Connection check task end + +2025-09-24 01:23:58,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:23:58,286 INFO Connection check task start + +2025-09-24 01:23:58,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:23:58,286 INFO Out dated connection ,size=0 + +2025-09-24 01:23:58,286 INFO Connection check task end + +2025-09-24 01:24:01,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:01,286 INFO Connection check task start + +2025-09-24 01:24:01,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:01,286 INFO Out dated connection ,size=0 + +2025-09-24 01:24:01,286 INFO Connection check task end + +2025-09-24 01:24:04,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:04,287 INFO Connection check task start + +2025-09-24 01:24:04,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:04,287 INFO Out dated connection ,size=0 + +2025-09-24 01:24:04,287 INFO Connection check task end + +2025-09-24 01:24:07,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:07,289 INFO Connection check task start + +2025-09-24 01:24:07,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:07,289 INFO Out dated connection ,size=0 + +2025-09-24 01:24:07,289 INFO Connection check task end + +2025-09-24 01:24:10,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:10,289 INFO Connection check task start + +2025-09-24 01:24:10,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:10,290 INFO Out dated connection ,size=0 + +2025-09-24 01:24:10,290 INFO Connection check task end + +2025-09-24 01:24:13,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:13,290 INFO Connection check task start + +2025-09-24 01:24:13,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:13,291 INFO Out dated connection ,size=0 + +2025-09-24 01:24:13,291 INFO Connection check task end + +2025-09-24 01:24:16,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:16,291 INFO Connection check task start + +2025-09-24 01:24:16,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:16,291 INFO Out dated connection ,size=0 + +2025-09-24 01:24:16,291 INFO Connection check task end + +2025-09-24 01:24:19,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:19,291 INFO Connection check task start + +2025-09-24 01:24:19,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:19,292 INFO Out dated connection ,size=0 + +2025-09-24 01:24:19,292 INFO Connection check task end + +2025-09-24 01:24:22,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:22,292 INFO Connection check task start + +2025-09-24 01:24:22,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:22,292 INFO Out dated connection ,size=0 + +2025-09-24 01:24:22,292 INFO Connection check task end + +2025-09-24 01:24:25,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:25,294 INFO Connection check task start + +2025-09-24 01:24:25,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:25,294 INFO Out dated connection ,size=0 + +2025-09-24 01:24:25,294 INFO Connection check task end + +2025-09-24 01:24:28,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:28,294 INFO Connection check task start + +2025-09-24 01:24:28,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:28,295 INFO Out dated connection ,size=0 + +2025-09-24 01:24:28,295 INFO Connection check task end + +2025-09-24 01:24:31,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:31,295 INFO Connection check task start + +2025-09-24 01:24:31,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:31,295 INFO Out dated connection ,size=0 + +2025-09-24 01:24:31,295 INFO Connection check task end + +2025-09-24 01:24:34,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:34,295 INFO Connection check task start + +2025-09-24 01:24:34,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:34,295 INFO Out dated connection ,size=0 + +2025-09-24 01:24:34,295 INFO Connection check task end + +2025-09-24 01:24:37,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:37,296 INFO Connection check task start + +2025-09-24 01:24:37,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:37,296 INFO Out dated connection ,size=0 + +2025-09-24 01:24:37,296 INFO Connection check task end + +2025-09-24 01:24:40,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:40,296 INFO Connection check task start + +2025-09-24 01:24:40,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:40,297 INFO Out dated connection ,size=0 + +2025-09-24 01:24:40,297 INFO Connection check task end + +2025-09-24 01:24:43,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:43,298 INFO Connection check task start + +2025-09-24 01:24:43,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:43,298 INFO Out dated connection ,size=0 + +2025-09-24 01:24:43,298 INFO Connection check task end + +2025-09-24 01:24:46,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:46,299 INFO Connection check task start + +2025-09-24 01:24:46,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:46,300 INFO Out dated connection ,size=0 + +2025-09-24 01:24:46,300 INFO Connection check task end + +2025-09-24 01:24:49,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:49,301 INFO Connection check task start + +2025-09-24 01:24:49,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:49,301 INFO Out dated connection ,size=0 + +2025-09-24 01:24:49,301 INFO Connection check task end + +2025-09-24 01:24:52,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:52,302 INFO Connection check task start + +2025-09-24 01:24:52,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:52,302 INFO Out dated connection ,size=0 + +2025-09-24 01:24:52,302 INFO Connection check task end + +2025-09-24 01:24:55,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:55,304 INFO Connection check task start + +2025-09-24 01:24:55,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:55,305 INFO Out dated connection ,size=0 + +2025-09-24 01:24:55,305 INFO Connection check task end + +2025-09-24 01:24:58,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:24:58,305 INFO Connection check task start + +2025-09-24 01:24:58,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:24:58,305 INFO Out dated connection ,size=0 + +2025-09-24 01:24:58,305 INFO Connection check task end + +2025-09-24 01:25:01,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:01,306 INFO Connection check task start + +2025-09-24 01:25:01,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:01,306 INFO Out dated connection ,size=0 + +2025-09-24 01:25:01,306 INFO Connection check task end + +2025-09-24 01:25:04,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:04,306 INFO Connection check task start + +2025-09-24 01:25:04,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:04,306 INFO Out dated connection ,size=0 + +2025-09-24 01:25:04,306 INFO Connection check task end + +2025-09-24 01:25:07,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:07,307 INFO Connection check task start + +2025-09-24 01:25:07,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:07,307 INFO Out dated connection ,size=0 + +2025-09-24 01:25:07,307 INFO Connection check task end + +2025-09-24 01:25:10,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:10,309 INFO Connection check task start + +2025-09-24 01:25:10,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:10,309 INFO Out dated connection ,size=0 + +2025-09-24 01:25:10,309 INFO Connection check task end + +2025-09-24 01:25:13,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:13,312 INFO Connection check task start + +2025-09-24 01:25:13,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:13,312 INFO Out dated connection ,size=0 + +2025-09-24 01:25:13,312 INFO Connection check task end + +2025-09-24 01:25:16,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:16,313 INFO Connection check task start + +2025-09-24 01:25:16,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:16,313 INFO Out dated connection ,size=0 + +2025-09-24 01:25:16,313 INFO Connection check task end + +2025-09-24 01:25:19,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:19,314 INFO Connection check task start + +2025-09-24 01:25:19,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:19,314 INFO Out dated connection ,size=0 + +2025-09-24 01:25:19,314 INFO Connection check task end + +2025-09-24 01:25:22,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:22,314 INFO Connection check task start + +2025-09-24 01:25:22,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:22,315 INFO Out dated connection ,size=0 + +2025-09-24 01:25:22,315 INFO Connection check task end + +2025-09-24 01:25:25,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:25,315 INFO Connection check task start + +2025-09-24 01:25:25,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:25,315 INFO Out dated connection ,size=0 + +2025-09-24 01:25:25,316 INFO Connection check task end + +2025-09-24 01:25:28,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:28,316 INFO Connection check task start + +2025-09-24 01:25:28,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:28,317 INFO Out dated connection ,size=0 + +2025-09-24 01:25:28,317 INFO Connection check task end + +2025-09-24 01:25:31,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:31,317 INFO Connection check task start + +2025-09-24 01:25:31,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:31,317 INFO Out dated connection ,size=0 + +2025-09-24 01:25:31,317 INFO Connection check task end + +2025-09-24 01:25:34,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:34,319 INFO Connection check task start + +2025-09-24 01:25:34,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:34,319 INFO Out dated connection ,size=0 + +2025-09-24 01:25:34,319 INFO Connection check task end + +2025-09-24 01:25:37,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:37,319 INFO Connection check task start + +2025-09-24 01:25:37,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:37,320 INFO Out dated connection ,size=0 + +2025-09-24 01:25:37,320 INFO Connection check task end + +2025-09-24 01:25:40,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:40,320 INFO Connection check task start + +2025-09-24 01:25:40,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:40,320 INFO Out dated connection ,size=0 + +2025-09-24 01:25:40,320 INFO Connection check task end + +2025-09-24 01:25:43,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:43,322 INFO Connection check task start + +2025-09-24 01:25:43,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:43,322 INFO Out dated connection ,size=0 + +2025-09-24 01:25:43,322 INFO Connection check task end + +2025-09-24 01:25:46,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:46,324 INFO Connection check task start + +2025-09-24 01:25:46,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:46,324 INFO Out dated connection ,size=0 + +2025-09-24 01:25:46,324 INFO Connection check task end + +2025-09-24 01:25:49,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:49,326 INFO Connection check task start + +2025-09-24 01:25:49,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:49,326 INFO Out dated connection ,size=0 + +2025-09-24 01:25:49,326 INFO Connection check task end + +2025-09-24 01:25:52,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:52,328 INFO Connection check task start + +2025-09-24 01:25:52,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:52,329 INFO Out dated connection ,size=0 + +2025-09-24 01:25:52,329 INFO Connection check task end + +2025-09-24 01:25:55,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:55,329 INFO Connection check task start + +2025-09-24 01:25:55,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:55,329 INFO Out dated connection ,size=0 + +2025-09-24 01:25:55,329 INFO Connection check task end + +2025-09-24 01:25:58,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:25:58,330 INFO Connection check task start + +2025-09-24 01:25:58,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:25:58,330 INFO Out dated connection ,size=0 + +2025-09-24 01:25:58,330 INFO Connection check task end + +2025-09-24 01:26:01,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:01,332 INFO Connection check task start + +2025-09-24 01:26:01,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:01,332 INFO Out dated connection ,size=0 + +2025-09-24 01:26:01,332 INFO Connection check task end + +2025-09-24 01:26:04,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:04,334 INFO Connection check task start + +2025-09-24 01:26:04,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:04,334 INFO Out dated connection ,size=0 + +2025-09-24 01:26:04,334 INFO Connection check task end + +2025-09-24 01:26:07,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:07,334 INFO Connection check task start + +2025-09-24 01:26:07,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:07,335 INFO Out dated connection ,size=0 + +2025-09-24 01:26:07,335 INFO Connection check task end + +2025-09-24 01:26:10,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:10,337 INFO Connection check task start + +2025-09-24 01:26:10,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:10,337 INFO Out dated connection ,size=0 + +2025-09-24 01:26:10,337 INFO Connection check task end + +2025-09-24 01:26:13,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:13,339 INFO Connection check task start + +2025-09-24 01:26:13,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:13,339 INFO Out dated connection ,size=0 + +2025-09-24 01:26:13,339 INFO Connection check task end + +2025-09-24 01:26:16,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:16,341 INFO Connection check task start + +2025-09-24 01:26:16,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:16,341 INFO Out dated connection ,size=0 + +2025-09-24 01:26:16,341 INFO Connection check task end + +2025-09-24 01:26:19,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:19,341 INFO Connection check task start + +2025-09-24 01:26:19,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:19,342 INFO Out dated connection ,size=0 + +2025-09-24 01:26:19,342 INFO Connection check task end + +2025-09-24 01:26:22,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:22,343 INFO Connection check task start + +2025-09-24 01:26:22,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:22,344 INFO Out dated connection ,size=0 + +2025-09-24 01:26:22,344 INFO Connection check task end + +2025-09-24 01:26:25,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:25,344 INFO Connection check task start + +2025-09-24 01:26:25,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:25,344 INFO Out dated connection ,size=0 + +2025-09-24 01:26:25,344 INFO Connection check task end + +2025-09-24 01:26:28,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:28,347 INFO Connection check task start + +2025-09-24 01:26:28,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:28,347 INFO Out dated connection ,size=0 + +2025-09-24 01:26:28,347 INFO Connection check task end + +2025-09-24 01:26:31,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:31,348 INFO Connection check task start + +2025-09-24 01:26:31,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:31,348 INFO Out dated connection ,size=0 + +2025-09-24 01:26:31,348 INFO Connection check task end + +2025-09-24 01:26:34,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:34,350 INFO Connection check task start + +2025-09-24 01:26:34,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:34,351 INFO Out dated connection ,size=0 + +2025-09-24 01:26:34,351 INFO Connection check task end + +2025-09-24 01:26:37,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:37,351 INFO Connection check task start + +2025-09-24 01:26:37,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:37,351 INFO Out dated connection ,size=0 + +2025-09-24 01:26:37,351 INFO Connection check task end + +2025-09-24 01:26:40,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:40,353 INFO Connection check task start + +2025-09-24 01:26:40,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:40,354 INFO Out dated connection ,size=0 + +2025-09-24 01:26:40,354 INFO Connection check task end + +2025-09-24 01:26:43,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:43,354 INFO Connection check task start + +2025-09-24 01:26:43,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:43,354 INFO Out dated connection ,size=0 + +2025-09-24 01:26:43,354 INFO Connection check task end + +2025-09-24 01:26:46,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:46,356 INFO Connection check task start + +2025-09-24 01:26:46,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:46,356 INFO Out dated connection ,size=0 + +2025-09-24 01:26:46,356 INFO Connection check task end + +2025-09-24 01:26:49,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:49,357 INFO Connection check task start + +2025-09-24 01:26:49,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:49,357 INFO Out dated connection ,size=0 + +2025-09-24 01:26:49,357 INFO Connection check task end + +2025-09-24 01:26:52,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:52,359 INFO Connection check task start + +2025-09-24 01:26:52,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:52,359 INFO Out dated connection ,size=0 + +2025-09-24 01:26:52,359 INFO Connection check task end + +2025-09-24 01:26:55,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:55,359 INFO Connection check task start + +2025-09-24 01:26:55,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:55,360 INFO Out dated connection ,size=0 + +2025-09-24 01:26:55,360 INFO Connection check task end + +2025-09-24 01:26:58,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:26:58,360 INFO Connection check task start + +2025-09-24 01:26:58,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:26:58,360 INFO Out dated connection ,size=0 + +2025-09-24 01:26:58,360 INFO Connection check task end + +2025-09-24 01:27:01,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:01,361 INFO Connection check task start + +2025-09-24 01:27:01,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:01,361 INFO Out dated connection ,size=0 + +2025-09-24 01:27:01,361 INFO Connection check task end + +2025-09-24 01:27:04,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:04,362 INFO Connection check task start + +2025-09-24 01:27:04,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:04,362 INFO Out dated connection ,size=0 + +2025-09-24 01:27:04,362 INFO Connection check task end + +2025-09-24 01:27:07,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:07,364 INFO Connection check task start + +2025-09-24 01:27:07,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:07,364 INFO Out dated connection ,size=0 + +2025-09-24 01:27:07,364 INFO Connection check task end + +2025-09-24 01:27:10,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:10,366 INFO Connection check task start + +2025-09-24 01:27:10,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:10,366 INFO Out dated connection ,size=0 + +2025-09-24 01:27:10,366 INFO Connection check task end + +2025-09-24 01:27:13,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:13,367 INFO Connection check task start + +2025-09-24 01:27:13,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:13,367 INFO Out dated connection ,size=0 + +2025-09-24 01:27:13,367 INFO Connection check task end + +2025-09-24 01:27:16,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:16,367 INFO Connection check task start + +2025-09-24 01:27:16,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:16,367 INFO Out dated connection ,size=0 + +2025-09-24 01:27:16,367 INFO Connection check task end + +2025-09-24 01:27:19,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:19,368 INFO Connection check task start + +2025-09-24 01:27:19,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:19,368 INFO Out dated connection ,size=0 + +2025-09-24 01:27:19,368 INFO Connection check task end + +2025-09-24 01:27:22,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:22,370 INFO Connection check task start + +2025-09-24 01:27:22,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:22,370 INFO Out dated connection ,size=0 + +2025-09-24 01:27:22,370 INFO Connection check task end + +2025-09-24 01:27:25,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:25,373 INFO Connection check task start + +2025-09-24 01:27:25,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:25,373 INFO Out dated connection ,size=0 + +2025-09-24 01:27:25,373 INFO Connection check task end + +2025-09-24 01:27:28,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:28,373 INFO Connection check task start + +2025-09-24 01:27:28,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:28,374 INFO Out dated connection ,size=0 + +2025-09-24 01:27:28,374 INFO Connection check task end + +2025-09-24 01:27:31,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:31,374 INFO Connection check task start + +2025-09-24 01:27:31,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:31,374 INFO Out dated connection ,size=0 + +2025-09-24 01:27:31,374 INFO Connection check task end + +2025-09-24 01:27:34,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:34,375 INFO Connection check task start + +2025-09-24 01:27:34,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:34,375 INFO Out dated connection ,size=0 + +2025-09-24 01:27:34,375 INFO Connection check task end + +2025-09-24 01:27:37,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:37,375 INFO Connection check task start + +2025-09-24 01:27:37,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:37,376 INFO Out dated connection ,size=0 + +2025-09-24 01:27:37,376 INFO Connection check task end + +2025-09-24 01:27:40,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:40,376 INFO Connection check task start + +2025-09-24 01:27:40,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:40,376 INFO Out dated connection ,size=0 + +2025-09-24 01:27:40,376 INFO Connection check task end + +2025-09-24 01:27:43,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:43,377 INFO Connection check task start + +2025-09-24 01:27:43,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:43,377 INFO Out dated connection ,size=0 + +2025-09-24 01:27:43,377 INFO Connection check task end + +2025-09-24 01:27:46,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:46,377 INFO Connection check task start + +2025-09-24 01:27:46,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:46,377 INFO Out dated connection ,size=0 + +2025-09-24 01:27:46,377 INFO Connection check task end + +2025-09-24 01:27:49,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:49,379 INFO Connection check task start + +2025-09-24 01:27:49,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:49,380 INFO Out dated connection ,size=0 + +2025-09-24 01:27:49,380 INFO Connection check task end + +2025-09-24 01:27:52,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:52,380 INFO Connection check task start + +2025-09-24 01:27:52,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:52,380 INFO Out dated connection ,size=0 + +2025-09-24 01:27:52,380 INFO Connection check task end + +2025-09-24 01:27:55,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:55,381 INFO Connection check task start + +2025-09-24 01:27:55,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:55,381 INFO Out dated connection ,size=0 + +2025-09-24 01:27:55,381 INFO Connection check task end + +2025-09-24 01:27:58,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:27:58,382 INFO Connection check task start + +2025-09-24 01:27:58,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:27:58,382 INFO Out dated connection ,size=0 + +2025-09-24 01:27:58,382 INFO Connection check task end + +2025-09-24 01:28:01,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:01,384 INFO Connection check task start + +2025-09-24 01:28:01,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:01,384 INFO Out dated connection ,size=0 + +2025-09-24 01:28:01,384 INFO Connection check task end + +2025-09-24 01:28:04,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:04,385 INFO Connection check task start + +2025-09-24 01:28:04,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:04,385 INFO Out dated connection ,size=0 + +2025-09-24 01:28:04,385 INFO Connection check task end + +2025-09-24 01:28:07,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:07,387 INFO Connection check task start + +2025-09-24 01:28:07,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:07,388 INFO Out dated connection ,size=0 + +2025-09-24 01:28:07,388 INFO Connection check task end + +2025-09-24 01:28:10,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:10,388 INFO Connection check task start + +2025-09-24 01:28:10,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:10,388 INFO Out dated connection ,size=0 + +2025-09-24 01:28:10,388 INFO Connection check task end + +2025-09-24 01:28:13,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:13,388 INFO Connection check task start + +2025-09-24 01:28:13,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:13,389 INFO Out dated connection ,size=0 + +2025-09-24 01:28:13,389 INFO Connection check task end + +2025-09-24 01:28:16,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:16,390 INFO Connection check task start + +2025-09-24 01:28:16,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:16,390 INFO Out dated connection ,size=0 + +2025-09-24 01:28:16,390 INFO Connection check task end + +2025-09-24 01:28:19,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:19,391 INFO Connection check task start + +2025-09-24 01:28:19,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:19,391 INFO Out dated connection ,size=0 + +2025-09-24 01:28:19,391 INFO Connection check task end + +2025-09-24 01:28:22,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:22,393 INFO Connection check task start + +2025-09-24 01:28:22,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:22,393 INFO Out dated connection ,size=0 + +2025-09-24 01:28:22,393 INFO Connection check task end + +2025-09-24 01:28:25,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:25,394 INFO Connection check task start + +2025-09-24 01:28:25,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:25,394 INFO Out dated connection ,size=0 + +2025-09-24 01:28:25,394 INFO Connection check task end + +2025-09-24 01:28:28,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:28,395 INFO Connection check task start + +2025-09-24 01:28:28,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:28,395 INFO Out dated connection ,size=0 + +2025-09-24 01:28:28,395 INFO Connection check task end + +2025-09-24 01:28:31,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:31,397 INFO Connection check task start + +2025-09-24 01:28:31,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:31,397 INFO Out dated connection ,size=0 + +2025-09-24 01:28:31,397 INFO Connection check task end + +2025-09-24 01:28:34,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:34,398 INFO Connection check task start + +2025-09-24 01:28:34,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:34,399 INFO Out dated connection ,size=0 + +2025-09-24 01:28:34,399 INFO Connection check task end + +2025-09-24 01:28:37,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:37,399 INFO Connection check task start + +2025-09-24 01:28:37,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:37,399 INFO Out dated connection ,size=0 + +2025-09-24 01:28:37,399 INFO Connection check task end + +2025-09-24 01:28:40,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:40,400 INFO Connection check task start + +2025-09-24 01:28:40,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:40,400 INFO Out dated connection ,size=0 + +2025-09-24 01:28:40,400 INFO Connection check task end + +2025-09-24 01:28:43,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:43,402 INFO Connection check task start + +2025-09-24 01:28:43,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:43,403 INFO Out dated connection ,size=0 + +2025-09-24 01:28:43,403 INFO Connection check task end + +2025-09-24 01:28:46,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:46,405 INFO Connection check task start + +2025-09-24 01:28:46,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:46,405 INFO Out dated connection ,size=0 + +2025-09-24 01:28:46,405 INFO Connection check task end + +2025-09-24 01:28:49,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:49,407 INFO Connection check task start + +2025-09-24 01:28:49,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:49,407 INFO Out dated connection ,size=0 + +2025-09-24 01:28:49,407 INFO Connection check task end + +2025-09-24 01:28:52,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:52,407 INFO Connection check task start + +2025-09-24 01:28:52,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:52,407 INFO Out dated connection ,size=0 + +2025-09-24 01:28:52,407 INFO Connection check task end + +2025-09-24 01:28:55,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:55,409 INFO Connection check task start + +2025-09-24 01:28:55,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:55,409 INFO Out dated connection ,size=0 + +2025-09-24 01:28:55,409 INFO Connection check task end + +2025-09-24 01:28:58,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:28:58,411 INFO Connection check task start + +2025-09-24 01:28:58,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:28:58,412 INFO Out dated connection ,size=0 + +2025-09-24 01:28:58,412 INFO Connection check task end + +2025-09-24 01:29:01,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:01,412 INFO Connection check task start + +2025-09-24 01:29:01,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:01,412 INFO Out dated connection ,size=0 + +2025-09-24 01:29:01,412 INFO Connection check task end + +2025-09-24 01:29:04,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:04,412 INFO Connection check task start + +2025-09-24 01:29:04,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:04,413 INFO Out dated connection ,size=0 + +2025-09-24 01:29:04,413 INFO Connection check task end + +2025-09-24 01:29:07,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:07,414 INFO Connection check task start + +2025-09-24 01:29:07,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:07,414 INFO Out dated connection ,size=0 + +2025-09-24 01:29:07,414 INFO Connection check task end + +2025-09-24 01:29:10,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:10,414 INFO Connection check task start + +2025-09-24 01:29:10,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:10,415 INFO Out dated connection ,size=0 + +2025-09-24 01:29:10,415 INFO Connection check task end + +2025-09-24 01:29:13,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:13,416 INFO Connection check task start + +2025-09-24 01:29:13,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:13,416 INFO Out dated connection ,size=0 + +2025-09-24 01:29:13,417 INFO Connection check task end + +2025-09-24 01:29:16,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:16,417 INFO Connection check task start + +2025-09-24 01:29:16,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:16,417 INFO Out dated connection ,size=0 + +2025-09-24 01:29:16,417 INFO Connection check task end + +2025-09-24 01:29:19,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:19,419 INFO Connection check task start + +2025-09-24 01:29:19,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:19,419 INFO Out dated connection ,size=0 + +2025-09-24 01:29:19,419 INFO Connection check task end + +2025-09-24 01:29:22,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:22,419 INFO Connection check task start + +2025-09-24 01:29:22,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:22,420 INFO Out dated connection ,size=0 + +2025-09-24 01:29:22,420 INFO Connection check task end + +2025-09-24 01:29:25,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:25,420 INFO Connection check task start + +2025-09-24 01:29:25,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:25,420 INFO Out dated connection ,size=0 + +2025-09-24 01:29:25,420 INFO Connection check task end + +2025-09-24 01:29:28,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:28,422 INFO Connection check task start + +2025-09-24 01:29:28,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:28,423 INFO Out dated connection ,size=0 + +2025-09-24 01:29:28,423 INFO Connection check task end + +2025-09-24 01:29:31,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:31,425 INFO Connection check task start + +2025-09-24 01:29:31,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:31,425 INFO Out dated connection ,size=0 + +2025-09-24 01:29:31,425 INFO Connection check task end + +2025-09-24 01:29:34,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:34,425 INFO Connection check task start + +2025-09-24 01:29:34,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:34,425 INFO Out dated connection ,size=0 + +2025-09-24 01:29:34,426 INFO Connection check task end + +2025-09-24 01:29:37,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:37,426 INFO Connection check task start + +2025-09-24 01:29:37,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:37,426 INFO Out dated connection ,size=0 + +2025-09-24 01:29:37,426 INFO Connection check task end + +2025-09-24 01:29:40,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:40,427 INFO Connection check task start + +2025-09-24 01:29:40,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:40,427 INFO Out dated connection ,size=0 + +2025-09-24 01:29:40,427 INFO Connection check task end + +2025-09-24 01:29:43,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:43,427 INFO Connection check task start + +2025-09-24 01:29:43,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:43,427 INFO Out dated connection ,size=0 + +2025-09-24 01:29:43,427 INFO Connection check task end + +2025-09-24 01:29:46,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:46,429 INFO Connection check task start + +2025-09-24 01:29:46,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:46,429 INFO Out dated connection ,size=0 + +2025-09-24 01:29:46,429 INFO Connection check task end + +2025-09-24 01:29:49,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:49,431 INFO Connection check task start + +2025-09-24 01:29:49,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:49,431 INFO Out dated connection ,size=0 + +2025-09-24 01:29:49,431 INFO Connection check task end + +2025-09-24 01:29:52,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:52,431 INFO Connection check task start + +2025-09-24 01:29:52,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:52,431 INFO Out dated connection ,size=0 + +2025-09-24 01:29:52,431 INFO Connection check task end + +2025-09-24 01:29:55,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:55,431 INFO Connection check task start + +2025-09-24 01:29:55,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:55,431 INFO Out dated connection ,size=0 + +2025-09-24 01:29:55,432 INFO Connection check task end + +2025-09-24 01:29:58,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:29:58,433 INFO Connection check task start + +2025-09-24 01:29:58,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:29:58,433 INFO Out dated connection ,size=0 + +2025-09-24 01:29:58,434 INFO Connection check task end + +2025-09-24 01:30:01,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:01,434 INFO Connection check task start + +2025-09-24 01:30:01,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:01,434 INFO Out dated connection ,size=0 + +2025-09-24 01:30:01,434 INFO Connection check task end + +2025-09-24 01:30:04,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:04,436 INFO Connection check task start + +2025-09-24 01:30:04,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:04,437 INFO Out dated connection ,size=0 + +2025-09-24 01:30:04,437 INFO Connection check task end + +2025-09-24 01:30:07,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:07,437 INFO Connection check task start + +2025-09-24 01:30:07,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:07,437 INFO Out dated connection ,size=0 + +2025-09-24 01:30:07,437 INFO Connection check task end + +2025-09-24 01:30:10,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:10,438 INFO Connection check task start + +2025-09-24 01:30:10,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:10,438 INFO Out dated connection ,size=0 + +2025-09-24 01:30:10,438 INFO Connection check task end + +2025-09-24 01:30:13,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:13,441 INFO Connection check task start + +2025-09-24 01:30:13,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:13,441 INFO Out dated connection ,size=0 + +2025-09-24 01:30:13,441 INFO Connection check task end + +2025-09-24 01:30:16,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:16,441 INFO Connection check task start + +2025-09-24 01:30:16,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:16,441 INFO Out dated connection ,size=0 + +2025-09-24 01:30:16,441 INFO Connection check task end + +2025-09-24 01:30:19,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:19,442 INFO Connection check task start + +2025-09-24 01:30:19,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:19,442 INFO Out dated connection ,size=0 + +2025-09-24 01:30:19,442 INFO Connection check task end + +2025-09-24 01:30:22,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:22,444 INFO Connection check task start + +2025-09-24 01:30:22,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:22,444 INFO Out dated connection ,size=0 + +2025-09-24 01:30:22,445 INFO Connection check task end + +2025-09-24 01:30:25,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:25,445 INFO Connection check task start + +2025-09-24 01:30:25,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:25,445 INFO Out dated connection ,size=0 + +2025-09-24 01:30:25,445 INFO Connection check task end + +2025-09-24 01:30:28,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:28,447 INFO Connection check task start + +2025-09-24 01:30:28,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:28,448 INFO Out dated connection ,size=0 + +2025-09-24 01:30:28,448 INFO Connection check task end + +2025-09-24 01:30:31,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:31,449 INFO Connection check task start + +2025-09-24 01:30:31,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:31,449 INFO Out dated connection ,size=0 + +2025-09-24 01:30:31,449 INFO Connection check task end + +2025-09-24 01:30:34,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:34,449 INFO Connection check task start + +2025-09-24 01:30:34,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:34,449 INFO Out dated connection ,size=0 + +2025-09-24 01:30:34,449 INFO Connection check task end + +2025-09-24 01:30:37,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:37,450 INFO Connection check task start + +2025-09-24 01:30:37,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:37,450 INFO Out dated connection ,size=0 + +2025-09-24 01:30:37,450 INFO Connection check task end + +2025-09-24 01:30:40,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:40,451 INFO Connection check task start + +2025-09-24 01:30:40,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:40,451 INFO Out dated connection ,size=0 + +2025-09-24 01:30:40,451 INFO Connection check task end + +2025-09-24 01:30:43,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:43,452 INFO Connection check task start + +2025-09-24 01:30:43,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:43,452 INFO Out dated connection ,size=0 + +2025-09-24 01:30:43,452 INFO Connection check task end + +2025-09-24 01:30:46,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:46,454 INFO Connection check task start + +2025-09-24 01:30:46,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:46,454 INFO Out dated connection ,size=0 + +2025-09-24 01:30:46,454 INFO Connection check task end + +2025-09-24 01:30:49,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:49,454 INFO Connection check task start + +2025-09-24 01:30:49,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:49,454 INFO Out dated connection ,size=0 + +2025-09-24 01:30:49,454 INFO Connection check task end + +2025-09-24 01:30:52,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:52,455 INFO Connection check task start + +2025-09-24 01:30:52,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:52,455 INFO Out dated connection ,size=0 + +2025-09-24 01:30:52,455 INFO Connection check task end + +2025-09-24 01:30:55,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:55,457 INFO Connection check task start + +2025-09-24 01:30:55,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:55,457 INFO Out dated connection ,size=0 + +2025-09-24 01:30:55,457 INFO Connection check task end + +2025-09-24 01:30:58,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:30:58,458 INFO Connection check task start + +2025-09-24 01:30:58,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:30:58,458 INFO Out dated connection ,size=0 + +2025-09-24 01:30:58,458 INFO Connection check task end + +2025-09-24 01:31:01,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:01,459 INFO Connection check task start + +2025-09-24 01:31:01,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:01,459 INFO Out dated connection ,size=0 + +2025-09-24 01:31:01,459 INFO Connection check task end + +2025-09-24 01:31:04,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:04,459 INFO Connection check task start + +2025-09-24 01:31:04,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:04,459 INFO Out dated connection ,size=0 + +2025-09-24 01:31:04,459 INFO Connection check task end + +2025-09-24 01:31:07,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:07,461 INFO Connection check task start + +2025-09-24 01:31:07,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:07,461 INFO Out dated connection ,size=0 + +2025-09-24 01:31:07,461 INFO Connection check task end + +2025-09-24 01:31:10,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:10,463 INFO Connection check task start + +2025-09-24 01:31:10,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:10,463 INFO Out dated connection ,size=0 + +2025-09-24 01:31:10,463 INFO Connection check task end + +2025-09-24 01:31:13,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:13,465 INFO Connection check task start + +2025-09-24 01:31:13,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:13,465 INFO Out dated connection ,size=0 + +2025-09-24 01:31:13,465 INFO Connection check task end + +2025-09-24 01:31:16,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:16,466 INFO Connection check task start + +2025-09-24 01:31:16,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:16,466 INFO Out dated connection ,size=0 + +2025-09-24 01:31:16,466 INFO Connection check task end + +2025-09-24 01:31:19,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:19,466 INFO Connection check task start + +2025-09-24 01:31:19,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:19,466 INFO Out dated connection ,size=0 + +2025-09-24 01:31:19,466 INFO Connection check task end + +2025-09-24 01:31:22,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:22,468 INFO Connection check task start + +2025-09-24 01:31:22,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:22,468 INFO Out dated connection ,size=0 + +2025-09-24 01:31:22,468 INFO Connection check task end + +2025-09-24 01:31:25,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:25,469 INFO Connection check task start + +2025-09-24 01:31:25,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:25,469 INFO Out dated connection ,size=0 + +2025-09-24 01:31:25,469 INFO Connection check task end + +2025-09-24 01:31:28,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:28,471 INFO Connection check task start + +2025-09-24 01:31:28,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:28,471 INFO Out dated connection ,size=0 + +2025-09-24 01:31:28,471 INFO Connection check task end + +2025-09-24 01:31:31,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:31,472 INFO Connection check task start + +2025-09-24 01:31:31,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:31,472 INFO Out dated connection ,size=0 + +2025-09-24 01:31:31,472 INFO Connection check task end + +2025-09-24 01:31:34,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:34,474 INFO Connection check task start + +2025-09-24 01:31:34,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:34,474 INFO Out dated connection ,size=0 + +2025-09-24 01:31:34,474 INFO Connection check task end + +2025-09-24 01:31:37,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:37,476 INFO Connection check task start + +2025-09-24 01:31:37,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:37,476 INFO Out dated connection ,size=0 + +2025-09-24 01:31:37,476 INFO Connection check task end + +2025-09-24 01:31:40,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:40,476 INFO Connection check task start + +2025-09-24 01:31:40,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:40,477 INFO Out dated connection ,size=0 + +2025-09-24 01:31:40,477 INFO Connection check task end + +2025-09-24 01:31:43,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:43,478 INFO Connection check task start + +2025-09-24 01:31:43,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:43,478 INFO Out dated connection ,size=0 + +2025-09-24 01:31:43,478 INFO Connection check task end + +2025-09-24 01:31:46,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:46,480 INFO Connection check task start + +2025-09-24 01:31:46,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:46,480 INFO Out dated connection ,size=0 + +2025-09-24 01:31:46,480 INFO Connection check task end + +2025-09-24 01:31:49,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:49,482 INFO Connection check task start + +2025-09-24 01:31:49,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:49,482 INFO Out dated connection ,size=0 + +2025-09-24 01:31:49,482 INFO Connection check task end + +2025-09-24 01:31:52,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:52,484 INFO Connection check task start + +2025-09-24 01:31:52,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:52,484 INFO Out dated connection ,size=0 + +2025-09-24 01:31:52,484 INFO Connection check task end + +2025-09-24 01:31:55,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:55,484 INFO Connection check task start + +2025-09-24 01:31:55,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:55,485 INFO Out dated connection ,size=0 + +2025-09-24 01:31:55,485 INFO Connection check task end + +2025-09-24 01:31:58,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:31:58,487 INFO Connection check task start + +2025-09-24 01:31:58,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:31:58,487 INFO Out dated connection ,size=0 + +2025-09-24 01:31:58,487 INFO Connection check task end + +2025-09-24 01:32:01,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:01,489 INFO Connection check task start + +2025-09-24 01:32:01,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:01,489 INFO Out dated connection ,size=0 + +2025-09-24 01:32:01,490 INFO Connection check task end + +2025-09-24 01:32:04,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:04,492 INFO Connection check task start + +2025-09-24 01:32:04,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:04,492 INFO Out dated connection ,size=0 + +2025-09-24 01:32:04,492 INFO Connection check task end + +2025-09-24 01:32:07,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:07,492 INFO Connection check task start + +2025-09-24 01:32:07,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:07,492 INFO Out dated connection ,size=0 + +2025-09-24 01:32:07,492 INFO Connection check task end + +2025-09-24 01:32:10,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:10,492 INFO Connection check task start + +2025-09-24 01:32:10,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:10,493 INFO Out dated connection ,size=0 + +2025-09-24 01:32:10,493 INFO Connection check task end + +2025-09-24 01:32:13,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:13,493 INFO Connection check task start + +2025-09-24 01:32:13,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:13,493 INFO Out dated connection ,size=0 + +2025-09-24 01:32:13,493 INFO Connection check task end + +2025-09-24 01:32:16,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:16,494 INFO Connection check task start + +2025-09-24 01:32:16,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:16,494 INFO Out dated connection ,size=0 + +2025-09-24 01:32:16,494 INFO Connection check task end + +2025-09-24 01:32:19,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:19,497 INFO Connection check task start + +2025-09-24 01:32:19,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:19,498 INFO Out dated connection ,size=0 + +2025-09-24 01:32:19,498 INFO Connection check task end + +2025-09-24 01:32:22,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:22,499 INFO Connection check task start + +2025-09-24 01:32:22,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:22,500 INFO Out dated connection ,size=0 + +2025-09-24 01:32:22,500 INFO Connection check task end + +2025-09-24 01:32:25,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:25,500 INFO Connection check task start + +2025-09-24 01:32:25,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:25,500 INFO Out dated connection ,size=0 + +2025-09-24 01:32:25,500 INFO Connection check task end + +2025-09-24 01:32:28,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:28,501 INFO Connection check task start + +2025-09-24 01:32:28,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:28,501 INFO Out dated connection ,size=0 + +2025-09-24 01:32:28,501 INFO Connection check task end + +2025-09-24 01:32:31,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:31,502 INFO Connection check task start + +2025-09-24 01:32:31,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:31,502 INFO Out dated connection ,size=0 + +2025-09-24 01:32:31,502 INFO Connection check task end + +2025-09-24 01:32:34,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:34,506 INFO Connection check task start + +2025-09-24 01:32:34,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:34,506 INFO Out dated connection ,size=0 + +2025-09-24 01:32:34,506 INFO Connection check task end + +2025-09-24 01:32:37,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:37,507 INFO Connection check task start + +2025-09-24 01:32:37,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:37,507 INFO Out dated connection ,size=0 + +2025-09-24 01:32:37,507 INFO Connection check task end + +2025-09-24 01:32:40,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:40,507 INFO Connection check task start + +2025-09-24 01:32:40,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:40,508 INFO Out dated connection ,size=0 + +2025-09-24 01:32:40,508 INFO Connection check task end + +2025-09-24 01:32:43,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:43,510 INFO Connection check task start + +2025-09-24 01:32:43,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:43,510 INFO Out dated connection ,size=0 + +2025-09-24 01:32:43,510 INFO Connection check task end + +2025-09-24 01:32:46,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:46,512 INFO Connection check task start + +2025-09-24 01:32:46,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:46,512 INFO Out dated connection ,size=0 + +2025-09-24 01:32:46,512 INFO Connection check task end + +2025-09-24 01:32:49,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:49,513 INFO Connection check task start + +2025-09-24 01:32:49,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:49,513 INFO Out dated connection ,size=0 + +2025-09-24 01:32:49,513 INFO Connection check task end + +2025-09-24 01:32:52,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:52,513 INFO Connection check task start + +2025-09-24 01:32:52,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:52,514 INFO Out dated connection ,size=0 + +2025-09-24 01:32:52,514 INFO Connection check task end + +2025-09-24 01:32:55,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:55,514 INFO Connection check task start + +2025-09-24 01:32:55,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:55,514 INFO Out dated connection ,size=0 + +2025-09-24 01:32:55,514 INFO Connection check task end + +2025-09-24 01:32:58,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:32:58,517 INFO Connection check task start + +2025-09-24 01:32:58,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:32:58,517 INFO Out dated connection ,size=0 + +2025-09-24 01:32:58,517 INFO Connection check task end + +2025-09-24 01:33:01,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:01,517 INFO Connection check task start + +2025-09-24 01:33:01,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:01,517 INFO Out dated connection ,size=0 + +2025-09-24 01:33:01,517 INFO Connection check task end + +2025-09-24 01:33:04,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:04,519 INFO Connection check task start + +2025-09-24 01:33:04,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:04,519 INFO Out dated connection ,size=0 + +2025-09-24 01:33:04,519 INFO Connection check task end + +2025-09-24 01:33:07,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:07,520 INFO Connection check task start + +2025-09-24 01:33:07,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:07,521 INFO Out dated connection ,size=0 + +2025-09-24 01:33:07,521 INFO Connection check task end + +2025-09-24 01:33:10,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:10,522 INFO Connection check task start + +2025-09-24 01:33:10,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:10,522 INFO Out dated connection ,size=0 + +2025-09-24 01:33:10,522 INFO Connection check task end + +2025-09-24 01:33:13,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:13,523 INFO Connection check task start + +2025-09-24 01:33:13,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:13,523 INFO Out dated connection ,size=0 + +2025-09-24 01:33:13,523 INFO Connection check task end + +2025-09-24 01:33:16,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:16,525 INFO Connection check task start + +2025-09-24 01:33:16,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:16,525 INFO Out dated connection ,size=0 + +2025-09-24 01:33:16,525 INFO Connection check task end + +2025-09-24 01:33:19,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:19,525 INFO Connection check task start + +2025-09-24 01:33:19,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:19,543 INFO Out dated connection ,size=0 + +2025-09-24 01:33:19,543 INFO Connection check task end + +2025-09-24 01:33:22,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:22,544 INFO Connection check task start + +2025-09-24 01:33:22,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:22,544 INFO Out dated connection ,size=0 + +2025-09-24 01:33:22,544 INFO Connection check task end + +2025-09-24 01:33:25,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:25,545 INFO Connection check task start + +2025-09-24 01:33:25,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:25,545 INFO Out dated connection ,size=0 + +2025-09-24 01:33:25,545 INFO Connection check task end + +2025-09-24 01:33:28,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:28,545 INFO Connection check task start + +2025-09-24 01:33:28,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:28,545 INFO Out dated connection ,size=0 + +2025-09-24 01:33:28,546 INFO Connection check task end + +2025-09-24 01:33:31,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:31,546 INFO Connection check task start + +2025-09-24 01:33:31,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:31,546 INFO Out dated connection ,size=0 + +2025-09-24 01:33:31,546 INFO Connection check task end + +2025-09-24 01:33:34,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:34,547 INFO Connection check task start + +2025-09-24 01:33:34,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:34,547 INFO Out dated connection ,size=0 + +2025-09-24 01:33:34,547 INFO Connection check task end + +2025-09-24 01:33:37,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:37,547 INFO Connection check task start + +2025-09-24 01:33:37,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:37,548 INFO Out dated connection ,size=0 + +2025-09-24 01:33:37,548 INFO Connection check task end + +2025-09-24 01:33:40,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:40,549 INFO Connection check task start + +2025-09-24 01:33:40,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:40,549 INFO Out dated connection ,size=0 + +2025-09-24 01:33:40,549 INFO Connection check task end + +2025-09-24 01:33:43,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:43,551 INFO Connection check task start + +2025-09-24 01:33:43,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:43,551 INFO Out dated connection ,size=0 + +2025-09-24 01:33:43,551 INFO Connection check task end + +2025-09-24 01:33:46,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:46,553 INFO Connection check task start + +2025-09-24 01:33:46,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:46,554 INFO Out dated connection ,size=0 + +2025-09-24 01:33:46,554 INFO Connection check task end + +2025-09-24 01:33:49,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:49,556 INFO Connection check task start + +2025-09-24 01:33:49,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:49,556 INFO Out dated connection ,size=0 + +2025-09-24 01:33:49,556 INFO Connection check task end + +2025-09-24 01:33:52,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:52,557 INFO Connection check task start + +2025-09-24 01:33:52,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:52,557 INFO Out dated connection ,size=0 + +2025-09-24 01:33:52,557 INFO Connection check task end + +2025-09-24 01:33:55,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:55,558 INFO Connection check task start + +2025-09-24 01:33:55,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:55,558 INFO Out dated connection ,size=0 + +2025-09-24 01:33:55,558 INFO Connection check task end + +2025-09-24 01:33:58,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:33:58,559 INFO Connection check task start + +2025-09-24 01:33:58,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:33:58,559 INFO Out dated connection ,size=0 + +2025-09-24 01:33:58,559 INFO Connection check task end + +2025-09-24 01:34:01,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:01,560 INFO Connection check task start + +2025-09-24 01:34:01,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:01,560 INFO Out dated connection ,size=0 + +2025-09-24 01:34:01,560 INFO Connection check task end + +2025-09-24 01:34:04,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:04,562 INFO Connection check task start + +2025-09-24 01:34:04,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:04,562 INFO Out dated connection ,size=0 + +2025-09-24 01:34:04,562 INFO Connection check task end + +2025-09-24 01:34:07,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:07,563 INFO Connection check task start + +2025-09-24 01:34:07,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:07,563 INFO Out dated connection ,size=0 + +2025-09-24 01:34:07,563 INFO Connection check task end + +2025-09-24 01:34:10,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:10,563 INFO Connection check task start + +2025-09-24 01:34:10,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:10,564 INFO Out dated connection ,size=0 + +2025-09-24 01:34:10,564 INFO Connection check task end + +2025-09-24 01:34:13,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:13,564 INFO Connection check task start + +2025-09-24 01:34:13,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:13,564 INFO Out dated connection ,size=0 + +2025-09-24 01:34:13,565 INFO Connection check task end + +2025-09-24 01:34:16,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:16,565 INFO Connection check task start + +2025-09-24 01:34:16,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:16,565 INFO Out dated connection ,size=0 + +2025-09-24 01:34:16,565 INFO Connection check task end + +2025-09-24 01:34:19,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:19,565 INFO Connection check task start + +2025-09-24 01:34:19,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:19,566 INFO Out dated connection ,size=0 + +2025-09-24 01:34:19,566 INFO Connection check task end + +2025-09-24 01:34:22,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:22,566 INFO Connection check task start + +2025-09-24 01:34:22,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:22,567 INFO Out dated connection ,size=0 + +2025-09-24 01:34:22,567 INFO Connection check task end + +2025-09-24 01:34:25,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:25,567 INFO Connection check task start + +2025-09-24 01:34:25,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:25,567 INFO Out dated connection ,size=0 + +2025-09-24 01:34:25,567 INFO Connection check task end + +2025-09-24 01:34:28,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:28,567 INFO Connection check task start + +2025-09-24 01:34:28,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:28,568 INFO Out dated connection ,size=0 + +2025-09-24 01:34:28,568 INFO Connection check task end + +2025-09-24 01:34:31,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:31,568 INFO Connection check task start + +2025-09-24 01:34:31,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:31,568 INFO Out dated connection ,size=0 + +2025-09-24 01:34:31,568 INFO Connection check task end + +2025-09-24 01:34:34,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:34,568 INFO Connection check task start + +2025-09-24 01:34:34,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:34,569 INFO Out dated connection ,size=0 + +2025-09-24 01:34:34,569 INFO Connection check task end + +2025-09-24 01:34:37,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:37,570 INFO Connection check task start + +2025-09-24 01:34:37,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:37,570 INFO Out dated connection ,size=0 + +2025-09-24 01:34:37,570 INFO Connection check task end + +2025-09-24 01:34:40,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:40,570 INFO Connection check task start + +2025-09-24 01:34:40,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:40,571 INFO Out dated connection ,size=0 + +2025-09-24 01:34:40,571 INFO Connection check task end + +2025-09-24 01:34:43,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:43,572 INFO Connection check task start + +2025-09-24 01:34:43,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:43,573 INFO Out dated connection ,size=0 + +2025-09-24 01:34:43,573 INFO Connection check task end + +2025-09-24 01:34:46,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:46,573 INFO Connection check task start + +2025-09-24 01:34:46,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:46,573 INFO Out dated connection ,size=0 + +2025-09-24 01:34:46,573 INFO Connection check task end + +2025-09-24 01:34:49,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:49,574 INFO Connection check task start + +2025-09-24 01:34:49,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:49,574 INFO Out dated connection ,size=0 + +2025-09-24 01:34:49,575 INFO Connection check task end + +2025-09-24 01:34:52,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:52,575 INFO Connection check task start + +2025-09-24 01:34:52,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:52,575 INFO Out dated connection ,size=0 + +2025-09-24 01:34:52,575 INFO Connection check task end + +2025-09-24 01:34:55,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:55,576 INFO Connection check task start + +2025-09-24 01:34:55,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:55,576 INFO Out dated connection ,size=0 + +2025-09-24 01:34:55,576 INFO Connection check task end + +2025-09-24 01:34:58,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:34:58,576 INFO Connection check task start + +2025-09-24 01:34:58,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:34:58,576 INFO Out dated connection ,size=0 + +2025-09-24 01:34:58,576 INFO Connection check task end + +2025-09-24 01:35:01,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:01,577 INFO Connection check task start + +2025-09-24 01:35:01,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:01,577 INFO Out dated connection ,size=0 + +2025-09-24 01:35:01,577 INFO Connection check task end + +2025-09-24 01:35:04,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:04,579 INFO Connection check task start + +2025-09-24 01:35:04,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:04,580 INFO Out dated connection ,size=0 + +2025-09-24 01:35:04,580 INFO Connection check task end + +2025-09-24 01:35:07,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:07,580 INFO Connection check task start + +2025-09-24 01:35:07,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:07,580 INFO Out dated connection ,size=0 + +2025-09-24 01:35:07,580 INFO Connection check task end + +2025-09-24 01:35:10,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:10,581 INFO Connection check task start + +2025-09-24 01:35:10,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:10,582 INFO Out dated connection ,size=0 + +2025-09-24 01:35:10,582 INFO Connection check task end + +2025-09-24 01:35:13,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:13,584 INFO Connection check task start + +2025-09-24 01:35:13,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:13,584 INFO Out dated connection ,size=0 + +2025-09-24 01:35:13,584 INFO Connection check task end + +2025-09-24 01:35:16,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:16,586 INFO Connection check task start + +2025-09-24 01:35:16,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:16,586 INFO Out dated connection ,size=0 + +2025-09-24 01:35:16,586 INFO Connection check task end + +2025-09-24 01:35:19,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:19,587 INFO Connection check task start + +2025-09-24 01:35:19,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:19,587 INFO Out dated connection ,size=0 + +2025-09-24 01:35:19,587 INFO Connection check task end + +2025-09-24 01:35:22,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:22,587 INFO Connection check task start + +2025-09-24 01:35:22,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:22,587 INFO Out dated connection ,size=0 + +2025-09-24 01:35:22,587 INFO Connection check task end + +2025-09-24 01:35:25,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:25,587 INFO Connection check task start + +2025-09-24 01:35:25,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:25,588 INFO Out dated connection ,size=0 + +2025-09-24 01:35:25,588 INFO Connection check task end + +2025-09-24 01:35:28,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:28,588 INFO Connection check task start + +2025-09-24 01:35:28,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:28,588 INFO Out dated connection ,size=0 + +2025-09-24 01:35:28,588 INFO Connection check task end + +2025-09-24 01:35:31,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:31,589 INFO Connection check task start + +2025-09-24 01:35:31,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:31,589 INFO Out dated connection ,size=0 + +2025-09-24 01:35:31,589 INFO Connection check task end + +2025-09-24 01:35:34,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:34,592 INFO Connection check task start + +2025-09-24 01:35:34,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:34,592 INFO Out dated connection ,size=0 + +2025-09-24 01:35:34,592 INFO Connection check task end + +2025-09-24 01:35:37,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:37,594 INFO Connection check task start + +2025-09-24 01:35:37,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:37,594 INFO Out dated connection ,size=0 + +2025-09-24 01:35:37,594 INFO Connection check task end + +2025-09-24 01:35:40,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:40,595 INFO Connection check task start + +2025-09-24 01:35:40,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:40,595 INFO Out dated connection ,size=0 + +2025-09-24 01:35:40,595 INFO Connection check task end + +2025-09-24 01:35:43,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:43,596 INFO Connection check task start + +2025-09-24 01:35:43,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:43,596 INFO Out dated connection ,size=0 + +2025-09-24 01:35:43,596 INFO Connection check task end + +2025-09-24 01:35:46,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:46,597 INFO Connection check task start + +2025-09-24 01:35:46,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:46,597 INFO Out dated connection ,size=0 + +2025-09-24 01:35:46,597 INFO Connection check task end + +2025-09-24 01:35:49,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:49,599 INFO Connection check task start + +2025-09-24 01:35:49,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:49,599 INFO Out dated connection ,size=0 + +2025-09-24 01:35:49,599 INFO Connection check task end + +2025-09-24 01:35:52,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:52,599 INFO Connection check task start + +2025-09-24 01:35:52,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:52,599 INFO Out dated connection ,size=0 + +2025-09-24 01:35:52,599 INFO Connection check task end + +2025-09-24 01:35:55,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:55,601 INFO Connection check task start + +2025-09-24 01:35:55,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:55,601 INFO Out dated connection ,size=0 + +2025-09-24 01:35:55,601 INFO Connection check task end + +2025-09-24 01:35:58,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:35:58,603 INFO Connection check task start + +2025-09-24 01:35:58,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:35:58,603 INFO Out dated connection ,size=0 + +2025-09-24 01:35:58,603 INFO Connection check task end + +2025-09-24 01:36:01,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:01,606 INFO Connection check task start + +2025-09-24 01:36:01,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:01,606 INFO Out dated connection ,size=0 + +2025-09-24 01:36:01,606 INFO Connection check task end + +2025-09-24 01:36:04,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:04,606 INFO Connection check task start + +2025-09-24 01:36:04,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:04,606 INFO Out dated connection ,size=0 + +2025-09-24 01:36:04,606 INFO Connection check task end + +2025-09-24 01:36:07,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:07,608 INFO Connection check task start + +2025-09-24 01:36:07,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:07,608 INFO Out dated connection ,size=0 + +2025-09-24 01:36:07,608 INFO Connection check task end + +2025-09-24 01:36:10,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:10,608 INFO Connection check task start + +2025-09-24 01:36:10,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:10,609 INFO Out dated connection ,size=0 + +2025-09-24 01:36:10,609 INFO Connection check task end + +2025-09-24 01:36:13,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:13,611 INFO Connection check task start + +2025-09-24 01:36:13,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:13,611 INFO Out dated connection ,size=0 + +2025-09-24 01:36:13,611 INFO Connection check task end + +2025-09-24 01:36:16,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:16,613 INFO Connection check task start + +2025-09-24 01:36:16,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:16,613 INFO Out dated connection ,size=0 + +2025-09-24 01:36:16,613 INFO Connection check task end + +2025-09-24 01:36:19,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:19,613 INFO Connection check task start + +2025-09-24 01:36:19,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:19,613 INFO Out dated connection ,size=0 + +2025-09-24 01:36:19,613 INFO Connection check task end + +2025-09-24 01:36:22,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:22,613 INFO Connection check task start + +2025-09-24 01:36:22,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:22,614 INFO Out dated connection ,size=0 + +2025-09-24 01:36:22,614 INFO Connection check task end + +2025-09-24 01:36:25,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:25,616 INFO Connection check task start + +2025-09-24 01:36:25,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:25,616 INFO Out dated connection ,size=0 + +2025-09-24 01:36:25,616 INFO Connection check task end + +2025-09-24 01:36:28,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:28,616 INFO Connection check task start + +2025-09-24 01:36:28,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:28,617 INFO Out dated connection ,size=0 + +2025-09-24 01:36:28,617 INFO Connection check task end + +2025-09-24 01:36:31,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:31,619 INFO Connection check task start + +2025-09-24 01:36:31,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:31,619 INFO Out dated connection ,size=0 + +2025-09-24 01:36:31,619 INFO Connection check task end + +2025-09-24 01:36:34,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:34,620 INFO Connection check task start + +2025-09-24 01:36:34,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:34,620 INFO Out dated connection ,size=0 + +2025-09-24 01:36:34,620 INFO Connection check task end + +2025-09-24 01:36:37,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:37,622 INFO Connection check task start + +2025-09-24 01:36:37,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:37,622 INFO Out dated connection ,size=0 + +2025-09-24 01:36:37,622 INFO Connection check task end + +2025-09-24 01:36:40,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:40,624 INFO Connection check task start + +2025-09-24 01:36:40,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:40,624 INFO Out dated connection ,size=0 + +2025-09-24 01:36:40,625 INFO Connection check task end + +2025-09-24 01:36:43,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:43,625 INFO Connection check task start + +2025-09-24 01:36:43,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:43,625 INFO Out dated connection ,size=0 + +2025-09-24 01:36:43,625 INFO Connection check task end + +2025-09-24 01:36:46,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:46,626 INFO Connection check task start + +2025-09-24 01:36:46,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:46,626 INFO Out dated connection ,size=0 + +2025-09-24 01:36:46,626 INFO Connection check task end + +2025-09-24 01:36:49,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:49,628 INFO Connection check task start + +2025-09-24 01:36:49,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:49,629 INFO Out dated connection ,size=0 + +2025-09-24 01:36:49,629 INFO Connection check task end + +2025-09-24 01:36:52,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:52,629 INFO Connection check task start + +2025-09-24 01:36:52,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:52,629 INFO Out dated connection ,size=0 + +2025-09-24 01:36:52,629 INFO Connection check task end + +2025-09-24 01:36:55,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:55,631 INFO Connection check task start + +2025-09-24 01:36:55,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:55,632 INFO Out dated connection ,size=0 + +2025-09-24 01:36:55,632 INFO Connection check task end + +2025-09-24 01:36:58,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:36:58,632 INFO Connection check task start + +2025-09-24 01:36:58,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:36:58,632 INFO Out dated connection ,size=0 + +2025-09-24 01:36:58,632 INFO Connection check task end + +2025-09-24 01:37:01,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:01,634 INFO Connection check task start + +2025-09-24 01:37:01,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:01,634 INFO Out dated connection ,size=0 + +2025-09-24 01:37:01,635 INFO Connection check task end + +2025-09-24 01:37:04,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:04,635 INFO Connection check task start + +2025-09-24 01:37:04,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:04,635 INFO Out dated connection ,size=0 + +2025-09-24 01:37:04,635 INFO Connection check task end + +2025-09-24 01:37:07,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:07,637 INFO Connection check task start + +2025-09-24 01:37:07,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:07,637 INFO Out dated connection ,size=0 + +2025-09-24 01:37:07,637 INFO Connection check task end + +2025-09-24 01:37:10,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:10,639 INFO Connection check task start + +2025-09-24 01:37:10,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:10,639 INFO Out dated connection ,size=0 + +2025-09-24 01:37:10,639 INFO Connection check task end + +2025-09-24 01:37:13,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:13,639 INFO Connection check task start + +2025-09-24 01:37:13,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:13,639 INFO Out dated connection ,size=0 + +2025-09-24 01:37:13,639 INFO Connection check task end + +2025-09-24 01:37:16,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:16,640 INFO Connection check task start + +2025-09-24 01:37:16,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:16,640 INFO Out dated connection ,size=0 + +2025-09-24 01:37:16,640 INFO Connection check task end + +2025-09-24 01:37:19,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:19,642 INFO Connection check task start + +2025-09-24 01:37:19,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:19,642 INFO Out dated connection ,size=0 + +2025-09-24 01:37:19,642 INFO Connection check task end + +2025-09-24 01:37:22,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:22,643 INFO Connection check task start + +2025-09-24 01:37:22,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:22,643 INFO Out dated connection ,size=0 + +2025-09-24 01:37:22,643 INFO Connection check task end + +2025-09-24 01:37:25,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:25,645 INFO Connection check task start + +2025-09-24 01:37:25,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:25,646 INFO Out dated connection ,size=0 + +2025-09-24 01:37:25,646 INFO Connection check task end + +2025-09-24 01:37:28,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:28,646 INFO Connection check task start + +2025-09-24 01:37:28,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:28,646 INFO Out dated connection ,size=0 + +2025-09-24 01:37:28,646 INFO Connection check task end + +2025-09-24 01:37:31,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:31,648 INFO Connection check task start + +2025-09-24 01:37:31,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:31,648 INFO Out dated connection ,size=0 + +2025-09-24 01:37:31,648 INFO Connection check task end + +2025-09-24 01:37:34,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:34,649 INFO Connection check task start + +2025-09-24 01:37:34,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:34,649 INFO Out dated connection ,size=0 + +2025-09-24 01:37:34,649 INFO Connection check task end + +2025-09-24 01:37:37,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:37,651 INFO Connection check task start + +2025-09-24 01:37:37,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:37,651 INFO Out dated connection ,size=0 + +2025-09-24 01:37:37,651 INFO Connection check task end + +2025-09-24 01:37:40,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:40,653 INFO Connection check task start + +2025-09-24 01:37:40,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:40,653 INFO Out dated connection ,size=0 + +2025-09-24 01:37:40,653 INFO Connection check task end + +2025-09-24 01:37:43,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:43,656 INFO Connection check task start + +2025-09-24 01:37:43,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:43,656 INFO Out dated connection ,size=0 + +2025-09-24 01:37:43,656 INFO Connection check task end + +2025-09-24 01:37:46,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:46,656 INFO Connection check task start + +2025-09-24 01:37:46,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:46,657 INFO Out dated connection ,size=0 + +2025-09-24 01:37:46,657 INFO Connection check task end + +2025-09-24 01:37:49,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:49,657 INFO Connection check task start + +2025-09-24 01:37:49,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:49,657 INFO Out dated connection ,size=0 + +2025-09-24 01:37:49,657 INFO Connection check task end + +2025-09-24 01:37:52,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:52,658 INFO Connection check task start + +2025-09-24 01:37:52,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:52,658 INFO Out dated connection ,size=0 + +2025-09-24 01:37:52,658 INFO Connection check task end + +2025-09-24 01:37:55,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:55,659 INFO Connection check task start + +2025-09-24 01:37:55,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:55,659 INFO Out dated connection ,size=0 + +2025-09-24 01:37:55,659 INFO Connection check task end + +2025-09-24 01:37:58,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:37:58,659 INFO Connection check task start + +2025-09-24 01:37:58,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:37:58,660 INFO Out dated connection ,size=0 + +2025-09-24 01:37:58,660 INFO Connection check task end + +2025-09-24 01:38:01,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:01,662 INFO Connection check task start + +2025-09-24 01:38:01,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:01,662 INFO Out dated connection ,size=0 + +2025-09-24 01:38:01,662 INFO Connection check task end + +2025-09-24 01:38:04,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:04,662 INFO Connection check task start + +2025-09-24 01:38:04,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:04,662 INFO Out dated connection ,size=0 + +2025-09-24 01:38:04,662 INFO Connection check task end + +2025-09-24 01:38:07,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:07,663 INFO Connection check task start + +2025-09-24 01:38:07,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:07,663 INFO Out dated connection ,size=0 + +2025-09-24 01:38:07,663 INFO Connection check task end + +2025-09-24 01:38:10,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:10,664 INFO Connection check task start + +2025-09-24 01:38:10,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:10,664 INFO Out dated connection ,size=0 + +2025-09-24 01:38:10,664 INFO Connection check task end + +2025-09-24 01:38:13,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:13,666 INFO Connection check task start + +2025-09-24 01:38:13,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:13,667 INFO Out dated connection ,size=0 + +2025-09-24 01:38:13,667 INFO Connection check task end + +2025-09-24 01:38:16,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:16,667 INFO Connection check task start + +2025-09-24 01:38:16,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:16,667 INFO Out dated connection ,size=0 + +2025-09-24 01:38:16,667 INFO Connection check task end + +2025-09-24 01:38:19,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:19,669 INFO Connection check task start + +2025-09-24 01:38:19,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:19,669 INFO Out dated connection ,size=0 + +2025-09-24 01:38:19,669 INFO Connection check task end + +2025-09-24 01:38:22,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:22,671 INFO Connection check task start + +2025-09-24 01:38:22,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:22,671 INFO Out dated connection ,size=0 + +2025-09-24 01:38:22,671 INFO Connection check task end + +2025-09-24 01:38:25,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:25,671 INFO Connection check task start + +2025-09-24 01:38:25,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:25,672 INFO Out dated connection ,size=0 + +2025-09-24 01:38:25,672 INFO Connection check task end + +2025-09-24 01:38:28,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:28,672 INFO Connection check task start + +2025-09-24 01:38:28,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:28,672 INFO Out dated connection ,size=0 + +2025-09-24 01:38:28,672 INFO Connection check task end + +2025-09-24 01:38:31,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:31,672 INFO Connection check task start + +2025-09-24 01:38:31,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:31,672 INFO Out dated connection ,size=0 + +2025-09-24 01:38:31,672 INFO Connection check task end + +2025-09-24 01:38:34,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:34,673 INFO Connection check task start + +2025-09-24 01:38:34,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:34,673 INFO Out dated connection ,size=0 + +2025-09-24 01:38:34,673 INFO Connection check task end + +2025-09-24 01:38:37,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:37,674 INFO Connection check task start + +2025-09-24 01:38:37,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:37,674 INFO Out dated connection ,size=0 + +2025-09-24 01:38:37,674 INFO Connection check task end + +2025-09-24 01:38:40,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:40,675 INFO Connection check task start + +2025-09-24 01:38:40,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:40,675 INFO Out dated connection ,size=0 + +2025-09-24 01:38:40,675 INFO Connection check task end + +2025-09-24 01:38:43,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:43,675 INFO Connection check task start + +2025-09-24 01:38:43,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:43,675 INFO Out dated connection ,size=0 + +2025-09-24 01:38:43,675 INFO Connection check task end + +2025-09-24 01:38:46,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:46,676 INFO Connection check task start + +2025-09-24 01:38:46,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:46,677 INFO Out dated connection ,size=0 + +2025-09-24 01:38:46,677 INFO Connection check task end + +2025-09-24 01:38:49,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:49,678 INFO Connection check task start + +2025-09-24 01:38:49,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:49,678 INFO Out dated connection ,size=0 + +2025-09-24 01:38:49,678 INFO Connection check task end + +2025-09-24 01:38:52,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:52,680 INFO Connection check task start + +2025-09-24 01:38:52,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:52,680 INFO Out dated connection ,size=0 + +2025-09-24 01:38:52,680 INFO Connection check task end + +2025-09-24 01:38:55,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:55,681 INFO Connection check task start + +2025-09-24 01:38:55,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:55,681 INFO Out dated connection ,size=0 + +2025-09-24 01:38:55,681 INFO Connection check task end + +2025-09-24 01:38:58,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:38:58,682 INFO Connection check task start + +2025-09-24 01:38:58,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:38:58,682 INFO Out dated connection ,size=0 + +2025-09-24 01:38:58,682 INFO Connection check task end + +2025-09-24 01:39:01,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:01,683 INFO Connection check task start + +2025-09-24 01:39:01,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:01,683 INFO Out dated connection ,size=0 + +2025-09-24 01:39:01,683 INFO Connection check task end + +2025-09-24 01:39:04,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:04,683 INFO Connection check task start + +2025-09-24 01:39:04,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:04,684 INFO Out dated connection ,size=0 + +2025-09-24 01:39:04,684 INFO Connection check task end + +2025-09-24 01:39:07,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:07,684 INFO Connection check task start + +2025-09-24 01:39:07,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:07,685 INFO Out dated connection ,size=0 + +2025-09-24 01:39:07,685 INFO Connection check task end + +2025-09-24 01:39:10,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:10,685 INFO Connection check task start + +2025-09-24 01:39:10,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:10,685 INFO Out dated connection ,size=0 + +2025-09-24 01:39:10,685 INFO Connection check task end + +2025-09-24 01:39:13,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:13,687 INFO Connection check task start + +2025-09-24 01:39:13,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:13,688 INFO Out dated connection ,size=0 + +2025-09-24 01:39:13,688 INFO Connection check task end + +2025-09-24 01:39:16,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:16,688 INFO Connection check task start + +2025-09-24 01:39:16,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:16,688 INFO Out dated connection ,size=0 + +2025-09-24 01:39:16,688 INFO Connection check task end + +2025-09-24 01:39:19,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:19,690 INFO Connection check task start + +2025-09-24 01:39:19,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:19,690 INFO Out dated connection ,size=0 + +2025-09-24 01:39:19,690 INFO Connection check task end + +2025-09-24 01:39:22,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:22,691 INFO Connection check task start + +2025-09-24 01:39:22,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:22,692 INFO Out dated connection ,size=0 + +2025-09-24 01:39:22,692 INFO Connection check task end + +2025-09-24 01:39:25,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:25,692 INFO Connection check task start + +2025-09-24 01:39:25,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:25,692 INFO Out dated connection ,size=0 + +2025-09-24 01:39:25,692 INFO Connection check task end + +2025-09-24 01:39:28,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:28,692 INFO Connection check task start + +2025-09-24 01:39:28,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:28,692 INFO Out dated connection ,size=0 + +2025-09-24 01:39:28,692 INFO Connection check task end + +2025-09-24 01:39:31,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:31,695 INFO Connection check task start + +2025-09-24 01:39:31,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:31,695 INFO Out dated connection ,size=0 + +2025-09-24 01:39:31,695 INFO Connection check task end + +2025-09-24 01:39:34,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:34,697 INFO Connection check task start + +2025-09-24 01:39:34,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:34,697 INFO Out dated connection ,size=0 + +2025-09-24 01:39:34,697 INFO Connection check task end + +2025-09-24 01:39:37,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:37,697 INFO Connection check task start + +2025-09-24 01:39:37,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:37,698 INFO Out dated connection ,size=0 + +2025-09-24 01:39:37,698 INFO Connection check task end + +2025-09-24 01:39:40,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:40,700 INFO Connection check task start + +2025-09-24 01:39:40,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:40,700 INFO Out dated connection ,size=0 + +2025-09-24 01:39:40,700 INFO Connection check task end + +2025-09-24 01:39:43,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:43,702 INFO Connection check task start + +2025-09-24 01:39:43,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:43,702 INFO Out dated connection ,size=0 + +2025-09-24 01:39:43,702 INFO Connection check task end + +2025-09-24 01:39:46,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:46,703 INFO Connection check task start + +2025-09-24 01:39:46,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:46,703 INFO Out dated connection ,size=0 + +2025-09-24 01:39:46,703 INFO Connection check task end + +2025-09-24 01:39:49,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:49,704 INFO Connection check task start + +2025-09-24 01:39:49,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:49,704 INFO Out dated connection ,size=0 + +2025-09-24 01:39:49,704 INFO Connection check task end + +2025-09-24 01:39:52,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:52,704 INFO Connection check task start + +2025-09-24 01:39:52,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:52,708 INFO Out dated connection ,size=0 + +2025-09-24 01:39:52,708 INFO Connection check task end + +2025-09-24 01:39:55,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:55,708 INFO Connection check task start + +2025-09-24 01:39:55,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:55,709 INFO Out dated connection ,size=0 + +2025-09-24 01:39:55,709 INFO Connection check task end + +2025-09-24 01:39:58,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:39:58,710 INFO Connection check task start + +2025-09-24 01:39:58,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:39:58,710 INFO Out dated connection ,size=0 + +2025-09-24 01:39:58,710 INFO Connection check task end + +2025-09-24 01:40:01,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:01,712 INFO Connection check task start + +2025-09-24 01:40:01,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:01,712 INFO Out dated connection ,size=0 + +2025-09-24 01:40:01,712 INFO Connection check task end + +2025-09-24 01:40:04,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:04,712 INFO Connection check task start + +2025-09-24 01:40:04,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:04,712 INFO Out dated connection ,size=0 + +2025-09-24 01:40:04,712 INFO Connection check task end + +2025-09-24 01:40:07,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:07,713 INFO Connection check task start + +2025-09-24 01:40:07,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:07,713 INFO Out dated connection ,size=0 + +2025-09-24 01:40:07,713 INFO Connection check task end + +2025-09-24 01:40:10,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:10,714 INFO Connection check task start + +2025-09-24 01:40:10,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:10,714 INFO Out dated connection ,size=0 + +2025-09-24 01:40:10,714 INFO Connection check task end + +2025-09-24 01:40:13,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:13,716 INFO Connection check task start + +2025-09-24 01:40:13,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:13,716 INFO Out dated connection ,size=0 + +2025-09-24 01:40:13,716 INFO Connection check task end + +2025-09-24 01:40:16,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:16,716 INFO Connection check task start + +2025-09-24 01:40:16,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:16,716 INFO Out dated connection ,size=0 + +2025-09-24 01:40:16,716 INFO Connection check task end + +2025-09-24 01:40:19,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:19,717 INFO Connection check task start + +2025-09-24 01:40:19,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:19,717 INFO Out dated connection ,size=0 + +2025-09-24 01:40:19,717 INFO Connection check task end + +2025-09-24 01:40:22,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:22,717 INFO Connection check task start + +2025-09-24 01:40:22,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:22,718 INFO Out dated connection ,size=0 + +2025-09-24 01:40:22,718 INFO Connection check task end + +2025-09-24 01:40:25,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:25,718 INFO Connection check task start + +2025-09-24 01:40:25,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:25,719 INFO Out dated connection ,size=0 + +2025-09-24 01:40:25,719 INFO Connection check task end + +2025-09-24 01:40:28,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:28,719 INFO Connection check task start + +2025-09-24 01:40:28,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:28,719 INFO Out dated connection ,size=0 + +2025-09-24 01:40:28,719 INFO Connection check task end + +2025-09-24 01:40:31,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:31,720 INFO Connection check task start + +2025-09-24 01:40:31,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:31,720 INFO Out dated connection ,size=0 + +2025-09-24 01:40:31,720 INFO Connection check task end + +2025-09-24 01:40:34,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:34,720 INFO Connection check task start + +2025-09-24 01:40:34,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:34,720 INFO Out dated connection ,size=0 + +2025-09-24 01:40:34,721 INFO Connection check task end + +2025-09-24 01:40:37,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:37,722 INFO Connection check task start + +2025-09-24 01:40:37,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:37,723 INFO Out dated connection ,size=0 + +2025-09-24 01:40:37,723 INFO Connection check task end + +2025-09-24 01:40:40,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:40,723 INFO Connection check task start + +2025-09-24 01:40:40,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:40,724 INFO Out dated connection ,size=0 + +2025-09-24 01:40:40,724 INFO Connection check task end + +2025-09-24 01:40:43,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:43,724 INFO Connection check task start + +2025-09-24 01:40:43,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:43,725 INFO Out dated connection ,size=0 + +2025-09-24 01:40:43,725 INFO Connection check task end + +2025-09-24 01:40:46,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:46,725 INFO Connection check task start + +2025-09-24 01:40:46,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:46,725 INFO Out dated connection ,size=0 + +2025-09-24 01:40:46,725 INFO Connection check task end + +2025-09-24 01:40:49,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:49,726 INFO Connection check task start + +2025-09-24 01:40:49,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:49,726 INFO Out dated connection ,size=0 + +2025-09-24 01:40:49,726 INFO Connection check task end + +2025-09-24 01:40:52,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:52,727 INFO Connection check task start + +2025-09-24 01:40:52,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:52,727 INFO Out dated connection ,size=0 + +2025-09-24 01:40:52,727 INFO Connection check task end + +2025-09-24 01:40:55,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:55,728 INFO Connection check task start + +2025-09-24 01:40:55,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:55,728 INFO Out dated connection ,size=0 + +2025-09-24 01:40:55,728 INFO Connection check task end + +2025-09-24 01:40:58,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:40:58,730 INFO Connection check task start + +2025-09-24 01:40:58,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:40:58,730 INFO Out dated connection ,size=0 + +2025-09-24 01:40:58,730 INFO Connection check task end + +2025-09-24 01:41:01,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:01,730 INFO Connection check task start + +2025-09-24 01:41:01,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:01,730 INFO Out dated connection ,size=0 + +2025-09-24 01:41:01,730 INFO Connection check task end + +2025-09-24 01:41:04,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:04,731 INFO Connection check task start + +2025-09-24 01:41:04,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:04,732 INFO Out dated connection ,size=0 + +2025-09-24 01:41:04,732 INFO Connection check task end + +2025-09-24 01:41:07,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:07,732 INFO Connection check task start + +2025-09-24 01:41:07,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:07,732 INFO Out dated connection ,size=0 + +2025-09-24 01:41:07,733 INFO Connection check task end + +2025-09-24 01:41:10,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:10,733 INFO Connection check task start + +2025-09-24 01:41:10,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:10,733 INFO Out dated connection ,size=0 + +2025-09-24 01:41:10,733 INFO Connection check task end + +2025-09-24 01:41:13,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:13,733 INFO Connection check task start + +2025-09-24 01:41:13,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:13,734 INFO Out dated connection ,size=0 + +2025-09-24 01:41:13,734 INFO Connection check task end + +2025-09-24 01:41:16,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:16,734 INFO Connection check task start + +2025-09-24 01:41:16,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:16,734 INFO Out dated connection ,size=0 + +2025-09-24 01:41:16,734 INFO Connection check task end + +2025-09-24 01:41:19,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:19,735 INFO Connection check task start + +2025-09-24 01:41:19,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:19,735 INFO Out dated connection ,size=0 + +2025-09-24 01:41:19,735 INFO Connection check task end + +2025-09-24 01:41:22,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:22,736 INFO Connection check task start + +2025-09-24 01:41:22,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:22,736 INFO Out dated connection ,size=0 + +2025-09-24 01:41:22,736 INFO Connection check task end + +2025-09-24 01:41:25,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:25,736 INFO Connection check task start + +2025-09-24 01:41:25,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:25,737 INFO Out dated connection ,size=0 + +2025-09-24 01:41:25,737 INFO Connection check task end + +2025-09-24 01:41:28,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:28,737 INFO Connection check task start + +2025-09-24 01:41:28,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:28,737 INFO Out dated connection ,size=0 + +2025-09-24 01:41:28,737 INFO Connection check task end + +2025-09-24 01:41:31,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:31,738 INFO Connection check task start + +2025-09-24 01:41:31,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:31,738 INFO Out dated connection ,size=0 + +2025-09-24 01:41:31,738 INFO Connection check task end + +2025-09-24 01:41:34,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:34,738 INFO Connection check task start + +2025-09-24 01:41:34,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:34,739 INFO Out dated connection ,size=0 + +2025-09-24 01:41:34,739 INFO Connection check task end + +2025-09-24 01:41:37,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:37,739 INFO Connection check task start + +2025-09-24 01:41:37,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:37,739 INFO Out dated connection ,size=0 + +2025-09-24 01:41:37,739 INFO Connection check task end + +2025-09-24 01:41:40,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:40,740 INFO Connection check task start + +2025-09-24 01:41:40,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:40,740 INFO Out dated connection ,size=0 + +2025-09-24 01:41:40,740 INFO Connection check task end + +2025-09-24 01:41:43,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:43,740 INFO Connection check task start + +2025-09-24 01:41:43,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:43,740 INFO Out dated connection ,size=0 + +2025-09-24 01:41:43,740 INFO Connection check task end + +2025-09-24 01:41:46,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:46,741 INFO Connection check task start + +2025-09-24 01:41:46,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:46,741 INFO Out dated connection ,size=0 + +2025-09-24 01:41:46,741 INFO Connection check task end + +2025-09-24 01:41:49,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:49,741 INFO Connection check task start + +2025-09-24 01:41:49,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:49,742 INFO Out dated connection ,size=0 + +2025-09-24 01:41:49,742 INFO Connection check task end + +2025-09-24 01:41:52,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:52,742 INFO Connection check task start + +2025-09-24 01:41:52,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:52,742 INFO Out dated connection ,size=0 + +2025-09-24 01:41:52,742 INFO Connection check task end + +2025-09-24 01:41:55,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:55,743 INFO Connection check task start + +2025-09-24 01:41:55,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:55,744 INFO Out dated connection ,size=0 + +2025-09-24 01:41:55,744 INFO Connection check task end + +2025-09-24 01:41:58,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:41:58,744 INFO Connection check task start + +2025-09-24 01:41:58,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:41:58,744 INFO Out dated connection ,size=0 + +2025-09-24 01:41:58,744 INFO Connection check task end + +2025-09-24 01:42:01,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:01,746 INFO Connection check task start + +2025-09-24 01:42:01,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:01,746 INFO Out dated connection ,size=0 + +2025-09-24 01:42:01,746 INFO Connection check task end + +2025-09-24 01:42:04,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:04,748 INFO Connection check task start + +2025-09-24 01:42:04,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:04,748 INFO Out dated connection ,size=0 + +2025-09-24 01:42:04,748 INFO Connection check task end + +2025-09-24 01:42:07,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:07,748 INFO Connection check task start + +2025-09-24 01:42:07,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:07,748 INFO Out dated connection ,size=0 + +2025-09-24 01:42:07,748 INFO Connection check task end + +2025-09-24 01:42:10,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:10,750 INFO Connection check task start + +2025-09-24 01:42:10,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:10,751 INFO Out dated connection ,size=0 + +2025-09-24 01:42:10,751 INFO Connection check task end + +2025-09-24 01:42:13,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:13,751 INFO Connection check task start + +2025-09-24 01:42:13,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:13,751 INFO Out dated connection ,size=0 + +2025-09-24 01:42:13,751 INFO Connection check task end + +2025-09-24 01:42:16,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:16,751 INFO Connection check task start + +2025-09-24 01:42:16,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:16,752 INFO Out dated connection ,size=0 + +2025-09-24 01:42:16,752 INFO Connection check task end + +2025-09-24 01:42:19,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:19,752 INFO Connection check task start + +2025-09-24 01:42:19,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:19,752 INFO Out dated connection ,size=0 + +2025-09-24 01:42:19,752 INFO Connection check task end + +2025-09-24 01:42:22,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:22,753 INFO Connection check task start + +2025-09-24 01:42:22,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:22,754 INFO Out dated connection ,size=0 + +2025-09-24 01:42:22,754 INFO Connection check task end + +2025-09-24 01:42:25,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:25,756 INFO Connection check task start + +2025-09-24 01:42:25,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:25,756 INFO Out dated connection ,size=0 + +2025-09-24 01:42:25,756 INFO Connection check task end + +2025-09-24 01:42:28,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:28,756 INFO Connection check task start + +2025-09-24 01:42:28,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:28,756 INFO Out dated connection ,size=0 + +2025-09-24 01:42:28,756 INFO Connection check task end + +2025-09-24 01:42:31,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:31,758 INFO Connection check task start + +2025-09-24 01:42:31,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:31,758 INFO Out dated connection ,size=0 + +2025-09-24 01:42:31,758 INFO Connection check task end + +2025-09-24 01:42:34,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:34,759 INFO Connection check task start + +2025-09-24 01:42:34,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:34,759 INFO Out dated connection ,size=0 + +2025-09-24 01:42:34,759 INFO Connection check task end + +2025-09-24 01:42:37,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:37,761 INFO Connection check task start + +2025-09-24 01:42:37,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:37,762 INFO Out dated connection ,size=0 + +2025-09-24 01:42:37,762 INFO Connection check task end + +2025-09-24 01:42:40,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:40,762 INFO Connection check task start + +2025-09-24 01:42:40,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:40,762 INFO Out dated connection ,size=0 + +2025-09-24 01:42:40,762 INFO Connection check task end + +2025-09-24 01:42:43,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:43,763 INFO Connection check task start + +2025-09-24 01:42:43,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:43,763 INFO Out dated connection ,size=0 + +2025-09-24 01:42:43,763 INFO Connection check task end + +2025-09-24 01:42:46,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:46,763 INFO Connection check task start + +2025-09-24 01:42:46,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:46,764 INFO Out dated connection ,size=0 + +2025-09-24 01:42:46,764 INFO Connection check task end + +2025-09-24 01:42:49,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:49,764 INFO Connection check task start + +2025-09-24 01:42:49,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:49,764 INFO Out dated connection ,size=0 + +2025-09-24 01:42:49,764 INFO Connection check task end + +2025-09-24 01:42:52,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:52,765 INFO Connection check task start + +2025-09-24 01:42:52,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:52,765 INFO Out dated connection ,size=0 + +2025-09-24 01:42:52,765 INFO Connection check task end + +2025-09-24 01:42:55,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:55,766 INFO Connection check task start + +2025-09-24 01:42:55,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:55,766 INFO Out dated connection ,size=0 + +2025-09-24 01:42:55,766 INFO Connection check task end + +2025-09-24 01:42:58,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:42:58,766 INFO Connection check task start + +2025-09-24 01:42:58,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:42:58,766 INFO Out dated connection ,size=0 + +2025-09-24 01:42:58,766 INFO Connection check task end + +2025-09-24 01:43:01,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:01,767 INFO Connection check task start + +2025-09-24 01:43:01,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:01,767 INFO Out dated connection ,size=0 + +2025-09-24 01:43:01,767 INFO Connection check task end + +2025-09-24 01:43:04,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:04,767 INFO Connection check task start + +2025-09-24 01:43:04,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:04,768 INFO Out dated connection ,size=0 + +2025-09-24 01:43:04,768 INFO Connection check task end + +2025-09-24 01:43:07,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:07,769 INFO Connection check task start + +2025-09-24 01:43:07,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:07,769 INFO Out dated connection ,size=0 + +2025-09-24 01:43:07,769 INFO Connection check task end + +2025-09-24 01:43:10,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:10,769 INFO Connection check task start + +2025-09-24 01:43:10,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:10,770 INFO Out dated connection ,size=0 + +2025-09-24 01:43:10,770 INFO Connection check task end + +2025-09-24 01:43:13,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:13,770 INFO Connection check task start + +2025-09-24 01:43:13,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:13,770 INFO Out dated connection ,size=0 + +2025-09-24 01:43:13,770 INFO Connection check task end + +2025-09-24 01:43:16,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:16,771 INFO Connection check task start + +2025-09-24 01:43:16,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:16,771 INFO Out dated connection ,size=0 + +2025-09-24 01:43:16,771 INFO Connection check task end + +2025-09-24 01:43:19,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:19,773 INFO Connection check task start + +2025-09-24 01:43:19,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:19,773 INFO Out dated connection ,size=0 + +2025-09-24 01:43:19,773 INFO Connection check task end + +2025-09-24 01:43:22,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:22,774 INFO Connection check task start + +2025-09-24 01:43:22,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:22,774 INFO Out dated connection ,size=0 + +2025-09-24 01:43:22,774 INFO Connection check task end + +2025-09-24 01:43:25,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:25,777 INFO Connection check task start + +2025-09-24 01:43:25,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:25,777 INFO Out dated connection ,size=0 + +2025-09-24 01:43:25,777 INFO Connection check task end + +2025-09-24 01:43:28,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:28,779 INFO Connection check task start + +2025-09-24 01:43:28,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:28,779 INFO Out dated connection ,size=0 + +2025-09-24 01:43:28,779 INFO Connection check task end + +2025-09-24 01:43:31,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:31,779 INFO Connection check task start + +2025-09-24 01:43:31,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:31,779 INFO Out dated connection ,size=0 + +2025-09-24 01:43:31,780 INFO Connection check task end + +2025-09-24 01:43:34,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:34,780 INFO Connection check task start + +2025-09-24 01:43:34,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:34,780 INFO Out dated connection ,size=0 + +2025-09-24 01:43:34,780 INFO Connection check task end + +2025-09-24 01:43:37,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:37,782 INFO Connection check task start + +2025-09-24 01:43:37,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:37,784 INFO Out dated connection ,size=0 + +2025-09-24 01:43:37,784 INFO Connection check task end + +2025-09-24 01:43:40,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:40,785 INFO Connection check task start + +2025-09-24 01:43:40,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:40,785 INFO Out dated connection ,size=0 + +2025-09-24 01:43:40,785 INFO Connection check task end + +2025-09-24 01:43:43,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:43,786 INFO Connection check task start + +2025-09-24 01:43:43,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:43,786 INFO Out dated connection ,size=0 + +2025-09-24 01:43:43,786 INFO Connection check task end + +2025-09-24 01:43:46,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:46,786 INFO Connection check task start + +2025-09-24 01:43:46,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:46,786 INFO Out dated connection ,size=0 + +2025-09-24 01:43:46,786 INFO Connection check task end + +2025-09-24 01:43:49,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:49,787 INFO Connection check task start + +2025-09-24 01:43:49,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:49,787 INFO Out dated connection ,size=0 + +2025-09-24 01:43:49,787 INFO Connection check task end + +2025-09-24 01:43:52,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:52,788 INFO Connection check task start + +2025-09-24 01:43:52,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:52,788 INFO Out dated connection ,size=0 + +2025-09-24 01:43:52,788 INFO Connection check task end + +2025-09-24 01:43:55,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:55,790 INFO Connection check task start + +2025-09-24 01:43:55,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:55,790 INFO Out dated connection ,size=0 + +2025-09-24 01:43:55,790 INFO Connection check task end + +2025-09-24 01:43:58,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:43:58,791 INFO Connection check task start + +2025-09-24 01:43:58,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:43:58,791 INFO Out dated connection ,size=0 + +2025-09-24 01:43:58,791 INFO Connection check task end + +2025-09-24 01:44:01,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:01,791 INFO Connection check task start + +2025-09-24 01:44:01,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:01,792 INFO Out dated connection ,size=0 + +2025-09-24 01:44:01,792 INFO Connection check task end + +2025-09-24 01:44:04,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:04,792 INFO Connection check task start + +2025-09-24 01:44:04,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:04,792 INFO Out dated connection ,size=0 + +2025-09-24 01:44:04,792 INFO Connection check task end + +2025-09-24 01:44:07,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:07,793 INFO Connection check task start + +2025-09-24 01:44:07,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:07,793 INFO Out dated connection ,size=0 + +2025-09-24 01:44:07,793 INFO Connection check task end + +2025-09-24 01:44:10,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:10,793 INFO Connection check task start + +2025-09-24 01:44:10,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:10,793 INFO Out dated connection ,size=0 + +2025-09-24 01:44:10,793 INFO Connection check task end + +2025-09-24 01:44:13,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:13,795 INFO Connection check task start + +2025-09-24 01:44:13,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:13,795 INFO Out dated connection ,size=0 + +2025-09-24 01:44:13,795 INFO Connection check task end + +2025-09-24 01:44:16,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:16,797 INFO Connection check task start + +2025-09-24 01:44:16,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:16,798 INFO Out dated connection ,size=0 + +2025-09-24 01:44:16,798 INFO Connection check task end + +2025-09-24 01:44:19,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:19,800 INFO Connection check task start + +2025-09-24 01:44:19,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:19,800 INFO Out dated connection ,size=0 + +2025-09-24 01:44:19,800 INFO Connection check task end + +2025-09-24 01:44:22,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:22,801 INFO Connection check task start + +2025-09-24 01:44:22,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:22,801 INFO Out dated connection ,size=0 + +2025-09-24 01:44:22,801 INFO Connection check task end + +2025-09-24 01:44:25,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:25,802 INFO Connection check task start + +2025-09-24 01:44:25,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:25,802 INFO Out dated connection ,size=0 + +2025-09-24 01:44:25,802 INFO Connection check task end + +2025-09-24 01:44:28,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:28,802 INFO Connection check task start + +2025-09-24 01:44:28,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:28,802 INFO Out dated connection ,size=0 + +2025-09-24 01:44:28,802 INFO Connection check task end + +2025-09-24 01:44:31,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:31,803 INFO Connection check task start + +2025-09-24 01:44:31,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:31,803 INFO Out dated connection ,size=0 + +2025-09-24 01:44:31,803 INFO Connection check task end + +2025-09-24 01:44:34,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:34,803 INFO Connection check task start + +2025-09-24 01:44:34,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:34,804 INFO Out dated connection ,size=0 + +2025-09-24 01:44:34,804 INFO Connection check task end + +2025-09-24 01:44:37,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:37,806 INFO Connection check task start + +2025-09-24 01:44:37,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:37,806 INFO Out dated connection ,size=0 + +2025-09-24 01:44:37,806 INFO Connection check task end + +2025-09-24 01:44:40,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:40,808 INFO Connection check task start + +2025-09-24 01:44:40,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:40,809 INFO Out dated connection ,size=0 + +2025-09-24 01:44:40,809 INFO Connection check task end + +2025-09-24 01:44:43,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:43,809 INFO Connection check task start + +2025-09-24 01:44:43,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:43,809 INFO Out dated connection ,size=0 + +2025-09-24 01:44:43,809 INFO Connection check task end + +2025-09-24 01:44:46,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:46,811 INFO Connection check task start + +2025-09-24 01:44:46,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:46,811 INFO Out dated connection ,size=0 + +2025-09-24 01:44:46,811 INFO Connection check task end + +2025-09-24 01:44:49,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:49,813 INFO Connection check task start + +2025-09-24 01:44:49,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:49,813 INFO Out dated connection ,size=0 + +2025-09-24 01:44:49,813 INFO Connection check task end + +2025-09-24 01:44:52,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:52,814 INFO Connection check task start + +2025-09-24 01:44:52,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:52,814 INFO Out dated connection ,size=0 + +2025-09-24 01:44:52,814 INFO Connection check task end + +2025-09-24 01:44:55,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:55,816 INFO Connection check task start + +2025-09-24 01:44:55,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:55,816 INFO Out dated connection ,size=0 + +2025-09-24 01:44:55,816 INFO Connection check task end + +2025-09-24 01:44:58,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:44:58,819 INFO Connection check task start + +2025-09-24 01:44:58,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:44:58,819 INFO Out dated connection ,size=0 + +2025-09-24 01:44:58,819 INFO Connection check task end + +2025-09-24 01:45:01,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:01,819 INFO Connection check task start + +2025-09-24 01:45:01,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:01,819 INFO Out dated connection ,size=0 + +2025-09-24 01:45:01,819 INFO Connection check task end + +2025-09-24 01:45:04,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:04,820 INFO Connection check task start + +2025-09-24 01:45:04,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:04,820 INFO Out dated connection ,size=0 + +2025-09-24 01:45:04,820 INFO Connection check task end + +2025-09-24 01:45:07,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:07,820 INFO Connection check task start + +2025-09-24 01:45:07,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:07,821 INFO Out dated connection ,size=0 + +2025-09-24 01:45:07,821 INFO Connection check task end + +2025-09-24 01:45:10,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:10,823 INFO Connection check task start + +2025-09-24 01:45:10,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:10,823 INFO Out dated connection ,size=0 + +2025-09-24 01:45:10,823 INFO Connection check task end + +2025-09-24 01:45:13,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:13,825 INFO Connection check task start + +2025-09-24 01:45:13,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:13,825 INFO Out dated connection ,size=0 + +2025-09-24 01:45:13,825 INFO Connection check task end + +2025-09-24 01:45:16,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:16,827 INFO Connection check task start + +2025-09-24 01:45:16,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:16,827 INFO Out dated connection ,size=0 + +2025-09-24 01:45:16,827 INFO Connection check task end + +2025-09-24 01:45:19,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:19,828 INFO Connection check task start + +2025-09-24 01:45:19,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:19,828 INFO Out dated connection ,size=0 + +2025-09-24 01:45:19,828 INFO Connection check task end + +2025-09-24 01:45:22,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:22,829 INFO Connection check task start + +2025-09-24 01:45:22,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:22,829 INFO Out dated connection ,size=0 + +2025-09-24 01:45:22,829 INFO Connection check task end + +2025-09-24 01:45:25,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:25,829 INFO Connection check task start + +2025-09-24 01:45:25,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:25,829 INFO Out dated connection ,size=0 + +2025-09-24 01:45:25,829 INFO Connection check task end + +2025-09-24 01:45:28,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:28,831 INFO Connection check task start + +2025-09-24 01:45:28,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:28,832 INFO Out dated connection ,size=0 + +2025-09-24 01:45:28,832 INFO Connection check task end + +2025-09-24 01:45:31,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:31,832 INFO Connection check task start + +2025-09-24 01:45:31,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:31,832 INFO Out dated connection ,size=0 + +2025-09-24 01:45:31,832 INFO Connection check task end + +2025-09-24 01:45:34,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:34,834 INFO Connection check task start + +2025-09-24 01:45:34,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:34,835 INFO Out dated connection ,size=0 + +2025-09-24 01:45:34,835 INFO Connection check task end + +2025-09-24 01:45:37,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:37,836 INFO Connection check task start + +2025-09-24 01:45:37,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:37,837 INFO Out dated connection ,size=0 + +2025-09-24 01:45:37,837 INFO Connection check task end + +2025-09-24 01:45:40,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:40,839 INFO Connection check task start + +2025-09-24 01:45:40,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:40,839 INFO Out dated connection ,size=0 + +2025-09-24 01:45:40,839 INFO Connection check task end + +2025-09-24 01:45:43,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:43,841 INFO Connection check task start + +2025-09-24 01:45:43,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:43,841 INFO Out dated connection ,size=0 + +2025-09-24 01:45:43,841 INFO Connection check task end + +2025-09-24 01:45:46,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:46,843 INFO Connection check task start + +2025-09-24 01:45:46,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:46,843 INFO Out dated connection ,size=0 + +2025-09-24 01:45:46,843 INFO Connection check task end + +2025-09-24 01:45:49,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:49,844 INFO Connection check task start + +2025-09-24 01:45:49,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:49,844 INFO Out dated connection ,size=0 + +2025-09-24 01:45:49,844 INFO Connection check task end + +2025-09-24 01:45:52,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:52,846 INFO Connection check task start + +2025-09-24 01:45:52,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:52,847 INFO Out dated connection ,size=0 + +2025-09-24 01:45:52,847 INFO Connection check task end + +2025-09-24 01:45:55,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:55,847 INFO Connection check task start + +2025-09-24 01:45:55,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:55,847 INFO Out dated connection ,size=0 + +2025-09-24 01:45:55,847 INFO Connection check task end + +2025-09-24 01:45:58,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:45:58,848 INFO Connection check task start + +2025-09-24 01:45:58,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:45:58,848 INFO Out dated connection ,size=0 + +2025-09-24 01:45:58,848 INFO Connection check task end + +2025-09-24 01:46:01,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:01,849 INFO Connection check task start + +2025-09-24 01:46:01,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:01,849 INFO Out dated connection ,size=0 + +2025-09-24 01:46:01,849 INFO Connection check task end + +2025-09-24 01:46:04,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:04,850 INFO Connection check task start + +2025-09-24 01:46:04,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:04,850 INFO Out dated connection ,size=0 + +2025-09-24 01:46:04,850 INFO Connection check task end + +2025-09-24 01:46:07,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:07,852 INFO Connection check task start + +2025-09-24 01:46:07,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:07,853 INFO Out dated connection ,size=0 + +2025-09-24 01:46:07,853 INFO Connection check task end + +2025-09-24 01:46:10,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:10,854 INFO Connection check task start + +2025-09-24 01:46:10,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:10,854 INFO Out dated connection ,size=0 + +2025-09-24 01:46:10,854 INFO Connection check task end + +2025-09-24 01:46:13,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:13,855 INFO Connection check task start + +2025-09-24 01:46:13,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:13,855 INFO Out dated connection ,size=0 + +2025-09-24 01:46:13,855 INFO Connection check task end + +2025-09-24 01:46:16,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:16,856 INFO Connection check task start + +2025-09-24 01:46:16,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:16,856 INFO Out dated connection ,size=0 + +2025-09-24 01:46:16,856 INFO Connection check task end + +2025-09-24 01:46:19,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:19,856 INFO Connection check task start + +2025-09-24 01:46:19,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:19,856 INFO Out dated connection ,size=0 + +2025-09-24 01:46:19,856 INFO Connection check task end + +2025-09-24 01:46:22,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:22,858 INFO Connection check task start + +2025-09-24 01:46:22,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:22,858 INFO Out dated connection ,size=0 + +2025-09-24 01:46:22,858 INFO Connection check task end + +2025-09-24 01:46:25,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:25,860 INFO Connection check task start + +2025-09-24 01:46:25,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:25,860 INFO Out dated connection ,size=0 + +2025-09-24 01:46:25,860 INFO Connection check task end + +2025-09-24 01:46:28,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:28,860 INFO Connection check task start + +2025-09-24 01:46:28,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:28,861 INFO Out dated connection ,size=0 + +2025-09-24 01:46:28,861 INFO Connection check task end + +2025-09-24 01:46:31,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:31,862 INFO Connection check task start + +2025-09-24 01:46:31,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:31,862 INFO Out dated connection ,size=0 + +2025-09-24 01:46:31,862 INFO Connection check task end + +2025-09-24 01:46:34,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:34,862 INFO Connection check task start + +2025-09-24 01:46:34,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:34,862 INFO Out dated connection ,size=0 + +2025-09-24 01:46:34,862 INFO Connection check task end + +2025-09-24 01:46:37,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:37,863 INFO Connection check task start + +2025-09-24 01:46:37,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:37,863 INFO Out dated connection ,size=0 + +2025-09-24 01:46:37,863 INFO Connection check task end + +2025-09-24 01:46:40,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:40,864 INFO Connection check task start + +2025-09-24 01:46:40,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:40,864 INFO Out dated connection ,size=0 + +2025-09-24 01:46:40,864 INFO Connection check task end + +2025-09-24 01:46:43,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:43,866 INFO Connection check task start + +2025-09-24 01:46:43,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:43,866 INFO Out dated connection ,size=0 + +2025-09-24 01:46:43,866 INFO Connection check task end + +2025-09-24 01:46:46,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:46,866 INFO Connection check task start + +2025-09-24 01:46:46,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:46,866 INFO Out dated connection ,size=0 + +2025-09-24 01:46:46,866 INFO Connection check task end + +2025-09-24 01:46:49,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:49,867 INFO Connection check task start + +2025-09-24 01:46:49,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:49,867 INFO Out dated connection ,size=0 + +2025-09-24 01:46:49,867 INFO Connection check task end + +2025-09-24 01:46:52,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:52,868 INFO Connection check task start + +2025-09-24 01:46:52,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:52,869 INFO Out dated connection ,size=0 + +2025-09-24 01:46:52,869 INFO Connection check task end + +2025-09-24 01:46:55,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:55,869 INFO Connection check task start + +2025-09-24 01:46:55,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:55,869 INFO Out dated connection ,size=0 + +2025-09-24 01:46:55,869 INFO Connection check task end + +2025-09-24 01:46:58,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:46:58,869 INFO Connection check task start + +2025-09-24 01:46:58,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:46:58,870 INFO Out dated connection ,size=0 + +2025-09-24 01:46:58,870 INFO Connection check task end + +2025-09-24 01:47:01,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:01,871 INFO Connection check task start + +2025-09-24 01:47:01,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:01,872 INFO Out dated connection ,size=0 + +2025-09-24 01:47:01,872 INFO Connection check task end + +2025-09-24 01:47:04,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:04,873 INFO Connection check task start + +2025-09-24 01:47:04,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:04,873 INFO Out dated connection ,size=0 + +2025-09-24 01:47:04,873 INFO Connection check task end + +2025-09-24 01:47:07,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:07,875 INFO Connection check task start + +2025-09-24 01:47:07,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:07,875 INFO Out dated connection ,size=0 + +2025-09-24 01:47:07,875 INFO Connection check task end + +2025-09-24 01:47:10,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:10,877 INFO Connection check task start + +2025-09-24 01:47:10,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:10,878 INFO Out dated connection ,size=0 + +2025-09-24 01:47:10,878 INFO Connection check task end + +2025-09-24 01:47:13,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:13,880 INFO Connection check task start + +2025-09-24 01:47:13,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:13,880 INFO Out dated connection ,size=0 + +2025-09-24 01:47:13,880 INFO Connection check task end + +2025-09-24 01:47:16,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:16,880 INFO Connection check task start + +2025-09-24 01:47:16,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:16,881 INFO Out dated connection ,size=0 + +2025-09-24 01:47:16,881 INFO Connection check task end + +2025-09-24 01:47:19,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:19,881 INFO Connection check task start + +2025-09-24 01:47:19,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:19,881 INFO Out dated connection ,size=0 + +2025-09-24 01:47:19,881 INFO Connection check task end + +2025-09-24 01:47:22,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:22,882 INFO Connection check task start + +2025-09-24 01:47:22,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:22,882 INFO Out dated connection ,size=0 + +2025-09-24 01:47:22,882 INFO Connection check task end + +2025-09-24 01:47:25,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:25,883 INFO Connection check task start + +2025-09-24 01:47:25,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:25,883 INFO Out dated connection ,size=0 + +2025-09-24 01:47:25,883 INFO Connection check task end + +2025-09-24 01:47:28,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:28,884 INFO Connection check task start + +2025-09-24 01:47:28,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:28,884 INFO Out dated connection ,size=0 + +2025-09-24 01:47:28,884 INFO Connection check task end + +2025-09-24 01:47:31,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:31,886 INFO Connection check task start + +2025-09-24 01:47:31,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:31,886 INFO Out dated connection ,size=0 + +2025-09-24 01:47:31,886 INFO Connection check task end + +2025-09-24 01:47:34,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:34,887 INFO Connection check task start + +2025-09-24 01:47:34,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:34,887 INFO Out dated connection ,size=0 + +2025-09-24 01:47:34,887 INFO Connection check task end + +2025-09-24 01:47:37,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:37,888 INFO Connection check task start + +2025-09-24 01:47:37,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:37,888 INFO Out dated connection ,size=0 + +2025-09-24 01:47:37,888 INFO Connection check task end + +2025-09-24 01:47:40,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:40,889 INFO Connection check task start + +2025-09-24 01:47:40,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:40,890 INFO Out dated connection ,size=0 + +2025-09-24 01:47:40,890 INFO Connection check task end + +2025-09-24 01:47:43,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:43,891 INFO Connection check task start + +2025-09-24 01:47:43,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:43,891 INFO Out dated connection ,size=0 + +2025-09-24 01:47:43,891 INFO Connection check task end + +2025-09-24 01:47:46,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:46,894 INFO Connection check task start + +2025-09-24 01:47:46,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:46,894 INFO Out dated connection ,size=0 + +2025-09-24 01:47:46,894 INFO Connection check task end + +2025-09-24 01:47:49,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:49,895 INFO Connection check task start + +2025-09-24 01:47:49,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:49,895 INFO Out dated connection ,size=0 + +2025-09-24 01:47:49,895 INFO Connection check task end + +2025-09-24 01:47:52,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:52,895 INFO Connection check task start + +2025-09-24 01:47:52,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:52,896 INFO Out dated connection ,size=0 + +2025-09-24 01:47:52,896 INFO Connection check task end + +2025-09-24 01:47:55,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:55,896 INFO Connection check task start + +2025-09-24 01:47:55,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:55,896 INFO Out dated connection ,size=0 + +2025-09-24 01:47:55,896 INFO Connection check task end + +2025-09-24 01:47:58,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:47:58,898 INFO Connection check task start + +2025-09-24 01:47:58,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:47:58,898 INFO Out dated connection ,size=0 + +2025-09-24 01:47:58,899 INFO Connection check task end + +2025-09-24 01:48:01,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:01,899 INFO Connection check task start + +2025-09-24 01:48:01,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:01,899 INFO Out dated connection ,size=0 + +2025-09-24 01:48:01,899 INFO Connection check task end + +2025-09-24 01:48:04,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:04,901 INFO Connection check task start + +2025-09-24 01:48:04,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:04,901 INFO Out dated connection ,size=0 + +2025-09-24 01:48:04,901 INFO Connection check task end + +2025-09-24 01:48:07,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:07,902 INFO Connection check task start + +2025-09-24 01:48:07,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:07,902 INFO Out dated connection ,size=0 + +2025-09-24 01:48:07,902 INFO Connection check task end + +2025-09-24 01:48:10,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:10,903 INFO Connection check task start + +2025-09-24 01:48:10,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:10,903 INFO Out dated connection ,size=0 + +2025-09-24 01:48:10,903 INFO Connection check task end + +2025-09-24 01:48:13,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:13,905 INFO Connection check task start + +2025-09-24 01:48:13,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:13,905 INFO Out dated connection ,size=0 + +2025-09-24 01:48:13,905 INFO Connection check task end + +2025-09-24 01:48:16,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:16,906 INFO Connection check task start + +2025-09-24 01:48:16,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:16,906 INFO Out dated connection ,size=0 + +2025-09-24 01:48:16,906 INFO Connection check task end + +2025-09-24 01:48:19,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:19,906 INFO Connection check task start + +2025-09-24 01:48:19,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:19,907 INFO Out dated connection ,size=0 + +2025-09-24 01:48:19,907 INFO Connection check task end + +2025-09-24 01:48:22,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:22,907 INFO Connection check task start + +2025-09-24 01:48:22,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:22,907 INFO Out dated connection ,size=0 + +2025-09-24 01:48:22,907 INFO Connection check task end + +2025-09-24 01:48:25,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:25,909 INFO Connection check task start + +2025-09-24 01:48:25,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:25,909 INFO Out dated connection ,size=0 + +2025-09-24 01:48:25,909 INFO Connection check task end + +2025-09-24 01:48:28,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:28,909 INFO Connection check task start + +2025-09-24 01:48:28,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:28,909 INFO Out dated connection ,size=0 + +2025-09-24 01:48:28,909 INFO Connection check task end + +2025-09-24 01:48:31,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:31,912 INFO Connection check task start + +2025-09-24 01:48:31,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:31,912 INFO Out dated connection ,size=0 + +2025-09-24 01:48:31,912 INFO Connection check task end + +2025-09-24 01:48:34,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:34,913 INFO Connection check task start + +2025-09-24 01:48:34,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:34,914 INFO Out dated connection ,size=0 + +2025-09-24 01:48:34,914 INFO Connection check task end + +2025-09-24 01:48:37,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:37,916 INFO Connection check task start + +2025-09-24 01:48:37,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:37,916 INFO Out dated connection ,size=0 + +2025-09-24 01:48:37,916 INFO Connection check task end + +2025-09-24 01:48:40,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:40,917 INFO Connection check task start + +2025-09-24 01:48:40,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:40,917 INFO Out dated connection ,size=0 + +2025-09-24 01:48:40,917 INFO Connection check task end + +2025-09-24 01:48:43,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:43,919 INFO Connection check task start + +2025-09-24 01:48:43,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:43,919 INFO Out dated connection ,size=0 + +2025-09-24 01:48:43,920 INFO Connection check task end + +2025-09-24 01:48:46,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:46,921 INFO Connection check task start + +2025-09-24 01:48:46,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:46,921 INFO Out dated connection ,size=0 + +2025-09-24 01:48:46,921 INFO Connection check task end + +2025-09-24 01:48:49,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:49,922 INFO Connection check task start + +2025-09-24 01:48:49,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:49,922 INFO Out dated connection ,size=0 + +2025-09-24 01:48:49,922 INFO Connection check task end + +2025-09-24 01:48:52,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:52,923 INFO Connection check task start + +2025-09-24 01:48:52,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:52,923 INFO Out dated connection ,size=0 + +2025-09-24 01:48:52,923 INFO Connection check task end + +2025-09-24 01:48:55,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:55,924 INFO Connection check task start + +2025-09-24 01:48:55,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:55,924 INFO Out dated connection ,size=0 + +2025-09-24 01:48:55,924 INFO Connection check task end + +2025-09-24 01:48:58,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:48:58,926 INFO Connection check task start + +2025-09-24 01:48:58,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:48:58,926 INFO Out dated connection ,size=0 + +2025-09-24 01:48:58,926 INFO Connection check task end + +2025-09-24 01:49:01,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:01,927 INFO Connection check task start + +2025-09-24 01:49:01,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:01,927 INFO Out dated connection ,size=0 + +2025-09-24 01:49:01,927 INFO Connection check task end + +2025-09-24 01:49:04,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:04,929 INFO Connection check task start + +2025-09-24 01:49:04,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:04,929 INFO Out dated connection ,size=0 + +2025-09-24 01:49:04,929 INFO Connection check task end + +2025-09-24 01:49:07,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:07,930 INFO Connection check task start + +2025-09-24 01:49:07,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:07,930 INFO Out dated connection ,size=0 + +2025-09-24 01:49:07,930 INFO Connection check task end + +2025-09-24 01:49:10,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:10,932 INFO Connection check task start + +2025-09-24 01:49:10,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:10,932 INFO Out dated connection ,size=0 + +2025-09-24 01:49:10,932 INFO Connection check task end + +2025-09-24 01:49:13,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:13,932 INFO Connection check task start + +2025-09-24 01:49:13,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:13,932 INFO Out dated connection ,size=0 + +2025-09-24 01:49:13,933 INFO Connection check task end + +2025-09-24 01:49:16,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:16,935 INFO Connection check task start + +2025-09-24 01:49:16,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:16,935 INFO Out dated connection ,size=0 + +2025-09-24 01:49:16,935 INFO Connection check task end + +2025-09-24 01:49:19,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:19,935 INFO Connection check task start + +2025-09-24 01:49:19,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:19,935 INFO Out dated connection ,size=0 + +2025-09-24 01:49:19,935 INFO Connection check task end + +2025-09-24 01:49:22,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:22,935 INFO Connection check task start + +2025-09-24 01:49:22,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:22,935 INFO Out dated connection ,size=0 + +2025-09-24 01:49:22,936 INFO Connection check task end + +2025-09-24 01:49:25,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:25,937 INFO Connection check task start + +2025-09-24 01:49:25,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:25,937 INFO Out dated connection ,size=0 + +2025-09-24 01:49:25,937 INFO Connection check task end + +2025-09-24 01:49:28,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:28,938 INFO Connection check task start + +2025-09-24 01:49:28,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:28,938 INFO Out dated connection ,size=0 + +2025-09-24 01:49:28,939 INFO Connection check task end + +2025-09-24 01:49:31,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:31,940 INFO Connection check task start + +2025-09-24 01:49:31,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:31,940 INFO Out dated connection ,size=0 + +2025-09-24 01:49:31,940 INFO Connection check task end + +2025-09-24 01:49:34,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:34,940 INFO Connection check task start + +2025-09-24 01:49:34,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:34,941 INFO Out dated connection ,size=0 + +2025-09-24 01:49:34,941 INFO Connection check task end + +2025-09-24 01:49:37,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:37,943 INFO Connection check task start + +2025-09-24 01:49:37,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:37,943 INFO Out dated connection ,size=0 + +2025-09-24 01:49:37,943 INFO Connection check task end + +2025-09-24 01:49:40,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:40,945 INFO Connection check task start + +2025-09-24 01:49:40,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:40,946 INFO Out dated connection ,size=0 + +2025-09-24 01:49:40,946 INFO Connection check task end + +2025-09-24 01:49:43,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:43,948 INFO Connection check task start + +2025-09-24 01:49:43,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:43,948 INFO Out dated connection ,size=0 + +2025-09-24 01:49:43,948 INFO Connection check task end + +2025-09-24 01:49:46,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:46,950 INFO Connection check task start + +2025-09-24 01:49:46,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:46,950 INFO Out dated connection ,size=0 + +2025-09-24 01:49:46,950 INFO Connection check task end + +2025-09-24 01:49:49,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:49,952 INFO Connection check task start + +2025-09-24 01:49:49,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:49,952 INFO Out dated connection ,size=0 + +2025-09-24 01:49:49,952 INFO Connection check task end + +2025-09-24 01:49:52,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:52,952 INFO Connection check task start + +2025-09-24 01:49:52,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:52,953 INFO Out dated connection ,size=0 + +2025-09-24 01:49:52,953 INFO Connection check task end + +2025-09-24 01:49:55,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:55,953 INFO Connection check task start + +2025-09-24 01:49:55,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:55,953 INFO Out dated connection ,size=0 + +2025-09-24 01:49:55,953 INFO Connection check task end + +2025-09-24 01:49:58,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:49:58,953 INFO Connection check task start + +2025-09-24 01:49:58,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:49:58,953 INFO Out dated connection ,size=0 + +2025-09-24 01:49:58,953 INFO Connection check task end + +2025-09-24 01:50:01,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:01,954 INFO Connection check task start + +2025-09-24 01:50:01,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:01,954 INFO Out dated connection ,size=0 + +2025-09-24 01:50:01,954 INFO Connection check task end + +2025-09-24 01:50:04,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:04,956 INFO Connection check task start + +2025-09-24 01:50:04,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:04,956 INFO Out dated connection ,size=0 + +2025-09-24 01:50:04,956 INFO Connection check task end + +2025-09-24 01:50:07,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:07,956 INFO Connection check task start + +2025-09-24 01:50:07,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:07,957 INFO Out dated connection ,size=0 + +2025-09-24 01:50:07,957 INFO Connection check task end + +2025-09-24 01:50:10,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:10,957 INFO Connection check task start + +2025-09-24 01:50:10,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:10,958 INFO Out dated connection ,size=0 + +2025-09-24 01:50:10,958 INFO Connection check task end + +2025-09-24 01:50:13,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:13,958 INFO Connection check task start + +2025-09-24 01:50:13,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:13,958 INFO Out dated connection ,size=0 + +2025-09-24 01:50:13,958 INFO Connection check task end + +2025-09-24 01:50:16,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:16,960 INFO Connection check task start + +2025-09-24 01:50:16,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:16,960 INFO Out dated connection ,size=0 + +2025-09-24 01:50:16,960 INFO Connection check task end + +2025-09-24 01:50:19,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:19,960 INFO Connection check task start + +2025-09-24 01:50:19,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:19,960 INFO Out dated connection ,size=0 + +2025-09-24 01:50:19,961 INFO Connection check task end + +2025-09-24 01:50:22,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:22,963 INFO Connection check task start + +2025-09-24 01:50:22,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:22,963 INFO Out dated connection ,size=0 + +2025-09-24 01:50:22,963 INFO Connection check task end + +2025-09-24 01:50:25,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:25,963 INFO Connection check task start + +2025-09-24 01:50:25,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:25,963 INFO Out dated connection ,size=0 + +2025-09-24 01:50:25,963 INFO Connection check task end + +2025-09-24 01:50:28,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:28,964 INFO Connection check task start + +2025-09-24 01:50:28,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:28,964 INFO Out dated connection ,size=0 + +2025-09-24 01:50:28,964 INFO Connection check task end + +2025-09-24 01:50:31,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:31,964 INFO Connection check task start + +2025-09-24 01:50:31,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:31,965 INFO Out dated connection ,size=0 + +2025-09-24 01:50:31,965 INFO Connection check task end + +2025-09-24 01:50:34,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:34,967 INFO Connection check task start + +2025-09-24 01:50:34,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:34,967 INFO Out dated connection ,size=0 + +2025-09-24 01:50:34,967 INFO Connection check task end + +2025-09-24 01:50:37,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:37,967 INFO Connection check task start + +2025-09-24 01:50:37,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:37,968 INFO Out dated connection ,size=0 + +2025-09-24 01:50:37,968 INFO Connection check task end + +2025-09-24 01:50:40,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:40,970 INFO Connection check task start + +2025-09-24 01:50:40,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:40,970 INFO Out dated connection ,size=0 + +2025-09-24 01:50:40,970 INFO Connection check task end + +2025-09-24 01:50:43,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:43,971 INFO Connection check task start + +2025-09-24 01:50:43,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:43,971 INFO Out dated connection ,size=0 + +2025-09-24 01:50:43,971 INFO Connection check task end + +2025-09-24 01:50:46,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:46,971 INFO Connection check task start + +2025-09-24 01:50:46,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:46,971 INFO Out dated connection ,size=0 + +2025-09-24 01:50:46,971 INFO Connection check task end + +2025-09-24 01:50:49,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:49,972 INFO Connection check task start + +2025-09-24 01:50:49,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:49,972 INFO Out dated connection ,size=0 + +2025-09-24 01:50:49,972 INFO Connection check task end + +2025-09-24 01:50:52,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:52,972 INFO Connection check task start + +2025-09-24 01:50:52,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:52,972 INFO Out dated connection ,size=0 + +2025-09-24 01:50:52,972 INFO Connection check task end + +2025-09-24 01:50:55,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:55,974 INFO Connection check task start + +2025-09-24 01:50:55,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:55,974 INFO Out dated connection ,size=0 + +2025-09-24 01:50:55,974 INFO Connection check task end + +2025-09-24 01:50:58,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:50:58,975 INFO Connection check task start + +2025-09-24 01:50:58,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:50:58,975 INFO Out dated connection ,size=0 + +2025-09-24 01:50:58,975 INFO Connection check task end + +2025-09-24 01:51:01,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:01,976 INFO Connection check task start + +2025-09-24 01:51:01,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:01,976 INFO Out dated connection ,size=0 + +2025-09-24 01:51:01,976 INFO Connection check task end + +2025-09-24 01:51:04,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:04,978 INFO Connection check task start + +2025-09-24 01:51:04,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:04,978 INFO Out dated connection ,size=0 + +2025-09-24 01:51:04,978 INFO Connection check task end + +2025-09-24 01:51:07,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:07,979 INFO Connection check task start + +2025-09-24 01:51:07,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:07,979 INFO Out dated connection ,size=0 + +2025-09-24 01:51:07,979 INFO Connection check task end + +2025-09-24 01:51:10,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:10,981 INFO Connection check task start + +2025-09-24 01:51:10,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:10,981 INFO Out dated connection ,size=0 + +2025-09-24 01:51:10,981 INFO Connection check task end + +2025-09-24 01:51:13,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:13,983 INFO Connection check task start + +2025-09-24 01:51:13,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:13,984 INFO Out dated connection ,size=0 + +2025-09-24 01:51:13,984 INFO Connection check task end + +2025-09-24 01:51:16,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:16,985 INFO Connection check task start + +2025-09-24 01:51:16,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:16,985 INFO Out dated connection ,size=0 + +2025-09-24 01:51:16,985 INFO Connection check task end + +2025-09-24 01:51:19,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:19,988 INFO Connection check task start + +2025-09-24 01:51:19,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:19,988 INFO Out dated connection ,size=0 + +2025-09-24 01:51:19,988 INFO Connection check task end + +2025-09-24 01:51:22,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:22,988 INFO Connection check task start + +2025-09-24 01:51:22,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:22,988 INFO Out dated connection ,size=0 + +2025-09-24 01:51:22,988 INFO Connection check task end + +2025-09-24 01:51:25,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:25,990 INFO Connection check task start + +2025-09-24 01:51:25,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:25,990 INFO Out dated connection ,size=0 + +2025-09-24 01:51:25,990 INFO Connection check task end + +2025-09-24 01:51:28,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:28,990 INFO Connection check task start + +2025-09-24 01:51:28,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:28,990 INFO Out dated connection ,size=0 + +2025-09-24 01:51:28,990 INFO Connection check task end + +2025-09-24 01:51:31,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:31,990 INFO Connection check task start + +2025-09-24 01:51:31,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:31,990 INFO Out dated connection ,size=0 + +2025-09-24 01:51:31,990 INFO Connection check task end + +2025-09-24 01:51:34,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:34,991 INFO Connection check task start + +2025-09-24 01:51:34,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:34,991 INFO Out dated connection ,size=0 + +2025-09-24 01:51:34,991 INFO Connection check task end + +2025-09-24 01:51:37,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:37,991 INFO Connection check task start + +2025-09-24 01:51:37,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:37,991 INFO Out dated connection ,size=0 + +2025-09-24 01:51:37,991 INFO Connection check task end + +2025-09-24 01:51:40,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:40,992 INFO Connection check task start + +2025-09-24 01:51:40,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:40,992 INFO Out dated connection ,size=0 + +2025-09-24 01:51:40,992 INFO Connection check task end + +2025-09-24 01:51:43,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:43,993 INFO Connection check task start + +2025-09-24 01:51:43,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:43,993 INFO Out dated connection ,size=0 + +2025-09-24 01:51:43,993 INFO Connection check task end + +2025-09-24 01:51:46,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:46,994 INFO Connection check task start + +2025-09-24 01:51:46,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:46,994 INFO Out dated connection ,size=0 + +2025-09-24 01:51:46,994 INFO Connection check task end + +2025-09-24 01:51:49,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:49,994 INFO Connection check task start + +2025-09-24 01:51:49,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:49,994 INFO Out dated connection ,size=0 + +2025-09-24 01:51:49,995 INFO Connection check task end + +2025-09-24 01:51:52,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:52,995 INFO Connection check task start + +2025-09-24 01:51:52,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:52,995 INFO Out dated connection ,size=0 + +2025-09-24 01:51:52,995 INFO Connection check task end + +2025-09-24 01:51:55,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:55,996 INFO Connection check task start + +2025-09-24 01:51:55,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:55,996 INFO Out dated connection ,size=0 + +2025-09-24 01:51:55,996 INFO Connection check task end + +2025-09-24 01:51:58,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:51:58,997 INFO Connection check task start + +2025-09-24 01:51:58,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:51:58,997 INFO Out dated connection ,size=0 + +2025-09-24 01:51:58,997 INFO Connection check task end + +2025-09-24 01:52:01,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:01,997 INFO Connection check task start + +2025-09-24 01:52:01,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:01,997 INFO Out dated connection ,size=0 + +2025-09-24 01:52:01,997 INFO Connection check task end + +2025-09-24 01:52:04,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:04,998 INFO Connection check task start + +2025-09-24 01:52:04,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:04,998 INFO Out dated connection ,size=0 + +2025-09-24 01:52:04,998 INFO Connection check task end + +2025-09-24 01:52:07,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:07,998 INFO Connection check task start + +2025-09-24 01:52:07,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:07,998 INFO Out dated connection ,size=0 + +2025-09-24 01:52:07,998 INFO Connection check task end + +2025-09-24 01:52:10,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:10,999 INFO Connection check task start + +2025-09-24 01:52:10,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:10,999 INFO Out dated connection ,size=0 + +2025-09-24 01:52:10,999 INFO Connection check task end + +2025-09-24 01:52:13,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:13,999 INFO Connection check task start + +2025-09-24 01:52:14,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:14,000 INFO Out dated connection ,size=0 + +2025-09-24 01:52:14,000 INFO Connection check task end + +2025-09-24 01:52:16,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:17,000 INFO Connection check task start + +2025-09-24 01:52:17,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:17,000 INFO Out dated connection ,size=0 + +2025-09-24 01:52:17,000 INFO Connection check task end + +2025-09-24 01:52:19,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:20,001 INFO Connection check task start + +2025-09-24 01:52:20,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:20,001 INFO Out dated connection ,size=0 + +2025-09-24 01:52:20,001 INFO Connection check task end + +2025-09-24 01:52:22,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:23,001 INFO Connection check task start + +2025-09-24 01:52:23,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:23,001 INFO Out dated connection ,size=0 + +2025-09-24 01:52:23,001 INFO Connection check task end + +2025-09-24 01:52:25,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:26,002 INFO Connection check task start + +2025-09-24 01:52:26,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:26,002 INFO Out dated connection ,size=0 + +2025-09-24 01:52:26,002 INFO Connection check task end + +2025-09-24 01:52:28,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:29,003 INFO Connection check task start + +2025-09-24 01:52:29,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:29,003 INFO Out dated connection ,size=0 + +2025-09-24 01:52:29,003 INFO Connection check task end + +2025-09-24 01:52:31,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:32,004 INFO Connection check task start + +2025-09-24 01:52:32,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:32,004 INFO Out dated connection ,size=0 + +2025-09-24 01:52:32,004 INFO Connection check task end + +2025-09-24 01:52:34,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:35,004 INFO Connection check task start + +2025-09-24 01:52:35,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:35,005 INFO Out dated connection ,size=0 + +2025-09-24 01:52:35,005 INFO Connection check task end + +2025-09-24 01:52:37,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:38,005 INFO Connection check task start + +2025-09-24 01:52:38,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:38,005 INFO Out dated connection ,size=0 + +2025-09-24 01:52:38,005 INFO Connection check task end + +2025-09-24 01:52:40,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:41,005 INFO Connection check task start + +2025-09-24 01:52:41,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:41,005 INFO Out dated connection ,size=0 + +2025-09-24 01:52:41,006 INFO Connection check task end + +2025-09-24 01:52:43,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:44,006 INFO Connection check task start + +2025-09-24 01:52:44,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:44,006 INFO Out dated connection ,size=0 + +2025-09-24 01:52:44,006 INFO Connection check task end + +2025-09-24 01:52:46,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:47,006 INFO Connection check task start + +2025-09-24 01:52:47,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:47,006 INFO Out dated connection ,size=0 + +2025-09-24 01:52:47,006 INFO Connection check task end + +2025-09-24 01:52:49,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:50,007 INFO Connection check task start + +2025-09-24 01:52:50,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:50,007 INFO Out dated connection ,size=0 + +2025-09-24 01:52:50,007 INFO Connection check task end + +2025-09-24 01:52:52,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:53,007 INFO Connection check task start + +2025-09-24 01:52:53,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:53,007 INFO Out dated connection ,size=0 + +2025-09-24 01:52:53,007 INFO Connection check task end + +2025-09-24 01:52:55,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:56,007 INFO Connection check task start + +2025-09-24 01:52:56,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:56,008 INFO Out dated connection ,size=0 + +2025-09-24 01:52:56,008 INFO Connection check task end + +2025-09-24 01:52:58,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:52:59,008 INFO Connection check task start + +2025-09-24 01:52:59,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:52:59,008 INFO Out dated connection ,size=0 + +2025-09-24 01:52:59,008 INFO Connection check task end + +2025-09-24 01:53:01,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:02,009 INFO Connection check task start + +2025-09-24 01:53:02,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:02,009 INFO Out dated connection ,size=0 + +2025-09-24 01:53:02,009 INFO Connection check task end + +2025-09-24 01:53:04,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:05,010 INFO Connection check task start + +2025-09-24 01:53:05,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:05,010 INFO Out dated connection ,size=0 + +2025-09-24 01:53:05,010 INFO Connection check task end + +2025-09-24 01:53:07,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:08,010 INFO Connection check task start + +2025-09-24 01:53:08,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:08,011 INFO Out dated connection ,size=0 + +2025-09-24 01:53:08,011 INFO Connection check task end + +2025-09-24 01:53:10,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:11,011 INFO Connection check task start + +2025-09-24 01:53:11,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:11,011 INFO Out dated connection ,size=0 + +2025-09-24 01:53:11,011 INFO Connection check task end + +2025-09-24 01:53:13,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:14,011 INFO Connection check task start + +2025-09-24 01:53:14,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:14,011 INFO Out dated connection ,size=0 + +2025-09-24 01:53:14,011 INFO Connection check task end + +2025-09-24 01:53:16,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:17,012 INFO Connection check task start + +2025-09-24 01:53:17,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:17,012 INFO Out dated connection ,size=0 + +2025-09-24 01:53:17,012 INFO Connection check task end + +2025-09-24 01:53:19,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:20,012 INFO Connection check task start + +2025-09-24 01:53:20,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:20,012 INFO Out dated connection ,size=0 + +2025-09-24 01:53:20,012 INFO Connection check task end + +2025-09-24 01:53:22,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:23,014 INFO Connection check task start + +2025-09-24 01:53:23,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:23,014 INFO Out dated connection ,size=0 + +2025-09-24 01:53:23,014 INFO Connection check task end + +2025-09-24 01:53:25,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:26,014 INFO Connection check task start + +2025-09-24 01:53:26,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:26,015 INFO Out dated connection ,size=0 + +2025-09-24 01:53:26,015 INFO Connection check task end + +2025-09-24 01:53:28,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:29,017 INFO Connection check task start + +2025-09-24 01:53:29,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:29,017 INFO Out dated connection ,size=0 + +2025-09-24 01:53:29,017 INFO Connection check task end + +2025-09-24 01:53:31,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:32,017 INFO Connection check task start + +2025-09-24 01:53:32,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:32,017 INFO Out dated connection ,size=0 + +2025-09-24 01:53:32,017 INFO Connection check task end + +2025-09-24 01:53:34,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:35,017 INFO Connection check task start + +2025-09-24 01:53:35,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:35,017 INFO Out dated connection ,size=0 + +2025-09-24 01:53:35,017 INFO Connection check task end + +2025-09-24 01:53:37,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:38,018 INFO Connection check task start + +2025-09-24 01:53:38,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:38,019 INFO Out dated connection ,size=0 + +2025-09-24 01:53:38,019 INFO Connection check task end + +2025-09-24 01:53:40,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:41,019 INFO Connection check task start + +2025-09-24 01:53:41,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:41,019 INFO Out dated connection ,size=0 + +2025-09-24 01:53:41,019 INFO Connection check task end + +2025-09-24 01:53:43,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:44,020 INFO Connection check task start + +2025-09-24 01:53:44,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:44,020 INFO Out dated connection ,size=0 + +2025-09-24 01:53:44,020 INFO Connection check task end + +2025-09-24 01:53:46,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:47,021 INFO Connection check task start + +2025-09-24 01:53:47,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:47,021 INFO Out dated connection ,size=0 + +2025-09-24 01:53:47,021 INFO Connection check task end + +2025-09-24 01:53:49,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:50,021 INFO Connection check task start + +2025-09-24 01:53:50,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:50,022 INFO Out dated connection ,size=0 + +2025-09-24 01:53:50,022 INFO Connection check task end + +2025-09-24 01:53:52,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:53,022 INFO Connection check task start + +2025-09-24 01:53:53,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:53,022 INFO Out dated connection ,size=0 + +2025-09-24 01:53:53,022 INFO Connection check task end + +2025-09-24 01:53:55,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:56,023 INFO Connection check task start + +2025-09-24 01:53:56,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:56,023 INFO Out dated connection ,size=0 + +2025-09-24 01:53:56,023 INFO Connection check task end + +2025-09-24 01:53:58,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:53:59,023 INFO Connection check task start + +2025-09-24 01:53:59,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:53:59,023 INFO Out dated connection ,size=0 + +2025-09-24 01:53:59,023 INFO Connection check task end + +2025-09-24 01:54:01,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:02,023 INFO Connection check task start + +2025-09-24 01:54:02,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:02,023 INFO Out dated connection ,size=0 + +2025-09-24 01:54:02,023 INFO Connection check task end + +2025-09-24 01:54:04,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:05,024 INFO Connection check task start + +2025-09-24 01:54:05,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:05,024 INFO Out dated connection ,size=0 + +2025-09-24 01:54:05,024 INFO Connection check task end + +2025-09-24 01:54:07,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:08,024 INFO Connection check task start + +2025-09-24 01:54:08,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:08,024 INFO Out dated connection ,size=0 + +2025-09-24 01:54:08,024 INFO Connection check task end + +2025-09-24 01:54:10,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:11,024 INFO Connection check task start + +2025-09-24 01:54:11,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:11,024 INFO Out dated connection ,size=0 + +2025-09-24 01:54:11,024 INFO Connection check task end + +2025-09-24 01:54:13,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:14,025 INFO Connection check task start + +2025-09-24 01:54:14,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:14,025 INFO Out dated connection ,size=0 + +2025-09-24 01:54:14,025 INFO Connection check task end + +2025-09-24 01:54:16,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:17,025 INFO Connection check task start + +2025-09-24 01:54:17,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:17,025 INFO Out dated connection ,size=0 + +2025-09-24 01:54:17,025 INFO Connection check task end + +2025-09-24 01:54:19,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:20,025 INFO Connection check task start + +2025-09-24 01:54:20,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:20,026 INFO Out dated connection ,size=0 + +2025-09-24 01:54:20,026 INFO Connection check task end + +2025-09-24 01:54:22,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:23,026 INFO Connection check task start + +2025-09-24 01:54:23,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:23,026 INFO Out dated connection ,size=0 + +2025-09-24 01:54:23,026 INFO Connection check task end + +2025-09-24 01:54:25,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:26,026 INFO Connection check task start + +2025-09-24 01:54:26,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:26,026 INFO Out dated connection ,size=0 + +2025-09-24 01:54:26,026 INFO Connection check task end + +2025-09-24 01:54:28,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:29,026 INFO Connection check task start + +2025-09-24 01:54:29,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:29,027 INFO Out dated connection ,size=0 + +2025-09-24 01:54:29,027 INFO Connection check task end + +2025-09-24 01:54:31,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:32,027 INFO Connection check task start + +2025-09-24 01:54:32,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:32,027 INFO Out dated connection ,size=0 + +2025-09-24 01:54:32,027 INFO Connection check task end + +2025-09-24 01:54:34,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:35,027 INFO Connection check task start + +2025-09-24 01:54:35,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:35,028 INFO Out dated connection ,size=0 + +2025-09-24 01:54:35,028 INFO Connection check task end + +2025-09-24 01:54:37,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:38,028 INFO Connection check task start + +2025-09-24 01:54:38,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:38,028 INFO Out dated connection ,size=0 + +2025-09-24 01:54:38,028 INFO Connection check task end + +2025-09-24 01:54:40,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:41,029 INFO Connection check task start + +2025-09-24 01:54:41,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:41,029 INFO Out dated connection ,size=0 + +2025-09-24 01:54:41,029 INFO Connection check task end + +2025-09-24 01:54:43,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:44,029 INFO Connection check task start + +2025-09-24 01:54:44,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:44,029 INFO Out dated connection ,size=0 + +2025-09-24 01:54:44,029 INFO Connection check task end + +2025-09-24 01:54:46,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:47,030 INFO Connection check task start + +2025-09-24 01:54:47,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:47,030 INFO Out dated connection ,size=0 + +2025-09-24 01:54:47,030 INFO Connection check task end + +2025-09-24 01:54:49,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:50,031 INFO Connection check task start + +2025-09-24 01:54:50,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:50,031 INFO Out dated connection ,size=0 + +2025-09-24 01:54:50,031 INFO Connection check task end + +2025-09-24 01:54:52,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:53,032 INFO Connection check task start + +2025-09-24 01:54:53,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:53,032 INFO Out dated connection ,size=0 + +2025-09-24 01:54:53,032 INFO Connection check task end + +2025-09-24 01:54:55,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:56,032 INFO Connection check task start + +2025-09-24 01:54:56,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:56,032 INFO Out dated connection ,size=0 + +2025-09-24 01:54:56,032 INFO Connection check task end + +2025-09-24 01:54:58,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:54:59,032 INFO Connection check task start + +2025-09-24 01:54:59,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:54:59,033 INFO Out dated connection ,size=0 + +2025-09-24 01:54:59,033 INFO Connection check task end + +2025-09-24 01:55:01,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:02,035 INFO Connection check task start + +2025-09-24 01:55:02,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:02,035 INFO Out dated connection ,size=0 + +2025-09-24 01:55:02,035 INFO Connection check task end + +2025-09-24 01:55:04,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:05,036 INFO Connection check task start + +2025-09-24 01:55:05,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:05,036 INFO Out dated connection ,size=0 + +2025-09-24 01:55:05,036 INFO Connection check task end + +2025-09-24 01:55:07,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:08,037 INFO Connection check task start + +2025-09-24 01:55:08,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:08,037 INFO Out dated connection ,size=0 + +2025-09-24 01:55:08,037 INFO Connection check task end + +2025-09-24 01:55:10,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:11,038 INFO Connection check task start + +2025-09-24 01:55:11,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:11,038 INFO Out dated connection ,size=0 + +2025-09-24 01:55:11,038 INFO Connection check task end + +2025-09-24 01:55:13,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:14,038 INFO Connection check task start + +2025-09-24 01:55:14,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:14,039 INFO Out dated connection ,size=0 + +2025-09-24 01:55:14,039 INFO Connection check task end + +2025-09-24 01:55:16,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:17,039 INFO Connection check task start + +2025-09-24 01:55:17,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:17,039 INFO Out dated connection ,size=0 + +2025-09-24 01:55:17,039 INFO Connection check task end + +2025-09-24 01:55:19,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:20,040 INFO Connection check task start + +2025-09-24 01:55:20,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:20,040 INFO Out dated connection ,size=0 + +2025-09-24 01:55:20,040 INFO Connection check task end + +2025-09-24 01:55:22,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:23,040 INFO Connection check task start + +2025-09-24 01:55:23,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:23,040 INFO Out dated connection ,size=0 + +2025-09-24 01:55:23,040 INFO Connection check task end + +2025-09-24 01:55:25,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:26,042 INFO Connection check task start + +2025-09-24 01:55:26,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:26,042 INFO Out dated connection ,size=0 + +2025-09-24 01:55:26,042 INFO Connection check task end + +2025-09-24 01:55:28,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:29,042 INFO Connection check task start + +2025-09-24 01:55:29,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:29,042 INFO Out dated connection ,size=0 + +2025-09-24 01:55:29,043 INFO Connection check task end + +2025-09-24 01:55:31,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:32,043 INFO Connection check task start + +2025-09-24 01:55:32,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:32,043 INFO Out dated connection ,size=0 + +2025-09-24 01:55:32,044 INFO Connection check task end + +2025-09-24 01:55:34,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:35,044 INFO Connection check task start + +2025-09-24 01:55:35,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:35,044 INFO Out dated connection ,size=0 + +2025-09-24 01:55:35,044 INFO Connection check task end + +2025-09-24 01:55:37,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:38,045 INFO Connection check task start + +2025-09-24 01:55:38,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:38,045 INFO Out dated connection ,size=0 + +2025-09-24 01:55:38,046 INFO Connection check task end + +2025-09-24 01:55:40,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:41,046 INFO Connection check task start + +2025-09-24 01:55:41,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:41,046 INFO Out dated connection ,size=0 + +2025-09-24 01:55:41,046 INFO Connection check task end + +2025-09-24 01:55:43,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:44,047 INFO Connection check task start + +2025-09-24 01:55:44,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:44,047 INFO Out dated connection ,size=0 + +2025-09-24 01:55:44,047 INFO Connection check task end + +2025-09-24 01:55:46,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:47,049 INFO Connection check task start + +2025-09-24 01:55:47,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:47,050 INFO Out dated connection ,size=0 + +2025-09-24 01:55:47,050 INFO Connection check task end + +2025-09-24 01:55:49,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:50,052 INFO Connection check task start + +2025-09-24 01:55:50,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:50,052 INFO Out dated connection ,size=0 + +2025-09-24 01:55:50,052 INFO Connection check task end + +2025-09-24 01:55:52,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:53,052 INFO Connection check task start + +2025-09-24 01:55:53,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:53,052 INFO Out dated connection ,size=0 + +2025-09-24 01:55:53,052 INFO Connection check task end + +2025-09-24 01:55:55,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:56,053 INFO Connection check task start + +2025-09-24 01:55:56,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:56,053 INFO Out dated connection ,size=0 + +2025-09-24 01:55:56,053 INFO Connection check task end + +2025-09-24 01:55:58,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:55:59,053 INFO Connection check task start + +2025-09-24 01:55:59,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:55:59,054 INFO Out dated connection ,size=0 + +2025-09-24 01:55:59,054 INFO Connection check task end + +2025-09-24 01:56:01,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:02,056 INFO Connection check task start + +2025-09-24 01:56:02,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:02,056 INFO Out dated connection ,size=0 + +2025-09-24 01:56:02,056 INFO Connection check task end + +2025-09-24 01:56:04,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:05,058 INFO Connection check task start + +2025-09-24 01:56:05,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:05,058 INFO Out dated connection ,size=0 + +2025-09-24 01:56:05,058 INFO Connection check task end + +2025-09-24 01:56:07,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:08,060 INFO Connection check task start + +2025-09-24 01:56:08,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:08,060 INFO Out dated connection ,size=0 + +2025-09-24 01:56:08,060 INFO Connection check task end + +2025-09-24 01:56:10,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:11,061 INFO Connection check task start + +2025-09-24 01:56:11,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:11,061 INFO Out dated connection ,size=0 + +2025-09-24 01:56:11,061 INFO Connection check task end + +2025-09-24 01:56:13,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:14,063 INFO Connection check task start + +2025-09-24 01:56:14,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:14,063 INFO Out dated connection ,size=0 + +2025-09-24 01:56:14,063 INFO Connection check task end + +2025-09-24 01:56:17,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:17,065 INFO Connection check task start + +2025-09-24 01:56:17,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:17,066 INFO Out dated connection ,size=0 + +2025-09-24 01:56:17,066 INFO Connection check task end + +2025-09-24 01:56:20,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:20,066 INFO Connection check task start + +2025-09-24 01:56:20,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:20,066 INFO Out dated connection ,size=0 + +2025-09-24 01:56:20,066 INFO Connection check task end + +2025-09-24 01:56:23,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:23,066 INFO Connection check task start + +2025-09-24 01:56:23,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:23,067 INFO Out dated connection ,size=0 + +2025-09-24 01:56:23,067 INFO Connection check task end + +2025-09-24 01:56:26,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:26,067 INFO Connection check task start + +2025-09-24 01:56:26,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:26,067 INFO Out dated connection ,size=0 + +2025-09-24 01:56:26,067 INFO Connection check task end + +2025-09-24 01:56:29,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:29,067 INFO Connection check task start + +2025-09-24 01:56:29,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:29,067 INFO Out dated connection ,size=0 + +2025-09-24 01:56:29,067 INFO Connection check task end + +2025-09-24 01:56:32,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:32,068 INFO Connection check task start + +2025-09-24 01:56:32,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:32,068 INFO Out dated connection ,size=0 + +2025-09-24 01:56:32,068 INFO Connection check task end + +2025-09-24 01:56:35,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:35,069 INFO Connection check task start + +2025-09-24 01:56:35,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:35,069 INFO Out dated connection ,size=0 + +2025-09-24 01:56:35,069 INFO Connection check task end + +2025-09-24 01:56:38,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:38,071 INFO Connection check task start + +2025-09-24 01:56:38,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:38,071 INFO Out dated connection ,size=0 + +2025-09-24 01:56:38,071 INFO Connection check task end + +2025-09-24 01:56:41,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:41,073 INFO Connection check task start + +2025-09-24 01:56:41,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:41,073 INFO Out dated connection ,size=0 + +2025-09-24 01:56:41,073 INFO Connection check task end + +2025-09-24 01:56:44,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:44,074 INFO Connection check task start + +2025-09-24 01:56:44,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:44,074 INFO Out dated connection ,size=0 + +2025-09-24 01:56:44,074 INFO Connection check task end + +2025-09-24 01:56:47,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:47,075 INFO Connection check task start + +2025-09-24 01:56:47,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:47,075 INFO Out dated connection ,size=0 + +2025-09-24 01:56:47,075 INFO Connection check task end + +2025-09-24 01:56:50,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:50,077 INFO Connection check task start + +2025-09-24 01:56:50,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:50,078 INFO Out dated connection ,size=0 + +2025-09-24 01:56:50,078 INFO Connection check task end + +2025-09-24 01:56:53,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:53,080 INFO Connection check task start + +2025-09-24 01:56:53,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:53,080 INFO Out dated connection ,size=0 + +2025-09-24 01:56:53,080 INFO Connection check task end + +2025-09-24 01:56:56,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:56,080 INFO Connection check task start + +2025-09-24 01:56:56,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:56,080 INFO Out dated connection ,size=0 + +2025-09-24 01:56:56,080 INFO Connection check task end + +2025-09-24 01:56:59,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:56:59,081 INFO Connection check task start + +2025-09-24 01:56:59,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:56:59,081 INFO Out dated connection ,size=0 + +2025-09-24 01:56:59,081 INFO Connection check task end + +2025-09-24 01:57:02,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:02,081 INFO Connection check task start + +2025-09-24 01:57:02,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:02,081 INFO Out dated connection ,size=0 + +2025-09-24 01:57:02,081 INFO Connection check task end + +2025-09-24 01:57:05,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:05,081 INFO Connection check task start + +2025-09-24 01:57:05,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:05,081 INFO Out dated connection ,size=0 + +2025-09-24 01:57:05,082 INFO Connection check task end + +2025-09-24 01:57:08,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:08,082 INFO Connection check task start + +2025-09-24 01:57:08,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:08,082 INFO Out dated connection ,size=0 + +2025-09-24 01:57:08,082 INFO Connection check task end + +2025-09-24 01:57:11,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:11,084 INFO Connection check task start + +2025-09-24 01:57:11,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:11,084 INFO Out dated connection ,size=0 + +2025-09-24 01:57:11,084 INFO Connection check task end + +2025-09-24 01:57:14,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:14,086 INFO Connection check task start + +2025-09-24 01:57:14,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:14,087 INFO Out dated connection ,size=0 + +2025-09-24 01:57:14,087 INFO Connection check task end + +2025-09-24 01:57:17,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:17,088 INFO Connection check task start + +2025-09-24 01:57:17,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:17,088 INFO Out dated connection ,size=0 + +2025-09-24 01:57:17,088 INFO Connection check task end + +2025-09-24 01:57:20,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:20,088 INFO Connection check task start + +2025-09-24 01:57:20,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:20,088 INFO Out dated connection ,size=0 + +2025-09-24 01:57:20,088 INFO Connection check task end + +2025-09-24 01:57:23,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:23,090 INFO Connection check task start + +2025-09-24 01:57:23,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:23,090 INFO Out dated connection ,size=0 + +2025-09-24 01:57:23,090 INFO Connection check task end + +2025-09-24 01:57:26,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:26,092 INFO Connection check task start + +2025-09-24 01:57:26,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:26,092 INFO Out dated connection ,size=0 + +2025-09-24 01:57:26,092 INFO Connection check task end + +2025-09-24 01:57:29,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:29,092 INFO Connection check task start + +2025-09-24 01:57:29,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:29,092 INFO Out dated connection ,size=0 + +2025-09-24 01:57:29,092 INFO Connection check task end + +2025-09-24 01:57:32,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:32,093 INFO Connection check task start + +2025-09-24 01:57:32,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:32,093 INFO Out dated connection ,size=0 + +2025-09-24 01:57:32,093 INFO Connection check task end + +2025-09-24 01:57:35,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:35,094 INFO Connection check task start + +2025-09-24 01:57:35,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:35,094 INFO Out dated connection ,size=0 + +2025-09-24 01:57:35,094 INFO Connection check task end + +2025-09-24 01:57:38,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:38,096 INFO Connection check task start + +2025-09-24 01:57:38,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:38,097 INFO Out dated connection ,size=0 + +2025-09-24 01:57:38,097 INFO Connection check task end + +2025-09-24 01:57:41,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:41,099 INFO Connection check task start + +2025-09-24 01:57:41,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:41,099 INFO Out dated connection ,size=0 + +2025-09-24 01:57:41,099 INFO Connection check task end + +2025-09-24 01:57:44,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:44,101 INFO Connection check task start + +2025-09-24 01:57:44,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:44,101 INFO Out dated connection ,size=0 + +2025-09-24 01:57:44,101 INFO Connection check task end + +2025-09-24 01:57:47,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:47,101 INFO Connection check task start + +2025-09-24 01:57:47,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:47,101 INFO Out dated connection ,size=0 + +2025-09-24 01:57:47,101 INFO Connection check task end + +2025-09-24 01:57:50,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:50,104 INFO Connection check task start + +2025-09-24 01:57:50,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:50,104 INFO Out dated connection ,size=0 + +2025-09-24 01:57:50,104 INFO Connection check task end + +2025-09-24 01:57:53,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:53,104 INFO Connection check task start + +2025-09-24 01:57:53,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:53,104 INFO Out dated connection ,size=0 + +2025-09-24 01:57:53,104 INFO Connection check task end + +2025-09-24 01:57:56,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:56,104 INFO Connection check task start + +2025-09-24 01:57:56,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:56,104 INFO Out dated connection ,size=0 + +2025-09-24 01:57:56,104 INFO Connection check task end + +2025-09-24 01:57:59,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:57:59,105 INFO Connection check task start + +2025-09-24 01:57:59,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:57:59,105 INFO Out dated connection ,size=0 + +2025-09-24 01:57:59,105 INFO Connection check task end + +2025-09-24 01:58:02,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:02,107 INFO Connection check task start + +2025-09-24 01:58:02,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:02,107 INFO Out dated connection ,size=0 + +2025-09-24 01:58:02,107 INFO Connection check task end + +2025-09-24 01:58:05,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:05,108 INFO Connection check task start + +2025-09-24 01:58:05,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:05,108 INFO Out dated connection ,size=0 + +2025-09-24 01:58:05,108 INFO Connection check task end + +2025-09-24 01:58:08,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:08,109 INFO Connection check task start + +2025-09-24 01:58:08,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:08,109 INFO Out dated connection ,size=0 + +2025-09-24 01:58:08,110 INFO Connection check task end + +2025-09-24 01:58:11,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:11,110 INFO Connection check task start + +2025-09-24 01:58:11,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:11,111 INFO Out dated connection ,size=0 + +2025-09-24 01:58:11,111 INFO Connection check task end + +2025-09-24 01:58:14,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:14,111 INFO Connection check task start + +2025-09-24 01:58:14,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:14,111 INFO Out dated connection ,size=0 + +2025-09-24 01:58:14,111 INFO Connection check task end + +2025-09-24 01:58:17,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:17,112 INFO Connection check task start + +2025-09-24 01:58:17,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:17,112 INFO Out dated connection ,size=0 + +2025-09-24 01:58:17,112 INFO Connection check task end + +2025-09-24 01:58:20,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:20,113 INFO Connection check task start + +2025-09-24 01:58:20,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:20,113 INFO Out dated connection ,size=0 + +2025-09-24 01:58:20,113 INFO Connection check task end + +2025-09-24 01:58:23,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:23,114 INFO Connection check task start + +2025-09-24 01:58:23,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:23,114 INFO Out dated connection ,size=0 + +2025-09-24 01:58:23,114 INFO Connection check task end + +2025-09-24 01:58:26,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:26,114 INFO Connection check task start + +2025-09-24 01:58:26,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:26,114 INFO Out dated connection ,size=0 + +2025-09-24 01:58:26,114 INFO Connection check task end + +2025-09-24 01:58:29,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:29,114 INFO Connection check task start + +2025-09-24 01:58:29,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:29,115 INFO Out dated connection ,size=0 + +2025-09-24 01:58:29,115 INFO Connection check task end + +2025-09-24 01:58:32,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:32,116 INFO Connection check task start + +2025-09-24 01:58:32,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:32,116 INFO Out dated connection ,size=0 + +2025-09-24 01:58:32,116 INFO Connection check task end + +2025-09-24 01:58:35,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:35,118 INFO Connection check task start + +2025-09-24 01:58:35,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:35,118 INFO Out dated connection ,size=0 + +2025-09-24 01:58:35,118 INFO Connection check task end + +2025-09-24 01:58:38,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:38,120 INFO Connection check task start + +2025-09-24 01:58:38,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:38,120 INFO Out dated connection ,size=0 + +2025-09-24 01:58:38,120 INFO Connection check task end + +2025-09-24 01:58:41,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:41,121 INFO Connection check task start + +2025-09-24 01:58:41,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:41,121 INFO Out dated connection ,size=0 + +2025-09-24 01:58:41,121 INFO Connection check task end + +2025-09-24 01:58:44,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:44,121 INFO Connection check task start + +2025-09-24 01:58:44,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:44,121 INFO Out dated connection ,size=0 + +2025-09-24 01:58:44,121 INFO Connection check task end + +2025-09-24 01:58:47,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:47,123 INFO Connection check task start + +2025-09-24 01:58:47,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:47,123 INFO Out dated connection ,size=0 + +2025-09-24 01:58:47,124 INFO Connection check task end + +2025-09-24 01:58:50,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:50,124 INFO Connection check task start + +2025-09-24 01:58:50,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:50,124 INFO Out dated connection ,size=0 + +2025-09-24 01:58:50,124 INFO Connection check task end + +2025-09-24 01:58:53,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:53,124 INFO Connection check task start + +2025-09-24 01:58:53,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:53,125 INFO Out dated connection ,size=0 + +2025-09-24 01:58:53,125 INFO Connection check task end + +2025-09-24 01:58:56,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:56,127 INFO Connection check task start + +2025-09-24 01:58:56,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:56,127 INFO Out dated connection ,size=0 + +2025-09-24 01:58:56,127 INFO Connection check task end + +2025-09-24 01:58:59,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:58:59,128 INFO Connection check task start + +2025-09-24 01:58:59,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:58:59,128 INFO Out dated connection ,size=0 + +2025-09-24 01:58:59,128 INFO Connection check task end + +2025-09-24 01:59:02,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:02,128 INFO Connection check task start + +2025-09-24 01:59:02,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:02,128 INFO Out dated connection ,size=0 + +2025-09-24 01:59:02,128 INFO Connection check task end + +2025-09-24 01:59:05,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:05,130 INFO Connection check task start + +2025-09-24 01:59:05,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:05,130 INFO Out dated connection ,size=0 + +2025-09-24 01:59:05,131 INFO Connection check task end + +2025-09-24 01:59:08,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:08,131 INFO Connection check task start + +2025-09-24 01:59:08,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:08,131 INFO Out dated connection ,size=0 + +2025-09-24 01:59:08,131 INFO Connection check task end + +2025-09-24 01:59:11,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:11,133 INFO Connection check task start + +2025-09-24 01:59:11,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:11,133 INFO Out dated connection ,size=0 + +2025-09-24 01:59:11,133 INFO Connection check task end + +2025-09-24 01:59:14,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:14,133 INFO Connection check task start + +2025-09-24 01:59:14,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:14,133 INFO Out dated connection ,size=0 + +2025-09-24 01:59:14,133 INFO Connection check task end + +2025-09-24 01:59:17,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:17,134 INFO Connection check task start + +2025-09-24 01:59:17,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:17,134 INFO Out dated connection ,size=0 + +2025-09-24 01:59:17,134 INFO Connection check task end + +2025-09-24 01:59:20,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:20,134 INFO Connection check task start + +2025-09-24 01:59:20,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:20,134 INFO Out dated connection ,size=0 + +2025-09-24 01:59:20,134 INFO Connection check task end + +2025-09-24 01:59:23,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:23,136 INFO Connection check task start + +2025-09-24 01:59:23,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:23,137 INFO Out dated connection ,size=0 + +2025-09-24 01:59:23,137 INFO Connection check task end + +2025-09-24 01:59:26,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:26,139 INFO Connection check task start + +2025-09-24 01:59:26,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:26,139 INFO Out dated connection ,size=0 + +2025-09-24 01:59:26,139 INFO Connection check task end + +2025-09-24 01:59:29,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:29,141 INFO Connection check task start + +2025-09-24 01:59:29,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:29,142 INFO Out dated connection ,size=0 + +2025-09-24 01:59:29,142 INFO Connection check task end + +2025-09-24 01:59:32,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:32,144 INFO Connection check task start + +2025-09-24 01:59:32,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:32,144 INFO Out dated connection ,size=0 + +2025-09-24 01:59:32,144 INFO Connection check task end + +2025-09-24 01:59:35,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:35,146 INFO Connection check task start + +2025-09-24 01:59:35,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:35,146 INFO Out dated connection ,size=0 + +2025-09-24 01:59:35,146 INFO Connection check task end + +2025-09-24 01:59:38,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:38,147 INFO Connection check task start + +2025-09-24 01:59:38,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:38,147 INFO Out dated connection ,size=0 + +2025-09-24 01:59:38,147 INFO Connection check task end + +2025-09-24 01:59:41,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:41,149 INFO Connection check task start + +2025-09-24 01:59:41,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:41,149 INFO Out dated connection ,size=0 + +2025-09-24 01:59:41,149 INFO Connection check task end + +2025-09-24 01:59:44,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:44,150 INFO Connection check task start + +2025-09-24 01:59:44,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:44,150 INFO Out dated connection ,size=0 + +2025-09-24 01:59:44,150 INFO Connection check task end + +2025-09-24 01:59:47,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:47,152 INFO Connection check task start + +2025-09-24 01:59:47,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:47,152 INFO Out dated connection ,size=0 + +2025-09-24 01:59:47,152 INFO Connection check task end + +2025-09-24 01:59:50,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:50,154 INFO Connection check task start + +2025-09-24 01:59:50,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:50,154 INFO Out dated connection ,size=0 + +2025-09-24 01:59:50,154 INFO Connection check task end + +2025-09-24 01:59:53,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:53,156 INFO Connection check task start + +2025-09-24 01:59:53,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:53,157 INFO Out dated connection ,size=0 + +2025-09-24 01:59:53,157 INFO Connection check task end + +2025-09-24 01:59:56,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:56,157 INFO Connection check task start + +2025-09-24 01:59:56,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:56,157 INFO Out dated connection ,size=0 + +2025-09-24 01:59:56,157 INFO Connection check task end + +2025-09-24 01:59:59,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 01:59:59,158 INFO Connection check task start + +2025-09-24 01:59:59,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 01:59:59,158 INFO Out dated connection ,size=0 + +2025-09-24 01:59:59,158 INFO Connection check task end + +2025-09-24 02:00:02,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:02,159 INFO Connection check task start + +2025-09-24 02:00:02,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:02,159 INFO Out dated connection ,size=0 + +2025-09-24 02:00:02,159 INFO Connection check task end + +2025-09-24 02:00:05,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:05,159 INFO Connection check task start + +2025-09-24 02:00:05,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:05,159 INFO Out dated connection ,size=0 + +2025-09-24 02:00:05,160 INFO Connection check task end + +2025-09-24 02:00:08,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:08,160 INFO Connection check task start + +2025-09-24 02:00:08,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:08,160 INFO Out dated connection ,size=0 + +2025-09-24 02:00:08,160 INFO Connection check task end + +2025-09-24 02:00:11,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:11,161 INFO Connection check task start + +2025-09-24 02:00:11,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:11,162 INFO Out dated connection ,size=0 + +2025-09-24 02:00:11,162 INFO Connection check task end + +2025-09-24 02:00:14,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:14,162 INFO Connection check task start + +2025-09-24 02:00:14,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:14,162 INFO Out dated connection ,size=0 + +2025-09-24 02:00:14,162 INFO Connection check task end + +2025-09-24 02:00:17,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:17,164 INFO Connection check task start + +2025-09-24 02:00:17,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:17,164 INFO Out dated connection ,size=0 + +2025-09-24 02:00:17,165 INFO Connection check task end + +2025-09-24 02:00:20,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:20,166 INFO Connection check task start + +2025-09-24 02:00:20,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:20,166 INFO Out dated connection ,size=0 + +2025-09-24 02:00:20,166 INFO Connection check task end + +2025-09-24 02:00:23,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:23,168 INFO Connection check task start + +2025-09-24 02:00:23,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:23,168 INFO Out dated connection ,size=0 + +2025-09-24 02:00:23,168 INFO Connection check task end + +2025-09-24 02:00:26,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:26,169 INFO Connection check task start + +2025-09-24 02:00:26,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:26,169 INFO Out dated connection ,size=0 + +2025-09-24 02:00:26,169 INFO Connection check task end + +2025-09-24 02:00:29,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:29,170 INFO Connection check task start + +2025-09-24 02:00:29,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:29,170 INFO Out dated connection ,size=0 + +2025-09-24 02:00:29,170 INFO Connection check task end + +2025-09-24 02:00:32,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:32,171 INFO Connection check task start + +2025-09-24 02:00:32,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:32,171 INFO Out dated connection ,size=0 + +2025-09-24 02:00:32,171 INFO Connection check task end + +2025-09-24 02:00:35,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:35,171 INFO Connection check task start + +2025-09-24 02:00:35,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:35,172 INFO Out dated connection ,size=0 + +2025-09-24 02:00:35,172 INFO Connection check task end + +2025-09-24 02:00:38,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:38,174 INFO Connection check task start + +2025-09-24 02:00:38,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:38,174 INFO Out dated connection ,size=0 + +2025-09-24 02:00:38,174 INFO Connection check task end + +2025-09-24 02:00:41,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:41,176 INFO Connection check task start + +2025-09-24 02:00:41,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:41,176 INFO Out dated connection ,size=0 + +2025-09-24 02:00:41,176 INFO Connection check task end + +2025-09-24 02:00:44,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:44,178 INFO Connection check task start + +2025-09-24 02:00:44,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:44,178 INFO Out dated connection ,size=0 + +2025-09-24 02:00:44,178 INFO Connection check task end + +2025-09-24 02:00:47,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:47,179 INFO Connection check task start + +2025-09-24 02:00:47,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:47,179 INFO Out dated connection ,size=0 + +2025-09-24 02:00:47,179 INFO Connection check task end + +2025-09-24 02:00:50,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:50,181 INFO Connection check task start + +2025-09-24 02:00:50,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:50,181 INFO Out dated connection ,size=0 + +2025-09-24 02:00:50,181 INFO Connection check task end + +2025-09-24 02:00:53,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:53,182 INFO Connection check task start + +2025-09-24 02:00:53,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:53,182 INFO Out dated connection ,size=0 + +2025-09-24 02:00:53,182 INFO Connection check task end + +2025-09-24 02:00:56,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:56,184 INFO Connection check task start + +2025-09-24 02:00:56,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:56,184 INFO Out dated connection ,size=0 + +2025-09-24 02:00:56,184 INFO Connection check task end + +2025-09-24 02:00:59,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:00:59,184 INFO Connection check task start + +2025-09-24 02:00:59,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:00:59,184 INFO Out dated connection ,size=0 + +2025-09-24 02:00:59,184 INFO Connection check task end + +2025-09-24 02:01:02,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:02,186 INFO Connection check task start + +2025-09-24 02:01:02,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:02,186 INFO Out dated connection ,size=0 + +2025-09-24 02:01:02,186 INFO Connection check task end + +2025-09-24 02:01:05,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:05,187 INFO Connection check task start + +2025-09-24 02:01:05,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:05,188 INFO Out dated connection ,size=0 + +2025-09-24 02:01:05,188 INFO Connection check task end + +2025-09-24 02:01:08,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:08,189 INFO Connection check task start + +2025-09-24 02:01:08,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:08,189 INFO Out dated connection ,size=0 + +2025-09-24 02:01:08,189 INFO Connection check task end + +2025-09-24 02:01:11,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:11,190 INFO Connection check task start + +2025-09-24 02:01:11,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:11,191 INFO Out dated connection ,size=0 + +2025-09-24 02:01:11,191 INFO Connection check task end + +2025-09-24 02:01:14,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:14,193 INFO Connection check task start + +2025-09-24 02:01:14,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:14,193 INFO Out dated connection ,size=0 + +2025-09-24 02:01:14,193 INFO Connection check task end + +2025-09-24 02:01:17,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:17,194 INFO Connection check task start + +2025-09-24 02:01:17,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:17,194 INFO Out dated connection ,size=0 + +2025-09-24 02:01:17,194 INFO Connection check task end + +2025-09-24 02:01:20,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:20,195 INFO Connection check task start + +2025-09-24 02:01:20,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:20,196 INFO Out dated connection ,size=0 + +2025-09-24 02:01:20,196 INFO Connection check task end + +2025-09-24 02:01:23,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:23,197 INFO Connection check task start + +2025-09-24 02:01:23,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:23,197 INFO Out dated connection ,size=0 + +2025-09-24 02:01:23,197 INFO Connection check task end + +2025-09-24 02:01:26,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:26,198 INFO Connection check task start + +2025-09-24 02:01:26,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:26,198 INFO Out dated connection ,size=0 + +2025-09-24 02:01:26,198 INFO Connection check task end + +2025-09-24 02:01:29,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:29,198 INFO Connection check task start + +2025-09-24 02:01:29,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:29,198 INFO Out dated connection ,size=0 + +2025-09-24 02:01:29,198 INFO Connection check task end + +2025-09-24 02:01:32,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:32,199 INFO Connection check task start + +2025-09-24 02:01:32,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:32,199 INFO Out dated connection ,size=0 + +2025-09-24 02:01:32,199 INFO Connection check task end + +2025-09-24 02:01:35,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:35,202 INFO Connection check task start + +2025-09-24 02:01:35,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:35,202 INFO Out dated connection ,size=0 + +2025-09-24 02:01:35,202 INFO Connection check task end + +2025-09-24 02:01:38,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:38,203 INFO Connection check task start + +2025-09-24 02:01:38,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:38,203 INFO Out dated connection ,size=0 + +2025-09-24 02:01:38,203 INFO Connection check task end + +2025-09-24 02:01:41,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:41,204 INFO Connection check task start + +2025-09-24 02:01:41,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:41,204 INFO Out dated connection ,size=0 + +2025-09-24 02:01:41,205 INFO Connection check task end + +2025-09-24 02:01:44,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:44,207 INFO Connection check task start + +2025-09-24 02:01:44,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:44,207 INFO Out dated connection ,size=0 + +2025-09-24 02:01:44,207 INFO Connection check task end + +2025-09-24 02:01:47,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:47,209 INFO Connection check task start + +2025-09-24 02:01:47,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:47,209 INFO Out dated connection ,size=0 + +2025-09-24 02:01:47,210 INFO Connection check task end + +2025-09-24 02:01:50,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:50,212 INFO Connection check task start + +2025-09-24 02:01:50,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:50,212 INFO Out dated connection ,size=0 + +2025-09-24 02:01:50,212 INFO Connection check task end + +2025-09-24 02:01:53,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:53,212 INFO Connection check task start + +2025-09-24 02:01:53,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:53,212 INFO Out dated connection ,size=0 + +2025-09-24 02:01:53,213 INFO Connection check task end + +2025-09-24 02:01:56,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:56,214 INFO Connection check task start + +2025-09-24 02:01:56,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:56,214 INFO Out dated connection ,size=0 + +2025-09-24 02:01:56,214 INFO Connection check task end + +2025-09-24 02:01:59,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:01:59,216 INFO Connection check task start + +2025-09-24 02:01:59,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:01:59,216 INFO Out dated connection ,size=0 + +2025-09-24 02:01:59,216 INFO Connection check task end + +2025-09-24 02:02:02,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:02,219 INFO Connection check task start + +2025-09-24 02:02:02,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:02,219 INFO Out dated connection ,size=0 + +2025-09-24 02:02:02,219 INFO Connection check task end + +2025-09-24 02:02:05,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:05,220 INFO Connection check task start + +2025-09-24 02:02:05,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:05,220 INFO Out dated connection ,size=0 + +2025-09-24 02:02:05,220 INFO Connection check task end + +2025-09-24 02:02:08,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:08,222 INFO Connection check task start + +2025-09-24 02:02:08,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:08,222 INFO Out dated connection ,size=0 + +2025-09-24 02:02:08,222 INFO Connection check task end + +2025-09-24 02:02:11,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:11,224 INFO Connection check task start + +2025-09-24 02:02:11,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:11,224 INFO Out dated connection ,size=0 + +2025-09-24 02:02:11,224 INFO Connection check task end + +2025-09-24 02:02:14,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:14,225 INFO Connection check task start + +2025-09-24 02:02:14,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:14,225 INFO Out dated connection ,size=0 + +2025-09-24 02:02:14,225 INFO Connection check task end + +2025-09-24 02:02:17,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:17,227 INFO Connection check task start + +2025-09-24 02:02:17,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:17,228 INFO Out dated connection ,size=0 + +2025-09-24 02:02:17,228 INFO Connection check task end + +2025-09-24 02:02:20,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:20,229 INFO Connection check task start + +2025-09-24 02:02:20,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:20,229 INFO Out dated connection ,size=0 + +2025-09-24 02:02:20,229 INFO Connection check task end + +2025-09-24 02:02:23,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:23,229 INFO Connection check task start + +2025-09-24 02:02:23,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:23,229 INFO Out dated connection ,size=0 + +2025-09-24 02:02:23,229 INFO Connection check task end + +2025-09-24 02:02:26,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:26,231 INFO Connection check task start + +2025-09-24 02:02:26,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:26,231 INFO Out dated connection ,size=0 + +2025-09-24 02:02:26,231 INFO Connection check task end + +2025-09-24 02:02:29,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:29,231 INFO Connection check task start + +2025-09-24 02:02:29,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:29,231 INFO Out dated connection ,size=0 + +2025-09-24 02:02:29,231 INFO Connection check task end + +2025-09-24 02:02:32,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:32,232 INFO Connection check task start + +2025-09-24 02:02:32,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:32,232 INFO Out dated connection ,size=0 + +2025-09-24 02:02:32,232 INFO Connection check task end + +2025-09-24 02:02:35,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:35,235 INFO Connection check task start + +2025-09-24 02:02:35,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:35,235 INFO Out dated connection ,size=0 + +2025-09-24 02:02:35,235 INFO Connection check task end + +2025-09-24 02:02:38,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:38,237 INFO Connection check task start + +2025-09-24 02:02:38,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:38,237 INFO Out dated connection ,size=0 + +2025-09-24 02:02:38,237 INFO Connection check task end + +2025-09-24 02:02:41,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:41,239 INFO Connection check task start + +2025-09-24 02:02:41,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:41,240 INFO Out dated connection ,size=0 + +2025-09-24 02:02:41,240 INFO Connection check task end + +2025-09-24 02:02:44,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:44,241 INFO Connection check task start + +2025-09-24 02:02:44,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:44,241 INFO Out dated connection ,size=0 + +2025-09-24 02:02:44,241 INFO Connection check task end + +2025-09-24 02:02:47,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:47,242 INFO Connection check task start + +2025-09-24 02:02:47,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:47,242 INFO Out dated connection ,size=0 + +2025-09-24 02:02:47,242 INFO Connection check task end + +2025-09-24 02:02:50,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:50,243 INFO Connection check task start + +2025-09-24 02:02:50,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:50,243 INFO Out dated connection ,size=0 + +2025-09-24 02:02:50,243 INFO Connection check task end + +2025-09-24 02:02:53,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:53,245 INFO Connection check task start + +2025-09-24 02:02:53,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:53,245 INFO Out dated connection ,size=0 + +2025-09-24 02:02:53,245 INFO Connection check task end + +2025-09-24 02:02:56,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:56,247 INFO Connection check task start + +2025-09-24 02:02:56,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:56,247 INFO Out dated connection ,size=0 + +2025-09-24 02:02:56,247 INFO Connection check task end + +2025-09-24 02:02:59,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:02:59,248 INFO Connection check task start + +2025-09-24 02:02:59,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:02:59,248 INFO Out dated connection ,size=0 + +2025-09-24 02:02:59,248 INFO Connection check task end + +2025-09-24 02:03:02,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:02,250 INFO Connection check task start + +2025-09-24 02:03:02,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:02,250 INFO Out dated connection ,size=0 + +2025-09-24 02:03:02,250 INFO Connection check task end + +2025-09-24 02:03:05,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:05,252 INFO Connection check task start + +2025-09-24 02:03:05,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:05,252 INFO Out dated connection ,size=0 + +2025-09-24 02:03:05,252 INFO Connection check task end + +2025-09-24 02:03:08,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:08,253 INFO Connection check task start + +2025-09-24 02:03:08,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:08,253 INFO Out dated connection ,size=0 + +2025-09-24 02:03:08,253 INFO Connection check task end + +2025-09-24 02:03:11,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:11,254 INFO Connection check task start + +2025-09-24 02:03:11,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:11,254 INFO Out dated connection ,size=0 + +2025-09-24 02:03:11,254 INFO Connection check task end + +2025-09-24 02:03:14,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:14,256 INFO Connection check task start + +2025-09-24 02:03:14,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:14,256 INFO Out dated connection ,size=0 + +2025-09-24 02:03:14,256 INFO Connection check task end + +2025-09-24 02:03:17,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:17,258 INFO Connection check task start + +2025-09-24 02:03:17,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:17,258 INFO Out dated connection ,size=0 + +2025-09-24 02:03:17,258 INFO Connection check task end + +2025-09-24 02:03:20,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:20,260 INFO Connection check task start + +2025-09-24 02:03:20,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:20,261 INFO Out dated connection ,size=0 + +2025-09-24 02:03:20,261 INFO Connection check task end + +2025-09-24 02:03:23,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:23,261 INFO Connection check task start + +2025-09-24 02:03:23,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:23,261 INFO Out dated connection ,size=0 + +2025-09-24 02:03:23,261 INFO Connection check task end + +2025-09-24 02:03:26,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:26,262 INFO Connection check task start + +2025-09-24 02:03:26,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:26,262 INFO Out dated connection ,size=0 + +2025-09-24 02:03:26,262 INFO Connection check task end + +2025-09-24 02:03:29,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:29,262 INFO Connection check task start + +2025-09-24 02:03:29,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:29,262 INFO Out dated connection ,size=0 + +2025-09-24 02:03:29,262 INFO Connection check task end + +2025-09-24 02:03:32,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:32,262 INFO Connection check task start + +2025-09-24 02:03:32,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:32,263 INFO Out dated connection ,size=0 + +2025-09-24 02:03:32,263 INFO Connection check task end + +2025-09-24 02:03:35,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:35,263 INFO Connection check task start + +2025-09-24 02:03:35,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:35,263 INFO Out dated connection ,size=0 + +2025-09-24 02:03:35,263 INFO Connection check task end + +2025-09-24 02:03:38,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:38,265 INFO Connection check task start + +2025-09-24 02:03:38,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:38,266 INFO Out dated connection ,size=0 + +2025-09-24 02:03:38,266 INFO Connection check task end + +2025-09-24 02:03:41,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:41,268 INFO Connection check task start + +2025-09-24 02:03:41,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:41,268 INFO Out dated connection ,size=0 + +2025-09-24 02:03:41,268 INFO Connection check task end + +2025-09-24 02:03:44,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:44,270 INFO Connection check task start + +2025-09-24 02:03:44,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:44,271 INFO Out dated connection ,size=0 + +2025-09-24 02:03:44,271 INFO Connection check task end + +2025-09-24 02:03:47,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:47,271 INFO Connection check task start + +2025-09-24 02:03:47,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:47,271 INFO Out dated connection ,size=0 + +2025-09-24 02:03:47,271 INFO Connection check task end + +2025-09-24 02:03:50,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:50,273 INFO Connection check task start + +2025-09-24 02:03:50,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:50,273 INFO Out dated connection ,size=0 + +2025-09-24 02:03:50,273 INFO Connection check task end + +2025-09-24 02:03:53,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:53,274 INFO Connection check task start + +2025-09-24 02:03:53,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:53,274 INFO Out dated connection ,size=0 + +2025-09-24 02:03:53,274 INFO Connection check task end + +2025-09-24 02:03:56,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:56,275 INFO Connection check task start + +2025-09-24 02:03:56,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:56,275 INFO Out dated connection ,size=0 + +2025-09-24 02:03:56,275 INFO Connection check task end + +2025-09-24 02:03:59,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:03:59,276 INFO Connection check task start + +2025-09-24 02:03:59,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:03:59,276 INFO Out dated connection ,size=0 + +2025-09-24 02:03:59,276 INFO Connection check task end + +2025-09-24 02:04:02,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:02,277 INFO Connection check task start + +2025-09-24 02:04:02,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:02,277 INFO Out dated connection ,size=0 + +2025-09-24 02:04:02,277 INFO Connection check task end + +2025-09-24 02:04:05,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:05,278 INFO Connection check task start + +2025-09-24 02:04:05,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:05,278 INFO Out dated connection ,size=0 + +2025-09-24 02:04:05,278 INFO Connection check task end + +2025-09-24 02:04:08,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:08,279 INFO Connection check task start + +2025-09-24 02:04:08,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:08,279 INFO Out dated connection ,size=0 + +2025-09-24 02:04:08,279 INFO Connection check task end + +2025-09-24 02:04:11,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:11,279 INFO Connection check task start + +2025-09-24 02:04:11,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:11,279 INFO Out dated connection ,size=0 + +2025-09-24 02:04:11,279 INFO Connection check task end + +2025-09-24 02:04:14,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:14,280 INFO Connection check task start + +2025-09-24 02:04:14,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:14,280 INFO Out dated connection ,size=0 + +2025-09-24 02:04:14,280 INFO Connection check task end + +2025-09-24 02:04:17,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:17,282 INFO Connection check task start + +2025-09-24 02:04:17,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:17,283 INFO Out dated connection ,size=0 + +2025-09-24 02:04:17,283 INFO Connection check task end + +2025-09-24 02:04:20,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:20,285 INFO Connection check task start + +2025-09-24 02:04:20,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:20,285 INFO Out dated connection ,size=0 + +2025-09-24 02:04:20,285 INFO Connection check task end + +2025-09-24 02:04:23,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:23,287 INFO Connection check task start + +2025-09-24 02:04:23,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:23,287 INFO Out dated connection ,size=0 + +2025-09-24 02:04:23,287 INFO Connection check task end + +2025-09-24 02:04:26,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:26,287 INFO Connection check task start + +2025-09-24 02:04:26,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:26,287 INFO Out dated connection ,size=0 + +2025-09-24 02:04:26,287 INFO Connection check task end + +2025-09-24 02:04:29,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:29,289 INFO Connection check task start + +2025-09-24 02:04:29,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:29,290 INFO Out dated connection ,size=0 + +2025-09-24 02:04:29,290 INFO Connection check task end + +2025-09-24 02:04:32,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:32,292 INFO Connection check task start + +2025-09-24 02:04:32,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:32,292 INFO Out dated connection ,size=0 + +2025-09-24 02:04:32,292 INFO Connection check task end + +2025-09-24 02:04:35,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:35,293 INFO Connection check task start + +2025-09-24 02:04:35,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:35,293 INFO Out dated connection ,size=0 + +2025-09-24 02:04:35,293 INFO Connection check task end + +2025-09-24 02:04:38,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:38,294 INFO Connection check task start + +2025-09-24 02:04:38,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:38,294 INFO Out dated connection ,size=0 + +2025-09-24 02:04:38,294 INFO Connection check task end + +2025-09-24 02:04:41,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:41,296 INFO Connection check task start + +2025-09-24 02:04:41,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:41,296 INFO Out dated connection ,size=0 + +2025-09-24 02:04:41,296 INFO Connection check task end + +2025-09-24 02:04:44,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:44,298 INFO Connection check task start + +2025-09-24 02:04:44,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:44,298 INFO Out dated connection ,size=0 + +2025-09-24 02:04:44,298 INFO Connection check task end + +2025-09-24 02:04:47,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:47,300 INFO Connection check task start + +2025-09-24 02:04:47,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:47,300 INFO Out dated connection ,size=0 + +2025-09-24 02:04:47,300 INFO Connection check task end + +2025-09-24 02:04:50,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:50,300 INFO Connection check task start + +2025-09-24 02:04:50,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:50,300 INFO Out dated connection ,size=0 + +2025-09-24 02:04:50,300 INFO Connection check task end + +2025-09-24 02:04:53,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:53,301 INFO Connection check task start + +2025-09-24 02:04:53,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:53,301 INFO Out dated connection ,size=0 + +2025-09-24 02:04:53,301 INFO Connection check task end + +2025-09-24 02:04:56,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:56,302 INFO Connection check task start + +2025-09-24 02:04:56,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:56,302 INFO Out dated connection ,size=0 + +2025-09-24 02:04:56,302 INFO Connection check task end + +2025-09-24 02:04:59,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:04:59,303 INFO Connection check task start + +2025-09-24 02:04:59,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:04:59,303 INFO Out dated connection ,size=0 + +2025-09-24 02:04:59,303 INFO Connection check task end + +2025-09-24 02:05:02,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:02,304 INFO Connection check task start + +2025-09-24 02:05:02,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:02,304 INFO Out dated connection ,size=0 + +2025-09-24 02:05:02,304 INFO Connection check task end + +2025-09-24 02:05:05,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:05,305 INFO Connection check task start + +2025-09-24 02:05:05,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:05,305 INFO Out dated connection ,size=0 + +2025-09-24 02:05:05,305 INFO Connection check task end + +2025-09-24 02:05:08,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:08,306 INFO Connection check task start + +2025-09-24 02:05:08,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:08,306 INFO Out dated connection ,size=0 + +2025-09-24 02:05:08,306 INFO Connection check task end + +2025-09-24 02:05:11,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:11,308 INFO Connection check task start + +2025-09-24 02:05:11,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:11,308 INFO Out dated connection ,size=0 + +2025-09-24 02:05:11,308 INFO Connection check task end + +2025-09-24 02:05:14,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:14,308 INFO Connection check task start + +2025-09-24 02:05:14,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:14,309 INFO Out dated connection ,size=0 + +2025-09-24 02:05:14,309 INFO Connection check task end + +2025-09-24 02:05:17,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:17,309 INFO Connection check task start + +2025-09-24 02:05:17,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:17,309 INFO Out dated connection ,size=0 + +2025-09-24 02:05:17,309 INFO Connection check task end + +2025-09-24 02:05:20,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:20,309 INFO Connection check task start + +2025-09-24 02:05:20,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:20,310 INFO Out dated connection ,size=0 + +2025-09-24 02:05:20,310 INFO Connection check task end + +2025-09-24 02:05:23,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:23,312 INFO Connection check task start + +2025-09-24 02:05:23,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:23,312 INFO Out dated connection ,size=0 + +2025-09-24 02:05:23,312 INFO Connection check task end + +2025-09-24 02:05:26,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:26,313 INFO Connection check task start + +2025-09-24 02:05:26,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:26,313 INFO Out dated connection ,size=0 + +2025-09-24 02:05:26,313 INFO Connection check task end + +2025-09-24 02:05:29,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:29,313 INFO Connection check task start + +2025-09-24 02:05:29,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:29,313 INFO Out dated connection ,size=0 + +2025-09-24 02:05:29,313 INFO Connection check task end + +2025-09-24 02:05:32,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:32,315 INFO Connection check task start + +2025-09-24 02:05:32,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:32,316 INFO Out dated connection ,size=0 + +2025-09-24 02:05:32,316 INFO Connection check task end + +2025-09-24 02:05:35,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:35,316 INFO Connection check task start + +2025-09-24 02:05:35,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:35,316 INFO Out dated connection ,size=0 + +2025-09-24 02:05:35,316 INFO Connection check task end + +2025-09-24 02:05:38,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:38,317 INFO Connection check task start + +2025-09-24 02:05:38,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:38,317 INFO Out dated connection ,size=0 + +2025-09-24 02:05:38,317 INFO Connection check task end + +2025-09-24 02:05:41,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:41,317 INFO Connection check task start + +2025-09-24 02:05:41,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:41,318 INFO Out dated connection ,size=0 + +2025-09-24 02:05:41,318 INFO Connection check task end + +2025-09-24 02:05:44,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:44,318 INFO Connection check task start + +2025-09-24 02:05:44,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:44,318 INFO Out dated connection ,size=0 + +2025-09-24 02:05:44,318 INFO Connection check task end + +2025-09-24 02:05:47,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:47,319 INFO Connection check task start + +2025-09-24 02:05:47,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:47,319 INFO Out dated connection ,size=0 + +2025-09-24 02:05:47,319 INFO Connection check task end + +2025-09-24 02:05:50,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:50,321 INFO Connection check task start + +2025-09-24 02:05:50,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:50,321 INFO Out dated connection ,size=0 + +2025-09-24 02:05:50,321 INFO Connection check task end + +2025-09-24 02:05:53,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:53,323 INFO Connection check task start + +2025-09-24 02:05:53,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:53,323 INFO Out dated connection ,size=0 + +2025-09-24 02:05:53,323 INFO Connection check task end + +2025-09-24 02:05:56,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:56,323 INFO Connection check task start + +2025-09-24 02:05:56,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:56,323 INFO Out dated connection ,size=0 + +2025-09-24 02:05:56,323 INFO Connection check task end + +2025-09-24 02:05:59,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:05:59,325 INFO Connection check task start + +2025-09-24 02:05:59,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:05:59,326 INFO Out dated connection ,size=0 + +2025-09-24 02:05:59,326 INFO Connection check task end + +2025-09-24 02:06:02,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:02,328 INFO Connection check task start + +2025-09-24 02:06:02,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:02,328 INFO Out dated connection ,size=0 + +2025-09-24 02:06:02,328 INFO Connection check task end + +2025-09-24 02:06:05,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:05,330 INFO Connection check task start + +2025-09-24 02:06:05,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:05,330 INFO Out dated connection ,size=0 + +2025-09-24 02:06:05,330 INFO Connection check task end + +2025-09-24 02:06:08,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:08,331 INFO Connection check task start + +2025-09-24 02:06:08,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:08,331 INFO Out dated connection ,size=0 + +2025-09-24 02:06:08,331 INFO Connection check task end + +2025-09-24 02:06:11,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:11,333 INFO Connection check task start + +2025-09-24 02:06:11,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:11,333 INFO Out dated connection ,size=0 + +2025-09-24 02:06:11,333 INFO Connection check task end + +2025-09-24 02:06:14,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:14,334 INFO Connection check task start + +2025-09-24 02:06:14,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:14,334 INFO Out dated connection ,size=0 + +2025-09-24 02:06:14,334 INFO Connection check task end + +2025-09-24 02:06:17,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:17,335 INFO Connection check task start + +2025-09-24 02:06:17,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:17,335 INFO Out dated connection ,size=0 + +2025-09-24 02:06:17,335 INFO Connection check task end + +2025-09-24 02:06:20,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:20,336 INFO Connection check task start + +2025-09-24 02:06:20,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:20,336 INFO Out dated connection ,size=0 + +2025-09-24 02:06:20,336 INFO Connection check task end + +2025-09-24 02:06:23,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:23,337 INFO Connection check task start + +2025-09-24 02:06:23,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:23,337 INFO Out dated connection ,size=0 + +2025-09-24 02:06:23,337 INFO Connection check task end + +2025-09-24 02:06:26,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:26,338 INFO Connection check task start + +2025-09-24 02:06:26,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:26,338 INFO Out dated connection ,size=0 + +2025-09-24 02:06:26,338 INFO Connection check task end + +2025-09-24 02:06:29,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:29,338 INFO Connection check task start + +2025-09-24 02:06:29,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:29,338 INFO Out dated connection ,size=0 + +2025-09-24 02:06:29,338 INFO Connection check task end + +2025-09-24 02:06:32,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:32,339 INFO Connection check task start + +2025-09-24 02:06:32,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:32,339 INFO Out dated connection ,size=0 + +2025-09-24 02:06:32,339 INFO Connection check task end + +2025-09-24 02:06:35,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:35,342 INFO Connection check task start + +2025-09-24 02:06:35,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:35,342 INFO Out dated connection ,size=0 + +2025-09-24 02:06:35,342 INFO Connection check task end + +2025-09-24 02:06:38,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:38,343 INFO Connection check task start + +2025-09-24 02:06:38,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:38,343 INFO Out dated connection ,size=0 + +2025-09-24 02:06:38,343 INFO Connection check task end + +2025-09-24 02:06:41,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:41,344 INFO Connection check task start + +2025-09-24 02:06:41,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:41,344 INFO Out dated connection ,size=0 + +2025-09-24 02:06:41,345 INFO Connection check task end + +2025-09-24 02:06:44,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:44,345 INFO Connection check task start + +2025-09-24 02:06:44,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:44,348 INFO Out dated connection ,size=0 + +2025-09-24 02:06:44,348 INFO Connection check task end + +2025-09-24 02:06:47,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:47,350 INFO Connection check task start + +2025-09-24 02:06:47,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:47,350 INFO Out dated connection ,size=0 + +2025-09-24 02:06:47,350 INFO Connection check task end + +2025-09-24 02:06:50,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:50,350 INFO Connection check task start + +2025-09-24 02:06:50,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:50,351 INFO Out dated connection ,size=0 + +2025-09-24 02:06:50,351 INFO Connection check task end + +2025-09-24 02:06:53,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:53,351 INFO Connection check task start + +2025-09-24 02:06:53,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:53,352 INFO Out dated connection ,size=0 + +2025-09-24 02:06:53,352 INFO Connection check task end + +2025-09-24 02:06:56,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:56,353 INFO Connection check task start + +2025-09-24 02:06:56,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:56,353 INFO Out dated connection ,size=0 + +2025-09-24 02:06:56,353 INFO Connection check task end + +2025-09-24 02:06:59,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:06:59,353 INFO Connection check task start + +2025-09-24 02:06:59,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:06:59,354 INFO Out dated connection ,size=0 + +2025-09-24 02:06:59,354 INFO Connection check task end + +2025-09-24 02:07:02,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:02,355 INFO Connection check task start + +2025-09-24 02:07:02,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:02,355 INFO Out dated connection ,size=0 + +2025-09-24 02:07:02,356 INFO Connection check task end + +2025-09-24 02:07:05,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:05,358 INFO Connection check task start + +2025-09-24 02:07:05,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:05,358 INFO Out dated connection ,size=0 + +2025-09-24 02:07:05,358 INFO Connection check task end + +2025-09-24 02:07:08,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:08,360 INFO Connection check task start + +2025-09-24 02:07:08,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:08,360 INFO Out dated connection ,size=0 + +2025-09-24 02:07:08,360 INFO Connection check task end + +2025-09-24 02:07:11,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:11,360 INFO Connection check task start + +2025-09-24 02:07:11,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:11,360 INFO Out dated connection ,size=0 + +2025-09-24 02:07:11,360 INFO Connection check task end + +2025-09-24 02:07:14,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:14,362 INFO Connection check task start + +2025-09-24 02:07:14,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:14,362 INFO Out dated connection ,size=0 + +2025-09-24 02:07:14,362 INFO Connection check task end + +2025-09-24 02:07:17,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:17,363 INFO Connection check task start + +2025-09-24 02:07:17,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:17,363 INFO Out dated connection ,size=0 + +2025-09-24 02:07:17,363 INFO Connection check task end + +2025-09-24 02:07:20,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:20,363 INFO Connection check task start + +2025-09-24 02:07:20,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:20,364 INFO Out dated connection ,size=0 + +2025-09-24 02:07:20,364 INFO Connection check task end + +2025-09-24 02:07:23,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:23,366 INFO Connection check task start + +2025-09-24 02:07:23,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:23,366 INFO Out dated connection ,size=0 + +2025-09-24 02:07:23,366 INFO Connection check task end + +2025-09-24 02:07:26,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:26,366 INFO Connection check task start + +2025-09-24 02:07:26,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:26,366 INFO Out dated connection ,size=0 + +2025-09-24 02:07:26,366 INFO Connection check task end + +2025-09-24 02:07:29,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:29,367 INFO Connection check task start + +2025-09-24 02:07:29,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:29,367 INFO Out dated connection ,size=0 + +2025-09-24 02:07:29,367 INFO Connection check task end + +2025-09-24 02:07:32,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:32,368 INFO Connection check task start + +2025-09-24 02:07:32,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:32,368 INFO Out dated connection ,size=0 + +2025-09-24 02:07:32,368 INFO Connection check task end + +2025-09-24 02:07:35,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:35,369 INFO Connection check task start + +2025-09-24 02:07:35,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:35,369 INFO Out dated connection ,size=0 + +2025-09-24 02:07:35,369 INFO Connection check task end + +2025-09-24 02:07:38,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:38,370 INFO Connection check task start + +2025-09-24 02:07:38,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:38,371 INFO Out dated connection ,size=0 + +2025-09-24 02:07:38,371 INFO Connection check task end + +2025-09-24 02:07:41,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:41,371 INFO Connection check task start + +2025-09-24 02:07:41,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:41,371 INFO Out dated connection ,size=0 + +2025-09-24 02:07:41,371 INFO Connection check task end + +2025-09-24 02:07:44,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:44,373 INFO Connection check task start + +2025-09-24 02:07:44,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:44,373 INFO Out dated connection ,size=0 + +2025-09-24 02:07:44,373 INFO Connection check task end + +2025-09-24 02:07:47,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:47,374 INFO Connection check task start + +2025-09-24 02:07:47,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:47,374 INFO Out dated connection ,size=0 + +2025-09-24 02:07:47,374 INFO Connection check task end + +2025-09-24 02:07:50,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:50,375 INFO Connection check task start + +2025-09-24 02:07:50,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:50,375 INFO Out dated connection ,size=0 + +2025-09-24 02:07:50,375 INFO Connection check task end + +2025-09-24 02:07:53,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:53,375 INFO Connection check task start + +2025-09-24 02:07:53,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:53,375 INFO Out dated connection ,size=0 + +2025-09-24 02:07:53,375 INFO Connection check task end + +2025-09-24 02:07:56,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:56,377 INFO Connection check task start + +2025-09-24 02:07:56,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:56,377 INFO Out dated connection ,size=0 + +2025-09-24 02:07:56,377 INFO Connection check task end + +2025-09-24 02:07:59,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:07:59,378 INFO Connection check task start + +2025-09-24 02:07:59,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:07:59,378 INFO Out dated connection ,size=0 + +2025-09-24 02:07:59,378 INFO Connection check task end + +2025-09-24 02:08:02,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:02,379 INFO Connection check task start + +2025-09-24 02:08:02,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:02,379 INFO Out dated connection ,size=0 + +2025-09-24 02:08:02,380 INFO Connection check task end + +2025-09-24 02:08:05,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:05,380 INFO Connection check task start + +2025-09-24 02:08:05,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:05,380 INFO Out dated connection ,size=0 + +2025-09-24 02:08:05,380 INFO Connection check task end + +2025-09-24 02:08:08,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:08,381 INFO Connection check task start + +2025-09-24 02:08:08,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:08,382 INFO Out dated connection ,size=0 + +2025-09-24 02:08:08,382 INFO Connection check task end + +2025-09-24 02:08:11,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:11,382 INFO Connection check task start + +2025-09-24 02:08:11,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:11,382 INFO Out dated connection ,size=0 + +2025-09-24 02:08:11,382 INFO Connection check task end + +2025-09-24 02:08:14,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:14,384 INFO Connection check task start + +2025-09-24 02:08:14,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:14,384 INFO Out dated connection ,size=0 + +2025-09-24 02:08:14,384 INFO Connection check task end + +2025-09-24 02:08:17,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:17,385 INFO Connection check task start + +2025-09-24 02:08:17,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:17,385 INFO Out dated connection ,size=0 + +2025-09-24 02:08:17,385 INFO Connection check task end + +2025-09-24 02:08:20,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:20,387 INFO Connection check task start + +2025-09-24 02:08:20,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:20,387 INFO Out dated connection ,size=0 + +2025-09-24 02:08:20,387 INFO Connection check task end + +2025-09-24 02:08:23,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:23,388 INFO Connection check task start + +2025-09-24 02:08:23,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:23,388 INFO Out dated connection ,size=0 + +2025-09-24 02:08:23,388 INFO Connection check task end + +2025-09-24 02:08:26,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:26,389 INFO Connection check task start + +2025-09-24 02:08:26,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:26,389 INFO Out dated connection ,size=0 + +2025-09-24 02:08:26,389 INFO Connection check task end + +2025-09-24 02:08:29,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:29,391 INFO Connection check task start + +2025-09-24 02:08:29,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:29,391 INFO Out dated connection ,size=0 + +2025-09-24 02:08:29,391 INFO Connection check task end + +2025-09-24 02:08:32,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:32,391 INFO Connection check task start + +2025-09-24 02:08:32,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:32,391 INFO Out dated connection ,size=0 + +2025-09-24 02:08:32,391 INFO Connection check task end + +2025-09-24 02:08:35,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:35,392 INFO Connection check task start + +2025-09-24 02:08:35,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:35,392 INFO Out dated connection ,size=0 + +2025-09-24 02:08:35,392 INFO Connection check task end + +2025-09-24 02:08:38,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:38,392 INFO Connection check task start + +2025-09-24 02:08:38,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:38,393 INFO Out dated connection ,size=0 + +2025-09-24 02:08:38,393 INFO Connection check task end + +2025-09-24 02:08:41,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:41,395 INFO Connection check task start + +2025-09-24 02:08:41,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:41,395 INFO Out dated connection ,size=0 + +2025-09-24 02:08:41,395 INFO Connection check task end + +2025-09-24 02:08:44,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:44,396 INFO Connection check task start + +2025-09-24 02:08:44,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:44,396 INFO Out dated connection ,size=0 + +2025-09-24 02:08:44,396 INFO Connection check task end + +2025-09-24 02:08:47,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:47,396 INFO Connection check task start + +2025-09-24 02:08:47,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:47,397 INFO Out dated connection ,size=0 + +2025-09-24 02:08:47,397 INFO Connection check task end + +2025-09-24 02:08:50,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:50,397 INFO Connection check task start + +2025-09-24 02:08:50,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:50,397 INFO Out dated connection ,size=0 + +2025-09-24 02:08:50,397 INFO Connection check task end + +2025-09-24 02:08:53,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:53,399 INFO Connection check task start + +2025-09-24 02:08:53,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:53,399 INFO Out dated connection ,size=0 + +2025-09-24 02:08:53,399 INFO Connection check task end + +2025-09-24 02:08:56,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:56,399 INFO Connection check task start + +2025-09-24 02:08:56,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:56,399 INFO Out dated connection ,size=0 + +2025-09-24 02:08:56,399 INFO Connection check task end + +2025-09-24 02:08:59,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:08:59,400 INFO Connection check task start + +2025-09-24 02:08:59,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:08:59,400 INFO Out dated connection ,size=0 + +2025-09-24 02:08:59,400 INFO Connection check task end + +2025-09-24 02:09:02,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:02,401 INFO Connection check task start + +2025-09-24 02:09:02,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:02,401 INFO Out dated connection ,size=0 + +2025-09-24 02:09:02,401 INFO Connection check task end + +2025-09-24 02:09:05,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:05,403 INFO Connection check task start + +2025-09-24 02:09:05,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:05,403 INFO Out dated connection ,size=0 + +2025-09-24 02:09:05,403 INFO Connection check task end + +2025-09-24 02:09:08,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:08,405 INFO Connection check task start + +2025-09-24 02:09:08,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:08,405 INFO Out dated connection ,size=0 + +2025-09-24 02:09:08,405 INFO Connection check task end + +2025-09-24 02:09:11,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:11,406 INFO Connection check task start + +2025-09-24 02:09:11,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:11,406 INFO Out dated connection ,size=0 + +2025-09-24 02:09:11,407 INFO Connection check task end + +2025-09-24 02:09:14,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:14,409 INFO Connection check task start + +2025-09-24 02:09:14,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:14,409 INFO Out dated connection ,size=0 + +2025-09-24 02:09:14,409 INFO Connection check task end + +2025-09-24 02:09:17,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:17,409 INFO Connection check task start + +2025-09-24 02:09:17,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:17,409 INFO Out dated connection ,size=0 + +2025-09-24 02:09:17,409 INFO Connection check task end + +2025-09-24 02:09:20,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:20,411 INFO Connection check task start + +2025-09-24 02:09:20,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:20,411 INFO Out dated connection ,size=0 + +2025-09-24 02:09:20,411 INFO Connection check task end + +2025-09-24 02:09:23,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:23,412 INFO Connection check task start + +2025-09-24 02:09:23,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:23,413 INFO Out dated connection ,size=0 + +2025-09-24 02:09:23,413 INFO Connection check task end + +2025-09-24 02:09:26,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:26,415 INFO Connection check task start + +2025-09-24 02:09:26,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:26,415 INFO Out dated connection ,size=0 + +2025-09-24 02:09:26,415 INFO Connection check task end + +2025-09-24 02:09:29,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:29,415 INFO Connection check task start + +2025-09-24 02:09:29,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:29,415 INFO Out dated connection ,size=0 + +2025-09-24 02:09:29,415 INFO Connection check task end + +2025-09-24 02:09:32,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:32,418 INFO Connection check task start + +2025-09-24 02:09:32,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:32,418 INFO Out dated connection ,size=0 + +2025-09-24 02:09:32,418 INFO Connection check task end + +2025-09-24 02:09:35,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:35,418 INFO Connection check task start + +2025-09-24 02:09:35,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:35,418 INFO Out dated connection ,size=0 + +2025-09-24 02:09:35,418 INFO Connection check task end + +2025-09-24 02:09:38,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:38,420 INFO Connection check task start + +2025-09-24 02:09:38,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:38,421 INFO Out dated connection ,size=0 + +2025-09-24 02:09:38,421 INFO Connection check task end + +2025-09-24 02:09:41,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:41,421 INFO Connection check task start + +2025-09-24 02:09:41,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:41,421 INFO Out dated connection ,size=0 + +2025-09-24 02:09:41,421 INFO Connection check task end + +2025-09-24 02:09:44,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:44,422 INFO Connection check task start + +2025-09-24 02:09:44,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:44,422 INFO Out dated connection ,size=0 + +2025-09-24 02:09:44,422 INFO Connection check task end + +2025-09-24 02:09:47,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:47,424 INFO Connection check task start + +2025-09-24 02:09:47,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:47,424 INFO Out dated connection ,size=0 + +2025-09-24 02:09:47,424 INFO Connection check task end + +2025-09-24 02:09:50,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:50,425 INFO Connection check task start + +2025-09-24 02:09:50,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:50,425 INFO Out dated connection ,size=0 + +2025-09-24 02:09:50,425 INFO Connection check task end + +2025-09-24 02:09:53,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:53,427 INFO Connection check task start + +2025-09-24 02:09:53,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:53,428 INFO Out dated connection ,size=0 + +2025-09-24 02:09:53,428 INFO Connection check task end + +2025-09-24 02:09:56,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:56,430 INFO Connection check task start + +2025-09-24 02:09:56,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:56,430 INFO Out dated connection ,size=0 + +2025-09-24 02:09:56,430 INFO Connection check task end + +2025-09-24 02:09:59,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:09:59,431 INFO Connection check task start + +2025-09-24 02:09:59,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:09:59,431 INFO Out dated connection ,size=0 + +2025-09-24 02:09:59,432 INFO Connection check task end + +2025-09-24 02:10:02,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:02,433 INFO Connection check task start + +2025-09-24 02:10:02,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:02,433 INFO Out dated connection ,size=0 + +2025-09-24 02:10:02,433 INFO Connection check task end + +2025-09-24 02:10:05,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:05,434 INFO Connection check task start + +2025-09-24 02:10:05,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:05,434 INFO Out dated connection ,size=0 + +2025-09-24 02:10:05,434 INFO Connection check task end + +2025-09-24 02:10:08,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:08,436 INFO Connection check task start + +2025-09-24 02:10:08,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:08,436 INFO Out dated connection ,size=0 + +2025-09-24 02:10:08,436 INFO Connection check task end + +2025-09-24 02:10:11,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:11,438 INFO Connection check task start + +2025-09-24 02:10:11,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:11,438 INFO Out dated connection ,size=0 + +2025-09-24 02:10:11,439 INFO Connection check task end + +2025-09-24 02:10:14,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:14,439 INFO Connection check task start + +2025-09-24 02:10:14,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:14,439 INFO Out dated connection ,size=0 + +2025-09-24 02:10:14,439 INFO Connection check task end + +2025-09-24 02:10:17,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:17,440 INFO Connection check task start + +2025-09-24 02:10:17,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:17,440 INFO Out dated connection ,size=0 + +2025-09-24 02:10:17,440 INFO Connection check task end + +2025-09-24 02:10:20,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:20,441 INFO Connection check task start + +2025-09-24 02:10:20,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:20,441 INFO Out dated connection ,size=0 + +2025-09-24 02:10:20,441 INFO Connection check task end + +2025-09-24 02:10:23,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:23,442 INFO Connection check task start + +2025-09-24 02:10:23,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:23,442 INFO Out dated connection ,size=0 + +2025-09-24 02:10:23,442 INFO Connection check task end + +2025-09-24 02:10:26,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:26,443 INFO Connection check task start + +2025-09-24 02:10:26,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:26,443 INFO Out dated connection ,size=0 + +2025-09-24 02:10:26,443 INFO Connection check task end + +2025-09-24 02:10:29,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:29,444 INFO Connection check task start + +2025-09-24 02:10:29,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:29,444 INFO Out dated connection ,size=0 + +2025-09-24 02:10:29,444 INFO Connection check task end + +2025-09-24 02:10:32,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:32,446 INFO Connection check task start + +2025-09-24 02:10:32,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:32,446 INFO Out dated connection ,size=0 + +2025-09-24 02:10:32,446 INFO Connection check task end + +2025-09-24 02:10:35,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:35,447 INFO Connection check task start + +2025-09-24 02:10:35,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:35,447 INFO Out dated connection ,size=0 + +2025-09-24 02:10:35,447 INFO Connection check task end + +2025-09-24 02:10:38,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:38,447 INFO Connection check task start + +2025-09-24 02:10:38,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:38,447 INFO Out dated connection ,size=0 + +2025-09-24 02:10:38,447 INFO Connection check task end + +2025-09-24 02:10:41,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:41,447 INFO Connection check task start + +2025-09-24 02:10:41,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:41,447 INFO Out dated connection ,size=0 + +2025-09-24 02:10:41,448 INFO Connection check task end + +2025-09-24 02:10:44,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:44,449 INFO Connection check task start + +2025-09-24 02:10:44,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:44,449 INFO Out dated connection ,size=0 + +2025-09-24 02:10:44,449 INFO Connection check task end + +2025-09-24 02:10:47,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:47,449 INFO Connection check task start + +2025-09-24 02:10:47,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:47,450 INFO Out dated connection ,size=0 + +2025-09-24 02:10:47,450 INFO Connection check task end + +2025-09-24 02:10:50,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:50,450 INFO Connection check task start + +2025-09-24 02:10:50,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:50,450 INFO Out dated connection ,size=0 + +2025-09-24 02:10:50,450 INFO Connection check task end + +2025-09-24 02:10:53,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:53,451 INFO Connection check task start + +2025-09-24 02:10:53,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:53,451 INFO Out dated connection ,size=0 + +2025-09-24 02:10:53,451 INFO Connection check task end + +2025-09-24 02:10:56,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:56,452 INFO Connection check task start + +2025-09-24 02:10:56,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:56,452 INFO Out dated connection ,size=0 + +2025-09-24 02:10:56,452 INFO Connection check task end + +2025-09-24 02:10:59,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:10:59,452 INFO Connection check task start + +2025-09-24 02:10:59,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:10:59,452 INFO Out dated connection ,size=0 + +2025-09-24 02:10:59,452 INFO Connection check task end + +2025-09-24 02:11:02,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:02,453 INFO Connection check task start + +2025-09-24 02:11:02,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:02,453 INFO Out dated connection ,size=0 + +2025-09-24 02:11:02,453 INFO Connection check task end + +2025-09-24 02:11:05,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:05,453 INFO Connection check task start + +2025-09-24 02:11:05,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:05,453 INFO Out dated connection ,size=0 + +2025-09-24 02:11:05,453 INFO Connection check task end + +2025-09-24 02:11:08,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:08,454 INFO Connection check task start + +2025-09-24 02:11:08,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:08,454 INFO Out dated connection ,size=0 + +2025-09-24 02:11:08,454 INFO Connection check task end + +2025-09-24 02:11:11,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:11,454 INFO Connection check task start + +2025-09-24 02:11:11,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:11,454 INFO Out dated connection ,size=0 + +2025-09-24 02:11:11,454 INFO Connection check task end + +2025-09-24 02:11:14,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:14,455 INFO Connection check task start + +2025-09-24 02:11:14,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:14,455 INFO Out dated connection ,size=0 + +2025-09-24 02:11:14,455 INFO Connection check task end + +2025-09-24 02:11:17,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:17,456 INFO Connection check task start + +2025-09-24 02:11:17,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:17,456 INFO Out dated connection ,size=0 + +2025-09-24 02:11:17,457 INFO Connection check task end + +2025-09-24 02:11:20,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:20,459 INFO Connection check task start + +2025-09-24 02:11:20,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:20,459 INFO Out dated connection ,size=0 + +2025-09-24 02:11:20,459 INFO Connection check task end + +2025-09-24 02:11:23,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:23,460 INFO Connection check task start + +2025-09-24 02:11:23,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:23,460 INFO Out dated connection ,size=0 + +2025-09-24 02:11:23,460 INFO Connection check task end + +2025-09-24 02:11:26,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:26,461 INFO Connection check task start + +2025-09-24 02:11:26,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:26,461 INFO Out dated connection ,size=0 + +2025-09-24 02:11:26,461 INFO Connection check task end + +2025-09-24 02:11:29,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:29,463 INFO Connection check task start + +2025-09-24 02:11:29,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:29,463 INFO Out dated connection ,size=0 + +2025-09-24 02:11:29,463 INFO Connection check task end + +2025-09-24 02:11:32,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:32,463 INFO Connection check task start + +2025-09-24 02:11:32,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:32,464 INFO Out dated connection ,size=0 + +2025-09-24 02:11:32,464 INFO Connection check task end + +2025-09-24 02:11:35,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:35,465 INFO Connection check task start + +2025-09-24 02:11:35,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:35,465 INFO Out dated connection ,size=0 + +2025-09-24 02:11:35,465 INFO Connection check task end + +2025-09-24 02:11:38,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:38,465 INFO Connection check task start + +2025-09-24 02:11:38,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:38,465 INFO Out dated connection ,size=0 + +2025-09-24 02:11:38,465 INFO Connection check task end + +2025-09-24 02:11:41,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:41,465 INFO Connection check task start + +2025-09-24 02:11:41,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:41,466 INFO Out dated connection ,size=0 + +2025-09-24 02:11:41,466 INFO Connection check task end + +2025-09-24 02:11:44,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:44,467 INFO Connection check task start + +2025-09-24 02:11:44,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:44,467 INFO Out dated connection ,size=0 + +2025-09-24 02:11:44,467 INFO Connection check task end + +2025-09-24 02:11:47,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:47,467 INFO Connection check task start + +2025-09-24 02:11:47,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:47,467 INFO Out dated connection ,size=0 + +2025-09-24 02:11:47,467 INFO Connection check task end + +2025-09-24 02:11:50,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:50,469 INFO Connection check task start + +2025-09-24 02:11:50,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:50,469 INFO Out dated connection ,size=0 + +2025-09-24 02:11:50,470 INFO Connection check task end + +2025-09-24 02:11:53,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:53,470 INFO Connection check task start + +2025-09-24 02:11:53,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:53,470 INFO Out dated connection ,size=0 + +2025-09-24 02:11:53,470 INFO Connection check task end + +2025-09-24 02:11:56,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:56,471 INFO Connection check task start + +2025-09-24 02:11:56,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:56,472 INFO Out dated connection ,size=0 + +2025-09-24 02:11:56,472 INFO Connection check task end + +2025-09-24 02:11:59,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:11:59,472 INFO Connection check task start + +2025-09-24 02:11:59,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:11:59,472 INFO Out dated connection ,size=0 + +2025-09-24 02:11:59,472 INFO Connection check task end + +2025-09-24 02:12:02,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:02,472 INFO Connection check task start + +2025-09-24 02:12:02,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:02,473 INFO Out dated connection ,size=0 + +2025-09-24 02:12:02,473 INFO Connection check task end + +2025-09-24 02:12:05,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:05,475 INFO Connection check task start + +2025-09-24 02:12:05,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:05,475 INFO Out dated connection ,size=0 + +2025-09-24 02:12:05,475 INFO Connection check task end + +2025-09-24 02:12:08,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:08,477 INFO Connection check task start + +2025-09-24 02:12:08,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:08,477 INFO Out dated connection ,size=0 + +2025-09-24 02:12:08,477 INFO Connection check task end + +2025-09-24 02:12:11,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:11,479 INFO Connection check task start + +2025-09-24 02:12:11,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:11,480 INFO Out dated connection ,size=0 + +2025-09-24 02:12:11,480 INFO Connection check task end + +2025-09-24 02:12:14,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:14,480 INFO Connection check task start + +2025-09-24 02:12:14,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:14,480 INFO Out dated connection ,size=0 + +2025-09-24 02:12:14,481 INFO Connection check task end + +2025-09-24 02:12:17,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:17,482 INFO Connection check task start + +2025-09-24 02:12:17,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:17,482 INFO Out dated connection ,size=0 + +2025-09-24 02:12:17,482 INFO Connection check task end + +2025-09-24 02:12:20,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:20,484 INFO Connection check task start + +2025-09-24 02:12:20,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:20,484 INFO Out dated connection ,size=0 + +2025-09-24 02:12:20,485 INFO Connection check task end + +2025-09-24 02:12:23,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:23,485 INFO Connection check task start + +2025-09-24 02:12:23,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:23,485 INFO Out dated connection ,size=0 + +2025-09-24 02:12:23,485 INFO Connection check task end + +2025-09-24 02:12:26,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:26,486 INFO Connection check task start + +2025-09-24 02:12:26,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:26,486 INFO Out dated connection ,size=0 + +2025-09-24 02:12:26,486 INFO Connection check task end + +2025-09-24 02:12:29,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:29,486 INFO Connection check task start + +2025-09-24 02:12:29,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:29,486 INFO Out dated connection ,size=0 + +2025-09-24 02:12:29,487 INFO Connection check task end + +2025-09-24 02:12:32,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:32,489 INFO Connection check task start + +2025-09-24 02:12:32,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:32,489 INFO Out dated connection ,size=0 + +2025-09-24 02:12:32,489 INFO Connection check task end + +2025-09-24 02:12:35,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:35,489 INFO Connection check task start + +2025-09-24 02:12:35,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:35,490 INFO Out dated connection ,size=0 + +2025-09-24 02:12:35,490 INFO Connection check task end + +2025-09-24 02:12:38,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:38,490 INFO Connection check task start + +2025-09-24 02:12:38,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:38,490 INFO Out dated connection ,size=0 + +2025-09-24 02:12:38,490 INFO Connection check task end + +2025-09-24 02:12:41,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:41,492 INFO Connection check task start + +2025-09-24 02:12:41,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:41,492 INFO Out dated connection ,size=0 + +2025-09-24 02:12:41,492 INFO Connection check task end + +2025-09-24 02:12:44,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:44,493 INFO Connection check task start + +2025-09-24 02:12:44,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:44,493 INFO Out dated connection ,size=0 + +2025-09-24 02:12:44,493 INFO Connection check task end + +2025-09-24 02:12:47,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:47,494 INFO Connection check task start + +2025-09-24 02:12:47,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:47,495 INFO Out dated connection ,size=0 + +2025-09-24 02:12:47,495 INFO Connection check task end + +2025-09-24 02:12:50,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:50,497 INFO Connection check task start + +2025-09-24 02:12:50,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:50,497 INFO Out dated connection ,size=0 + +2025-09-24 02:12:50,497 INFO Connection check task end + +2025-09-24 02:12:53,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:53,497 INFO Connection check task start + +2025-09-24 02:12:53,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:53,498 INFO Out dated connection ,size=0 + +2025-09-24 02:12:53,498 INFO Connection check task end + +2025-09-24 02:12:56,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:56,499 INFO Connection check task start + +2025-09-24 02:12:56,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:56,499 INFO Out dated connection ,size=0 + +2025-09-24 02:12:56,499 INFO Connection check task end + +2025-09-24 02:12:59,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:12:59,499 INFO Connection check task start + +2025-09-24 02:12:59,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:12:59,500 INFO Out dated connection ,size=0 + +2025-09-24 02:12:59,500 INFO Connection check task end + +2025-09-24 02:13:02,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:02,502 INFO Connection check task start + +2025-09-24 02:13:02,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:02,502 INFO Out dated connection ,size=0 + +2025-09-24 02:13:02,502 INFO Connection check task end + +2025-09-24 02:13:05,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:05,502 INFO Connection check task start + +2025-09-24 02:13:05,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:05,502 INFO Out dated connection ,size=0 + +2025-09-24 02:13:05,503 INFO Connection check task end + +2025-09-24 02:13:08,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:08,503 INFO Connection check task start + +2025-09-24 02:13:08,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:08,503 INFO Out dated connection ,size=0 + +2025-09-24 02:13:08,503 INFO Connection check task end + +2025-09-24 02:13:11,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:11,505 INFO Connection check task start + +2025-09-24 02:13:11,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:11,505 INFO Out dated connection ,size=0 + +2025-09-24 02:13:11,505 INFO Connection check task end + +2025-09-24 02:13:14,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:14,506 INFO Connection check task start + +2025-09-24 02:13:14,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:14,506 INFO Out dated connection ,size=0 + +2025-09-24 02:13:14,506 INFO Connection check task end + +2025-09-24 02:13:17,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:17,506 INFO Connection check task start + +2025-09-24 02:13:17,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:17,506 INFO Out dated connection ,size=0 + +2025-09-24 02:13:17,506 INFO Connection check task end + +2025-09-24 02:13:20,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:20,507 INFO Connection check task start + +2025-09-24 02:13:20,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:20,507 INFO Out dated connection ,size=0 + +2025-09-24 02:13:20,507 INFO Connection check task end + +2025-09-24 02:13:23,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:23,508 INFO Connection check task start + +2025-09-24 02:13:23,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:23,508 INFO Out dated connection ,size=0 + +2025-09-24 02:13:23,508 INFO Connection check task end + +2025-09-24 02:13:26,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:26,510 INFO Connection check task start + +2025-09-24 02:13:26,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:26,510 INFO Out dated connection ,size=0 + +2025-09-24 02:13:26,510 INFO Connection check task end + +2025-09-24 02:13:29,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:29,512 INFO Connection check task start + +2025-09-24 02:13:29,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:29,512 INFO Out dated connection ,size=0 + +2025-09-24 02:13:29,512 INFO Connection check task end + +2025-09-24 02:13:32,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:32,514 INFO Connection check task start + +2025-09-24 02:13:32,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:32,515 INFO Out dated connection ,size=0 + +2025-09-24 02:13:32,515 INFO Connection check task end + +2025-09-24 02:13:35,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:35,515 INFO Connection check task start + +2025-09-24 02:13:35,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:35,515 INFO Out dated connection ,size=0 + +2025-09-24 02:13:35,515 INFO Connection check task end + +2025-09-24 02:13:38,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:38,517 INFO Connection check task start + +2025-09-24 02:13:38,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:38,518 INFO Out dated connection ,size=0 + +2025-09-24 02:13:38,518 INFO Connection check task end + +2025-09-24 02:13:41,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:41,520 INFO Connection check task start + +2025-09-24 02:13:41,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:41,520 INFO Out dated connection ,size=0 + +2025-09-24 02:13:41,520 INFO Connection check task end + +2025-09-24 02:13:44,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:44,521 INFO Connection check task start + +2025-09-24 02:13:44,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:44,521 INFO Out dated connection ,size=0 + +2025-09-24 02:13:44,521 INFO Connection check task end + +2025-09-24 02:13:47,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:47,522 INFO Connection check task start + +2025-09-24 02:13:47,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:47,522 INFO Out dated connection ,size=0 + +2025-09-24 02:13:47,522 INFO Connection check task end + +2025-09-24 02:13:50,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:50,522 INFO Connection check task start + +2025-09-24 02:13:50,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:50,523 INFO Out dated connection ,size=0 + +2025-09-24 02:13:50,523 INFO Connection check task end + +2025-09-24 02:13:53,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:53,525 INFO Connection check task start + +2025-09-24 02:13:53,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:53,525 INFO Out dated connection ,size=0 + +2025-09-24 02:13:53,525 INFO Connection check task end + +2025-09-24 02:13:56,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:56,525 INFO Connection check task start + +2025-09-24 02:13:56,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:56,525 INFO Out dated connection ,size=0 + +2025-09-24 02:13:56,525 INFO Connection check task end + +2025-09-24 02:13:59,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:13:59,527 INFO Connection check task start + +2025-09-24 02:13:59,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:13:59,527 INFO Out dated connection ,size=0 + +2025-09-24 02:13:59,527 INFO Connection check task end + +2025-09-24 02:14:02,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:02,528 INFO Connection check task start + +2025-09-24 02:14:02,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:02,528 INFO Out dated connection ,size=0 + +2025-09-24 02:14:02,528 INFO Connection check task end + +2025-09-24 02:14:05,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:05,528 INFO Connection check task start + +2025-09-24 02:14:05,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:05,528 INFO Out dated connection ,size=0 + +2025-09-24 02:14:05,528 INFO Connection check task end + +2025-09-24 02:14:08,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:08,529 INFO Connection check task start + +2025-09-24 02:14:08,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:08,529 INFO Out dated connection ,size=0 + +2025-09-24 02:14:08,529 INFO Connection check task end + +2025-09-24 02:14:11,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:11,530 INFO Connection check task start + +2025-09-24 02:14:11,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:11,530 INFO Out dated connection ,size=0 + +2025-09-24 02:14:11,530 INFO Connection check task end + +2025-09-24 02:14:14,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:14,532 INFO Connection check task start + +2025-09-24 02:14:14,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:14,532 INFO Out dated connection ,size=0 + +2025-09-24 02:14:14,532 INFO Connection check task end + +2025-09-24 02:14:17,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:17,533 INFO Connection check task start + +2025-09-24 02:14:17,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:17,533 INFO Out dated connection ,size=0 + +2025-09-24 02:14:17,533 INFO Connection check task end + +2025-09-24 02:14:20,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:20,534 INFO Connection check task start + +2025-09-24 02:14:20,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:20,534 INFO Out dated connection ,size=0 + +2025-09-24 02:14:20,534 INFO Connection check task end + +2025-09-24 02:14:23,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:23,535 INFO Connection check task start + +2025-09-24 02:14:23,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:23,535 INFO Out dated connection ,size=0 + +2025-09-24 02:14:23,535 INFO Connection check task end + +2025-09-24 02:14:26,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:26,536 INFO Connection check task start + +2025-09-24 02:14:26,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:26,537 INFO Out dated connection ,size=0 + +2025-09-24 02:14:26,537 INFO Connection check task end + +2025-09-24 02:14:29,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:29,539 INFO Connection check task start + +2025-09-24 02:14:29,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:29,539 INFO Out dated connection ,size=0 + +2025-09-24 02:14:29,539 INFO Connection check task end + +2025-09-24 02:14:32,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:32,539 INFO Connection check task start + +2025-09-24 02:14:32,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:32,539 INFO Out dated connection ,size=0 + +2025-09-24 02:14:32,539 INFO Connection check task end + +2025-09-24 02:14:35,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:35,541 INFO Connection check task start + +2025-09-24 02:14:35,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:35,542 INFO Out dated connection ,size=0 + +2025-09-24 02:14:35,542 INFO Connection check task end + +2025-09-24 02:14:38,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:38,544 INFO Connection check task start + +2025-09-24 02:14:38,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:38,544 INFO Out dated connection ,size=0 + +2025-09-24 02:14:38,544 INFO Connection check task end + +2025-09-24 02:14:41,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:41,545 INFO Connection check task start + +2025-09-24 02:14:41,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:41,546 INFO Out dated connection ,size=0 + +2025-09-24 02:14:41,546 INFO Connection check task end + +2025-09-24 02:14:44,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:44,547 INFO Connection check task start + +2025-09-24 02:14:44,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:44,547 INFO Out dated connection ,size=0 + +2025-09-24 02:14:44,547 INFO Connection check task end + +2025-09-24 02:14:47,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:47,547 INFO Connection check task start + +2025-09-24 02:14:47,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:47,548 INFO Out dated connection ,size=0 + +2025-09-24 02:14:47,548 INFO Connection check task end + +2025-09-24 02:14:50,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:50,548 INFO Connection check task start + +2025-09-24 02:14:50,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:50,548 INFO Out dated connection ,size=0 + +2025-09-24 02:14:50,548 INFO Connection check task end + +2025-09-24 02:14:53,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:53,549 INFO Connection check task start + +2025-09-24 02:14:53,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:53,549 INFO Out dated connection ,size=0 + +2025-09-24 02:14:53,549 INFO Connection check task end + +2025-09-24 02:14:56,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:56,550 INFO Connection check task start + +2025-09-24 02:14:56,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:56,550 INFO Out dated connection ,size=0 + +2025-09-24 02:14:56,550 INFO Connection check task end + +2025-09-24 02:14:59,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:14:59,552 INFO Connection check task start + +2025-09-24 02:14:59,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:14:59,552 INFO Out dated connection ,size=0 + +2025-09-24 02:14:59,552 INFO Connection check task end + +2025-09-24 02:15:02,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:02,553 INFO Connection check task start + +2025-09-24 02:15:02,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:02,553 INFO Out dated connection ,size=0 + +2025-09-24 02:15:02,553 INFO Connection check task end + +2025-09-24 02:15:05,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:05,555 INFO Connection check task start + +2025-09-24 02:15:05,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:05,555 INFO Out dated connection ,size=0 + +2025-09-24 02:15:05,555 INFO Connection check task end + +2025-09-24 02:15:08,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:08,556 INFO Connection check task start + +2025-09-24 02:15:08,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:08,556 INFO Out dated connection ,size=0 + +2025-09-24 02:15:08,556 INFO Connection check task end + +2025-09-24 02:15:11,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:11,557 INFO Connection check task start + +2025-09-24 02:15:11,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:11,557 INFO Out dated connection ,size=0 + +2025-09-24 02:15:11,557 INFO Connection check task end + +2025-09-24 02:15:14,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:14,559 INFO Connection check task start + +2025-09-24 02:15:14,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:14,559 INFO Out dated connection ,size=0 + +2025-09-24 02:15:14,559 INFO Connection check task end + +2025-09-24 02:15:17,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:17,559 INFO Connection check task start + +2025-09-24 02:15:17,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:17,560 INFO Out dated connection ,size=0 + +2025-09-24 02:15:17,560 INFO Connection check task end + +2025-09-24 02:15:20,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:20,561 INFO Connection check task start + +2025-09-24 02:15:20,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:20,561 INFO Out dated connection ,size=0 + +2025-09-24 02:15:20,561 INFO Connection check task end + +2025-09-24 02:15:23,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:23,561 INFO Connection check task start + +2025-09-24 02:15:23,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:23,561 INFO Out dated connection ,size=0 + +2025-09-24 02:15:23,561 INFO Connection check task end + +2025-09-24 02:15:26,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:26,562 INFO Connection check task start + +2025-09-24 02:15:26,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:26,562 INFO Out dated connection ,size=0 + +2025-09-24 02:15:26,562 INFO Connection check task end + +2025-09-24 02:15:29,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:29,562 INFO Connection check task start + +2025-09-24 02:15:29,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:29,562 INFO Out dated connection ,size=0 + +2025-09-24 02:15:29,562 INFO Connection check task end + +2025-09-24 02:15:32,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:32,564 INFO Connection check task start + +2025-09-24 02:15:32,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:32,565 INFO Out dated connection ,size=0 + +2025-09-24 02:15:32,565 INFO Connection check task end + +2025-09-24 02:15:35,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:35,565 INFO Connection check task start + +2025-09-24 02:15:35,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:35,565 INFO Out dated connection ,size=0 + +2025-09-24 02:15:35,565 INFO Connection check task end + +2025-09-24 02:15:38,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:38,565 INFO Connection check task start + +2025-09-24 02:15:38,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:38,566 INFO Out dated connection ,size=0 + +2025-09-24 02:15:38,566 INFO Connection check task end + +2025-09-24 02:15:41,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:41,567 INFO Connection check task start + +2025-09-24 02:15:41,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:41,567 INFO Out dated connection ,size=0 + +2025-09-24 02:15:41,567 INFO Connection check task end + +2025-09-24 02:15:44,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:44,567 INFO Connection check task start + +2025-09-24 02:15:44,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:44,568 INFO Out dated connection ,size=0 + +2025-09-24 02:15:44,568 INFO Connection check task end + +2025-09-24 02:15:47,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:47,568 INFO Connection check task start + +2025-09-24 02:15:47,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:47,569 INFO Out dated connection ,size=0 + +2025-09-24 02:15:47,569 INFO Connection check task end + +2025-09-24 02:15:50,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:50,571 INFO Connection check task start + +2025-09-24 02:15:50,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:50,571 INFO Out dated connection ,size=0 + +2025-09-24 02:15:50,571 INFO Connection check task end + +2025-09-24 02:15:53,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:53,573 INFO Connection check task start + +2025-09-24 02:15:53,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:53,573 INFO Out dated connection ,size=0 + +2025-09-24 02:15:53,573 INFO Connection check task end + +2025-09-24 02:15:56,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:56,575 INFO Connection check task start + +2025-09-24 02:15:56,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:56,575 INFO Out dated connection ,size=0 + +2025-09-24 02:15:56,575 INFO Connection check task end + +2025-09-24 02:15:59,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:15:59,576 INFO Connection check task start + +2025-09-24 02:15:59,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:15:59,576 INFO Out dated connection ,size=0 + +2025-09-24 02:15:59,576 INFO Connection check task end + +2025-09-24 02:16:02,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:02,577 INFO Connection check task start + +2025-09-24 02:16:02,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:02,577 INFO Out dated connection ,size=0 + +2025-09-24 02:16:02,577 INFO Connection check task end + +2025-09-24 02:16:05,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:05,578 INFO Connection check task start + +2025-09-24 02:16:05,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:05,578 INFO Out dated connection ,size=0 + +2025-09-24 02:16:05,578 INFO Connection check task end + +2025-09-24 02:16:08,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:08,578 INFO Connection check task start + +2025-09-24 02:16:08,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:08,578 INFO Out dated connection ,size=0 + +2025-09-24 02:16:08,578 INFO Connection check task end + +2025-09-24 02:16:11,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:11,580 INFO Connection check task start + +2025-09-24 02:16:11,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:11,580 INFO Out dated connection ,size=0 + +2025-09-24 02:16:11,580 INFO Connection check task end + +2025-09-24 02:16:14,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:14,580 INFO Connection check task start + +2025-09-24 02:16:14,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:14,581 INFO Out dated connection ,size=0 + +2025-09-24 02:16:14,581 INFO Connection check task end + +2025-09-24 02:16:17,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:17,581 INFO Connection check task start + +2025-09-24 02:16:17,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:17,581 INFO Out dated connection ,size=0 + +2025-09-24 02:16:17,581 INFO Connection check task end + +2025-09-24 02:16:20,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:20,582 INFO Connection check task start + +2025-09-24 02:16:20,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:20,582 INFO Out dated connection ,size=0 + +2025-09-24 02:16:20,582 INFO Connection check task end + +2025-09-24 02:16:23,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:23,583 INFO Connection check task start + +2025-09-24 02:16:23,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:23,584 INFO Out dated connection ,size=0 + +2025-09-24 02:16:23,584 INFO Connection check task end + +2025-09-24 02:16:26,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:26,584 INFO Connection check task start + +2025-09-24 02:16:26,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:26,584 INFO Out dated connection ,size=0 + +2025-09-24 02:16:26,584 INFO Connection check task end + +2025-09-24 02:16:29,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:29,586 INFO Connection check task start + +2025-09-24 02:16:29,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:29,586 INFO Out dated connection ,size=0 + +2025-09-24 02:16:29,586 INFO Connection check task end + +2025-09-24 02:16:32,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:32,587 INFO Connection check task start + +2025-09-24 02:16:32,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:32,587 INFO Out dated connection ,size=0 + +2025-09-24 02:16:32,587 INFO Connection check task end + +2025-09-24 02:16:35,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:35,588 INFO Connection check task start + +2025-09-24 02:16:35,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:35,588 INFO Out dated connection ,size=0 + +2025-09-24 02:16:35,588 INFO Connection check task end + +2025-09-24 02:16:38,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:38,589 INFO Connection check task start + +2025-09-24 02:16:38,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:38,589 INFO Out dated connection ,size=0 + +2025-09-24 02:16:38,589 INFO Connection check task end + +2025-09-24 02:16:41,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:41,590 INFO Connection check task start + +2025-09-24 02:16:41,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:41,590 INFO Out dated connection ,size=0 + +2025-09-24 02:16:41,590 INFO Connection check task end + +2025-09-24 02:16:44,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:44,591 INFO Connection check task start + +2025-09-24 02:16:44,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:44,591 INFO Out dated connection ,size=0 + +2025-09-24 02:16:44,591 INFO Connection check task end + +2025-09-24 02:16:47,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:47,593 INFO Connection check task start + +2025-09-24 02:16:47,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:47,594 INFO Out dated connection ,size=0 + +2025-09-24 02:16:47,594 INFO Connection check task end + +2025-09-24 02:16:50,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:50,596 INFO Connection check task start + +2025-09-24 02:16:50,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:50,596 INFO Out dated connection ,size=0 + +2025-09-24 02:16:50,596 INFO Connection check task end + +2025-09-24 02:16:53,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:53,597 INFO Connection check task start + +2025-09-24 02:16:53,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:53,597 INFO Out dated connection ,size=0 + +2025-09-24 02:16:53,597 INFO Connection check task end + +2025-09-24 02:16:56,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:56,598 INFO Connection check task start + +2025-09-24 02:16:56,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:56,598 INFO Out dated connection ,size=0 + +2025-09-24 02:16:56,598 INFO Connection check task end + +2025-09-24 02:16:59,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:16:59,599 INFO Connection check task start + +2025-09-24 02:16:59,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:16:59,600 INFO Out dated connection ,size=0 + +2025-09-24 02:16:59,600 INFO Connection check task end + +2025-09-24 02:17:02,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:02,600 INFO Connection check task start + +2025-09-24 02:17:02,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:02,601 INFO Out dated connection ,size=0 + +2025-09-24 02:17:02,601 INFO Connection check task end + +2025-09-24 02:17:05,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:05,601 INFO Connection check task start + +2025-09-24 02:17:05,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:05,601 INFO Out dated connection ,size=0 + +2025-09-24 02:17:05,601 INFO Connection check task end + +2025-09-24 02:17:08,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:08,603 INFO Connection check task start + +2025-09-24 02:17:08,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:08,603 INFO Out dated connection ,size=0 + +2025-09-24 02:17:08,603 INFO Connection check task end + +2025-09-24 02:17:11,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:11,605 INFO Connection check task start + +2025-09-24 02:17:11,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:11,605 INFO Out dated connection ,size=0 + +2025-09-24 02:17:11,605 INFO Connection check task end + +2025-09-24 02:17:14,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:14,606 INFO Connection check task start + +2025-09-24 02:17:14,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:14,606 INFO Out dated connection ,size=0 + +2025-09-24 02:17:14,606 INFO Connection check task end + +2025-09-24 02:17:17,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:17,608 INFO Connection check task start + +2025-09-24 02:17:17,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:17,608 INFO Out dated connection ,size=0 + +2025-09-24 02:17:17,608 INFO Connection check task end + +2025-09-24 02:17:20,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:20,610 INFO Connection check task start + +2025-09-24 02:17:20,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:20,611 INFO Out dated connection ,size=0 + +2025-09-24 02:17:20,611 INFO Connection check task end + +2025-09-24 02:17:23,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:23,611 INFO Connection check task start + +2025-09-24 02:17:23,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:23,611 INFO Out dated connection ,size=0 + +2025-09-24 02:17:23,611 INFO Connection check task end + +2025-09-24 02:17:26,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:26,613 INFO Connection check task start + +2025-09-24 02:17:26,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:26,613 INFO Out dated connection ,size=0 + +2025-09-24 02:17:26,613 INFO Connection check task end + +2025-09-24 02:17:29,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:29,615 INFO Connection check task start + +2025-09-24 02:17:29,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:29,616 INFO Out dated connection ,size=0 + +2025-09-24 02:17:29,616 INFO Connection check task end + +2025-09-24 02:17:32,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:32,618 INFO Connection check task start + +2025-09-24 02:17:32,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:32,618 INFO Out dated connection ,size=0 + +2025-09-24 02:17:32,618 INFO Connection check task end + +2025-09-24 02:17:35,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:35,619 INFO Connection check task start + +2025-09-24 02:17:35,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:35,619 INFO Out dated connection ,size=0 + +2025-09-24 02:17:35,619 INFO Connection check task end + +2025-09-24 02:17:38,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:38,621 INFO Connection check task start + +2025-09-24 02:17:38,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:38,621 INFO Out dated connection ,size=0 + +2025-09-24 02:17:38,621 INFO Connection check task end + +2025-09-24 02:17:41,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:41,622 INFO Connection check task start + +2025-09-24 02:17:41,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:41,622 INFO Out dated connection ,size=0 + +2025-09-24 02:17:41,622 INFO Connection check task end + +2025-09-24 02:17:44,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:44,622 INFO Connection check task start + +2025-09-24 02:17:44,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:44,622 INFO Out dated connection ,size=0 + +2025-09-24 02:17:44,623 INFO Connection check task end + +2025-09-24 02:17:47,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:47,624 INFO Connection check task start + +2025-09-24 02:17:47,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:47,624 INFO Out dated connection ,size=0 + +2025-09-24 02:17:47,624 INFO Connection check task end + +2025-09-24 02:17:50,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:50,624 INFO Connection check task start + +2025-09-24 02:17:50,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:50,624 INFO Out dated connection ,size=0 + +2025-09-24 02:17:50,624 INFO Connection check task end + +2025-09-24 02:17:53,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:53,625 INFO Connection check task start + +2025-09-24 02:17:53,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:53,625 INFO Out dated connection ,size=0 + +2025-09-24 02:17:53,625 INFO Connection check task end + +2025-09-24 02:17:56,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:56,625 INFO Connection check task start + +2025-09-24 02:17:56,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:56,625 INFO Out dated connection ,size=0 + +2025-09-24 02:17:56,625 INFO Connection check task end + +2025-09-24 02:17:59,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:17:59,626 INFO Connection check task start + +2025-09-24 02:17:59,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:17:59,626 INFO Out dated connection ,size=0 + +2025-09-24 02:17:59,626 INFO Connection check task end + +2025-09-24 02:18:02,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:02,626 INFO Connection check task start + +2025-09-24 02:18:02,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:02,627 INFO Out dated connection ,size=0 + +2025-09-24 02:18:02,627 INFO Connection check task end + +2025-09-24 02:18:05,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:05,628 INFO Connection check task start + +2025-09-24 02:18:05,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:05,628 INFO Out dated connection ,size=0 + +2025-09-24 02:18:05,628 INFO Connection check task end + +2025-09-24 02:18:08,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:08,630 INFO Connection check task start + +2025-09-24 02:18:08,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:08,630 INFO Out dated connection ,size=0 + +2025-09-24 02:18:08,630 INFO Connection check task end + +2025-09-24 02:18:11,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:11,630 INFO Connection check task start + +2025-09-24 02:18:11,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:11,631 INFO Out dated connection ,size=0 + +2025-09-24 02:18:11,631 INFO Connection check task end + +2025-09-24 02:18:14,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:14,632 INFO Connection check task start + +2025-09-24 02:18:14,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:14,632 INFO Out dated connection ,size=0 + +2025-09-24 02:18:14,632 INFO Connection check task end + +2025-09-24 02:18:17,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:17,633 INFO Connection check task start + +2025-09-24 02:18:17,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:17,633 INFO Out dated connection ,size=0 + +2025-09-24 02:18:17,634 INFO Connection check task end + +2025-09-24 02:18:20,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:20,640 INFO Connection check task start + +2025-09-24 02:18:20,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:20,640 INFO Out dated connection ,size=0 + +2025-09-24 02:18:20,640 INFO Connection check task end + +2025-09-24 02:18:23,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:23,641 INFO Connection check task start + +2025-09-24 02:18:23,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:23,641 INFO Out dated connection ,size=0 + +2025-09-24 02:18:23,641 INFO Connection check task end + +2025-09-24 02:18:26,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:26,641 INFO Connection check task start + +2025-09-24 02:18:26,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:26,641 INFO Out dated connection ,size=0 + +2025-09-24 02:18:26,641 INFO Connection check task end + +2025-09-24 02:18:29,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:29,642 INFO Connection check task start + +2025-09-24 02:18:29,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:29,642 INFO Out dated connection ,size=0 + +2025-09-24 02:18:29,642 INFO Connection check task end + +2025-09-24 02:18:32,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:32,642 INFO Connection check task start + +2025-09-24 02:18:32,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:32,642 INFO Out dated connection ,size=0 + +2025-09-24 02:18:32,642 INFO Connection check task end + +2025-09-24 02:18:35,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:35,643 INFO Connection check task start + +2025-09-24 02:18:35,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:35,643 INFO Out dated connection ,size=0 + +2025-09-24 02:18:35,643 INFO Connection check task end + +2025-09-24 02:18:38,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:38,644 INFO Connection check task start + +2025-09-24 02:18:38,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:38,644 INFO Out dated connection ,size=0 + +2025-09-24 02:18:38,645 INFO Connection check task end + +2025-09-24 02:18:41,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:41,645 INFO Connection check task start + +2025-09-24 02:18:41,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:41,645 INFO Out dated connection ,size=0 + +2025-09-24 02:18:41,645 INFO Connection check task end + +2025-09-24 02:18:44,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:44,646 INFO Connection check task start + +2025-09-24 02:18:44,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:44,646 INFO Out dated connection ,size=0 + +2025-09-24 02:18:44,646 INFO Connection check task end + +2025-09-24 02:18:47,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:47,648 INFO Connection check task start + +2025-09-24 02:18:47,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:47,648 INFO Out dated connection ,size=0 + +2025-09-24 02:18:47,648 INFO Connection check task end + +2025-09-24 02:18:50,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:50,649 INFO Connection check task start + +2025-09-24 02:18:50,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:50,652 INFO Out dated connection ,size=0 + +2025-09-24 02:18:50,652 INFO Connection check task end + +2025-09-24 02:18:53,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:53,654 INFO Connection check task start + +2025-09-24 02:18:53,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:53,654 INFO Out dated connection ,size=0 + +2025-09-24 02:18:53,654 INFO Connection check task end + +2025-09-24 02:18:56,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:56,656 INFO Connection check task start + +2025-09-24 02:18:56,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:56,656 INFO Out dated connection ,size=0 + +2025-09-24 02:18:56,656 INFO Connection check task end + +2025-09-24 02:18:59,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:18:59,656 INFO Connection check task start + +2025-09-24 02:18:59,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:18:59,656 INFO Out dated connection ,size=0 + +2025-09-24 02:18:59,656 INFO Connection check task end + +2025-09-24 02:19:02,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:02,657 INFO Connection check task start + +2025-09-24 02:19:02,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:02,658 INFO Out dated connection ,size=0 + +2025-09-24 02:19:02,658 INFO Connection check task end + +2025-09-24 02:19:05,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:05,658 INFO Connection check task start + +2025-09-24 02:19:05,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:05,658 INFO Out dated connection ,size=0 + +2025-09-24 02:19:05,658 INFO Connection check task end + +2025-09-24 02:19:08,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:08,660 INFO Connection check task start + +2025-09-24 02:19:08,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:08,660 INFO Out dated connection ,size=0 + +2025-09-24 02:19:08,660 INFO Connection check task end + +2025-09-24 02:19:11,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:11,662 INFO Connection check task start + +2025-09-24 02:19:11,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:11,662 INFO Out dated connection ,size=0 + +2025-09-24 02:19:11,662 INFO Connection check task end + +2025-09-24 02:19:14,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:14,664 INFO Connection check task start + +2025-09-24 02:19:14,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:14,664 INFO Out dated connection ,size=0 + +2025-09-24 02:19:14,664 INFO Connection check task end + +2025-09-24 02:19:17,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:17,664 INFO Connection check task start + +2025-09-24 02:19:17,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:17,664 INFO Out dated connection ,size=0 + +2025-09-24 02:19:17,664 INFO Connection check task end + +2025-09-24 02:19:20,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:20,665 INFO Connection check task start + +2025-09-24 02:19:20,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:20,665 INFO Out dated connection ,size=0 + +2025-09-24 02:19:20,665 INFO Connection check task end + +2025-09-24 02:19:23,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:23,667 INFO Connection check task start + +2025-09-24 02:19:23,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:23,667 INFO Out dated connection ,size=0 + +2025-09-24 02:19:23,667 INFO Connection check task end + +2025-09-24 02:19:26,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:26,668 INFO Connection check task start + +2025-09-24 02:19:26,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:26,668 INFO Out dated connection ,size=0 + +2025-09-24 02:19:26,668 INFO Connection check task end + +2025-09-24 02:19:29,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:29,670 INFO Connection check task start + +2025-09-24 02:19:29,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:29,670 INFO Out dated connection ,size=0 + +2025-09-24 02:19:29,670 INFO Connection check task end + +2025-09-24 02:19:32,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:32,671 INFO Connection check task start + +2025-09-24 02:19:32,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:32,671 INFO Out dated connection ,size=0 + +2025-09-24 02:19:32,671 INFO Connection check task end + +2025-09-24 02:19:35,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:35,672 INFO Connection check task start + +2025-09-24 02:19:35,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:35,673 INFO Out dated connection ,size=0 + +2025-09-24 02:19:35,673 INFO Connection check task end + +2025-09-24 02:19:38,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:38,673 INFO Connection check task start + +2025-09-24 02:19:38,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:38,673 INFO Out dated connection ,size=0 + +2025-09-24 02:19:38,673 INFO Connection check task end + +2025-09-24 02:19:41,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:41,674 INFO Connection check task start + +2025-09-24 02:19:41,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:41,674 INFO Out dated connection ,size=0 + +2025-09-24 02:19:41,675 INFO Connection check task end + +2025-09-24 02:19:44,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:44,675 INFO Connection check task start + +2025-09-24 02:19:44,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:44,675 INFO Out dated connection ,size=0 + +2025-09-24 02:19:44,675 INFO Connection check task end + +2025-09-24 02:19:47,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:47,675 INFO Connection check task start + +2025-09-24 02:19:47,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:47,675 INFO Out dated connection ,size=0 + +2025-09-24 02:19:47,675 INFO Connection check task end + +2025-09-24 02:19:50,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:50,677 INFO Connection check task start + +2025-09-24 02:19:50,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:50,678 INFO Out dated connection ,size=0 + +2025-09-24 02:19:50,678 INFO Connection check task end + +2025-09-24 02:19:53,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:53,680 INFO Connection check task start + +2025-09-24 02:19:53,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:53,680 INFO Out dated connection ,size=0 + +2025-09-24 02:19:53,680 INFO Connection check task end + +2025-09-24 02:19:56,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:56,682 INFO Connection check task start + +2025-09-24 02:19:56,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:56,682 INFO Out dated connection ,size=0 + +2025-09-24 02:19:56,682 INFO Connection check task end + +2025-09-24 02:19:59,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:19:59,682 INFO Connection check task start + +2025-09-24 02:19:59,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:19:59,683 INFO Out dated connection ,size=0 + +2025-09-24 02:19:59,683 INFO Connection check task end + +2025-09-24 02:20:02,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:02,685 INFO Connection check task start + +2025-09-24 02:20:02,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:02,685 INFO Out dated connection ,size=0 + +2025-09-24 02:20:02,685 INFO Connection check task end + +2025-09-24 02:20:05,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:05,687 INFO Connection check task start + +2025-09-24 02:20:05,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:05,687 INFO Out dated connection ,size=0 + +2025-09-24 02:20:05,687 INFO Connection check task end + +2025-09-24 02:20:08,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:08,688 INFO Connection check task start + +2025-09-24 02:20:08,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:08,688 INFO Out dated connection ,size=0 + +2025-09-24 02:20:08,688 INFO Connection check task end + +2025-09-24 02:20:11,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:11,689 INFO Connection check task start + +2025-09-24 02:20:11,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:11,690 INFO Out dated connection ,size=0 + +2025-09-24 02:20:11,690 INFO Connection check task end + +2025-09-24 02:20:14,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:14,691 INFO Connection check task start + +2025-09-24 02:20:14,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:14,691 INFO Out dated connection ,size=0 + +2025-09-24 02:20:14,691 INFO Connection check task end + +2025-09-24 02:20:17,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:17,693 INFO Connection check task start + +2025-09-24 02:20:17,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:17,693 INFO Out dated connection ,size=0 + +2025-09-24 02:20:17,694 INFO Connection check task end + +2025-09-24 02:20:20,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:20,696 INFO Connection check task start + +2025-09-24 02:20:20,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:20,696 INFO Out dated connection ,size=0 + +2025-09-24 02:20:20,696 INFO Connection check task end + +2025-09-24 02:20:23,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:23,698 INFO Connection check task start + +2025-09-24 02:20:23,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:23,698 INFO Out dated connection ,size=0 + +2025-09-24 02:20:23,698 INFO Connection check task end + +2025-09-24 02:20:26,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:26,698 INFO Connection check task start + +2025-09-24 02:20:26,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:26,698 INFO Out dated connection ,size=0 + +2025-09-24 02:20:26,698 INFO Connection check task end + +2025-09-24 02:20:29,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:29,699 INFO Connection check task start + +2025-09-24 02:20:29,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:29,699 INFO Out dated connection ,size=0 + +2025-09-24 02:20:29,699 INFO Connection check task end + +2025-09-24 02:20:32,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:32,700 INFO Connection check task start + +2025-09-24 02:20:32,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:32,701 INFO Out dated connection ,size=0 + +2025-09-24 02:20:32,701 INFO Connection check task end + +2025-09-24 02:20:35,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:35,701 INFO Connection check task start + +2025-09-24 02:20:35,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:35,701 INFO Out dated connection ,size=0 + +2025-09-24 02:20:35,701 INFO Connection check task end + +2025-09-24 02:20:38,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:38,703 INFO Connection check task start + +2025-09-24 02:20:38,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:38,703 INFO Out dated connection ,size=0 + +2025-09-24 02:20:38,703 INFO Connection check task end + +2025-09-24 02:20:41,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:41,704 INFO Connection check task start + +2025-09-24 02:20:41,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:41,704 INFO Out dated connection ,size=0 + +2025-09-24 02:20:41,704 INFO Connection check task end + +2025-09-24 02:20:44,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:44,704 INFO Connection check task start + +2025-09-24 02:20:44,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:44,704 INFO Out dated connection ,size=0 + +2025-09-24 02:20:44,704 INFO Connection check task end + +2025-09-24 02:20:47,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:47,706 INFO Connection check task start + +2025-09-24 02:20:47,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:47,707 INFO Out dated connection ,size=0 + +2025-09-24 02:20:47,707 INFO Connection check task end + +2025-09-24 02:20:50,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:50,708 INFO Connection check task start + +2025-09-24 02:20:50,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:50,708 INFO Out dated connection ,size=0 + +2025-09-24 02:20:50,709 INFO Connection check task end + +2025-09-24 02:20:53,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:53,709 INFO Connection check task start + +2025-09-24 02:20:53,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:53,709 INFO Out dated connection ,size=0 + +2025-09-24 02:20:53,709 INFO Connection check task end + +2025-09-24 02:20:56,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:56,710 INFO Connection check task start + +2025-09-24 02:20:56,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:56,711 INFO Out dated connection ,size=0 + +2025-09-24 02:20:56,711 INFO Connection check task end + +2025-09-24 02:20:59,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:20:59,711 INFO Connection check task start + +2025-09-24 02:20:59,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:20:59,711 INFO Out dated connection ,size=0 + +2025-09-24 02:20:59,711 INFO Connection check task end + +2025-09-24 02:21:02,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:02,711 INFO Connection check task start + +2025-09-24 02:21:02,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:02,712 INFO Out dated connection ,size=0 + +2025-09-24 02:21:02,712 INFO Connection check task end + +2025-09-24 02:21:05,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:05,712 INFO Connection check task start + +2025-09-24 02:21:05,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:05,713 INFO Out dated connection ,size=0 + +2025-09-24 02:21:05,713 INFO Connection check task end + +2025-09-24 02:21:08,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:08,713 INFO Connection check task start + +2025-09-24 02:21:08,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:08,713 INFO Out dated connection ,size=0 + +2025-09-24 02:21:08,713 INFO Connection check task end + +2025-09-24 02:21:11,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:11,715 INFO Connection check task start + +2025-09-24 02:21:11,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:11,716 INFO Out dated connection ,size=0 + +2025-09-24 02:21:11,716 INFO Connection check task end + +2025-09-24 02:21:14,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:14,717 INFO Connection check task start + +2025-09-24 02:21:14,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:14,717 INFO Out dated connection ,size=0 + +2025-09-24 02:21:14,717 INFO Connection check task end + +2025-09-24 02:21:17,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:17,719 INFO Connection check task start + +2025-09-24 02:21:17,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:17,719 INFO Out dated connection ,size=0 + +2025-09-24 02:21:17,719 INFO Connection check task end + +2025-09-24 02:21:20,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:20,719 INFO Connection check task start + +2025-09-24 02:21:20,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:20,719 INFO Out dated connection ,size=0 + +2025-09-24 02:21:20,719 INFO Connection check task end + +2025-09-24 02:21:23,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:23,721 INFO Connection check task start + +2025-09-24 02:21:23,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:23,722 INFO Out dated connection ,size=0 + +2025-09-24 02:21:23,722 INFO Connection check task end + +2025-09-24 02:21:26,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:26,722 INFO Connection check task start + +2025-09-24 02:21:26,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:26,722 INFO Out dated connection ,size=0 + +2025-09-24 02:21:26,722 INFO Connection check task end + +2025-09-24 02:21:29,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:29,724 INFO Connection check task start + +2025-09-24 02:21:29,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:29,724 INFO Out dated connection ,size=0 + +2025-09-24 02:21:29,724 INFO Connection check task end + +2025-09-24 02:21:32,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:32,724 INFO Connection check task start + +2025-09-24 02:21:32,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:32,724 INFO Out dated connection ,size=0 + +2025-09-24 02:21:32,725 INFO Connection check task end + +2025-09-24 02:21:35,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:35,727 INFO Connection check task start + +2025-09-24 02:21:35,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:35,727 INFO Out dated connection ,size=0 + +2025-09-24 02:21:35,727 INFO Connection check task end + +2025-09-24 02:21:38,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:38,729 INFO Connection check task start + +2025-09-24 02:21:38,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:38,729 INFO Out dated connection ,size=0 + +2025-09-24 02:21:38,729 INFO Connection check task end + +2025-09-24 02:21:41,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:41,731 INFO Connection check task start + +2025-09-24 02:21:41,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:41,732 INFO Out dated connection ,size=0 + +2025-09-24 02:21:41,732 INFO Connection check task end + +2025-09-24 02:21:44,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:44,732 INFO Connection check task start + +2025-09-24 02:21:44,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:44,732 INFO Out dated connection ,size=0 + +2025-09-24 02:21:44,732 INFO Connection check task end + +2025-09-24 02:21:47,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:47,734 INFO Connection check task start + +2025-09-24 02:21:47,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:47,734 INFO Out dated connection ,size=0 + +2025-09-24 02:21:47,734 INFO Connection check task end + +2025-09-24 02:21:50,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:50,737 INFO Connection check task start + +2025-09-24 02:21:50,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:50,737 INFO Out dated connection ,size=0 + +2025-09-24 02:21:50,737 INFO Connection check task end + +2025-09-24 02:21:53,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:53,738 INFO Connection check task start + +2025-09-24 02:21:53,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:53,738 INFO Out dated connection ,size=0 + +2025-09-24 02:21:53,738 INFO Connection check task end + +2025-09-24 02:21:56,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:56,739 INFO Connection check task start + +2025-09-24 02:21:56,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:56,739 INFO Out dated connection ,size=0 + +2025-09-24 02:21:56,739 INFO Connection check task end + +2025-09-24 02:21:59,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:21:59,740 INFO Connection check task start + +2025-09-24 02:21:59,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:21:59,740 INFO Out dated connection ,size=0 + +2025-09-24 02:21:59,740 INFO Connection check task end + +2025-09-24 02:22:02,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:02,742 INFO Connection check task start + +2025-09-24 02:22:02,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:02,742 INFO Out dated connection ,size=0 + +2025-09-24 02:22:02,742 INFO Connection check task end + +2025-09-24 02:22:05,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:05,744 INFO Connection check task start + +2025-09-24 02:22:05,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:05,744 INFO Out dated connection ,size=0 + +2025-09-24 02:22:05,744 INFO Connection check task end + +2025-09-24 02:22:08,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:08,745 INFO Connection check task start + +2025-09-24 02:22:08,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:08,745 INFO Out dated connection ,size=0 + +2025-09-24 02:22:08,745 INFO Connection check task end + +2025-09-24 02:22:11,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:11,746 INFO Connection check task start + +2025-09-24 02:22:11,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:11,746 INFO Out dated connection ,size=0 + +2025-09-24 02:22:11,746 INFO Connection check task end + +2025-09-24 02:22:14,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:14,748 INFO Connection check task start + +2025-09-24 02:22:14,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:14,748 INFO Out dated connection ,size=0 + +2025-09-24 02:22:14,748 INFO Connection check task end + +2025-09-24 02:22:17,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:17,749 INFO Connection check task start + +2025-09-24 02:22:17,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:17,749 INFO Out dated connection ,size=0 + +2025-09-24 02:22:17,749 INFO Connection check task end + +2025-09-24 02:22:20,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:20,750 INFO Connection check task start + +2025-09-24 02:22:20,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:20,750 INFO Out dated connection ,size=0 + +2025-09-24 02:22:20,750 INFO Connection check task end + +2025-09-24 02:22:23,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:23,750 INFO Connection check task start + +2025-09-24 02:22:23,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:23,751 INFO Out dated connection ,size=0 + +2025-09-24 02:22:23,751 INFO Connection check task end + +2025-09-24 02:22:26,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:26,751 INFO Connection check task start + +2025-09-24 02:22:26,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:26,751 INFO Out dated connection ,size=0 + +2025-09-24 02:22:26,751 INFO Connection check task end + +2025-09-24 02:22:29,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:29,751 INFO Connection check task start + +2025-09-24 02:22:29,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:29,751 INFO Out dated connection ,size=0 + +2025-09-24 02:22:29,751 INFO Connection check task end + +2025-09-24 02:22:32,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:32,754 INFO Connection check task start + +2025-09-24 02:22:32,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:32,754 INFO Out dated connection ,size=0 + +2025-09-24 02:22:32,754 INFO Connection check task end + +2025-09-24 02:22:35,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:35,754 INFO Connection check task start + +2025-09-24 02:22:35,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:35,754 INFO Out dated connection ,size=0 + +2025-09-24 02:22:35,754 INFO Connection check task end + +2025-09-24 02:22:38,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:38,756 INFO Connection check task start + +2025-09-24 02:22:38,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:38,756 INFO Out dated connection ,size=0 + +2025-09-24 02:22:38,756 INFO Connection check task end + +2025-09-24 02:22:41,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:41,758 INFO Connection check task start + +2025-09-24 02:22:41,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:41,758 INFO Out dated connection ,size=0 + +2025-09-24 02:22:41,758 INFO Connection check task end + +2025-09-24 02:22:44,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:44,760 INFO Connection check task start + +2025-09-24 02:22:44,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:44,760 INFO Out dated connection ,size=0 + +2025-09-24 02:22:44,760 INFO Connection check task end + +2025-09-24 02:22:47,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:47,763 INFO Connection check task start + +2025-09-24 02:22:47,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:47,763 INFO Out dated connection ,size=0 + +2025-09-24 02:22:47,763 INFO Connection check task end + +2025-09-24 02:22:50,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:50,765 INFO Connection check task start + +2025-09-24 02:22:50,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:50,765 INFO Out dated connection ,size=0 + +2025-09-24 02:22:50,765 INFO Connection check task end + +2025-09-24 02:22:53,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:53,767 INFO Connection check task start + +2025-09-24 02:22:53,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:53,768 INFO Out dated connection ,size=0 + +2025-09-24 02:22:53,768 INFO Connection check task end + +2025-09-24 02:22:56,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:56,770 INFO Connection check task start + +2025-09-24 02:22:56,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:56,770 INFO Out dated connection ,size=0 + +2025-09-24 02:22:56,770 INFO Connection check task end + +2025-09-24 02:22:59,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:22:59,771 INFO Connection check task start + +2025-09-24 02:22:59,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:22:59,771 INFO Out dated connection ,size=0 + +2025-09-24 02:22:59,771 INFO Connection check task end + +2025-09-24 02:23:02,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:02,772 INFO Connection check task start + +2025-09-24 02:23:02,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:02,772 INFO Out dated connection ,size=0 + +2025-09-24 02:23:02,772 INFO Connection check task end + +2025-09-24 02:23:05,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:05,772 INFO Connection check task start + +2025-09-24 02:23:05,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:05,773 INFO Out dated connection ,size=0 + +2025-09-24 02:23:05,773 INFO Connection check task end + +2025-09-24 02:23:08,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:08,775 INFO Connection check task start + +2025-09-24 02:23:08,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:08,775 INFO Out dated connection ,size=0 + +2025-09-24 02:23:08,775 INFO Connection check task end + +2025-09-24 02:23:11,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:11,776 INFO Connection check task start + +2025-09-24 02:23:11,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:11,776 INFO Out dated connection ,size=0 + +2025-09-24 02:23:11,776 INFO Connection check task end + +2025-09-24 02:23:14,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:14,776 INFO Connection check task start + +2025-09-24 02:23:14,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:14,776 INFO Out dated connection ,size=0 + +2025-09-24 02:23:14,776 INFO Connection check task end + +2025-09-24 02:23:17,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:17,778 INFO Connection check task start + +2025-09-24 02:23:17,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:17,779 INFO Out dated connection ,size=0 + +2025-09-24 02:23:17,779 INFO Connection check task end + +2025-09-24 02:23:20,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:20,779 INFO Connection check task start + +2025-09-24 02:23:20,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:20,779 INFO Out dated connection ,size=0 + +2025-09-24 02:23:20,779 INFO Connection check task end + +2025-09-24 02:23:23,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:23,780 INFO Connection check task start + +2025-09-24 02:23:23,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:23,780 INFO Out dated connection ,size=0 + +2025-09-24 02:23:23,780 INFO Connection check task end + +2025-09-24 02:23:26,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:26,782 INFO Connection check task start + +2025-09-24 02:23:26,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:26,782 INFO Out dated connection ,size=0 + +2025-09-24 02:23:26,783 INFO Connection check task end + +2025-09-24 02:23:29,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:29,785 INFO Connection check task start + +2025-09-24 02:23:29,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:29,785 INFO Out dated connection ,size=0 + +2025-09-24 02:23:29,785 INFO Connection check task end + +2025-09-24 02:23:32,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:32,786 INFO Connection check task start + +2025-09-24 02:23:32,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:32,786 INFO Out dated connection ,size=0 + +2025-09-24 02:23:32,786 INFO Connection check task end + +2025-09-24 02:23:35,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:35,788 INFO Connection check task start + +2025-09-24 02:23:35,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:35,788 INFO Out dated connection ,size=0 + +2025-09-24 02:23:35,788 INFO Connection check task end + +2025-09-24 02:23:38,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:38,789 INFO Connection check task start + +2025-09-24 02:23:38,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:38,789 INFO Out dated connection ,size=0 + +2025-09-24 02:23:38,789 INFO Connection check task end + +2025-09-24 02:23:41,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:41,791 INFO Connection check task start + +2025-09-24 02:23:41,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:41,791 INFO Out dated connection ,size=0 + +2025-09-24 02:23:41,791 INFO Connection check task end + +2025-09-24 02:23:44,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:44,791 INFO Connection check task start + +2025-09-24 02:23:44,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:44,792 INFO Out dated connection ,size=0 + +2025-09-24 02:23:44,792 INFO Connection check task end + +2025-09-24 02:23:47,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:47,793 INFO Connection check task start + +2025-09-24 02:23:47,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:47,793 INFO Out dated connection ,size=0 + +2025-09-24 02:23:47,793 INFO Connection check task end + +2025-09-24 02:23:50,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:50,796 INFO Connection check task start + +2025-09-24 02:23:50,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:50,796 INFO Out dated connection ,size=0 + +2025-09-24 02:23:50,796 INFO Connection check task end + +2025-09-24 02:23:53,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:53,797 INFO Connection check task start + +2025-09-24 02:23:53,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:53,797 INFO Out dated connection ,size=0 + +2025-09-24 02:23:53,797 INFO Connection check task end + +2025-09-24 02:23:56,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:56,799 INFO Connection check task start + +2025-09-24 02:23:56,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:56,799 INFO Out dated connection ,size=0 + +2025-09-24 02:23:56,799 INFO Connection check task end + +2025-09-24 02:23:59,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:23:59,799 INFO Connection check task start + +2025-09-24 02:23:59,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:23:59,799 INFO Out dated connection ,size=0 + +2025-09-24 02:23:59,799 INFO Connection check task end + +2025-09-24 02:24:02,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:02,800 INFO Connection check task start + +2025-09-24 02:24:02,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:02,800 INFO Out dated connection ,size=0 + +2025-09-24 02:24:02,800 INFO Connection check task end + +2025-09-24 02:24:05,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:05,802 INFO Connection check task start + +2025-09-24 02:24:05,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:05,802 INFO Out dated connection ,size=0 + +2025-09-24 02:24:05,802 INFO Connection check task end + +2025-09-24 02:24:08,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:08,802 INFO Connection check task start + +2025-09-24 02:24:08,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:08,802 INFO Out dated connection ,size=0 + +2025-09-24 02:24:08,802 INFO Connection check task end + +2025-09-24 02:24:11,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:11,804 INFO Connection check task start + +2025-09-24 02:24:11,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:11,804 INFO Out dated connection ,size=0 + +2025-09-24 02:24:11,804 INFO Connection check task end + +2025-09-24 02:24:14,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:14,806 INFO Connection check task start + +2025-09-24 02:24:14,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:14,807 INFO Out dated connection ,size=0 + +2025-09-24 02:24:14,807 INFO Connection check task end + +2025-09-24 02:24:17,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:17,808 INFO Connection check task start + +2025-09-24 02:24:17,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:17,808 INFO Out dated connection ,size=0 + +2025-09-24 02:24:17,808 INFO Connection check task end + +2025-09-24 02:24:20,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:20,808 INFO Connection check task start + +2025-09-24 02:24:20,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:20,809 INFO Out dated connection ,size=0 + +2025-09-24 02:24:20,809 INFO Connection check task end + +2025-09-24 02:24:23,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:23,809 INFO Connection check task start + +2025-09-24 02:24:23,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:23,809 INFO Out dated connection ,size=0 + +2025-09-24 02:24:23,809 INFO Connection check task end + +2025-09-24 02:24:26,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:26,809 INFO Connection check task start + +2025-09-24 02:24:26,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:26,809 INFO Out dated connection ,size=0 + +2025-09-24 02:24:26,809 INFO Connection check task end + +2025-09-24 02:24:29,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:29,810 INFO Connection check task start + +2025-09-24 02:24:29,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:29,810 INFO Out dated connection ,size=0 + +2025-09-24 02:24:29,810 INFO Connection check task end + +2025-09-24 02:24:32,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:32,812 INFO Connection check task start + +2025-09-24 02:24:32,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:32,812 INFO Out dated connection ,size=0 + +2025-09-24 02:24:32,812 INFO Connection check task end + +2025-09-24 02:24:35,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:35,813 INFO Connection check task start + +2025-09-24 02:24:35,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:35,813 INFO Out dated connection ,size=0 + +2025-09-24 02:24:35,813 INFO Connection check task end + +2025-09-24 02:24:38,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:38,816 INFO Connection check task start + +2025-09-24 02:24:38,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:38,816 INFO Out dated connection ,size=0 + +2025-09-24 02:24:38,816 INFO Connection check task end + +2025-09-24 02:24:41,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:41,816 INFO Connection check task start + +2025-09-24 02:24:41,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:41,816 INFO Out dated connection ,size=0 + +2025-09-24 02:24:41,816 INFO Connection check task end + +2025-09-24 02:24:44,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:44,818 INFO Connection check task start + +2025-09-24 02:24:44,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:44,819 INFO Out dated connection ,size=0 + +2025-09-24 02:24:44,819 INFO Connection check task end + +2025-09-24 02:24:47,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:47,821 INFO Connection check task start + +2025-09-24 02:24:47,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:47,821 INFO Out dated connection ,size=0 + +2025-09-24 02:24:47,821 INFO Connection check task end + +2025-09-24 02:24:50,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:50,821 INFO Connection check task start + +2025-09-24 02:24:50,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:50,822 INFO Out dated connection ,size=0 + +2025-09-24 02:24:50,822 INFO Connection check task end + +2025-09-24 02:24:53,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:53,823 INFO Connection check task start + +2025-09-24 02:24:53,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:53,823 INFO Out dated connection ,size=0 + +2025-09-24 02:24:53,823 INFO Connection check task end + +2025-09-24 02:24:56,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:56,825 INFO Connection check task start + +2025-09-24 02:24:56,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:56,825 INFO Out dated connection ,size=0 + +2025-09-24 02:24:56,825 INFO Connection check task end + +2025-09-24 02:24:59,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:24:59,827 INFO Connection check task start + +2025-09-24 02:24:59,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:24:59,827 INFO Out dated connection ,size=0 + +2025-09-24 02:24:59,827 INFO Connection check task end + +2025-09-24 02:25:02,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:02,829 INFO Connection check task start + +2025-09-24 02:25:02,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:02,829 INFO Out dated connection ,size=0 + +2025-09-24 02:25:02,829 INFO Connection check task end + +2025-09-24 02:25:05,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:05,830 INFO Connection check task start + +2025-09-24 02:25:05,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:05,830 INFO Out dated connection ,size=0 + +2025-09-24 02:25:05,830 INFO Connection check task end + +2025-09-24 02:25:08,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:08,831 INFO Connection check task start + +2025-09-24 02:25:08,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:08,831 INFO Out dated connection ,size=0 + +2025-09-24 02:25:08,831 INFO Connection check task end + +2025-09-24 02:25:11,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:11,832 INFO Connection check task start + +2025-09-24 02:25:11,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:11,832 INFO Out dated connection ,size=0 + +2025-09-24 02:25:11,832 INFO Connection check task end + +2025-09-24 02:25:14,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:14,835 INFO Connection check task start + +2025-09-24 02:25:14,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:14,835 INFO Out dated connection ,size=0 + +2025-09-24 02:25:14,835 INFO Connection check task end + +2025-09-24 02:25:17,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:17,836 INFO Connection check task start + +2025-09-24 02:25:17,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:17,836 INFO Out dated connection ,size=0 + +2025-09-24 02:25:17,836 INFO Connection check task end + +2025-09-24 02:25:20,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:20,839 INFO Connection check task start + +2025-09-24 02:25:20,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:20,839 INFO Out dated connection ,size=0 + +2025-09-24 02:25:20,839 INFO Connection check task end + +2025-09-24 02:25:23,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:23,839 INFO Connection check task start + +2025-09-24 02:25:23,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:23,839 INFO Out dated connection ,size=0 + +2025-09-24 02:25:23,839 INFO Connection check task end + +2025-09-24 02:25:26,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:26,841 INFO Connection check task start + +2025-09-24 02:25:26,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:26,841 INFO Out dated connection ,size=0 + +2025-09-24 02:25:26,841 INFO Connection check task end + +2025-09-24 02:25:29,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:29,842 INFO Connection check task start + +2025-09-24 02:25:29,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:29,843 INFO Out dated connection ,size=0 + +2025-09-24 02:25:29,843 INFO Connection check task end + +2025-09-24 02:25:32,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:32,844 INFO Connection check task start + +2025-09-24 02:25:32,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:32,844 INFO Out dated connection ,size=0 + +2025-09-24 02:25:32,844 INFO Connection check task end + +2025-09-24 02:25:35,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:35,846 INFO Connection check task start + +2025-09-24 02:25:35,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:35,846 INFO Out dated connection ,size=0 + +2025-09-24 02:25:35,847 INFO Connection check task end + +2025-09-24 02:25:38,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:38,849 INFO Connection check task start + +2025-09-24 02:25:38,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:38,849 INFO Out dated connection ,size=0 + +2025-09-24 02:25:38,849 INFO Connection check task end + +2025-09-24 02:25:41,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:41,850 INFO Connection check task start + +2025-09-24 02:25:41,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:41,850 INFO Out dated connection ,size=0 + +2025-09-24 02:25:41,850 INFO Connection check task end + +2025-09-24 02:25:44,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:44,852 INFO Connection check task start + +2025-09-24 02:25:44,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:44,852 INFO Out dated connection ,size=0 + +2025-09-24 02:25:44,852 INFO Connection check task end + +2025-09-24 02:25:47,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:47,853 INFO Connection check task start + +2025-09-24 02:25:47,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:47,853 INFO Out dated connection ,size=0 + +2025-09-24 02:25:47,853 INFO Connection check task end + +2025-09-24 02:25:50,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:50,853 INFO Connection check task start + +2025-09-24 02:25:50,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:50,853 INFO Out dated connection ,size=0 + +2025-09-24 02:25:50,853 INFO Connection check task end + +2025-09-24 02:25:53,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:53,855 INFO Connection check task start + +2025-09-24 02:25:53,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:53,855 INFO Out dated connection ,size=0 + +2025-09-24 02:25:53,855 INFO Connection check task end + +2025-09-24 02:25:56,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:56,857 INFO Connection check task start + +2025-09-24 02:25:56,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:56,857 INFO Out dated connection ,size=0 + +2025-09-24 02:25:56,857 INFO Connection check task end + +2025-09-24 02:25:59,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:25:59,859 INFO Connection check task start + +2025-09-24 02:25:59,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:25:59,859 INFO Out dated connection ,size=0 + +2025-09-24 02:25:59,859 INFO Connection check task end + +2025-09-24 02:26:02,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:02,861 INFO Connection check task start + +2025-09-24 02:26:02,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:02,861 INFO Out dated connection ,size=0 + +2025-09-24 02:26:02,861 INFO Connection check task end + +2025-09-24 02:26:05,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:05,861 INFO Connection check task start + +2025-09-24 02:26:05,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:05,861 INFO Out dated connection ,size=0 + +2025-09-24 02:26:05,861 INFO Connection check task end + +2025-09-24 02:26:08,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:08,862 INFO Connection check task start + +2025-09-24 02:26:08,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:08,862 INFO Out dated connection ,size=0 + +2025-09-24 02:26:08,862 INFO Connection check task end + +2025-09-24 02:26:11,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:11,862 INFO Connection check task start + +2025-09-24 02:26:11,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:11,862 INFO Out dated connection ,size=0 + +2025-09-24 02:26:11,862 INFO Connection check task end + +2025-09-24 02:26:14,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:14,862 INFO Connection check task start + +2025-09-24 02:26:14,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:14,863 INFO Out dated connection ,size=0 + +2025-09-24 02:26:14,863 INFO Connection check task end + +2025-09-24 02:26:17,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:17,863 INFO Connection check task start + +2025-09-24 02:26:17,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:17,863 INFO Out dated connection ,size=0 + +2025-09-24 02:26:17,863 INFO Connection check task end + +2025-09-24 02:26:20,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:20,864 INFO Connection check task start + +2025-09-24 02:26:20,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:20,864 INFO Out dated connection ,size=0 + +2025-09-24 02:26:20,864 INFO Connection check task end + +2025-09-24 02:26:23,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:23,865 INFO Connection check task start + +2025-09-24 02:26:23,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:23,865 INFO Out dated connection ,size=0 + +2025-09-24 02:26:23,865 INFO Connection check task end + +2025-09-24 02:26:26,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:26,865 INFO Connection check task start + +2025-09-24 02:26:26,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:26,865 INFO Out dated connection ,size=0 + +2025-09-24 02:26:26,865 INFO Connection check task end + +2025-09-24 02:26:29,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:29,866 INFO Connection check task start + +2025-09-24 02:26:29,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:29,866 INFO Out dated connection ,size=0 + +2025-09-24 02:26:29,866 INFO Connection check task end + +2025-09-24 02:26:32,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:32,867 INFO Connection check task start + +2025-09-24 02:26:32,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:32,867 INFO Out dated connection ,size=0 + +2025-09-24 02:26:32,867 INFO Connection check task end + +2025-09-24 02:26:35,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:35,868 INFO Connection check task start + +2025-09-24 02:26:35,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:35,868 INFO Out dated connection ,size=0 + +2025-09-24 02:26:35,868 INFO Connection check task end + +2025-09-24 02:26:38,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:38,869 INFO Connection check task start + +2025-09-24 02:26:38,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:38,869 INFO Out dated connection ,size=0 + +2025-09-24 02:26:38,869 INFO Connection check task end + +2025-09-24 02:26:41,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:41,871 INFO Connection check task start + +2025-09-24 02:26:41,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:41,871 INFO Out dated connection ,size=0 + +2025-09-24 02:26:41,871 INFO Connection check task end + +2025-09-24 02:26:44,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:44,871 INFO Connection check task start + +2025-09-24 02:26:44,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:44,871 INFO Out dated connection ,size=0 + +2025-09-24 02:26:44,871 INFO Connection check task end + +2025-09-24 02:26:47,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:47,872 INFO Connection check task start + +2025-09-24 02:26:47,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:47,872 INFO Out dated connection ,size=0 + +2025-09-24 02:26:47,872 INFO Connection check task end + +2025-09-24 02:26:50,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:50,873 INFO Connection check task start + +2025-09-24 02:26:50,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:50,873 INFO Out dated connection ,size=0 + +2025-09-24 02:26:50,873 INFO Connection check task end + +2025-09-24 02:26:53,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:53,874 INFO Connection check task start + +2025-09-24 02:26:53,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:53,874 INFO Out dated connection ,size=0 + +2025-09-24 02:26:53,874 INFO Connection check task end + +2025-09-24 02:26:56,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:56,875 INFO Connection check task start + +2025-09-24 02:26:56,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:56,875 INFO Out dated connection ,size=0 + +2025-09-24 02:26:56,875 INFO Connection check task end + +2025-09-24 02:26:59,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:26:59,876 INFO Connection check task start + +2025-09-24 02:26:59,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:26:59,876 INFO Out dated connection ,size=0 + +2025-09-24 02:26:59,876 INFO Connection check task end + +2025-09-24 02:27:02,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:02,877 INFO Connection check task start + +2025-09-24 02:27:02,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:02,878 INFO Out dated connection ,size=0 + +2025-09-24 02:27:02,878 INFO Connection check task end + +2025-09-24 02:27:05,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:05,879 INFO Connection check task start + +2025-09-24 02:27:05,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:05,879 INFO Out dated connection ,size=0 + +2025-09-24 02:27:05,879 INFO Connection check task end + +2025-09-24 02:27:08,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:08,879 INFO Connection check task start + +2025-09-24 02:27:08,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:08,879 INFO Out dated connection ,size=0 + +2025-09-24 02:27:08,879 INFO Connection check task end + +2025-09-24 02:27:11,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:11,880 INFO Connection check task start + +2025-09-24 02:27:11,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:11,880 INFO Out dated connection ,size=0 + +2025-09-24 02:27:11,880 INFO Connection check task end + +2025-09-24 02:27:14,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:14,882 INFO Connection check task start + +2025-09-24 02:27:14,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:14,882 INFO Out dated connection ,size=0 + +2025-09-24 02:27:14,882 INFO Connection check task end + +2025-09-24 02:27:17,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:17,883 INFO Connection check task start + +2025-09-24 02:27:17,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:17,883 INFO Out dated connection ,size=0 + +2025-09-24 02:27:17,883 INFO Connection check task end + +2025-09-24 02:27:20,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:20,884 INFO Connection check task start + +2025-09-24 02:27:20,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:20,884 INFO Out dated connection ,size=0 + +2025-09-24 02:27:20,884 INFO Connection check task end + +2025-09-24 02:27:23,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:23,885 INFO Connection check task start + +2025-09-24 02:27:23,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:23,885 INFO Out dated connection ,size=0 + +2025-09-24 02:27:23,885 INFO Connection check task end + +2025-09-24 02:27:26,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:26,886 INFO Connection check task start + +2025-09-24 02:27:26,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:26,886 INFO Out dated connection ,size=0 + +2025-09-24 02:27:26,886 INFO Connection check task end + +2025-09-24 02:27:29,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:29,888 INFO Connection check task start + +2025-09-24 02:27:29,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:29,888 INFO Out dated connection ,size=0 + +2025-09-24 02:27:29,888 INFO Connection check task end + +2025-09-24 02:27:32,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:32,889 INFO Connection check task start + +2025-09-24 02:27:32,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:32,889 INFO Out dated connection ,size=0 + +2025-09-24 02:27:32,890 INFO Connection check task end + +2025-09-24 02:27:35,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:35,890 INFO Connection check task start + +2025-09-24 02:27:35,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:35,890 INFO Out dated connection ,size=0 + +2025-09-24 02:27:35,890 INFO Connection check task end + +2025-09-24 02:27:38,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:38,891 INFO Connection check task start + +2025-09-24 02:27:38,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:38,891 INFO Out dated connection ,size=0 + +2025-09-24 02:27:38,891 INFO Connection check task end + +2025-09-24 02:27:41,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:41,893 INFO Connection check task start + +2025-09-24 02:27:41,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:41,893 INFO Out dated connection ,size=0 + +2025-09-24 02:27:41,893 INFO Connection check task end + +2025-09-24 02:27:44,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:44,896 INFO Connection check task start + +2025-09-24 02:27:44,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:44,896 INFO Out dated connection ,size=0 + +2025-09-24 02:27:44,896 INFO Connection check task end + +2025-09-24 02:27:47,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:47,898 INFO Connection check task start + +2025-09-24 02:27:47,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:47,898 INFO Out dated connection ,size=0 + +2025-09-24 02:27:47,898 INFO Connection check task end + +2025-09-24 02:27:50,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:50,900 INFO Connection check task start + +2025-09-24 02:27:50,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:50,900 INFO Out dated connection ,size=0 + +2025-09-24 02:27:50,900 INFO Connection check task end + +2025-09-24 02:27:53,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:53,901 INFO Connection check task start + +2025-09-24 02:27:53,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:53,901 INFO Out dated connection ,size=0 + +2025-09-24 02:27:53,901 INFO Connection check task end + +2025-09-24 02:27:56,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:56,903 INFO Connection check task start + +2025-09-24 02:27:56,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:56,903 INFO Out dated connection ,size=0 + +2025-09-24 02:27:56,903 INFO Connection check task end + +2025-09-24 02:27:59,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:27:59,903 INFO Connection check task start + +2025-09-24 02:27:59,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:27:59,904 INFO Out dated connection ,size=0 + +2025-09-24 02:27:59,904 INFO Connection check task end + +2025-09-24 02:28:02,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:02,904 INFO Connection check task start + +2025-09-24 02:28:02,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:02,904 INFO Out dated connection ,size=0 + +2025-09-24 02:28:02,905 INFO Connection check task end + +2025-09-24 02:28:05,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:05,905 INFO Connection check task start + +2025-09-24 02:28:05,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:05,905 INFO Out dated connection ,size=0 + +2025-09-24 02:28:05,905 INFO Connection check task end + +2025-09-24 02:28:08,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:08,906 INFO Connection check task start + +2025-09-24 02:28:08,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:08,906 INFO Out dated connection ,size=0 + +2025-09-24 02:28:08,906 INFO Connection check task end + +2025-09-24 02:28:11,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:11,907 INFO Connection check task start + +2025-09-24 02:28:11,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:11,908 INFO Out dated connection ,size=0 + +2025-09-24 02:28:11,908 INFO Connection check task end + +2025-09-24 02:28:14,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:14,908 INFO Connection check task start + +2025-09-24 02:28:14,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:14,908 INFO Out dated connection ,size=0 + +2025-09-24 02:28:14,908 INFO Connection check task end + +2025-09-24 02:28:17,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:17,908 INFO Connection check task start + +2025-09-24 02:28:17,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:17,909 INFO Out dated connection ,size=0 + +2025-09-24 02:28:17,909 INFO Connection check task end + +2025-09-24 02:28:20,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:20,910 INFO Connection check task start + +2025-09-24 02:28:20,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:20,910 INFO Out dated connection ,size=0 + +2025-09-24 02:28:20,910 INFO Connection check task end + +2025-09-24 02:28:23,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:23,912 INFO Connection check task start + +2025-09-24 02:28:23,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:23,912 INFO Out dated connection ,size=0 + +2025-09-24 02:28:23,912 INFO Connection check task end + +2025-09-24 02:28:26,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:26,912 INFO Connection check task start + +2025-09-24 02:28:26,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:26,913 INFO Out dated connection ,size=0 + +2025-09-24 02:28:26,913 INFO Connection check task end + +2025-09-24 02:28:29,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:29,913 INFO Connection check task start + +2025-09-24 02:28:29,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:29,913 INFO Out dated connection ,size=0 + +2025-09-24 02:28:29,913 INFO Connection check task end + +2025-09-24 02:28:32,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:32,913 INFO Connection check task start + +2025-09-24 02:28:32,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:32,913 INFO Out dated connection ,size=0 + +2025-09-24 02:28:32,913 INFO Connection check task end + +2025-09-24 02:28:35,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:35,915 INFO Connection check task start + +2025-09-24 02:28:35,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:35,916 INFO Out dated connection ,size=0 + +2025-09-24 02:28:35,916 INFO Connection check task end + +2025-09-24 02:28:38,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:38,917 INFO Connection check task start + +2025-09-24 02:28:38,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:38,917 INFO Out dated connection ,size=0 + +2025-09-24 02:28:38,917 INFO Connection check task end + +2025-09-24 02:28:41,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:41,917 INFO Connection check task start + +2025-09-24 02:28:41,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:41,917 INFO Out dated connection ,size=0 + +2025-09-24 02:28:41,917 INFO Connection check task end + +2025-09-24 02:28:44,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:44,917 INFO Connection check task start + +2025-09-24 02:28:44,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:44,918 INFO Out dated connection ,size=0 + +2025-09-24 02:28:44,918 INFO Connection check task end + +2025-09-24 02:28:47,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:47,919 INFO Connection check task start + +2025-09-24 02:28:47,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:47,919 INFO Out dated connection ,size=0 + +2025-09-24 02:28:47,919 INFO Connection check task end + +2025-09-24 02:28:50,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:50,921 INFO Connection check task start + +2025-09-24 02:28:50,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:50,921 INFO Out dated connection ,size=0 + +2025-09-24 02:28:50,921 INFO Connection check task end + +2025-09-24 02:28:53,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:53,923 INFO Connection check task start + +2025-09-24 02:28:53,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:53,923 INFO Out dated connection ,size=0 + +2025-09-24 02:28:53,923 INFO Connection check task end + +2025-09-24 02:28:56,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:56,924 INFO Connection check task start + +2025-09-24 02:28:56,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:56,924 INFO Out dated connection ,size=0 + +2025-09-24 02:28:56,924 INFO Connection check task end + +2025-09-24 02:28:59,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:28:59,925 INFO Connection check task start + +2025-09-24 02:28:59,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:28:59,925 INFO Out dated connection ,size=0 + +2025-09-24 02:28:59,925 INFO Connection check task end + +2025-09-24 02:29:02,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:02,926 INFO Connection check task start + +2025-09-24 02:29:02,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:02,926 INFO Out dated connection ,size=0 + +2025-09-24 02:29:02,926 INFO Connection check task end + +2025-09-24 02:29:05,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:05,927 INFO Connection check task start + +2025-09-24 02:29:05,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:05,927 INFO Out dated connection ,size=0 + +2025-09-24 02:29:05,927 INFO Connection check task end + +2025-09-24 02:29:08,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:08,929 INFO Connection check task start + +2025-09-24 02:29:08,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:08,929 INFO Out dated connection ,size=0 + +2025-09-24 02:29:08,929 INFO Connection check task end + +2025-09-24 02:29:11,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:11,930 INFO Connection check task start + +2025-09-24 02:29:11,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:11,930 INFO Out dated connection ,size=0 + +2025-09-24 02:29:11,930 INFO Connection check task end + +2025-09-24 02:29:14,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:14,930 INFO Connection check task start + +2025-09-24 02:29:14,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:14,930 INFO Out dated connection ,size=0 + +2025-09-24 02:29:14,930 INFO Connection check task end + +2025-09-24 02:29:17,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:17,932 INFO Connection check task start + +2025-09-24 02:29:17,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:17,932 INFO Out dated connection ,size=0 + +2025-09-24 02:29:17,932 INFO Connection check task end + +2025-09-24 02:29:20,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:20,932 INFO Connection check task start + +2025-09-24 02:29:20,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:20,932 INFO Out dated connection ,size=0 + +2025-09-24 02:29:20,932 INFO Connection check task end + +2025-09-24 02:29:23,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:23,933 INFO Connection check task start + +2025-09-24 02:29:23,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:23,933 INFO Out dated connection ,size=0 + +2025-09-24 02:29:23,933 INFO Connection check task end + +2025-09-24 02:29:26,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:26,934 INFO Connection check task start + +2025-09-24 02:29:26,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:26,934 INFO Out dated connection ,size=0 + +2025-09-24 02:29:26,934 INFO Connection check task end + +2025-09-24 02:29:29,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:29,935 INFO Connection check task start + +2025-09-24 02:29:29,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:29,936 INFO Out dated connection ,size=0 + +2025-09-24 02:29:29,936 INFO Connection check task end + +2025-09-24 02:29:32,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:32,936 INFO Connection check task start + +2025-09-24 02:29:32,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:32,945 INFO Out dated connection ,size=0 + +2025-09-24 02:29:32,945 INFO Connection check task end + +2025-09-24 02:29:35,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:35,947 INFO Connection check task start + +2025-09-24 02:29:35,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:35,947 INFO Out dated connection ,size=0 + +2025-09-24 02:29:35,947 INFO Connection check task end + +2025-09-24 02:29:38,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:38,949 INFO Connection check task start + +2025-09-24 02:29:38,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:38,949 INFO Out dated connection ,size=0 + +2025-09-24 02:29:38,949 INFO Connection check task end + +2025-09-24 02:29:41,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:41,951 INFO Connection check task start + +2025-09-24 02:29:41,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:41,951 INFO Out dated connection ,size=0 + +2025-09-24 02:29:41,952 INFO Connection check task end + +2025-09-24 02:29:44,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:44,952 INFO Connection check task start + +2025-09-24 02:29:44,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:44,952 INFO Out dated connection ,size=0 + +2025-09-24 02:29:44,952 INFO Connection check task end + +2025-09-24 02:29:47,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:47,953 INFO Connection check task start + +2025-09-24 02:29:47,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:47,953 INFO Out dated connection ,size=0 + +2025-09-24 02:29:47,953 INFO Connection check task end + +2025-09-24 02:29:50,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:50,953 INFO Connection check task start + +2025-09-24 02:29:50,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:50,953 INFO Out dated connection ,size=0 + +2025-09-24 02:29:50,953 INFO Connection check task end + +2025-09-24 02:29:53,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:53,954 INFO Connection check task start + +2025-09-24 02:29:53,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:53,954 INFO Out dated connection ,size=0 + +2025-09-24 02:29:53,954 INFO Connection check task end + +2025-09-24 02:29:56,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:56,955 INFO Connection check task start + +2025-09-24 02:29:56,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:56,955 INFO Out dated connection ,size=0 + +2025-09-24 02:29:56,955 INFO Connection check task end + +2025-09-24 02:29:59,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:29:59,956 INFO Connection check task start + +2025-09-24 02:29:59,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:29:59,956 INFO Out dated connection ,size=0 + +2025-09-24 02:29:59,956 INFO Connection check task end + +2025-09-24 02:30:02,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:02,958 INFO Connection check task start + +2025-09-24 02:30:02,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:02,958 INFO Out dated connection ,size=0 + +2025-09-24 02:30:02,958 INFO Connection check task end + +2025-09-24 02:30:05,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:05,960 INFO Connection check task start + +2025-09-24 02:30:05,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:05,960 INFO Out dated connection ,size=0 + +2025-09-24 02:30:05,960 INFO Connection check task end + +2025-09-24 02:30:08,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:08,961 INFO Connection check task start + +2025-09-24 02:30:08,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:08,962 INFO Out dated connection ,size=0 + +2025-09-24 02:30:08,962 INFO Connection check task end + +2025-09-24 02:30:11,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:11,962 INFO Connection check task start + +2025-09-24 02:30:11,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:11,962 INFO Out dated connection ,size=0 + +2025-09-24 02:30:11,962 INFO Connection check task end + +2025-09-24 02:30:14,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:14,964 INFO Connection check task start + +2025-09-24 02:30:14,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:14,964 INFO Out dated connection ,size=0 + +2025-09-24 02:30:14,964 INFO Connection check task end + +2025-09-24 02:30:17,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:17,966 INFO Connection check task start + +2025-09-24 02:30:17,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:17,968 INFO Out dated connection ,size=0 + +2025-09-24 02:30:17,968 INFO Connection check task end + +2025-09-24 02:30:20,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:20,969 INFO Connection check task start + +2025-09-24 02:30:20,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:20,969 INFO Out dated connection ,size=0 + +2025-09-24 02:30:20,969 INFO Connection check task end + +2025-09-24 02:30:23,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:23,971 INFO Connection check task start + +2025-09-24 02:30:23,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:23,972 INFO Out dated connection ,size=0 + +2025-09-24 02:30:23,972 INFO Connection check task end + +2025-09-24 02:30:26,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:26,972 INFO Connection check task start + +2025-09-24 02:30:26,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:26,972 INFO Out dated connection ,size=0 + +2025-09-24 02:30:26,972 INFO Connection check task end + +2025-09-24 02:30:29,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:29,973 INFO Connection check task start + +2025-09-24 02:30:29,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:29,973 INFO Out dated connection ,size=0 + +2025-09-24 02:30:29,973 INFO Connection check task end + +2025-09-24 02:30:32,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:32,973 INFO Connection check task start + +2025-09-24 02:30:32,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:32,974 INFO Out dated connection ,size=0 + +2025-09-24 02:30:32,974 INFO Connection check task end + +2025-09-24 02:30:35,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:35,974 INFO Connection check task start + +2025-09-24 02:30:35,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:35,974 INFO Out dated connection ,size=0 + +2025-09-24 02:30:35,974 INFO Connection check task end + +2025-09-24 02:30:38,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:38,976 INFO Connection check task start + +2025-09-24 02:30:38,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:38,976 INFO Out dated connection ,size=0 + +2025-09-24 02:30:38,976 INFO Connection check task end + +2025-09-24 02:30:41,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:41,977 INFO Connection check task start + +2025-09-24 02:30:41,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:41,977 INFO Out dated connection ,size=0 + +2025-09-24 02:30:41,977 INFO Connection check task end + +2025-09-24 02:30:44,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:44,978 INFO Connection check task start + +2025-09-24 02:30:44,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:44,978 INFO Out dated connection ,size=0 + +2025-09-24 02:30:44,978 INFO Connection check task end + +2025-09-24 02:30:47,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:47,978 INFO Connection check task start + +2025-09-24 02:30:47,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:47,978 INFO Out dated connection ,size=0 + +2025-09-24 02:30:47,978 INFO Connection check task end + +2025-09-24 02:30:50,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:50,980 INFO Connection check task start + +2025-09-24 02:30:50,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:50,981 INFO Out dated connection ,size=0 + +2025-09-24 02:30:50,981 INFO Connection check task end + +2025-09-24 02:30:53,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:53,981 INFO Connection check task start + +2025-09-24 02:30:53,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:53,981 INFO Out dated connection ,size=0 + +2025-09-24 02:30:53,981 INFO Connection check task end + +2025-09-24 02:30:56,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:56,982 INFO Connection check task start + +2025-09-24 02:30:56,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:56,983 INFO Out dated connection ,size=0 + +2025-09-24 02:30:56,983 INFO Connection check task end + +2025-09-24 02:30:59,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:30:59,985 INFO Connection check task start + +2025-09-24 02:30:59,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:30:59,985 INFO Out dated connection ,size=0 + +2025-09-24 02:30:59,985 INFO Connection check task end + +2025-09-24 02:31:02,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:02,985 INFO Connection check task start + +2025-09-24 02:31:02,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:02,985 INFO Out dated connection ,size=0 + +2025-09-24 02:31:02,985 INFO Connection check task end + +2025-09-24 02:31:05,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:05,986 INFO Connection check task start + +2025-09-24 02:31:05,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:05,986 INFO Out dated connection ,size=0 + +2025-09-24 02:31:05,986 INFO Connection check task end + +2025-09-24 02:31:08,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:08,986 INFO Connection check task start + +2025-09-24 02:31:08,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:08,986 INFO Out dated connection ,size=0 + +2025-09-24 02:31:08,986 INFO Connection check task end + +2025-09-24 02:31:11,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:11,987 INFO Connection check task start + +2025-09-24 02:31:11,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:11,987 INFO Out dated connection ,size=0 + +2025-09-24 02:31:11,987 INFO Connection check task end + +2025-09-24 02:31:14,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:14,987 INFO Connection check task start + +2025-09-24 02:31:14,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:14,988 INFO Out dated connection ,size=0 + +2025-09-24 02:31:14,988 INFO Connection check task end + +2025-09-24 02:31:17,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:17,988 INFO Connection check task start + +2025-09-24 02:31:17,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:17,988 INFO Out dated connection ,size=0 + +2025-09-24 02:31:17,988 INFO Connection check task end + +2025-09-24 02:31:20,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:20,988 INFO Connection check task start + +2025-09-24 02:31:20,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:20,988 INFO Out dated connection ,size=0 + +2025-09-24 02:31:20,989 INFO Connection check task end + +2025-09-24 02:31:23,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:23,989 INFO Connection check task start + +2025-09-24 02:31:23,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:23,989 INFO Out dated connection ,size=0 + +2025-09-24 02:31:23,989 INFO Connection check task end + +2025-09-24 02:31:26,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:26,989 INFO Connection check task start + +2025-09-24 02:31:26,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:26,989 INFO Out dated connection ,size=0 + +2025-09-24 02:31:26,989 INFO Connection check task end + +2025-09-24 02:31:29,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:29,990 INFO Connection check task start + +2025-09-24 02:31:29,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:29,990 INFO Out dated connection ,size=0 + +2025-09-24 02:31:29,990 INFO Connection check task end + +2025-09-24 02:31:32,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:32,990 INFO Connection check task start + +2025-09-24 02:31:32,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:32,991 INFO Out dated connection ,size=0 + +2025-09-24 02:31:32,991 INFO Connection check task end + +2025-09-24 02:31:35,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:35,991 INFO Connection check task start + +2025-09-24 02:31:35,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:35,991 INFO Out dated connection ,size=0 + +2025-09-24 02:31:35,991 INFO Connection check task end + +2025-09-24 02:31:38,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:38,992 INFO Connection check task start + +2025-09-24 02:31:38,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:38,992 INFO Out dated connection ,size=0 + +2025-09-24 02:31:38,992 INFO Connection check task end + +2025-09-24 02:31:41,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:41,993 INFO Connection check task start + +2025-09-24 02:31:41,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:41,993 INFO Out dated connection ,size=0 + +2025-09-24 02:31:41,993 INFO Connection check task end + +2025-09-24 02:31:44,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:44,993 INFO Connection check task start + +2025-09-24 02:31:44,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:44,994 INFO Out dated connection ,size=0 + +2025-09-24 02:31:44,994 INFO Connection check task end + +2025-09-24 02:31:47,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:47,995 INFO Connection check task start + +2025-09-24 02:31:47,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:47,995 INFO Out dated connection ,size=0 + +2025-09-24 02:31:47,995 INFO Connection check task end + +2025-09-24 02:31:50,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:50,995 INFO Connection check task start + +2025-09-24 02:31:50,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:50,996 INFO Out dated connection ,size=0 + +2025-09-24 02:31:50,996 INFO Connection check task end + +2025-09-24 02:31:53,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:53,996 INFO Connection check task start + +2025-09-24 02:31:53,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:53,996 INFO Out dated connection ,size=0 + +2025-09-24 02:31:53,996 INFO Connection check task end + +2025-09-24 02:31:56,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:56,997 INFO Connection check task start + +2025-09-24 02:31:56,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:56,997 INFO Out dated connection ,size=0 + +2025-09-24 02:31:56,997 INFO Connection check task end + +2025-09-24 02:31:59,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:31:59,997 INFO Connection check task start + +2025-09-24 02:31:59,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:31:59,998 INFO Out dated connection ,size=0 + +2025-09-24 02:31:59,998 INFO Connection check task end + +2025-09-24 02:32:02,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:02,998 INFO Connection check task start + +2025-09-24 02:32:02,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:02,998 INFO Out dated connection ,size=0 + +2025-09-24 02:32:02,998 INFO Connection check task end + +2025-09-24 02:32:05,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:05,998 INFO Connection check task start + +2025-09-24 02:32:05,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:05,998 INFO Out dated connection ,size=0 + +2025-09-24 02:32:05,998 INFO Connection check task end + +2025-09-24 02:32:08,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:09,000 INFO Connection check task start + +2025-09-24 02:32:09,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:09,000 INFO Out dated connection ,size=0 + +2025-09-24 02:32:09,000 INFO Connection check task end + +2025-09-24 02:32:11,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:12,002 INFO Connection check task start + +2025-09-24 02:32:12,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:12,002 INFO Out dated connection ,size=0 + +2025-09-24 02:32:12,002 INFO Connection check task end + +2025-09-24 02:32:14,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:15,002 INFO Connection check task start + +2025-09-24 02:32:15,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:15,003 INFO Out dated connection ,size=0 + +2025-09-24 02:32:15,003 INFO Connection check task end + +2025-09-24 02:32:17,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:18,003 INFO Connection check task start + +2025-09-24 02:32:18,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:18,003 INFO Out dated connection ,size=0 + +2025-09-24 02:32:18,003 INFO Connection check task end + +2025-09-24 02:32:20,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:21,004 INFO Connection check task start + +2025-09-24 02:32:21,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:21,004 INFO Out dated connection ,size=0 + +2025-09-24 02:32:21,004 INFO Connection check task end + +2025-09-24 02:32:23,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:24,004 INFO Connection check task start + +2025-09-24 02:32:24,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:24,004 INFO Out dated connection ,size=0 + +2025-09-24 02:32:24,004 INFO Connection check task end + +2025-09-24 02:32:26,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:27,004 INFO Connection check task start + +2025-09-24 02:32:27,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:27,005 INFO Out dated connection ,size=0 + +2025-09-24 02:32:27,005 INFO Connection check task end + +2025-09-24 02:32:29,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:30,005 INFO Connection check task start + +2025-09-24 02:32:30,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:30,005 INFO Out dated connection ,size=0 + +2025-09-24 02:32:30,005 INFO Connection check task end + +2025-09-24 02:32:32,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:33,005 INFO Connection check task start + +2025-09-24 02:32:33,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:33,005 INFO Out dated connection ,size=0 + +2025-09-24 02:32:33,005 INFO Connection check task end + +2025-09-24 02:32:35,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:36,006 INFO Connection check task start + +2025-09-24 02:32:36,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:36,006 INFO Out dated connection ,size=0 + +2025-09-24 02:32:36,006 INFO Connection check task end + +2025-09-24 02:32:38,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:39,007 INFO Connection check task start + +2025-09-24 02:32:39,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:39,007 INFO Out dated connection ,size=0 + +2025-09-24 02:32:39,007 INFO Connection check task end + +2025-09-24 02:32:41,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:42,007 INFO Connection check task start + +2025-09-24 02:32:42,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:42,007 INFO Out dated connection ,size=0 + +2025-09-24 02:32:42,007 INFO Connection check task end + +2025-09-24 02:32:44,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:45,008 INFO Connection check task start + +2025-09-24 02:32:45,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:45,008 INFO Out dated connection ,size=0 + +2025-09-24 02:32:45,008 INFO Connection check task end + +2025-09-24 02:32:47,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:48,008 INFO Connection check task start + +2025-09-24 02:32:48,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:48,008 INFO Out dated connection ,size=0 + +2025-09-24 02:32:48,008 INFO Connection check task end + +2025-09-24 02:32:50,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:51,009 INFO Connection check task start + +2025-09-24 02:32:51,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:51,010 INFO Out dated connection ,size=0 + +2025-09-24 02:32:51,031 INFO Connection check task end + +2025-09-24 02:32:53,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:54,031 INFO Connection check task start + +2025-09-24 02:32:54,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:54,031 INFO Out dated connection ,size=0 + +2025-09-24 02:32:54,031 INFO Connection check task end + +2025-09-24 02:32:56,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:32:57,032 INFO Connection check task start + +2025-09-24 02:32:57,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:32:57,032 INFO Out dated connection ,size=0 + +2025-09-24 02:32:57,032 INFO Connection check task end + +2025-09-24 02:32:59,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:00,032 INFO Connection check task start + +2025-09-24 02:33:00,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:00,032 INFO Out dated connection ,size=0 + +2025-09-24 02:33:00,033 INFO Connection check task end + +2025-09-24 02:33:02,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:03,033 INFO Connection check task start + +2025-09-24 02:33:03,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:03,033 INFO Out dated connection ,size=0 + +2025-09-24 02:33:03,033 INFO Connection check task end + +2025-09-24 02:33:05,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:06,033 INFO Connection check task start + +2025-09-24 02:33:06,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:06,033 INFO Out dated connection ,size=0 + +2025-09-24 02:33:06,034 INFO Connection check task end + +2025-09-24 02:33:08,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:09,034 INFO Connection check task start + +2025-09-24 02:33:09,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:09,034 INFO Out dated connection ,size=0 + +2025-09-24 02:33:09,034 INFO Connection check task end + +2025-09-24 02:33:11,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:12,036 INFO Connection check task start + +2025-09-24 02:33:12,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:12,036 INFO Out dated connection ,size=0 + +2025-09-24 02:33:12,036 INFO Connection check task end + +2025-09-24 02:33:14,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:15,037 INFO Connection check task start + +2025-09-24 02:33:15,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:15,037 INFO Out dated connection ,size=0 + +2025-09-24 02:33:15,038 INFO Connection check task end + +2025-09-24 02:33:17,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:18,038 INFO Connection check task start + +2025-09-24 02:33:18,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:18,038 INFO Out dated connection ,size=0 + +2025-09-24 02:33:18,038 INFO Connection check task end + +2025-09-24 02:33:20,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:21,038 INFO Connection check task start + +2025-09-24 02:33:21,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:21,039 INFO Out dated connection ,size=0 + +2025-09-24 02:33:21,039 INFO Connection check task end + +2025-09-24 02:33:23,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:24,039 INFO Connection check task start + +2025-09-24 02:33:24,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:24,039 INFO Out dated connection ,size=0 + +2025-09-24 02:33:24,039 INFO Connection check task end + +2025-09-24 02:33:26,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:27,040 INFO Connection check task start + +2025-09-24 02:33:27,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:27,040 INFO Out dated connection ,size=0 + +2025-09-24 02:33:27,040 INFO Connection check task end + +2025-09-24 02:33:29,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:30,041 INFO Connection check task start + +2025-09-24 02:33:30,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:30,041 INFO Out dated connection ,size=0 + +2025-09-24 02:33:30,041 INFO Connection check task end + +2025-09-24 02:33:32,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:33,041 INFO Connection check task start + +2025-09-24 02:33:33,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:33,041 INFO Out dated connection ,size=0 + +2025-09-24 02:33:33,042 INFO Connection check task end + +2025-09-24 02:33:35,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:36,042 INFO Connection check task start + +2025-09-24 02:33:36,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:36,042 INFO Out dated connection ,size=0 + +2025-09-24 02:33:36,042 INFO Connection check task end + +2025-09-24 02:33:38,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:39,043 INFO Connection check task start + +2025-09-24 02:33:39,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:39,043 INFO Out dated connection ,size=0 + +2025-09-24 02:33:39,043 INFO Connection check task end + +2025-09-24 02:33:41,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:42,044 INFO Connection check task start + +2025-09-24 02:33:42,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:42,044 INFO Out dated connection ,size=0 + +2025-09-24 02:33:42,044 INFO Connection check task end + +2025-09-24 02:33:44,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:45,045 INFO Connection check task start + +2025-09-24 02:33:45,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:45,045 INFO Out dated connection ,size=0 + +2025-09-24 02:33:45,045 INFO Connection check task end + +2025-09-24 02:33:47,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:48,047 INFO Connection check task start + +2025-09-24 02:33:48,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:48,047 INFO Out dated connection ,size=0 + +2025-09-24 02:33:48,047 INFO Connection check task end + +2025-09-24 02:33:50,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:51,049 INFO Connection check task start + +2025-09-24 02:33:51,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:51,049 INFO Out dated connection ,size=0 + +2025-09-24 02:33:51,049 INFO Connection check task end + +2025-09-24 02:33:53,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:54,050 INFO Connection check task start + +2025-09-24 02:33:54,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:54,050 INFO Out dated connection ,size=0 + +2025-09-24 02:33:54,050 INFO Connection check task end + +2025-09-24 02:33:56,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:33:57,051 INFO Connection check task start + +2025-09-24 02:33:57,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:33:57,051 INFO Out dated connection ,size=0 + +2025-09-24 02:33:57,051 INFO Connection check task end + +2025-09-24 02:33:59,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:00,052 INFO Connection check task start + +2025-09-24 02:34:00,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:00,052 INFO Out dated connection ,size=0 + +2025-09-24 02:34:00,052 INFO Connection check task end + +2025-09-24 02:34:02,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:03,055 INFO Connection check task start + +2025-09-24 02:34:03,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:03,055 INFO Out dated connection ,size=0 + +2025-09-24 02:34:03,055 INFO Connection check task end + +2025-09-24 02:34:05,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:06,057 INFO Connection check task start + +2025-09-24 02:34:06,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:06,057 INFO Out dated connection ,size=0 + +2025-09-24 02:34:06,057 INFO Connection check task end + +2025-09-24 02:34:08,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:09,058 INFO Connection check task start + +2025-09-24 02:34:09,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:09,058 INFO Out dated connection ,size=0 + +2025-09-24 02:34:09,058 INFO Connection check task end + +2025-09-24 02:34:11,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:12,058 INFO Connection check task start + +2025-09-24 02:34:12,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:12,058 INFO Out dated connection ,size=0 + +2025-09-24 02:34:12,058 INFO Connection check task end + +2025-09-24 02:34:14,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:15,061 INFO Connection check task start + +2025-09-24 02:34:15,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:15,061 INFO Out dated connection ,size=0 + +2025-09-24 02:34:15,061 INFO Connection check task end + +2025-09-24 02:34:17,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:18,061 INFO Connection check task start + +2025-09-24 02:34:18,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:18,070 INFO Out dated connection ,size=0 + +2025-09-24 02:34:18,070 INFO Connection check task end + +2025-09-24 02:34:20,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:21,070 INFO Connection check task start + +2025-09-24 02:34:21,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:21,070 INFO Out dated connection ,size=0 + +2025-09-24 02:34:21,070 INFO Connection check task end + +2025-09-24 02:34:23,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:24,072 INFO Connection check task start + +2025-09-24 02:34:24,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:24,072 INFO Out dated connection ,size=0 + +2025-09-24 02:34:24,072 INFO Connection check task end + +2025-09-24 02:34:26,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:27,073 INFO Connection check task start + +2025-09-24 02:34:27,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:27,073 INFO Out dated connection ,size=0 + +2025-09-24 02:34:27,073 INFO Connection check task end + +2025-09-24 02:34:29,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:30,075 INFO Connection check task start + +2025-09-24 02:34:30,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:30,075 INFO Out dated connection ,size=0 + +2025-09-24 02:34:30,075 INFO Connection check task end + +2025-09-24 02:34:32,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:33,076 INFO Connection check task start + +2025-09-24 02:34:33,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:33,076 INFO Out dated connection ,size=0 + +2025-09-24 02:34:33,076 INFO Connection check task end + +2025-09-24 02:34:35,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:36,078 INFO Connection check task start + +2025-09-24 02:34:36,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:36,079 INFO Out dated connection ,size=0 + +2025-09-24 02:34:36,079 INFO Connection check task end + +2025-09-24 02:34:38,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:39,079 INFO Connection check task start + +2025-09-24 02:34:39,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:39,079 INFO Out dated connection ,size=0 + +2025-09-24 02:34:39,079 INFO Connection check task end + +2025-09-24 02:34:41,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:42,080 INFO Connection check task start + +2025-09-24 02:34:42,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:42,080 INFO Out dated connection ,size=0 + +2025-09-24 02:34:42,080 INFO Connection check task end + +2025-09-24 02:34:44,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:45,082 INFO Connection check task start + +2025-09-24 02:34:45,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:45,082 INFO Out dated connection ,size=0 + +2025-09-24 02:34:45,082 INFO Connection check task end + +2025-09-24 02:34:47,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:48,084 INFO Connection check task start + +2025-09-24 02:34:48,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:48,084 INFO Out dated connection ,size=0 + +2025-09-24 02:34:48,084 INFO Connection check task end + +2025-09-24 02:34:50,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:51,085 INFO Connection check task start + +2025-09-24 02:34:51,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:51,085 INFO Out dated connection ,size=0 + +2025-09-24 02:34:51,086 INFO Connection check task end + +2025-09-24 02:34:53,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:54,087 INFO Connection check task start + +2025-09-24 02:34:54,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:54,087 INFO Out dated connection ,size=0 + +2025-09-24 02:34:54,087 INFO Connection check task end + +2025-09-24 02:34:56,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:34:57,088 INFO Connection check task start + +2025-09-24 02:34:57,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:34:57,088 INFO Out dated connection ,size=0 + +2025-09-24 02:34:57,088 INFO Connection check task end + +2025-09-24 02:34:59,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:00,090 INFO Connection check task start + +2025-09-24 02:35:00,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:00,090 INFO Out dated connection ,size=0 + +2025-09-24 02:35:00,090 INFO Connection check task end + +2025-09-24 02:35:02,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:03,090 INFO Connection check task start + +2025-09-24 02:35:03,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:03,090 INFO Out dated connection ,size=0 + +2025-09-24 02:35:03,090 INFO Connection check task end + +2025-09-24 02:35:05,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:06,092 INFO Connection check task start + +2025-09-24 02:35:06,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:06,092 INFO Out dated connection ,size=0 + +2025-09-24 02:35:06,092 INFO Connection check task end + +2025-09-24 02:35:08,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:09,093 INFO Connection check task start + +2025-09-24 02:35:09,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:09,093 INFO Out dated connection ,size=0 + +2025-09-24 02:35:09,093 INFO Connection check task end + +2025-09-24 02:35:11,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:12,095 INFO Connection check task start + +2025-09-24 02:35:12,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:12,096 INFO Out dated connection ,size=0 + +2025-09-24 02:35:12,096 INFO Connection check task end + +2025-09-24 02:35:14,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:15,096 INFO Connection check task start + +2025-09-24 02:35:15,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:15,096 INFO Out dated connection ,size=0 + +2025-09-24 02:35:15,096 INFO Connection check task end + +2025-09-24 02:35:17,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:18,097 INFO Connection check task start + +2025-09-24 02:35:18,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:18,097 INFO Out dated connection ,size=0 + +2025-09-24 02:35:18,097 INFO Connection check task end + +2025-09-24 02:35:20,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:21,098 INFO Connection check task start + +2025-09-24 02:35:21,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:21,098 INFO Out dated connection ,size=0 + +2025-09-24 02:35:21,098 INFO Connection check task end + +2025-09-24 02:35:23,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:24,100 INFO Connection check task start + +2025-09-24 02:35:24,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:24,101 INFO Out dated connection ,size=0 + +2025-09-24 02:35:24,101 INFO Connection check task end + +2025-09-24 02:35:26,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:27,103 INFO Connection check task start + +2025-09-24 02:35:27,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:27,103 INFO Out dated connection ,size=0 + +2025-09-24 02:35:27,103 INFO Connection check task end + +2025-09-24 02:35:29,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:30,103 INFO Connection check task start + +2025-09-24 02:35:30,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:30,103 INFO Out dated connection ,size=0 + +2025-09-24 02:35:30,103 INFO Connection check task end + +2025-09-24 02:35:32,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:33,104 INFO Connection check task start + +2025-09-24 02:35:33,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:33,104 INFO Out dated connection ,size=0 + +2025-09-24 02:35:33,104 INFO Connection check task end + +2025-09-24 02:35:35,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:36,104 INFO Connection check task start + +2025-09-24 02:35:36,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:36,104 INFO Out dated connection ,size=0 + +2025-09-24 02:35:36,105 INFO Connection check task end + +2025-09-24 02:35:38,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:39,106 INFO Connection check task start + +2025-09-24 02:35:39,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:39,106 INFO Out dated connection ,size=0 + +2025-09-24 02:35:39,106 INFO Connection check task end + +2025-09-24 02:35:41,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:42,108 INFO Connection check task start + +2025-09-24 02:35:42,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:42,108 INFO Out dated connection ,size=0 + +2025-09-24 02:35:42,108 INFO Connection check task end + +2025-09-24 02:35:44,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:45,109 INFO Connection check task start + +2025-09-24 02:35:45,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:45,109 INFO Out dated connection ,size=0 + +2025-09-24 02:35:45,109 INFO Connection check task end + +2025-09-24 02:35:47,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:48,110 INFO Connection check task start + +2025-09-24 02:35:48,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:48,110 INFO Out dated connection ,size=0 + +2025-09-24 02:35:48,110 INFO Connection check task end + +2025-09-24 02:35:50,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:51,112 INFO Connection check task start + +2025-09-24 02:35:51,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:51,113 INFO Out dated connection ,size=0 + +2025-09-24 02:35:51,113 INFO Connection check task end + +2025-09-24 02:35:53,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:54,113 INFO Connection check task start + +2025-09-24 02:35:54,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:54,113 INFO Out dated connection ,size=0 + +2025-09-24 02:35:54,113 INFO Connection check task end + +2025-09-24 02:35:56,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:35:57,113 INFO Connection check task start + +2025-09-24 02:35:57,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:35:57,114 INFO Out dated connection ,size=0 + +2025-09-24 02:35:57,114 INFO Connection check task end + +2025-09-24 02:35:59,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:00,114 INFO Connection check task start + +2025-09-24 02:36:00,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:00,114 INFO Out dated connection ,size=0 + +2025-09-24 02:36:00,114 INFO Connection check task end + +2025-09-24 02:36:02,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:03,114 INFO Connection check task start + +2025-09-24 02:36:03,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:03,115 INFO Out dated connection ,size=0 + +2025-09-24 02:36:03,115 INFO Connection check task end + +2025-09-24 02:36:05,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:06,117 INFO Connection check task start + +2025-09-24 02:36:06,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:06,117 INFO Out dated connection ,size=0 + +2025-09-24 02:36:06,117 INFO Connection check task end + +2025-09-24 02:36:08,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:09,117 INFO Connection check task start + +2025-09-24 02:36:09,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:09,118 INFO Out dated connection ,size=0 + +2025-09-24 02:36:09,118 INFO Connection check task end + +2025-09-24 02:36:11,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:12,118 INFO Connection check task start + +2025-09-24 02:36:12,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:12,118 INFO Out dated connection ,size=0 + +2025-09-24 02:36:12,118 INFO Connection check task end + +2025-09-24 02:36:14,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:15,118 INFO Connection check task start + +2025-09-24 02:36:15,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:15,119 INFO Out dated connection ,size=0 + +2025-09-24 02:36:15,119 INFO Connection check task end + +2025-09-24 02:36:17,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:18,121 INFO Connection check task start + +2025-09-24 02:36:18,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:18,121 INFO Out dated connection ,size=0 + +2025-09-24 02:36:18,121 INFO Connection check task end + +2025-09-24 02:36:20,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:21,121 INFO Connection check task start + +2025-09-24 02:36:21,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:21,121 INFO Out dated connection ,size=0 + +2025-09-24 02:36:21,121 INFO Connection check task end + +2025-09-24 02:36:23,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:24,122 INFO Connection check task start + +2025-09-24 02:36:24,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:24,122 INFO Out dated connection ,size=0 + +2025-09-24 02:36:24,122 INFO Connection check task end + +2025-09-24 02:36:26,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:27,124 INFO Connection check task start + +2025-09-24 02:36:27,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:27,124 INFO Out dated connection ,size=0 + +2025-09-24 02:36:27,124 INFO Connection check task end + +2025-09-24 02:36:29,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:30,126 INFO Connection check task start + +2025-09-24 02:36:30,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:30,127 INFO Out dated connection ,size=0 + +2025-09-24 02:36:30,127 INFO Connection check task end + +2025-09-24 02:36:32,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:33,127 INFO Connection check task start + +2025-09-24 02:36:33,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:33,127 INFO Out dated connection ,size=0 + +2025-09-24 02:36:33,127 INFO Connection check task end + +2025-09-24 02:36:35,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:36,129 INFO Connection check task start + +2025-09-24 02:36:36,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:36,130 INFO Out dated connection ,size=0 + +2025-09-24 02:36:36,130 INFO Connection check task end + +2025-09-24 02:36:38,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:39,130 INFO Connection check task start + +2025-09-24 02:36:39,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:39,130 INFO Out dated connection ,size=0 + +2025-09-24 02:36:39,130 INFO Connection check task end + +2025-09-24 02:36:41,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:42,130 INFO Connection check task start + +2025-09-24 02:36:42,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:42,131 INFO Out dated connection ,size=0 + +2025-09-24 02:36:42,131 INFO Connection check task end + +2025-09-24 02:36:44,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:45,132 INFO Connection check task start + +2025-09-24 02:36:45,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:45,132 INFO Out dated connection ,size=0 + +2025-09-24 02:36:45,132 INFO Connection check task end + +2025-09-24 02:36:47,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:48,132 INFO Connection check task start + +2025-09-24 02:36:48,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:48,132 INFO Out dated connection ,size=0 + +2025-09-24 02:36:48,132 INFO Connection check task end + +2025-09-24 02:36:50,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:51,133 INFO Connection check task start + +2025-09-24 02:36:51,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:51,133 INFO Out dated connection ,size=0 + +2025-09-24 02:36:51,133 INFO Connection check task end + +2025-09-24 02:36:53,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:54,134 INFO Connection check task start + +2025-09-24 02:36:54,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:54,134 INFO Out dated connection ,size=0 + +2025-09-24 02:36:54,134 INFO Connection check task end + +2025-09-24 02:36:56,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:36:57,134 INFO Connection check task start + +2025-09-24 02:36:57,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:36:57,135 INFO Out dated connection ,size=0 + +2025-09-24 02:36:57,135 INFO Connection check task end + +2025-09-24 02:36:59,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:00,136 INFO Connection check task start + +2025-09-24 02:37:00,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:00,136 INFO Out dated connection ,size=0 + +2025-09-24 02:37:00,136 INFO Connection check task end + +2025-09-24 02:37:02,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:03,137 INFO Connection check task start + +2025-09-24 02:37:03,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:03,137 INFO Out dated connection ,size=0 + +2025-09-24 02:37:03,137 INFO Connection check task end + +2025-09-24 02:37:05,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:06,139 INFO Connection check task start + +2025-09-24 02:37:06,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:06,139 INFO Out dated connection ,size=0 + +2025-09-24 02:37:06,139 INFO Connection check task end + +2025-09-24 02:37:08,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:09,139 INFO Connection check task start + +2025-09-24 02:37:09,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:09,139 INFO Out dated connection ,size=0 + +2025-09-24 02:37:09,139 INFO Connection check task end + +2025-09-24 02:37:11,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:12,141 INFO Connection check task start + +2025-09-24 02:37:12,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:12,142 INFO Out dated connection ,size=0 + +2025-09-24 02:37:12,142 INFO Connection check task end + +2025-09-24 02:37:14,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:15,143 INFO Connection check task start + +2025-09-24 02:37:15,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:15,143 INFO Out dated connection ,size=0 + +2025-09-24 02:37:15,143 INFO Connection check task end + +2025-09-24 02:37:17,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:18,145 INFO Connection check task start + +2025-09-24 02:37:18,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:18,145 INFO Out dated connection ,size=0 + +2025-09-24 02:37:18,145 INFO Connection check task end + +2025-09-24 02:37:20,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:21,147 INFO Connection check task start + +2025-09-24 02:37:21,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:21,147 INFO Out dated connection ,size=0 + +2025-09-24 02:37:21,147 INFO Connection check task end + +2025-09-24 02:37:23,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:24,149 INFO Connection check task start + +2025-09-24 02:37:24,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:24,149 INFO Out dated connection ,size=0 + +2025-09-24 02:37:24,149 INFO Connection check task end + +2025-09-24 02:37:26,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:27,151 INFO Connection check task start + +2025-09-24 02:37:27,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:27,152 INFO Out dated connection ,size=0 + +2025-09-24 02:37:27,152 INFO Connection check task end + +2025-09-24 02:37:29,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:30,152 INFO Connection check task start + +2025-09-24 02:37:30,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:30,152 INFO Out dated connection ,size=0 + +2025-09-24 02:37:30,152 INFO Connection check task end + +2025-09-24 02:37:32,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:33,153 INFO Connection check task start + +2025-09-24 02:37:33,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:33,153 INFO Out dated connection ,size=0 + +2025-09-24 02:37:33,154 INFO Connection check task end + +2025-09-24 02:37:35,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:36,154 INFO Connection check task start + +2025-09-24 02:37:36,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:36,154 INFO Out dated connection ,size=0 + +2025-09-24 02:37:36,154 INFO Connection check task end + +2025-09-24 02:37:38,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:39,156 INFO Connection check task start + +2025-09-24 02:37:39,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:39,156 INFO Out dated connection ,size=0 + +2025-09-24 02:37:39,156 INFO Connection check task end + +2025-09-24 02:37:41,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:42,158 INFO Connection check task start + +2025-09-24 02:37:42,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:42,158 INFO Out dated connection ,size=0 + +2025-09-24 02:37:42,158 INFO Connection check task end + +2025-09-24 02:37:44,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:45,160 INFO Connection check task start + +2025-09-24 02:37:45,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:45,160 INFO Out dated connection ,size=0 + +2025-09-24 02:37:45,160 INFO Connection check task end + +2025-09-24 02:37:47,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:48,163 INFO Connection check task start + +2025-09-24 02:37:48,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:48,163 INFO Out dated connection ,size=0 + +2025-09-24 02:37:48,163 INFO Connection check task end + +2025-09-24 02:37:50,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:51,164 INFO Connection check task start + +2025-09-24 02:37:51,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:51,164 INFO Out dated connection ,size=0 + +2025-09-24 02:37:51,164 INFO Connection check task end + +2025-09-24 02:37:53,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:54,165 INFO Connection check task start + +2025-09-24 02:37:54,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:54,165 INFO Out dated connection ,size=0 + +2025-09-24 02:37:54,165 INFO Connection check task end + +2025-09-24 02:37:56,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:37:57,167 INFO Connection check task start + +2025-09-24 02:37:57,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:37:57,167 INFO Out dated connection ,size=0 + +2025-09-24 02:37:57,167 INFO Connection check task end + +2025-09-24 02:37:59,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:00,170 INFO Connection check task start + +2025-09-24 02:38:00,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:00,170 INFO Out dated connection ,size=0 + +2025-09-24 02:38:00,170 INFO Connection check task end + +2025-09-24 02:38:02,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:03,170 INFO Connection check task start + +2025-09-24 02:38:03,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:03,170 INFO Out dated connection ,size=0 + +2025-09-24 02:38:03,170 INFO Connection check task end + +2025-09-24 02:38:05,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:06,172 INFO Connection check task start + +2025-09-24 02:38:06,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:06,173 INFO Out dated connection ,size=0 + +2025-09-24 02:38:06,173 INFO Connection check task end + +2025-09-24 02:38:08,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:09,174 INFO Connection check task start + +2025-09-24 02:38:09,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:09,174 INFO Out dated connection ,size=0 + +2025-09-24 02:38:09,174 INFO Connection check task end + +2025-09-24 02:38:11,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:12,175 INFO Connection check task start + +2025-09-24 02:38:12,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:12,176 INFO Out dated connection ,size=0 + +2025-09-24 02:38:12,176 INFO Connection check task end + +2025-09-24 02:38:14,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:15,177 INFO Connection check task start + +2025-09-24 02:38:15,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:15,177 INFO Out dated connection ,size=0 + +2025-09-24 02:38:15,177 INFO Connection check task end + +2025-09-24 02:38:17,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:18,179 INFO Connection check task start + +2025-09-24 02:38:18,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:18,179 INFO Out dated connection ,size=0 + +2025-09-24 02:38:18,179 INFO Connection check task end + +2025-09-24 02:38:20,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:21,181 INFO Connection check task start + +2025-09-24 02:38:21,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:21,182 INFO Out dated connection ,size=0 + +2025-09-24 02:38:21,182 INFO Connection check task end + +2025-09-24 02:38:23,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:24,184 INFO Connection check task start + +2025-09-24 02:38:24,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:24,184 INFO Out dated connection ,size=0 + +2025-09-24 02:38:24,184 INFO Connection check task end + +2025-09-24 02:38:26,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:27,186 INFO Connection check task start + +2025-09-24 02:38:27,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:27,186 INFO Out dated connection ,size=0 + +2025-09-24 02:38:27,186 INFO Connection check task end + +2025-09-24 02:38:29,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:30,187 INFO Connection check task start + +2025-09-24 02:38:30,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:30,187 INFO Out dated connection ,size=0 + +2025-09-24 02:38:30,187 INFO Connection check task end + +2025-09-24 02:38:32,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:33,189 INFO Connection check task start + +2025-09-24 02:38:33,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:33,189 INFO Out dated connection ,size=0 + +2025-09-24 02:38:33,189 INFO Connection check task end + +2025-09-24 02:38:35,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:36,191 INFO Connection check task start + +2025-09-24 02:38:36,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:36,191 INFO Out dated connection ,size=0 + +2025-09-24 02:38:36,191 INFO Connection check task end + +2025-09-24 02:38:38,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:39,193 INFO Connection check task start + +2025-09-24 02:38:39,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:39,193 INFO Out dated connection ,size=0 + +2025-09-24 02:38:39,193 INFO Connection check task end + +2025-09-24 02:38:41,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:42,193 INFO Connection check task start + +2025-09-24 02:38:42,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:42,194 INFO Out dated connection ,size=0 + +2025-09-24 02:38:42,194 INFO Connection check task end + +2025-09-24 02:38:44,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:45,196 INFO Connection check task start + +2025-09-24 02:38:45,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:45,196 INFO Out dated connection ,size=0 + +2025-09-24 02:38:45,196 INFO Connection check task end + +2025-09-24 02:38:47,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:48,197 INFO Connection check task start + +2025-09-24 02:38:48,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:48,197 INFO Out dated connection ,size=0 + +2025-09-24 02:38:48,197 INFO Connection check task end + +2025-09-24 02:38:50,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:51,199 INFO Connection check task start + +2025-09-24 02:38:51,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:51,199 INFO Out dated connection ,size=0 + +2025-09-24 02:38:51,199 INFO Connection check task end + +2025-09-24 02:38:53,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:54,201 INFO Connection check task start + +2025-09-24 02:38:54,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:54,202 INFO Out dated connection ,size=0 + +2025-09-24 02:38:54,202 INFO Connection check task end + +2025-09-24 02:38:56,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:38:57,204 INFO Connection check task start + +2025-09-24 02:38:57,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:38:57,204 INFO Out dated connection ,size=0 + +2025-09-24 02:38:57,204 INFO Connection check task end + +2025-09-24 02:38:59,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:00,204 INFO Connection check task start + +2025-09-24 02:39:00,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:00,204 INFO Out dated connection ,size=0 + +2025-09-24 02:39:00,204 INFO Connection check task end + +2025-09-24 02:39:02,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:03,205 INFO Connection check task start + +2025-09-24 02:39:03,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:03,205 INFO Out dated connection ,size=0 + +2025-09-24 02:39:03,205 INFO Connection check task end + +2025-09-24 02:39:05,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:06,206 INFO Connection check task start + +2025-09-24 02:39:06,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:06,206 INFO Out dated connection ,size=0 + +2025-09-24 02:39:06,206 INFO Connection check task end + +2025-09-24 02:39:08,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:09,208 INFO Connection check task start + +2025-09-24 02:39:09,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:09,208 INFO Out dated connection ,size=0 + +2025-09-24 02:39:09,208 INFO Connection check task end + +2025-09-24 02:39:11,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:12,208 INFO Connection check task start + +2025-09-24 02:39:12,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:12,208 INFO Out dated connection ,size=0 + +2025-09-24 02:39:12,208 INFO Connection check task end + +2025-09-24 02:39:14,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:15,209 INFO Connection check task start + +2025-09-24 02:39:15,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:15,209 INFO Out dated connection ,size=0 + +2025-09-24 02:39:15,209 INFO Connection check task end + +2025-09-24 02:39:17,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:18,210 INFO Connection check task start + +2025-09-24 02:39:18,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:18,210 INFO Out dated connection ,size=0 + +2025-09-24 02:39:18,210 INFO Connection check task end + +2025-09-24 02:39:20,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:21,212 INFO Connection check task start + +2025-09-24 02:39:21,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:21,212 INFO Out dated connection ,size=0 + +2025-09-24 02:39:21,212 INFO Connection check task end + +2025-09-24 02:39:23,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:24,212 INFO Connection check task start + +2025-09-24 02:39:24,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:24,212 INFO Out dated connection ,size=0 + +2025-09-24 02:39:24,212 INFO Connection check task end + +2025-09-24 02:39:26,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:27,214 INFO Connection check task start + +2025-09-24 02:39:27,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:27,214 INFO Out dated connection ,size=0 + +2025-09-24 02:39:27,214 INFO Connection check task end + +2025-09-24 02:39:29,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:30,216 INFO Connection check task start + +2025-09-24 02:39:30,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:30,216 INFO Out dated connection ,size=0 + +2025-09-24 02:39:30,216 INFO Connection check task end + +2025-09-24 02:39:32,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:33,217 INFO Connection check task start + +2025-09-24 02:39:33,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:33,217 INFO Out dated connection ,size=0 + +2025-09-24 02:39:33,217 INFO Connection check task end + +2025-09-24 02:39:35,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:36,219 INFO Connection check task start + +2025-09-24 02:39:36,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:36,219 INFO Out dated connection ,size=0 + +2025-09-24 02:39:36,219 INFO Connection check task end + +2025-09-24 02:39:38,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:39,219 INFO Connection check task start + +2025-09-24 02:39:39,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:39,220 INFO Out dated connection ,size=0 + +2025-09-24 02:39:39,220 INFO Connection check task end + +2025-09-24 02:39:41,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:42,222 INFO Connection check task start + +2025-09-24 02:39:42,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:42,222 INFO Out dated connection ,size=0 + +2025-09-24 02:39:42,222 INFO Connection check task end + +2025-09-24 02:39:44,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:45,224 INFO Connection check task start + +2025-09-24 02:39:45,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:45,224 INFO Out dated connection ,size=0 + +2025-09-24 02:39:45,224 INFO Connection check task end + +2025-09-24 02:39:47,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:48,226 INFO Connection check task start + +2025-09-24 02:39:48,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:48,226 INFO Out dated connection ,size=0 + +2025-09-24 02:39:48,226 INFO Connection check task end + +2025-09-24 02:39:50,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:51,226 INFO Connection check task start + +2025-09-24 02:39:51,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:51,227 INFO Out dated connection ,size=0 + +2025-09-24 02:39:51,227 INFO Connection check task end + +2025-09-24 02:39:53,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:54,227 INFO Connection check task start + +2025-09-24 02:39:54,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:54,227 INFO Out dated connection ,size=0 + +2025-09-24 02:39:54,227 INFO Connection check task end + +2025-09-24 02:39:56,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:39:57,229 INFO Connection check task start + +2025-09-24 02:39:57,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:39:57,229 INFO Out dated connection ,size=0 + +2025-09-24 02:39:57,229 INFO Connection check task end + +2025-09-24 02:39:59,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:00,230 INFO Connection check task start + +2025-09-24 02:40:00,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:00,230 INFO Out dated connection ,size=0 + +2025-09-24 02:40:00,230 INFO Connection check task end + +2025-09-24 02:40:02,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:03,230 INFO Connection check task start + +2025-09-24 02:40:03,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:03,231 INFO Out dated connection ,size=0 + +2025-09-24 02:40:03,231 INFO Connection check task end + +2025-09-24 02:40:05,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:06,231 INFO Connection check task start + +2025-09-24 02:40:06,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:06,231 INFO Out dated connection ,size=0 + +2025-09-24 02:40:06,231 INFO Connection check task end + +2025-09-24 02:40:08,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:09,233 INFO Connection check task start + +2025-09-24 02:40:09,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:09,234 INFO Out dated connection ,size=0 + +2025-09-24 02:40:09,234 INFO Connection check task end + +2025-09-24 02:40:11,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:12,234 INFO Connection check task start + +2025-09-24 02:40:12,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:12,234 INFO Out dated connection ,size=0 + +2025-09-24 02:40:12,234 INFO Connection check task end + +2025-09-24 02:40:14,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:15,236 INFO Connection check task start + +2025-09-24 02:40:15,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:15,236 INFO Out dated connection ,size=0 + +2025-09-24 02:40:15,237 INFO Connection check task end + +2025-09-24 02:40:17,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:18,237 INFO Connection check task start + +2025-09-24 02:40:18,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:18,237 INFO Out dated connection ,size=0 + +2025-09-24 02:40:18,237 INFO Connection check task end + +2025-09-24 02:40:20,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:21,239 INFO Connection check task start + +2025-09-24 02:40:21,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:21,239 INFO Out dated connection ,size=0 + +2025-09-24 02:40:21,239 INFO Connection check task end + +2025-09-24 02:40:24,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:24,240 INFO Connection check task start + +2025-09-24 02:40:24,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:24,240 INFO Out dated connection ,size=0 + +2025-09-24 02:40:24,240 INFO Connection check task end + +2025-09-24 02:40:27,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:27,242 INFO Connection check task start + +2025-09-24 02:40:27,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:27,243 INFO Out dated connection ,size=0 + +2025-09-24 02:40:27,243 INFO Connection check task end + +2025-09-24 02:40:30,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:30,243 INFO Connection check task start + +2025-09-24 02:40:30,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:30,243 INFO Out dated connection ,size=0 + +2025-09-24 02:40:30,243 INFO Connection check task end + +2025-09-24 02:40:33,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:33,243 INFO Connection check task start + +2025-09-24 02:40:33,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:33,244 INFO Out dated connection ,size=0 + +2025-09-24 02:40:33,244 INFO Connection check task end + +2025-09-24 02:40:36,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:36,244 INFO Connection check task start + +2025-09-24 02:40:36,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:36,244 INFO Out dated connection ,size=0 + +2025-09-24 02:40:36,244 INFO Connection check task end + +2025-09-24 02:40:39,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:39,244 INFO Connection check task start + +2025-09-24 02:40:39,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:39,245 INFO Out dated connection ,size=0 + +2025-09-24 02:40:39,245 INFO Connection check task end + +2025-09-24 02:40:42,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:42,245 INFO Connection check task start + +2025-09-24 02:40:42,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:42,245 INFO Out dated connection ,size=0 + +2025-09-24 02:40:42,245 INFO Connection check task end + +2025-09-24 02:40:45,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:45,247 INFO Connection check task start + +2025-09-24 02:40:45,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:45,248 INFO Out dated connection ,size=0 + +2025-09-24 02:40:45,248 INFO Connection check task end + +2025-09-24 02:40:48,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:48,248 INFO Connection check task start + +2025-09-24 02:40:48,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:48,248 INFO Out dated connection ,size=0 + +2025-09-24 02:40:48,248 INFO Connection check task end + +2025-09-24 02:40:51,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:51,249 INFO Connection check task start + +2025-09-24 02:40:51,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:51,249 INFO Out dated connection ,size=0 + +2025-09-24 02:40:51,249 INFO Connection check task end + +2025-09-24 02:40:54,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:54,250 INFO Connection check task start + +2025-09-24 02:40:54,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:54,250 INFO Out dated connection ,size=0 + +2025-09-24 02:40:54,250 INFO Connection check task end + +2025-09-24 02:40:57,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:40:57,251 INFO Connection check task start + +2025-09-24 02:40:57,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:40:57,251 INFO Out dated connection ,size=0 + +2025-09-24 02:40:57,251 INFO Connection check task end + +2025-09-24 02:41:00,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:00,252 INFO Connection check task start + +2025-09-24 02:41:00,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:00,252 INFO Out dated connection ,size=0 + +2025-09-24 02:41:00,252 INFO Connection check task end + +2025-09-24 02:41:03,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:03,253 INFO Connection check task start + +2025-09-24 02:41:03,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:03,253 INFO Out dated connection ,size=0 + +2025-09-24 02:41:03,253 INFO Connection check task end + +2025-09-24 02:41:06,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:06,254 INFO Connection check task start + +2025-09-24 02:41:06,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:06,255 INFO Out dated connection ,size=0 + +2025-09-24 02:41:06,255 INFO Connection check task end + +2025-09-24 02:41:09,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:09,256 INFO Connection check task start + +2025-09-24 02:41:09,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:09,256 INFO Out dated connection ,size=0 + +2025-09-24 02:41:09,256 INFO Connection check task end + +2025-09-24 02:41:12,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:12,258 INFO Connection check task start + +2025-09-24 02:41:12,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:12,259 INFO Out dated connection ,size=0 + +2025-09-24 02:41:12,259 INFO Connection check task end + +2025-09-24 02:41:15,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:15,259 INFO Connection check task start + +2025-09-24 02:41:15,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:15,260 INFO Out dated connection ,size=0 + +2025-09-24 02:41:15,260 INFO Connection check task end + +2025-09-24 02:41:18,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:18,262 INFO Connection check task start + +2025-09-24 02:41:18,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:18,262 INFO Out dated connection ,size=0 + +2025-09-24 02:41:18,262 INFO Connection check task end + +2025-09-24 02:41:21,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:21,262 INFO Connection check task start + +2025-09-24 02:41:21,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:21,262 INFO Out dated connection ,size=0 + +2025-09-24 02:41:21,262 INFO Connection check task end + +2025-09-24 02:41:24,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:24,262 INFO Connection check task start + +2025-09-24 02:41:24,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:24,263 INFO Out dated connection ,size=0 + +2025-09-24 02:41:24,263 INFO Connection check task end + +2025-09-24 02:41:27,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:27,263 INFO Connection check task start + +2025-09-24 02:41:27,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:27,263 INFO Out dated connection ,size=0 + +2025-09-24 02:41:27,263 INFO Connection check task end + +2025-09-24 02:41:30,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:30,263 INFO Connection check task start + +2025-09-24 02:41:30,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:30,264 INFO Out dated connection ,size=0 + +2025-09-24 02:41:30,264 INFO Connection check task end + +2025-09-24 02:41:33,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:33,264 INFO Connection check task start + +2025-09-24 02:41:33,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:33,264 INFO Out dated connection ,size=0 + +2025-09-24 02:41:33,264 INFO Connection check task end + +2025-09-24 02:41:36,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:36,265 INFO Connection check task start + +2025-09-24 02:41:36,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:36,265 INFO Out dated connection ,size=0 + +2025-09-24 02:41:36,265 INFO Connection check task end + +2025-09-24 02:41:39,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:39,266 INFO Connection check task start + +2025-09-24 02:41:39,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:39,266 INFO Out dated connection ,size=0 + +2025-09-24 02:41:39,266 INFO Connection check task end + +2025-09-24 02:41:42,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:42,267 INFO Connection check task start + +2025-09-24 02:41:42,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:42,268 INFO Out dated connection ,size=0 + +2025-09-24 02:41:42,268 INFO Connection check task end + +2025-09-24 02:41:45,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:45,269 INFO Connection check task start + +2025-09-24 02:41:45,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:45,269 INFO Out dated connection ,size=0 + +2025-09-24 02:41:45,269 INFO Connection check task end + +2025-09-24 02:41:48,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:48,270 INFO Connection check task start + +2025-09-24 02:41:48,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:48,270 INFO Out dated connection ,size=0 + +2025-09-24 02:41:48,270 INFO Connection check task end + +2025-09-24 02:41:51,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:51,271 INFO Connection check task start + +2025-09-24 02:41:51,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:51,271 INFO Out dated connection ,size=0 + +2025-09-24 02:41:51,272 INFO Connection check task end + +2025-09-24 02:41:54,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:54,272 INFO Connection check task start + +2025-09-24 02:41:54,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:54,273 INFO Out dated connection ,size=0 + +2025-09-24 02:41:54,273 INFO Connection check task end + +2025-09-24 02:41:57,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:41:57,275 INFO Connection check task start + +2025-09-24 02:41:57,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:41:57,275 INFO Out dated connection ,size=0 + +2025-09-24 02:41:57,275 INFO Connection check task end + +2025-09-24 02:42:00,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:00,276 INFO Connection check task start + +2025-09-24 02:42:00,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:00,276 INFO Out dated connection ,size=0 + +2025-09-24 02:42:00,276 INFO Connection check task end + +2025-09-24 02:42:03,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:03,277 INFO Connection check task start + +2025-09-24 02:42:03,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:03,277 INFO Out dated connection ,size=0 + +2025-09-24 02:42:03,277 INFO Connection check task end + +2025-09-24 02:42:06,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:06,278 INFO Connection check task start + +2025-09-24 02:42:06,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:06,279 INFO Out dated connection ,size=0 + +2025-09-24 02:42:06,279 INFO Connection check task end + +2025-09-24 02:42:09,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:09,280 INFO Connection check task start + +2025-09-24 02:42:09,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:09,280 INFO Out dated connection ,size=0 + +2025-09-24 02:42:09,280 INFO Connection check task end + +2025-09-24 02:42:12,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:12,282 INFO Connection check task start + +2025-09-24 02:42:12,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:12,283 INFO Out dated connection ,size=0 + +2025-09-24 02:42:12,283 INFO Connection check task end + +2025-09-24 02:42:15,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:15,284 INFO Connection check task start + +2025-09-24 02:42:15,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:15,284 INFO Out dated connection ,size=0 + +2025-09-24 02:42:15,284 INFO Connection check task end + +2025-09-24 02:42:18,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:18,284 INFO Connection check task start + +2025-09-24 02:42:18,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:18,284 INFO Out dated connection ,size=0 + +2025-09-24 02:42:18,285 INFO Connection check task end + +2025-09-24 02:42:21,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:21,285 INFO Connection check task start + +2025-09-24 02:42:21,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:21,285 INFO Out dated connection ,size=0 + +2025-09-24 02:42:21,285 INFO Connection check task end + +2025-09-24 02:42:24,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:24,285 INFO Connection check task start + +2025-09-24 02:42:24,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:24,285 INFO Out dated connection ,size=0 + +2025-09-24 02:42:24,285 INFO Connection check task end + +2025-09-24 02:42:27,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:27,286 INFO Connection check task start + +2025-09-24 02:42:27,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:27,286 INFO Out dated connection ,size=0 + +2025-09-24 02:42:27,286 INFO Connection check task end + +2025-09-24 02:42:30,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:30,288 INFO Connection check task start + +2025-09-24 02:42:30,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:30,288 INFO Out dated connection ,size=0 + +2025-09-24 02:42:30,288 INFO Connection check task end + +2025-09-24 02:42:33,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:33,289 INFO Connection check task start + +2025-09-24 02:42:33,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:33,289 INFO Out dated connection ,size=0 + +2025-09-24 02:42:33,289 INFO Connection check task end + +2025-09-24 02:42:36,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:36,289 INFO Connection check task start + +2025-09-24 02:42:36,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:36,289 INFO Out dated connection ,size=0 + +2025-09-24 02:42:36,289 INFO Connection check task end + +2025-09-24 02:42:39,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:39,290 INFO Connection check task start + +2025-09-24 02:42:39,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:39,290 INFO Out dated connection ,size=0 + +2025-09-24 02:42:39,290 INFO Connection check task end + +2025-09-24 02:42:42,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:42,292 INFO Connection check task start + +2025-09-24 02:42:42,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:42,292 INFO Out dated connection ,size=0 + +2025-09-24 02:42:42,292 INFO Connection check task end + +2025-09-24 02:42:45,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:45,293 INFO Connection check task start + +2025-09-24 02:42:45,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:45,293 INFO Out dated connection ,size=0 + +2025-09-24 02:42:45,293 INFO Connection check task end + +2025-09-24 02:42:48,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:48,294 INFO Connection check task start + +2025-09-24 02:42:48,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:48,294 INFO Out dated connection ,size=0 + +2025-09-24 02:42:48,294 INFO Connection check task end + +2025-09-24 02:42:51,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:51,294 INFO Connection check task start + +2025-09-24 02:42:51,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:51,294 INFO Out dated connection ,size=0 + +2025-09-24 02:42:51,294 INFO Connection check task end + +2025-09-24 02:42:54,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:54,296 INFO Connection check task start + +2025-09-24 02:42:54,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:54,297 INFO Out dated connection ,size=0 + +2025-09-24 02:42:54,297 INFO Connection check task end + +2025-09-24 02:42:57,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:42:57,297 INFO Connection check task start + +2025-09-24 02:42:57,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:42:57,297 INFO Out dated connection ,size=0 + +2025-09-24 02:42:57,297 INFO Connection check task end + +2025-09-24 02:43:00,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:00,298 INFO Connection check task start + +2025-09-24 02:43:00,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:00,298 INFO Out dated connection ,size=0 + +2025-09-24 02:43:00,298 INFO Connection check task end + +2025-09-24 02:43:03,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:03,301 INFO Connection check task start + +2025-09-24 02:43:03,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:03,301 INFO Out dated connection ,size=0 + +2025-09-24 02:43:03,301 INFO Connection check task end + +2025-09-24 02:43:06,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:06,303 INFO Connection check task start + +2025-09-24 02:43:06,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:06,303 INFO Out dated connection ,size=0 + +2025-09-24 02:43:06,303 INFO Connection check task end + +2025-09-24 02:43:09,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:09,304 INFO Connection check task start + +2025-09-24 02:43:09,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:09,304 INFO Out dated connection ,size=0 + +2025-09-24 02:43:09,305 INFO Connection check task end + +2025-09-24 02:43:12,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:12,305 INFO Connection check task start + +2025-09-24 02:43:12,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:12,305 INFO Out dated connection ,size=0 + +2025-09-24 02:43:12,305 INFO Connection check task end + +2025-09-24 02:43:15,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:15,306 INFO Connection check task start + +2025-09-24 02:43:15,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:15,306 INFO Out dated connection ,size=0 + +2025-09-24 02:43:15,306 INFO Connection check task end + +2025-09-24 02:43:18,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:18,307 INFO Connection check task start + +2025-09-24 02:43:18,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:18,307 INFO Out dated connection ,size=0 + +2025-09-24 02:43:18,307 INFO Connection check task end + +2025-09-24 02:43:21,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:21,309 INFO Connection check task start + +2025-09-24 02:43:21,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:21,309 INFO Out dated connection ,size=0 + +2025-09-24 02:43:21,309 INFO Connection check task end + +2025-09-24 02:43:24,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:24,310 INFO Connection check task start + +2025-09-24 02:43:24,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:24,310 INFO Out dated connection ,size=0 + +2025-09-24 02:43:24,310 INFO Connection check task end + +2025-09-24 02:43:27,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:27,312 INFO Connection check task start + +2025-09-24 02:43:27,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:27,313 INFO Out dated connection ,size=0 + +2025-09-24 02:43:27,313 INFO Connection check task end + +2025-09-24 02:43:30,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:30,315 INFO Connection check task start + +2025-09-24 02:43:30,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:30,315 INFO Out dated connection ,size=0 + +2025-09-24 02:43:30,315 INFO Connection check task end + +2025-09-24 02:43:33,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:33,317 INFO Connection check task start + +2025-09-24 02:43:33,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:33,317 INFO Out dated connection ,size=0 + +2025-09-24 02:43:33,317 INFO Connection check task end + +2025-09-24 02:43:36,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:36,317 INFO Connection check task start + +2025-09-24 02:43:36,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:36,318 INFO Out dated connection ,size=0 + +2025-09-24 02:43:36,318 INFO Connection check task end + +2025-09-24 02:43:39,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:39,320 INFO Connection check task start + +2025-09-24 02:43:39,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:39,320 INFO Out dated connection ,size=0 + +2025-09-24 02:43:39,320 INFO Connection check task end + +2025-09-24 02:43:42,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:42,321 INFO Connection check task start + +2025-09-24 02:43:42,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:42,321 INFO Out dated connection ,size=0 + +2025-09-24 02:43:42,321 INFO Connection check task end + +2025-09-24 02:43:45,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:45,321 INFO Connection check task start + +2025-09-24 02:43:45,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:45,322 INFO Out dated connection ,size=0 + +2025-09-24 02:43:45,322 INFO Connection check task end + +2025-09-24 02:43:48,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:48,323 INFO Connection check task start + +2025-09-24 02:43:48,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:48,336 INFO Out dated connection ,size=0 + +2025-09-24 02:43:48,336 INFO Connection check task end + +2025-09-24 02:43:51,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:51,338 INFO Connection check task start + +2025-09-24 02:43:51,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:51,338 INFO Out dated connection ,size=0 + +2025-09-24 02:43:51,338 INFO Connection check task end + +2025-09-24 02:43:54,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:54,338 INFO Connection check task start + +2025-09-24 02:43:54,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:54,338 INFO Out dated connection ,size=0 + +2025-09-24 02:43:54,338 INFO Connection check task end + +2025-09-24 02:43:57,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:43:57,341 INFO Connection check task start + +2025-09-24 02:43:57,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:43:57,341 INFO Out dated connection ,size=0 + +2025-09-24 02:43:57,341 INFO Connection check task end + +2025-09-24 02:44:00,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:00,341 INFO Connection check task start + +2025-09-24 02:44:00,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:00,342 INFO Out dated connection ,size=0 + +2025-09-24 02:44:00,342 INFO Connection check task end + +2025-09-24 02:44:03,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:03,342 INFO Connection check task start + +2025-09-24 02:44:03,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:03,343 INFO Out dated connection ,size=0 + +2025-09-24 02:44:03,343 INFO Connection check task end + +2025-09-24 02:44:06,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:06,344 INFO Connection check task start + +2025-09-24 02:44:06,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:06,344 INFO Out dated connection ,size=0 + +2025-09-24 02:44:06,344 INFO Connection check task end + +2025-09-24 02:44:09,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:09,346 INFO Connection check task start + +2025-09-24 02:44:09,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:09,346 INFO Out dated connection ,size=0 + +2025-09-24 02:44:09,346 INFO Connection check task end + +2025-09-24 02:44:12,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:12,346 INFO Connection check task start + +2025-09-24 02:44:12,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:12,347 INFO Out dated connection ,size=0 + +2025-09-24 02:44:12,347 INFO Connection check task end + +2025-09-24 02:44:15,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:15,347 INFO Connection check task start + +2025-09-24 02:44:15,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:15,347 INFO Out dated connection ,size=0 + +2025-09-24 02:44:15,347 INFO Connection check task end + +2025-09-24 02:44:18,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:18,348 INFO Connection check task start + +2025-09-24 02:44:18,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:18,349 INFO Out dated connection ,size=0 + +2025-09-24 02:44:18,349 INFO Connection check task end + +2025-09-24 02:44:21,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:21,349 INFO Connection check task start + +2025-09-24 02:44:21,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:21,349 INFO Out dated connection ,size=0 + +2025-09-24 02:44:21,349 INFO Connection check task end + +2025-09-24 02:44:24,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:24,350 INFO Connection check task start + +2025-09-24 02:44:24,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:24,350 INFO Out dated connection ,size=0 + +2025-09-24 02:44:24,350 INFO Connection check task end + +2025-09-24 02:44:27,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:27,351 INFO Connection check task start + +2025-09-24 02:44:27,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:27,351 INFO Out dated connection ,size=0 + +2025-09-24 02:44:27,351 INFO Connection check task end + +2025-09-24 02:44:30,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:30,352 INFO Connection check task start + +2025-09-24 02:44:30,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:30,352 INFO Out dated connection ,size=0 + +2025-09-24 02:44:30,352 INFO Connection check task end + +2025-09-24 02:44:33,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:33,352 INFO Connection check task start + +2025-09-24 02:44:33,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:33,352 INFO Out dated connection ,size=0 + +2025-09-24 02:44:33,352 INFO Connection check task end + +2025-09-24 02:44:36,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:36,353 INFO Connection check task start + +2025-09-24 02:44:36,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:36,353 INFO Out dated connection ,size=0 + +2025-09-24 02:44:36,353 INFO Connection check task end + +2025-09-24 02:44:39,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:39,354 INFO Connection check task start + +2025-09-24 02:44:39,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:39,354 INFO Out dated connection ,size=0 + +2025-09-24 02:44:39,354 INFO Connection check task end + +2025-09-24 02:44:42,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:42,355 INFO Connection check task start + +2025-09-24 02:44:42,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:42,355 INFO Out dated connection ,size=0 + +2025-09-24 02:44:42,355 INFO Connection check task end + +2025-09-24 02:44:45,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:45,357 INFO Connection check task start + +2025-09-24 02:44:45,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:45,357 INFO Out dated connection ,size=0 + +2025-09-24 02:44:45,357 INFO Connection check task end + +2025-09-24 02:44:48,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:48,358 INFO Connection check task start + +2025-09-24 02:44:48,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:48,358 INFO Out dated connection ,size=0 + +2025-09-24 02:44:48,358 INFO Connection check task end + +2025-09-24 02:44:51,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:51,360 INFO Connection check task start + +2025-09-24 02:44:51,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:51,361 INFO Out dated connection ,size=0 + +2025-09-24 02:44:51,361 INFO Connection check task end + +2025-09-24 02:44:54,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:54,361 INFO Connection check task start + +2025-09-24 02:44:54,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:54,361 INFO Out dated connection ,size=0 + +2025-09-24 02:44:54,361 INFO Connection check task end + +2025-09-24 02:44:57,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:44:57,362 INFO Connection check task start + +2025-09-24 02:44:57,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:44:57,362 INFO Out dated connection ,size=0 + +2025-09-24 02:44:57,362 INFO Connection check task end + +2025-09-24 02:45:00,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:00,364 INFO Connection check task start + +2025-09-24 02:45:00,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:00,364 INFO Out dated connection ,size=0 + +2025-09-24 02:45:00,364 INFO Connection check task end + +2025-09-24 02:45:03,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:03,364 INFO Connection check task start + +2025-09-24 02:45:03,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:03,365 INFO Out dated connection ,size=0 + +2025-09-24 02:45:03,365 INFO Connection check task end + +2025-09-24 02:45:06,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:06,366 INFO Connection check task start + +2025-09-24 02:45:06,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:06,367 INFO Out dated connection ,size=0 + +2025-09-24 02:45:06,367 INFO Connection check task end + +2025-09-24 02:45:09,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:09,367 INFO Connection check task start + +2025-09-24 02:45:09,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:09,367 INFO Out dated connection ,size=0 + +2025-09-24 02:45:09,367 INFO Connection check task end + +2025-09-24 02:45:12,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:12,368 INFO Connection check task start + +2025-09-24 02:45:12,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:12,368 INFO Out dated connection ,size=0 + +2025-09-24 02:45:12,368 INFO Connection check task end + +2025-09-24 02:45:15,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:15,370 INFO Connection check task start + +2025-09-24 02:45:15,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:15,370 INFO Out dated connection ,size=0 + +2025-09-24 02:45:15,370 INFO Connection check task end + +2025-09-24 02:45:18,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:18,371 INFO Connection check task start + +2025-09-24 02:45:18,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:18,371 INFO Out dated connection ,size=0 + +2025-09-24 02:45:18,371 INFO Connection check task end + +2025-09-24 02:45:21,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:21,373 INFO Connection check task start + +2025-09-24 02:45:21,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:21,373 INFO Out dated connection ,size=0 + +2025-09-24 02:45:21,373 INFO Connection check task end + +2025-09-24 02:45:24,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:24,375 INFO Connection check task start + +2025-09-24 02:45:24,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:24,375 INFO Out dated connection ,size=0 + +2025-09-24 02:45:24,375 INFO Connection check task end + +2025-09-24 02:45:27,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:27,376 INFO Connection check task start + +2025-09-24 02:45:27,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:27,376 INFO Out dated connection ,size=0 + +2025-09-24 02:45:27,376 INFO Connection check task end + +2025-09-24 02:45:30,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:30,376 INFO Connection check task start + +2025-09-24 02:45:30,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:30,376 INFO Out dated connection ,size=0 + +2025-09-24 02:45:30,376 INFO Connection check task end + +2025-09-24 02:45:33,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:33,377 INFO Connection check task start + +2025-09-24 02:45:33,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:33,377 INFO Out dated connection ,size=0 + +2025-09-24 02:45:33,377 INFO Connection check task end + +2025-09-24 02:45:36,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:36,377 INFO Connection check task start + +2025-09-24 02:45:36,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:36,378 INFO Out dated connection ,size=0 + +2025-09-24 02:45:36,378 INFO Connection check task end + +2025-09-24 02:45:39,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:39,379 INFO Connection check task start + +2025-09-24 02:45:39,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:39,380 INFO Out dated connection ,size=0 + +2025-09-24 02:45:39,380 INFO Connection check task end + +2025-09-24 02:45:42,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:42,381 INFO Connection check task start + +2025-09-24 02:45:42,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:42,381 INFO Out dated connection ,size=0 + +2025-09-24 02:45:42,381 INFO Connection check task end + +2025-09-24 02:45:45,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:45,382 INFO Connection check task start + +2025-09-24 02:45:45,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:45,382 INFO Out dated connection ,size=0 + +2025-09-24 02:45:45,382 INFO Connection check task end + +2025-09-24 02:45:48,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:48,383 INFO Connection check task start + +2025-09-24 02:45:48,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:48,383 INFO Out dated connection ,size=0 + +2025-09-24 02:45:48,383 INFO Connection check task end + +2025-09-24 02:45:51,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:51,385 INFO Connection check task start + +2025-09-24 02:45:51,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:51,386 INFO Out dated connection ,size=0 + +2025-09-24 02:45:51,386 INFO Connection check task end + +2025-09-24 02:45:54,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:54,386 INFO Connection check task start + +2025-09-24 02:45:54,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:54,386 INFO Out dated connection ,size=0 + +2025-09-24 02:45:54,386 INFO Connection check task end + +2025-09-24 02:45:57,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:45:57,387 INFO Connection check task start + +2025-09-24 02:45:57,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:45:57,387 INFO Out dated connection ,size=0 + +2025-09-24 02:45:57,387 INFO Connection check task end + +2025-09-24 02:46:00,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:00,389 INFO Connection check task start + +2025-09-24 02:46:00,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:00,389 INFO Out dated connection ,size=0 + +2025-09-24 02:46:00,389 INFO Connection check task end + +2025-09-24 02:46:03,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:03,389 INFO Connection check task start + +2025-09-24 02:46:03,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:03,390 INFO Out dated connection ,size=0 + +2025-09-24 02:46:03,390 INFO Connection check task end + +2025-09-24 02:46:06,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:06,391 INFO Connection check task start + +2025-09-24 02:46:06,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:06,391 INFO Out dated connection ,size=0 + +2025-09-24 02:46:06,391 INFO Connection check task end + +2025-09-24 02:46:09,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:09,391 INFO Connection check task start + +2025-09-24 02:46:09,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:09,392 INFO Out dated connection ,size=0 + +2025-09-24 02:46:09,392 INFO Connection check task end + +2025-09-24 02:46:12,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:12,392 INFO Connection check task start + +2025-09-24 02:46:12,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:12,392 INFO Out dated connection ,size=0 + +2025-09-24 02:46:12,392 INFO Connection check task end + +2025-09-24 02:46:15,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:15,393 INFO Connection check task start + +2025-09-24 02:46:15,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:15,393 INFO Out dated connection ,size=0 + +2025-09-24 02:46:15,393 INFO Connection check task end + +2025-09-24 02:46:18,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:18,395 INFO Connection check task start + +2025-09-24 02:46:18,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:18,395 INFO Out dated connection ,size=0 + +2025-09-24 02:46:18,395 INFO Connection check task end + +2025-09-24 02:46:21,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:21,395 INFO Connection check task start + +2025-09-24 02:46:21,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:21,395 INFO Out dated connection ,size=0 + +2025-09-24 02:46:21,395 INFO Connection check task end + +2025-09-24 02:46:24,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:24,395 INFO Connection check task start + +2025-09-24 02:46:24,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:24,396 INFO Out dated connection ,size=0 + +2025-09-24 02:46:24,396 INFO Connection check task end + +2025-09-24 02:46:27,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:27,397 INFO Connection check task start + +2025-09-24 02:46:27,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:27,397 INFO Out dated connection ,size=0 + +2025-09-24 02:46:27,397 INFO Connection check task end + +2025-09-24 02:46:30,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:30,398 INFO Connection check task start + +2025-09-24 02:46:30,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:30,398 INFO Out dated connection ,size=0 + +2025-09-24 02:46:30,398 INFO Connection check task end + +2025-09-24 02:46:33,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:33,398 INFO Connection check task start + +2025-09-24 02:46:33,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:33,398 INFO Out dated connection ,size=0 + +2025-09-24 02:46:33,398 INFO Connection check task end + +2025-09-24 02:46:36,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:36,400 INFO Connection check task start + +2025-09-24 02:46:36,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:36,400 INFO Out dated connection ,size=0 + +2025-09-24 02:46:36,400 INFO Connection check task end + +2025-09-24 02:46:39,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:39,400 INFO Connection check task start + +2025-09-24 02:46:39,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:39,401 INFO Out dated connection ,size=0 + +2025-09-24 02:46:39,401 INFO Connection check task end + +2025-09-24 02:46:42,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:42,402 INFO Connection check task start + +2025-09-24 02:46:42,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:42,402 INFO Out dated connection ,size=0 + +2025-09-24 02:46:42,402 INFO Connection check task end + +2025-09-24 02:46:45,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:45,403 INFO Connection check task start + +2025-09-24 02:46:45,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:45,403 INFO Out dated connection ,size=0 + +2025-09-24 02:46:45,403 INFO Connection check task end + +2025-09-24 02:46:48,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:48,403 INFO Connection check task start + +2025-09-24 02:46:48,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:48,404 INFO Out dated connection ,size=0 + +2025-09-24 02:46:48,404 INFO Connection check task end + +2025-09-24 02:46:51,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:51,404 INFO Connection check task start + +2025-09-24 02:46:51,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:51,404 INFO Out dated connection ,size=0 + +2025-09-24 02:46:51,404 INFO Connection check task end + +2025-09-24 02:46:54,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:54,405 INFO Connection check task start + +2025-09-24 02:46:54,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:54,405 INFO Out dated connection ,size=0 + +2025-09-24 02:46:54,405 INFO Connection check task end + +2025-09-24 02:46:57,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:46:57,408 INFO Connection check task start + +2025-09-24 02:46:57,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:46:57,408 INFO Out dated connection ,size=0 + +2025-09-24 02:46:57,408 INFO Connection check task end + +2025-09-24 02:47:00,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:00,409 INFO Connection check task start + +2025-09-24 02:47:00,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:00,409 INFO Out dated connection ,size=0 + +2025-09-24 02:47:00,409 INFO Connection check task end + +2025-09-24 02:47:03,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:03,410 INFO Connection check task start + +2025-09-24 02:47:03,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:03,411 INFO Out dated connection ,size=0 + +2025-09-24 02:47:03,411 INFO Connection check task end + +2025-09-24 02:47:06,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:06,412 INFO Connection check task start + +2025-09-24 02:47:06,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:06,412 INFO Out dated connection ,size=0 + +2025-09-24 02:47:06,412 INFO Connection check task end + +2025-09-24 02:47:09,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:09,413 INFO Connection check task start + +2025-09-24 02:47:09,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:09,413 INFO Out dated connection ,size=0 + +2025-09-24 02:47:09,413 INFO Connection check task end + +2025-09-24 02:47:12,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:12,414 INFO Connection check task start + +2025-09-24 02:47:12,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:12,414 INFO Out dated connection ,size=0 + +2025-09-24 02:47:12,415 INFO Connection check task end + +2025-09-24 02:47:15,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:15,416 INFO Connection check task start + +2025-09-24 02:47:15,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:15,416 INFO Out dated connection ,size=0 + +2025-09-24 02:47:15,416 INFO Connection check task end + +2025-09-24 02:47:18,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:18,417 INFO Connection check task start + +2025-09-24 02:47:18,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:18,417 INFO Out dated connection ,size=0 + +2025-09-24 02:47:18,417 INFO Connection check task end + +2025-09-24 02:47:21,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:21,419 INFO Connection check task start + +2025-09-24 02:47:21,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:21,419 INFO Out dated connection ,size=0 + +2025-09-24 02:47:21,419 INFO Connection check task end + +2025-09-24 02:47:24,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:24,421 INFO Connection check task start + +2025-09-24 02:47:24,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:24,421 INFO Out dated connection ,size=0 + +2025-09-24 02:47:24,421 INFO Connection check task end + +2025-09-24 02:47:27,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:27,423 INFO Connection check task start + +2025-09-24 02:47:27,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:27,423 INFO Out dated connection ,size=0 + +2025-09-24 02:47:27,423 INFO Connection check task end + +2025-09-24 02:47:30,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:30,423 INFO Connection check task start + +2025-09-24 02:47:30,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:30,424 INFO Out dated connection ,size=0 + +2025-09-24 02:47:30,424 INFO Connection check task end + +2025-09-24 02:47:33,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:33,426 INFO Connection check task start + +2025-09-24 02:47:33,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:33,426 INFO Out dated connection ,size=0 + +2025-09-24 02:47:33,426 INFO Connection check task end + +2025-09-24 02:47:36,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:36,428 INFO Connection check task start + +2025-09-24 02:47:36,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:36,428 INFO Out dated connection ,size=0 + +2025-09-24 02:47:36,428 INFO Connection check task end + +2025-09-24 02:47:39,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:39,428 INFO Connection check task start + +2025-09-24 02:47:39,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:39,429 INFO Out dated connection ,size=0 + +2025-09-24 02:47:39,429 INFO Connection check task end + +2025-09-24 02:47:42,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:42,430 INFO Connection check task start + +2025-09-24 02:47:42,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:42,430 INFO Out dated connection ,size=0 + +2025-09-24 02:47:42,431 INFO Connection check task end + +2025-09-24 02:47:45,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:45,431 INFO Connection check task start + +2025-09-24 02:47:45,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:45,431 INFO Out dated connection ,size=0 + +2025-09-24 02:47:45,431 INFO Connection check task end + +2025-09-24 02:47:48,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:48,433 INFO Connection check task start + +2025-09-24 02:47:48,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:48,433 INFO Out dated connection ,size=0 + +2025-09-24 02:47:48,434 INFO Connection check task end + +2025-09-24 02:47:51,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:51,436 INFO Connection check task start + +2025-09-24 02:47:51,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:51,436 INFO Out dated connection ,size=0 + +2025-09-24 02:47:51,436 INFO Connection check task end + +2025-09-24 02:47:54,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:54,437 INFO Connection check task start + +2025-09-24 02:47:54,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:54,437 INFO Out dated connection ,size=0 + +2025-09-24 02:47:54,437 INFO Connection check task end + +2025-09-24 02:47:57,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:47:57,439 INFO Connection check task start + +2025-09-24 02:47:57,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:47:57,439 INFO Out dated connection ,size=0 + +2025-09-24 02:47:57,439 INFO Connection check task end + +2025-09-24 02:48:00,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:00,440 INFO Connection check task start + +2025-09-24 02:48:00,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:00,440 INFO Out dated connection ,size=0 + +2025-09-24 02:48:00,440 INFO Connection check task end + +2025-09-24 02:48:03,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:03,441 INFO Connection check task start + +2025-09-24 02:48:03,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:03,442 INFO Out dated connection ,size=0 + +2025-09-24 02:48:03,442 INFO Connection check task end + +2025-09-24 02:48:06,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:06,443 INFO Connection check task start + +2025-09-24 02:48:06,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:06,444 INFO Out dated connection ,size=0 + +2025-09-24 02:48:06,444 INFO Connection check task end + +2025-09-24 02:48:09,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:09,444 INFO Connection check task start + +2025-09-24 02:48:09,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:09,444 INFO Out dated connection ,size=0 + +2025-09-24 02:48:09,444 INFO Connection check task end + +2025-09-24 02:48:12,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:12,446 INFO Connection check task start + +2025-09-24 02:48:12,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:12,446 INFO Out dated connection ,size=0 + +2025-09-24 02:48:12,446 INFO Connection check task end + +2025-09-24 02:48:15,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:15,447 INFO Connection check task start + +2025-09-24 02:48:15,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:15,447 INFO Out dated connection ,size=0 + +2025-09-24 02:48:15,447 INFO Connection check task end + +2025-09-24 02:48:18,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:18,449 INFO Connection check task start + +2025-09-24 02:48:18,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:18,449 INFO Out dated connection ,size=0 + +2025-09-24 02:48:18,449 INFO Connection check task end + +2025-09-24 02:48:21,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:21,451 INFO Connection check task start + +2025-09-24 02:48:21,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:21,451 INFO Out dated connection ,size=0 + +2025-09-24 02:48:21,451 INFO Connection check task end + +2025-09-24 02:48:24,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:24,453 INFO Connection check task start + +2025-09-24 02:48:24,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:24,454 INFO Out dated connection ,size=0 + +2025-09-24 02:48:24,454 INFO Connection check task end + +2025-09-24 02:48:27,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:27,455 INFO Connection check task start + +2025-09-24 02:48:27,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:27,455 INFO Out dated connection ,size=0 + +2025-09-24 02:48:27,455 INFO Connection check task end + +2025-09-24 02:48:30,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:30,455 INFO Connection check task start + +2025-09-24 02:48:30,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:30,455 INFO Out dated connection ,size=0 + +2025-09-24 02:48:30,455 INFO Connection check task end + +2025-09-24 02:48:33,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:33,455 INFO Connection check task start + +2025-09-24 02:48:33,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:33,456 INFO Out dated connection ,size=0 + +2025-09-24 02:48:33,456 INFO Connection check task end + +2025-09-24 02:48:36,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:36,457 INFO Connection check task start + +2025-09-24 02:48:36,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:36,458 INFO Out dated connection ,size=0 + +2025-09-24 02:48:36,458 INFO Connection check task end + +2025-09-24 02:48:39,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:39,460 INFO Connection check task start + +2025-09-24 02:48:39,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:39,460 INFO Out dated connection ,size=0 + +2025-09-24 02:48:39,460 INFO Connection check task end + +2025-09-24 02:48:42,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:42,462 INFO Connection check task start + +2025-09-24 02:48:42,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:42,462 INFO Out dated connection ,size=0 + +2025-09-24 02:48:42,462 INFO Connection check task end + +2025-09-24 02:48:45,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:45,464 INFO Connection check task start + +2025-09-24 02:48:45,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:45,465 INFO Out dated connection ,size=0 + +2025-09-24 02:48:45,465 INFO Connection check task end + +2025-09-24 02:48:48,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:48,466 INFO Connection check task start + +2025-09-24 02:48:48,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:48,466 INFO Out dated connection ,size=0 + +2025-09-24 02:48:48,466 INFO Connection check task end + +2025-09-24 02:48:51,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:51,468 INFO Connection check task start + +2025-09-24 02:48:51,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:51,468 INFO Out dated connection ,size=0 + +2025-09-24 02:48:51,468 INFO Connection check task end + +2025-09-24 02:48:54,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:54,469 INFO Connection check task start + +2025-09-24 02:48:54,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:54,469 INFO Out dated connection ,size=0 + +2025-09-24 02:48:54,469 INFO Connection check task end + +2025-09-24 02:48:57,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:48:57,469 INFO Connection check task start + +2025-09-24 02:48:57,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:48:57,470 INFO Out dated connection ,size=0 + +2025-09-24 02:48:57,470 INFO Connection check task end + +2025-09-24 02:49:00,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:00,471 INFO Connection check task start + +2025-09-24 02:49:00,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:00,471 INFO Out dated connection ,size=0 + +2025-09-24 02:49:00,471 INFO Connection check task end + +2025-09-24 02:49:03,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:03,471 INFO Connection check task start + +2025-09-24 02:49:03,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:03,472 INFO Out dated connection ,size=0 + +2025-09-24 02:49:03,472 INFO Connection check task end + +2025-09-24 02:49:06,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:06,474 INFO Connection check task start + +2025-09-24 02:49:06,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:06,474 INFO Out dated connection ,size=0 + +2025-09-24 02:49:06,474 INFO Connection check task end + +2025-09-24 02:49:09,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:09,474 INFO Connection check task start + +2025-09-24 02:49:09,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:09,475 INFO Out dated connection ,size=0 + +2025-09-24 02:49:09,475 INFO Connection check task end + +2025-09-24 02:49:12,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:12,475 INFO Connection check task start + +2025-09-24 02:49:12,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:12,475 INFO Out dated connection ,size=0 + +2025-09-24 02:49:12,475 INFO Connection check task end + +2025-09-24 02:49:15,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:15,475 INFO Connection check task start + +2025-09-24 02:49:15,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:15,476 INFO Out dated connection ,size=0 + +2025-09-24 02:49:15,476 INFO Connection check task end + +2025-09-24 02:49:18,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:18,476 INFO Connection check task start + +2025-09-24 02:49:18,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:18,476 INFO Out dated connection ,size=0 + +2025-09-24 02:49:18,476 INFO Connection check task end + +2025-09-24 02:49:21,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:21,477 INFO Connection check task start + +2025-09-24 02:49:21,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:21,477 INFO Out dated connection ,size=0 + +2025-09-24 02:49:21,477 INFO Connection check task end + +2025-09-24 02:49:24,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:24,478 INFO Connection check task start + +2025-09-24 02:49:24,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:24,478 INFO Out dated connection ,size=0 + +2025-09-24 02:49:24,478 INFO Connection check task end + +2025-09-24 02:49:27,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:27,480 INFO Connection check task start + +2025-09-24 02:49:27,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:27,480 INFO Out dated connection ,size=0 + +2025-09-24 02:49:27,481 INFO Connection check task end + +2025-09-24 02:49:30,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:30,481 INFO Connection check task start + +2025-09-24 02:49:30,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:30,481 INFO Out dated connection ,size=0 + +2025-09-24 02:49:30,481 INFO Connection check task end + +2025-09-24 02:49:33,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:33,483 INFO Connection check task start + +2025-09-24 02:49:33,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:33,483 INFO Out dated connection ,size=0 + +2025-09-24 02:49:33,483 INFO Connection check task end + +2025-09-24 02:49:36,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:36,484 INFO Connection check task start + +2025-09-24 02:49:36,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:36,484 INFO Out dated connection ,size=0 + +2025-09-24 02:49:36,484 INFO Connection check task end + +2025-09-24 02:49:39,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:39,485 INFO Connection check task start + +2025-09-24 02:49:39,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:39,485 INFO Out dated connection ,size=0 + +2025-09-24 02:49:39,485 INFO Connection check task end + +2025-09-24 02:49:42,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:42,485 INFO Connection check task start + +2025-09-24 02:49:42,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:42,485 INFO Out dated connection ,size=0 + +2025-09-24 02:49:42,485 INFO Connection check task end + +2025-09-24 02:49:45,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:45,487 INFO Connection check task start + +2025-09-24 02:49:45,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:45,487 INFO Out dated connection ,size=0 + +2025-09-24 02:49:45,487 INFO Connection check task end + +2025-09-24 02:49:48,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:48,489 INFO Connection check task start + +2025-09-24 02:49:48,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:48,489 INFO Out dated connection ,size=0 + +2025-09-24 02:49:48,489 INFO Connection check task end + +2025-09-24 02:49:51,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:51,491 INFO Connection check task start + +2025-09-24 02:49:51,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:51,492 INFO Out dated connection ,size=0 + +2025-09-24 02:49:51,492 INFO Connection check task end + +2025-09-24 02:49:54,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:54,492 INFO Connection check task start + +2025-09-24 02:49:54,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:54,492 INFO Out dated connection ,size=0 + +2025-09-24 02:49:54,492 INFO Connection check task end + +2025-09-24 02:49:57,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:49:57,493 INFO Connection check task start + +2025-09-24 02:49:57,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:49:57,493 INFO Out dated connection ,size=0 + +2025-09-24 02:49:57,493 INFO Connection check task end + +2025-09-24 02:50:00,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:00,495 INFO Connection check task start + +2025-09-24 02:50:00,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:00,495 INFO Out dated connection ,size=0 + +2025-09-24 02:50:00,495 INFO Connection check task end + +2025-09-24 02:50:03,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:03,497 INFO Connection check task start + +2025-09-24 02:50:03,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:03,497 INFO Out dated connection ,size=0 + +2025-09-24 02:50:03,497 INFO Connection check task end + +2025-09-24 02:50:06,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:06,498 INFO Connection check task start + +2025-09-24 02:50:06,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:06,498 INFO Out dated connection ,size=0 + +2025-09-24 02:50:06,498 INFO Connection check task end + +2025-09-24 02:50:09,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:09,499 INFO Connection check task start + +2025-09-24 02:50:09,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:09,500 INFO Out dated connection ,size=0 + +2025-09-24 02:50:09,500 INFO Connection check task end + +2025-09-24 02:50:12,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:12,501 INFO Connection check task start + +2025-09-24 02:50:12,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:12,501 INFO Out dated connection ,size=0 + +2025-09-24 02:50:12,501 INFO Connection check task end + +2025-09-24 02:50:15,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:15,503 INFO Connection check task start + +2025-09-24 02:50:15,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:15,503 INFO Out dated connection ,size=0 + +2025-09-24 02:50:15,503 INFO Connection check task end + +2025-09-24 02:50:18,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:18,504 INFO Connection check task start + +2025-09-24 02:50:18,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:18,505 INFO Out dated connection ,size=0 + +2025-09-24 02:50:18,505 INFO Connection check task end + +2025-09-24 02:50:21,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:21,505 INFO Connection check task start + +2025-09-24 02:50:21,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:21,505 INFO Out dated connection ,size=0 + +2025-09-24 02:50:21,505 INFO Connection check task end + +2025-09-24 02:50:24,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:24,506 INFO Connection check task start + +2025-09-24 02:50:24,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:24,506 INFO Out dated connection ,size=0 + +2025-09-24 02:50:24,506 INFO Connection check task end + +2025-09-24 02:50:27,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:27,507 INFO Connection check task start + +2025-09-24 02:50:27,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:27,507 INFO Out dated connection ,size=0 + +2025-09-24 02:50:27,507 INFO Connection check task end + +2025-09-24 02:50:30,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:30,507 INFO Connection check task start + +2025-09-24 02:50:30,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:30,507 INFO Out dated connection ,size=0 + +2025-09-24 02:50:30,507 INFO Connection check task end + +2025-09-24 02:50:33,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:33,509 INFO Connection check task start + +2025-09-24 02:50:33,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:33,510 INFO Out dated connection ,size=0 + +2025-09-24 02:50:33,510 INFO Connection check task end + +2025-09-24 02:50:36,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:36,511 INFO Connection check task start + +2025-09-24 02:50:36,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:36,512 INFO Out dated connection ,size=0 + +2025-09-24 02:50:36,512 INFO Connection check task end + +2025-09-24 02:50:39,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:39,513 INFO Connection check task start + +2025-09-24 02:50:39,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:39,514 INFO Out dated connection ,size=0 + +2025-09-24 02:50:39,514 INFO Connection check task end + +2025-09-24 02:50:42,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:42,514 INFO Connection check task start + +2025-09-24 02:50:42,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:42,514 INFO Out dated connection ,size=0 + +2025-09-24 02:50:42,514 INFO Connection check task end + +2025-09-24 02:50:45,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:45,516 INFO Connection check task start + +2025-09-24 02:50:45,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:45,516 INFO Out dated connection ,size=0 + +2025-09-24 02:50:45,516 INFO Connection check task end + +2025-09-24 02:50:48,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:48,517 INFO Connection check task start + +2025-09-24 02:50:48,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:48,517 INFO Out dated connection ,size=0 + +2025-09-24 02:50:48,517 INFO Connection check task end + +2025-09-24 02:50:51,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:51,517 INFO Connection check task start + +2025-09-24 02:50:51,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:51,518 INFO Out dated connection ,size=0 + +2025-09-24 02:50:51,518 INFO Connection check task end + +2025-09-24 02:50:54,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:54,519 INFO Connection check task start + +2025-09-24 02:50:54,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:54,519 INFO Out dated connection ,size=0 + +2025-09-24 02:50:54,519 INFO Connection check task end + +2025-09-24 02:50:57,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:50:57,520 INFO Connection check task start + +2025-09-24 02:50:57,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:50:57,520 INFO Out dated connection ,size=0 + +2025-09-24 02:50:57,520 INFO Connection check task end + +2025-09-24 02:51:00,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:00,520 INFO Connection check task start + +2025-09-24 02:51:00,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:00,521 INFO Out dated connection ,size=0 + +2025-09-24 02:51:00,521 INFO Connection check task end + +2025-09-24 02:51:03,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:03,521 INFO Connection check task start + +2025-09-24 02:51:03,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:03,521 INFO Out dated connection ,size=0 + +2025-09-24 02:51:03,521 INFO Connection check task end + +2025-09-24 02:51:06,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:06,522 INFO Connection check task start + +2025-09-24 02:51:06,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:06,522 INFO Out dated connection ,size=0 + +2025-09-24 02:51:06,522 INFO Connection check task end + +2025-09-24 02:51:09,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:09,523 INFO Connection check task start + +2025-09-24 02:51:09,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:09,523 INFO Out dated connection ,size=0 + +2025-09-24 02:51:09,523 INFO Connection check task end + +2025-09-24 02:51:12,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:12,525 INFO Connection check task start + +2025-09-24 02:51:12,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:12,525 INFO Out dated connection ,size=0 + +2025-09-24 02:51:12,525 INFO Connection check task end + +2025-09-24 02:51:15,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:15,526 INFO Connection check task start + +2025-09-24 02:51:15,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:15,526 INFO Out dated connection ,size=0 + +2025-09-24 02:51:15,526 INFO Connection check task end + +2025-09-24 02:51:18,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:18,526 INFO Connection check task start + +2025-09-24 02:51:18,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:18,526 INFO Out dated connection ,size=0 + +2025-09-24 02:51:18,526 INFO Connection check task end + +2025-09-24 02:51:21,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:21,528 INFO Connection check task start + +2025-09-24 02:51:21,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:21,528 INFO Out dated connection ,size=0 + +2025-09-24 02:51:21,528 INFO Connection check task end + +2025-09-24 02:51:24,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:24,529 INFO Connection check task start + +2025-09-24 02:51:24,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:24,529 INFO Out dated connection ,size=0 + +2025-09-24 02:51:24,529 INFO Connection check task end + +2025-09-24 02:51:27,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:27,529 INFO Connection check task start + +2025-09-24 02:51:27,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:27,529 INFO Out dated connection ,size=0 + +2025-09-24 02:51:27,529 INFO Connection check task end + +2025-09-24 02:51:30,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:30,530 INFO Connection check task start + +2025-09-24 02:51:30,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:30,530 INFO Out dated connection ,size=0 + +2025-09-24 02:51:30,530 INFO Connection check task end + +2025-09-24 02:51:33,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:33,531 INFO Connection check task start + +2025-09-24 02:51:33,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:33,532 INFO Out dated connection ,size=0 + +2025-09-24 02:51:33,532 INFO Connection check task end + +2025-09-24 02:51:36,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:36,533 INFO Connection check task start + +2025-09-24 02:51:36,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:36,533 INFO Out dated connection ,size=0 + +2025-09-24 02:51:36,533 INFO Connection check task end + +2025-09-24 02:51:39,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:39,535 INFO Connection check task start + +2025-09-24 02:51:39,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:39,535 INFO Out dated connection ,size=0 + +2025-09-24 02:51:39,535 INFO Connection check task end + +2025-09-24 02:51:42,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:42,536 INFO Connection check task start + +2025-09-24 02:51:42,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:42,536 INFO Out dated connection ,size=0 + +2025-09-24 02:51:42,536 INFO Connection check task end + +2025-09-24 02:51:45,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:45,537 INFO Connection check task start + +2025-09-24 02:51:45,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:45,537 INFO Out dated connection ,size=0 + +2025-09-24 02:51:45,537 INFO Connection check task end + +2025-09-24 02:51:48,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:48,537 INFO Connection check task start + +2025-09-24 02:51:48,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:48,537 INFO Out dated connection ,size=0 + +2025-09-24 02:51:48,538 INFO Connection check task end + +2025-09-24 02:51:51,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:51,538 INFO Connection check task start + +2025-09-24 02:51:51,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:51,538 INFO Out dated connection ,size=0 + +2025-09-24 02:51:51,538 INFO Connection check task end + +2025-09-24 02:51:54,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:54,539 INFO Connection check task start + +2025-09-24 02:51:54,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:54,539 INFO Out dated connection ,size=0 + +2025-09-24 02:51:54,539 INFO Connection check task end + +2025-09-24 02:51:57,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:51:57,541 INFO Connection check task start + +2025-09-24 02:51:57,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:51:57,541 INFO Out dated connection ,size=0 + +2025-09-24 02:51:57,541 INFO Connection check task end + +2025-09-24 02:52:00,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:00,542 INFO Connection check task start + +2025-09-24 02:52:00,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:00,542 INFO Out dated connection ,size=0 + +2025-09-24 02:52:00,542 INFO Connection check task end + +2025-09-24 02:52:03,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:03,542 INFO Connection check task start + +2025-09-24 02:52:03,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:03,542 INFO Out dated connection ,size=0 + +2025-09-24 02:52:03,543 INFO Connection check task end + +2025-09-24 02:52:06,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:06,545 INFO Connection check task start + +2025-09-24 02:52:06,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:06,545 INFO Out dated connection ,size=0 + +2025-09-24 02:52:06,545 INFO Connection check task end + +2025-09-24 02:52:09,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:09,547 INFO Connection check task start + +2025-09-24 02:52:09,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:09,547 INFO Out dated connection ,size=0 + +2025-09-24 02:52:09,547 INFO Connection check task end + +2025-09-24 02:52:12,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:12,549 INFO Connection check task start + +2025-09-24 02:52:12,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:12,549 INFO Out dated connection ,size=0 + +2025-09-24 02:52:12,549 INFO Connection check task end + +2025-09-24 02:52:15,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:15,549 INFO Connection check task start + +2025-09-24 02:52:15,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:15,549 INFO Out dated connection ,size=0 + +2025-09-24 02:52:15,549 INFO Connection check task end + +2025-09-24 02:52:18,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:18,550 INFO Connection check task start + +2025-09-24 02:52:18,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:18,550 INFO Out dated connection ,size=0 + +2025-09-24 02:52:18,550 INFO Connection check task end + +2025-09-24 02:52:21,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:21,552 INFO Connection check task start + +2025-09-24 02:52:21,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:21,552 INFO Out dated connection ,size=0 + +2025-09-24 02:52:21,552 INFO Connection check task end + +2025-09-24 02:52:24,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:24,552 INFO Connection check task start + +2025-09-24 02:52:24,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:24,552 INFO Out dated connection ,size=0 + +2025-09-24 02:52:24,552 INFO Connection check task end + +2025-09-24 02:52:27,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:27,553 INFO Connection check task start + +2025-09-24 02:52:27,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:27,553 INFO Out dated connection ,size=0 + +2025-09-24 02:52:27,553 INFO Connection check task end + +2025-09-24 02:52:30,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:30,555 INFO Connection check task start + +2025-09-24 02:52:30,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:30,555 INFO Out dated connection ,size=0 + +2025-09-24 02:52:30,555 INFO Connection check task end + +2025-09-24 02:52:33,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:33,555 INFO Connection check task start + +2025-09-24 02:52:33,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:33,556 INFO Out dated connection ,size=0 + +2025-09-24 02:52:33,556 INFO Connection check task end + +2025-09-24 02:52:36,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:36,556 INFO Connection check task start + +2025-09-24 02:52:36,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:36,556 INFO Out dated connection ,size=0 + +2025-09-24 02:52:36,557 INFO Connection check task end + +2025-09-24 02:52:39,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:39,558 INFO Connection check task start + +2025-09-24 02:52:39,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:39,558 INFO Out dated connection ,size=0 + +2025-09-24 02:52:39,558 INFO Connection check task end + +2025-09-24 02:52:42,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:42,559 INFO Connection check task start + +2025-09-24 02:52:42,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:42,559 INFO Out dated connection ,size=0 + +2025-09-24 02:52:42,559 INFO Connection check task end + +2025-09-24 02:52:45,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:45,561 INFO Connection check task start + +2025-09-24 02:52:45,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:45,561 INFO Out dated connection ,size=0 + +2025-09-24 02:52:45,561 INFO Connection check task end + +2025-09-24 02:52:48,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:48,563 INFO Connection check task start + +2025-09-24 02:52:48,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:48,563 INFO Out dated connection ,size=0 + +2025-09-24 02:52:48,563 INFO Connection check task end + +2025-09-24 02:52:51,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:51,565 INFO Connection check task start + +2025-09-24 02:52:51,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:51,565 INFO Out dated connection ,size=0 + +2025-09-24 02:52:51,565 INFO Connection check task end + +2025-09-24 02:52:54,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:54,566 INFO Connection check task start + +2025-09-24 02:52:54,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:54,566 INFO Out dated connection ,size=0 + +2025-09-24 02:52:54,566 INFO Connection check task end + +2025-09-24 02:52:57,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:52:57,567 INFO Connection check task start + +2025-09-24 02:52:57,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:52:57,567 INFO Out dated connection ,size=0 + +2025-09-24 02:52:57,567 INFO Connection check task end + +2025-09-24 02:53:00,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:00,569 INFO Connection check task start + +2025-09-24 02:53:00,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:00,569 INFO Out dated connection ,size=0 + +2025-09-24 02:53:00,569 INFO Connection check task end + +2025-09-24 02:53:03,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:03,569 INFO Connection check task start + +2025-09-24 02:53:03,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:03,569 INFO Out dated connection ,size=0 + +2025-09-24 02:53:03,569 INFO Connection check task end + +2025-09-24 02:53:06,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:06,571 INFO Connection check task start + +2025-09-24 02:53:06,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:06,571 INFO Out dated connection ,size=0 + +2025-09-24 02:53:06,571 INFO Connection check task end + +2025-09-24 02:53:09,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:09,571 INFO Connection check task start + +2025-09-24 02:53:09,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:09,571 INFO Out dated connection ,size=0 + +2025-09-24 02:53:09,571 INFO Connection check task end + +2025-09-24 02:53:12,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:12,572 INFO Connection check task start + +2025-09-24 02:53:12,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:12,572 INFO Out dated connection ,size=0 + +2025-09-24 02:53:12,572 INFO Connection check task end + +2025-09-24 02:53:15,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:15,572 INFO Connection check task start + +2025-09-24 02:53:15,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:15,572 INFO Out dated connection ,size=0 + +2025-09-24 02:53:15,573 INFO Connection check task end + +2025-09-24 02:53:18,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:18,573 INFO Connection check task start + +2025-09-24 02:53:18,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:18,573 INFO Out dated connection ,size=0 + +2025-09-24 02:53:18,573 INFO Connection check task end + +2025-09-24 02:53:21,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:21,575 INFO Connection check task start + +2025-09-24 02:53:21,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:21,575 INFO Out dated connection ,size=0 + +2025-09-24 02:53:21,575 INFO Connection check task end + +2025-09-24 02:53:24,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:24,576 INFO Connection check task start + +2025-09-24 02:53:24,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:24,576 INFO Out dated connection ,size=0 + +2025-09-24 02:53:24,576 INFO Connection check task end + +2025-09-24 02:53:27,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:27,577 INFO Connection check task start + +2025-09-24 02:53:27,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:27,577 INFO Out dated connection ,size=0 + +2025-09-24 02:53:27,577 INFO Connection check task end + +2025-09-24 02:53:30,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:30,578 INFO Connection check task start + +2025-09-24 02:53:30,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:30,578 INFO Out dated connection ,size=0 + +2025-09-24 02:53:30,578 INFO Connection check task end + +2025-09-24 02:53:33,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:33,579 INFO Connection check task start + +2025-09-24 02:53:33,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:33,579 INFO Out dated connection ,size=0 + +2025-09-24 02:53:33,579 INFO Connection check task end + +2025-09-24 02:53:36,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:36,581 INFO Connection check task start + +2025-09-24 02:53:36,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:36,581 INFO Out dated connection ,size=0 + +2025-09-24 02:53:36,581 INFO Connection check task end + +2025-09-24 02:53:39,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:39,581 INFO Connection check task start + +2025-09-24 02:53:39,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:39,582 INFO Out dated connection ,size=0 + +2025-09-24 02:53:39,582 INFO Connection check task end + +2025-09-24 02:53:42,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:42,583 INFO Connection check task start + +2025-09-24 02:53:42,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:42,584 INFO Out dated connection ,size=0 + +2025-09-24 02:53:42,584 INFO Connection check task end + +2025-09-24 02:53:45,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:45,584 INFO Connection check task start + +2025-09-24 02:53:45,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:45,584 INFO Out dated connection ,size=0 + +2025-09-24 02:53:45,584 INFO Connection check task end + +2025-09-24 02:53:48,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:48,585 INFO Connection check task start + +2025-09-24 02:53:48,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:48,585 INFO Out dated connection ,size=0 + +2025-09-24 02:53:48,585 INFO Connection check task end + +2025-09-24 02:53:51,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:51,586 INFO Connection check task start + +2025-09-24 02:53:51,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:51,587 INFO Out dated connection ,size=0 + +2025-09-24 02:53:51,587 INFO Connection check task end + +2025-09-24 02:53:54,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:54,587 INFO Connection check task start + +2025-09-24 02:53:54,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:54,587 INFO Out dated connection ,size=0 + +2025-09-24 02:53:54,587 INFO Connection check task end + +2025-09-24 02:53:57,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:53:57,587 INFO Connection check task start + +2025-09-24 02:53:57,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:53:57,587 INFO Out dated connection ,size=0 + +2025-09-24 02:53:57,587 INFO Connection check task end + +2025-09-24 02:54:00,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:00,592 INFO Connection check task start + +2025-09-24 02:54:00,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:00,592 INFO Out dated connection ,size=0 + +2025-09-24 02:54:00,592 INFO Connection check task end + +2025-09-24 02:54:03,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:03,593 INFO Connection check task start + +2025-09-24 02:54:03,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:03,593 INFO Out dated connection ,size=0 + +2025-09-24 02:54:03,593 INFO Connection check task end + +2025-09-24 02:54:06,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:06,593 INFO Connection check task start + +2025-09-24 02:54:06,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:06,593 INFO Out dated connection ,size=0 + +2025-09-24 02:54:06,594 INFO Connection check task end + +2025-09-24 02:54:09,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:09,595 INFO Connection check task start + +2025-09-24 02:54:09,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:09,595 INFO Out dated connection ,size=0 + +2025-09-24 02:54:09,595 INFO Connection check task end + +2025-09-24 02:54:12,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:12,598 INFO Connection check task start + +2025-09-24 02:54:12,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:12,598 INFO Out dated connection ,size=0 + +2025-09-24 02:54:12,598 INFO Connection check task end + +2025-09-24 02:54:15,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:15,599 INFO Connection check task start + +2025-09-24 02:54:15,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:15,599 INFO Out dated connection ,size=0 + +2025-09-24 02:54:15,599 INFO Connection check task end + +2025-09-24 02:54:18,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:18,599 INFO Connection check task start + +2025-09-24 02:54:18,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:18,599 INFO Out dated connection ,size=0 + +2025-09-24 02:54:18,599 INFO Connection check task end + +2025-09-24 02:54:21,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:21,600 INFO Connection check task start + +2025-09-24 02:54:21,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:21,600 INFO Out dated connection ,size=0 + +2025-09-24 02:54:21,600 INFO Connection check task end + +2025-09-24 02:54:24,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:24,600 INFO Connection check task start + +2025-09-24 02:54:24,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:24,600 INFO Out dated connection ,size=0 + +2025-09-24 02:54:24,600 INFO Connection check task end + +2025-09-24 02:54:27,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:27,601 INFO Connection check task start + +2025-09-24 02:54:27,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:27,601 INFO Out dated connection ,size=0 + +2025-09-24 02:54:27,601 INFO Connection check task end + +2025-09-24 02:54:30,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:30,601 INFO Connection check task start + +2025-09-24 02:54:30,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:30,601 INFO Out dated connection ,size=0 + +2025-09-24 02:54:30,602 INFO Connection check task end + +2025-09-24 02:54:33,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:33,602 INFO Connection check task start + +2025-09-24 02:54:33,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:33,602 INFO Out dated connection ,size=0 + +2025-09-24 02:54:33,602 INFO Connection check task end + +2025-09-24 02:54:36,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:36,603 INFO Connection check task start + +2025-09-24 02:54:36,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:36,603 INFO Out dated connection ,size=0 + +2025-09-24 02:54:36,603 INFO Connection check task end + +2025-09-24 02:54:39,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:39,605 INFO Connection check task start + +2025-09-24 02:54:39,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:39,605 INFO Out dated connection ,size=0 + +2025-09-24 02:54:39,605 INFO Connection check task end + +2025-09-24 02:54:42,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:42,607 INFO Connection check task start + +2025-09-24 02:54:42,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:42,608 INFO Out dated connection ,size=0 + +2025-09-24 02:54:42,608 INFO Connection check task end + +2025-09-24 02:54:45,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:45,608 INFO Connection check task start + +2025-09-24 02:54:45,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:45,608 INFO Out dated connection ,size=0 + +2025-09-24 02:54:45,608 INFO Connection check task end + +2025-09-24 02:54:48,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:48,610 INFO Connection check task start + +2025-09-24 02:54:48,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:48,610 INFO Out dated connection ,size=0 + +2025-09-24 02:54:48,610 INFO Connection check task end + +2025-09-24 02:54:51,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:51,612 INFO Connection check task start + +2025-09-24 02:54:51,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:51,613 INFO Out dated connection ,size=0 + +2025-09-24 02:54:51,613 INFO Connection check task end + +2025-09-24 02:54:54,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:54,613 INFO Connection check task start + +2025-09-24 02:54:54,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:54,613 INFO Out dated connection ,size=0 + +2025-09-24 02:54:54,613 INFO Connection check task end + +2025-09-24 02:54:57,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:54:57,613 INFO Connection check task start + +2025-09-24 02:54:57,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:54:57,613 INFO Out dated connection ,size=0 + +2025-09-24 02:54:57,613 INFO Connection check task end + +2025-09-24 02:55:00,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:00,615 INFO Connection check task start + +2025-09-24 02:55:00,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:00,615 INFO Out dated connection ,size=0 + +2025-09-24 02:55:00,615 INFO Connection check task end + +2025-09-24 02:55:03,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:03,617 INFO Connection check task start + +2025-09-24 02:55:03,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:03,617 INFO Out dated connection ,size=0 + +2025-09-24 02:55:03,617 INFO Connection check task end + +2025-09-24 02:55:06,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:06,619 INFO Connection check task start + +2025-09-24 02:55:06,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:06,619 INFO Out dated connection ,size=0 + +2025-09-24 02:55:06,619 INFO Connection check task end + +2025-09-24 02:55:09,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:09,621 INFO Connection check task start + +2025-09-24 02:55:09,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:09,621 INFO Out dated connection ,size=0 + +2025-09-24 02:55:09,621 INFO Connection check task end + +2025-09-24 02:55:12,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:12,623 INFO Connection check task start + +2025-09-24 02:55:12,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:12,623 INFO Out dated connection ,size=0 + +2025-09-24 02:55:12,623 INFO Connection check task end + +2025-09-24 02:55:15,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:15,626 INFO Connection check task start + +2025-09-24 02:55:15,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:15,626 INFO Out dated connection ,size=0 + +2025-09-24 02:55:15,626 INFO Connection check task end + +2025-09-24 02:55:18,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:18,628 INFO Connection check task start + +2025-09-24 02:55:18,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:18,628 INFO Out dated connection ,size=0 + +2025-09-24 02:55:18,628 INFO Connection check task end + +2025-09-24 02:55:21,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:21,628 INFO Connection check task start + +2025-09-24 02:55:21,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:21,628 INFO Out dated connection ,size=0 + +2025-09-24 02:55:21,629 INFO Connection check task end + +2025-09-24 02:55:24,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:24,631 INFO Connection check task start + +2025-09-24 02:55:24,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:24,631 INFO Out dated connection ,size=0 + +2025-09-24 02:55:24,631 INFO Connection check task end + +2025-09-24 02:55:27,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:27,632 INFO Connection check task start + +2025-09-24 02:55:27,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:27,632 INFO Out dated connection ,size=0 + +2025-09-24 02:55:27,632 INFO Connection check task end + +2025-09-24 02:55:30,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:30,633 INFO Connection check task start + +2025-09-24 02:55:30,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:30,633 INFO Out dated connection ,size=0 + +2025-09-24 02:55:30,633 INFO Connection check task end + +2025-09-24 02:55:33,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:33,633 INFO Connection check task start + +2025-09-24 02:55:33,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:33,633 INFO Out dated connection ,size=0 + +2025-09-24 02:55:33,633 INFO Connection check task end + +2025-09-24 02:55:36,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:36,634 INFO Connection check task start + +2025-09-24 02:55:36,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:36,634 INFO Out dated connection ,size=0 + +2025-09-24 02:55:36,634 INFO Connection check task end + +2025-09-24 02:55:39,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:39,636 INFO Connection check task start + +2025-09-24 02:55:39,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:39,637 INFO Out dated connection ,size=0 + +2025-09-24 02:55:39,637 INFO Connection check task end + +2025-09-24 02:55:42,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:42,637 INFO Connection check task start + +2025-09-24 02:55:42,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:42,637 INFO Out dated connection ,size=0 + +2025-09-24 02:55:42,637 INFO Connection check task end + +2025-09-24 02:55:45,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:45,639 INFO Connection check task start + +2025-09-24 02:55:45,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:45,639 INFO Out dated connection ,size=0 + +2025-09-24 02:55:45,639 INFO Connection check task end + +2025-09-24 02:55:48,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:48,641 INFO Connection check task start + +2025-09-24 02:55:48,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:48,641 INFO Out dated connection ,size=0 + +2025-09-24 02:55:48,642 INFO Connection check task end + +2025-09-24 02:55:51,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:51,643 INFO Connection check task start + +2025-09-24 02:55:51,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:51,643 INFO Out dated connection ,size=0 + +2025-09-24 02:55:51,643 INFO Connection check task end + +2025-09-24 02:55:54,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:54,643 INFO Connection check task start + +2025-09-24 02:55:54,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:54,644 INFO Out dated connection ,size=0 + +2025-09-24 02:55:54,644 INFO Connection check task end + +2025-09-24 02:55:57,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:55:57,645 INFO Connection check task start + +2025-09-24 02:55:57,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:55:57,645 INFO Out dated connection ,size=0 + +2025-09-24 02:55:57,645 INFO Connection check task end + +2025-09-24 02:56:00,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:00,646 INFO Connection check task start + +2025-09-24 02:56:00,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:00,646 INFO Out dated connection ,size=0 + +2025-09-24 02:56:00,646 INFO Connection check task end + +2025-09-24 02:56:03,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:03,648 INFO Connection check task start + +2025-09-24 02:56:03,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:03,648 INFO Out dated connection ,size=0 + +2025-09-24 02:56:03,648 INFO Connection check task end + +2025-09-24 02:56:06,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:06,649 INFO Connection check task start + +2025-09-24 02:56:06,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:06,660 INFO Out dated connection ,size=0 + +2025-09-24 02:56:06,661 INFO Connection check task end + +2025-09-24 02:56:09,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:09,661 INFO Connection check task start + +2025-09-24 02:56:09,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:09,661 INFO Out dated connection ,size=0 + +2025-09-24 02:56:09,661 INFO Connection check task end + +2025-09-24 02:56:12,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:12,663 INFO Connection check task start + +2025-09-24 02:56:12,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:12,664 INFO Out dated connection ,size=0 + +2025-09-24 02:56:12,664 INFO Connection check task end + +2025-09-24 02:56:15,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:15,664 INFO Connection check task start + +2025-09-24 02:56:15,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:15,664 INFO Out dated connection ,size=0 + +2025-09-24 02:56:15,665 INFO Connection check task end + +2025-09-24 02:56:18,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:18,666 INFO Connection check task start + +2025-09-24 02:56:18,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:18,666 INFO Out dated connection ,size=0 + +2025-09-24 02:56:18,666 INFO Connection check task end + +2025-09-24 02:56:21,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:21,667 INFO Connection check task start + +2025-09-24 02:56:21,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:21,667 INFO Out dated connection ,size=0 + +2025-09-24 02:56:21,667 INFO Connection check task end + +2025-09-24 02:56:24,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:24,669 INFO Connection check task start + +2025-09-24 02:56:24,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:24,669 INFO Out dated connection ,size=0 + +2025-09-24 02:56:24,669 INFO Connection check task end + +2025-09-24 02:56:27,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:27,670 INFO Connection check task start + +2025-09-24 02:56:27,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:27,670 INFO Out dated connection ,size=0 + +2025-09-24 02:56:27,670 INFO Connection check task end + +2025-09-24 02:56:30,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:30,672 INFO Connection check task start + +2025-09-24 02:56:30,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:30,673 INFO Out dated connection ,size=0 + +2025-09-24 02:56:30,673 INFO Connection check task end + +2025-09-24 02:56:33,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:33,673 INFO Connection check task start + +2025-09-24 02:56:33,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:33,673 INFO Out dated connection ,size=0 + +2025-09-24 02:56:33,673 INFO Connection check task end + +2025-09-24 02:56:36,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:36,675 INFO Connection check task start + +2025-09-24 02:56:36,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:36,675 INFO Out dated connection ,size=0 + +2025-09-24 02:56:36,675 INFO Connection check task end + +2025-09-24 02:56:39,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:39,676 INFO Connection check task start + +2025-09-24 02:56:39,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:39,676 INFO Out dated connection ,size=0 + +2025-09-24 02:56:39,676 INFO Connection check task end + +2025-09-24 02:56:42,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:42,676 INFO Connection check task start + +2025-09-24 02:56:42,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:42,676 INFO Out dated connection ,size=0 + +2025-09-24 02:56:42,676 INFO Connection check task end + +2025-09-24 02:56:45,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:45,677 INFO Connection check task start + +2025-09-24 02:56:45,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:45,677 INFO Out dated connection ,size=0 + +2025-09-24 02:56:45,677 INFO Connection check task end + +2025-09-24 02:56:48,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:48,677 INFO Connection check task start + +2025-09-24 02:56:48,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:48,677 INFO Out dated connection ,size=0 + +2025-09-24 02:56:48,677 INFO Connection check task end + +2025-09-24 02:56:51,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:51,678 INFO Connection check task start + +2025-09-24 02:56:51,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:51,679 INFO Out dated connection ,size=0 + +2025-09-24 02:56:51,679 INFO Connection check task end + +2025-09-24 02:56:54,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:54,679 INFO Connection check task start + +2025-09-24 02:56:54,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:54,679 INFO Out dated connection ,size=0 + +2025-09-24 02:56:54,679 INFO Connection check task end + +2025-09-24 02:56:57,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:56:57,680 INFO Connection check task start + +2025-09-24 02:56:57,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:56:57,680 INFO Out dated connection ,size=0 + +2025-09-24 02:56:57,680 INFO Connection check task end + +2025-09-24 02:57:00,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:00,681 INFO Connection check task start + +2025-09-24 02:57:00,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:00,681 INFO Out dated connection ,size=0 + +2025-09-24 02:57:00,681 INFO Connection check task end + +2025-09-24 02:57:03,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:03,682 INFO Connection check task start + +2025-09-24 02:57:03,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:03,682 INFO Out dated connection ,size=0 + +2025-09-24 02:57:03,682 INFO Connection check task end + +2025-09-24 02:57:06,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:06,685 INFO Connection check task start + +2025-09-24 02:57:06,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:06,685 INFO Out dated connection ,size=0 + +2025-09-24 02:57:06,685 INFO Connection check task end + +2025-09-24 02:57:09,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:09,685 INFO Connection check task start + +2025-09-24 02:57:09,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:09,685 INFO Out dated connection ,size=0 + +2025-09-24 02:57:09,685 INFO Connection check task end + +2025-09-24 02:57:12,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:12,686 INFO Connection check task start + +2025-09-24 02:57:12,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:12,686 INFO Out dated connection ,size=0 + +2025-09-24 02:57:12,686 INFO Connection check task end + +2025-09-24 02:57:15,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:15,688 INFO Connection check task start + +2025-09-24 02:57:15,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:15,688 INFO Out dated connection ,size=0 + +2025-09-24 02:57:15,688 INFO Connection check task end + +2025-09-24 02:57:18,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:18,690 INFO Connection check task start + +2025-09-24 02:57:18,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:18,690 INFO Out dated connection ,size=0 + +2025-09-24 02:57:18,690 INFO Connection check task end + +2025-09-24 02:57:21,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:21,691 INFO Connection check task start + +2025-09-24 02:57:21,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:21,691 INFO Out dated connection ,size=0 + +2025-09-24 02:57:21,691 INFO Connection check task end + +2025-09-24 02:57:24,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:24,691 INFO Connection check task start + +2025-09-24 02:57:24,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:24,691 INFO Out dated connection ,size=0 + +2025-09-24 02:57:24,691 INFO Connection check task end + +2025-09-24 02:57:27,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:27,693 INFO Connection check task start + +2025-09-24 02:57:27,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:27,693 INFO Out dated connection ,size=0 + +2025-09-24 02:57:27,693 INFO Connection check task end + +2025-09-24 02:57:30,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:30,694 INFO Connection check task start + +2025-09-24 02:57:30,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:30,694 INFO Out dated connection ,size=0 + +2025-09-24 02:57:30,694 INFO Connection check task end + +2025-09-24 02:57:33,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:33,694 INFO Connection check task start + +2025-09-24 02:57:33,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:33,694 INFO Out dated connection ,size=0 + +2025-09-24 02:57:33,694 INFO Connection check task end + +2025-09-24 02:57:36,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:36,695 INFO Connection check task start + +2025-09-24 02:57:36,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:36,695 INFO Out dated connection ,size=0 + +2025-09-24 02:57:36,695 INFO Connection check task end + +2025-09-24 02:57:39,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:39,695 INFO Connection check task start + +2025-09-24 02:57:39,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:39,695 INFO Out dated connection ,size=0 + +2025-09-24 02:57:39,695 INFO Connection check task end + +2025-09-24 02:57:42,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:42,696 INFO Connection check task start + +2025-09-24 02:57:42,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:42,696 INFO Out dated connection ,size=0 + +2025-09-24 02:57:42,696 INFO Connection check task end + +2025-09-24 02:57:45,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:45,696 INFO Connection check task start + +2025-09-24 02:57:45,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:45,696 INFO Out dated connection ,size=0 + +2025-09-24 02:57:45,696 INFO Connection check task end + +2025-09-24 02:57:48,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:48,697 INFO Connection check task start + +2025-09-24 02:57:48,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:48,697 INFO Out dated connection ,size=0 + +2025-09-24 02:57:48,697 INFO Connection check task end + +2025-09-24 02:57:51,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:51,698 INFO Connection check task start + +2025-09-24 02:57:51,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:51,698 INFO Out dated connection ,size=0 + +2025-09-24 02:57:51,698 INFO Connection check task end + +2025-09-24 02:57:54,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:54,699 INFO Connection check task start + +2025-09-24 02:57:54,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:54,699 INFO Out dated connection ,size=0 + +2025-09-24 02:57:54,699 INFO Connection check task end + +2025-09-24 02:57:57,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:57:57,701 INFO Connection check task start + +2025-09-24 02:57:57,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:57:57,701 INFO Out dated connection ,size=0 + +2025-09-24 02:57:57,701 INFO Connection check task end + +2025-09-24 02:58:00,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:00,701 INFO Connection check task start + +2025-09-24 02:58:00,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:00,702 INFO Out dated connection ,size=0 + +2025-09-24 02:58:00,702 INFO Connection check task end + +2025-09-24 02:58:03,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:03,702 INFO Connection check task start + +2025-09-24 02:58:03,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:03,702 INFO Out dated connection ,size=0 + +2025-09-24 02:58:03,702 INFO Connection check task end + +2025-09-24 02:58:06,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:06,702 INFO Connection check task start + +2025-09-24 02:58:06,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:06,703 INFO Out dated connection ,size=0 + +2025-09-24 02:58:06,703 INFO Connection check task end + +2025-09-24 02:58:09,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:09,703 INFO Connection check task start + +2025-09-24 02:58:09,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:09,703 INFO Out dated connection ,size=0 + +2025-09-24 02:58:09,703 INFO Connection check task end + +2025-09-24 02:58:12,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:12,704 INFO Connection check task start + +2025-09-24 02:58:12,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:12,704 INFO Out dated connection ,size=0 + +2025-09-24 02:58:12,704 INFO Connection check task end + +2025-09-24 02:58:15,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:15,706 INFO Connection check task start + +2025-09-24 02:58:15,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:15,706 INFO Out dated connection ,size=0 + +2025-09-24 02:58:15,706 INFO Connection check task end + +2025-09-24 02:58:18,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:18,706 INFO Connection check task start + +2025-09-24 02:58:18,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:18,706 INFO Out dated connection ,size=0 + +2025-09-24 02:58:18,706 INFO Connection check task end + +2025-09-24 02:58:21,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:21,707 INFO Connection check task start + +2025-09-24 02:58:21,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:21,707 INFO Out dated connection ,size=0 + +2025-09-24 02:58:21,707 INFO Connection check task end + +2025-09-24 02:58:24,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:24,708 INFO Connection check task start + +2025-09-24 02:58:24,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:24,708 INFO Out dated connection ,size=0 + +2025-09-24 02:58:24,708 INFO Connection check task end + +2025-09-24 02:58:27,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:27,710 INFO Connection check task start + +2025-09-24 02:58:27,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:27,711 INFO Out dated connection ,size=0 + +2025-09-24 02:58:27,711 INFO Connection check task end + +2025-09-24 02:58:30,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:30,712 INFO Connection check task start + +2025-09-24 02:58:30,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:30,712 INFO Out dated connection ,size=0 + +2025-09-24 02:58:30,712 INFO Connection check task end + +2025-09-24 02:58:33,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:33,713 INFO Connection check task start + +2025-09-24 02:58:33,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:33,713 INFO Out dated connection ,size=0 + +2025-09-24 02:58:33,713 INFO Connection check task end + +2025-09-24 02:58:36,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:36,715 INFO Connection check task start + +2025-09-24 02:58:36,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:36,715 INFO Out dated connection ,size=0 + +2025-09-24 02:58:36,715 INFO Connection check task end + +2025-09-24 02:58:39,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:39,717 INFO Connection check task start + +2025-09-24 02:58:39,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:39,717 INFO Out dated connection ,size=0 + +2025-09-24 02:58:39,717 INFO Connection check task end + +2025-09-24 02:58:42,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:42,719 INFO Connection check task start + +2025-09-24 02:58:42,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:42,719 INFO Out dated connection ,size=0 + +2025-09-24 02:58:42,719 INFO Connection check task end + +2025-09-24 02:58:45,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:45,719 INFO Connection check task start + +2025-09-24 02:58:45,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:45,719 INFO Out dated connection ,size=0 + +2025-09-24 02:58:45,719 INFO Connection check task end + +2025-09-24 02:58:48,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:48,720 INFO Connection check task start + +2025-09-24 02:58:48,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:48,720 INFO Out dated connection ,size=0 + +2025-09-24 02:58:48,721 INFO Connection check task end + +2025-09-24 02:58:51,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:51,721 INFO Connection check task start + +2025-09-24 02:58:51,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:51,721 INFO Out dated connection ,size=0 + +2025-09-24 02:58:51,721 INFO Connection check task end + +2025-09-24 02:58:54,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:54,722 INFO Connection check task start + +2025-09-24 02:58:54,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:54,722 INFO Out dated connection ,size=0 + +2025-09-24 02:58:54,722 INFO Connection check task end + +2025-09-24 02:58:57,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:58:57,723 INFO Connection check task start + +2025-09-24 02:58:57,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:58:57,723 INFO Out dated connection ,size=0 + +2025-09-24 02:58:57,723 INFO Connection check task end + +2025-09-24 02:59:00,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:00,723 INFO Connection check task start + +2025-09-24 02:59:00,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:00,724 INFO Out dated connection ,size=0 + +2025-09-24 02:59:00,724 INFO Connection check task end + +2025-09-24 02:59:03,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:03,724 INFO Connection check task start + +2025-09-24 02:59:03,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:03,724 INFO Out dated connection ,size=0 + +2025-09-24 02:59:03,724 INFO Connection check task end + +2025-09-24 02:59:06,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:06,725 INFO Connection check task start + +2025-09-24 02:59:06,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:06,726 INFO Out dated connection ,size=0 + +2025-09-24 02:59:06,726 INFO Connection check task end + +2025-09-24 02:59:09,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:09,726 INFO Connection check task start + +2025-09-24 02:59:09,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:09,727 INFO Out dated connection ,size=0 + +2025-09-24 02:59:09,727 INFO Connection check task end + +2025-09-24 02:59:12,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:12,727 INFO Connection check task start + +2025-09-24 02:59:12,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:12,728 INFO Out dated connection ,size=0 + +2025-09-24 02:59:12,728 INFO Connection check task end + +2025-09-24 02:59:15,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:15,728 INFO Connection check task start + +2025-09-24 02:59:15,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:15,728 INFO Out dated connection ,size=0 + +2025-09-24 02:59:15,728 INFO Connection check task end + +2025-09-24 02:59:18,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:18,729 INFO Connection check task start + +2025-09-24 02:59:18,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:18,729 INFO Out dated connection ,size=0 + +2025-09-24 02:59:18,729 INFO Connection check task end + +2025-09-24 02:59:21,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:21,731 INFO Connection check task start + +2025-09-24 02:59:21,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:21,731 INFO Out dated connection ,size=0 + +2025-09-24 02:59:21,732 INFO Connection check task end + +2025-09-24 02:59:24,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:24,733 INFO Connection check task start + +2025-09-24 02:59:24,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:24,734 INFO Out dated connection ,size=0 + +2025-09-24 02:59:24,734 INFO Connection check task end + +2025-09-24 02:59:27,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:27,734 INFO Connection check task start + +2025-09-24 02:59:27,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:27,734 INFO Out dated connection ,size=0 + +2025-09-24 02:59:27,734 INFO Connection check task end + +2025-09-24 02:59:30,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:30,736 INFO Connection check task start + +2025-09-24 02:59:30,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:30,736 INFO Out dated connection ,size=0 + +2025-09-24 02:59:30,736 INFO Connection check task end + +2025-09-24 02:59:33,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:33,737 INFO Connection check task start + +2025-09-24 02:59:33,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:33,737 INFO Out dated connection ,size=0 + +2025-09-24 02:59:33,737 INFO Connection check task end + +2025-09-24 02:59:36,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:36,738 INFO Connection check task start + +2025-09-24 02:59:36,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:36,739 INFO Out dated connection ,size=0 + +2025-09-24 02:59:36,739 INFO Connection check task end + +2025-09-24 02:59:39,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:39,739 INFO Connection check task start + +2025-09-24 02:59:39,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:39,739 INFO Out dated connection ,size=0 + +2025-09-24 02:59:39,739 INFO Connection check task end + +2025-09-24 02:59:42,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:42,740 INFO Connection check task start + +2025-09-24 02:59:42,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:42,740 INFO Out dated connection ,size=0 + +2025-09-24 02:59:42,740 INFO Connection check task end + +2025-09-24 02:59:45,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:45,742 INFO Connection check task start + +2025-09-24 02:59:45,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:45,743 INFO Out dated connection ,size=0 + +2025-09-24 02:59:45,743 INFO Connection check task end + +2025-09-24 02:59:48,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:48,743 INFO Connection check task start + +2025-09-24 02:59:48,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:48,743 INFO Out dated connection ,size=0 + +2025-09-24 02:59:48,743 INFO Connection check task end + +2025-09-24 02:59:51,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:51,744 INFO Connection check task start + +2025-09-24 02:59:51,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:51,744 INFO Out dated connection ,size=0 + +2025-09-24 02:59:51,744 INFO Connection check task end + +2025-09-24 02:59:54,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:54,746 INFO Connection check task start + +2025-09-24 02:59:54,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:54,746 INFO Out dated connection ,size=0 + +2025-09-24 02:59:54,746 INFO Connection check task end + +2025-09-24 02:59:57,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 02:59:57,747 INFO Connection check task start + +2025-09-24 02:59:57,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 02:59:57,747 INFO Out dated connection ,size=0 + +2025-09-24 02:59:57,747 INFO Connection check task end + +2025-09-24 03:00:00,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:00,747 INFO Connection check task start + +2025-09-24 03:00:00,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:00,747 INFO Out dated connection ,size=0 + +2025-09-24 03:00:00,747 INFO Connection check task end + +2025-09-24 03:00:03,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:03,749 INFO Connection check task start + +2025-09-24 03:00:03,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:03,749 INFO Out dated connection ,size=0 + +2025-09-24 03:00:03,749 INFO Connection check task end + +2025-09-24 03:00:06,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:06,750 INFO Connection check task start + +2025-09-24 03:00:06,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:06,750 INFO Out dated connection ,size=0 + +2025-09-24 03:00:06,750 INFO Connection check task end + +2025-09-24 03:00:09,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:09,750 INFO Connection check task start + +2025-09-24 03:00:09,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:09,751 INFO Out dated connection ,size=0 + +2025-09-24 03:00:09,751 INFO Connection check task end + +2025-09-24 03:00:12,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:12,752 INFO Connection check task start + +2025-09-24 03:00:12,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:12,752 INFO Out dated connection ,size=0 + +2025-09-24 03:00:12,752 INFO Connection check task end + +2025-09-24 03:00:15,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:15,752 INFO Connection check task start + +2025-09-24 03:00:15,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:15,752 INFO Out dated connection ,size=0 + +2025-09-24 03:00:15,752 INFO Connection check task end + +2025-09-24 03:00:18,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:18,753 INFO Connection check task start + +2025-09-24 03:00:18,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:18,753 INFO Out dated connection ,size=0 + +2025-09-24 03:00:18,753 INFO Connection check task end + +2025-09-24 03:00:21,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:21,753 INFO Connection check task start + +2025-09-24 03:00:21,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:21,754 INFO Out dated connection ,size=0 + +2025-09-24 03:00:21,754 INFO Connection check task end + +2025-09-24 03:00:24,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:24,754 INFO Connection check task start + +2025-09-24 03:00:24,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:24,754 INFO Out dated connection ,size=0 + +2025-09-24 03:00:24,754 INFO Connection check task end + +2025-09-24 03:00:27,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:27,755 INFO Connection check task start + +2025-09-24 03:00:27,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:27,755 INFO Out dated connection ,size=0 + +2025-09-24 03:00:27,755 INFO Connection check task end + +2025-09-24 03:00:30,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:30,756 INFO Connection check task start + +2025-09-24 03:00:30,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:30,756 INFO Out dated connection ,size=0 + +2025-09-24 03:00:30,756 INFO Connection check task end + +2025-09-24 03:00:33,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:33,756 INFO Connection check task start + +2025-09-24 03:00:33,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:33,756 INFO Out dated connection ,size=0 + +2025-09-24 03:00:33,756 INFO Connection check task end + +2025-09-24 03:00:36,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:36,757 INFO Connection check task start + +2025-09-24 03:00:36,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:36,757 INFO Out dated connection ,size=0 + +2025-09-24 03:00:36,757 INFO Connection check task end + +2025-09-24 03:00:39,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:39,759 INFO Connection check task start + +2025-09-24 03:00:39,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:39,759 INFO Out dated connection ,size=0 + +2025-09-24 03:00:39,759 INFO Connection check task end + +2025-09-24 03:00:42,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:42,760 INFO Connection check task start + +2025-09-24 03:00:42,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:42,760 INFO Out dated connection ,size=0 + +2025-09-24 03:00:42,760 INFO Connection check task end + +2025-09-24 03:00:45,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:45,762 INFO Connection check task start + +2025-09-24 03:00:45,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:45,762 INFO Out dated connection ,size=0 + +2025-09-24 03:00:45,763 INFO Connection check task end + +2025-09-24 03:00:48,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:48,764 INFO Connection check task start + +2025-09-24 03:00:48,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:48,764 INFO Out dated connection ,size=0 + +2025-09-24 03:00:48,764 INFO Connection check task end + +2025-09-24 03:00:51,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:51,764 INFO Connection check task start + +2025-09-24 03:00:51,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:51,765 INFO Out dated connection ,size=0 + +2025-09-24 03:00:51,765 INFO Connection check task end + +2025-09-24 03:00:54,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:54,765 INFO Connection check task start + +2025-09-24 03:00:54,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:54,765 INFO Out dated connection ,size=0 + +2025-09-24 03:00:54,765 INFO Connection check task end + +2025-09-24 03:00:57,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:00:57,767 INFO Connection check task start + +2025-09-24 03:00:57,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:00:57,767 INFO Out dated connection ,size=0 + +2025-09-24 03:00:57,767 INFO Connection check task end + +2025-09-24 03:01:00,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:00,769 INFO Connection check task start + +2025-09-24 03:01:00,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:00,769 INFO Out dated connection ,size=0 + +2025-09-24 03:01:00,769 INFO Connection check task end + +2025-09-24 03:01:03,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:03,770 INFO Connection check task start + +2025-09-24 03:01:03,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:03,771 INFO Out dated connection ,size=0 + +2025-09-24 03:01:03,771 INFO Connection check task end + +2025-09-24 03:01:06,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:06,772 INFO Connection check task start + +2025-09-24 03:01:06,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:06,772 INFO Out dated connection ,size=0 + +2025-09-24 03:01:06,772 INFO Connection check task end + +2025-09-24 03:01:09,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:09,774 INFO Connection check task start + +2025-09-24 03:01:09,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:09,774 INFO Out dated connection ,size=0 + +2025-09-24 03:01:09,774 INFO Connection check task end + +2025-09-24 03:01:12,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:12,775 INFO Connection check task start + +2025-09-24 03:01:12,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:12,775 INFO Out dated connection ,size=0 + +2025-09-24 03:01:12,775 INFO Connection check task end + +2025-09-24 03:01:15,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:15,775 INFO Connection check task start + +2025-09-24 03:01:15,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:15,776 INFO Out dated connection ,size=0 + +2025-09-24 03:01:15,776 INFO Connection check task end + +2025-09-24 03:01:18,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:18,776 INFO Connection check task start + +2025-09-24 03:01:18,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:18,776 INFO Out dated connection ,size=0 + +2025-09-24 03:01:18,776 INFO Connection check task end + +2025-09-24 03:01:21,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:21,776 INFO Connection check task start + +2025-09-24 03:01:21,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:21,777 INFO Out dated connection ,size=0 + +2025-09-24 03:01:21,777 INFO Connection check task end + +2025-09-24 03:01:24,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:24,777 INFO Connection check task start + +2025-09-24 03:01:24,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:24,777 INFO Out dated connection ,size=0 + +2025-09-24 03:01:24,777 INFO Connection check task end + +2025-09-24 03:01:27,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:27,778 INFO Connection check task start + +2025-09-24 03:01:27,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:27,778 INFO Out dated connection ,size=0 + +2025-09-24 03:01:27,778 INFO Connection check task end + +2025-09-24 03:01:30,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:30,778 INFO Connection check task start + +2025-09-24 03:01:30,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:30,779 INFO Out dated connection ,size=0 + +2025-09-24 03:01:30,779 INFO Connection check task end + +2025-09-24 03:01:33,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:33,779 INFO Connection check task start + +2025-09-24 03:01:33,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:33,779 INFO Out dated connection ,size=0 + +2025-09-24 03:01:33,779 INFO Connection check task end + +2025-09-24 03:01:36,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:36,780 INFO Connection check task start + +2025-09-24 03:01:36,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:36,780 INFO Out dated connection ,size=0 + +2025-09-24 03:01:36,780 INFO Connection check task end + +2025-09-24 03:01:39,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:39,781 INFO Connection check task start + +2025-09-24 03:01:39,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:39,781 INFO Out dated connection ,size=0 + +2025-09-24 03:01:39,781 INFO Connection check task end + +2025-09-24 03:01:42,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:42,781 INFO Connection check task start + +2025-09-24 03:01:42,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:42,781 INFO Out dated connection ,size=0 + +2025-09-24 03:01:42,781 INFO Connection check task end + +2025-09-24 03:01:45,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:45,782 INFO Connection check task start + +2025-09-24 03:01:45,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:45,782 INFO Out dated connection ,size=0 + +2025-09-24 03:01:45,782 INFO Connection check task end + +2025-09-24 03:01:48,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:48,784 INFO Connection check task start + +2025-09-24 03:01:48,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:48,784 INFO Out dated connection ,size=0 + +2025-09-24 03:01:48,784 INFO Connection check task end + +2025-09-24 03:01:51,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:51,784 INFO Connection check task start + +2025-09-24 03:01:51,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:51,784 INFO Out dated connection ,size=0 + +2025-09-24 03:01:51,784 INFO Connection check task end + +2025-09-24 03:01:54,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:54,785 INFO Connection check task start + +2025-09-24 03:01:54,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:54,785 INFO Out dated connection ,size=0 + +2025-09-24 03:01:54,785 INFO Connection check task end + +2025-09-24 03:01:57,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:01:57,785 INFO Connection check task start + +2025-09-24 03:01:57,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:01:57,786 INFO Out dated connection ,size=0 + +2025-09-24 03:01:57,786 INFO Connection check task end + +2025-09-24 03:02:00,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:00,786 INFO Connection check task start + +2025-09-24 03:02:00,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:00,787 INFO Out dated connection ,size=0 + +2025-09-24 03:02:00,787 INFO Connection check task end + +2025-09-24 03:02:03,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:03,787 INFO Connection check task start + +2025-09-24 03:02:03,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:03,787 INFO Out dated connection ,size=0 + +2025-09-24 03:02:03,787 INFO Connection check task end + +2025-09-24 03:02:06,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:06,788 INFO Connection check task start + +2025-09-24 03:02:06,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:06,788 INFO Out dated connection ,size=0 + +2025-09-24 03:02:06,788 INFO Connection check task end + +2025-09-24 03:02:09,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:09,789 INFO Connection check task start + +2025-09-24 03:02:09,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:09,789 INFO Out dated connection ,size=0 + +2025-09-24 03:02:09,789 INFO Connection check task end + +2025-09-24 03:02:12,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:12,790 INFO Connection check task start + +2025-09-24 03:02:12,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:12,791 INFO Out dated connection ,size=0 + +2025-09-24 03:02:12,791 INFO Connection check task end + +2025-09-24 03:02:15,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:15,793 INFO Connection check task start + +2025-09-24 03:02:15,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:15,793 INFO Out dated connection ,size=0 + +2025-09-24 03:02:15,793 INFO Connection check task end + +2025-09-24 03:02:18,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:18,795 INFO Connection check task start + +2025-09-24 03:02:18,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:18,795 INFO Out dated connection ,size=0 + +2025-09-24 03:02:18,795 INFO Connection check task end + +2025-09-24 03:02:21,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:21,797 INFO Connection check task start + +2025-09-24 03:02:21,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:21,797 INFO Out dated connection ,size=0 + +2025-09-24 03:02:21,797 INFO Connection check task end + +2025-09-24 03:02:24,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:24,797 INFO Connection check task start + +2025-09-24 03:02:24,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:24,798 INFO Out dated connection ,size=0 + +2025-09-24 03:02:24,798 INFO Connection check task end + +2025-09-24 03:02:27,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:27,799 INFO Connection check task start + +2025-09-24 03:02:27,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:27,799 INFO Out dated connection ,size=0 + +2025-09-24 03:02:27,799 INFO Connection check task end + +2025-09-24 03:02:30,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:30,800 INFO Connection check task start + +2025-09-24 03:02:30,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:30,800 INFO Out dated connection ,size=0 + +2025-09-24 03:02:30,800 INFO Connection check task end + +2025-09-24 03:02:33,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:33,800 INFO Connection check task start + +2025-09-24 03:02:33,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:33,801 INFO Out dated connection ,size=0 + +2025-09-24 03:02:33,801 INFO Connection check task end + +2025-09-24 03:02:36,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:36,803 INFO Connection check task start + +2025-09-24 03:02:36,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:36,803 INFO Out dated connection ,size=0 + +2025-09-24 03:02:36,803 INFO Connection check task end + +2025-09-24 03:02:39,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:39,805 INFO Connection check task start + +2025-09-24 03:02:39,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:39,805 INFO Out dated connection ,size=0 + +2025-09-24 03:02:39,805 INFO Connection check task end + +2025-09-24 03:02:42,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:42,807 INFO Connection check task start + +2025-09-24 03:02:42,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:42,807 INFO Out dated connection ,size=0 + +2025-09-24 03:02:42,807 INFO Connection check task end + +2025-09-24 03:02:45,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:45,808 INFO Connection check task start + +2025-09-24 03:02:45,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:45,808 INFO Out dated connection ,size=0 + +2025-09-24 03:02:45,808 INFO Connection check task end + +2025-09-24 03:02:48,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:48,810 INFO Connection check task start + +2025-09-24 03:02:48,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:48,810 INFO Out dated connection ,size=0 + +2025-09-24 03:02:48,810 INFO Connection check task end + +2025-09-24 03:02:51,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:51,810 INFO Connection check task start + +2025-09-24 03:02:51,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:51,810 INFO Out dated connection ,size=0 + +2025-09-24 03:02:51,810 INFO Connection check task end + +2025-09-24 03:02:54,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:54,811 INFO Connection check task start + +2025-09-24 03:02:54,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:54,811 INFO Out dated connection ,size=0 + +2025-09-24 03:02:54,811 INFO Connection check task end + +2025-09-24 03:02:57,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:02:57,814 INFO Connection check task start + +2025-09-24 03:02:57,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:02:57,814 INFO Out dated connection ,size=0 + +2025-09-24 03:02:57,814 INFO Connection check task end + +2025-09-24 03:03:00,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:00,816 INFO Connection check task start + +2025-09-24 03:03:00,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:00,816 INFO Out dated connection ,size=0 + +2025-09-24 03:03:00,816 INFO Connection check task end + +2025-09-24 03:03:03,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:03,816 INFO Connection check task start + +2025-09-24 03:03:03,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:03,817 INFO Out dated connection ,size=0 + +2025-09-24 03:03:03,817 INFO Connection check task end + +2025-09-24 03:03:06,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:06,818 INFO Connection check task start + +2025-09-24 03:03:06,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:06,818 INFO Out dated connection ,size=0 + +2025-09-24 03:03:06,818 INFO Connection check task end + +2025-09-24 03:03:09,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:09,820 INFO Connection check task start + +2025-09-24 03:03:09,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:09,821 INFO Out dated connection ,size=0 + +2025-09-24 03:03:09,821 INFO Connection check task end + +2025-09-24 03:03:12,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:12,822 INFO Connection check task start + +2025-09-24 03:03:12,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:12,823 INFO Out dated connection ,size=0 + +2025-09-24 03:03:12,823 INFO Connection check task end + +2025-09-24 03:03:15,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:15,824 INFO Connection check task start + +2025-09-24 03:03:15,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:15,824 INFO Out dated connection ,size=0 + +2025-09-24 03:03:15,824 INFO Connection check task end + +2025-09-24 03:03:18,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:18,825 INFO Connection check task start + +2025-09-24 03:03:18,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:18,825 INFO Out dated connection ,size=0 + +2025-09-24 03:03:18,825 INFO Connection check task end + +2025-09-24 03:03:21,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:21,825 INFO Connection check task start + +2025-09-24 03:03:21,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:21,825 INFO Out dated connection ,size=0 + +2025-09-24 03:03:21,825 INFO Connection check task end + +2025-09-24 03:03:24,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:24,826 INFO Connection check task start + +2025-09-24 03:03:24,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:24,827 INFO Out dated connection ,size=0 + +2025-09-24 03:03:24,827 INFO Connection check task end + +2025-09-24 03:03:27,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:27,827 INFO Connection check task start + +2025-09-24 03:03:27,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:27,827 INFO Out dated connection ,size=0 + +2025-09-24 03:03:27,827 INFO Connection check task end + +2025-09-24 03:03:30,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:30,827 INFO Connection check task start + +2025-09-24 03:03:30,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:30,828 INFO Out dated connection ,size=0 + +2025-09-24 03:03:30,828 INFO Connection check task end + +2025-09-24 03:03:33,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:33,830 INFO Connection check task start + +2025-09-24 03:03:33,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:33,830 INFO Out dated connection ,size=0 + +2025-09-24 03:03:33,830 INFO Connection check task end + +2025-09-24 03:03:36,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:36,830 INFO Connection check task start + +2025-09-24 03:03:36,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:36,830 INFO Out dated connection ,size=0 + +2025-09-24 03:03:36,830 INFO Connection check task end + +2025-09-24 03:03:39,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:39,831 INFO Connection check task start + +2025-09-24 03:03:39,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:39,831 INFO Out dated connection ,size=0 + +2025-09-24 03:03:39,831 INFO Connection check task end + +2025-09-24 03:03:42,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:42,831 INFO Connection check task start + +2025-09-24 03:03:42,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:42,832 INFO Out dated connection ,size=0 + +2025-09-24 03:03:42,832 INFO Connection check task end + +2025-09-24 03:03:45,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:45,833 INFO Connection check task start + +2025-09-24 03:03:45,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:45,834 INFO Out dated connection ,size=0 + +2025-09-24 03:03:45,834 INFO Connection check task end + +2025-09-24 03:03:48,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:48,834 INFO Connection check task start + +2025-09-24 03:03:48,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:48,834 INFO Out dated connection ,size=0 + +2025-09-24 03:03:48,834 INFO Connection check task end + +2025-09-24 03:03:51,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:51,835 INFO Connection check task start + +2025-09-24 03:03:51,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:51,835 INFO Out dated connection ,size=0 + +2025-09-24 03:03:51,835 INFO Connection check task end + +2025-09-24 03:03:54,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:54,836 INFO Connection check task start + +2025-09-24 03:03:54,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:54,836 INFO Out dated connection ,size=0 + +2025-09-24 03:03:54,836 INFO Connection check task end + +2025-09-24 03:03:57,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:03:57,837 INFO Connection check task start + +2025-09-24 03:03:57,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:03:57,837 INFO Out dated connection ,size=0 + +2025-09-24 03:03:57,837 INFO Connection check task end + +2025-09-24 03:04:00,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:00,838 INFO Connection check task start + +2025-09-24 03:04:00,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:00,838 INFO Out dated connection ,size=0 + +2025-09-24 03:04:00,838 INFO Connection check task end + +2025-09-24 03:04:03,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:03,840 INFO Connection check task start + +2025-09-24 03:04:03,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:03,840 INFO Out dated connection ,size=0 + +2025-09-24 03:04:03,840 INFO Connection check task end + +2025-09-24 03:04:06,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:06,841 INFO Connection check task start + +2025-09-24 03:04:06,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:06,841 INFO Out dated connection ,size=0 + +2025-09-24 03:04:06,841 INFO Connection check task end + +2025-09-24 03:04:09,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:09,843 INFO Connection check task start + +2025-09-24 03:04:09,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:09,843 INFO Out dated connection ,size=0 + +2025-09-24 03:04:09,843 INFO Connection check task end + +2025-09-24 03:04:12,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:12,843 INFO Connection check task start + +2025-09-24 03:04:12,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:12,843 INFO Out dated connection ,size=0 + +2025-09-24 03:04:12,843 INFO Connection check task end + +2025-09-24 03:04:15,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:15,844 INFO Connection check task start + +2025-09-24 03:04:15,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:15,844 INFO Out dated connection ,size=0 + +2025-09-24 03:04:15,844 INFO Connection check task end + +2025-09-24 03:04:18,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:18,845 INFO Connection check task start + +2025-09-24 03:04:18,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:18,846 INFO Out dated connection ,size=0 + +2025-09-24 03:04:18,846 INFO Connection check task end + +2025-09-24 03:04:21,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:21,846 INFO Connection check task start + +2025-09-24 03:04:21,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:21,846 INFO Out dated connection ,size=0 + +2025-09-24 03:04:21,846 INFO Connection check task end + +2025-09-24 03:04:24,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:24,848 INFO Connection check task start + +2025-09-24 03:04:24,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:24,848 INFO Out dated connection ,size=0 + +2025-09-24 03:04:24,848 INFO Connection check task end + +2025-09-24 03:04:27,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:27,850 INFO Connection check task start + +2025-09-24 03:04:27,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:27,850 INFO Out dated connection ,size=0 + +2025-09-24 03:04:27,850 INFO Connection check task end + +2025-09-24 03:04:30,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:30,851 INFO Connection check task start + +2025-09-24 03:04:30,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:30,851 INFO Out dated connection ,size=0 + +2025-09-24 03:04:30,851 INFO Connection check task end + +2025-09-24 03:04:33,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:33,853 INFO Connection check task start + +2025-09-24 03:04:33,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:33,853 INFO Out dated connection ,size=0 + +2025-09-24 03:04:33,853 INFO Connection check task end + +2025-09-24 03:04:36,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:36,854 INFO Connection check task start + +2025-09-24 03:04:36,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:36,854 INFO Out dated connection ,size=0 + +2025-09-24 03:04:36,855 INFO Connection check task end + +2025-09-24 03:04:39,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:39,856 INFO Connection check task start + +2025-09-24 03:04:39,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:39,856 INFO Out dated connection ,size=0 + +2025-09-24 03:04:39,856 INFO Connection check task end + +2025-09-24 03:04:42,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:42,857 INFO Connection check task start + +2025-09-24 03:04:42,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:42,858 INFO Out dated connection ,size=0 + +2025-09-24 03:04:42,858 INFO Connection check task end + +2025-09-24 03:04:45,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:45,858 INFO Connection check task start + +2025-09-24 03:04:45,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:45,858 INFO Out dated connection ,size=0 + +2025-09-24 03:04:45,858 INFO Connection check task end + +2025-09-24 03:04:48,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:48,859 INFO Connection check task start + +2025-09-24 03:04:48,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:48,859 INFO Out dated connection ,size=0 + +2025-09-24 03:04:48,859 INFO Connection check task end + +2025-09-24 03:04:51,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:51,861 INFO Connection check task start + +2025-09-24 03:04:51,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:51,861 INFO Out dated connection ,size=0 + +2025-09-24 03:04:51,861 INFO Connection check task end + +2025-09-24 03:04:54,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:54,861 INFO Connection check task start + +2025-09-24 03:04:54,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:54,861 INFO Out dated connection ,size=0 + +2025-09-24 03:04:54,861 INFO Connection check task end + +2025-09-24 03:04:57,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:04:57,862 INFO Connection check task start + +2025-09-24 03:04:57,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:04:57,862 INFO Out dated connection ,size=0 + +2025-09-24 03:04:57,862 INFO Connection check task end + +2025-09-24 03:05:00,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:00,864 INFO Connection check task start + +2025-09-24 03:05:00,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:00,864 INFO Out dated connection ,size=0 + +2025-09-24 03:05:00,864 INFO Connection check task end + +2025-09-24 03:05:03,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:03,865 INFO Connection check task start + +2025-09-24 03:05:03,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:03,865 INFO Out dated connection ,size=0 + +2025-09-24 03:05:03,865 INFO Connection check task end + +2025-09-24 03:05:06,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:06,865 INFO Connection check task start + +2025-09-24 03:05:06,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:06,865 INFO Out dated connection ,size=0 + +2025-09-24 03:05:06,865 INFO Connection check task end + +2025-09-24 03:05:09,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:09,866 INFO Connection check task start + +2025-09-24 03:05:09,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:09,866 INFO Out dated connection ,size=0 + +2025-09-24 03:05:09,866 INFO Connection check task end + +2025-09-24 03:05:12,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:12,867 INFO Connection check task start + +2025-09-24 03:05:12,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:12,867 INFO Out dated connection ,size=0 + +2025-09-24 03:05:12,867 INFO Connection check task end + +2025-09-24 03:05:15,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:15,867 INFO Connection check task start + +2025-09-24 03:05:15,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:15,868 INFO Out dated connection ,size=0 + +2025-09-24 03:05:15,868 INFO Connection check task end + +2025-09-24 03:05:18,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:18,868 INFO Connection check task start + +2025-09-24 03:05:18,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:18,868 INFO Out dated connection ,size=0 + +2025-09-24 03:05:18,868 INFO Connection check task end + +2025-09-24 03:05:21,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:21,868 INFO Connection check task start + +2025-09-24 03:05:21,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:21,868 INFO Out dated connection ,size=0 + +2025-09-24 03:05:21,868 INFO Connection check task end + +2025-09-24 03:05:24,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:24,869 INFO Connection check task start + +2025-09-24 03:05:24,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:24,869 INFO Out dated connection ,size=0 + +2025-09-24 03:05:24,869 INFO Connection check task end + +2025-09-24 03:05:27,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:27,871 INFO Connection check task start + +2025-09-24 03:05:27,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:27,872 INFO Out dated connection ,size=0 + +2025-09-24 03:05:27,872 INFO Connection check task end + +2025-09-24 03:05:30,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:30,874 INFO Connection check task start + +2025-09-24 03:05:30,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:30,874 INFO Out dated connection ,size=0 + +2025-09-24 03:05:30,874 INFO Connection check task end + +2025-09-24 03:05:33,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:33,874 INFO Connection check task start + +2025-09-24 03:05:33,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:33,874 INFO Out dated connection ,size=0 + +2025-09-24 03:05:33,874 INFO Connection check task end + +2025-09-24 03:05:36,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:36,876 INFO Connection check task start + +2025-09-24 03:05:36,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:36,877 INFO Out dated connection ,size=0 + +2025-09-24 03:05:36,877 INFO Connection check task end + +2025-09-24 03:05:39,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:39,877 INFO Connection check task start + +2025-09-24 03:05:39,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:39,877 INFO Out dated connection ,size=0 + +2025-09-24 03:05:39,878 INFO Connection check task end + +2025-09-24 03:05:42,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:42,878 INFO Connection check task start + +2025-09-24 03:05:42,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:42,878 INFO Out dated connection ,size=0 + +2025-09-24 03:05:42,878 INFO Connection check task end + +2025-09-24 03:05:45,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:45,880 INFO Connection check task start + +2025-09-24 03:05:45,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:45,880 INFO Out dated connection ,size=0 + +2025-09-24 03:05:45,880 INFO Connection check task end + +2025-09-24 03:05:48,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:48,882 INFO Connection check task start + +2025-09-24 03:05:48,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:48,882 INFO Out dated connection ,size=0 + +2025-09-24 03:05:48,883 INFO Connection check task end + +2025-09-24 03:05:51,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:51,884 INFO Connection check task start + +2025-09-24 03:05:51,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:51,884 INFO Out dated connection ,size=0 + +2025-09-24 03:05:51,884 INFO Connection check task end + +2025-09-24 03:05:54,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:54,885 INFO Connection check task start + +2025-09-24 03:05:54,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:54,886 INFO Out dated connection ,size=0 + +2025-09-24 03:05:54,886 INFO Connection check task end + +2025-09-24 03:05:57,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:05:57,887 INFO Connection check task start + +2025-09-24 03:05:57,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:05:57,887 INFO Out dated connection ,size=0 + +2025-09-24 03:05:57,887 INFO Connection check task end + +2025-09-24 03:06:00,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:00,889 INFO Connection check task start + +2025-09-24 03:06:00,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:00,889 INFO Out dated connection ,size=0 + +2025-09-24 03:06:00,889 INFO Connection check task end + +2025-09-24 03:06:03,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:03,889 INFO Connection check task start + +2025-09-24 03:06:03,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:03,890 INFO Out dated connection ,size=0 + +2025-09-24 03:06:03,890 INFO Connection check task end + +2025-09-24 03:06:06,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:06,890 INFO Connection check task start + +2025-09-24 03:06:06,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:06,890 INFO Out dated connection ,size=0 + +2025-09-24 03:06:06,890 INFO Connection check task end + +2025-09-24 03:06:09,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:09,890 INFO Connection check task start + +2025-09-24 03:06:09,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:09,891 INFO Out dated connection ,size=0 + +2025-09-24 03:06:09,891 INFO Connection check task end + +2025-09-24 03:06:12,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:12,893 INFO Connection check task start + +2025-09-24 03:06:12,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:12,893 INFO Out dated connection ,size=0 + +2025-09-24 03:06:12,893 INFO Connection check task end + +2025-09-24 03:06:15,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:15,895 INFO Connection check task start + +2025-09-24 03:06:15,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:15,895 INFO Out dated connection ,size=0 + +2025-09-24 03:06:15,895 INFO Connection check task end + +2025-09-24 03:06:18,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:18,896 INFO Connection check task start + +2025-09-24 03:06:18,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:18,896 INFO Out dated connection ,size=0 + +2025-09-24 03:06:18,896 INFO Connection check task end + +2025-09-24 03:06:21,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:21,896 INFO Connection check task start + +2025-09-24 03:06:21,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:21,896 INFO Out dated connection ,size=0 + +2025-09-24 03:06:21,896 INFO Connection check task end + +2025-09-24 03:06:24,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:24,898 INFO Connection check task start + +2025-09-24 03:06:24,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:24,898 INFO Out dated connection ,size=0 + +2025-09-24 03:06:24,898 INFO Connection check task end + +2025-09-24 03:06:27,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:27,900 INFO Connection check task start + +2025-09-24 03:06:27,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:27,901 INFO Out dated connection ,size=0 + +2025-09-24 03:06:27,901 INFO Connection check task end + +2025-09-24 03:06:30,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:30,902 INFO Connection check task start + +2025-09-24 03:06:30,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:30,902 INFO Out dated connection ,size=0 + +2025-09-24 03:06:30,902 INFO Connection check task end + +2025-09-24 03:06:33,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:33,903 INFO Connection check task start + +2025-09-24 03:06:33,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:33,904 INFO Out dated connection ,size=0 + +2025-09-24 03:06:33,904 INFO Connection check task end + +2025-09-24 03:06:36,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:36,904 INFO Connection check task start + +2025-09-24 03:06:36,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:36,904 INFO Out dated connection ,size=0 + +2025-09-24 03:06:36,904 INFO Connection check task end + +2025-09-24 03:06:39,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:39,904 INFO Connection check task start + +2025-09-24 03:06:39,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:39,905 INFO Out dated connection ,size=0 + +2025-09-24 03:06:39,905 INFO Connection check task end + +2025-09-24 03:06:42,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:42,907 INFO Connection check task start + +2025-09-24 03:06:42,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:42,907 INFO Out dated connection ,size=0 + +2025-09-24 03:06:42,907 INFO Connection check task end + +2025-09-24 03:06:45,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:45,907 INFO Connection check task start + +2025-09-24 03:06:45,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:45,907 INFO Out dated connection ,size=0 + +2025-09-24 03:06:45,907 INFO Connection check task end + +2025-09-24 03:06:48,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:48,908 INFO Connection check task start + +2025-09-24 03:06:48,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:48,908 INFO Out dated connection ,size=0 + +2025-09-24 03:06:48,908 INFO Connection check task end + +2025-09-24 03:06:51,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:51,910 INFO Connection check task start + +2025-09-24 03:06:51,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:51,910 INFO Out dated connection ,size=0 + +2025-09-24 03:06:51,910 INFO Connection check task end + +2025-09-24 03:06:54,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:54,912 INFO Connection check task start + +2025-09-24 03:06:54,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:54,912 INFO Out dated connection ,size=0 + +2025-09-24 03:06:54,912 INFO Connection check task end + +2025-09-24 03:06:57,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:06:57,913 INFO Connection check task start + +2025-09-24 03:06:57,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:06:57,913 INFO Out dated connection ,size=0 + +2025-09-24 03:06:57,913 INFO Connection check task end + +2025-09-24 03:07:00,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:00,913 INFO Connection check task start + +2025-09-24 03:07:00,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:00,914 INFO Out dated connection ,size=0 + +2025-09-24 03:07:00,914 INFO Connection check task end + +2025-09-24 03:07:03,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:03,916 INFO Connection check task start + +2025-09-24 03:07:03,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:03,916 INFO Out dated connection ,size=0 + +2025-09-24 03:07:03,916 INFO Connection check task end + +2025-09-24 03:07:06,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:06,916 INFO Connection check task start + +2025-09-24 03:07:06,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:06,916 INFO Out dated connection ,size=0 + +2025-09-24 03:07:06,917 INFO Connection check task end + +2025-09-24 03:07:09,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:09,917 INFO Connection check task start + +2025-09-24 03:07:09,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:09,918 INFO Out dated connection ,size=0 + +2025-09-24 03:07:09,918 INFO Connection check task end + +2025-09-24 03:07:12,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:12,920 INFO Connection check task start + +2025-09-24 03:07:12,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:12,920 INFO Out dated connection ,size=0 + +2025-09-24 03:07:12,920 INFO Connection check task end + +2025-09-24 03:07:15,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:15,921 INFO Connection check task start + +2025-09-24 03:07:15,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:15,921 INFO Out dated connection ,size=0 + +2025-09-24 03:07:15,921 INFO Connection check task end + +2025-09-24 03:07:18,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:18,923 INFO Connection check task start + +2025-09-24 03:07:18,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:18,923 INFO Out dated connection ,size=0 + +2025-09-24 03:07:18,923 INFO Connection check task end + +2025-09-24 03:07:21,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:21,925 INFO Connection check task start + +2025-09-24 03:07:21,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:21,926 INFO Out dated connection ,size=0 + +2025-09-24 03:07:21,926 INFO Connection check task end + +2025-09-24 03:07:24,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:24,927 INFO Connection check task start + +2025-09-24 03:07:24,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:24,927 INFO Out dated connection ,size=0 + +2025-09-24 03:07:24,927 INFO Connection check task end + +2025-09-24 03:07:27,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:27,928 INFO Connection check task start + +2025-09-24 03:07:27,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:27,928 INFO Out dated connection ,size=0 + +2025-09-24 03:07:27,928 INFO Connection check task end + +2025-09-24 03:07:30,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:30,929 INFO Connection check task start + +2025-09-24 03:07:30,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:30,929 INFO Out dated connection ,size=0 + +2025-09-24 03:07:30,929 INFO Connection check task end + +2025-09-24 03:07:33,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:33,931 INFO Connection check task start + +2025-09-24 03:07:33,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:33,931 INFO Out dated connection ,size=0 + +2025-09-24 03:07:33,931 INFO Connection check task end + +2025-09-24 03:07:36,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:36,932 INFO Connection check task start + +2025-09-24 03:07:36,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:36,932 INFO Out dated connection ,size=0 + +2025-09-24 03:07:36,932 INFO Connection check task end + +2025-09-24 03:07:39,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:39,934 INFO Connection check task start + +2025-09-24 03:07:39,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:39,934 INFO Out dated connection ,size=0 + +2025-09-24 03:07:39,934 INFO Connection check task end + +2025-09-24 03:07:42,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:42,935 INFO Connection check task start + +2025-09-24 03:07:42,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:42,935 INFO Out dated connection ,size=0 + +2025-09-24 03:07:42,935 INFO Connection check task end + +2025-09-24 03:07:45,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:45,935 INFO Connection check task start + +2025-09-24 03:07:45,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:45,936 INFO Out dated connection ,size=0 + +2025-09-24 03:07:45,936 INFO Connection check task end + +2025-09-24 03:07:48,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:48,937 INFO Connection check task start + +2025-09-24 03:07:48,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:48,937 INFO Out dated connection ,size=0 + +2025-09-24 03:07:48,937 INFO Connection check task end + +2025-09-24 03:07:51,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:51,938 INFO Connection check task start + +2025-09-24 03:07:51,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:51,938 INFO Out dated connection ,size=0 + +2025-09-24 03:07:51,938 INFO Connection check task end + +2025-09-24 03:07:54,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:54,940 INFO Connection check task start + +2025-09-24 03:07:54,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:54,940 INFO Out dated connection ,size=0 + +2025-09-24 03:07:54,940 INFO Connection check task end + +2025-09-24 03:07:57,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:07:57,942 INFO Connection check task start + +2025-09-24 03:07:57,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:07:57,942 INFO Out dated connection ,size=0 + +2025-09-24 03:07:57,942 INFO Connection check task end + +2025-09-24 03:08:00,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:00,944 INFO Connection check task start + +2025-09-24 03:08:00,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:00,944 INFO Out dated connection ,size=0 + +2025-09-24 03:08:00,945 INFO Connection check task end + +2025-09-24 03:08:03,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:03,945 INFO Connection check task start + +2025-09-24 03:08:03,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:03,946 INFO Out dated connection ,size=0 + +2025-09-24 03:08:03,946 INFO Connection check task end + +2025-09-24 03:08:06,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:06,948 INFO Connection check task start + +2025-09-24 03:08:06,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:06,948 INFO Out dated connection ,size=0 + +2025-09-24 03:08:06,948 INFO Connection check task end + +2025-09-24 03:08:09,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:09,950 INFO Connection check task start + +2025-09-24 03:08:09,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:09,951 INFO Out dated connection ,size=0 + +2025-09-24 03:08:09,951 INFO Connection check task end + +2025-09-24 03:08:12,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:12,951 INFO Connection check task start + +2025-09-24 03:08:12,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:12,951 INFO Out dated connection ,size=0 + +2025-09-24 03:08:12,951 INFO Connection check task end + +2025-09-24 03:08:15,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:15,953 INFO Connection check task start + +2025-09-24 03:08:15,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:15,953 INFO Out dated connection ,size=0 + +2025-09-24 03:08:15,953 INFO Connection check task end + +2025-09-24 03:08:18,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:18,954 INFO Connection check task start + +2025-09-24 03:08:18,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:18,954 INFO Out dated connection ,size=0 + +2025-09-24 03:08:18,954 INFO Connection check task end + +2025-09-24 03:08:21,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:21,955 INFO Connection check task start + +2025-09-24 03:08:21,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:21,955 INFO Out dated connection ,size=0 + +2025-09-24 03:08:21,955 INFO Connection check task end + +2025-09-24 03:08:24,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:24,955 INFO Connection check task start + +2025-09-24 03:08:24,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:24,955 INFO Out dated connection ,size=0 + +2025-09-24 03:08:24,955 INFO Connection check task end + +2025-09-24 03:08:27,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:27,956 INFO Connection check task start + +2025-09-24 03:08:27,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:27,956 INFO Out dated connection ,size=0 + +2025-09-24 03:08:27,957 INFO Connection check task end + +2025-09-24 03:08:30,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:30,957 INFO Connection check task start + +2025-09-24 03:08:30,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:30,957 INFO Out dated connection ,size=0 + +2025-09-24 03:08:30,957 INFO Connection check task end + +2025-09-24 03:08:33,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:33,957 INFO Connection check task start + +2025-09-24 03:08:33,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:33,958 INFO Out dated connection ,size=0 + +2025-09-24 03:08:33,958 INFO Connection check task end + +2025-09-24 03:08:36,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:36,958 INFO Connection check task start + +2025-09-24 03:08:36,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:36,958 INFO Out dated connection ,size=0 + +2025-09-24 03:08:36,958 INFO Connection check task end + +2025-09-24 03:08:39,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:39,958 INFO Connection check task start + +2025-09-24 03:08:39,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:39,959 INFO Out dated connection ,size=0 + +2025-09-24 03:08:39,959 INFO Connection check task end + +2025-09-24 03:08:42,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:42,961 INFO Connection check task start + +2025-09-24 03:08:42,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:42,961 INFO Out dated connection ,size=0 + +2025-09-24 03:08:42,961 INFO Connection check task end + +2025-09-24 03:08:45,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:45,962 INFO Connection check task start + +2025-09-24 03:08:45,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:45,962 INFO Out dated connection ,size=0 + +2025-09-24 03:08:45,962 INFO Connection check task end + +2025-09-24 03:08:48,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:48,964 INFO Connection check task start + +2025-09-24 03:08:48,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:48,964 INFO Out dated connection ,size=0 + +2025-09-24 03:08:48,964 INFO Connection check task end + +2025-09-24 03:08:51,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:51,964 INFO Connection check task start + +2025-09-24 03:08:51,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:51,965 INFO Out dated connection ,size=0 + +2025-09-24 03:08:51,965 INFO Connection check task end + +2025-09-24 03:08:54,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:54,965 INFO Connection check task start + +2025-09-24 03:08:54,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:54,965 INFO Out dated connection ,size=0 + +2025-09-24 03:08:54,965 INFO Connection check task end + +2025-09-24 03:08:57,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:08:57,966 INFO Connection check task start + +2025-09-24 03:08:57,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:08:57,966 INFO Out dated connection ,size=0 + +2025-09-24 03:08:57,966 INFO Connection check task end + +2025-09-24 03:09:00,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:00,968 INFO Connection check task start + +2025-09-24 03:09:00,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:00,968 INFO Out dated connection ,size=0 + +2025-09-24 03:09:00,968 INFO Connection check task end + +2025-09-24 03:09:03,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:03,969 INFO Connection check task start + +2025-09-24 03:09:03,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:03,969 INFO Out dated connection ,size=0 + +2025-09-24 03:09:03,969 INFO Connection check task end + +2025-09-24 03:09:06,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:06,971 INFO Connection check task start + +2025-09-24 03:09:06,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:06,971 INFO Out dated connection ,size=0 + +2025-09-24 03:09:06,972 INFO Connection check task end + +2025-09-24 03:09:09,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:09,974 INFO Connection check task start + +2025-09-24 03:09:09,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:09,974 INFO Out dated connection ,size=0 + +2025-09-24 03:09:09,974 INFO Connection check task end + +2025-09-24 03:09:12,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:12,974 INFO Connection check task start + +2025-09-24 03:09:12,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:12,974 INFO Out dated connection ,size=0 + +2025-09-24 03:09:12,974 INFO Connection check task end + +2025-09-24 03:09:15,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:15,975 INFO Connection check task start + +2025-09-24 03:09:15,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:15,976 INFO Out dated connection ,size=0 + +2025-09-24 03:09:15,976 INFO Connection check task end + +2025-09-24 03:09:18,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:18,978 INFO Connection check task start + +2025-09-24 03:09:18,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:18,978 INFO Out dated connection ,size=0 + +2025-09-24 03:09:18,978 INFO Connection check task end + +2025-09-24 03:09:21,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:21,978 INFO Connection check task start + +2025-09-24 03:09:21,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:21,978 INFO Out dated connection ,size=0 + +2025-09-24 03:09:21,978 INFO Connection check task end + +2025-09-24 03:09:24,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:24,980 INFO Connection check task start + +2025-09-24 03:09:24,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:24,980 INFO Out dated connection ,size=0 + +2025-09-24 03:09:24,980 INFO Connection check task end + +2025-09-24 03:09:27,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:27,980 INFO Connection check task start + +2025-09-24 03:09:27,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:27,980 INFO Out dated connection ,size=0 + +2025-09-24 03:09:27,980 INFO Connection check task end + +2025-09-24 03:09:30,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:30,983 INFO Connection check task start + +2025-09-24 03:09:30,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:30,983 INFO Out dated connection ,size=0 + +2025-09-24 03:09:30,983 INFO Connection check task end + +2025-09-24 03:09:33,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:33,985 INFO Connection check task start + +2025-09-24 03:09:33,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:33,985 INFO Out dated connection ,size=0 + +2025-09-24 03:09:33,985 INFO Connection check task end + +2025-09-24 03:09:36,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:36,986 INFO Connection check task start + +2025-09-24 03:09:36,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:36,986 INFO Out dated connection ,size=0 + +2025-09-24 03:09:36,986 INFO Connection check task end + +2025-09-24 03:09:39,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:39,988 INFO Connection check task start + +2025-09-24 03:09:39,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:39,988 INFO Out dated connection ,size=0 + +2025-09-24 03:09:39,988 INFO Connection check task end + +2025-09-24 03:09:42,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:42,990 INFO Connection check task start + +2025-09-24 03:09:42,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:42,990 INFO Out dated connection ,size=0 + +2025-09-24 03:09:42,990 INFO Connection check task end + +2025-09-24 03:09:45,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:45,990 INFO Connection check task start + +2025-09-24 03:09:45,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:45,991 INFO Out dated connection ,size=0 + +2025-09-24 03:09:45,991 INFO Connection check task end + +2025-09-24 03:09:48,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:48,991 INFO Connection check task start + +2025-09-24 03:09:48,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:48,991 INFO Out dated connection ,size=0 + +2025-09-24 03:09:48,991 INFO Connection check task end + +2025-09-24 03:09:51,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:51,991 INFO Connection check task start + +2025-09-24 03:09:51,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:51,992 INFO Out dated connection ,size=0 + +2025-09-24 03:09:51,992 INFO Connection check task end + +2025-09-24 03:09:54,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:54,992 INFO Connection check task start + +2025-09-24 03:09:54,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:54,992 INFO Out dated connection ,size=0 + +2025-09-24 03:09:54,992 INFO Connection check task end + +2025-09-24 03:09:57,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:09:57,992 INFO Connection check task start + +2025-09-24 03:09:57,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:09:57,992 INFO Out dated connection ,size=0 + +2025-09-24 03:09:57,993 INFO Connection check task end + +2025-09-24 03:10:00,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:00,993 INFO Connection check task start + +2025-09-24 03:10:00,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:00,993 INFO Out dated connection ,size=0 + +2025-09-24 03:10:00,993 INFO Connection check task end + +2025-09-24 03:10:03,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:03,994 INFO Connection check task start + +2025-09-24 03:10:03,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:03,994 INFO Out dated connection ,size=0 + +2025-09-24 03:10:03,994 INFO Connection check task end + +2025-09-24 03:10:06,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:06,996 INFO Connection check task start + +2025-09-24 03:10:06,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:06,996 INFO Out dated connection ,size=0 + +2025-09-24 03:10:06,996 INFO Connection check task end + +2025-09-24 03:10:09,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:09,996 INFO Connection check task start + +2025-09-24 03:10:09,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:09,996 INFO Out dated connection ,size=0 + +2025-09-24 03:10:09,997 INFO Connection check task end + +2025-09-24 03:10:12,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:12,999 INFO Connection check task start + +2025-09-24 03:10:12,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:12,999 INFO Out dated connection ,size=0 + +2025-09-24 03:10:12,999 INFO Connection check task end + +2025-09-24 03:10:15,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:15,999 INFO Connection check task start + +2025-09-24 03:10:15,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:15,999 INFO Out dated connection ,size=0 + +2025-09-24 03:10:15,999 INFO Connection check task end + +2025-09-24 03:10:18,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:19,001 INFO Connection check task start + +2025-09-24 03:10:19,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:19,001 INFO Out dated connection ,size=0 + +2025-09-24 03:10:19,001 INFO Connection check task end + +2025-09-24 03:10:21,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:22,001 INFO Connection check task start + +2025-09-24 03:10:22,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:22,002 INFO Out dated connection ,size=0 + +2025-09-24 03:10:22,002 INFO Connection check task end + +2025-09-24 03:10:24,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:25,002 INFO Connection check task start + +2025-09-24 03:10:25,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:25,002 INFO Out dated connection ,size=0 + +2025-09-24 03:10:25,002 INFO Connection check task end + +2025-09-24 03:10:27,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:28,003 INFO Connection check task start + +2025-09-24 03:10:28,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:28,003 INFO Out dated connection ,size=0 + +2025-09-24 03:10:28,003 INFO Connection check task end + +2025-09-24 03:10:30,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:31,003 INFO Connection check task start + +2025-09-24 03:10:31,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:31,003 INFO Out dated connection ,size=0 + +2025-09-24 03:10:31,003 INFO Connection check task end + +2025-09-24 03:10:33,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:34,005 INFO Connection check task start + +2025-09-24 03:10:34,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:34,006 INFO Out dated connection ,size=0 + +2025-09-24 03:10:34,006 INFO Connection check task end + +2025-09-24 03:10:36,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:37,008 INFO Connection check task start + +2025-09-24 03:10:37,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:37,008 INFO Out dated connection ,size=0 + +2025-09-24 03:10:37,008 INFO Connection check task end + +2025-09-24 03:10:39,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:40,010 INFO Connection check task start + +2025-09-24 03:10:40,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:40,010 INFO Out dated connection ,size=0 + +2025-09-24 03:10:40,010 INFO Connection check task end + +2025-09-24 03:10:42,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:43,012 INFO Connection check task start + +2025-09-24 03:10:43,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:43,012 INFO Out dated connection ,size=0 + +2025-09-24 03:10:43,012 INFO Connection check task end + +2025-09-24 03:10:45,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:46,012 INFO Connection check task start + +2025-09-24 03:10:46,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:46,013 INFO Out dated connection ,size=0 + +2025-09-24 03:10:46,013 INFO Connection check task end + +2025-09-24 03:10:48,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:49,016 INFO Connection check task start + +2025-09-24 03:10:49,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:49,016 INFO Out dated connection ,size=0 + +2025-09-24 03:10:49,016 INFO Connection check task end + +2025-09-24 03:10:51,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:52,018 INFO Connection check task start + +2025-09-24 03:10:52,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:52,018 INFO Out dated connection ,size=0 + +2025-09-24 03:10:52,018 INFO Connection check task end + +2025-09-24 03:10:54,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:55,019 INFO Connection check task start + +2025-09-24 03:10:55,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:55,019 INFO Out dated connection ,size=0 + +2025-09-24 03:10:55,019 INFO Connection check task end + +2025-09-24 03:10:57,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:10:58,019 INFO Connection check task start + +2025-09-24 03:10:58,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:10:58,020 INFO Out dated connection ,size=0 + +2025-09-24 03:10:58,020 INFO Connection check task end + +2025-09-24 03:11:00,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:01,022 INFO Connection check task start + +2025-09-24 03:11:01,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:01,022 INFO Out dated connection ,size=0 + +2025-09-24 03:11:01,022 INFO Connection check task end + +2025-09-24 03:11:03,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:04,022 INFO Connection check task start + +2025-09-24 03:11:04,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:04,022 INFO Out dated connection ,size=0 + +2025-09-24 03:11:04,023 INFO Connection check task end + +2025-09-24 03:11:06,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:07,024 INFO Connection check task start + +2025-09-24 03:11:07,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:07,024 INFO Out dated connection ,size=0 + +2025-09-24 03:11:07,024 INFO Connection check task end + +2025-09-24 03:11:09,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:10,025 INFO Connection check task start + +2025-09-24 03:11:10,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:10,025 INFO Out dated connection ,size=0 + +2025-09-24 03:11:10,025 INFO Connection check task end + +2025-09-24 03:11:12,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:13,025 INFO Connection check task start + +2025-09-24 03:11:13,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:13,026 INFO Out dated connection ,size=0 + +2025-09-24 03:11:13,026 INFO Connection check task end + +2025-09-24 03:11:15,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:16,027 INFO Connection check task start + +2025-09-24 03:11:16,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:16,027 INFO Out dated connection ,size=0 + +2025-09-24 03:11:16,027 INFO Connection check task end + +2025-09-24 03:11:18,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:19,027 INFO Connection check task start + +2025-09-24 03:11:19,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:19,027 INFO Out dated connection ,size=0 + +2025-09-24 03:11:19,027 INFO Connection check task end + +2025-09-24 03:11:21,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:22,030 INFO Connection check task start + +2025-09-24 03:11:22,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:22,030 INFO Out dated connection ,size=0 + +2025-09-24 03:11:22,030 INFO Connection check task end + +2025-09-24 03:11:24,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:25,031 INFO Connection check task start + +2025-09-24 03:11:25,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:25,031 INFO Out dated connection ,size=0 + +2025-09-24 03:11:25,031 INFO Connection check task end + +2025-09-24 03:11:27,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:28,033 INFO Connection check task start + +2025-09-24 03:11:28,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:28,033 INFO Out dated connection ,size=0 + +2025-09-24 03:11:28,033 INFO Connection check task end + +2025-09-24 03:11:30,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:31,034 INFO Connection check task start + +2025-09-24 03:11:31,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:31,034 INFO Out dated connection ,size=0 + +2025-09-24 03:11:31,034 INFO Connection check task end + +2025-09-24 03:11:33,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:34,035 INFO Connection check task start + +2025-09-24 03:11:34,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:34,035 INFO Out dated connection ,size=0 + +2025-09-24 03:11:34,035 INFO Connection check task end + +2025-09-24 03:11:36,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:37,037 INFO Connection check task start + +2025-09-24 03:11:37,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:37,038 INFO Out dated connection ,size=0 + +2025-09-24 03:11:37,038 INFO Connection check task end + +2025-09-24 03:11:39,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:40,039 INFO Connection check task start + +2025-09-24 03:11:40,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:40,039 INFO Out dated connection ,size=0 + +2025-09-24 03:11:40,039 INFO Connection check task end + +2025-09-24 03:11:42,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:43,039 INFO Connection check task start + +2025-09-24 03:11:43,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:43,039 INFO Out dated connection ,size=0 + +2025-09-24 03:11:43,040 INFO Connection check task end + +2025-09-24 03:11:45,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:46,040 INFO Connection check task start + +2025-09-24 03:11:46,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:46,040 INFO Out dated connection ,size=0 + +2025-09-24 03:11:46,040 INFO Connection check task end + +2025-09-24 03:11:48,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:49,041 INFO Connection check task start + +2025-09-24 03:11:49,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:49,041 INFO Out dated connection ,size=0 + +2025-09-24 03:11:49,041 INFO Connection check task end + +2025-09-24 03:11:51,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:52,044 INFO Connection check task start + +2025-09-24 03:11:52,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:52,044 INFO Out dated connection ,size=0 + +2025-09-24 03:11:52,044 INFO Connection check task end + +2025-09-24 03:11:54,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:55,046 INFO Connection check task start + +2025-09-24 03:11:55,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:55,046 INFO Out dated connection ,size=0 + +2025-09-24 03:11:55,046 INFO Connection check task end + +2025-09-24 03:11:57,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:11:58,048 INFO Connection check task start + +2025-09-24 03:11:58,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:11:58,048 INFO Out dated connection ,size=0 + +2025-09-24 03:11:58,048 INFO Connection check task end + +2025-09-24 03:12:00,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:01,050 INFO Connection check task start + +2025-09-24 03:12:01,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:01,050 INFO Out dated connection ,size=0 + +2025-09-24 03:12:01,050 INFO Connection check task end + +2025-09-24 03:12:03,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:04,051 INFO Connection check task start + +2025-09-24 03:12:04,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:04,051 INFO Out dated connection ,size=0 + +2025-09-24 03:12:04,051 INFO Connection check task end + +2025-09-24 03:12:06,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:07,052 INFO Connection check task start + +2025-09-24 03:12:07,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:07,052 INFO Out dated connection ,size=0 + +2025-09-24 03:12:07,052 INFO Connection check task end + +2025-09-24 03:12:09,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:10,053 INFO Connection check task start + +2025-09-24 03:12:10,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:10,053 INFO Out dated connection ,size=0 + +2025-09-24 03:12:10,053 INFO Connection check task end + +2025-09-24 03:12:12,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:13,054 INFO Connection check task start + +2025-09-24 03:12:13,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:13,054 INFO Out dated connection ,size=0 + +2025-09-24 03:12:13,054 INFO Connection check task end + +2025-09-24 03:12:15,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:16,054 INFO Connection check task start + +2025-09-24 03:12:16,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:16,055 INFO Out dated connection ,size=0 + +2025-09-24 03:12:16,055 INFO Connection check task end + +2025-09-24 03:12:18,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:19,056 INFO Connection check task start + +2025-09-24 03:12:19,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:19,056 INFO Out dated connection ,size=0 + +2025-09-24 03:12:19,056 INFO Connection check task end + +2025-09-24 03:12:21,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:22,056 INFO Connection check task start + +2025-09-24 03:12:22,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:22,057 INFO Out dated connection ,size=0 + +2025-09-24 03:12:22,057 INFO Connection check task end + +2025-09-24 03:12:24,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:25,057 INFO Connection check task start + +2025-09-24 03:12:25,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:25,057 INFO Out dated connection ,size=0 + +2025-09-24 03:12:25,057 INFO Connection check task end + +2025-09-24 03:12:27,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:28,058 INFO Connection check task start + +2025-09-24 03:12:28,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:28,058 INFO Out dated connection ,size=0 + +2025-09-24 03:12:28,058 INFO Connection check task end + +2025-09-24 03:12:30,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:31,059 INFO Connection check task start + +2025-09-24 03:12:31,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:31,059 INFO Out dated connection ,size=0 + +2025-09-24 03:12:31,059 INFO Connection check task end + +2025-09-24 03:12:33,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:34,059 INFO Connection check task start + +2025-09-24 03:12:34,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:34,060 INFO Out dated connection ,size=0 + +2025-09-24 03:12:34,060 INFO Connection check task end + +2025-09-24 03:12:36,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:37,061 INFO Connection check task start + +2025-09-24 03:12:37,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:37,061 INFO Out dated connection ,size=0 + +2025-09-24 03:12:37,061 INFO Connection check task end + +2025-09-24 03:12:39,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:40,062 INFO Connection check task start + +2025-09-24 03:12:40,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:40,062 INFO Out dated connection ,size=0 + +2025-09-24 03:12:40,062 INFO Connection check task end + +2025-09-24 03:12:42,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:43,064 INFO Connection check task start + +2025-09-24 03:12:43,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:43,064 INFO Out dated connection ,size=0 + +2025-09-24 03:12:43,064 INFO Connection check task end + +2025-09-24 03:12:45,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:46,065 INFO Connection check task start + +2025-09-24 03:12:46,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:46,065 INFO Out dated connection ,size=0 + +2025-09-24 03:12:46,066 INFO Connection check task end + +2025-09-24 03:12:48,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:49,066 INFO Connection check task start + +2025-09-24 03:12:49,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:49,066 INFO Out dated connection ,size=0 + +2025-09-24 03:12:49,066 INFO Connection check task end + +2025-09-24 03:12:51,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:52,068 INFO Connection check task start + +2025-09-24 03:12:52,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:52,068 INFO Out dated connection ,size=0 + +2025-09-24 03:12:52,068 INFO Connection check task end + +2025-09-24 03:12:54,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:55,069 INFO Connection check task start + +2025-09-24 03:12:55,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:55,069 INFO Out dated connection ,size=0 + +2025-09-24 03:12:55,069 INFO Connection check task end + +2025-09-24 03:12:57,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:12:58,070 INFO Connection check task start + +2025-09-24 03:12:58,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:12:58,070 INFO Out dated connection ,size=0 + +2025-09-24 03:12:58,070 INFO Connection check task end + +2025-09-24 03:13:00,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:01,071 INFO Connection check task start + +2025-09-24 03:13:01,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:01,071 INFO Out dated connection ,size=0 + +2025-09-24 03:13:01,071 INFO Connection check task end + +2025-09-24 03:13:03,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:04,072 INFO Connection check task start + +2025-09-24 03:13:04,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:04,072 INFO Out dated connection ,size=0 + +2025-09-24 03:13:04,072 INFO Connection check task end + +2025-09-24 03:13:06,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:07,072 INFO Connection check task start + +2025-09-24 03:13:07,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:07,072 INFO Out dated connection ,size=0 + +2025-09-24 03:13:07,072 INFO Connection check task end + +2025-09-24 03:13:09,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:10,072 INFO Connection check task start + +2025-09-24 03:13:10,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:10,073 INFO Out dated connection ,size=0 + +2025-09-24 03:13:10,073 INFO Connection check task end + +2025-09-24 03:13:12,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:13,073 INFO Connection check task start + +2025-09-24 03:13:13,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:13,073 INFO Out dated connection ,size=0 + +2025-09-24 03:13:13,073 INFO Connection check task end + +2025-09-24 03:13:15,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:16,074 INFO Connection check task start + +2025-09-24 03:13:16,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:16,074 INFO Out dated connection ,size=0 + +2025-09-24 03:13:16,074 INFO Connection check task end + +2025-09-24 03:13:18,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:19,075 INFO Connection check task start + +2025-09-24 03:13:19,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:19,075 INFO Out dated connection ,size=0 + +2025-09-24 03:13:19,075 INFO Connection check task end + +2025-09-24 03:13:21,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:22,077 INFO Connection check task start + +2025-09-24 03:13:22,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:22,077 INFO Out dated connection ,size=0 + +2025-09-24 03:13:22,077 INFO Connection check task end + +2025-09-24 03:13:24,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:25,077 INFO Connection check task start + +2025-09-24 03:13:25,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:25,077 INFO Out dated connection ,size=0 + +2025-09-24 03:13:25,077 INFO Connection check task end + +2025-09-24 03:13:27,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:28,078 INFO Connection check task start + +2025-09-24 03:13:28,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:28,078 INFO Out dated connection ,size=0 + +2025-09-24 03:13:28,078 INFO Connection check task end + +2025-09-24 03:13:30,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:31,079 INFO Connection check task start + +2025-09-24 03:13:31,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:31,079 INFO Out dated connection ,size=0 + +2025-09-24 03:13:31,080 INFO Connection check task end + +2025-09-24 03:13:33,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:34,082 INFO Connection check task start + +2025-09-24 03:13:34,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:34,082 INFO Out dated connection ,size=0 + +2025-09-24 03:13:34,082 INFO Connection check task end + +2025-09-24 03:13:36,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:37,084 INFO Connection check task start + +2025-09-24 03:13:37,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:37,084 INFO Out dated connection ,size=0 + +2025-09-24 03:13:37,084 INFO Connection check task end + +2025-09-24 03:13:39,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:40,085 INFO Connection check task start + +2025-09-24 03:13:40,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:40,086 INFO Out dated connection ,size=0 + +2025-09-24 03:13:40,086 INFO Connection check task end + +2025-09-24 03:13:42,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:43,087 INFO Connection check task start + +2025-09-24 03:13:43,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:43,087 INFO Out dated connection ,size=0 + +2025-09-24 03:13:43,087 INFO Connection check task end + +2025-09-24 03:13:45,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:46,088 INFO Connection check task start + +2025-09-24 03:13:46,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:46,088 INFO Out dated connection ,size=0 + +2025-09-24 03:13:46,088 INFO Connection check task end + +2025-09-24 03:13:48,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:49,089 INFO Connection check task start + +2025-09-24 03:13:49,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:49,089 INFO Out dated connection ,size=0 + +2025-09-24 03:13:49,089 INFO Connection check task end + +2025-09-24 03:13:51,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:52,090 INFO Connection check task start + +2025-09-24 03:13:52,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:52,090 INFO Out dated connection ,size=0 + +2025-09-24 03:13:52,090 INFO Connection check task end + +2025-09-24 03:13:54,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:55,092 INFO Connection check task start + +2025-09-24 03:13:55,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:55,092 INFO Out dated connection ,size=0 + +2025-09-24 03:13:55,092 INFO Connection check task end + +2025-09-24 03:13:57,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:13:58,093 INFO Connection check task start + +2025-09-24 03:13:58,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:13:58,093 INFO Out dated connection ,size=0 + +2025-09-24 03:13:58,093 INFO Connection check task end + +2025-09-24 03:14:00,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:01,093 INFO Connection check task start + +2025-09-24 03:14:01,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:01,093 INFO Out dated connection ,size=0 + +2025-09-24 03:14:01,094 INFO Connection check task end + +2025-09-24 03:14:03,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:04,094 INFO Connection check task start + +2025-09-24 03:14:04,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:04,094 INFO Out dated connection ,size=0 + +2025-09-24 03:14:04,094 INFO Connection check task end + +2025-09-24 03:14:06,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:07,094 INFO Connection check task start + +2025-09-24 03:14:07,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:07,095 INFO Out dated connection ,size=0 + +2025-09-24 03:14:07,095 INFO Connection check task end + +2025-09-24 03:14:09,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:10,096 INFO Connection check task start + +2025-09-24 03:14:10,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:10,096 INFO Out dated connection ,size=0 + +2025-09-24 03:14:10,096 INFO Connection check task end + +2025-09-24 03:14:12,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:13,096 INFO Connection check task start + +2025-09-24 03:14:13,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:13,097 INFO Out dated connection ,size=0 + +2025-09-24 03:14:13,097 INFO Connection check task end + +2025-09-24 03:14:15,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:16,097 INFO Connection check task start + +2025-09-24 03:14:16,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:16,097 INFO Out dated connection ,size=0 + +2025-09-24 03:14:16,097 INFO Connection check task end + +2025-09-24 03:14:18,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:19,097 INFO Connection check task start + +2025-09-24 03:14:19,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:19,098 INFO Out dated connection ,size=0 + +2025-09-24 03:14:19,098 INFO Connection check task end + +2025-09-24 03:14:21,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:22,098 INFO Connection check task start + +2025-09-24 03:14:22,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:22,098 INFO Out dated connection ,size=0 + +2025-09-24 03:14:22,098 INFO Connection check task end + +2025-09-24 03:14:24,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:25,099 INFO Connection check task start + +2025-09-24 03:14:25,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:25,099 INFO Out dated connection ,size=0 + +2025-09-24 03:14:25,099 INFO Connection check task end + +2025-09-24 03:14:27,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:28,100 INFO Connection check task start + +2025-09-24 03:14:28,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:28,100 INFO Out dated connection ,size=0 + +2025-09-24 03:14:28,100 INFO Connection check task end + +2025-09-24 03:14:30,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:31,101 INFO Connection check task start + +2025-09-24 03:14:31,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:31,101 INFO Out dated connection ,size=0 + +2025-09-24 03:14:31,101 INFO Connection check task end + +2025-09-24 03:14:33,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:34,102 INFO Connection check task start + +2025-09-24 03:14:34,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:34,102 INFO Out dated connection ,size=0 + +2025-09-24 03:14:34,102 INFO Connection check task end + +2025-09-24 03:14:36,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:37,104 INFO Connection check task start + +2025-09-24 03:14:37,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:37,104 INFO Out dated connection ,size=0 + +2025-09-24 03:14:37,104 INFO Connection check task end + +2025-09-24 03:14:39,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:40,106 INFO Connection check task start + +2025-09-24 03:14:40,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:40,107 INFO Out dated connection ,size=0 + +2025-09-24 03:14:40,107 INFO Connection check task end + +2025-09-24 03:14:42,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:43,108 INFO Connection check task start + +2025-09-24 03:14:43,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:43,108 INFO Out dated connection ,size=0 + +2025-09-24 03:14:43,108 INFO Connection check task end + +2025-09-24 03:14:45,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:46,110 INFO Connection check task start + +2025-09-24 03:14:46,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:46,110 INFO Out dated connection ,size=0 + +2025-09-24 03:14:46,110 INFO Connection check task end + +2025-09-24 03:14:48,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:49,112 INFO Connection check task start + +2025-09-24 03:14:49,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:49,112 INFO Out dated connection ,size=0 + +2025-09-24 03:14:49,113 INFO Connection check task end + +2025-09-24 03:14:51,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:52,113 INFO Connection check task start + +2025-09-24 03:14:52,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:52,113 INFO Out dated connection ,size=0 + +2025-09-24 03:14:52,113 INFO Connection check task end + +2025-09-24 03:14:54,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:55,115 INFO Connection check task start + +2025-09-24 03:14:55,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:55,115 INFO Out dated connection ,size=0 + +2025-09-24 03:14:55,115 INFO Connection check task end + +2025-09-24 03:14:57,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:14:58,117 INFO Connection check task start + +2025-09-24 03:14:58,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:14:58,117 INFO Out dated connection ,size=0 + +2025-09-24 03:14:58,117 INFO Connection check task end + +2025-09-24 03:15:00,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:01,118 INFO Connection check task start + +2025-09-24 03:15:01,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:01,118 INFO Out dated connection ,size=0 + +2025-09-24 03:15:01,118 INFO Connection check task end + +2025-09-24 03:15:03,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:04,120 INFO Connection check task start + +2025-09-24 03:15:04,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:04,120 INFO Out dated connection ,size=0 + +2025-09-24 03:15:04,120 INFO Connection check task end + +2025-09-24 03:15:06,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:07,122 INFO Connection check task start + +2025-09-24 03:15:07,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:07,122 INFO Out dated connection ,size=0 + +2025-09-24 03:15:07,122 INFO Connection check task end + +2025-09-24 03:15:09,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:10,123 INFO Connection check task start + +2025-09-24 03:15:10,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:10,123 INFO Out dated connection ,size=0 + +2025-09-24 03:15:10,123 INFO Connection check task end + +2025-09-24 03:15:12,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:13,125 INFO Connection check task start + +2025-09-24 03:15:13,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:13,125 INFO Out dated connection ,size=0 + +2025-09-24 03:15:13,125 INFO Connection check task end + +2025-09-24 03:15:15,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:16,126 INFO Connection check task start + +2025-09-24 03:15:16,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:16,126 INFO Out dated connection ,size=0 + +2025-09-24 03:15:16,127 INFO Connection check task end + +2025-09-24 03:15:18,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:19,127 INFO Connection check task start + +2025-09-24 03:15:19,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:19,127 INFO Out dated connection ,size=0 + +2025-09-24 03:15:19,127 INFO Connection check task end + +2025-09-24 03:15:21,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:22,128 INFO Connection check task start + +2025-09-24 03:15:22,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:22,128 INFO Out dated connection ,size=0 + +2025-09-24 03:15:22,128 INFO Connection check task end + +2025-09-24 03:15:24,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:25,129 INFO Connection check task start + +2025-09-24 03:15:25,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:25,129 INFO Out dated connection ,size=0 + +2025-09-24 03:15:25,129 INFO Connection check task end + +2025-09-24 03:15:27,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:28,131 INFO Connection check task start + +2025-09-24 03:15:28,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:28,131 INFO Out dated connection ,size=0 + +2025-09-24 03:15:28,131 INFO Connection check task end + +2025-09-24 03:15:30,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:31,131 INFO Connection check task start + +2025-09-24 03:15:31,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:31,132 INFO Out dated connection ,size=0 + +2025-09-24 03:15:31,132 INFO Connection check task end + +2025-09-24 03:15:33,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:34,133 INFO Connection check task start + +2025-09-24 03:15:34,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:34,133 INFO Out dated connection ,size=0 + +2025-09-24 03:15:34,133 INFO Connection check task end + +2025-09-24 03:15:36,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:37,134 INFO Connection check task start + +2025-09-24 03:15:37,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:37,134 INFO Out dated connection ,size=0 + +2025-09-24 03:15:37,134 INFO Connection check task end + +2025-09-24 03:15:39,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:40,134 INFO Connection check task start + +2025-09-24 03:15:40,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:40,134 INFO Out dated connection ,size=0 + +2025-09-24 03:15:40,134 INFO Connection check task end + +2025-09-24 03:15:42,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:43,135 INFO Connection check task start + +2025-09-24 03:15:43,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:43,136 INFO Out dated connection ,size=0 + +2025-09-24 03:15:43,136 INFO Connection check task end + +2025-09-24 03:15:45,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:46,136 INFO Connection check task start + +2025-09-24 03:15:46,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:46,136 INFO Out dated connection ,size=0 + +2025-09-24 03:15:46,136 INFO Connection check task end + +2025-09-24 03:15:48,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:49,138 INFO Connection check task start + +2025-09-24 03:15:49,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:49,138 INFO Out dated connection ,size=0 + +2025-09-24 03:15:49,138 INFO Connection check task end + +2025-09-24 03:15:51,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:52,139 INFO Connection check task start + +2025-09-24 03:15:52,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:52,139 INFO Out dated connection ,size=0 + +2025-09-24 03:15:52,139 INFO Connection check task end + +2025-09-24 03:15:54,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:55,140 INFO Connection check task start + +2025-09-24 03:15:55,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:55,140 INFO Out dated connection ,size=0 + +2025-09-24 03:15:55,140 INFO Connection check task end + +2025-09-24 03:15:57,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:15:58,142 INFO Connection check task start + +2025-09-24 03:15:58,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:15:58,142 INFO Out dated connection ,size=0 + +2025-09-24 03:15:58,142 INFO Connection check task end + +2025-09-24 03:16:00,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:01,143 INFO Connection check task start + +2025-09-24 03:16:01,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:01,143 INFO Out dated connection ,size=0 + +2025-09-24 03:16:01,143 INFO Connection check task end + +2025-09-24 03:16:03,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:04,145 INFO Connection check task start + +2025-09-24 03:16:04,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:04,145 INFO Out dated connection ,size=0 + +2025-09-24 03:16:04,145 INFO Connection check task end + +2025-09-24 03:16:06,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:07,145 INFO Connection check task start + +2025-09-24 03:16:07,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:07,145 INFO Out dated connection ,size=0 + +2025-09-24 03:16:07,146 INFO Connection check task end + +2025-09-24 03:16:09,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:10,146 INFO Connection check task start + +2025-09-24 03:16:10,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:10,146 INFO Out dated connection ,size=0 + +2025-09-24 03:16:10,146 INFO Connection check task end + +2025-09-24 03:16:12,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:13,146 INFO Connection check task start + +2025-09-24 03:16:13,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:13,146 INFO Out dated connection ,size=0 + +2025-09-24 03:16:13,146 INFO Connection check task end + +2025-09-24 03:16:15,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:16,147 INFO Connection check task start + +2025-09-24 03:16:16,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:16,148 INFO Out dated connection ,size=0 + +2025-09-24 03:16:16,148 INFO Connection check task end + +2025-09-24 03:16:18,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:19,148 INFO Connection check task start + +2025-09-24 03:16:19,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:19,148 INFO Out dated connection ,size=0 + +2025-09-24 03:16:19,148 INFO Connection check task end + +2025-09-24 03:16:21,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:22,149 INFO Connection check task start + +2025-09-24 03:16:22,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:22,150 INFO Out dated connection ,size=0 + +2025-09-24 03:16:22,150 INFO Connection check task end + +2025-09-24 03:16:24,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:25,150 INFO Connection check task start + +2025-09-24 03:16:25,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:25,150 INFO Out dated connection ,size=0 + +2025-09-24 03:16:25,150 INFO Connection check task end + +2025-09-24 03:16:27,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:28,150 INFO Connection check task start + +2025-09-24 03:16:28,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:28,151 INFO Out dated connection ,size=0 + +2025-09-24 03:16:28,151 INFO Connection check task end + +2025-09-24 03:16:30,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:31,153 INFO Connection check task start + +2025-09-24 03:16:31,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:31,153 INFO Out dated connection ,size=0 + +2025-09-24 03:16:31,153 INFO Connection check task end + +2025-09-24 03:16:33,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:34,153 INFO Connection check task start + +2025-09-24 03:16:34,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:34,154 INFO Out dated connection ,size=0 + +2025-09-24 03:16:34,154 INFO Connection check task end + +2025-09-24 03:16:36,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:37,156 INFO Connection check task start + +2025-09-24 03:16:37,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:37,156 INFO Out dated connection ,size=0 + +2025-09-24 03:16:37,156 INFO Connection check task end + +2025-09-24 03:16:39,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:40,156 INFO Connection check task start + +2025-09-24 03:16:40,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:40,157 INFO Out dated connection ,size=0 + +2025-09-24 03:16:40,157 INFO Connection check task end + +2025-09-24 03:16:42,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:43,158 INFO Connection check task start + +2025-09-24 03:16:43,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:43,158 INFO Out dated connection ,size=0 + +2025-09-24 03:16:43,158 INFO Connection check task end + +2025-09-24 03:16:45,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:46,159 INFO Connection check task start + +2025-09-24 03:16:46,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:46,159 INFO Out dated connection ,size=0 + +2025-09-24 03:16:46,159 INFO Connection check task end + +2025-09-24 03:16:48,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:49,160 INFO Connection check task start + +2025-09-24 03:16:49,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:49,160 INFO Out dated connection ,size=0 + +2025-09-24 03:16:49,160 INFO Connection check task end + +2025-09-24 03:16:51,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:52,161 INFO Connection check task start + +2025-09-24 03:16:52,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:52,162 INFO Out dated connection ,size=0 + +2025-09-24 03:16:52,162 INFO Connection check task end + +2025-09-24 03:16:54,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:55,162 INFO Connection check task start + +2025-09-24 03:16:55,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:55,162 INFO Out dated connection ,size=0 + +2025-09-24 03:16:55,162 INFO Connection check task end + +2025-09-24 03:16:57,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:16:58,162 INFO Connection check task start + +2025-09-24 03:16:58,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:16:58,162 INFO Out dated connection ,size=0 + +2025-09-24 03:16:58,162 INFO Connection check task end + +2025-09-24 03:17:00,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:01,163 INFO Connection check task start + +2025-09-24 03:17:01,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:01,163 INFO Out dated connection ,size=0 + +2025-09-24 03:17:01,163 INFO Connection check task end + +2025-09-24 03:17:03,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:04,164 INFO Connection check task start + +2025-09-24 03:17:04,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:04,165 INFO Out dated connection ,size=0 + +2025-09-24 03:17:04,165 INFO Connection check task end + +2025-09-24 03:17:06,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:07,165 INFO Connection check task start + +2025-09-24 03:17:07,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:07,165 INFO Out dated connection ,size=0 + +2025-09-24 03:17:07,165 INFO Connection check task end + +2025-09-24 03:17:09,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:10,166 INFO Connection check task start + +2025-09-24 03:17:10,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:10,166 INFO Out dated connection ,size=0 + +2025-09-24 03:17:10,166 INFO Connection check task end + +2025-09-24 03:17:12,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:13,166 INFO Connection check task start + +2025-09-24 03:17:13,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:13,166 INFO Out dated connection ,size=0 + +2025-09-24 03:17:13,166 INFO Connection check task end + +2025-09-24 03:17:15,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:16,167 INFO Connection check task start + +2025-09-24 03:17:16,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:16,167 INFO Out dated connection ,size=0 + +2025-09-24 03:17:16,167 INFO Connection check task end + +2025-09-24 03:17:18,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:19,167 INFO Connection check task start + +2025-09-24 03:17:19,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:19,168 INFO Out dated connection ,size=0 + +2025-09-24 03:17:19,168 INFO Connection check task end + +2025-09-24 03:17:21,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:22,170 INFO Connection check task start + +2025-09-24 03:17:22,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:22,170 INFO Out dated connection ,size=0 + +2025-09-24 03:17:22,170 INFO Connection check task end + +2025-09-24 03:17:24,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:25,170 INFO Connection check task start + +2025-09-24 03:17:25,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:25,170 INFO Out dated connection ,size=0 + +2025-09-24 03:17:25,170 INFO Connection check task end + +2025-09-24 03:17:27,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:28,170 INFO Connection check task start + +2025-09-24 03:17:28,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:28,170 INFO Out dated connection ,size=0 + +2025-09-24 03:17:28,171 INFO Connection check task end + +2025-09-24 03:17:30,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:31,171 INFO Connection check task start + +2025-09-24 03:17:31,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:31,171 INFO Out dated connection ,size=0 + +2025-09-24 03:17:31,171 INFO Connection check task end + +2025-09-24 03:17:33,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:34,173 INFO Connection check task start + +2025-09-24 03:17:34,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:34,173 INFO Out dated connection ,size=0 + +2025-09-24 03:17:34,173 INFO Connection check task end + +2025-09-24 03:17:36,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:37,174 INFO Connection check task start + +2025-09-24 03:17:37,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:37,174 INFO Out dated connection ,size=0 + +2025-09-24 03:17:37,174 INFO Connection check task end + +2025-09-24 03:17:39,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:40,174 INFO Connection check task start + +2025-09-24 03:17:40,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:40,175 INFO Out dated connection ,size=0 + +2025-09-24 03:17:40,175 INFO Connection check task end + +2025-09-24 03:17:42,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:43,175 INFO Connection check task start + +2025-09-24 03:17:43,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:43,175 INFO Out dated connection ,size=0 + +2025-09-24 03:17:43,175 INFO Connection check task end + +2025-09-24 03:17:45,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:46,177 INFO Connection check task start + +2025-09-24 03:17:46,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:46,177 INFO Out dated connection ,size=0 + +2025-09-24 03:17:46,177 INFO Connection check task end + +2025-09-24 03:17:48,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:49,179 INFO Connection check task start + +2025-09-24 03:17:49,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:49,179 INFO Out dated connection ,size=0 + +2025-09-24 03:17:49,179 INFO Connection check task end + +2025-09-24 03:17:51,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:52,181 INFO Connection check task start + +2025-09-24 03:17:52,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:52,181 INFO Out dated connection ,size=0 + +2025-09-24 03:17:52,181 INFO Connection check task end + +2025-09-24 03:17:54,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:55,183 INFO Connection check task start + +2025-09-24 03:17:55,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:55,183 INFO Out dated connection ,size=0 + +2025-09-24 03:17:55,183 INFO Connection check task end + +2025-09-24 03:17:57,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:17:58,183 INFO Connection check task start + +2025-09-24 03:17:58,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:17:58,183 INFO Out dated connection ,size=0 + +2025-09-24 03:17:58,183 INFO Connection check task end + +2025-09-24 03:18:00,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:01,185 INFO Connection check task start + +2025-09-24 03:18:01,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:01,185 INFO Out dated connection ,size=0 + +2025-09-24 03:18:01,186 INFO Connection check task end + +2025-09-24 03:18:03,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:04,186 INFO Connection check task start + +2025-09-24 03:18:04,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:04,186 INFO Out dated connection ,size=0 + +2025-09-24 03:18:04,186 INFO Connection check task end + +2025-09-24 03:18:06,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:07,187 INFO Connection check task start + +2025-09-24 03:18:07,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:07,187 INFO Out dated connection ,size=0 + +2025-09-24 03:18:07,187 INFO Connection check task end + +2025-09-24 03:18:09,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:10,189 INFO Connection check task start + +2025-09-24 03:18:10,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:10,190 INFO Out dated connection ,size=0 + +2025-09-24 03:18:10,190 INFO Connection check task end + +2025-09-24 03:18:12,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:13,192 INFO Connection check task start + +2025-09-24 03:18:13,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:13,192 INFO Out dated connection ,size=0 + +2025-09-24 03:18:13,192 INFO Connection check task end + +2025-09-24 03:18:15,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:16,194 INFO Connection check task start + +2025-09-24 03:18:16,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:16,194 INFO Out dated connection ,size=0 + +2025-09-24 03:18:16,194 INFO Connection check task end + +2025-09-24 03:18:18,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:19,196 INFO Connection check task start + +2025-09-24 03:18:19,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:19,199 INFO Out dated connection ,size=0 + +2025-09-24 03:18:19,200 INFO Connection check task end + +2025-09-24 03:18:21,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:22,200 INFO Connection check task start + +2025-09-24 03:18:22,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:22,200 INFO Out dated connection ,size=0 + +2025-09-24 03:18:22,200 INFO Connection check task end + +2025-09-24 03:18:24,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:25,201 INFO Connection check task start + +2025-09-24 03:18:25,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:25,201 INFO Out dated connection ,size=0 + +2025-09-24 03:18:25,201 INFO Connection check task end + +2025-09-24 03:18:27,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:28,202 INFO Connection check task start + +2025-09-24 03:18:28,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:28,202 INFO Out dated connection ,size=0 + +2025-09-24 03:18:28,202 INFO Connection check task end + +2025-09-24 03:18:30,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:31,203 INFO Connection check task start + +2025-09-24 03:18:31,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:31,203 INFO Out dated connection ,size=0 + +2025-09-24 03:18:31,203 INFO Connection check task end + +2025-09-24 03:18:33,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:34,203 INFO Connection check task start + +2025-09-24 03:18:34,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:34,204 INFO Out dated connection ,size=0 + +2025-09-24 03:18:34,204 INFO Connection check task end + +2025-09-24 03:18:36,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:37,206 INFO Connection check task start + +2025-09-24 03:18:37,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:37,206 INFO Out dated connection ,size=0 + +2025-09-24 03:18:37,206 INFO Connection check task end + +2025-09-24 03:18:39,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:40,208 INFO Connection check task start + +2025-09-24 03:18:40,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:40,208 INFO Out dated connection ,size=0 + +2025-09-24 03:18:40,208 INFO Connection check task end + +2025-09-24 03:18:42,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:43,210 INFO Connection check task start + +2025-09-24 03:18:43,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:43,210 INFO Out dated connection ,size=0 + +2025-09-24 03:18:43,210 INFO Connection check task end + +2025-09-24 03:18:45,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:46,210 INFO Connection check task start + +2025-09-24 03:18:46,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:46,211 INFO Out dated connection ,size=0 + +2025-09-24 03:18:46,211 INFO Connection check task end + +2025-09-24 03:18:48,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:49,211 INFO Connection check task start + +2025-09-24 03:18:49,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:49,211 INFO Out dated connection ,size=0 + +2025-09-24 03:18:49,211 INFO Connection check task end + +2025-09-24 03:18:51,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:52,213 INFO Connection check task start + +2025-09-24 03:18:52,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:52,213 INFO Out dated connection ,size=0 + +2025-09-24 03:18:52,213 INFO Connection check task end + +2025-09-24 03:18:54,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:55,213 INFO Connection check task start + +2025-09-24 03:18:55,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:55,213 INFO Out dated connection ,size=0 + +2025-09-24 03:18:55,213 INFO Connection check task end + +2025-09-24 03:18:57,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:18:58,214 INFO Connection check task start + +2025-09-24 03:18:58,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:18:58,214 INFO Out dated connection ,size=0 + +2025-09-24 03:18:58,214 INFO Connection check task end + +2025-09-24 03:19:00,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:01,214 INFO Connection check task start + +2025-09-24 03:19:01,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:01,215 INFO Out dated connection ,size=0 + +2025-09-24 03:19:01,215 INFO Connection check task end + +2025-09-24 03:19:03,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:04,216 INFO Connection check task start + +2025-09-24 03:19:04,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:04,216 INFO Out dated connection ,size=0 + +2025-09-24 03:19:04,216 INFO Connection check task end + +2025-09-24 03:19:06,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:07,218 INFO Connection check task start + +2025-09-24 03:19:07,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:07,219 INFO Out dated connection ,size=0 + +2025-09-24 03:19:07,219 INFO Connection check task end + +2025-09-24 03:19:09,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:10,221 INFO Connection check task start + +2025-09-24 03:19:10,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:10,221 INFO Out dated connection ,size=0 + +2025-09-24 03:19:10,221 INFO Connection check task end + +2025-09-24 03:19:12,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:13,221 INFO Connection check task start + +2025-09-24 03:19:13,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:13,222 INFO Out dated connection ,size=0 + +2025-09-24 03:19:13,222 INFO Connection check task end + +2025-09-24 03:19:15,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:16,222 INFO Connection check task start + +2025-09-24 03:19:16,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:16,222 INFO Out dated connection ,size=0 + +2025-09-24 03:19:16,222 INFO Connection check task end + +2025-09-24 03:19:18,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:19,223 INFO Connection check task start + +2025-09-24 03:19:19,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:19,223 INFO Out dated connection ,size=0 + +2025-09-24 03:19:19,223 INFO Connection check task end + +2025-09-24 03:19:21,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:22,223 INFO Connection check task start + +2025-09-24 03:19:22,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:22,224 INFO Out dated connection ,size=0 + +2025-09-24 03:19:22,224 INFO Connection check task end + +2025-09-24 03:19:24,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:25,224 INFO Connection check task start + +2025-09-24 03:19:25,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:25,224 INFO Out dated connection ,size=0 + +2025-09-24 03:19:25,224 INFO Connection check task end + +2025-09-24 03:19:27,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:28,224 INFO Connection check task start + +2025-09-24 03:19:28,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:28,225 INFO Out dated connection ,size=0 + +2025-09-24 03:19:28,225 INFO Connection check task end + +2025-09-24 03:19:30,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:31,225 INFO Connection check task start + +2025-09-24 03:19:31,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:31,225 INFO Out dated connection ,size=0 + +2025-09-24 03:19:31,225 INFO Connection check task end + +2025-09-24 03:19:33,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:34,226 INFO Connection check task start + +2025-09-24 03:19:34,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:34,226 INFO Out dated connection ,size=0 + +2025-09-24 03:19:34,226 INFO Connection check task end + +2025-09-24 03:19:36,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:37,226 INFO Connection check task start + +2025-09-24 03:19:37,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:37,226 INFO Out dated connection ,size=0 + +2025-09-24 03:19:37,226 INFO Connection check task end + +2025-09-24 03:19:39,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:40,227 INFO Connection check task start + +2025-09-24 03:19:40,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:40,227 INFO Out dated connection ,size=0 + +2025-09-24 03:19:40,227 INFO Connection check task end + +2025-09-24 03:19:42,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:43,228 INFO Connection check task start + +2025-09-24 03:19:43,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:43,228 INFO Out dated connection ,size=0 + +2025-09-24 03:19:43,228 INFO Connection check task end + +2025-09-24 03:19:45,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:46,228 INFO Connection check task start + +2025-09-24 03:19:46,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:46,228 INFO Out dated connection ,size=0 + +2025-09-24 03:19:46,228 INFO Connection check task end + +2025-09-24 03:19:48,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:49,229 INFO Connection check task start + +2025-09-24 03:19:49,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:49,229 INFO Out dated connection ,size=0 + +2025-09-24 03:19:49,229 INFO Connection check task end + +2025-09-24 03:19:51,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:52,230 INFO Connection check task start + +2025-09-24 03:19:52,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:52,230 INFO Out dated connection ,size=0 + +2025-09-24 03:19:52,230 INFO Connection check task end + +2025-09-24 03:19:54,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:55,230 INFO Connection check task start + +2025-09-24 03:19:55,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:55,230 INFO Out dated connection ,size=0 + +2025-09-24 03:19:55,230 INFO Connection check task end + +2025-09-24 03:19:57,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:19:58,231 INFO Connection check task start + +2025-09-24 03:19:58,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:19:58,231 INFO Out dated connection ,size=0 + +2025-09-24 03:19:58,231 INFO Connection check task end + +2025-09-24 03:20:00,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:01,232 INFO Connection check task start + +2025-09-24 03:20:01,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:01,232 INFO Out dated connection ,size=0 + +2025-09-24 03:20:01,232 INFO Connection check task end + +2025-09-24 03:20:03,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:04,232 INFO Connection check task start + +2025-09-24 03:20:04,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:04,232 INFO Out dated connection ,size=0 + +2025-09-24 03:20:04,233 INFO Connection check task end + +2025-09-24 03:20:06,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:07,233 INFO Connection check task start + +2025-09-24 03:20:07,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:07,233 INFO Out dated connection ,size=0 + +2025-09-24 03:20:07,233 INFO Connection check task end + +2025-09-24 03:20:09,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:10,233 INFO Connection check task start + +2025-09-24 03:20:10,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:10,234 INFO Out dated connection ,size=0 + +2025-09-24 03:20:10,234 INFO Connection check task end + +2025-09-24 03:20:12,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:13,234 INFO Connection check task start + +2025-09-24 03:20:13,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:13,234 INFO Out dated connection ,size=0 + +2025-09-24 03:20:13,234 INFO Connection check task end + +2025-09-24 03:20:15,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:16,234 INFO Connection check task start + +2025-09-24 03:20:16,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:16,235 INFO Out dated connection ,size=0 + +2025-09-24 03:20:16,235 INFO Connection check task end + +2025-09-24 03:20:18,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:19,235 INFO Connection check task start + +2025-09-24 03:20:19,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:19,235 INFO Out dated connection ,size=0 + +2025-09-24 03:20:19,235 INFO Connection check task end + +2025-09-24 03:20:21,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:22,237 INFO Connection check task start + +2025-09-24 03:20:22,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:22,237 INFO Out dated connection ,size=0 + +2025-09-24 03:20:22,237 INFO Connection check task end + +2025-09-24 03:20:24,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:25,237 INFO Connection check task start + +2025-09-24 03:20:25,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:25,237 INFO Out dated connection ,size=0 + +2025-09-24 03:20:25,237 INFO Connection check task end + +2025-09-24 03:20:27,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:28,238 INFO Connection check task start + +2025-09-24 03:20:28,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:28,238 INFO Out dated connection ,size=0 + +2025-09-24 03:20:28,238 INFO Connection check task end + +2025-09-24 03:20:30,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:31,238 INFO Connection check task start + +2025-09-24 03:20:31,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:31,238 INFO Out dated connection ,size=0 + +2025-09-24 03:20:31,238 INFO Connection check task end + +2025-09-24 03:20:33,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:34,239 INFO Connection check task start + +2025-09-24 03:20:34,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:34,239 INFO Out dated connection ,size=0 + +2025-09-24 03:20:34,239 INFO Connection check task end + +2025-09-24 03:20:36,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:37,239 INFO Connection check task start + +2025-09-24 03:20:37,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:37,239 INFO Out dated connection ,size=0 + +2025-09-24 03:20:37,239 INFO Connection check task end + +2025-09-24 03:20:39,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:40,240 INFO Connection check task start + +2025-09-24 03:20:40,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:40,240 INFO Out dated connection ,size=0 + +2025-09-24 03:20:40,240 INFO Connection check task end + +2025-09-24 03:20:42,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:43,240 INFO Connection check task start + +2025-09-24 03:20:43,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:43,240 INFO Out dated connection ,size=0 + +2025-09-24 03:20:43,240 INFO Connection check task end + +2025-09-24 03:20:45,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:46,241 INFO Connection check task start + +2025-09-24 03:20:46,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:46,241 INFO Out dated connection ,size=0 + +2025-09-24 03:20:46,241 INFO Connection check task end + +2025-09-24 03:20:48,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:49,242 INFO Connection check task start + +2025-09-24 03:20:49,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:49,242 INFO Out dated connection ,size=0 + +2025-09-24 03:20:49,242 INFO Connection check task end + +2025-09-24 03:20:51,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:52,242 INFO Connection check task start + +2025-09-24 03:20:52,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:52,242 INFO Out dated connection ,size=0 + +2025-09-24 03:20:52,242 INFO Connection check task end + +2025-09-24 03:20:54,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:55,243 INFO Connection check task start + +2025-09-24 03:20:55,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:55,243 INFO Out dated connection ,size=0 + +2025-09-24 03:20:55,243 INFO Connection check task end + +2025-09-24 03:20:57,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:20:58,243 INFO Connection check task start + +2025-09-24 03:20:58,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:20:58,244 INFO Out dated connection ,size=0 + +2025-09-24 03:20:58,244 INFO Connection check task end + +2025-09-24 03:21:00,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:01,244 INFO Connection check task start + +2025-09-24 03:21:01,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:01,244 INFO Out dated connection ,size=0 + +2025-09-24 03:21:01,244 INFO Connection check task end + +2025-09-24 03:21:03,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:04,244 INFO Connection check task start + +2025-09-24 03:21:04,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:04,244 INFO Out dated connection ,size=0 + +2025-09-24 03:21:04,244 INFO Connection check task end + +2025-09-24 03:21:06,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:07,245 INFO Connection check task start + +2025-09-24 03:21:07,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:07,245 INFO Out dated connection ,size=0 + +2025-09-24 03:21:07,245 INFO Connection check task end + +2025-09-24 03:21:09,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:10,246 INFO Connection check task start + +2025-09-24 03:21:10,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:10,246 INFO Out dated connection ,size=0 + +2025-09-24 03:21:10,246 INFO Connection check task end + +2025-09-24 03:21:12,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:13,246 INFO Connection check task start + +2025-09-24 03:21:13,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:13,246 INFO Out dated connection ,size=0 + +2025-09-24 03:21:13,246 INFO Connection check task end + +2025-09-24 03:21:15,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:16,247 INFO Connection check task start + +2025-09-24 03:21:16,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:16,247 INFO Out dated connection ,size=0 + +2025-09-24 03:21:16,247 INFO Connection check task end + +2025-09-24 03:21:18,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:19,248 INFO Connection check task start + +2025-09-24 03:21:19,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:19,248 INFO Out dated connection ,size=0 + +2025-09-24 03:21:19,248 INFO Connection check task end + +2025-09-24 03:21:21,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:22,248 INFO Connection check task start + +2025-09-24 03:21:22,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:22,248 INFO Out dated connection ,size=0 + +2025-09-24 03:21:22,248 INFO Connection check task end + +2025-09-24 03:21:24,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:25,249 INFO Connection check task start + +2025-09-24 03:21:25,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:25,249 INFO Out dated connection ,size=0 + +2025-09-24 03:21:25,249 INFO Connection check task end + +2025-09-24 03:21:27,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:28,249 INFO Connection check task start + +2025-09-24 03:21:28,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:28,249 INFO Out dated connection ,size=0 + +2025-09-24 03:21:28,249 INFO Connection check task end + +2025-09-24 03:21:30,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:31,250 INFO Connection check task start + +2025-09-24 03:21:31,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:31,250 INFO Out dated connection ,size=0 + +2025-09-24 03:21:31,250 INFO Connection check task end + +2025-09-24 03:21:33,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:34,250 INFO Connection check task start + +2025-09-24 03:21:34,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:34,250 INFO Out dated connection ,size=0 + +2025-09-24 03:21:34,250 INFO Connection check task end + +2025-09-24 03:21:36,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:37,250 INFO Connection check task start + +2025-09-24 03:21:37,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:37,250 INFO Out dated connection ,size=0 + +2025-09-24 03:21:37,250 INFO Connection check task end + +2025-09-24 03:21:39,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:40,251 INFO Connection check task start + +2025-09-24 03:21:40,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:40,251 INFO Out dated connection ,size=0 + +2025-09-24 03:21:40,251 INFO Connection check task end + +2025-09-24 03:21:42,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:43,251 INFO Connection check task start + +2025-09-24 03:21:43,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:43,251 INFO Out dated connection ,size=0 + +2025-09-24 03:21:43,251 INFO Connection check task end + +2025-09-24 03:21:45,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:46,252 INFO Connection check task start + +2025-09-24 03:21:46,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:46,252 INFO Out dated connection ,size=0 + +2025-09-24 03:21:46,252 INFO Connection check task end + +2025-09-24 03:21:48,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:49,253 INFO Connection check task start + +2025-09-24 03:21:49,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:49,253 INFO Out dated connection ,size=0 + +2025-09-24 03:21:49,253 INFO Connection check task end + +2025-09-24 03:21:51,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:52,255 INFO Connection check task start + +2025-09-24 03:21:52,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:52,255 INFO Out dated connection ,size=0 + +2025-09-24 03:21:52,255 INFO Connection check task end + +2025-09-24 03:21:54,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:55,256 INFO Connection check task start + +2025-09-24 03:21:55,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:55,256 INFO Out dated connection ,size=0 + +2025-09-24 03:21:55,256 INFO Connection check task end + +2025-09-24 03:21:57,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:21:58,256 INFO Connection check task start + +2025-09-24 03:21:58,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:21:58,256 INFO Out dated connection ,size=0 + +2025-09-24 03:21:58,256 INFO Connection check task end + +2025-09-24 03:22:00,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:01,256 INFO Connection check task start + +2025-09-24 03:22:01,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:01,256 INFO Out dated connection ,size=0 + +2025-09-24 03:22:01,257 INFO Connection check task end + +2025-09-24 03:22:03,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:04,257 INFO Connection check task start + +2025-09-24 03:22:04,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:04,257 INFO Out dated connection ,size=0 + +2025-09-24 03:22:04,257 INFO Connection check task end + +2025-09-24 03:22:06,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:07,257 INFO Connection check task start + +2025-09-24 03:22:07,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:07,257 INFO Out dated connection ,size=0 + +2025-09-24 03:22:07,258 INFO Connection check task end + +2025-09-24 03:22:09,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:10,259 INFO Connection check task start + +2025-09-24 03:22:10,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:10,259 INFO Out dated connection ,size=0 + +2025-09-24 03:22:10,259 INFO Connection check task end + +2025-09-24 03:22:12,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:13,260 INFO Connection check task start + +2025-09-24 03:22:13,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:13,260 INFO Out dated connection ,size=0 + +2025-09-24 03:22:13,260 INFO Connection check task end + +2025-09-24 03:22:15,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:16,260 INFO Connection check task start + +2025-09-24 03:22:16,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:16,260 INFO Out dated connection ,size=0 + +2025-09-24 03:22:16,260 INFO Connection check task end + +2025-09-24 03:22:18,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:19,261 INFO Connection check task start + +2025-09-24 03:22:19,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:19,261 INFO Out dated connection ,size=0 + +2025-09-24 03:22:19,261 INFO Connection check task end + +2025-09-24 03:22:21,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:22,262 INFO Connection check task start + +2025-09-24 03:22:22,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:22,262 INFO Out dated connection ,size=0 + +2025-09-24 03:22:22,262 INFO Connection check task end + +2025-09-24 03:22:24,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:25,263 INFO Connection check task start + +2025-09-24 03:22:25,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:25,263 INFO Out dated connection ,size=0 + +2025-09-24 03:22:25,263 INFO Connection check task end + +2025-09-24 03:22:27,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:28,263 INFO Connection check task start + +2025-09-24 03:22:28,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:28,264 INFO Out dated connection ,size=0 + +2025-09-24 03:22:28,264 INFO Connection check task end + +2025-09-24 03:22:30,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:31,264 INFO Connection check task start + +2025-09-24 03:22:31,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:31,265 INFO Out dated connection ,size=0 + +2025-09-24 03:22:31,265 INFO Connection check task end + +2025-09-24 03:22:33,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:34,265 INFO Connection check task start + +2025-09-24 03:22:34,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:34,265 INFO Out dated connection ,size=0 + +2025-09-24 03:22:34,265 INFO Connection check task end + +2025-09-24 03:22:36,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:37,266 INFO Connection check task start + +2025-09-24 03:22:37,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:37,266 INFO Out dated connection ,size=0 + +2025-09-24 03:22:37,266 INFO Connection check task end + +2025-09-24 03:22:39,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:40,266 INFO Connection check task start + +2025-09-24 03:22:40,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:40,266 INFO Out dated connection ,size=0 + +2025-09-24 03:22:40,266 INFO Connection check task end + +2025-09-24 03:22:42,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:43,268 INFO Connection check task start + +2025-09-24 03:22:43,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:43,269 INFO Out dated connection ,size=0 + +2025-09-24 03:22:43,269 INFO Connection check task end + +2025-09-24 03:22:45,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:46,270 INFO Connection check task start + +2025-09-24 03:22:46,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:46,270 INFO Out dated connection ,size=0 + +2025-09-24 03:22:46,271 INFO Connection check task end + +2025-09-24 03:22:48,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:49,271 INFO Connection check task start + +2025-09-24 03:22:49,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:49,271 INFO Out dated connection ,size=0 + +2025-09-24 03:22:49,271 INFO Connection check task end + +2025-09-24 03:22:51,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:52,272 INFO Connection check task start + +2025-09-24 03:22:52,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:52,272 INFO Out dated connection ,size=0 + +2025-09-24 03:22:52,272 INFO Connection check task end + +2025-09-24 03:22:54,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:55,274 INFO Connection check task start + +2025-09-24 03:22:55,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:55,274 INFO Out dated connection ,size=0 + +2025-09-24 03:22:55,274 INFO Connection check task end + +2025-09-24 03:22:57,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:22:58,274 INFO Connection check task start + +2025-09-24 03:22:58,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:22:58,274 INFO Out dated connection ,size=0 + +2025-09-24 03:22:58,274 INFO Connection check task end + +2025-09-24 03:23:00,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:01,275 INFO Connection check task start + +2025-09-24 03:23:01,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:01,275 INFO Out dated connection ,size=0 + +2025-09-24 03:23:01,275 INFO Connection check task end + +2025-09-24 03:23:03,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:04,275 INFO Connection check task start + +2025-09-24 03:23:04,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:04,276 INFO Out dated connection ,size=0 + +2025-09-24 03:23:04,276 INFO Connection check task end + +2025-09-24 03:23:06,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:07,277 INFO Connection check task start + +2025-09-24 03:23:07,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:07,277 INFO Out dated connection ,size=0 + +2025-09-24 03:23:07,277 INFO Connection check task end + +2025-09-24 03:23:09,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:10,278 INFO Connection check task start + +2025-09-24 03:23:10,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:10,278 INFO Out dated connection ,size=0 + +2025-09-24 03:23:10,278 INFO Connection check task end + +2025-09-24 03:23:12,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:13,278 INFO Connection check task start + +2025-09-24 03:23:13,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:13,278 INFO Out dated connection ,size=0 + +2025-09-24 03:23:13,278 INFO Connection check task end + +2025-09-24 03:23:15,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:16,281 INFO Connection check task start + +2025-09-24 03:23:16,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:16,281 INFO Out dated connection ,size=0 + +2025-09-24 03:23:16,281 INFO Connection check task end + +2025-09-24 03:23:18,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:19,283 INFO Connection check task start + +2025-09-24 03:23:19,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:19,283 INFO Out dated connection ,size=0 + +2025-09-24 03:23:19,283 INFO Connection check task end + +2025-09-24 03:23:21,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:22,284 INFO Connection check task start + +2025-09-24 03:23:22,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:22,284 INFO Out dated connection ,size=0 + +2025-09-24 03:23:22,284 INFO Connection check task end + +2025-09-24 03:23:24,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:25,285 INFO Connection check task start + +2025-09-24 03:23:25,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:25,285 INFO Out dated connection ,size=0 + +2025-09-24 03:23:25,285 INFO Connection check task end + +2025-09-24 03:23:27,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:28,285 INFO Connection check task start + +2025-09-24 03:23:28,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:28,286 INFO Out dated connection ,size=0 + +2025-09-24 03:23:28,286 INFO Connection check task end + +2025-09-24 03:23:30,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:31,287 INFO Connection check task start + +2025-09-24 03:23:31,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:31,288 INFO Out dated connection ,size=0 + +2025-09-24 03:23:31,288 INFO Connection check task end + +2025-09-24 03:23:33,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:34,289 INFO Connection check task start + +2025-09-24 03:23:34,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:34,290 INFO Out dated connection ,size=0 + +2025-09-24 03:23:34,290 INFO Connection check task end + +2025-09-24 03:23:36,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:37,291 INFO Connection check task start + +2025-09-24 03:23:37,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:37,291 INFO Out dated connection ,size=0 + +2025-09-24 03:23:37,291 INFO Connection check task end + +2025-09-24 03:23:39,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:40,292 INFO Connection check task start + +2025-09-24 03:23:40,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:40,292 INFO Out dated connection ,size=0 + +2025-09-24 03:23:40,292 INFO Connection check task end + +2025-09-24 03:23:42,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:43,292 INFO Connection check task start + +2025-09-24 03:23:43,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:43,292 INFO Out dated connection ,size=0 + +2025-09-24 03:23:43,292 INFO Connection check task end + +2025-09-24 03:23:45,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:46,293 INFO Connection check task start + +2025-09-24 03:23:46,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:46,293 INFO Out dated connection ,size=0 + +2025-09-24 03:23:46,293 INFO Connection check task end + +2025-09-24 03:23:48,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:49,294 INFO Connection check task start + +2025-09-24 03:23:49,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:49,294 INFO Out dated connection ,size=0 + +2025-09-24 03:23:49,294 INFO Connection check task end + +2025-09-24 03:23:51,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:52,294 INFO Connection check task start + +2025-09-24 03:23:52,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:52,295 INFO Out dated connection ,size=0 + +2025-09-24 03:23:52,295 INFO Connection check task end + +2025-09-24 03:23:54,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:55,295 INFO Connection check task start + +2025-09-24 03:23:55,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:55,295 INFO Out dated connection ,size=0 + +2025-09-24 03:23:55,295 INFO Connection check task end + +2025-09-24 03:23:57,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:23:58,297 INFO Connection check task start + +2025-09-24 03:23:58,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:23:58,297 INFO Out dated connection ,size=0 + +2025-09-24 03:23:58,297 INFO Connection check task end + +2025-09-24 03:24:00,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:01,299 INFO Connection check task start + +2025-09-24 03:24:01,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:01,299 INFO Out dated connection ,size=0 + +2025-09-24 03:24:01,299 INFO Connection check task end + +2025-09-24 03:24:03,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:04,302 INFO Connection check task start + +2025-09-24 03:24:04,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:04,302 INFO Out dated connection ,size=0 + +2025-09-24 03:24:04,302 INFO Connection check task end + +2025-09-24 03:24:07,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:07,303 INFO Connection check task start + +2025-09-24 03:24:07,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:07,303 INFO Out dated connection ,size=0 + +2025-09-24 03:24:07,303 INFO Connection check task end + +2025-09-24 03:24:10,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:10,305 INFO Connection check task start + +2025-09-24 03:24:10,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:10,305 INFO Out dated connection ,size=0 + +2025-09-24 03:24:10,305 INFO Connection check task end + +2025-09-24 03:24:13,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:13,307 INFO Connection check task start + +2025-09-24 03:24:13,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:13,307 INFO Out dated connection ,size=0 + +2025-09-24 03:24:13,308 INFO Connection check task end + +2025-09-24 03:24:16,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:16,310 INFO Connection check task start + +2025-09-24 03:24:16,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:16,310 INFO Out dated connection ,size=0 + +2025-09-24 03:24:16,310 INFO Connection check task end + +2025-09-24 03:24:19,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:19,310 INFO Connection check task start + +2025-09-24 03:24:19,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:19,310 INFO Out dated connection ,size=0 + +2025-09-24 03:24:19,310 INFO Connection check task end + +2025-09-24 03:24:22,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:22,310 INFO Connection check task start + +2025-09-24 03:24:22,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:22,311 INFO Out dated connection ,size=0 + +2025-09-24 03:24:22,311 INFO Connection check task end + +2025-09-24 03:24:25,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:25,311 INFO Connection check task start + +2025-09-24 03:24:25,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:25,311 INFO Out dated connection ,size=0 + +2025-09-24 03:24:25,311 INFO Connection check task end + +2025-09-24 03:24:28,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:28,312 INFO Connection check task start + +2025-09-24 03:24:28,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:28,312 INFO Out dated connection ,size=0 + +2025-09-24 03:24:28,312 INFO Connection check task end + +2025-09-24 03:24:31,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:31,312 INFO Connection check task start + +2025-09-24 03:24:31,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:31,312 INFO Out dated connection ,size=0 + +2025-09-24 03:24:31,312 INFO Connection check task end + +2025-09-24 03:24:34,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:34,314 INFO Connection check task start + +2025-09-24 03:24:34,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:34,314 INFO Out dated connection ,size=0 + +2025-09-24 03:24:34,314 INFO Connection check task end + +2025-09-24 03:24:37,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:37,317 INFO Connection check task start + +2025-09-24 03:24:37,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:37,317 INFO Out dated connection ,size=0 + +2025-09-24 03:24:37,317 INFO Connection check task end + +2025-09-24 03:24:40,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:40,317 INFO Connection check task start + +2025-09-24 03:24:40,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:40,317 INFO Out dated connection ,size=0 + +2025-09-24 03:24:40,317 INFO Connection check task end + +2025-09-24 03:24:43,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:43,318 INFO Connection check task start + +2025-09-24 03:24:43,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:43,318 INFO Out dated connection ,size=0 + +2025-09-24 03:24:43,318 INFO Connection check task end + +2025-09-24 03:24:46,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:46,319 INFO Connection check task start + +2025-09-24 03:24:46,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:46,319 INFO Out dated connection ,size=0 + +2025-09-24 03:24:46,319 INFO Connection check task end + +2025-09-24 03:24:49,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:49,321 INFO Connection check task start + +2025-09-24 03:24:49,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:49,321 INFO Out dated connection ,size=0 + +2025-09-24 03:24:49,321 INFO Connection check task end + +2025-09-24 03:24:52,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:52,323 INFO Connection check task start + +2025-09-24 03:24:52,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:52,324 INFO Out dated connection ,size=0 + +2025-09-24 03:24:52,324 INFO Connection check task end + +2025-09-24 03:24:55,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:55,326 INFO Connection check task start + +2025-09-24 03:24:55,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:55,326 INFO Out dated connection ,size=0 + +2025-09-24 03:24:55,326 INFO Connection check task end + +2025-09-24 03:24:58,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:24:58,328 INFO Connection check task start + +2025-09-24 03:24:58,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:24:58,328 INFO Out dated connection ,size=0 + +2025-09-24 03:24:58,328 INFO Connection check task end + +2025-09-24 03:25:01,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:01,328 INFO Connection check task start + +2025-09-24 03:25:01,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:01,329 INFO Out dated connection ,size=0 + +2025-09-24 03:25:01,329 INFO Connection check task end + +2025-09-24 03:25:04,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:04,329 INFO Connection check task start + +2025-09-24 03:25:04,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:04,329 INFO Out dated connection ,size=0 + +2025-09-24 03:25:04,329 INFO Connection check task end + +2025-09-24 03:25:07,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:07,330 INFO Connection check task start + +2025-09-24 03:25:07,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:07,330 INFO Out dated connection ,size=0 + +2025-09-24 03:25:07,330 INFO Connection check task end + +2025-09-24 03:25:10,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:10,331 INFO Connection check task start + +2025-09-24 03:25:10,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:10,331 INFO Out dated connection ,size=0 + +2025-09-24 03:25:10,331 INFO Connection check task end + +2025-09-24 03:25:13,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:13,333 INFO Connection check task start + +2025-09-24 03:25:13,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:13,333 INFO Out dated connection ,size=0 + +2025-09-24 03:25:13,333 INFO Connection check task end + +2025-09-24 03:25:16,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:16,335 INFO Connection check task start + +2025-09-24 03:25:16,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:16,335 INFO Out dated connection ,size=0 + +2025-09-24 03:25:16,335 INFO Connection check task end + +2025-09-24 03:25:19,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:19,336 INFO Connection check task start + +2025-09-24 03:25:19,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:19,336 INFO Out dated connection ,size=0 + +2025-09-24 03:25:19,336 INFO Connection check task end + +2025-09-24 03:25:22,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:22,336 INFO Connection check task start + +2025-09-24 03:25:22,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:22,337 INFO Out dated connection ,size=0 + +2025-09-24 03:25:22,337 INFO Connection check task end + +2025-09-24 03:25:25,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:25,337 INFO Connection check task start + +2025-09-24 03:25:25,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:25,337 INFO Out dated connection ,size=0 + +2025-09-24 03:25:25,337 INFO Connection check task end + +2025-09-24 03:25:28,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:28,339 INFO Connection check task start + +2025-09-24 03:25:28,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:28,339 INFO Out dated connection ,size=0 + +2025-09-24 03:25:28,339 INFO Connection check task end + +2025-09-24 03:25:31,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:31,340 INFO Connection check task start + +2025-09-24 03:25:31,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:31,340 INFO Out dated connection ,size=0 + +2025-09-24 03:25:31,340 INFO Connection check task end + +2025-09-24 03:25:34,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:34,340 INFO Connection check task start + +2025-09-24 03:25:34,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:34,340 INFO Out dated connection ,size=0 + +2025-09-24 03:25:34,340 INFO Connection check task end + +2025-09-24 03:25:37,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:37,342 INFO Connection check task start + +2025-09-24 03:25:37,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:37,342 INFO Out dated connection ,size=0 + +2025-09-24 03:25:37,342 INFO Connection check task end + +2025-09-24 03:25:40,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:40,343 INFO Connection check task start + +2025-09-24 03:25:40,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:40,343 INFO Out dated connection ,size=0 + +2025-09-24 03:25:40,343 INFO Connection check task end + +2025-09-24 03:25:43,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:43,344 INFO Connection check task start + +2025-09-24 03:25:43,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:43,345 INFO Out dated connection ,size=0 + +2025-09-24 03:25:43,345 INFO Connection check task end + +2025-09-24 03:25:46,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:46,346 INFO Connection check task start + +2025-09-24 03:25:46,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:46,347 INFO Out dated connection ,size=0 + +2025-09-24 03:25:46,347 INFO Connection check task end + +2025-09-24 03:25:49,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:49,347 INFO Connection check task start + +2025-09-24 03:25:49,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:49,347 INFO Out dated connection ,size=0 + +2025-09-24 03:25:49,347 INFO Connection check task end + +2025-09-24 03:25:52,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:52,348 INFO Connection check task start + +2025-09-24 03:25:52,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:52,348 INFO Out dated connection ,size=0 + +2025-09-24 03:25:52,348 INFO Connection check task end + +2025-09-24 03:25:55,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:55,348 INFO Connection check task start + +2025-09-24 03:25:55,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:55,348 INFO Out dated connection ,size=0 + +2025-09-24 03:25:55,348 INFO Connection check task end + +2025-09-24 03:25:58,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:25:58,349 INFO Connection check task start + +2025-09-24 03:25:58,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:25:58,349 INFO Out dated connection ,size=0 + +2025-09-24 03:25:58,349 INFO Connection check task end + +2025-09-24 03:26:01,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:01,350 INFO Connection check task start + +2025-09-24 03:26:01,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:01,350 INFO Out dated connection ,size=0 + +2025-09-24 03:26:01,350 INFO Connection check task end + +2025-09-24 03:26:04,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:04,353 INFO Connection check task start + +2025-09-24 03:26:04,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:04,353 INFO Out dated connection ,size=0 + +2025-09-24 03:26:04,353 INFO Connection check task end + +2025-09-24 03:26:07,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:07,355 INFO Connection check task start + +2025-09-24 03:26:07,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:07,356 INFO Out dated connection ,size=0 + +2025-09-24 03:26:07,356 INFO Connection check task end + +2025-09-24 03:26:10,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:10,358 INFO Connection check task start + +2025-09-24 03:26:10,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:10,358 INFO Out dated connection ,size=0 + +2025-09-24 03:26:10,358 INFO Connection check task end + +2025-09-24 03:26:13,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:13,360 INFO Connection check task start + +2025-09-24 03:26:13,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:13,361 INFO Out dated connection ,size=0 + +2025-09-24 03:26:13,361 INFO Connection check task end + +2025-09-24 03:26:16,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:16,361 INFO Connection check task start + +2025-09-24 03:26:16,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:16,362 INFO Out dated connection ,size=0 + +2025-09-24 03:26:16,362 INFO Connection check task end + +2025-09-24 03:26:19,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:19,364 INFO Connection check task start + +2025-09-24 03:26:19,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:19,364 INFO Out dated connection ,size=0 + +2025-09-24 03:26:19,364 INFO Connection check task end + +2025-09-24 03:26:22,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:22,366 INFO Connection check task start + +2025-09-24 03:26:22,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:22,366 INFO Out dated connection ,size=0 + +2025-09-24 03:26:22,366 INFO Connection check task end + +2025-09-24 03:26:25,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:25,367 INFO Connection check task start + +2025-09-24 03:26:25,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:25,367 INFO Out dated connection ,size=0 + +2025-09-24 03:26:25,367 INFO Connection check task end + +2025-09-24 03:26:28,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:28,368 INFO Connection check task start + +2025-09-24 03:26:28,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:28,368 INFO Out dated connection ,size=0 + +2025-09-24 03:26:28,368 INFO Connection check task end + +2025-09-24 03:26:31,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:31,370 INFO Connection check task start + +2025-09-24 03:26:31,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:31,370 INFO Out dated connection ,size=0 + +2025-09-24 03:26:31,370 INFO Connection check task end + +2025-09-24 03:26:34,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:34,371 INFO Connection check task start + +2025-09-24 03:26:34,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:34,371 INFO Out dated connection ,size=0 + +2025-09-24 03:26:34,371 INFO Connection check task end + +2025-09-24 03:26:37,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:37,373 INFO Connection check task start + +2025-09-24 03:26:37,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:37,374 INFO Out dated connection ,size=0 + +2025-09-24 03:26:37,374 INFO Connection check task end + +2025-09-24 03:26:40,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:40,375 INFO Connection check task start + +2025-09-24 03:26:40,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:40,375 INFO Out dated connection ,size=0 + +2025-09-24 03:26:40,375 INFO Connection check task end + +2025-09-24 03:26:43,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:43,376 INFO Connection check task start + +2025-09-24 03:26:43,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:43,377 INFO Out dated connection ,size=0 + +2025-09-24 03:26:43,377 INFO Connection check task end + +2025-09-24 03:26:46,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:46,377 INFO Connection check task start + +2025-09-24 03:26:46,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:46,378 INFO Out dated connection ,size=0 + +2025-09-24 03:26:46,378 INFO Connection check task end + +2025-09-24 03:26:49,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:49,378 INFO Connection check task start + +2025-09-24 03:26:49,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:49,378 INFO Out dated connection ,size=0 + +2025-09-24 03:26:49,379 INFO Connection check task end + +2025-09-24 03:26:52,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:52,379 INFO Connection check task start + +2025-09-24 03:26:52,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:52,379 INFO Out dated connection ,size=0 + +2025-09-24 03:26:52,379 INFO Connection check task end + +2025-09-24 03:26:55,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:55,380 INFO Connection check task start + +2025-09-24 03:26:55,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:55,380 INFO Out dated connection ,size=0 + +2025-09-24 03:26:55,380 INFO Connection check task end + +2025-09-24 03:26:58,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:26:58,382 INFO Connection check task start + +2025-09-24 03:26:58,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:26:58,382 INFO Out dated connection ,size=0 + +2025-09-24 03:26:58,382 INFO Connection check task end + +2025-09-24 03:27:01,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:01,385 INFO Connection check task start + +2025-09-24 03:27:01,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:01,385 INFO Out dated connection ,size=0 + +2025-09-24 03:27:01,385 INFO Connection check task end + +2025-09-24 03:27:04,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:04,386 INFO Connection check task start + +2025-09-24 03:27:04,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:04,386 INFO Out dated connection ,size=0 + +2025-09-24 03:27:04,386 INFO Connection check task end + +2025-09-24 03:27:07,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:07,388 INFO Connection check task start + +2025-09-24 03:27:07,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:07,389 INFO Out dated connection ,size=0 + +2025-09-24 03:27:07,389 INFO Connection check task end + +2025-09-24 03:27:10,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:10,391 INFO Connection check task start + +2025-09-24 03:27:10,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:10,391 INFO Out dated connection ,size=0 + +2025-09-24 03:27:10,391 INFO Connection check task end + +2025-09-24 03:27:13,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:13,394 INFO Connection check task start + +2025-09-24 03:27:13,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:13,394 INFO Out dated connection ,size=0 + +2025-09-24 03:27:13,394 INFO Connection check task end + +2025-09-24 03:27:16,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:16,396 INFO Connection check task start + +2025-09-24 03:27:16,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:16,397 INFO Out dated connection ,size=0 + +2025-09-24 03:27:16,397 INFO Connection check task end + +2025-09-24 03:27:19,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:19,397 INFO Connection check task start + +2025-09-24 03:27:19,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:19,397 INFO Out dated connection ,size=0 + +2025-09-24 03:27:19,397 INFO Connection check task end + +2025-09-24 03:27:22,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:22,398 INFO Connection check task start + +2025-09-24 03:27:22,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:22,399 INFO Out dated connection ,size=0 + +2025-09-24 03:27:22,399 INFO Connection check task end + +2025-09-24 03:27:25,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:25,400 INFO Connection check task start + +2025-09-24 03:27:25,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:25,401 INFO Out dated connection ,size=0 + +2025-09-24 03:27:25,401 INFO Connection check task end + +2025-09-24 03:27:28,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:28,402 INFO Connection check task start + +2025-09-24 03:27:28,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:28,402 INFO Out dated connection ,size=0 + +2025-09-24 03:27:28,402 INFO Connection check task end + +2025-09-24 03:27:31,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:31,404 INFO Connection check task start + +2025-09-24 03:27:31,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:31,404 INFO Out dated connection ,size=0 + +2025-09-24 03:27:31,405 INFO Connection check task end + +2025-09-24 03:27:34,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:34,405 INFO Connection check task start + +2025-09-24 03:27:34,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:34,405 INFO Out dated connection ,size=0 + +2025-09-24 03:27:34,405 INFO Connection check task end + +2025-09-24 03:27:37,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:37,406 INFO Connection check task start + +2025-09-24 03:27:37,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:37,407 INFO Out dated connection ,size=0 + +2025-09-24 03:27:37,407 INFO Connection check task end + +2025-09-24 03:27:40,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:40,407 INFO Connection check task start + +2025-09-24 03:27:40,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:40,407 INFO Out dated connection ,size=0 + +2025-09-24 03:27:40,407 INFO Connection check task end + +2025-09-24 03:27:43,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:43,408 INFO Connection check task start + +2025-09-24 03:27:43,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:43,409 INFO Out dated connection ,size=0 + +2025-09-24 03:27:43,409 INFO Connection check task end + +2025-09-24 03:27:46,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:46,410 INFO Connection check task start + +2025-09-24 03:27:46,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:46,410 INFO Out dated connection ,size=0 + +2025-09-24 03:27:46,410 INFO Connection check task end + +2025-09-24 03:27:49,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:49,412 INFO Connection check task start + +2025-09-24 03:27:49,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:49,413 INFO Out dated connection ,size=0 + +2025-09-24 03:27:49,413 INFO Connection check task end + +2025-09-24 03:27:52,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:52,413 INFO Connection check task start + +2025-09-24 03:27:52,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:52,414 INFO Out dated connection ,size=0 + +2025-09-24 03:27:52,414 INFO Connection check task end + +2025-09-24 03:27:55,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:55,416 INFO Connection check task start + +2025-09-24 03:27:55,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:55,416 INFO Out dated connection ,size=0 + +2025-09-24 03:27:55,416 INFO Connection check task end + +2025-09-24 03:27:58,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:27:58,417 INFO Connection check task start + +2025-09-24 03:27:58,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:27:58,417 INFO Out dated connection ,size=0 + +2025-09-24 03:27:58,418 INFO Connection check task end + +2025-09-24 03:28:01,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:01,419 INFO Connection check task start + +2025-09-24 03:28:01,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:01,419 INFO Out dated connection ,size=0 + +2025-09-24 03:28:01,419 INFO Connection check task end + +2025-09-24 03:28:04,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:04,421 INFO Connection check task start + +2025-09-24 03:28:04,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:04,422 INFO Out dated connection ,size=0 + +2025-09-24 03:28:04,422 INFO Connection check task end + +2025-09-24 03:28:07,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:07,424 INFO Connection check task start + +2025-09-24 03:28:07,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:07,424 INFO Out dated connection ,size=0 + +2025-09-24 03:28:07,424 INFO Connection check task end + +2025-09-24 03:28:10,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:10,426 INFO Connection check task start + +2025-09-24 03:28:10,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:10,426 INFO Out dated connection ,size=0 + +2025-09-24 03:28:10,426 INFO Connection check task end + +2025-09-24 03:28:13,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:13,426 INFO Connection check task start + +2025-09-24 03:28:13,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:13,426 INFO Out dated connection ,size=0 + +2025-09-24 03:28:13,426 INFO Connection check task end + +2025-09-24 03:28:16,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:16,426 INFO Connection check task start + +2025-09-24 03:28:16,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:16,427 INFO Out dated connection ,size=0 + +2025-09-24 03:28:16,427 INFO Connection check task end + +2025-09-24 03:28:19,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:19,429 INFO Connection check task start + +2025-09-24 03:28:19,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:19,429 INFO Out dated connection ,size=0 + +2025-09-24 03:28:19,429 INFO Connection check task end + +2025-09-24 03:28:22,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:22,429 INFO Connection check task start + +2025-09-24 03:28:22,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:22,429 INFO Out dated connection ,size=0 + +2025-09-24 03:28:22,429 INFO Connection check task end + +2025-09-24 03:28:25,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:25,429 INFO Connection check task start + +2025-09-24 03:28:25,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:25,430 INFO Out dated connection ,size=0 + +2025-09-24 03:28:25,430 INFO Connection check task end + +2025-09-24 03:28:28,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:28,430 INFO Connection check task start + +2025-09-24 03:28:28,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:28,430 INFO Out dated connection ,size=0 + +2025-09-24 03:28:28,430 INFO Connection check task end + +2025-09-24 03:28:31,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:31,431 INFO Connection check task start + +2025-09-24 03:28:31,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:31,431 INFO Out dated connection ,size=0 + +2025-09-24 03:28:31,431 INFO Connection check task end + +2025-09-24 03:28:34,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:34,431 INFO Connection check task start + +2025-09-24 03:28:34,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:34,431 INFO Out dated connection ,size=0 + +2025-09-24 03:28:34,432 INFO Connection check task end + +2025-09-24 03:28:37,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:37,432 INFO Connection check task start + +2025-09-24 03:28:37,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:37,432 INFO Out dated connection ,size=0 + +2025-09-24 03:28:37,432 INFO Connection check task end + +2025-09-24 03:28:40,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:40,434 INFO Connection check task start + +2025-09-24 03:28:40,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:40,434 INFO Out dated connection ,size=0 + +2025-09-24 03:28:40,434 INFO Connection check task end + +2025-09-24 03:28:43,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:43,435 INFO Connection check task start + +2025-09-24 03:28:43,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:43,435 INFO Out dated connection ,size=0 + +2025-09-24 03:28:43,435 INFO Connection check task end + +2025-09-24 03:28:46,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:46,437 INFO Connection check task start + +2025-09-24 03:28:46,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:46,437 INFO Out dated connection ,size=0 + +2025-09-24 03:28:46,437 INFO Connection check task end + +2025-09-24 03:28:49,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:49,438 INFO Connection check task start + +2025-09-24 03:28:49,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:49,438 INFO Out dated connection ,size=0 + +2025-09-24 03:28:49,438 INFO Connection check task end + +2025-09-24 03:28:52,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:52,440 INFO Connection check task start + +2025-09-24 03:28:52,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:52,440 INFO Out dated connection ,size=0 + +2025-09-24 03:28:52,440 INFO Connection check task end + +2025-09-24 03:28:55,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:55,442 INFO Connection check task start + +2025-09-24 03:28:55,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:55,442 INFO Out dated connection ,size=0 + +2025-09-24 03:28:55,442 INFO Connection check task end + +2025-09-24 03:28:58,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:28:58,444 INFO Connection check task start + +2025-09-24 03:28:58,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:28:58,444 INFO Out dated connection ,size=0 + +2025-09-24 03:28:58,444 INFO Connection check task end + +2025-09-24 03:29:01,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:01,446 INFO Connection check task start + +2025-09-24 03:29:01,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:01,446 INFO Out dated connection ,size=0 + +2025-09-24 03:29:01,446 INFO Connection check task end + +2025-09-24 03:29:04,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:04,447 INFO Connection check task start + +2025-09-24 03:29:04,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:04,447 INFO Out dated connection ,size=0 + +2025-09-24 03:29:04,447 INFO Connection check task end + +2025-09-24 03:29:07,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:07,448 INFO Connection check task start + +2025-09-24 03:29:07,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:07,448 INFO Out dated connection ,size=0 + +2025-09-24 03:29:07,448 INFO Connection check task end + +2025-09-24 03:29:10,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:10,449 INFO Connection check task start + +2025-09-24 03:29:10,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:10,449 INFO Out dated connection ,size=0 + +2025-09-24 03:29:10,449 INFO Connection check task end + +2025-09-24 03:29:13,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:13,449 INFO Connection check task start + +2025-09-24 03:29:13,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:13,450 INFO Out dated connection ,size=0 + +2025-09-24 03:29:13,450 INFO Connection check task end + +2025-09-24 03:29:16,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:16,450 INFO Connection check task start + +2025-09-24 03:29:16,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:16,450 INFO Out dated connection ,size=0 + +2025-09-24 03:29:16,450 INFO Connection check task end + +2025-09-24 03:29:19,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:19,451 INFO Connection check task start + +2025-09-24 03:29:19,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:19,451 INFO Out dated connection ,size=0 + +2025-09-24 03:29:19,451 INFO Connection check task end + +2025-09-24 03:29:22,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:22,453 INFO Connection check task start + +2025-09-24 03:29:22,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:22,453 INFO Out dated connection ,size=0 + +2025-09-24 03:29:22,453 INFO Connection check task end + +2025-09-24 03:29:25,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:25,454 INFO Connection check task start + +2025-09-24 03:29:25,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:25,454 INFO Out dated connection ,size=0 + +2025-09-24 03:29:25,454 INFO Connection check task end + +2025-09-24 03:29:28,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:28,455 INFO Connection check task start + +2025-09-24 03:29:28,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:28,456 INFO Out dated connection ,size=0 + +2025-09-24 03:29:28,456 INFO Connection check task end + +2025-09-24 03:29:31,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:31,457 INFO Connection check task start + +2025-09-24 03:29:31,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:31,457 INFO Out dated connection ,size=0 + +2025-09-24 03:29:31,457 INFO Connection check task end + +2025-09-24 03:29:34,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:34,458 INFO Connection check task start + +2025-09-24 03:29:34,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:34,458 INFO Out dated connection ,size=0 + +2025-09-24 03:29:34,458 INFO Connection check task end + +2025-09-24 03:29:37,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:37,460 INFO Connection check task start + +2025-09-24 03:29:37,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:37,460 INFO Out dated connection ,size=0 + +2025-09-24 03:29:37,460 INFO Connection check task end + +2025-09-24 03:29:40,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:40,462 INFO Connection check task start + +2025-09-24 03:29:40,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:40,462 INFO Out dated connection ,size=0 + +2025-09-24 03:29:40,462 INFO Connection check task end + +2025-09-24 03:29:43,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:43,464 INFO Connection check task start + +2025-09-24 03:29:43,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:43,464 INFO Out dated connection ,size=0 + +2025-09-24 03:29:43,465 INFO Connection check task end + +2025-09-24 03:29:46,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:46,465 INFO Connection check task start + +2025-09-24 03:29:46,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:46,465 INFO Out dated connection ,size=0 + +2025-09-24 03:29:46,465 INFO Connection check task end + +2025-09-24 03:29:49,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:49,467 INFO Connection check task start + +2025-09-24 03:29:49,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:49,467 INFO Out dated connection ,size=0 + +2025-09-24 03:29:49,467 INFO Connection check task end + +2025-09-24 03:29:52,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:52,468 INFO Connection check task start + +2025-09-24 03:29:52,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:52,468 INFO Out dated connection ,size=0 + +2025-09-24 03:29:52,469 INFO Connection check task end + +2025-09-24 03:29:55,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:55,469 INFO Connection check task start + +2025-09-24 03:29:55,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:55,469 INFO Out dated connection ,size=0 + +2025-09-24 03:29:55,469 INFO Connection check task end + +2025-09-24 03:29:58,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:29:58,470 INFO Connection check task start + +2025-09-24 03:29:58,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:29:58,470 INFO Out dated connection ,size=0 + +2025-09-24 03:29:58,470 INFO Connection check task end + +2025-09-24 03:30:01,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:01,472 INFO Connection check task start + +2025-09-24 03:30:01,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:01,472 INFO Out dated connection ,size=0 + +2025-09-24 03:30:01,472 INFO Connection check task end + +2025-09-24 03:30:04,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:04,473 INFO Connection check task start + +2025-09-24 03:30:04,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:04,473 INFO Out dated connection ,size=0 + +2025-09-24 03:30:04,473 INFO Connection check task end + +2025-09-24 03:30:07,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:07,473 INFO Connection check task start + +2025-09-24 03:30:07,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:07,474 INFO Out dated connection ,size=0 + +2025-09-24 03:30:07,474 INFO Connection check task end + +2025-09-24 03:30:10,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:10,474 INFO Connection check task start + +2025-09-24 03:30:10,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:10,474 INFO Out dated connection ,size=0 + +2025-09-24 03:30:10,474 INFO Connection check task end + +2025-09-24 03:30:13,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:13,476 INFO Connection check task start + +2025-09-24 03:30:13,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:13,477 INFO Out dated connection ,size=0 + +2025-09-24 03:30:13,477 INFO Connection check task end + +2025-09-24 03:30:16,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:16,477 INFO Connection check task start + +2025-09-24 03:30:16,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:16,477 INFO Out dated connection ,size=0 + +2025-09-24 03:30:16,477 INFO Connection check task end + +2025-09-24 03:30:19,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:19,479 INFO Connection check task start + +2025-09-24 03:30:19,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:19,479 INFO Out dated connection ,size=0 + +2025-09-24 03:30:19,479 INFO Connection check task end + +2025-09-24 03:30:22,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:22,479 INFO Connection check task start + +2025-09-24 03:30:22,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:22,480 INFO Out dated connection ,size=0 + +2025-09-24 03:30:22,480 INFO Connection check task end + +2025-09-24 03:30:25,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:25,480 INFO Connection check task start + +2025-09-24 03:30:25,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:25,480 INFO Out dated connection ,size=0 + +2025-09-24 03:30:25,480 INFO Connection check task end + +2025-09-24 03:30:28,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:28,480 INFO Connection check task start + +2025-09-24 03:30:28,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:28,481 INFO Out dated connection ,size=0 + +2025-09-24 03:30:28,481 INFO Connection check task end + +2025-09-24 03:30:31,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:31,481 INFO Connection check task start + +2025-09-24 03:30:31,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:31,481 INFO Out dated connection ,size=0 + +2025-09-24 03:30:31,481 INFO Connection check task end + +2025-09-24 03:30:34,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:34,482 INFO Connection check task start + +2025-09-24 03:30:34,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:34,482 INFO Out dated connection ,size=0 + +2025-09-24 03:30:34,482 INFO Connection check task end + +2025-09-24 03:30:37,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:37,484 INFO Connection check task start + +2025-09-24 03:30:37,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:37,484 INFO Out dated connection ,size=0 + +2025-09-24 03:30:37,484 INFO Connection check task end + +2025-09-24 03:30:40,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:40,485 INFO Connection check task start + +2025-09-24 03:30:40,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:40,485 INFO Out dated connection ,size=0 + +2025-09-24 03:30:40,485 INFO Connection check task end + +2025-09-24 03:30:43,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:43,485 INFO Connection check task start + +2025-09-24 03:30:43,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:43,486 INFO Out dated connection ,size=0 + +2025-09-24 03:30:43,486 INFO Connection check task end + +2025-09-24 03:30:46,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:46,486 INFO Connection check task start + +2025-09-24 03:30:46,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:46,486 INFO Out dated connection ,size=0 + +2025-09-24 03:30:46,486 INFO Connection check task end + +2025-09-24 03:30:49,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:49,487 INFO Connection check task start + +2025-09-24 03:30:49,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:49,487 INFO Out dated connection ,size=0 + +2025-09-24 03:30:49,487 INFO Connection check task end + +2025-09-24 03:30:52,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:52,489 INFO Connection check task start + +2025-09-24 03:30:52,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:52,489 INFO Out dated connection ,size=0 + +2025-09-24 03:30:52,489 INFO Connection check task end + +2025-09-24 03:30:55,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:55,489 INFO Connection check task start + +2025-09-24 03:30:55,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:55,490 INFO Out dated connection ,size=0 + +2025-09-24 03:30:55,490 INFO Connection check task end + +2025-09-24 03:30:58,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:30:58,490 INFO Connection check task start + +2025-09-24 03:30:58,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:30:58,490 INFO Out dated connection ,size=0 + +2025-09-24 03:30:58,490 INFO Connection check task end + +2025-09-24 03:31:01,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:01,492 INFO Connection check task start + +2025-09-24 03:31:01,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:01,492 INFO Out dated connection ,size=0 + +2025-09-24 03:31:01,492 INFO Connection check task end + +2025-09-24 03:31:04,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:04,493 INFO Connection check task start + +2025-09-24 03:31:04,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:04,493 INFO Out dated connection ,size=0 + +2025-09-24 03:31:04,493 INFO Connection check task end + +2025-09-24 03:31:07,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:07,493 INFO Connection check task start + +2025-09-24 03:31:07,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:07,493 INFO Out dated connection ,size=0 + +2025-09-24 03:31:07,493 INFO Connection check task end + +2025-09-24 03:31:10,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:10,496 INFO Connection check task start + +2025-09-24 03:31:10,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:10,496 INFO Out dated connection ,size=0 + +2025-09-24 03:31:10,496 INFO Connection check task end + +2025-09-24 03:31:13,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:13,498 INFO Connection check task start + +2025-09-24 03:31:13,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:13,498 INFO Out dated connection ,size=0 + +2025-09-24 03:31:13,498 INFO Connection check task end + +2025-09-24 03:31:16,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:16,499 INFO Connection check task start + +2025-09-24 03:31:16,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:16,499 INFO Out dated connection ,size=0 + +2025-09-24 03:31:16,499 INFO Connection check task end + +2025-09-24 03:31:19,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:19,501 INFO Connection check task start + +2025-09-24 03:31:19,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:19,501 INFO Out dated connection ,size=0 + +2025-09-24 03:31:19,501 INFO Connection check task end + +2025-09-24 03:31:22,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:22,503 INFO Connection check task start + +2025-09-24 03:31:22,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:22,504 INFO Out dated connection ,size=0 + +2025-09-24 03:31:22,504 INFO Connection check task end + +2025-09-24 03:31:25,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:25,506 INFO Connection check task start + +2025-09-24 03:31:25,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:25,506 INFO Out dated connection ,size=0 + +2025-09-24 03:31:25,506 INFO Connection check task end + +2025-09-24 03:31:28,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:28,508 INFO Connection check task start + +2025-09-24 03:31:28,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:28,508 INFO Out dated connection ,size=0 + +2025-09-24 03:31:28,508 INFO Connection check task end + +2025-09-24 03:31:31,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:31,509 INFO Connection check task start + +2025-09-24 03:31:31,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:31,509 INFO Out dated connection ,size=0 + +2025-09-24 03:31:31,509 INFO Connection check task end + +2025-09-24 03:31:34,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:34,511 INFO Connection check task start + +2025-09-24 03:31:34,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:34,511 INFO Out dated connection ,size=0 + +2025-09-24 03:31:34,511 INFO Connection check task end + +2025-09-24 03:31:37,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:37,512 INFO Connection check task start + +2025-09-24 03:31:37,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:37,513 INFO Out dated connection ,size=0 + +2025-09-24 03:31:37,513 INFO Connection check task end + +2025-09-24 03:31:40,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:40,513 INFO Connection check task start + +2025-09-24 03:31:40,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:40,513 INFO Out dated connection ,size=0 + +2025-09-24 03:31:40,513 INFO Connection check task end + +2025-09-24 03:31:43,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:43,514 INFO Connection check task start + +2025-09-24 03:31:43,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:43,514 INFO Out dated connection ,size=0 + +2025-09-24 03:31:43,514 INFO Connection check task end + +2025-09-24 03:31:46,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:46,515 INFO Connection check task start + +2025-09-24 03:31:46,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:46,515 INFO Out dated connection ,size=0 + +2025-09-24 03:31:46,515 INFO Connection check task end + +2025-09-24 03:31:49,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:49,517 INFO Connection check task start + +2025-09-24 03:31:49,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:49,517 INFO Out dated connection ,size=0 + +2025-09-24 03:31:49,517 INFO Connection check task end + +2025-09-24 03:31:52,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:52,519 INFO Connection check task start + +2025-09-24 03:31:52,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:52,519 INFO Out dated connection ,size=0 + +2025-09-24 03:31:52,519 INFO Connection check task end + +2025-09-24 03:31:55,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:55,520 INFO Connection check task start + +2025-09-24 03:31:55,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:55,521 INFO Out dated connection ,size=0 + +2025-09-24 03:31:55,521 INFO Connection check task end + +2025-09-24 03:31:58,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:31:58,521 INFO Connection check task start + +2025-09-24 03:31:58,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:31:58,521 INFO Out dated connection ,size=0 + +2025-09-24 03:31:58,521 INFO Connection check task end + +2025-09-24 03:32:01,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:01,523 INFO Connection check task start + +2025-09-24 03:32:01,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:01,523 INFO Out dated connection ,size=0 + +2025-09-24 03:32:01,523 INFO Connection check task end + +2025-09-24 03:32:04,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:04,524 INFO Connection check task start + +2025-09-24 03:32:04,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:04,524 INFO Out dated connection ,size=0 + +2025-09-24 03:32:04,524 INFO Connection check task end + +2025-09-24 03:32:07,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:07,524 INFO Connection check task start + +2025-09-24 03:32:07,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:07,524 INFO Out dated connection ,size=0 + +2025-09-24 03:32:07,524 INFO Connection check task end + +2025-09-24 03:32:10,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:10,526 INFO Connection check task start + +2025-09-24 03:32:10,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:10,526 INFO Out dated connection ,size=0 + +2025-09-24 03:32:10,526 INFO Connection check task end + +2025-09-24 03:32:13,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:13,527 INFO Connection check task start + +2025-09-24 03:32:13,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:13,527 INFO Out dated connection ,size=0 + +2025-09-24 03:32:13,527 INFO Connection check task end + +2025-09-24 03:32:16,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:16,528 INFO Connection check task start + +2025-09-24 03:32:16,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:16,528 INFO Out dated connection ,size=0 + +2025-09-24 03:32:16,528 INFO Connection check task end + +2025-09-24 03:32:19,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:19,529 INFO Connection check task start + +2025-09-24 03:32:19,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:19,529 INFO Out dated connection ,size=0 + +2025-09-24 03:32:19,529 INFO Connection check task end + +2025-09-24 03:32:22,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:22,531 INFO Connection check task start + +2025-09-24 03:32:22,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:22,531 INFO Out dated connection ,size=0 + +2025-09-24 03:32:22,531 INFO Connection check task end + +2025-09-24 03:32:25,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:25,533 INFO Connection check task start + +2025-09-24 03:32:25,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:25,533 INFO Out dated connection ,size=0 + +2025-09-24 03:32:25,533 INFO Connection check task end + +2025-09-24 03:32:28,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:28,533 INFO Connection check task start + +2025-09-24 03:32:28,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:28,534 INFO Out dated connection ,size=0 + +2025-09-24 03:32:28,534 INFO Connection check task end + +2025-09-24 03:32:31,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:31,536 INFO Connection check task start + +2025-09-24 03:32:31,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:31,536 INFO Out dated connection ,size=0 + +2025-09-24 03:32:31,536 INFO Connection check task end + +2025-09-24 03:32:34,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:34,536 INFO Connection check task start + +2025-09-24 03:32:34,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:34,537 INFO Out dated connection ,size=0 + +2025-09-24 03:32:34,537 INFO Connection check task end + +2025-09-24 03:32:37,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:37,537 INFO Connection check task start + +2025-09-24 03:32:37,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:37,537 INFO Out dated connection ,size=0 + +2025-09-24 03:32:37,537 INFO Connection check task end + +2025-09-24 03:32:40,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:40,539 INFO Connection check task start + +2025-09-24 03:32:40,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:40,539 INFO Out dated connection ,size=0 + +2025-09-24 03:32:40,539 INFO Connection check task end + +2025-09-24 03:32:43,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:43,541 INFO Connection check task start + +2025-09-24 03:32:43,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:43,541 INFO Out dated connection ,size=0 + +2025-09-24 03:32:43,541 INFO Connection check task end + +2025-09-24 03:32:46,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:46,543 INFO Connection check task start + +2025-09-24 03:32:46,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:46,544 INFO Out dated connection ,size=0 + +2025-09-24 03:32:46,544 INFO Connection check task end + +2025-09-24 03:32:49,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:49,544 INFO Connection check task start + +2025-09-24 03:32:49,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:49,544 INFO Out dated connection ,size=0 + +2025-09-24 03:32:49,544 INFO Connection check task end + +2025-09-24 03:32:52,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:52,545 INFO Connection check task start + +2025-09-24 03:32:52,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:52,545 INFO Out dated connection ,size=0 + +2025-09-24 03:32:52,545 INFO Connection check task end + +2025-09-24 03:32:55,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:55,545 INFO Connection check task start + +2025-09-24 03:32:55,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:55,546 INFO Out dated connection ,size=0 + +2025-09-24 03:32:55,546 INFO Connection check task end + +2025-09-24 03:32:58,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:32:58,548 INFO Connection check task start + +2025-09-24 03:32:58,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:32:58,548 INFO Out dated connection ,size=0 + +2025-09-24 03:32:58,548 INFO Connection check task end + +2025-09-24 03:33:01,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:01,549 INFO Connection check task start + +2025-09-24 03:33:01,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:01,549 INFO Out dated connection ,size=0 + +2025-09-24 03:33:01,549 INFO Connection check task end + +2025-09-24 03:33:04,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:04,551 INFO Connection check task start + +2025-09-24 03:33:04,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:04,552 INFO Out dated connection ,size=0 + +2025-09-24 03:33:04,552 INFO Connection check task end + +2025-09-24 03:33:07,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:07,554 INFO Connection check task start + +2025-09-24 03:33:07,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:07,554 INFO Out dated connection ,size=0 + +2025-09-24 03:33:07,554 INFO Connection check task end + +2025-09-24 03:33:10,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:10,555 INFO Connection check task start + +2025-09-24 03:33:10,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:10,555 INFO Out dated connection ,size=0 + +2025-09-24 03:33:10,555 INFO Connection check task end + +2025-09-24 03:33:13,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:13,557 INFO Connection check task start + +2025-09-24 03:33:13,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:13,557 INFO Out dated connection ,size=0 + +2025-09-24 03:33:13,557 INFO Connection check task end + +2025-09-24 03:33:16,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:16,557 INFO Connection check task start + +2025-09-24 03:33:16,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:16,558 INFO Out dated connection ,size=0 + +2025-09-24 03:33:16,558 INFO Connection check task end + +2025-09-24 03:33:19,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:19,560 INFO Connection check task start + +2025-09-24 03:33:19,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:19,560 INFO Out dated connection ,size=0 + +2025-09-24 03:33:19,560 INFO Connection check task end + +2025-09-24 03:33:22,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:22,562 INFO Connection check task start + +2025-09-24 03:33:22,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:22,562 INFO Out dated connection ,size=0 + +2025-09-24 03:33:22,562 INFO Connection check task end + +2025-09-24 03:33:25,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:25,562 INFO Connection check task start + +2025-09-24 03:33:25,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:25,562 INFO Out dated connection ,size=0 + +2025-09-24 03:33:25,562 INFO Connection check task end + +2025-09-24 03:33:28,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:28,564 INFO Connection check task start + +2025-09-24 03:33:28,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:28,564 INFO Out dated connection ,size=0 + +2025-09-24 03:33:28,564 INFO Connection check task end + +2025-09-24 03:33:31,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:31,566 INFO Connection check task start + +2025-09-24 03:33:31,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:31,566 INFO Out dated connection ,size=0 + +2025-09-24 03:33:31,566 INFO Connection check task end + +2025-09-24 03:33:34,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:34,567 INFO Connection check task start + +2025-09-24 03:33:34,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:34,567 INFO Out dated connection ,size=0 + +2025-09-24 03:33:34,567 INFO Connection check task end + +2025-09-24 03:33:37,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:37,568 INFO Connection check task start + +2025-09-24 03:33:37,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:37,568 INFO Out dated connection ,size=0 + +2025-09-24 03:33:37,568 INFO Connection check task end + +2025-09-24 03:33:40,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:40,569 INFO Connection check task start + +2025-09-24 03:33:40,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:40,569 INFO Out dated connection ,size=0 + +2025-09-24 03:33:40,569 INFO Connection check task end + +2025-09-24 03:33:43,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:43,571 INFO Connection check task start + +2025-09-24 03:33:43,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:43,571 INFO Out dated connection ,size=0 + +2025-09-24 03:33:43,571 INFO Connection check task end + +2025-09-24 03:33:46,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:46,573 INFO Connection check task start + +2025-09-24 03:33:46,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:46,573 INFO Out dated connection ,size=0 + +2025-09-24 03:33:46,573 INFO Connection check task end + +2025-09-24 03:33:49,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:49,575 INFO Connection check task start + +2025-09-24 03:33:49,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:49,575 INFO Out dated connection ,size=0 + +2025-09-24 03:33:49,575 INFO Connection check task end + +2025-09-24 03:33:52,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:52,577 INFO Connection check task start + +2025-09-24 03:33:52,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:52,577 INFO Out dated connection ,size=0 + +2025-09-24 03:33:52,577 INFO Connection check task end + +2025-09-24 03:33:55,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:55,577 INFO Connection check task start + +2025-09-24 03:33:55,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:55,577 INFO Out dated connection ,size=0 + +2025-09-24 03:33:55,577 INFO Connection check task end + +2025-09-24 03:33:58,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:33:58,579 INFO Connection check task start + +2025-09-24 03:33:58,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:33:58,580 INFO Out dated connection ,size=0 + +2025-09-24 03:33:58,580 INFO Connection check task end + +2025-09-24 03:34:01,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:01,581 INFO Connection check task start + +2025-09-24 03:34:01,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:01,581 INFO Out dated connection ,size=0 + +2025-09-24 03:34:01,581 INFO Connection check task end + +2025-09-24 03:34:04,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:04,581 INFO Connection check task start + +2025-09-24 03:34:04,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:04,581 INFO Out dated connection ,size=0 + +2025-09-24 03:34:04,581 INFO Connection check task end + +2025-09-24 03:34:07,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:07,581 INFO Connection check task start + +2025-09-24 03:34:07,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:07,582 INFO Out dated connection ,size=0 + +2025-09-24 03:34:07,582 INFO Connection check task end + +2025-09-24 03:34:10,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:10,582 INFO Connection check task start + +2025-09-24 03:34:10,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:10,582 INFO Out dated connection ,size=0 + +2025-09-24 03:34:10,582 INFO Connection check task end + +2025-09-24 03:34:13,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:13,583 INFO Connection check task start + +2025-09-24 03:34:13,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:13,583 INFO Out dated connection ,size=0 + +2025-09-24 03:34:13,583 INFO Connection check task end + +2025-09-24 03:34:16,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:16,584 INFO Connection check task start + +2025-09-24 03:34:16,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:16,584 INFO Out dated connection ,size=0 + +2025-09-24 03:34:16,584 INFO Connection check task end + +2025-09-24 03:34:19,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:19,584 INFO Connection check task start + +2025-09-24 03:34:19,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:19,585 INFO Out dated connection ,size=0 + +2025-09-24 03:34:19,585 INFO Connection check task end + +2025-09-24 03:34:22,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:22,587 INFO Connection check task start + +2025-09-24 03:34:22,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:22,587 INFO Out dated connection ,size=0 + +2025-09-24 03:34:22,587 INFO Connection check task end + +2025-09-24 03:34:25,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:25,588 INFO Connection check task start + +2025-09-24 03:34:25,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:25,589 INFO Out dated connection ,size=0 + +2025-09-24 03:34:25,589 INFO Connection check task end + +2025-09-24 03:34:28,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:28,589 INFO Connection check task start + +2025-09-24 03:34:28,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:28,589 INFO Out dated connection ,size=0 + +2025-09-24 03:34:28,589 INFO Connection check task end + +2025-09-24 03:34:31,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:31,590 INFO Connection check task start + +2025-09-24 03:34:31,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:31,590 INFO Out dated connection ,size=0 + +2025-09-24 03:34:31,590 INFO Connection check task end + +2025-09-24 03:34:34,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:34,591 INFO Connection check task start + +2025-09-24 03:34:34,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:34,591 INFO Out dated connection ,size=0 + +2025-09-24 03:34:34,591 INFO Connection check task end + +2025-09-24 03:34:37,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:37,592 INFO Connection check task start + +2025-09-24 03:34:37,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:37,592 INFO Out dated connection ,size=0 + +2025-09-24 03:34:37,592 INFO Connection check task end + +2025-09-24 03:34:40,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:40,595 INFO Connection check task start + +2025-09-24 03:34:40,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:40,595 INFO Out dated connection ,size=0 + +2025-09-24 03:34:40,596 INFO Connection check task end + +2025-09-24 03:34:43,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:43,596 INFO Connection check task start + +2025-09-24 03:34:43,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:43,596 INFO Out dated connection ,size=0 + +2025-09-24 03:34:43,597 INFO Connection check task end + +2025-09-24 03:34:46,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:46,598 INFO Connection check task start + +2025-09-24 03:34:46,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:46,598 INFO Out dated connection ,size=0 + +2025-09-24 03:34:46,598 INFO Connection check task end + +2025-09-24 03:34:49,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:49,600 INFO Connection check task start + +2025-09-24 03:34:49,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:49,600 INFO Out dated connection ,size=0 + +2025-09-24 03:34:49,600 INFO Connection check task end + +2025-09-24 03:34:52,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:52,600 INFO Connection check task start + +2025-09-24 03:34:52,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:52,600 INFO Out dated connection ,size=0 + +2025-09-24 03:34:52,600 INFO Connection check task end + +2025-09-24 03:34:55,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:55,601 INFO Connection check task start + +2025-09-24 03:34:55,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:55,601 INFO Out dated connection ,size=0 + +2025-09-24 03:34:55,601 INFO Connection check task end + +2025-09-24 03:34:58,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:34:58,601 INFO Connection check task start + +2025-09-24 03:34:58,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:34:58,601 INFO Out dated connection ,size=0 + +2025-09-24 03:34:58,601 INFO Connection check task end + +2025-09-24 03:35:01,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:01,602 INFO Connection check task start + +2025-09-24 03:35:01,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:01,602 INFO Out dated connection ,size=0 + +2025-09-24 03:35:01,602 INFO Connection check task end + +2025-09-24 03:35:04,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:04,603 INFO Connection check task start + +2025-09-24 03:35:04,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:04,603 INFO Out dated connection ,size=0 + +2025-09-24 03:35:04,603 INFO Connection check task end + +2025-09-24 03:35:07,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:07,605 INFO Connection check task start + +2025-09-24 03:35:07,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:07,605 INFO Out dated connection ,size=0 + +2025-09-24 03:35:07,605 INFO Connection check task end + +2025-09-24 03:35:10,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:10,607 INFO Connection check task start + +2025-09-24 03:35:10,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:10,607 INFO Out dated connection ,size=0 + +2025-09-24 03:35:10,607 INFO Connection check task end + +2025-09-24 03:35:13,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:13,607 INFO Connection check task start + +2025-09-24 03:35:13,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:13,608 INFO Out dated connection ,size=0 + +2025-09-24 03:35:13,608 INFO Connection check task end + +2025-09-24 03:35:16,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:16,610 INFO Connection check task start + +2025-09-24 03:35:16,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:16,610 INFO Out dated connection ,size=0 + +2025-09-24 03:35:16,610 INFO Connection check task end + +2025-09-24 03:35:19,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:19,611 INFO Connection check task start + +2025-09-24 03:35:19,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:19,611 INFO Out dated connection ,size=0 + +2025-09-24 03:35:19,611 INFO Connection check task end + +2025-09-24 03:35:22,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:22,613 INFO Connection check task start + +2025-09-24 03:35:22,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:22,613 INFO Out dated connection ,size=0 + +2025-09-24 03:35:22,613 INFO Connection check task end + +2025-09-24 03:35:25,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:25,613 INFO Connection check task start + +2025-09-24 03:35:25,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:25,614 INFO Out dated connection ,size=0 + +2025-09-24 03:35:25,614 INFO Connection check task end + +2025-09-24 03:35:28,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:28,614 INFO Connection check task start + +2025-09-24 03:35:28,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:28,614 INFO Out dated connection ,size=0 + +2025-09-24 03:35:28,614 INFO Connection check task end + +2025-09-24 03:35:31,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:31,616 INFO Connection check task start + +2025-09-24 03:35:31,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:31,616 INFO Out dated connection ,size=0 + +2025-09-24 03:35:31,616 INFO Connection check task end + +2025-09-24 03:35:34,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:34,618 INFO Connection check task start + +2025-09-24 03:35:34,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:34,618 INFO Out dated connection ,size=0 + +2025-09-24 03:35:34,618 INFO Connection check task end + +2025-09-24 03:35:37,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:37,618 INFO Connection check task start + +2025-09-24 03:35:37,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:37,618 INFO Out dated connection ,size=0 + +2025-09-24 03:35:37,619 INFO Connection check task end + +2025-09-24 03:35:40,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:40,620 INFO Connection check task start + +2025-09-24 03:35:40,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:40,621 INFO Out dated connection ,size=0 + +2025-09-24 03:35:40,621 INFO Connection check task end + +2025-09-24 03:35:43,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:43,622 INFO Connection check task start + +2025-09-24 03:35:43,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:43,622 INFO Out dated connection ,size=0 + +2025-09-24 03:35:43,622 INFO Connection check task end + +2025-09-24 03:35:46,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:46,624 INFO Connection check task start + +2025-09-24 03:35:46,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:46,624 INFO Out dated connection ,size=0 + +2025-09-24 03:35:46,625 INFO Connection check task end + +2025-09-24 03:35:49,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:49,627 INFO Connection check task start + +2025-09-24 03:35:49,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:49,627 INFO Out dated connection ,size=0 + +2025-09-24 03:35:49,627 INFO Connection check task end + +2025-09-24 03:35:52,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:52,628 INFO Connection check task start + +2025-09-24 03:35:52,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:52,629 INFO Out dated connection ,size=0 + +2025-09-24 03:35:52,629 INFO Connection check task end + +2025-09-24 03:35:55,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:55,629 INFO Connection check task start + +2025-09-24 03:35:55,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:55,629 INFO Out dated connection ,size=0 + +2025-09-24 03:35:55,629 INFO Connection check task end + +2025-09-24 03:35:58,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:35:58,630 INFO Connection check task start + +2025-09-24 03:35:58,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:35:58,631 INFO Out dated connection ,size=0 + +2025-09-24 03:35:58,631 INFO Connection check task end + +2025-09-24 03:36:01,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:01,631 INFO Connection check task start + +2025-09-24 03:36:01,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:01,631 INFO Out dated connection ,size=0 + +2025-09-24 03:36:01,631 INFO Connection check task end + +2025-09-24 03:36:04,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:04,633 INFO Connection check task start + +2025-09-24 03:36:04,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:04,633 INFO Out dated connection ,size=0 + +2025-09-24 03:36:04,633 INFO Connection check task end + +2025-09-24 03:36:07,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:07,633 INFO Connection check task start + +2025-09-24 03:36:07,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:07,634 INFO Out dated connection ,size=0 + +2025-09-24 03:36:07,634 INFO Connection check task end + +2025-09-24 03:36:10,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:10,634 INFO Connection check task start + +2025-09-24 03:36:10,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:10,634 INFO Out dated connection ,size=0 + +2025-09-24 03:36:10,634 INFO Connection check task end + +2025-09-24 03:36:13,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:13,636 INFO Connection check task start + +2025-09-24 03:36:13,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:13,636 INFO Out dated connection ,size=0 + +2025-09-24 03:36:13,636 INFO Connection check task end + +2025-09-24 03:36:16,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:16,636 INFO Connection check task start + +2025-09-24 03:36:16,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:16,636 INFO Out dated connection ,size=0 + +2025-09-24 03:36:16,636 INFO Connection check task end + +2025-09-24 03:36:19,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:19,637 INFO Connection check task start + +2025-09-24 03:36:19,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:19,637 INFO Out dated connection ,size=0 + +2025-09-24 03:36:19,637 INFO Connection check task end + +2025-09-24 03:36:22,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:22,637 INFO Connection check task start + +2025-09-24 03:36:22,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:22,638 INFO Out dated connection ,size=0 + +2025-09-24 03:36:22,638 INFO Connection check task end + +2025-09-24 03:36:25,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:25,638 INFO Connection check task start + +2025-09-24 03:36:25,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:25,638 INFO Out dated connection ,size=0 + +2025-09-24 03:36:25,638 INFO Connection check task end + +2025-09-24 03:36:28,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:28,639 INFO Connection check task start + +2025-09-24 03:36:28,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:28,639 INFO Out dated connection ,size=0 + +2025-09-24 03:36:28,639 INFO Connection check task end + +2025-09-24 03:36:31,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:31,639 INFO Connection check task start + +2025-09-24 03:36:31,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:31,639 INFO Out dated connection ,size=0 + +2025-09-24 03:36:31,640 INFO Connection check task end + +2025-09-24 03:36:34,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:34,642 INFO Connection check task start + +2025-09-24 03:36:34,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:34,642 INFO Out dated connection ,size=0 + +2025-09-24 03:36:34,642 INFO Connection check task end + +2025-09-24 03:36:37,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:37,644 INFO Connection check task start + +2025-09-24 03:36:37,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:37,644 INFO Out dated connection ,size=0 + +2025-09-24 03:36:37,644 INFO Connection check task end + +2025-09-24 03:36:40,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:40,644 INFO Connection check task start + +2025-09-24 03:36:40,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:40,645 INFO Out dated connection ,size=0 + +2025-09-24 03:36:40,645 INFO Connection check task end + +2025-09-24 03:36:43,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:43,645 INFO Connection check task start + +2025-09-24 03:36:43,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:43,645 INFO Out dated connection ,size=0 + +2025-09-24 03:36:43,645 INFO Connection check task end + +2025-09-24 03:36:46,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:46,647 INFO Connection check task start + +2025-09-24 03:36:46,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:46,647 INFO Out dated connection ,size=0 + +2025-09-24 03:36:46,647 INFO Connection check task end + +2025-09-24 03:36:49,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:49,648 INFO Connection check task start + +2025-09-24 03:36:49,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:49,648 INFO Out dated connection ,size=0 + +2025-09-24 03:36:49,648 INFO Connection check task end + +2025-09-24 03:36:52,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:52,648 INFO Connection check task start + +2025-09-24 03:36:52,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:52,648 INFO Out dated connection ,size=0 + +2025-09-24 03:36:52,648 INFO Connection check task end + +2025-09-24 03:36:55,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:55,649 INFO Connection check task start + +2025-09-24 03:36:55,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:55,649 INFO Out dated connection ,size=0 + +2025-09-24 03:36:55,649 INFO Connection check task end + +2025-09-24 03:36:58,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:36:58,650 INFO Connection check task start + +2025-09-24 03:36:58,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:36:58,650 INFO Out dated connection ,size=0 + +2025-09-24 03:36:58,650 INFO Connection check task end + +2025-09-24 03:37:01,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:01,650 INFO Connection check task start + +2025-09-24 03:37:01,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:01,650 INFO Out dated connection ,size=0 + +2025-09-24 03:37:01,650 INFO Connection check task end + +2025-09-24 03:37:04,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:04,652 INFO Connection check task start + +2025-09-24 03:37:04,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:04,653 INFO Out dated connection ,size=0 + +2025-09-24 03:37:04,653 INFO Connection check task end + +2025-09-24 03:37:07,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:07,654 INFO Connection check task start + +2025-09-24 03:37:07,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:07,654 INFO Out dated connection ,size=0 + +2025-09-24 03:37:07,654 INFO Connection check task end + +2025-09-24 03:37:10,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:10,654 INFO Connection check task start + +2025-09-24 03:37:10,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:10,654 INFO Out dated connection ,size=0 + +2025-09-24 03:37:10,654 INFO Connection check task end + +2025-09-24 03:37:13,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:13,655 INFO Connection check task start + +2025-09-24 03:37:13,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:13,655 INFO Out dated connection ,size=0 + +2025-09-24 03:37:13,655 INFO Connection check task end + +2025-09-24 03:37:16,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:16,656 INFO Connection check task start + +2025-09-24 03:37:16,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:16,656 INFO Out dated connection ,size=0 + +2025-09-24 03:37:16,656 INFO Connection check task end + +2025-09-24 03:37:19,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:19,656 INFO Connection check task start + +2025-09-24 03:37:19,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:19,656 INFO Out dated connection ,size=0 + +2025-09-24 03:37:19,656 INFO Connection check task end + +2025-09-24 03:37:22,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:22,658 INFO Connection check task start + +2025-09-24 03:37:22,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:22,659 INFO Out dated connection ,size=0 + +2025-09-24 03:37:22,659 INFO Connection check task end + +2025-09-24 03:37:25,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:25,659 INFO Connection check task start + +2025-09-24 03:37:25,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:25,659 INFO Out dated connection ,size=0 + +2025-09-24 03:37:25,659 INFO Connection check task end + +2025-09-24 03:37:28,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:28,659 INFO Connection check task start + +2025-09-24 03:37:28,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:28,660 INFO Out dated connection ,size=0 + +2025-09-24 03:37:28,660 INFO Connection check task end + +2025-09-24 03:37:31,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:31,660 INFO Connection check task start + +2025-09-24 03:37:31,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:31,660 INFO Out dated connection ,size=0 + +2025-09-24 03:37:31,660 INFO Connection check task end + +2025-09-24 03:37:34,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:34,662 INFO Connection check task start + +2025-09-24 03:37:34,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:34,662 INFO Out dated connection ,size=0 + +2025-09-24 03:37:34,662 INFO Connection check task end + +2025-09-24 03:37:37,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:37,662 INFO Connection check task start + +2025-09-24 03:37:37,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:37,662 INFO Out dated connection ,size=0 + +2025-09-24 03:37:37,662 INFO Connection check task end + +2025-09-24 03:37:40,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:40,663 INFO Connection check task start + +2025-09-24 03:37:40,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:40,663 INFO Out dated connection ,size=0 + +2025-09-24 03:37:40,663 INFO Connection check task end + +2025-09-24 03:37:43,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:43,665 INFO Connection check task start + +2025-09-24 03:37:43,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:43,665 INFO Out dated connection ,size=0 + +2025-09-24 03:37:43,665 INFO Connection check task end + +2025-09-24 03:37:46,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:46,666 INFO Connection check task start + +2025-09-24 03:37:46,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:46,666 INFO Out dated connection ,size=0 + +2025-09-24 03:37:46,666 INFO Connection check task end + +2025-09-24 03:37:49,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:49,668 INFO Connection check task start + +2025-09-24 03:37:49,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:49,668 INFO Out dated connection ,size=0 + +2025-09-24 03:37:49,668 INFO Connection check task end + +2025-09-24 03:37:52,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:52,668 INFO Connection check task start + +2025-09-24 03:37:52,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:52,668 INFO Out dated connection ,size=0 + +2025-09-24 03:37:52,668 INFO Connection check task end + +2025-09-24 03:37:55,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:55,671 INFO Connection check task start + +2025-09-24 03:37:55,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:55,671 INFO Out dated connection ,size=0 + +2025-09-24 03:37:55,671 INFO Connection check task end + +2025-09-24 03:37:58,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:37:58,673 INFO Connection check task start + +2025-09-24 03:37:58,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:37:58,673 INFO Out dated connection ,size=0 + +2025-09-24 03:37:58,673 INFO Connection check task end + +2025-09-24 03:38:01,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:01,675 INFO Connection check task start + +2025-09-24 03:38:01,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:01,676 INFO Out dated connection ,size=0 + +2025-09-24 03:38:01,676 INFO Connection check task end + +2025-09-24 03:38:04,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:04,677 INFO Connection check task start + +2025-09-24 03:38:04,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:04,677 INFO Out dated connection ,size=0 + +2025-09-24 03:38:04,677 INFO Connection check task end + +2025-09-24 03:38:07,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:07,677 INFO Connection check task start + +2025-09-24 03:38:07,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:07,678 INFO Out dated connection ,size=0 + +2025-09-24 03:38:07,678 INFO Connection check task end + +2025-09-24 03:38:10,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:10,679 INFO Connection check task start + +2025-09-24 03:38:10,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:10,679 INFO Out dated connection ,size=0 + +2025-09-24 03:38:10,679 INFO Connection check task end + +2025-09-24 03:38:13,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:13,681 INFO Connection check task start + +2025-09-24 03:38:13,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:13,681 INFO Out dated connection ,size=0 + +2025-09-24 03:38:13,681 INFO Connection check task end + +2025-09-24 03:38:16,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:16,682 INFO Connection check task start + +2025-09-24 03:38:16,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:16,683 INFO Out dated connection ,size=0 + +2025-09-24 03:38:16,683 INFO Connection check task end + +2025-09-24 03:38:19,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:19,683 INFO Connection check task start + +2025-09-24 03:38:19,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:19,683 INFO Out dated connection ,size=0 + +2025-09-24 03:38:19,683 INFO Connection check task end + +2025-09-24 03:38:22,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:22,683 INFO Connection check task start + +2025-09-24 03:38:22,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:22,683 INFO Out dated connection ,size=0 + +2025-09-24 03:38:22,683 INFO Connection check task end + +2025-09-24 03:38:25,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:25,685 INFO Connection check task start + +2025-09-24 03:38:25,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:25,685 INFO Out dated connection ,size=0 + +2025-09-24 03:38:25,685 INFO Connection check task end + +2025-09-24 03:38:28,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:28,686 INFO Connection check task start + +2025-09-24 03:38:28,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:28,686 INFO Out dated connection ,size=0 + +2025-09-24 03:38:28,686 INFO Connection check task end + +2025-09-24 03:38:31,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:31,687 INFO Connection check task start + +2025-09-24 03:38:31,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:31,687 INFO Out dated connection ,size=0 + +2025-09-24 03:38:31,687 INFO Connection check task end + +2025-09-24 03:38:34,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:34,689 INFO Connection check task start + +2025-09-24 03:38:34,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:34,689 INFO Out dated connection ,size=0 + +2025-09-24 03:38:34,690 INFO Connection check task end + +2025-09-24 03:38:37,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:37,691 INFO Connection check task start + +2025-09-24 03:38:37,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:37,691 INFO Out dated connection ,size=0 + +2025-09-24 03:38:37,691 INFO Connection check task end + +2025-09-24 03:38:40,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:40,692 INFO Connection check task start + +2025-09-24 03:38:40,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:40,692 INFO Out dated connection ,size=0 + +2025-09-24 03:38:40,692 INFO Connection check task end + +2025-09-24 03:38:43,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:43,694 INFO Connection check task start + +2025-09-24 03:38:43,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:43,694 INFO Out dated connection ,size=0 + +2025-09-24 03:38:43,694 INFO Connection check task end + +2025-09-24 03:38:46,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:46,695 INFO Connection check task start + +2025-09-24 03:38:46,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:46,695 INFO Out dated connection ,size=0 + +2025-09-24 03:38:46,695 INFO Connection check task end + +2025-09-24 03:38:49,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:49,695 INFO Connection check task start + +2025-09-24 03:38:49,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:49,695 INFO Out dated connection ,size=0 + +2025-09-24 03:38:49,696 INFO Connection check task end + +2025-09-24 03:38:52,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:52,696 INFO Connection check task start + +2025-09-24 03:38:52,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:52,696 INFO Out dated connection ,size=0 + +2025-09-24 03:38:52,696 INFO Connection check task end + +2025-09-24 03:38:55,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:55,697 INFO Connection check task start + +2025-09-24 03:38:55,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:55,698 INFO Out dated connection ,size=0 + +2025-09-24 03:38:55,698 INFO Connection check task end + +2025-09-24 03:38:58,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:38:58,698 INFO Connection check task start + +2025-09-24 03:38:58,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:38:58,698 INFO Out dated connection ,size=0 + +2025-09-24 03:38:58,698 INFO Connection check task end + +2025-09-24 03:39:01,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:01,700 INFO Connection check task start + +2025-09-24 03:39:01,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:01,701 INFO Out dated connection ,size=0 + +2025-09-24 03:39:01,701 INFO Connection check task end + +2025-09-24 03:39:04,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:04,703 INFO Connection check task start + +2025-09-24 03:39:04,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:04,703 INFO Out dated connection ,size=0 + +2025-09-24 03:39:04,703 INFO Connection check task end + +2025-09-24 03:39:07,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:07,703 INFO Connection check task start + +2025-09-24 03:39:07,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:07,704 INFO Out dated connection ,size=0 + +2025-09-24 03:39:07,704 INFO Connection check task end + +2025-09-24 03:39:10,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:10,704 INFO Connection check task start + +2025-09-24 03:39:10,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:10,704 INFO Out dated connection ,size=0 + +2025-09-24 03:39:10,704 INFO Connection check task end + +2025-09-24 03:39:13,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:13,707 INFO Connection check task start + +2025-09-24 03:39:13,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:13,707 INFO Out dated connection ,size=0 + +2025-09-24 03:39:13,707 INFO Connection check task end + +2025-09-24 03:39:16,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:16,709 INFO Connection check task start + +2025-09-24 03:39:16,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:16,709 INFO Out dated connection ,size=0 + +2025-09-24 03:39:16,709 INFO Connection check task end + +2025-09-24 03:39:19,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:19,710 INFO Connection check task start + +2025-09-24 03:39:19,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:19,710 INFO Out dated connection ,size=0 + +2025-09-24 03:39:19,710 INFO Connection check task end + +2025-09-24 03:39:22,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:22,711 INFO Connection check task start + +2025-09-24 03:39:22,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:22,711 INFO Out dated connection ,size=0 + +2025-09-24 03:39:22,711 INFO Connection check task end + +2025-09-24 03:39:25,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:25,712 INFO Connection check task start + +2025-09-24 03:39:25,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:25,712 INFO Out dated connection ,size=0 + +2025-09-24 03:39:25,712 INFO Connection check task end + +2025-09-24 03:39:28,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:28,713 INFO Connection check task start + +2025-09-24 03:39:28,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:28,713 INFO Out dated connection ,size=0 + +2025-09-24 03:39:28,713 INFO Connection check task end + +2025-09-24 03:39:31,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:31,715 INFO Connection check task start + +2025-09-24 03:39:31,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:31,715 INFO Out dated connection ,size=0 + +2025-09-24 03:39:31,716 INFO Connection check task end + +2025-09-24 03:39:34,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:34,717 INFO Connection check task start + +2025-09-24 03:39:34,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:34,717 INFO Out dated connection ,size=0 + +2025-09-24 03:39:34,717 INFO Connection check task end + +2025-09-24 03:39:37,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:37,718 INFO Connection check task start + +2025-09-24 03:39:37,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:37,718 INFO Out dated connection ,size=0 + +2025-09-24 03:39:37,718 INFO Connection check task end + +2025-09-24 03:39:40,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:40,719 INFO Connection check task start + +2025-09-24 03:39:40,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:40,719 INFO Out dated connection ,size=0 + +2025-09-24 03:39:40,719 INFO Connection check task end + +2025-09-24 03:39:43,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:43,721 INFO Connection check task start + +2025-09-24 03:39:43,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:43,722 INFO Out dated connection ,size=0 + +2025-09-24 03:39:43,722 INFO Connection check task end + +2025-09-24 03:39:46,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:46,722 INFO Connection check task start + +2025-09-24 03:39:46,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:46,722 INFO Out dated connection ,size=0 + +2025-09-24 03:39:46,722 INFO Connection check task end + +2025-09-24 03:39:49,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:49,723 INFO Connection check task start + +2025-09-24 03:39:49,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:49,723 INFO Out dated connection ,size=0 + +2025-09-24 03:39:49,723 INFO Connection check task end + +2025-09-24 03:39:52,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:52,724 INFO Connection check task start + +2025-09-24 03:39:52,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:52,724 INFO Out dated connection ,size=0 + +2025-09-24 03:39:52,724 INFO Connection check task end + +2025-09-24 03:39:55,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:55,724 INFO Connection check task start + +2025-09-24 03:39:55,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:55,725 INFO Out dated connection ,size=0 + +2025-09-24 03:39:55,725 INFO Connection check task end + +2025-09-24 03:39:58,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:39:58,725 INFO Connection check task start + +2025-09-24 03:39:58,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:39:58,725 INFO Out dated connection ,size=0 + +2025-09-24 03:39:58,725 INFO Connection check task end + +2025-09-24 03:40:01,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:01,725 INFO Connection check task start + +2025-09-24 03:40:01,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:01,726 INFO Out dated connection ,size=0 + +2025-09-24 03:40:01,726 INFO Connection check task end + +2025-09-24 03:40:04,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:04,728 INFO Connection check task start + +2025-09-24 03:40:04,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:04,728 INFO Out dated connection ,size=0 + +2025-09-24 03:40:04,728 INFO Connection check task end + +2025-09-24 03:40:07,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:07,728 INFO Connection check task start + +2025-09-24 03:40:07,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:07,728 INFO Out dated connection ,size=0 + +2025-09-24 03:40:07,728 INFO Connection check task end + +2025-09-24 03:40:10,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:10,728 INFO Connection check task start + +2025-09-24 03:40:10,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:10,729 INFO Out dated connection ,size=0 + +2025-09-24 03:40:10,729 INFO Connection check task end + +2025-09-24 03:40:13,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:13,729 INFO Connection check task start + +2025-09-24 03:40:13,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:13,729 INFO Out dated connection ,size=0 + +2025-09-24 03:40:13,729 INFO Connection check task end + +2025-09-24 03:40:16,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:16,730 INFO Connection check task start + +2025-09-24 03:40:16,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:16,730 INFO Out dated connection ,size=0 + +2025-09-24 03:40:16,730 INFO Connection check task end + +2025-09-24 03:40:19,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:19,730 INFO Connection check task start + +2025-09-24 03:40:19,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:19,731 INFO Out dated connection ,size=0 + +2025-09-24 03:40:19,731 INFO Connection check task end + +2025-09-24 03:40:22,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:22,731 INFO Connection check task start + +2025-09-24 03:40:22,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:22,731 INFO Out dated connection ,size=0 + +2025-09-24 03:40:22,731 INFO Connection check task end + +2025-09-24 03:40:25,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:25,733 INFO Connection check task start + +2025-09-24 03:40:25,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:25,733 INFO Out dated connection ,size=0 + +2025-09-24 03:40:25,733 INFO Connection check task end + +2025-09-24 03:40:28,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:28,733 INFO Connection check task start + +2025-09-24 03:40:28,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:28,733 INFO Out dated connection ,size=0 + +2025-09-24 03:40:28,733 INFO Connection check task end + +2025-09-24 03:40:31,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:31,735 INFO Connection check task start + +2025-09-24 03:40:31,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:31,735 INFO Out dated connection ,size=0 + +2025-09-24 03:40:31,735 INFO Connection check task end + +2025-09-24 03:40:34,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:34,737 INFO Connection check task start + +2025-09-24 03:40:34,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:34,737 INFO Out dated connection ,size=0 + +2025-09-24 03:40:34,737 INFO Connection check task end + +2025-09-24 03:40:37,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:37,740 INFO Connection check task start + +2025-09-24 03:40:37,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:37,740 INFO Out dated connection ,size=0 + +2025-09-24 03:40:37,740 INFO Connection check task end + +2025-09-24 03:40:40,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:40,741 INFO Connection check task start + +2025-09-24 03:40:40,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:40,741 INFO Out dated connection ,size=0 + +2025-09-24 03:40:40,741 INFO Connection check task end + +2025-09-24 03:40:43,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:43,743 INFO Connection check task start + +2025-09-24 03:40:43,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:43,743 INFO Out dated connection ,size=0 + +2025-09-24 03:40:43,743 INFO Connection check task end + +2025-09-24 03:40:46,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:46,744 INFO Connection check task start + +2025-09-24 03:40:46,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:46,744 INFO Out dated connection ,size=0 + +2025-09-24 03:40:46,744 INFO Connection check task end + +2025-09-24 03:40:49,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:49,745 INFO Connection check task start + +2025-09-24 03:40:49,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:49,745 INFO Out dated connection ,size=0 + +2025-09-24 03:40:49,745 INFO Connection check task end + +2025-09-24 03:40:52,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:52,745 INFO Connection check task start + +2025-09-24 03:40:52,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:52,745 INFO Out dated connection ,size=0 + +2025-09-24 03:40:52,745 INFO Connection check task end + +2025-09-24 03:40:55,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:55,747 INFO Connection check task start + +2025-09-24 03:40:55,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:55,747 INFO Out dated connection ,size=0 + +2025-09-24 03:40:55,747 INFO Connection check task end + +2025-09-24 03:40:58,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:40:58,748 INFO Connection check task start + +2025-09-24 03:40:58,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:40:58,748 INFO Out dated connection ,size=0 + +2025-09-24 03:40:58,748 INFO Connection check task end + +2025-09-24 03:41:01,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:01,750 INFO Connection check task start + +2025-09-24 03:41:01,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:01,750 INFO Out dated connection ,size=0 + +2025-09-24 03:41:01,750 INFO Connection check task end + +2025-09-24 03:41:04,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:04,751 INFO Connection check task start + +2025-09-24 03:41:04,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:04,751 INFO Out dated connection ,size=0 + +2025-09-24 03:41:04,751 INFO Connection check task end + +2025-09-24 03:41:07,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:07,752 INFO Connection check task start + +2025-09-24 03:41:07,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:07,752 INFO Out dated connection ,size=0 + +2025-09-24 03:41:07,752 INFO Connection check task end + +2025-09-24 03:41:10,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:10,752 INFO Connection check task start + +2025-09-24 03:41:10,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:10,753 INFO Out dated connection ,size=0 + +2025-09-24 03:41:10,753 INFO Connection check task end + +2025-09-24 03:41:13,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:13,753 INFO Connection check task start + +2025-09-24 03:41:13,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:13,753 INFO Out dated connection ,size=0 + +2025-09-24 03:41:13,753 INFO Connection check task end + +2025-09-24 03:41:16,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:16,753 INFO Connection check task start + +2025-09-24 03:41:16,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:16,754 INFO Out dated connection ,size=0 + +2025-09-24 03:41:16,754 INFO Connection check task end + +2025-09-24 03:41:19,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:19,754 INFO Connection check task start + +2025-09-24 03:41:19,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:19,754 INFO Out dated connection ,size=0 + +2025-09-24 03:41:19,754 INFO Connection check task end + +2025-09-24 03:41:22,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:22,755 INFO Connection check task start + +2025-09-24 03:41:22,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:22,755 INFO Out dated connection ,size=0 + +2025-09-24 03:41:22,755 INFO Connection check task end + +2025-09-24 03:41:25,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:25,757 INFO Connection check task start + +2025-09-24 03:41:25,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:25,757 INFO Out dated connection ,size=0 + +2025-09-24 03:41:25,757 INFO Connection check task end + +2025-09-24 03:41:28,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:28,758 INFO Connection check task start + +2025-09-24 03:41:28,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:28,758 INFO Out dated connection ,size=0 + +2025-09-24 03:41:28,758 INFO Connection check task end + +2025-09-24 03:41:31,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:31,760 INFO Connection check task start + +2025-09-24 03:41:31,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:31,760 INFO Out dated connection ,size=0 + +2025-09-24 03:41:31,761 INFO Connection check task end + +2025-09-24 03:41:34,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:34,763 INFO Connection check task start + +2025-09-24 03:41:34,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:34,763 INFO Out dated connection ,size=0 + +2025-09-24 03:41:34,763 INFO Connection check task end + +2025-09-24 03:41:37,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:37,765 INFO Connection check task start + +2025-09-24 03:41:37,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:37,765 INFO Out dated connection ,size=0 + +2025-09-24 03:41:37,765 INFO Connection check task end + +2025-09-24 03:41:40,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:40,766 INFO Connection check task start + +2025-09-24 03:41:40,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:40,766 INFO Out dated connection ,size=0 + +2025-09-24 03:41:40,766 INFO Connection check task end + +2025-09-24 03:41:43,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:43,768 INFO Connection check task start + +2025-09-24 03:41:43,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:43,768 INFO Out dated connection ,size=0 + +2025-09-24 03:41:43,768 INFO Connection check task end + +2025-09-24 03:41:46,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:46,769 INFO Connection check task start + +2025-09-24 03:41:46,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:46,769 INFO Out dated connection ,size=0 + +2025-09-24 03:41:46,769 INFO Connection check task end + +2025-09-24 03:41:49,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:49,770 INFO Connection check task start + +2025-09-24 03:41:49,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:49,770 INFO Out dated connection ,size=0 + +2025-09-24 03:41:49,770 INFO Connection check task end + +2025-09-24 03:41:52,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:52,771 INFO Connection check task start + +2025-09-24 03:41:52,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:52,772 INFO Out dated connection ,size=0 + +2025-09-24 03:41:52,772 INFO Connection check task end + +2025-09-24 03:41:55,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:55,774 INFO Connection check task start + +2025-09-24 03:41:55,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:55,774 INFO Out dated connection ,size=0 + +2025-09-24 03:41:55,774 INFO Connection check task end + +2025-09-24 03:41:58,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:41:58,775 INFO Connection check task start + +2025-09-24 03:41:58,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:41:58,775 INFO Out dated connection ,size=0 + +2025-09-24 03:41:58,775 INFO Connection check task end + +2025-09-24 03:42:01,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:01,777 INFO Connection check task start + +2025-09-24 03:42:01,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:01,778 INFO Out dated connection ,size=0 + +2025-09-24 03:42:01,778 INFO Connection check task end + +2025-09-24 03:42:04,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:04,778 INFO Connection check task start + +2025-09-24 03:42:04,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:04,778 INFO Out dated connection ,size=0 + +2025-09-24 03:42:04,778 INFO Connection check task end + +2025-09-24 03:42:07,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:07,780 INFO Connection check task start + +2025-09-24 03:42:07,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:07,780 INFO Out dated connection ,size=0 + +2025-09-24 03:42:07,781 INFO Connection check task end + +2025-09-24 03:42:10,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:10,781 INFO Connection check task start + +2025-09-24 03:42:10,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:10,781 INFO Out dated connection ,size=0 + +2025-09-24 03:42:10,781 INFO Connection check task end + +2025-09-24 03:42:13,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:13,781 INFO Connection check task start + +2025-09-24 03:42:13,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:13,782 INFO Out dated connection ,size=0 + +2025-09-24 03:42:13,782 INFO Connection check task end + +2025-09-24 03:42:16,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:16,782 INFO Connection check task start + +2025-09-24 03:42:16,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:16,782 INFO Out dated connection ,size=0 + +2025-09-24 03:42:16,782 INFO Connection check task end + +2025-09-24 03:42:19,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:19,784 INFO Connection check task start + +2025-09-24 03:42:19,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:19,784 INFO Out dated connection ,size=0 + +2025-09-24 03:42:19,784 INFO Connection check task end + +2025-09-24 03:42:22,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:22,784 INFO Connection check task start + +2025-09-24 03:42:22,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:22,784 INFO Out dated connection ,size=0 + +2025-09-24 03:42:22,784 INFO Connection check task end + +2025-09-24 03:42:25,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:25,786 INFO Connection check task start + +2025-09-24 03:42:25,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:25,786 INFO Out dated connection ,size=0 + +2025-09-24 03:42:25,786 INFO Connection check task end + +2025-09-24 03:42:28,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:28,788 INFO Connection check task start + +2025-09-24 03:42:28,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:28,788 INFO Out dated connection ,size=0 + +2025-09-24 03:42:28,789 INFO Connection check task end + +2025-09-24 03:42:31,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:31,789 INFO Connection check task start + +2025-09-24 03:42:31,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:31,790 INFO Out dated connection ,size=0 + +2025-09-24 03:42:31,790 INFO Connection check task end + +2025-09-24 03:42:34,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:34,790 INFO Connection check task start + +2025-09-24 03:42:34,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:34,790 INFO Out dated connection ,size=0 + +2025-09-24 03:42:34,790 INFO Connection check task end + +2025-09-24 03:42:37,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:37,792 INFO Connection check task start + +2025-09-24 03:42:37,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:37,792 INFO Out dated connection ,size=0 + +2025-09-24 03:42:37,792 INFO Connection check task end + +2025-09-24 03:42:40,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:40,793 INFO Connection check task start + +2025-09-24 03:42:40,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:40,793 INFO Out dated connection ,size=0 + +2025-09-24 03:42:40,793 INFO Connection check task end + +2025-09-24 03:42:43,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:43,795 INFO Connection check task start + +2025-09-24 03:42:43,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:43,795 INFO Out dated connection ,size=0 + +2025-09-24 03:42:43,795 INFO Connection check task end + +2025-09-24 03:42:46,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:46,796 INFO Connection check task start + +2025-09-24 03:42:46,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:46,796 INFO Out dated connection ,size=0 + +2025-09-24 03:42:46,796 INFO Connection check task end + +2025-09-24 03:42:49,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:49,798 INFO Connection check task start + +2025-09-24 03:42:49,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:49,798 INFO Out dated connection ,size=0 + +2025-09-24 03:42:49,798 INFO Connection check task end + +2025-09-24 03:42:52,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:52,800 INFO Connection check task start + +2025-09-24 03:42:52,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:52,800 INFO Out dated connection ,size=0 + +2025-09-24 03:42:52,801 INFO Connection check task end + +2025-09-24 03:42:55,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:55,802 INFO Connection check task start + +2025-09-24 03:42:55,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:55,802 INFO Out dated connection ,size=0 + +2025-09-24 03:42:55,802 INFO Connection check task end + +2025-09-24 03:42:58,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:42:58,803 INFO Connection check task start + +2025-09-24 03:42:58,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:42:58,803 INFO Out dated connection ,size=0 + +2025-09-24 03:42:58,803 INFO Connection check task end + +2025-09-24 03:43:01,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:01,805 INFO Connection check task start + +2025-09-24 03:43:01,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:01,806 INFO Out dated connection ,size=0 + +2025-09-24 03:43:01,806 INFO Connection check task end + +2025-09-24 03:43:04,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:04,808 INFO Connection check task start + +2025-09-24 03:43:04,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:04,808 INFO Out dated connection ,size=0 + +2025-09-24 03:43:04,808 INFO Connection check task end + +2025-09-24 03:43:07,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:07,810 INFO Connection check task start + +2025-09-24 03:43:07,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:07,810 INFO Out dated connection ,size=0 + +2025-09-24 03:43:07,810 INFO Connection check task end + +2025-09-24 03:43:10,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:10,813 INFO Connection check task start + +2025-09-24 03:43:10,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:10,813 INFO Out dated connection ,size=0 + +2025-09-24 03:43:10,813 INFO Connection check task end + +2025-09-24 03:43:13,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:13,815 INFO Connection check task start + +2025-09-24 03:43:13,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:13,815 INFO Out dated connection ,size=0 + +2025-09-24 03:43:13,815 INFO Connection check task end + +2025-09-24 03:43:16,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:16,817 INFO Connection check task start + +2025-09-24 03:43:16,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:16,818 INFO Out dated connection ,size=0 + +2025-09-24 03:43:16,818 INFO Connection check task end + +2025-09-24 03:43:19,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:19,818 INFO Connection check task start + +2025-09-24 03:43:19,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:19,818 INFO Out dated connection ,size=0 + +2025-09-24 03:43:19,818 INFO Connection check task end + +2025-09-24 03:43:22,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:22,818 INFO Connection check task start + +2025-09-24 03:43:22,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:22,818 INFO Out dated connection ,size=0 + +2025-09-24 03:43:22,818 INFO Connection check task end + +2025-09-24 03:43:25,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:25,819 INFO Connection check task start + +2025-09-24 03:43:25,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:25,819 INFO Out dated connection ,size=0 + +2025-09-24 03:43:25,819 INFO Connection check task end + +2025-09-24 03:43:28,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:28,819 INFO Connection check task start + +2025-09-24 03:43:28,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:28,819 INFO Out dated connection ,size=0 + +2025-09-24 03:43:28,819 INFO Connection check task end + +2025-09-24 03:43:31,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:31,820 INFO Connection check task start + +2025-09-24 03:43:31,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:31,821 INFO Out dated connection ,size=0 + +2025-09-24 03:43:31,821 INFO Connection check task end + +2025-09-24 03:43:34,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:34,821 INFO Connection check task start + +2025-09-24 03:43:34,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:34,821 INFO Out dated connection ,size=0 + +2025-09-24 03:43:34,821 INFO Connection check task end + +2025-09-24 03:43:37,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:37,822 INFO Connection check task start + +2025-09-24 03:43:37,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:37,822 INFO Out dated connection ,size=0 + +2025-09-24 03:43:37,822 INFO Connection check task end + +2025-09-24 03:43:40,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:40,824 INFO Connection check task start + +2025-09-24 03:43:40,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:40,824 INFO Out dated connection ,size=0 + +2025-09-24 03:43:40,824 INFO Connection check task end + +2025-09-24 03:43:43,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:43,827 INFO Connection check task start + +2025-09-24 03:43:43,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:43,827 INFO Out dated connection ,size=0 + +2025-09-24 03:43:43,827 INFO Connection check task end + +2025-09-24 03:43:46,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:46,828 INFO Connection check task start + +2025-09-24 03:43:46,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:46,828 INFO Out dated connection ,size=0 + +2025-09-24 03:43:46,828 INFO Connection check task end + +2025-09-24 03:43:49,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:49,828 INFO Connection check task start + +2025-09-24 03:43:49,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:49,828 INFO Out dated connection ,size=0 + +2025-09-24 03:43:49,828 INFO Connection check task end + +2025-09-24 03:43:52,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:52,829 INFO Connection check task start + +2025-09-24 03:43:52,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:52,829 INFO Out dated connection ,size=0 + +2025-09-24 03:43:52,829 INFO Connection check task end + +2025-09-24 03:43:55,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:55,830 INFO Connection check task start + +2025-09-24 03:43:55,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:55,830 INFO Out dated connection ,size=0 + +2025-09-24 03:43:55,830 INFO Connection check task end + +2025-09-24 03:43:58,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:43:58,831 INFO Connection check task start + +2025-09-24 03:43:58,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:43:58,831 INFO Out dated connection ,size=0 + +2025-09-24 03:43:58,831 INFO Connection check task end + +2025-09-24 03:44:01,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:01,831 INFO Connection check task start + +2025-09-24 03:44:01,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:01,831 INFO Out dated connection ,size=0 + +2025-09-24 03:44:01,831 INFO Connection check task end + +2025-09-24 03:44:04,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:04,833 INFO Connection check task start + +2025-09-24 03:44:04,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:04,833 INFO Out dated connection ,size=0 + +2025-09-24 03:44:04,833 INFO Connection check task end + +2025-09-24 03:44:07,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:07,834 INFO Connection check task start + +2025-09-24 03:44:07,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:07,834 INFO Out dated connection ,size=0 + +2025-09-24 03:44:07,834 INFO Connection check task end + +2025-09-24 03:44:10,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:10,836 INFO Connection check task start + +2025-09-24 03:44:10,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:10,836 INFO Out dated connection ,size=0 + +2025-09-24 03:44:10,836 INFO Connection check task end + +2025-09-24 03:44:13,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:13,837 INFO Connection check task start + +2025-09-24 03:44:13,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:13,837 INFO Out dated connection ,size=0 + +2025-09-24 03:44:13,837 INFO Connection check task end + +2025-09-24 03:44:16,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:16,837 INFO Connection check task start + +2025-09-24 03:44:16,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:16,838 INFO Out dated connection ,size=0 + +2025-09-24 03:44:16,838 INFO Connection check task end + +2025-09-24 03:44:19,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:19,838 INFO Connection check task start + +2025-09-24 03:44:19,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:19,838 INFO Out dated connection ,size=0 + +2025-09-24 03:44:19,838 INFO Connection check task end + +2025-09-24 03:44:22,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:22,838 INFO Connection check task start + +2025-09-24 03:44:22,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:22,838 INFO Out dated connection ,size=0 + +2025-09-24 03:44:22,838 INFO Connection check task end + +2025-09-24 03:44:25,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:25,840 INFO Connection check task start + +2025-09-24 03:44:25,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:25,841 INFO Out dated connection ,size=0 + +2025-09-24 03:44:25,841 INFO Connection check task end + +2025-09-24 03:44:28,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:28,841 INFO Connection check task start + +2025-09-24 03:44:28,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:28,841 INFO Out dated connection ,size=0 + +2025-09-24 03:44:28,841 INFO Connection check task end + +2025-09-24 03:44:31,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:31,843 INFO Connection check task start + +2025-09-24 03:44:31,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:31,843 INFO Out dated connection ,size=0 + +2025-09-24 03:44:31,843 INFO Connection check task end + +2025-09-24 03:44:34,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:34,844 INFO Connection check task start + +2025-09-24 03:44:34,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:34,844 INFO Out dated connection ,size=0 + +2025-09-24 03:44:34,845 INFO Connection check task end + +2025-09-24 03:44:37,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:37,845 INFO Connection check task start + +2025-09-24 03:44:37,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:37,845 INFO Out dated connection ,size=0 + +2025-09-24 03:44:37,845 INFO Connection check task end + +2025-09-24 03:44:40,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:40,845 INFO Connection check task start + +2025-09-24 03:44:40,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:40,845 INFO Out dated connection ,size=0 + +2025-09-24 03:44:40,845 INFO Connection check task end + +2025-09-24 03:44:43,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:43,847 INFO Connection check task start + +2025-09-24 03:44:43,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:43,847 INFO Out dated connection ,size=0 + +2025-09-24 03:44:43,847 INFO Connection check task end + +2025-09-24 03:44:46,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:46,848 INFO Connection check task start + +2025-09-24 03:44:46,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:46,848 INFO Out dated connection ,size=0 + +2025-09-24 03:44:46,848 INFO Connection check task end + +2025-09-24 03:44:49,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:49,848 INFO Connection check task start + +2025-09-24 03:44:49,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:49,848 INFO Out dated connection ,size=0 + +2025-09-24 03:44:49,848 INFO Connection check task end + +2025-09-24 03:44:52,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:52,850 INFO Connection check task start + +2025-09-24 03:44:52,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:52,850 INFO Out dated connection ,size=0 + +2025-09-24 03:44:52,850 INFO Connection check task end + +2025-09-24 03:44:55,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:55,852 INFO Connection check task start + +2025-09-24 03:44:55,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:55,852 INFO Out dated connection ,size=0 + +2025-09-24 03:44:55,852 INFO Connection check task end + +2025-09-24 03:44:58,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:44:58,855 INFO Connection check task start + +2025-09-24 03:44:58,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:44:58,855 INFO Out dated connection ,size=0 + +2025-09-24 03:44:58,855 INFO Connection check task end + +2025-09-24 03:45:01,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:01,857 INFO Connection check task start + +2025-09-24 03:45:01,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:01,857 INFO Out dated connection ,size=0 + +2025-09-24 03:45:01,857 INFO Connection check task end + +2025-09-24 03:45:04,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:04,857 INFO Connection check task start + +2025-09-24 03:45:04,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:04,858 INFO Out dated connection ,size=0 + +2025-09-24 03:45:04,858 INFO Connection check task end + +2025-09-24 03:45:07,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:07,859 INFO Connection check task start + +2025-09-24 03:45:07,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:07,859 INFO Out dated connection ,size=0 + +2025-09-24 03:45:07,859 INFO Connection check task end + +2025-09-24 03:45:10,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:10,861 INFO Connection check task start + +2025-09-24 03:45:10,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:10,862 INFO Out dated connection ,size=0 + +2025-09-24 03:45:10,862 INFO Connection check task end + +2025-09-24 03:45:13,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:13,864 INFO Connection check task start + +2025-09-24 03:45:13,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:13,864 INFO Out dated connection ,size=0 + +2025-09-24 03:45:13,864 INFO Connection check task end + +2025-09-24 03:45:16,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:16,864 INFO Connection check task start + +2025-09-24 03:45:16,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:16,864 INFO Out dated connection ,size=0 + +2025-09-24 03:45:16,864 INFO Connection check task end + +2025-09-24 03:45:19,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:19,865 INFO Connection check task start + +2025-09-24 03:45:19,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:19,865 INFO Out dated connection ,size=0 + +2025-09-24 03:45:19,865 INFO Connection check task end + +2025-09-24 03:45:22,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:22,867 INFO Connection check task start + +2025-09-24 03:45:22,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:22,867 INFO Out dated connection ,size=0 + +2025-09-24 03:45:22,867 INFO Connection check task end + +2025-09-24 03:45:25,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:25,868 INFO Connection check task start + +2025-09-24 03:45:25,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:25,868 INFO Out dated connection ,size=0 + +2025-09-24 03:45:25,868 INFO Connection check task end + +2025-09-24 03:45:28,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:28,869 INFO Connection check task start + +2025-09-24 03:45:28,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:28,869 INFO Out dated connection ,size=0 + +2025-09-24 03:45:28,869 INFO Connection check task end + +2025-09-24 03:45:31,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:31,870 INFO Connection check task start + +2025-09-24 03:45:31,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:31,870 INFO Out dated connection ,size=0 + +2025-09-24 03:45:31,870 INFO Connection check task end + +2025-09-24 03:45:34,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:34,871 INFO Connection check task start + +2025-09-24 03:45:34,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:34,871 INFO Out dated connection ,size=0 + +2025-09-24 03:45:34,871 INFO Connection check task end + +2025-09-24 03:45:37,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:37,872 INFO Connection check task start + +2025-09-24 03:45:37,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:37,873 INFO Out dated connection ,size=0 + +2025-09-24 03:45:37,873 INFO Connection check task end + +2025-09-24 03:45:40,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:40,873 INFO Connection check task start + +2025-09-24 03:45:40,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:40,873 INFO Out dated connection ,size=0 + +2025-09-24 03:45:40,873 INFO Connection check task end + +2025-09-24 03:45:43,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:43,875 INFO Connection check task start + +2025-09-24 03:45:43,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:43,875 INFO Out dated connection ,size=0 + +2025-09-24 03:45:43,876 INFO Connection check task end + +2025-09-24 03:45:46,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:46,878 INFO Connection check task start + +2025-09-24 03:45:46,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:46,878 INFO Out dated connection ,size=0 + +2025-09-24 03:45:46,878 INFO Connection check task end + +2025-09-24 03:45:49,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:49,880 INFO Connection check task start + +2025-09-24 03:45:49,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:49,880 INFO Out dated connection ,size=0 + +2025-09-24 03:45:49,880 INFO Connection check task end + +2025-09-24 03:45:52,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:52,881 INFO Connection check task start + +2025-09-24 03:45:52,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:52,881 INFO Out dated connection ,size=0 + +2025-09-24 03:45:52,882 INFO Connection check task end + +2025-09-24 03:45:55,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:55,882 INFO Connection check task start + +2025-09-24 03:45:55,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:55,882 INFO Out dated connection ,size=0 + +2025-09-24 03:45:55,882 INFO Connection check task end + +2025-09-24 03:45:58,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:45:58,883 INFO Connection check task start + +2025-09-24 03:45:58,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:45:58,883 INFO Out dated connection ,size=0 + +2025-09-24 03:45:58,883 INFO Connection check task end + +2025-09-24 03:46:01,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:01,883 INFO Connection check task start + +2025-09-24 03:46:01,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:01,884 INFO Out dated connection ,size=0 + +2025-09-24 03:46:01,884 INFO Connection check task end + +2025-09-24 03:46:04,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:04,884 INFO Connection check task start + +2025-09-24 03:46:04,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:04,885 INFO Out dated connection ,size=0 + +2025-09-24 03:46:04,885 INFO Connection check task end + +2025-09-24 03:46:07,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:07,887 INFO Connection check task start + +2025-09-24 03:46:07,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:07,887 INFO Out dated connection ,size=0 + +2025-09-24 03:46:07,887 INFO Connection check task end + +2025-09-24 03:46:10,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:10,889 INFO Connection check task start + +2025-09-24 03:46:10,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:10,889 INFO Out dated connection ,size=0 + +2025-09-24 03:46:10,889 INFO Connection check task end + +2025-09-24 03:46:13,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:13,891 INFO Connection check task start + +2025-09-24 03:46:13,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:13,891 INFO Out dated connection ,size=0 + +2025-09-24 03:46:13,891 INFO Connection check task end + +2025-09-24 03:46:16,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:16,891 INFO Connection check task start + +2025-09-24 03:46:16,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:16,892 INFO Out dated connection ,size=0 + +2025-09-24 03:46:16,892 INFO Connection check task end + +2025-09-24 03:46:19,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:19,892 INFO Connection check task start + +2025-09-24 03:46:19,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:19,892 INFO Out dated connection ,size=0 + +2025-09-24 03:46:19,892 INFO Connection check task end + +2025-09-24 03:46:22,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:22,892 INFO Connection check task start + +2025-09-24 03:46:22,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:22,892 INFO Out dated connection ,size=0 + +2025-09-24 03:46:22,893 INFO Connection check task end + +2025-09-24 03:46:25,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:25,894 INFO Connection check task start + +2025-09-24 03:46:25,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:25,894 INFO Out dated connection ,size=0 + +2025-09-24 03:46:25,894 INFO Connection check task end + +2025-09-24 03:46:28,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:28,894 INFO Connection check task start + +2025-09-24 03:46:28,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:28,894 INFO Out dated connection ,size=0 + +2025-09-24 03:46:28,894 INFO Connection check task end + +2025-09-24 03:46:31,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:31,896 INFO Connection check task start + +2025-09-24 03:46:31,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:31,896 INFO Out dated connection ,size=0 + +2025-09-24 03:46:31,896 INFO Connection check task end + +2025-09-24 03:46:34,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:34,898 INFO Connection check task start + +2025-09-24 03:46:34,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:34,898 INFO Out dated connection ,size=0 + +2025-09-24 03:46:34,898 INFO Connection check task end + +2025-09-24 03:46:37,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:37,898 INFO Connection check task start + +2025-09-24 03:46:37,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:37,898 INFO Out dated connection ,size=0 + +2025-09-24 03:46:37,898 INFO Connection check task end + +2025-09-24 03:46:40,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:40,900 INFO Connection check task start + +2025-09-24 03:46:40,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:40,901 INFO Out dated connection ,size=0 + +2025-09-24 03:46:40,901 INFO Connection check task end + +2025-09-24 03:46:43,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:43,901 INFO Connection check task start + +2025-09-24 03:46:43,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:43,902 INFO Out dated connection ,size=0 + +2025-09-24 03:46:43,902 INFO Connection check task end + +2025-09-24 03:46:46,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:46,902 INFO Connection check task start + +2025-09-24 03:46:46,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:46,902 INFO Out dated connection ,size=0 + +2025-09-24 03:46:46,902 INFO Connection check task end + +2025-09-24 03:46:49,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:49,902 INFO Connection check task start + +2025-09-24 03:46:49,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:49,903 INFO Out dated connection ,size=0 + +2025-09-24 03:46:49,903 INFO Connection check task end + +2025-09-24 03:46:52,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:52,903 INFO Connection check task start + +2025-09-24 03:46:52,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:52,903 INFO Out dated connection ,size=0 + +2025-09-24 03:46:52,903 INFO Connection check task end + +2025-09-24 03:46:55,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:55,904 INFO Connection check task start + +2025-09-24 03:46:55,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:55,904 INFO Out dated connection ,size=0 + +2025-09-24 03:46:55,904 INFO Connection check task end + +2025-09-24 03:46:58,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:46:58,904 INFO Connection check task start + +2025-09-24 03:46:58,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:46:58,904 INFO Out dated connection ,size=0 + +2025-09-24 03:46:58,904 INFO Connection check task end + +2025-09-24 03:47:01,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:01,906 INFO Connection check task start + +2025-09-24 03:47:01,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:01,907 INFO Out dated connection ,size=0 + +2025-09-24 03:47:01,907 INFO Connection check task end + +2025-09-24 03:47:04,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:04,909 INFO Connection check task start + +2025-09-24 03:47:04,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:04,909 INFO Out dated connection ,size=0 + +2025-09-24 03:47:04,909 INFO Connection check task end + +2025-09-24 03:47:07,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:07,910 INFO Connection check task start + +2025-09-24 03:47:07,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:07,910 INFO Out dated connection ,size=0 + +2025-09-24 03:47:07,910 INFO Connection check task end + +2025-09-24 03:47:10,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:10,910 INFO Connection check task start + +2025-09-24 03:47:10,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:10,911 INFO Out dated connection ,size=0 + +2025-09-24 03:47:10,911 INFO Connection check task end + +2025-09-24 03:47:13,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:13,912 INFO Connection check task start + +2025-09-24 03:47:13,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:13,913 INFO Out dated connection ,size=0 + +2025-09-24 03:47:13,913 INFO Connection check task end + +2025-09-24 03:47:16,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:16,915 INFO Connection check task start + +2025-09-24 03:47:16,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:16,915 INFO Out dated connection ,size=0 + +2025-09-24 03:47:16,915 INFO Connection check task end + +2025-09-24 03:47:19,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:19,915 INFO Connection check task start + +2025-09-24 03:47:19,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:19,915 INFO Out dated connection ,size=0 + +2025-09-24 03:47:19,915 INFO Connection check task end + +2025-09-24 03:47:22,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:22,916 INFO Connection check task start + +2025-09-24 03:47:22,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:22,916 INFO Out dated connection ,size=0 + +2025-09-24 03:47:22,916 INFO Connection check task end + +2025-09-24 03:47:25,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:25,917 INFO Connection check task start + +2025-09-24 03:47:25,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:25,917 INFO Out dated connection ,size=0 + +2025-09-24 03:47:25,917 INFO Connection check task end + +2025-09-24 03:47:28,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:28,919 INFO Connection check task start + +2025-09-24 03:47:28,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:28,920 INFO Out dated connection ,size=0 + +2025-09-24 03:47:28,920 INFO Connection check task end + +2025-09-24 03:47:31,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:31,921 INFO Connection check task start + +2025-09-24 03:47:31,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:31,921 INFO Out dated connection ,size=0 + +2025-09-24 03:47:31,921 INFO Connection check task end + +2025-09-24 03:47:34,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:34,922 INFO Connection check task start + +2025-09-24 03:47:34,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:34,922 INFO Out dated connection ,size=0 + +2025-09-24 03:47:34,922 INFO Connection check task end + +2025-09-24 03:47:37,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:37,923 INFO Connection check task start + +2025-09-24 03:47:37,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:37,924 INFO Out dated connection ,size=0 + +2025-09-24 03:47:37,924 INFO Connection check task end + +2025-09-24 03:47:40,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:40,924 INFO Connection check task start + +2025-09-24 03:47:40,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:40,924 INFO Out dated connection ,size=0 + +2025-09-24 03:47:40,924 INFO Connection check task end + +2025-09-24 03:47:43,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:43,926 INFO Connection check task start + +2025-09-24 03:47:43,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:43,926 INFO Out dated connection ,size=0 + +2025-09-24 03:47:43,927 INFO Connection check task end + +2025-09-24 03:47:46,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:46,928 INFO Connection check task start + +2025-09-24 03:47:46,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:46,928 INFO Out dated connection ,size=0 + +2025-09-24 03:47:46,928 INFO Connection check task end + +2025-09-24 03:47:49,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:49,929 INFO Connection check task start + +2025-09-24 03:47:49,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:49,930 INFO Out dated connection ,size=0 + +2025-09-24 03:47:49,930 INFO Connection check task end + +2025-09-24 03:47:52,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:52,931 INFO Connection check task start + +2025-09-24 03:47:52,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:52,932 INFO Out dated connection ,size=0 + +2025-09-24 03:47:52,932 INFO Connection check task end + +2025-09-24 03:47:55,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:55,933 INFO Connection check task start + +2025-09-24 03:47:55,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:55,934 INFO Out dated connection ,size=0 + +2025-09-24 03:47:55,934 INFO Connection check task end + +2025-09-24 03:47:58,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:47:58,936 INFO Connection check task start + +2025-09-24 03:47:58,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:47:58,936 INFO Out dated connection ,size=0 + +2025-09-24 03:47:58,936 INFO Connection check task end + +2025-09-24 03:48:01,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:01,938 INFO Connection check task start + +2025-09-24 03:48:01,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:01,938 INFO Out dated connection ,size=0 + +2025-09-24 03:48:01,938 INFO Connection check task end + +2025-09-24 03:48:04,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:04,939 INFO Connection check task start + +2025-09-24 03:48:04,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:04,939 INFO Out dated connection ,size=0 + +2025-09-24 03:48:04,939 INFO Connection check task end + +2025-09-24 03:48:07,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:07,941 INFO Connection check task start + +2025-09-24 03:48:07,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:07,942 INFO Out dated connection ,size=0 + +2025-09-24 03:48:07,942 INFO Connection check task end + +2025-09-24 03:48:10,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:10,942 INFO Connection check task start + +2025-09-24 03:48:10,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:10,942 INFO Out dated connection ,size=0 + +2025-09-24 03:48:10,942 INFO Connection check task end + +2025-09-24 03:48:13,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:13,943 INFO Connection check task start + +2025-09-24 03:48:13,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:13,943 INFO Out dated connection ,size=0 + +2025-09-24 03:48:13,944 INFO Connection check task end + +2025-09-24 03:48:16,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:16,946 INFO Connection check task start + +2025-09-24 03:48:16,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:16,946 INFO Out dated connection ,size=0 + +2025-09-24 03:48:16,946 INFO Connection check task end + +2025-09-24 03:48:19,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:19,948 INFO Connection check task start + +2025-09-24 03:48:19,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:19,948 INFO Out dated connection ,size=0 + +2025-09-24 03:48:19,948 INFO Connection check task end + +2025-09-24 03:48:22,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:22,949 INFO Connection check task start + +2025-09-24 03:48:22,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:22,949 INFO Out dated connection ,size=0 + +2025-09-24 03:48:22,949 INFO Connection check task end + +2025-09-24 03:48:25,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:25,949 INFO Connection check task start + +2025-09-24 03:48:25,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:25,949 INFO Out dated connection ,size=0 + +2025-09-24 03:48:25,950 INFO Connection check task end + +2025-09-24 03:48:28,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:28,950 INFO Connection check task start + +2025-09-24 03:48:28,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:28,950 INFO Out dated connection ,size=0 + +2025-09-24 03:48:28,950 INFO Connection check task end + +2025-09-24 03:48:31,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:31,952 INFO Connection check task start + +2025-09-24 03:48:31,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:31,952 INFO Out dated connection ,size=0 + +2025-09-24 03:48:31,952 INFO Connection check task end + +2025-09-24 03:48:34,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:34,953 INFO Connection check task start + +2025-09-24 03:48:34,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:34,954 INFO Out dated connection ,size=0 + +2025-09-24 03:48:34,954 INFO Connection check task end + +2025-09-24 03:48:37,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:37,954 INFO Connection check task start + +2025-09-24 03:48:37,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:37,954 INFO Out dated connection ,size=0 + +2025-09-24 03:48:37,954 INFO Connection check task end + +2025-09-24 03:48:40,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:40,954 INFO Connection check task start + +2025-09-24 03:48:40,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:40,955 INFO Out dated connection ,size=0 + +2025-09-24 03:48:40,955 INFO Connection check task end + +2025-09-24 03:48:43,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:43,956 INFO Connection check task start + +2025-09-24 03:48:43,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:43,957 INFO Out dated connection ,size=0 + +2025-09-24 03:48:43,957 INFO Connection check task end + +2025-09-24 03:48:46,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:46,957 INFO Connection check task start + +2025-09-24 03:48:46,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:46,957 INFO Out dated connection ,size=0 + +2025-09-24 03:48:46,957 INFO Connection check task end + +2025-09-24 03:48:49,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:49,957 INFO Connection check task start + +2025-09-24 03:48:49,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:49,958 INFO Out dated connection ,size=0 + +2025-09-24 03:48:49,958 INFO Connection check task end + +2025-09-24 03:48:52,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:52,958 INFO Connection check task start + +2025-09-24 03:48:52,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:52,958 INFO Out dated connection ,size=0 + +2025-09-24 03:48:52,958 INFO Connection check task end + +2025-09-24 03:48:55,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:55,958 INFO Connection check task start + +2025-09-24 03:48:55,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:55,958 INFO Out dated connection ,size=0 + +2025-09-24 03:48:55,958 INFO Connection check task end + +2025-09-24 03:48:58,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:48:58,959 INFO Connection check task start + +2025-09-24 03:48:58,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:48:58,959 INFO Out dated connection ,size=0 + +2025-09-24 03:48:58,959 INFO Connection check task end + +2025-09-24 03:49:01,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:01,961 INFO Connection check task start + +2025-09-24 03:49:01,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:01,961 INFO Out dated connection ,size=0 + +2025-09-24 03:49:01,961 INFO Connection check task end + +2025-09-24 03:49:04,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:04,962 INFO Connection check task start + +2025-09-24 03:49:04,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:04,963 INFO Out dated connection ,size=0 + +2025-09-24 03:49:04,963 INFO Connection check task end + +2025-09-24 03:49:07,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:07,963 INFO Connection check task start + +2025-09-24 03:49:07,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:07,963 INFO Out dated connection ,size=0 + +2025-09-24 03:49:07,963 INFO Connection check task end + +2025-09-24 03:49:10,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:10,964 INFO Connection check task start + +2025-09-24 03:49:10,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:10,964 INFO Out dated connection ,size=0 + +2025-09-24 03:49:10,964 INFO Connection check task end + +2025-09-24 03:49:13,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:13,964 INFO Connection check task start + +2025-09-24 03:49:13,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:13,965 INFO Out dated connection ,size=0 + +2025-09-24 03:49:13,965 INFO Connection check task end + +2025-09-24 03:49:16,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:16,966 INFO Connection check task start + +2025-09-24 03:49:16,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:16,966 INFO Out dated connection ,size=0 + +2025-09-24 03:49:16,966 INFO Connection check task end + +2025-09-24 03:49:19,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:19,966 INFO Connection check task start + +2025-09-24 03:49:19,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:19,966 INFO Out dated connection ,size=0 + +2025-09-24 03:49:19,967 INFO Connection check task end + +2025-09-24 03:49:22,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:22,967 INFO Connection check task start + +2025-09-24 03:49:22,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:22,967 INFO Out dated connection ,size=0 + +2025-09-24 03:49:22,967 INFO Connection check task end + +2025-09-24 03:49:25,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:25,967 INFO Connection check task start + +2025-09-24 03:49:25,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:25,968 INFO Out dated connection ,size=0 + +2025-09-24 03:49:25,968 INFO Connection check task end + +2025-09-24 03:49:28,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:28,968 INFO Connection check task start + +2025-09-24 03:49:28,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:28,968 INFO Out dated connection ,size=0 + +2025-09-24 03:49:28,968 INFO Connection check task end + +2025-09-24 03:49:31,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:31,969 INFO Connection check task start + +2025-09-24 03:49:31,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:31,969 INFO Out dated connection ,size=0 + +2025-09-24 03:49:31,969 INFO Connection check task end + +2025-09-24 03:49:34,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:34,970 INFO Connection check task start + +2025-09-24 03:49:34,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:34,970 INFO Out dated connection ,size=0 + +2025-09-24 03:49:34,970 INFO Connection check task end + +2025-09-24 03:49:37,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:37,971 INFO Connection check task start + +2025-09-24 03:49:37,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:37,971 INFO Out dated connection ,size=0 + +2025-09-24 03:49:37,971 INFO Connection check task end + +2025-09-24 03:49:40,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:40,971 INFO Connection check task start + +2025-09-24 03:49:40,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:40,971 INFO Out dated connection ,size=0 + +2025-09-24 03:49:40,972 INFO Connection check task end + +2025-09-24 03:49:43,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:43,972 INFO Connection check task start + +2025-09-24 03:49:43,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:43,972 INFO Out dated connection ,size=0 + +2025-09-24 03:49:43,972 INFO Connection check task end + +2025-09-24 03:49:46,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:46,972 INFO Connection check task start + +2025-09-24 03:49:46,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:46,973 INFO Out dated connection ,size=0 + +2025-09-24 03:49:46,973 INFO Connection check task end + +2025-09-24 03:49:49,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:49,973 INFO Connection check task start + +2025-09-24 03:49:49,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:49,973 INFO Out dated connection ,size=0 + +2025-09-24 03:49:49,973 INFO Connection check task end + +2025-09-24 03:49:52,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:52,974 INFO Connection check task start + +2025-09-24 03:49:52,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:52,974 INFO Out dated connection ,size=0 + +2025-09-24 03:49:52,974 INFO Connection check task end + +2025-09-24 03:49:55,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:55,975 INFO Connection check task start + +2025-09-24 03:49:55,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:55,975 INFO Out dated connection ,size=0 + +2025-09-24 03:49:55,975 INFO Connection check task end + +2025-09-24 03:49:58,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:49:58,976 INFO Connection check task start + +2025-09-24 03:49:58,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:49:58,976 INFO Out dated connection ,size=0 + +2025-09-24 03:49:58,976 INFO Connection check task end + +2025-09-24 03:50:01,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:01,978 INFO Connection check task start + +2025-09-24 03:50:01,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:01,978 INFO Out dated connection ,size=0 + +2025-09-24 03:50:01,978 INFO Connection check task end + +2025-09-24 03:50:04,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:04,979 INFO Connection check task start + +2025-09-24 03:50:04,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:04,979 INFO Out dated connection ,size=0 + +2025-09-24 03:50:04,979 INFO Connection check task end + +2025-09-24 03:50:07,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:07,980 INFO Connection check task start + +2025-09-24 03:50:07,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:07,980 INFO Out dated connection ,size=0 + +2025-09-24 03:50:07,980 INFO Connection check task end + +2025-09-24 03:50:10,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:10,981 INFO Connection check task start + +2025-09-24 03:50:10,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:10,981 INFO Out dated connection ,size=0 + +2025-09-24 03:50:10,981 INFO Connection check task end + +2025-09-24 03:50:13,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:13,981 INFO Connection check task start + +2025-09-24 03:50:13,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:13,981 INFO Out dated connection ,size=0 + +2025-09-24 03:50:13,981 INFO Connection check task end + +2025-09-24 03:50:16,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:16,982 INFO Connection check task start + +2025-09-24 03:50:16,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:16,982 INFO Out dated connection ,size=0 + +2025-09-24 03:50:16,982 INFO Connection check task end + +2025-09-24 03:50:19,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:19,982 INFO Connection check task start + +2025-09-24 03:50:19,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:19,983 INFO Out dated connection ,size=0 + +2025-09-24 03:50:19,983 INFO Connection check task end + +2025-09-24 03:50:22,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:22,983 INFO Connection check task start + +2025-09-24 03:50:22,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:22,983 INFO Out dated connection ,size=0 + +2025-09-24 03:50:22,983 INFO Connection check task end + +2025-09-24 03:50:25,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:25,984 INFO Connection check task start + +2025-09-24 03:50:25,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:25,984 INFO Out dated connection ,size=0 + +2025-09-24 03:50:25,984 INFO Connection check task end + +2025-09-24 03:50:28,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:28,986 INFO Connection check task start + +2025-09-24 03:50:28,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:28,986 INFO Out dated connection ,size=0 + +2025-09-24 03:50:28,986 INFO Connection check task end + +2025-09-24 03:50:31,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:31,986 INFO Connection check task start + +2025-09-24 03:50:31,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:31,987 INFO Out dated connection ,size=0 + +2025-09-24 03:50:31,987 INFO Connection check task end + +2025-09-24 03:50:34,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:34,987 INFO Connection check task start + +2025-09-24 03:50:34,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:34,987 INFO Out dated connection ,size=0 + +2025-09-24 03:50:34,987 INFO Connection check task end + +2025-09-24 03:50:37,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:37,988 INFO Connection check task start + +2025-09-24 03:50:37,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:37,988 INFO Out dated connection ,size=0 + +2025-09-24 03:50:37,988 INFO Connection check task end + +2025-09-24 03:50:40,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:40,989 INFO Connection check task start + +2025-09-24 03:50:40,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:40,989 INFO Out dated connection ,size=0 + +2025-09-24 03:50:40,989 INFO Connection check task end + +2025-09-24 03:50:43,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:43,990 INFO Connection check task start + +2025-09-24 03:50:43,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:43,990 INFO Out dated connection ,size=0 + +2025-09-24 03:50:43,990 INFO Connection check task end + +2025-09-24 03:50:46,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:46,991 INFO Connection check task start + +2025-09-24 03:50:46,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:46,991 INFO Out dated connection ,size=0 + +2025-09-24 03:50:46,991 INFO Connection check task end + +2025-09-24 03:50:49,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:49,991 INFO Connection check task start + +2025-09-24 03:50:49,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:49,991 INFO Out dated connection ,size=0 + +2025-09-24 03:50:49,992 INFO Connection check task end + +2025-09-24 03:50:52,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:52,992 INFO Connection check task start + +2025-09-24 03:50:52,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:52,992 INFO Out dated connection ,size=0 + +2025-09-24 03:50:52,992 INFO Connection check task end + +2025-09-24 03:50:55,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:55,992 INFO Connection check task start + +2025-09-24 03:50:55,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:55,992 INFO Out dated connection ,size=0 + +2025-09-24 03:50:55,992 INFO Connection check task end + +2025-09-24 03:50:58,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:50:58,993 INFO Connection check task start + +2025-09-24 03:50:58,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:50:58,993 INFO Out dated connection ,size=0 + +2025-09-24 03:50:58,993 INFO Connection check task end + +2025-09-24 03:51:01,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:01,994 INFO Connection check task start + +2025-09-24 03:51:01,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:01,994 INFO Out dated connection ,size=0 + +2025-09-24 03:51:01,994 INFO Connection check task end + +2025-09-24 03:51:04,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:04,996 INFO Connection check task start + +2025-09-24 03:51:04,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:04,996 INFO Out dated connection ,size=0 + +2025-09-24 03:51:04,996 INFO Connection check task end + +2025-09-24 03:51:07,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:07,998 INFO Connection check task start + +2025-09-24 03:51:07,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:07,998 INFO Out dated connection ,size=0 + +2025-09-24 03:51:07,999 INFO Connection check task end + +2025-09-24 03:51:10,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:10,999 INFO Connection check task start + +2025-09-24 03:51:10,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:10,999 INFO Out dated connection ,size=0 + +2025-09-24 03:51:10,999 INFO Connection check task end + +2025-09-24 03:51:13,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:13,999 INFO Connection check task start + +2025-09-24 03:51:13,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:13,999 INFO Out dated connection ,size=0 + +2025-09-24 03:51:13,999 INFO Connection check task end + +2025-09-24 03:51:16,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:17,001 INFO Connection check task start + +2025-09-24 03:51:17,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:17,001 INFO Out dated connection ,size=0 + +2025-09-24 03:51:17,001 INFO Connection check task end + +2025-09-24 03:51:19,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:20,001 INFO Connection check task start + +2025-09-24 03:51:20,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:20,001 INFO Out dated connection ,size=0 + +2025-09-24 03:51:20,002 INFO Connection check task end + +2025-09-24 03:51:22,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:23,002 INFO Connection check task start + +2025-09-24 03:51:23,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:23,002 INFO Out dated connection ,size=0 + +2025-09-24 03:51:23,002 INFO Connection check task end + +2025-09-24 03:51:25,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:26,003 INFO Connection check task start + +2025-09-24 03:51:26,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:26,003 INFO Out dated connection ,size=0 + +2025-09-24 03:51:26,003 INFO Connection check task end + +2025-09-24 03:51:28,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:29,004 INFO Connection check task start + +2025-09-24 03:51:29,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:29,004 INFO Out dated connection ,size=0 + +2025-09-24 03:51:29,004 INFO Connection check task end + +2025-09-24 03:51:31,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:32,005 INFO Connection check task start + +2025-09-24 03:51:32,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:32,005 INFO Out dated connection ,size=0 + +2025-09-24 03:51:32,005 INFO Connection check task end + +2025-09-24 03:51:34,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:35,007 INFO Connection check task start + +2025-09-24 03:51:35,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:35,008 INFO Out dated connection ,size=0 + +2025-09-24 03:51:35,008 INFO Connection check task end + +2025-09-24 03:51:37,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:38,010 INFO Connection check task start + +2025-09-24 03:51:38,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:38,010 INFO Out dated connection ,size=0 + +2025-09-24 03:51:38,010 INFO Connection check task end + +2025-09-24 03:51:40,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:41,010 INFO Connection check task start + +2025-09-24 03:51:41,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:41,011 INFO Out dated connection ,size=0 + +2025-09-24 03:51:41,011 INFO Connection check task end + +2025-09-24 03:51:43,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:44,011 INFO Connection check task start + +2025-09-24 03:51:44,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:44,011 INFO Out dated connection ,size=0 + +2025-09-24 03:51:44,011 INFO Connection check task end + +2025-09-24 03:51:46,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:47,013 INFO Connection check task start + +2025-09-24 03:51:47,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:47,014 INFO Out dated connection ,size=0 + +2025-09-24 03:51:47,014 INFO Connection check task end + +2025-09-24 03:51:49,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:50,014 INFO Connection check task start + +2025-09-24 03:51:50,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:50,014 INFO Out dated connection ,size=0 + +2025-09-24 03:51:50,014 INFO Connection check task end + +2025-09-24 03:51:52,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:53,014 INFO Connection check task start + +2025-09-24 03:51:53,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:53,015 INFO Out dated connection ,size=0 + +2025-09-24 03:51:53,015 INFO Connection check task end + +2025-09-24 03:51:55,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:56,017 INFO Connection check task start + +2025-09-24 03:51:56,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:56,017 INFO Out dated connection ,size=0 + +2025-09-24 03:51:56,017 INFO Connection check task end + +2025-09-24 03:51:58,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:51:59,017 INFO Connection check task start + +2025-09-24 03:51:59,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:51:59,017 INFO Out dated connection ,size=0 + +2025-09-24 03:51:59,017 INFO Connection check task end + +2025-09-24 03:52:01,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:02,019 INFO Connection check task start + +2025-09-24 03:52:02,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:02,019 INFO Out dated connection ,size=0 + +2025-09-24 03:52:02,019 INFO Connection check task end + +2025-09-24 03:52:04,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:05,021 INFO Connection check task start + +2025-09-24 03:52:05,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:05,021 INFO Out dated connection ,size=0 + +2025-09-24 03:52:05,021 INFO Connection check task end + +2025-09-24 03:52:07,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:08,022 INFO Connection check task start + +2025-09-24 03:52:08,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:08,022 INFO Out dated connection ,size=0 + +2025-09-24 03:52:08,022 INFO Connection check task end + +2025-09-24 03:52:10,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:11,023 INFO Connection check task start + +2025-09-24 03:52:11,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:11,023 INFO Out dated connection ,size=0 + +2025-09-24 03:52:11,023 INFO Connection check task end + +2025-09-24 03:52:13,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:14,024 INFO Connection check task start + +2025-09-24 03:52:14,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:14,024 INFO Out dated connection ,size=0 + +2025-09-24 03:52:14,024 INFO Connection check task end + +2025-09-24 03:52:16,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:17,025 INFO Connection check task start + +2025-09-24 03:52:17,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:17,025 INFO Out dated connection ,size=0 + +2025-09-24 03:52:17,025 INFO Connection check task end + +2025-09-24 03:52:19,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:20,026 INFO Connection check task start + +2025-09-24 03:52:20,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:20,026 INFO Out dated connection ,size=0 + +2025-09-24 03:52:20,026 INFO Connection check task end + +2025-09-24 03:52:22,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:23,026 INFO Connection check task start + +2025-09-24 03:52:23,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:23,026 INFO Out dated connection ,size=0 + +2025-09-24 03:52:23,026 INFO Connection check task end + +2025-09-24 03:52:25,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:26,026 INFO Connection check task start + +2025-09-24 03:52:26,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:26,027 INFO Out dated connection ,size=0 + +2025-09-24 03:52:26,027 INFO Connection check task end + +2025-09-24 03:52:28,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:29,027 INFO Connection check task start + +2025-09-24 03:52:29,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:29,027 INFO Out dated connection ,size=0 + +2025-09-24 03:52:29,027 INFO Connection check task end + +2025-09-24 03:52:31,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:32,028 INFO Connection check task start + +2025-09-24 03:52:32,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:32,028 INFO Out dated connection ,size=0 + +2025-09-24 03:52:32,028 INFO Connection check task end + +2025-09-24 03:52:34,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:35,029 INFO Connection check task start + +2025-09-24 03:52:35,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:35,029 INFO Out dated connection ,size=0 + +2025-09-24 03:52:35,029 INFO Connection check task end + +2025-09-24 03:52:37,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:38,031 INFO Connection check task start + +2025-09-24 03:52:38,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:38,031 INFO Out dated connection ,size=0 + +2025-09-24 03:52:38,032 INFO Connection check task end + +2025-09-24 03:52:40,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:41,034 INFO Connection check task start + +2025-09-24 03:52:41,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:41,034 INFO Out dated connection ,size=0 + +2025-09-24 03:52:41,034 INFO Connection check task end + +2025-09-24 03:52:43,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:44,034 INFO Connection check task start + +2025-09-24 03:52:44,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:44,034 INFO Out dated connection ,size=0 + +2025-09-24 03:52:44,034 INFO Connection check task end + +2025-09-24 03:52:46,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:47,035 INFO Connection check task start + +2025-09-24 03:52:47,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:47,035 INFO Out dated connection ,size=0 + +2025-09-24 03:52:47,035 INFO Connection check task end + +2025-09-24 03:52:49,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:50,036 INFO Connection check task start + +2025-09-24 03:52:50,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:50,036 INFO Out dated connection ,size=0 + +2025-09-24 03:52:50,036 INFO Connection check task end + +2025-09-24 03:52:52,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:53,037 INFO Connection check task start + +2025-09-24 03:52:53,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:53,037 INFO Out dated connection ,size=0 + +2025-09-24 03:52:53,038 INFO Connection check task end + +2025-09-24 03:52:55,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:56,038 INFO Connection check task start + +2025-09-24 03:52:56,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:56,038 INFO Out dated connection ,size=0 + +2025-09-24 03:52:56,038 INFO Connection check task end + +2025-09-24 03:52:58,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:52:59,040 INFO Connection check task start + +2025-09-24 03:52:59,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:52:59,040 INFO Out dated connection ,size=0 + +2025-09-24 03:52:59,040 INFO Connection check task end + +2025-09-24 03:53:01,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:02,040 INFO Connection check task start + +2025-09-24 03:53:02,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:02,041 INFO Out dated connection ,size=0 + +2025-09-24 03:53:02,041 INFO Connection check task end + +2025-09-24 03:53:04,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:05,041 INFO Connection check task start + +2025-09-24 03:53:05,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:05,041 INFO Out dated connection ,size=0 + +2025-09-24 03:53:05,041 INFO Connection check task end + +2025-09-24 03:53:07,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:08,042 INFO Connection check task start + +2025-09-24 03:53:08,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:08,042 INFO Out dated connection ,size=0 + +2025-09-24 03:53:08,042 INFO Connection check task end + +2025-09-24 03:53:10,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:11,042 INFO Connection check task start + +2025-09-24 03:53:11,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:11,042 INFO Out dated connection ,size=0 + +2025-09-24 03:53:11,042 INFO Connection check task end + +2025-09-24 03:53:13,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:14,043 INFO Connection check task start + +2025-09-24 03:53:14,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:14,043 INFO Out dated connection ,size=0 + +2025-09-24 03:53:14,043 INFO Connection check task end + +2025-09-24 03:53:16,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:17,044 INFO Connection check task start + +2025-09-24 03:53:17,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:17,044 INFO Out dated connection ,size=0 + +2025-09-24 03:53:17,044 INFO Connection check task end + +2025-09-24 03:53:19,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:20,047 INFO Connection check task start + +2025-09-24 03:53:20,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:20,047 INFO Out dated connection ,size=0 + +2025-09-24 03:53:20,047 INFO Connection check task end + +2025-09-24 03:53:22,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:23,050 INFO Connection check task start + +2025-09-24 03:53:23,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:23,050 INFO Out dated connection ,size=0 + +2025-09-24 03:53:23,050 INFO Connection check task end + +2025-09-24 03:53:25,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:26,050 INFO Connection check task start + +2025-09-24 03:53:26,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:26,050 INFO Out dated connection ,size=0 + +2025-09-24 03:53:26,050 INFO Connection check task end + +2025-09-24 03:53:28,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:29,050 INFO Connection check task start + +2025-09-24 03:53:29,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:29,051 INFO Out dated connection ,size=0 + +2025-09-24 03:53:29,051 INFO Connection check task end + +2025-09-24 03:53:31,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:32,052 INFO Connection check task start + +2025-09-24 03:53:32,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:32,052 INFO Out dated connection ,size=0 + +2025-09-24 03:53:32,052 INFO Connection check task end + +2025-09-24 03:53:34,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:35,053 INFO Connection check task start + +2025-09-24 03:53:35,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:35,053 INFO Out dated connection ,size=0 + +2025-09-24 03:53:35,053 INFO Connection check task end + +2025-09-24 03:53:37,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:38,053 INFO Connection check task start + +2025-09-24 03:53:38,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:38,054 INFO Out dated connection ,size=0 + +2025-09-24 03:53:38,054 INFO Connection check task end + +2025-09-24 03:53:40,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:41,056 INFO Connection check task start + +2025-09-24 03:53:41,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:41,056 INFO Out dated connection ,size=0 + +2025-09-24 03:53:41,056 INFO Connection check task end + +2025-09-24 03:53:43,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:44,056 INFO Connection check task start + +2025-09-24 03:53:44,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:44,056 INFO Out dated connection ,size=0 + +2025-09-24 03:53:44,056 INFO Connection check task end + +2025-09-24 03:53:46,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:47,057 INFO Connection check task start + +2025-09-24 03:53:47,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:47,057 INFO Out dated connection ,size=0 + +2025-09-24 03:53:47,057 INFO Connection check task end + +2025-09-24 03:53:49,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:50,059 INFO Connection check task start + +2025-09-24 03:53:50,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:50,060 INFO Out dated connection ,size=0 + +2025-09-24 03:53:50,060 INFO Connection check task end + +2025-09-24 03:53:52,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:53,060 INFO Connection check task start + +2025-09-24 03:53:53,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:53,061 INFO Out dated connection ,size=0 + +2025-09-24 03:53:53,061 INFO Connection check task end + +2025-09-24 03:53:55,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:56,061 INFO Connection check task start + +2025-09-24 03:53:56,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:56,061 INFO Out dated connection ,size=0 + +2025-09-24 03:53:56,061 INFO Connection check task end + +2025-09-24 03:53:58,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:53:59,062 INFO Connection check task start + +2025-09-24 03:53:59,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:53:59,062 INFO Out dated connection ,size=0 + +2025-09-24 03:53:59,062 INFO Connection check task end + +2025-09-24 03:54:01,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:02,063 INFO Connection check task start + +2025-09-24 03:54:02,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:02,063 INFO Out dated connection ,size=0 + +2025-09-24 03:54:02,064 INFO Connection check task end + +2025-09-24 03:54:04,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:05,064 INFO Connection check task start + +2025-09-24 03:54:05,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:05,064 INFO Out dated connection ,size=0 + +2025-09-24 03:54:05,064 INFO Connection check task end + +2025-09-24 03:54:07,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:08,066 INFO Connection check task start + +2025-09-24 03:54:08,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:08,066 INFO Out dated connection ,size=0 + +2025-09-24 03:54:08,066 INFO Connection check task end + +2025-09-24 03:54:10,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:11,068 INFO Connection check task start + +2025-09-24 03:54:11,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:11,068 INFO Out dated connection ,size=0 + +2025-09-24 03:54:11,068 INFO Connection check task end + +2025-09-24 03:54:13,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:14,069 INFO Connection check task start + +2025-09-24 03:54:14,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:14,069 INFO Out dated connection ,size=0 + +2025-09-24 03:54:14,069 INFO Connection check task end + +2025-09-24 03:54:16,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:17,069 INFO Connection check task start + +2025-09-24 03:54:17,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:17,069 INFO Out dated connection ,size=0 + +2025-09-24 03:54:17,069 INFO Connection check task end + +2025-09-24 03:54:19,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:20,070 INFO Connection check task start + +2025-09-24 03:54:20,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:20,070 INFO Out dated connection ,size=0 + +2025-09-24 03:54:20,070 INFO Connection check task end + +2025-09-24 03:54:22,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:23,072 INFO Connection check task start + +2025-09-24 03:54:23,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:23,072 INFO Out dated connection ,size=0 + +2025-09-24 03:54:23,072 INFO Connection check task end + +2025-09-24 03:54:25,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:26,074 INFO Connection check task start + +2025-09-24 03:54:26,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:26,074 INFO Out dated connection ,size=0 + +2025-09-24 03:54:26,074 INFO Connection check task end + +2025-09-24 03:54:28,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:29,074 INFO Connection check task start + +2025-09-24 03:54:29,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:29,075 INFO Out dated connection ,size=0 + +2025-09-24 03:54:29,075 INFO Connection check task end + +2025-09-24 03:54:31,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:32,077 INFO Connection check task start + +2025-09-24 03:54:32,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:32,077 INFO Out dated connection ,size=0 + +2025-09-24 03:54:32,077 INFO Connection check task end + +2025-09-24 03:54:34,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:35,079 INFO Connection check task start + +2025-09-24 03:54:35,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:35,079 INFO Out dated connection ,size=0 + +2025-09-24 03:54:35,079 INFO Connection check task end + +2025-09-24 03:54:37,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:38,080 INFO Connection check task start + +2025-09-24 03:54:38,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:38,080 INFO Out dated connection ,size=0 + +2025-09-24 03:54:38,080 INFO Connection check task end + +2025-09-24 03:54:40,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:41,080 INFO Connection check task start + +2025-09-24 03:54:41,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:41,080 INFO Out dated connection ,size=0 + +2025-09-24 03:54:41,080 INFO Connection check task end + +2025-09-24 03:54:43,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:44,082 INFO Connection check task start + +2025-09-24 03:54:44,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:44,082 INFO Out dated connection ,size=0 + +2025-09-24 03:54:44,082 INFO Connection check task end + +2025-09-24 03:54:46,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:47,084 INFO Connection check task start + +2025-09-24 03:54:47,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:47,084 INFO Out dated connection ,size=0 + +2025-09-24 03:54:47,084 INFO Connection check task end + +2025-09-24 03:54:49,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:50,085 INFO Connection check task start + +2025-09-24 03:54:50,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:50,085 INFO Out dated connection ,size=0 + +2025-09-24 03:54:50,085 INFO Connection check task end + +2025-09-24 03:54:52,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:53,085 INFO Connection check task start + +2025-09-24 03:54:53,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:53,085 INFO Out dated connection ,size=0 + +2025-09-24 03:54:53,085 INFO Connection check task end + +2025-09-24 03:54:55,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:56,085 INFO Connection check task start + +2025-09-24 03:54:56,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:56,086 INFO Out dated connection ,size=0 + +2025-09-24 03:54:56,086 INFO Connection check task end + +2025-09-24 03:54:58,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:54:59,088 INFO Connection check task start + +2025-09-24 03:54:59,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:54:59,088 INFO Out dated connection ,size=0 + +2025-09-24 03:54:59,088 INFO Connection check task end + +2025-09-24 03:55:01,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:02,088 INFO Connection check task start + +2025-09-24 03:55:02,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:02,089 INFO Out dated connection ,size=0 + +2025-09-24 03:55:02,089 INFO Connection check task end + +2025-09-24 03:55:04,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:05,090 INFO Connection check task start + +2025-09-24 03:55:05,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:05,090 INFO Out dated connection ,size=0 + +2025-09-24 03:55:05,091 INFO Connection check task end + +2025-09-24 03:55:07,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:08,091 INFO Connection check task start + +2025-09-24 03:55:08,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:08,091 INFO Out dated connection ,size=0 + +2025-09-24 03:55:08,091 INFO Connection check task end + +2025-09-24 03:55:10,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:11,093 INFO Connection check task start + +2025-09-24 03:55:11,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:11,093 INFO Out dated connection ,size=0 + +2025-09-24 03:55:11,093 INFO Connection check task end + +2025-09-24 03:55:13,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:14,095 INFO Connection check task start + +2025-09-24 03:55:14,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:14,095 INFO Out dated connection ,size=0 + +2025-09-24 03:55:14,096 INFO Connection check task end + +2025-09-24 03:55:16,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:17,096 INFO Connection check task start + +2025-09-24 03:55:17,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:17,097 INFO Out dated connection ,size=0 + +2025-09-24 03:55:17,097 INFO Connection check task end + +2025-09-24 03:55:19,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:20,097 INFO Connection check task start + +2025-09-24 03:55:20,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:20,097 INFO Out dated connection ,size=0 + +2025-09-24 03:55:20,098 INFO Connection check task end + +2025-09-24 03:55:22,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:23,100 INFO Connection check task start + +2025-09-24 03:55:23,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:23,100 INFO Out dated connection ,size=0 + +2025-09-24 03:55:23,100 INFO Connection check task end + +2025-09-24 03:55:25,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:26,100 INFO Connection check task start + +2025-09-24 03:55:26,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:26,100 INFO Out dated connection ,size=0 + +2025-09-24 03:55:26,100 INFO Connection check task end + +2025-09-24 03:55:28,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:29,100 INFO Connection check task start + +2025-09-24 03:55:29,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:29,101 INFO Out dated connection ,size=0 + +2025-09-24 03:55:29,101 INFO Connection check task end + +2025-09-24 03:55:31,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:32,103 INFO Connection check task start + +2025-09-24 03:55:32,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:32,103 INFO Out dated connection ,size=0 + +2025-09-24 03:55:32,103 INFO Connection check task end + +2025-09-24 03:55:34,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:35,103 INFO Connection check task start + +2025-09-24 03:55:35,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:35,103 INFO Out dated connection ,size=0 + +2025-09-24 03:55:35,103 INFO Connection check task end + +2025-09-24 03:55:37,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:38,104 INFO Connection check task start + +2025-09-24 03:55:38,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:38,104 INFO Out dated connection ,size=0 + +2025-09-24 03:55:38,104 INFO Connection check task end + +2025-09-24 03:55:40,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:41,104 INFO Connection check task start + +2025-09-24 03:55:41,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:41,104 INFO Out dated connection ,size=0 + +2025-09-24 03:55:41,105 INFO Connection check task end + +2025-09-24 03:55:43,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:44,105 INFO Connection check task start + +2025-09-24 03:55:44,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:44,105 INFO Out dated connection ,size=0 + +2025-09-24 03:55:44,105 INFO Connection check task end + +2025-09-24 03:55:46,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:47,107 INFO Connection check task start + +2025-09-24 03:55:47,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:47,108 INFO Out dated connection ,size=0 + +2025-09-24 03:55:47,108 INFO Connection check task end + +2025-09-24 03:55:49,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:50,108 INFO Connection check task start + +2025-09-24 03:55:50,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:50,108 INFO Out dated connection ,size=0 + +2025-09-24 03:55:50,108 INFO Connection check task end + +2025-09-24 03:55:52,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:53,109 INFO Connection check task start + +2025-09-24 03:55:53,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:53,109 INFO Out dated connection ,size=0 + +2025-09-24 03:55:53,109 INFO Connection check task end + +2025-09-24 03:55:55,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:56,110 INFO Connection check task start + +2025-09-24 03:55:56,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:56,110 INFO Out dated connection ,size=0 + +2025-09-24 03:55:56,110 INFO Connection check task end + +2025-09-24 03:55:58,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:55:59,111 INFO Connection check task start + +2025-09-24 03:55:59,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:55:59,111 INFO Out dated connection ,size=0 + +2025-09-24 03:55:59,111 INFO Connection check task end + +2025-09-24 03:56:01,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:02,111 INFO Connection check task start + +2025-09-24 03:56:02,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:02,112 INFO Out dated connection ,size=0 + +2025-09-24 03:56:02,112 INFO Connection check task end + +2025-09-24 03:56:04,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:05,112 INFO Connection check task start + +2025-09-24 03:56:05,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:05,112 INFO Out dated connection ,size=0 + +2025-09-24 03:56:05,113 INFO Connection check task end + +2025-09-24 03:56:07,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:08,113 INFO Connection check task start + +2025-09-24 03:56:08,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:08,114 INFO Out dated connection ,size=0 + +2025-09-24 03:56:08,114 INFO Connection check task end + +2025-09-24 03:56:10,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:11,114 INFO Connection check task start + +2025-09-24 03:56:11,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:11,114 INFO Out dated connection ,size=0 + +2025-09-24 03:56:11,114 INFO Connection check task end + +2025-09-24 03:56:13,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:14,117 INFO Connection check task start + +2025-09-24 03:56:14,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:14,117 INFO Out dated connection ,size=0 + +2025-09-24 03:56:14,117 INFO Connection check task end + +2025-09-24 03:56:16,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:17,118 INFO Connection check task start + +2025-09-24 03:56:17,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:17,118 INFO Out dated connection ,size=0 + +2025-09-24 03:56:17,118 INFO Connection check task end + +2025-09-24 03:56:19,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:20,120 INFO Connection check task start + +2025-09-24 03:56:20,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:20,120 INFO Out dated connection ,size=0 + +2025-09-24 03:56:20,120 INFO Connection check task end + +2025-09-24 03:56:22,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:23,121 INFO Connection check task start + +2025-09-24 03:56:23,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:23,121 INFO Out dated connection ,size=0 + +2025-09-24 03:56:23,121 INFO Connection check task end + +2025-09-24 03:56:25,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:26,121 INFO Connection check task start + +2025-09-24 03:56:26,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:26,122 INFO Out dated connection ,size=0 + +2025-09-24 03:56:26,122 INFO Connection check task end + +2025-09-24 03:56:28,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:29,123 INFO Connection check task start + +2025-09-24 03:56:29,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:29,123 INFO Out dated connection ,size=0 + +2025-09-24 03:56:29,123 INFO Connection check task end + +2025-09-24 03:56:31,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:32,123 INFO Connection check task start + +2025-09-24 03:56:32,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:32,124 INFO Out dated connection ,size=0 + +2025-09-24 03:56:32,124 INFO Connection check task end + +2025-09-24 03:56:34,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:35,125 INFO Connection check task start + +2025-09-24 03:56:35,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:35,125 INFO Out dated connection ,size=0 + +2025-09-24 03:56:35,125 INFO Connection check task end + +2025-09-24 03:56:37,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:38,125 INFO Connection check task start + +2025-09-24 03:56:38,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:38,125 INFO Out dated connection ,size=0 + +2025-09-24 03:56:38,125 INFO Connection check task end + +2025-09-24 03:56:40,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:41,127 INFO Connection check task start + +2025-09-24 03:56:41,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:41,127 INFO Out dated connection ,size=0 + +2025-09-24 03:56:41,127 INFO Connection check task end + +2025-09-24 03:56:43,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:44,127 INFO Connection check task start + +2025-09-24 03:56:44,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:44,127 INFO Out dated connection ,size=0 + +2025-09-24 03:56:44,127 INFO Connection check task end + +2025-09-24 03:56:46,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:47,129 INFO Connection check task start + +2025-09-24 03:56:47,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:47,130 INFO Out dated connection ,size=0 + +2025-09-24 03:56:47,130 INFO Connection check task end + +2025-09-24 03:56:49,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:50,131 INFO Connection check task start + +2025-09-24 03:56:50,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:50,132 INFO Out dated connection ,size=0 + +2025-09-24 03:56:50,132 INFO Connection check task end + +2025-09-24 03:56:52,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:53,132 INFO Connection check task start + +2025-09-24 03:56:53,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:53,132 INFO Out dated connection ,size=0 + +2025-09-24 03:56:53,132 INFO Connection check task end + +2025-09-24 03:56:55,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:56,134 INFO Connection check task start + +2025-09-24 03:56:56,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:56,134 INFO Out dated connection ,size=0 + +2025-09-24 03:56:56,135 INFO Connection check task end + +2025-09-24 03:56:58,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:56:59,135 INFO Connection check task start + +2025-09-24 03:56:59,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:56:59,135 INFO Out dated connection ,size=0 + +2025-09-24 03:56:59,136 INFO Connection check task end + +2025-09-24 03:57:01,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:02,136 INFO Connection check task start + +2025-09-24 03:57:02,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:02,136 INFO Out dated connection ,size=0 + +2025-09-24 03:57:02,136 INFO Connection check task end + +2025-09-24 03:57:04,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:05,136 INFO Connection check task start + +2025-09-24 03:57:05,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:05,137 INFO Out dated connection ,size=0 + +2025-09-24 03:57:05,137 INFO Connection check task end + +2025-09-24 03:57:07,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:08,138 INFO Connection check task start + +2025-09-24 03:57:08,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:08,139 INFO Out dated connection ,size=0 + +2025-09-24 03:57:08,139 INFO Connection check task end + +2025-09-24 03:57:10,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:11,139 INFO Connection check task start + +2025-09-24 03:57:11,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:11,139 INFO Out dated connection ,size=0 + +2025-09-24 03:57:11,139 INFO Connection check task end + +2025-09-24 03:57:13,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:14,140 INFO Connection check task start + +2025-09-24 03:57:14,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:14,140 INFO Out dated connection ,size=0 + +2025-09-24 03:57:14,140 INFO Connection check task end + +2025-09-24 03:57:16,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:17,141 INFO Connection check task start + +2025-09-24 03:57:17,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:17,141 INFO Out dated connection ,size=0 + +2025-09-24 03:57:17,141 INFO Connection check task end + +2025-09-24 03:57:19,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:20,143 INFO Connection check task start + +2025-09-24 03:57:20,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:20,143 INFO Out dated connection ,size=0 + +2025-09-24 03:57:20,144 INFO Connection check task end + +2025-09-24 03:57:22,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:23,144 INFO Connection check task start + +2025-09-24 03:57:23,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:23,144 INFO Out dated connection ,size=0 + +2025-09-24 03:57:23,144 INFO Connection check task end + +2025-09-24 03:57:25,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:26,146 INFO Connection check task start + +2025-09-24 03:57:26,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:26,146 INFO Out dated connection ,size=0 + +2025-09-24 03:57:26,146 INFO Connection check task end + +2025-09-24 03:57:28,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:29,147 INFO Connection check task start + +2025-09-24 03:57:29,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:29,147 INFO Out dated connection ,size=0 + +2025-09-24 03:57:29,147 INFO Connection check task end + +2025-09-24 03:57:31,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:32,148 INFO Connection check task start + +2025-09-24 03:57:32,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:32,148 INFO Out dated connection ,size=0 + +2025-09-24 03:57:32,148 INFO Connection check task end + +2025-09-24 03:57:34,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:35,150 INFO Connection check task start + +2025-09-24 03:57:35,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:35,150 INFO Out dated connection ,size=0 + +2025-09-24 03:57:35,151 INFO Connection check task end + +2025-09-24 03:57:37,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:38,153 INFO Connection check task start + +2025-09-24 03:57:38,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:38,153 INFO Out dated connection ,size=0 + +2025-09-24 03:57:38,153 INFO Connection check task end + +2025-09-24 03:57:40,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:41,153 INFO Connection check task start + +2025-09-24 03:57:41,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:41,153 INFO Out dated connection ,size=0 + +2025-09-24 03:57:41,154 INFO Connection check task end + +2025-09-24 03:57:43,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:44,155 INFO Connection check task start + +2025-09-24 03:57:44,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:44,155 INFO Out dated connection ,size=0 + +2025-09-24 03:57:44,156 INFO Connection check task end + +2025-09-24 03:57:46,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:47,156 INFO Connection check task start + +2025-09-24 03:57:47,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:47,156 INFO Out dated connection ,size=0 + +2025-09-24 03:57:47,156 INFO Connection check task end + +2025-09-24 03:57:49,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:50,157 INFO Connection check task start + +2025-09-24 03:57:50,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:50,157 INFO Out dated connection ,size=0 + +2025-09-24 03:57:50,157 INFO Connection check task end + +2025-09-24 03:57:52,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:53,159 INFO Connection check task start + +2025-09-24 03:57:53,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:53,160 INFO Out dated connection ,size=0 + +2025-09-24 03:57:53,160 INFO Connection check task end + +2025-09-24 03:57:55,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:56,162 INFO Connection check task start + +2025-09-24 03:57:56,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:56,162 INFO Out dated connection ,size=0 + +2025-09-24 03:57:56,162 INFO Connection check task end + +2025-09-24 03:57:58,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:57:59,162 INFO Connection check task start + +2025-09-24 03:57:59,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:57:59,163 INFO Out dated connection ,size=0 + +2025-09-24 03:57:59,163 INFO Connection check task end + +2025-09-24 03:58:01,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:02,163 INFO Connection check task start + +2025-09-24 03:58:02,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:02,163 INFO Out dated connection ,size=0 + +2025-09-24 03:58:02,163 INFO Connection check task end + +2025-09-24 03:58:04,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:05,165 INFO Connection check task start + +2025-09-24 03:58:05,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:05,165 INFO Out dated connection ,size=0 + +2025-09-24 03:58:05,165 INFO Connection check task end + +2025-09-24 03:58:07,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:08,166 INFO Connection check task start + +2025-09-24 03:58:08,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:08,166 INFO Out dated connection ,size=0 + +2025-09-24 03:58:08,166 INFO Connection check task end + +2025-09-24 03:58:10,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:11,168 INFO Connection check task start + +2025-09-24 03:58:11,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:11,168 INFO Out dated connection ,size=0 + +2025-09-24 03:58:11,168 INFO Connection check task end + +2025-09-24 03:58:13,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:14,169 INFO Connection check task start + +2025-09-24 03:58:14,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:14,169 INFO Out dated connection ,size=0 + +2025-09-24 03:58:14,169 INFO Connection check task end + +2025-09-24 03:58:16,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:17,170 INFO Connection check task start + +2025-09-24 03:58:17,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:17,170 INFO Out dated connection ,size=0 + +2025-09-24 03:58:17,170 INFO Connection check task end + +2025-09-24 03:58:19,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:20,172 INFO Connection check task start + +2025-09-24 03:58:20,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:20,172 INFO Out dated connection ,size=0 + +2025-09-24 03:58:20,172 INFO Connection check task end + +2025-09-24 03:58:22,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:23,174 INFO Connection check task start + +2025-09-24 03:58:23,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:23,175 INFO Out dated connection ,size=0 + +2025-09-24 03:58:23,175 INFO Connection check task end + +2025-09-24 03:58:25,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:26,175 INFO Connection check task start + +2025-09-24 03:58:26,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:26,175 INFO Out dated connection ,size=0 + +2025-09-24 03:58:26,175 INFO Connection check task end + +2025-09-24 03:58:28,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:29,175 INFO Connection check task start + +2025-09-24 03:58:29,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:29,175 INFO Out dated connection ,size=0 + +2025-09-24 03:58:29,175 INFO Connection check task end + +2025-09-24 03:58:31,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:32,178 INFO Connection check task start + +2025-09-24 03:58:32,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:32,178 INFO Out dated connection ,size=0 + +2025-09-24 03:58:32,178 INFO Connection check task end + +2025-09-24 03:58:34,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:35,179 INFO Connection check task start + +2025-09-24 03:58:35,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:35,180 INFO Out dated connection ,size=0 + +2025-09-24 03:58:35,180 INFO Connection check task end + +2025-09-24 03:58:37,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:38,180 INFO Connection check task start + +2025-09-24 03:58:38,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:38,180 INFO Out dated connection ,size=0 + +2025-09-24 03:58:38,180 INFO Connection check task end + +2025-09-24 03:58:40,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:41,182 INFO Connection check task start + +2025-09-24 03:58:41,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:41,183 INFO Out dated connection ,size=0 + +2025-09-24 03:58:41,183 INFO Connection check task end + +2025-09-24 03:58:43,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:44,183 INFO Connection check task start + +2025-09-24 03:58:44,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:44,183 INFO Out dated connection ,size=0 + +2025-09-24 03:58:44,183 INFO Connection check task end + +2025-09-24 03:58:46,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:47,185 INFO Connection check task start + +2025-09-24 03:58:47,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:47,185 INFO Out dated connection ,size=0 + +2025-09-24 03:58:47,185 INFO Connection check task end + +2025-09-24 03:58:49,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:50,188 INFO Connection check task start + +2025-09-24 03:58:50,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:50,188 INFO Out dated connection ,size=0 + +2025-09-24 03:58:50,188 INFO Connection check task end + +2025-09-24 03:58:52,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:53,190 INFO Connection check task start + +2025-09-24 03:58:53,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:53,190 INFO Out dated connection ,size=0 + +2025-09-24 03:58:53,190 INFO Connection check task end + +2025-09-24 03:58:55,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:56,190 INFO Connection check task start + +2025-09-24 03:58:56,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:56,190 INFO Out dated connection ,size=0 + +2025-09-24 03:58:56,190 INFO Connection check task end + +2025-09-24 03:58:58,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:58:59,192 INFO Connection check task start + +2025-09-24 03:58:59,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:58:59,193 INFO Out dated connection ,size=0 + +2025-09-24 03:58:59,193 INFO Connection check task end + +2025-09-24 03:59:01,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:02,195 INFO Connection check task start + +2025-09-24 03:59:02,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:02,195 INFO Out dated connection ,size=0 + +2025-09-24 03:59:02,195 INFO Connection check task end + +2025-09-24 03:59:04,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:05,196 INFO Connection check task start + +2025-09-24 03:59:05,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:05,196 INFO Out dated connection ,size=0 + +2025-09-24 03:59:05,196 INFO Connection check task end + +2025-09-24 03:59:07,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:08,196 INFO Connection check task start + +2025-09-24 03:59:08,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:08,197 INFO Out dated connection ,size=0 + +2025-09-24 03:59:08,197 INFO Connection check task end + +2025-09-24 03:59:10,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:11,197 INFO Connection check task start + +2025-09-24 03:59:11,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:11,197 INFO Out dated connection ,size=0 + +2025-09-24 03:59:11,197 INFO Connection check task end + +2025-09-24 03:59:13,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:14,198 INFO Connection check task start + +2025-09-24 03:59:14,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:14,198 INFO Out dated connection ,size=0 + +2025-09-24 03:59:14,198 INFO Connection check task end + +2025-09-24 03:59:16,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:17,200 INFO Connection check task start + +2025-09-24 03:59:17,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:17,200 INFO Out dated connection ,size=0 + +2025-09-24 03:59:17,201 INFO Connection check task end + +2025-09-24 03:59:19,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:20,201 INFO Connection check task start + +2025-09-24 03:59:20,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:20,201 INFO Out dated connection ,size=0 + +2025-09-24 03:59:20,201 INFO Connection check task end + +2025-09-24 03:59:22,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:23,201 INFO Connection check task start + +2025-09-24 03:59:23,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:23,202 INFO Out dated connection ,size=0 + +2025-09-24 03:59:23,202 INFO Connection check task end + +2025-09-24 03:59:25,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:26,203 INFO Connection check task start + +2025-09-24 03:59:26,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:26,203 INFO Out dated connection ,size=0 + +2025-09-24 03:59:26,203 INFO Connection check task end + +2025-09-24 03:59:28,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:29,203 INFO Connection check task start + +2025-09-24 03:59:29,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:29,203 INFO Out dated connection ,size=0 + +2025-09-24 03:59:29,203 INFO Connection check task end + +2025-09-24 03:59:31,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:32,205 INFO Connection check task start + +2025-09-24 03:59:32,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:32,206 INFO Out dated connection ,size=0 + +2025-09-24 03:59:32,206 INFO Connection check task end + +2025-09-24 03:59:34,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:35,206 INFO Connection check task start + +2025-09-24 03:59:35,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:35,206 INFO Out dated connection ,size=0 + +2025-09-24 03:59:35,206 INFO Connection check task end + +2025-09-24 03:59:37,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:38,207 INFO Connection check task start + +2025-09-24 03:59:38,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:38,207 INFO Out dated connection ,size=0 + +2025-09-24 03:59:38,207 INFO Connection check task end + +2025-09-24 03:59:40,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:41,209 INFO Connection check task start + +2025-09-24 03:59:41,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:41,209 INFO Out dated connection ,size=0 + +2025-09-24 03:59:41,209 INFO Connection check task end + +2025-09-24 03:59:43,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:44,210 INFO Connection check task start + +2025-09-24 03:59:44,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:44,210 INFO Out dated connection ,size=0 + +2025-09-24 03:59:44,210 INFO Connection check task end + +2025-09-24 03:59:46,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:47,212 INFO Connection check task start + +2025-09-24 03:59:47,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:47,212 INFO Out dated connection ,size=0 + +2025-09-24 03:59:47,212 INFO Connection check task end + +2025-09-24 03:59:49,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:50,212 INFO Connection check task start + +2025-09-24 03:59:50,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:50,213 INFO Out dated connection ,size=0 + +2025-09-24 03:59:50,213 INFO Connection check task end + +2025-09-24 03:59:52,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:53,213 INFO Connection check task start + +2025-09-24 03:59:53,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:53,213 INFO Out dated connection ,size=0 + +2025-09-24 03:59:53,213 INFO Connection check task end + +2025-09-24 03:59:55,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:56,213 INFO Connection check task start + +2025-09-24 03:59:56,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:56,213 INFO Out dated connection ,size=0 + +2025-09-24 03:59:56,213 INFO Connection check task end + +2025-09-24 03:59:58,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 03:59:59,215 INFO Connection check task start + +2025-09-24 03:59:59,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 03:59:59,216 INFO Out dated connection ,size=0 + +2025-09-24 03:59:59,216 INFO Connection check task end + +2025-09-24 04:00:01,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:02,216 INFO Connection check task start + +2025-09-24 04:00:02,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:02,216 INFO Out dated connection ,size=0 + +2025-09-24 04:00:02,216 INFO Connection check task end + +2025-09-24 04:00:04,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:05,217 INFO Connection check task start + +2025-09-24 04:00:05,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:05,217 INFO Out dated connection ,size=0 + +2025-09-24 04:00:05,217 INFO Connection check task end + +2025-09-24 04:00:07,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:08,217 INFO Connection check task start + +2025-09-24 04:00:08,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:08,217 INFO Out dated connection ,size=0 + +2025-09-24 04:00:08,217 INFO Connection check task end + +2025-09-24 04:00:10,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:11,218 INFO Connection check task start + +2025-09-24 04:00:11,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:11,218 INFO Out dated connection ,size=0 + +2025-09-24 04:00:11,218 INFO Connection check task end + +2025-09-24 04:00:13,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:14,218 INFO Connection check task start + +2025-09-24 04:00:14,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:14,218 INFO Out dated connection ,size=0 + +2025-09-24 04:00:14,218 INFO Connection check task end + +2025-09-24 04:00:16,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:17,221 INFO Connection check task start + +2025-09-24 04:00:17,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:17,221 INFO Out dated connection ,size=0 + +2025-09-24 04:00:17,221 INFO Connection check task end + +2025-09-24 04:00:19,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:20,222 INFO Connection check task start + +2025-09-24 04:00:20,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:20,222 INFO Out dated connection ,size=0 + +2025-09-24 04:00:20,222 INFO Connection check task end + +2025-09-24 04:00:22,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:23,223 INFO Connection check task start + +2025-09-24 04:00:23,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:23,223 INFO Out dated connection ,size=0 + +2025-09-24 04:00:23,223 INFO Connection check task end + +2025-09-24 04:00:25,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:26,223 INFO Connection check task start + +2025-09-24 04:00:26,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:26,223 INFO Out dated connection ,size=0 + +2025-09-24 04:00:26,223 INFO Connection check task end + +2025-09-24 04:00:28,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:29,223 INFO Connection check task start + +2025-09-24 04:00:29,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:29,224 INFO Out dated connection ,size=0 + +2025-09-24 04:00:29,224 INFO Connection check task end + +2025-09-24 04:00:31,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:32,224 INFO Connection check task start + +2025-09-24 04:00:32,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:32,224 INFO Out dated connection ,size=0 + +2025-09-24 04:00:32,224 INFO Connection check task end + +2025-09-24 04:00:34,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:35,224 INFO Connection check task start + +2025-09-24 04:00:35,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:35,224 INFO Out dated connection ,size=0 + +2025-09-24 04:00:35,225 INFO Connection check task end + +2025-09-24 04:00:37,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:38,225 INFO Connection check task start + +2025-09-24 04:00:38,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:38,225 INFO Out dated connection ,size=0 + +2025-09-24 04:00:38,225 INFO Connection check task end + +2025-09-24 04:00:40,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:41,225 INFO Connection check task start + +2025-09-24 04:00:41,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:41,226 INFO Out dated connection ,size=0 + +2025-09-24 04:00:41,226 INFO Connection check task end + +2025-09-24 04:00:43,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:44,226 INFO Connection check task start + +2025-09-24 04:00:44,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:44,226 INFO Out dated connection ,size=0 + +2025-09-24 04:00:44,226 INFO Connection check task end + +2025-09-24 04:00:46,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:47,226 INFO Connection check task start + +2025-09-24 04:00:47,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:47,227 INFO Out dated connection ,size=0 + +2025-09-24 04:00:47,227 INFO Connection check task end + +2025-09-24 04:00:49,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:50,227 INFO Connection check task start + +2025-09-24 04:00:50,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:50,227 INFO Out dated connection ,size=0 + +2025-09-24 04:00:50,227 INFO Connection check task end + +2025-09-24 04:00:52,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:53,228 INFO Connection check task start + +2025-09-24 04:00:53,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:53,228 INFO Out dated connection ,size=0 + +2025-09-24 04:00:53,228 INFO Connection check task end + +2025-09-24 04:00:55,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:56,231 INFO Connection check task start + +2025-09-24 04:00:56,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:56,231 INFO Out dated connection ,size=0 + +2025-09-24 04:00:56,231 INFO Connection check task end + +2025-09-24 04:00:58,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:00:59,231 INFO Connection check task start + +2025-09-24 04:00:59,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:00:59,231 INFO Out dated connection ,size=0 + +2025-09-24 04:00:59,231 INFO Connection check task end + +2025-09-24 04:01:01,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:02,232 INFO Connection check task start + +2025-09-24 04:01:02,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:02,232 INFO Out dated connection ,size=0 + +2025-09-24 04:01:02,232 INFO Connection check task end + +2025-09-24 04:01:04,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:05,232 INFO Connection check task start + +2025-09-24 04:01:05,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:05,232 INFO Out dated connection ,size=0 + +2025-09-24 04:01:05,232 INFO Connection check task end + +2025-09-24 04:01:07,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:08,233 INFO Connection check task start + +2025-09-24 04:01:08,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:08,233 INFO Out dated connection ,size=0 + +2025-09-24 04:01:08,233 INFO Connection check task end + +2025-09-24 04:01:10,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:11,233 INFO Connection check task start + +2025-09-24 04:01:11,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:11,233 INFO Out dated connection ,size=0 + +2025-09-24 04:01:11,233 INFO Connection check task end + +2025-09-24 04:01:13,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:14,233 INFO Connection check task start + +2025-09-24 04:01:14,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:14,233 INFO Out dated connection ,size=0 + +2025-09-24 04:01:14,234 INFO Connection check task end + +2025-09-24 04:01:16,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:17,234 INFO Connection check task start + +2025-09-24 04:01:17,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:17,234 INFO Out dated connection ,size=0 + +2025-09-24 04:01:17,234 INFO Connection check task end + +2025-09-24 04:01:19,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:20,234 INFO Connection check task start + +2025-09-24 04:01:20,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:20,234 INFO Out dated connection ,size=0 + +2025-09-24 04:01:20,234 INFO Connection check task end + +2025-09-24 04:01:22,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:23,235 INFO Connection check task start + +2025-09-24 04:01:23,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:23,235 INFO Out dated connection ,size=0 + +2025-09-24 04:01:23,235 INFO Connection check task end + +2025-09-24 04:01:25,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:26,236 INFO Connection check task start + +2025-09-24 04:01:26,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:26,236 INFO Out dated connection ,size=0 + +2025-09-24 04:01:26,236 INFO Connection check task end + +2025-09-24 04:01:28,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:29,236 INFO Connection check task start + +2025-09-24 04:01:29,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:29,236 INFO Out dated connection ,size=0 + +2025-09-24 04:01:29,236 INFO Connection check task end + +2025-09-24 04:01:31,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:32,237 INFO Connection check task start + +2025-09-24 04:01:32,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:32,237 INFO Out dated connection ,size=0 + +2025-09-24 04:01:32,237 INFO Connection check task end + +2025-09-24 04:01:34,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:35,237 INFO Connection check task start + +2025-09-24 04:01:35,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:35,238 INFO Out dated connection ,size=0 + +2025-09-24 04:01:35,238 INFO Connection check task end + +2025-09-24 04:01:37,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:38,240 INFO Connection check task start + +2025-09-24 04:01:38,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:38,240 INFO Out dated connection ,size=0 + +2025-09-24 04:01:38,240 INFO Connection check task end + +2025-09-24 04:01:40,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:41,240 INFO Connection check task start + +2025-09-24 04:01:41,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:41,240 INFO Out dated connection ,size=0 + +2025-09-24 04:01:41,240 INFO Connection check task end + +2025-09-24 04:01:43,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:44,241 INFO Connection check task start + +2025-09-24 04:01:44,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:44,241 INFO Out dated connection ,size=0 + +2025-09-24 04:01:44,241 INFO Connection check task end + +2025-09-24 04:01:46,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:47,241 INFO Connection check task start + +2025-09-24 04:01:47,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:47,241 INFO Out dated connection ,size=0 + +2025-09-24 04:01:47,241 INFO Connection check task end + +2025-09-24 04:01:49,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:50,242 INFO Connection check task start + +2025-09-24 04:01:50,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:50,242 INFO Out dated connection ,size=0 + +2025-09-24 04:01:50,242 INFO Connection check task end + +2025-09-24 04:01:52,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:53,242 INFO Connection check task start + +2025-09-24 04:01:53,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:53,242 INFO Out dated connection ,size=0 + +2025-09-24 04:01:53,243 INFO Connection check task end + +2025-09-24 04:01:55,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:56,243 INFO Connection check task start + +2025-09-24 04:01:56,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:56,243 INFO Out dated connection ,size=0 + +2025-09-24 04:01:56,243 INFO Connection check task end + +2025-09-24 04:01:58,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:01:59,243 INFO Connection check task start + +2025-09-24 04:01:59,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:01:59,243 INFO Out dated connection ,size=0 + +2025-09-24 04:01:59,243 INFO Connection check task end + +2025-09-24 04:02:01,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:02,244 INFO Connection check task start + +2025-09-24 04:02:02,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:02,244 INFO Out dated connection ,size=0 + +2025-09-24 04:02:02,244 INFO Connection check task end + +2025-09-24 04:02:04,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:05,246 INFO Connection check task start + +2025-09-24 04:02:05,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:05,246 INFO Out dated connection ,size=0 + +2025-09-24 04:02:05,246 INFO Connection check task end + +2025-09-24 04:02:07,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:08,246 INFO Connection check task start + +2025-09-24 04:02:08,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:08,246 INFO Out dated connection ,size=0 + +2025-09-24 04:02:08,246 INFO Connection check task end + +2025-09-24 04:02:10,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:11,247 INFO Connection check task start + +2025-09-24 04:02:11,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:11,247 INFO Out dated connection ,size=0 + +2025-09-24 04:02:11,247 INFO Connection check task end + +2025-09-24 04:02:13,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:14,247 INFO Connection check task start + +2025-09-24 04:02:14,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:14,247 INFO Out dated connection ,size=0 + +2025-09-24 04:02:14,247 INFO Connection check task end + +2025-09-24 04:02:16,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:17,248 INFO Connection check task start + +2025-09-24 04:02:17,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:17,248 INFO Out dated connection ,size=0 + +2025-09-24 04:02:17,248 INFO Connection check task end + +2025-09-24 04:02:19,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:20,248 INFO Connection check task start + +2025-09-24 04:02:20,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:20,248 INFO Out dated connection ,size=0 + +2025-09-24 04:02:20,248 INFO Connection check task end + +2025-09-24 04:02:22,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:23,248 INFO Connection check task start + +2025-09-24 04:02:23,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:23,249 INFO Out dated connection ,size=0 + +2025-09-24 04:02:23,249 INFO Connection check task end + +2025-09-24 04:02:25,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:26,249 INFO Connection check task start + +2025-09-24 04:02:26,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:26,249 INFO Out dated connection ,size=0 + +2025-09-24 04:02:26,249 INFO Connection check task end + +2025-09-24 04:02:28,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:29,249 INFO Connection check task start + +2025-09-24 04:02:29,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:29,249 INFO Out dated connection ,size=0 + +2025-09-24 04:02:29,249 INFO Connection check task end + +2025-09-24 04:02:31,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:32,250 INFO Connection check task start + +2025-09-24 04:02:32,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:32,250 INFO Out dated connection ,size=0 + +2025-09-24 04:02:32,250 INFO Connection check task end + +2025-09-24 04:02:34,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:35,251 INFO Connection check task start + +2025-09-24 04:02:35,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:35,251 INFO Out dated connection ,size=0 + +2025-09-24 04:02:35,251 INFO Connection check task end + +2025-09-24 04:02:37,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:38,251 INFO Connection check task start + +2025-09-24 04:02:38,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:38,251 INFO Out dated connection ,size=0 + +2025-09-24 04:02:38,251 INFO Connection check task end + +2025-09-24 04:02:40,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:41,251 INFO Connection check task start + +2025-09-24 04:02:41,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:41,251 INFO Out dated connection ,size=0 + +2025-09-24 04:02:41,251 INFO Connection check task end + +2025-09-24 04:02:43,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:44,252 INFO Connection check task start + +2025-09-24 04:02:44,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:44,252 INFO Out dated connection ,size=0 + +2025-09-24 04:02:44,252 INFO Connection check task end + +2025-09-24 04:02:46,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:47,253 INFO Connection check task start + +2025-09-24 04:02:47,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:47,254 INFO Out dated connection ,size=0 + +2025-09-24 04:02:47,254 INFO Connection check task end + +2025-09-24 04:02:49,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:50,254 INFO Connection check task start + +2025-09-24 04:02:50,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:50,254 INFO Out dated connection ,size=0 + +2025-09-24 04:02:50,254 INFO Connection check task end + +2025-09-24 04:02:52,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:53,254 INFO Connection check task start + +2025-09-24 04:02:53,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:53,255 INFO Out dated connection ,size=0 + +2025-09-24 04:02:53,255 INFO Connection check task end + +2025-09-24 04:02:55,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:56,255 INFO Connection check task start + +2025-09-24 04:02:56,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:56,255 INFO Out dated connection ,size=0 + +2025-09-24 04:02:56,255 INFO Connection check task end + +2025-09-24 04:02:58,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:02:59,255 INFO Connection check task start + +2025-09-24 04:02:59,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:02:59,255 INFO Out dated connection ,size=0 + +2025-09-24 04:02:59,255 INFO Connection check task end + +2025-09-24 04:03:01,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:02,256 INFO Connection check task start + +2025-09-24 04:03:02,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:02,256 INFO Out dated connection ,size=0 + +2025-09-24 04:03:02,256 INFO Connection check task end + +2025-09-24 04:03:04,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:05,256 INFO Connection check task start + +2025-09-24 04:03:05,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:05,256 INFO Out dated connection ,size=0 + +2025-09-24 04:03:05,256 INFO Connection check task end + +2025-09-24 04:03:07,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:08,256 INFO Connection check task start + +2025-09-24 04:03:08,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:08,257 INFO Out dated connection ,size=0 + +2025-09-24 04:03:08,257 INFO Connection check task end + +2025-09-24 04:03:10,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:11,257 INFO Connection check task start + +2025-09-24 04:03:11,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:11,257 INFO Out dated connection ,size=0 + +2025-09-24 04:03:11,257 INFO Connection check task end + +2025-09-24 04:03:13,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:14,257 INFO Connection check task start + +2025-09-24 04:03:14,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:14,258 INFO Out dated connection ,size=0 + +2025-09-24 04:03:14,258 INFO Connection check task end + +2025-09-24 04:03:16,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:17,258 INFO Connection check task start + +2025-09-24 04:03:17,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:17,258 INFO Out dated connection ,size=0 + +2025-09-24 04:03:17,258 INFO Connection check task end + +2025-09-24 04:03:19,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:20,258 INFO Connection check task start + +2025-09-24 04:03:20,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:20,259 INFO Out dated connection ,size=0 + +2025-09-24 04:03:20,259 INFO Connection check task end + +2025-09-24 04:03:22,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:23,259 INFO Connection check task start + +2025-09-24 04:03:23,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:23,259 INFO Out dated connection ,size=0 + +2025-09-24 04:03:23,259 INFO Connection check task end + +2025-09-24 04:03:25,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:26,261 INFO Connection check task start + +2025-09-24 04:03:26,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:26,261 INFO Out dated connection ,size=0 + +2025-09-24 04:03:26,261 INFO Connection check task end + +2025-09-24 04:03:28,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:29,263 INFO Connection check task start + +2025-09-24 04:03:29,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:29,263 INFO Out dated connection ,size=0 + +2025-09-24 04:03:29,263 INFO Connection check task end + +2025-09-24 04:03:31,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:32,264 INFO Connection check task start + +2025-09-24 04:03:32,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:32,264 INFO Out dated connection ,size=0 + +2025-09-24 04:03:32,264 INFO Connection check task end + +2025-09-24 04:03:34,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:35,264 INFO Connection check task start + +2025-09-24 04:03:35,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:35,264 INFO Out dated connection ,size=0 + +2025-09-24 04:03:35,264 INFO Connection check task end + +2025-09-24 04:03:37,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:38,264 INFO Connection check task start + +2025-09-24 04:03:38,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:38,264 INFO Out dated connection ,size=0 + +2025-09-24 04:03:38,264 INFO Connection check task end + +2025-09-24 04:03:40,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:41,265 INFO Connection check task start + +2025-09-24 04:03:41,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:41,265 INFO Out dated connection ,size=0 + +2025-09-24 04:03:41,265 INFO Connection check task end + +2025-09-24 04:03:43,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:44,265 INFO Connection check task start + +2025-09-24 04:03:44,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:44,265 INFO Out dated connection ,size=0 + +2025-09-24 04:03:44,265 INFO Connection check task end + +2025-09-24 04:03:46,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:47,265 INFO Connection check task start + +2025-09-24 04:03:47,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:47,265 INFO Out dated connection ,size=0 + +2025-09-24 04:03:47,265 INFO Connection check task end + +2025-09-24 04:03:49,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:50,266 INFO Connection check task start + +2025-09-24 04:03:50,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:50,266 INFO Out dated connection ,size=0 + +2025-09-24 04:03:50,266 INFO Connection check task end + +2025-09-24 04:03:52,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:53,266 INFO Connection check task start + +2025-09-24 04:03:53,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:53,266 INFO Out dated connection ,size=0 + +2025-09-24 04:03:53,266 INFO Connection check task end + +2025-09-24 04:03:55,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:56,267 INFO Connection check task start + +2025-09-24 04:03:56,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:56,267 INFO Out dated connection ,size=0 + +2025-09-24 04:03:56,267 INFO Connection check task end + +2025-09-24 04:03:58,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:03:59,267 INFO Connection check task start + +2025-09-24 04:03:59,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:03:59,267 INFO Out dated connection ,size=0 + +2025-09-24 04:03:59,267 INFO Connection check task end + +2025-09-24 04:04:01,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:02,267 INFO Connection check task start + +2025-09-24 04:04:02,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:02,268 INFO Out dated connection ,size=0 + +2025-09-24 04:04:02,268 INFO Connection check task end + +2025-09-24 04:04:04,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:05,268 INFO Connection check task start + +2025-09-24 04:04:05,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:05,268 INFO Out dated connection ,size=0 + +2025-09-24 04:04:05,268 INFO Connection check task end + +2025-09-24 04:04:07,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:08,269 INFO Connection check task start + +2025-09-24 04:04:08,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:08,269 INFO Out dated connection ,size=0 + +2025-09-24 04:04:08,269 INFO Connection check task end + +2025-09-24 04:04:10,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:11,269 INFO Connection check task start + +2025-09-24 04:04:11,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:11,269 INFO Out dated connection ,size=0 + +2025-09-24 04:04:11,269 INFO Connection check task end + +2025-09-24 04:04:13,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:14,270 INFO Connection check task start + +2025-09-24 04:04:14,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:14,270 INFO Out dated connection ,size=0 + +2025-09-24 04:04:14,270 INFO Connection check task end + +2025-09-24 04:04:16,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:17,270 INFO Connection check task start + +2025-09-24 04:04:17,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:17,270 INFO Out dated connection ,size=0 + +2025-09-24 04:04:17,270 INFO Connection check task end + +2025-09-24 04:04:19,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:20,270 INFO Connection check task start + +2025-09-24 04:04:20,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:20,271 INFO Out dated connection ,size=0 + +2025-09-24 04:04:20,271 INFO Connection check task end + +2025-09-24 04:04:22,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:23,271 INFO Connection check task start + +2025-09-24 04:04:23,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:23,272 INFO Out dated connection ,size=0 + +2025-09-24 04:04:23,272 INFO Connection check task end + +2025-09-24 04:04:25,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:26,273 INFO Connection check task start + +2025-09-24 04:04:26,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:26,274 INFO Out dated connection ,size=0 + +2025-09-24 04:04:26,274 INFO Connection check task end + +2025-09-24 04:04:28,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:29,274 INFO Connection check task start + +2025-09-24 04:04:29,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:29,274 INFO Out dated connection ,size=0 + +2025-09-24 04:04:29,274 INFO Connection check task end + +2025-09-24 04:04:31,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:32,276 INFO Connection check task start + +2025-09-24 04:04:32,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:32,277 INFO Out dated connection ,size=0 + +2025-09-24 04:04:32,277 INFO Connection check task end + +2025-09-24 04:04:34,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:35,278 INFO Connection check task start + +2025-09-24 04:04:35,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:35,278 INFO Out dated connection ,size=0 + +2025-09-24 04:04:35,278 INFO Connection check task end + +2025-09-24 04:04:37,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:38,279 INFO Connection check task start + +2025-09-24 04:04:38,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:38,279 INFO Out dated connection ,size=0 + +2025-09-24 04:04:38,279 INFO Connection check task end + +2025-09-24 04:04:40,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:41,279 INFO Connection check task start + +2025-09-24 04:04:41,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:41,279 INFO Out dated connection ,size=0 + +2025-09-24 04:04:41,279 INFO Connection check task end + +2025-09-24 04:04:43,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:44,280 INFO Connection check task start + +2025-09-24 04:04:44,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:44,280 INFO Out dated connection ,size=0 + +2025-09-24 04:04:44,280 INFO Connection check task end + +2025-09-24 04:04:46,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:47,281 INFO Connection check task start + +2025-09-24 04:04:47,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:47,281 INFO Out dated connection ,size=0 + +2025-09-24 04:04:47,281 INFO Connection check task end + +2025-09-24 04:04:49,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:50,283 INFO Connection check task start + +2025-09-24 04:04:50,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:50,283 INFO Out dated connection ,size=0 + +2025-09-24 04:04:50,283 INFO Connection check task end + +2025-09-24 04:04:52,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:53,284 INFO Connection check task start + +2025-09-24 04:04:53,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:53,284 INFO Out dated connection ,size=0 + +2025-09-24 04:04:53,284 INFO Connection check task end + +2025-09-24 04:04:55,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:56,285 INFO Connection check task start + +2025-09-24 04:04:56,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:56,285 INFO Out dated connection ,size=0 + +2025-09-24 04:04:56,285 INFO Connection check task end + +2025-09-24 04:04:58,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:04:59,286 INFO Connection check task start + +2025-09-24 04:04:59,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:04:59,286 INFO Out dated connection ,size=0 + +2025-09-24 04:04:59,286 INFO Connection check task end + +2025-09-24 04:05:01,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:02,287 INFO Connection check task start + +2025-09-24 04:05:02,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:02,287 INFO Out dated connection ,size=0 + +2025-09-24 04:05:02,287 INFO Connection check task end + +2025-09-24 04:05:04,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:05,289 INFO Connection check task start + +2025-09-24 04:05:05,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:05,289 INFO Out dated connection ,size=0 + +2025-09-24 04:05:05,289 INFO Connection check task end + +2025-09-24 04:05:07,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:08,290 INFO Connection check task start + +2025-09-24 04:05:08,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:08,290 INFO Out dated connection ,size=0 + +2025-09-24 04:05:08,290 INFO Connection check task end + +2025-09-24 04:05:10,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:11,291 INFO Connection check task start + +2025-09-24 04:05:11,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:11,291 INFO Out dated connection ,size=0 + +2025-09-24 04:05:11,291 INFO Connection check task end + +2025-09-24 04:05:13,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:14,291 INFO Connection check task start + +2025-09-24 04:05:14,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:14,292 INFO Out dated connection ,size=0 + +2025-09-24 04:05:14,292 INFO Connection check task end + +2025-09-24 04:05:16,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:17,292 INFO Connection check task start + +2025-09-24 04:05:17,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:17,292 INFO Out dated connection ,size=0 + +2025-09-24 04:05:17,292 INFO Connection check task end + +2025-09-24 04:05:19,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:20,293 INFO Connection check task start + +2025-09-24 04:05:20,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:20,293 INFO Out dated connection ,size=0 + +2025-09-24 04:05:20,293 INFO Connection check task end + +2025-09-24 04:05:22,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:23,294 INFO Connection check task start + +2025-09-24 04:05:23,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:23,294 INFO Out dated connection ,size=0 + +2025-09-24 04:05:23,294 INFO Connection check task end + +2025-09-24 04:05:25,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:26,296 INFO Connection check task start + +2025-09-24 04:05:26,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:26,296 INFO Out dated connection ,size=0 + +2025-09-24 04:05:26,296 INFO Connection check task end + +2025-09-24 04:05:28,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:29,298 INFO Connection check task start + +2025-09-24 04:05:29,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:29,298 INFO Out dated connection ,size=0 + +2025-09-24 04:05:29,298 INFO Connection check task end + +2025-09-24 04:05:31,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:32,299 INFO Connection check task start + +2025-09-24 04:05:32,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:32,299 INFO Out dated connection ,size=0 + +2025-09-24 04:05:32,299 INFO Connection check task end + +2025-09-24 04:05:34,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:35,299 INFO Connection check task start + +2025-09-24 04:05:35,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:35,299 INFO Out dated connection ,size=0 + +2025-09-24 04:05:35,300 INFO Connection check task end + +2025-09-24 04:05:37,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:38,300 INFO Connection check task start + +2025-09-24 04:05:38,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:38,300 INFO Out dated connection ,size=0 + +2025-09-24 04:05:38,300 INFO Connection check task end + +2025-09-24 04:05:40,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:41,302 INFO Connection check task start + +2025-09-24 04:05:41,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:41,302 INFO Out dated connection ,size=0 + +2025-09-24 04:05:41,302 INFO Connection check task end + +2025-09-24 04:05:43,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:44,304 INFO Connection check task start + +2025-09-24 04:05:44,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:44,304 INFO Out dated connection ,size=0 + +2025-09-24 04:05:44,304 INFO Connection check task end + +2025-09-24 04:05:46,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:47,305 INFO Connection check task start + +2025-09-24 04:05:47,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:47,305 INFO Out dated connection ,size=0 + +2025-09-24 04:05:47,305 INFO Connection check task end + +2025-09-24 04:05:49,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:50,307 INFO Connection check task start + +2025-09-24 04:05:50,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:50,307 INFO Out dated connection ,size=0 + +2025-09-24 04:05:50,307 INFO Connection check task end + +2025-09-24 04:05:52,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:53,309 INFO Connection check task start + +2025-09-24 04:05:53,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:53,309 INFO Out dated connection ,size=0 + +2025-09-24 04:05:53,309 INFO Connection check task end + +2025-09-24 04:05:55,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:56,310 INFO Connection check task start + +2025-09-24 04:05:56,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:56,310 INFO Out dated connection ,size=0 + +2025-09-24 04:05:56,310 INFO Connection check task end + +2025-09-24 04:05:58,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:05:59,312 INFO Connection check task start + +2025-09-24 04:05:59,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:05:59,312 INFO Out dated connection ,size=0 + +2025-09-24 04:05:59,312 INFO Connection check task end + +2025-09-24 04:06:01,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:02,313 INFO Connection check task start + +2025-09-24 04:06:02,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:02,313 INFO Out dated connection ,size=0 + +2025-09-24 04:06:02,313 INFO Connection check task end + +2025-09-24 04:06:04,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:05,313 INFO Connection check task start + +2025-09-24 04:06:05,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:05,313 INFO Out dated connection ,size=0 + +2025-09-24 04:06:05,313 INFO Connection check task end + +2025-09-24 04:06:07,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:08,315 INFO Connection check task start + +2025-09-24 04:06:08,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:08,316 INFO Out dated connection ,size=0 + +2025-09-24 04:06:08,316 INFO Connection check task end + +2025-09-24 04:06:10,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:11,318 INFO Connection check task start + +2025-09-24 04:06:11,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:11,318 INFO Out dated connection ,size=0 + +2025-09-24 04:06:11,318 INFO Connection check task end + +2025-09-24 04:06:13,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:14,318 INFO Connection check task start + +2025-09-24 04:06:14,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:14,319 INFO Out dated connection ,size=0 + +2025-09-24 04:06:14,319 INFO Connection check task end + +2025-09-24 04:06:16,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:17,319 INFO Connection check task start + +2025-09-24 04:06:17,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:17,319 INFO Out dated connection ,size=0 + +2025-09-24 04:06:17,319 INFO Connection check task end + +2025-09-24 04:06:19,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:20,319 INFO Connection check task start + +2025-09-24 04:06:20,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:20,319 INFO Out dated connection ,size=0 + +2025-09-24 04:06:20,320 INFO Connection check task end + +2025-09-24 04:06:22,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:23,320 INFO Connection check task start + +2025-09-24 04:06:23,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:23,320 INFO Out dated connection ,size=0 + +2025-09-24 04:06:23,320 INFO Connection check task end + +2025-09-24 04:06:25,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:26,320 INFO Connection check task start + +2025-09-24 04:06:26,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:26,320 INFO Out dated connection ,size=0 + +2025-09-24 04:06:26,320 INFO Connection check task end + +2025-09-24 04:06:28,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:29,322 INFO Connection check task start + +2025-09-24 04:06:29,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:29,323 INFO Out dated connection ,size=0 + +2025-09-24 04:06:29,323 INFO Connection check task end + +2025-09-24 04:06:31,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:32,323 INFO Connection check task start + +2025-09-24 04:06:32,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:32,323 INFO Out dated connection ,size=0 + +2025-09-24 04:06:32,323 INFO Connection check task end + +2025-09-24 04:06:34,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:35,325 INFO Connection check task start + +2025-09-24 04:06:35,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:35,325 INFO Out dated connection ,size=0 + +2025-09-24 04:06:35,326 INFO Connection check task end + +2025-09-24 04:06:37,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:38,328 INFO Connection check task start + +2025-09-24 04:06:38,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:38,328 INFO Out dated connection ,size=0 + +2025-09-24 04:06:38,328 INFO Connection check task end + +2025-09-24 04:06:40,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:41,330 INFO Connection check task start + +2025-09-24 04:06:41,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:41,330 INFO Out dated connection ,size=0 + +2025-09-24 04:06:41,330 INFO Connection check task end + +2025-09-24 04:06:43,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:44,332 INFO Connection check task start + +2025-09-24 04:06:44,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:44,332 INFO Out dated connection ,size=0 + +2025-09-24 04:06:44,332 INFO Connection check task end + +2025-09-24 04:06:46,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:47,332 INFO Connection check task start + +2025-09-24 04:06:47,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:47,333 INFO Out dated connection ,size=0 + +2025-09-24 04:06:47,333 INFO Connection check task end + +2025-09-24 04:06:49,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:50,333 INFO Connection check task start + +2025-09-24 04:06:50,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:50,333 INFO Out dated connection ,size=0 + +2025-09-24 04:06:50,333 INFO Connection check task end + +2025-09-24 04:06:52,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:53,334 INFO Connection check task start + +2025-09-24 04:06:53,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:53,334 INFO Out dated connection ,size=0 + +2025-09-24 04:06:53,334 INFO Connection check task end + +2025-09-24 04:06:55,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:56,336 INFO Connection check task start + +2025-09-24 04:06:56,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:56,336 INFO Out dated connection ,size=0 + +2025-09-24 04:06:56,336 INFO Connection check task end + +2025-09-24 04:06:58,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:06:59,338 INFO Connection check task start + +2025-09-24 04:06:59,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:06:59,338 INFO Out dated connection ,size=0 + +2025-09-24 04:06:59,338 INFO Connection check task end + +2025-09-24 04:07:01,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:02,339 INFO Connection check task start + +2025-09-24 04:07:02,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:02,340 INFO Out dated connection ,size=0 + +2025-09-24 04:07:02,340 INFO Connection check task end + +2025-09-24 04:07:04,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:05,341 INFO Connection check task start + +2025-09-24 04:07:05,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:05,341 INFO Out dated connection ,size=0 + +2025-09-24 04:07:05,341 INFO Connection check task end + +2025-09-24 04:07:07,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:08,342 INFO Connection check task start + +2025-09-24 04:07:08,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:08,342 INFO Out dated connection ,size=0 + +2025-09-24 04:07:08,342 INFO Connection check task end + +2025-09-24 04:07:10,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:11,344 INFO Connection check task start + +2025-09-24 04:07:11,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:11,344 INFO Out dated connection ,size=0 + +2025-09-24 04:07:11,344 INFO Connection check task end + +2025-09-24 04:07:13,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:14,344 INFO Connection check task start + +2025-09-24 04:07:14,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:14,345 INFO Out dated connection ,size=0 + +2025-09-24 04:07:14,345 INFO Connection check task end + +2025-09-24 04:07:16,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:17,345 INFO Connection check task start + +2025-09-24 04:07:17,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:17,345 INFO Out dated connection ,size=0 + +2025-09-24 04:07:17,346 INFO Connection check task end + +2025-09-24 04:07:19,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:20,346 INFO Connection check task start + +2025-09-24 04:07:20,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:20,346 INFO Out dated connection ,size=0 + +2025-09-24 04:07:20,346 INFO Connection check task end + +2025-09-24 04:07:22,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:23,347 INFO Connection check task start + +2025-09-24 04:07:23,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:23,347 INFO Out dated connection ,size=0 + +2025-09-24 04:07:23,347 INFO Connection check task end + +2025-09-24 04:07:25,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:26,348 INFO Connection check task start + +2025-09-24 04:07:26,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:26,348 INFO Out dated connection ,size=0 + +2025-09-24 04:07:26,349 INFO Connection check task end + +2025-09-24 04:07:28,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:29,349 INFO Connection check task start + +2025-09-24 04:07:29,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:29,349 INFO Out dated connection ,size=0 + +2025-09-24 04:07:29,349 INFO Connection check task end + +2025-09-24 04:07:31,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:32,350 INFO Connection check task start + +2025-09-24 04:07:32,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:32,350 INFO Out dated connection ,size=0 + +2025-09-24 04:07:32,350 INFO Connection check task end + +2025-09-24 04:07:34,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:35,351 INFO Connection check task start + +2025-09-24 04:07:35,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:35,351 INFO Out dated connection ,size=0 + +2025-09-24 04:07:35,351 INFO Connection check task end + +2025-09-24 04:07:37,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:38,351 INFO Connection check task start + +2025-09-24 04:07:38,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:38,351 INFO Out dated connection ,size=0 + +2025-09-24 04:07:38,352 INFO Connection check task end + +2025-09-24 04:07:40,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:41,354 INFO Connection check task start + +2025-09-24 04:07:41,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:41,354 INFO Out dated connection ,size=0 + +2025-09-24 04:07:41,354 INFO Connection check task end + +2025-09-24 04:07:43,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:44,355 INFO Connection check task start + +2025-09-24 04:07:44,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:44,355 INFO Out dated connection ,size=0 + +2025-09-24 04:07:44,355 INFO Connection check task end + +2025-09-24 04:07:46,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:47,356 INFO Connection check task start + +2025-09-24 04:07:47,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:47,356 INFO Out dated connection ,size=0 + +2025-09-24 04:07:47,356 INFO Connection check task end + +2025-09-24 04:07:49,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:50,358 INFO Connection check task start + +2025-09-24 04:07:50,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:50,358 INFO Out dated connection ,size=0 + +2025-09-24 04:07:50,358 INFO Connection check task end + +2025-09-24 04:07:52,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:53,359 INFO Connection check task start + +2025-09-24 04:07:53,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:53,359 INFO Out dated connection ,size=0 + +2025-09-24 04:07:53,359 INFO Connection check task end + +2025-09-24 04:07:55,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:56,361 INFO Connection check task start + +2025-09-24 04:07:56,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:56,361 INFO Out dated connection ,size=0 + +2025-09-24 04:07:56,361 INFO Connection check task end + +2025-09-24 04:07:58,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:07:59,363 INFO Connection check task start + +2025-09-24 04:07:59,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:07:59,363 INFO Out dated connection ,size=0 + +2025-09-24 04:07:59,363 INFO Connection check task end + +2025-09-24 04:08:01,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:02,364 INFO Connection check task start + +2025-09-24 04:08:02,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:02,364 INFO Out dated connection ,size=0 + +2025-09-24 04:08:02,364 INFO Connection check task end + +2025-09-24 04:08:04,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:05,366 INFO Connection check task start + +2025-09-24 04:08:05,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:05,367 INFO Out dated connection ,size=0 + +2025-09-24 04:08:05,367 INFO Connection check task end + +2025-09-24 04:08:07,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:08,367 INFO Connection check task start + +2025-09-24 04:08:08,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:08,367 INFO Out dated connection ,size=0 + +2025-09-24 04:08:08,367 INFO Connection check task end + +2025-09-24 04:08:10,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:11,368 INFO Connection check task start + +2025-09-24 04:08:11,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:11,368 INFO Out dated connection ,size=0 + +2025-09-24 04:08:11,368 INFO Connection check task end + +2025-09-24 04:08:13,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:14,370 INFO Connection check task start + +2025-09-24 04:08:14,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:14,370 INFO Out dated connection ,size=0 + +2025-09-24 04:08:14,370 INFO Connection check task end + +2025-09-24 04:08:16,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:17,370 INFO Connection check task start + +2025-09-24 04:08:17,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:17,370 INFO Out dated connection ,size=0 + +2025-09-24 04:08:17,370 INFO Connection check task end + +2025-09-24 04:08:19,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:20,371 INFO Connection check task start + +2025-09-24 04:08:20,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:20,371 INFO Out dated connection ,size=0 + +2025-09-24 04:08:20,371 INFO Connection check task end + +2025-09-24 04:08:22,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:23,372 INFO Connection check task start + +2025-09-24 04:08:23,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:23,372 INFO Out dated connection ,size=0 + +2025-09-24 04:08:23,372 INFO Connection check task end + +2025-09-24 04:08:25,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:26,373 INFO Connection check task start + +2025-09-24 04:08:26,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:26,373 INFO Out dated connection ,size=0 + +2025-09-24 04:08:26,373 INFO Connection check task end + +2025-09-24 04:08:28,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:29,374 INFO Connection check task start + +2025-09-24 04:08:29,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:29,374 INFO Out dated connection ,size=0 + +2025-09-24 04:08:29,374 INFO Connection check task end + +2025-09-24 04:08:31,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:32,375 INFO Connection check task start + +2025-09-24 04:08:32,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:32,375 INFO Out dated connection ,size=0 + +2025-09-24 04:08:32,375 INFO Connection check task end + +2025-09-24 04:08:34,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:35,377 INFO Connection check task start + +2025-09-24 04:08:35,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:35,377 INFO Out dated connection ,size=0 + +2025-09-24 04:08:35,377 INFO Connection check task end + +2025-09-24 04:08:37,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:38,377 INFO Connection check task start + +2025-09-24 04:08:38,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:38,377 INFO Out dated connection ,size=0 + +2025-09-24 04:08:38,377 INFO Connection check task end + +2025-09-24 04:08:40,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:41,378 INFO Connection check task start + +2025-09-24 04:08:41,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:41,378 INFO Out dated connection ,size=0 + +2025-09-24 04:08:41,378 INFO Connection check task end + +2025-09-24 04:08:43,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:44,379 INFO Connection check task start + +2025-09-24 04:08:44,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:44,380 INFO Out dated connection ,size=0 + +2025-09-24 04:08:44,380 INFO Connection check task end + +2025-09-24 04:08:46,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:47,381 INFO Connection check task start + +2025-09-24 04:08:47,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:47,381 INFO Out dated connection ,size=0 + +2025-09-24 04:08:47,382 INFO Connection check task end + +2025-09-24 04:08:49,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:50,382 INFO Connection check task start + +2025-09-24 04:08:50,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:50,383 INFO Out dated connection ,size=0 + +2025-09-24 04:08:50,383 INFO Connection check task end + +2025-09-24 04:08:52,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:53,383 INFO Connection check task start + +2025-09-24 04:08:53,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:53,383 INFO Out dated connection ,size=0 + +2025-09-24 04:08:53,383 INFO Connection check task end + +2025-09-24 04:08:55,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:56,383 INFO Connection check task start + +2025-09-24 04:08:56,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:56,384 INFO Out dated connection ,size=0 + +2025-09-24 04:08:56,384 INFO Connection check task end + +2025-09-24 04:08:58,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:08:59,384 INFO Connection check task start + +2025-09-24 04:08:59,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:08:59,385 INFO Out dated connection ,size=0 + +2025-09-24 04:08:59,385 INFO Connection check task end + +2025-09-24 04:09:01,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:02,385 INFO Connection check task start + +2025-09-24 04:09:02,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:02,385 INFO Out dated connection ,size=0 + +2025-09-24 04:09:02,385 INFO Connection check task end + +2025-09-24 04:09:04,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:05,387 INFO Connection check task start + +2025-09-24 04:09:05,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:05,388 INFO Out dated connection ,size=0 + +2025-09-24 04:09:05,388 INFO Connection check task end + +2025-09-24 04:09:07,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:08,390 INFO Connection check task start + +2025-09-24 04:09:08,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:08,390 INFO Out dated connection ,size=0 + +2025-09-24 04:09:08,390 INFO Connection check task end + +2025-09-24 04:09:11,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:11,392 INFO Connection check task start + +2025-09-24 04:09:11,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:11,393 INFO Out dated connection ,size=0 + +2025-09-24 04:09:11,393 INFO Connection check task end + +2025-09-24 04:09:14,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:14,395 INFO Connection check task start + +2025-09-24 04:09:14,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:14,395 INFO Out dated connection ,size=0 + +2025-09-24 04:09:14,395 INFO Connection check task end + +2025-09-24 04:09:17,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:17,396 INFO Connection check task start + +2025-09-24 04:09:17,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:17,396 INFO Out dated connection ,size=0 + +2025-09-24 04:09:17,396 INFO Connection check task end + +2025-09-24 04:09:20,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:20,397 INFO Connection check task start + +2025-09-24 04:09:20,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:20,397 INFO Out dated connection ,size=0 + +2025-09-24 04:09:20,397 INFO Connection check task end + +2025-09-24 04:09:23,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:23,399 INFO Connection check task start + +2025-09-24 04:09:23,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:23,400 INFO Out dated connection ,size=0 + +2025-09-24 04:09:23,400 INFO Connection check task end + +2025-09-24 04:09:26,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:26,401 INFO Connection check task start + +2025-09-24 04:09:26,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:26,401 INFO Out dated connection ,size=0 + +2025-09-24 04:09:26,401 INFO Connection check task end + +2025-09-24 04:09:29,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:29,403 INFO Connection check task start + +2025-09-24 04:09:29,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:29,403 INFO Out dated connection ,size=0 + +2025-09-24 04:09:29,403 INFO Connection check task end + +2025-09-24 04:09:32,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:32,404 INFO Connection check task start + +2025-09-24 04:09:32,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:32,404 INFO Out dated connection ,size=0 + +2025-09-24 04:09:32,405 INFO Connection check task end + +2025-09-24 04:09:35,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:35,405 INFO Connection check task start + +2025-09-24 04:09:35,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:35,405 INFO Out dated connection ,size=0 + +2025-09-24 04:09:35,405 INFO Connection check task end + +2025-09-24 04:09:38,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:38,407 INFO Connection check task start + +2025-09-24 04:09:38,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:38,407 INFO Out dated connection ,size=0 + +2025-09-24 04:09:38,407 INFO Connection check task end + +2025-09-24 04:09:41,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:41,408 INFO Connection check task start + +2025-09-24 04:09:41,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:41,408 INFO Out dated connection ,size=0 + +2025-09-24 04:09:41,408 INFO Connection check task end + +2025-09-24 04:09:44,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:44,409 INFO Connection check task start + +2025-09-24 04:09:44,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:44,409 INFO Out dated connection ,size=0 + +2025-09-24 04:09:44,409 INFO Connection check task end + +2025-09-24 04:09:47,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:47,410 INFO Connection check task start + +2025-09-24 04:09:47,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:47,410 INFO Out dated connection ,size=0 + +2025-09-24 04:09:47,410 INFO Connection check task end + +2025-09-24 04:09:50,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:50,412 INFO Connection check task start + +2025-09-24 04:09:50,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:50,412 INFO Out dated connection ,size=0 + +2025-09-24 04:09:50,412 INFO Connection check task end + +2025-09-24 04:09:53,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:53,414 INFO Connection check task start + +2025-09-24 04:09:53,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:53,415 INFO Out dated connection ,size=0 + +2025-09-24 04:09:53,415 INFO Connection check task end + +2025-09-24 04:09:56,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:56,416 INFO Connection check task start + +2025-09-24 04:09:56,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:56,416 INFO Out dated connection ,size=0 + +2025-09-24 04:09:56,416 INFO Connection check task end + +2025-09-24 04:09:59,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:09:59,418 INFO Connection check task start + +2025-09-24 04:09:59,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:09:59,419 INFO Out dated connection ,size=0 + +2025-09-24 04:09:59,419 INFO Connection check task end + +2025-09-24 04:10:02,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:02,419 INFO Connection check task start + +2025-09-24 04:10:02,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:02,419 INFO Out dated connection ,size=0 + +2025-09-24 04:10:02,419 INFO Connection check task end + +2025-09-24 04:10:05,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:05,420 INFO Connection check task start + +2025-09-24 04:10:05,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:05,420 INFO Out dated connection ,size=0 + +2025-09-24 04:10:05,420 INFO Connection check task end + +2025-09-24 04:10:08,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:08,422 INFO Connection check task start + +2025-09-24 04:10:08,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:08,422 INFO Out dated connection ,size=0 + +2025-09-24 04:10:08,422 INFO Connection check task end + +2025-09-24 04:10:11,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:11,424 INFO Connection check task start + +2025-09-24 04:10:11,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:11,424 INFO Out dated connection ,size=0 + +2025-09-24 04:10:11,424 INFO Connection check task end + +2025-09-24 04:10:14,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:14,425 INFO Connection check task start + +2025-09-24 04:10:14,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:14,425 INFO Out dated connection ,size=0 + +2025-09-24 04:10:14,425 INFO Connection check task end + +2025-09-24 04:10:17,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:17,427 INFO Connection check task start + +2025-09-24 04:10:17,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:17,427 INFO Out dated connection ,size=0 + +2025-09-24 04:10:17,427 INFO Connection check task end + +2025-09-24 04:10:20,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:20,427 INFO Connection check task start + +2025-09-24 04:10:20,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:20,427 INFO Out dated connection ,size=0 + +2025-09-24 04:10:20,427 INFO Connection check task end + +2025-09-24 04:10:23,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:23,428 INFO Connection check task start + +2025-09-24 04:10:23,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:23,429 INFO Out dated connection ,size=0 + +2025-09-24 04:10:23,429 INFO Connection check task end + +2025-09-24 04:10:26,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:26,431 INFO Connection check task start + +2025-09-24 04:10:26,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:26,431 INFO Out dated connection ,size=0 + +2025-09-24 04:10:26,431 INFO Connection check task end + +2025-09-24 04:10:29,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:29,431 INFO Connection check task start + +2025-09-24 04:10:29,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:29,431 INFO Out dated connection ,size=0 + +2025-09-24 04:10:29,431 INFO Connection check task end + +2025-09-24 04:10:32,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:32,431 INFO Connection check task start + +2025-09-24 04:10:32,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:32,432 INFO Out dated connection ,size=0 + +2025-09-24 04:10:32,432 INFO Connection check task end + +2025-09-24 04:10:35,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:35,434 INFO Connection check task start + +2025-09-24 04:10:35,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:35,434 INFO Out dated connection ,size=0 + +2025-09-24 04:10:35,434 INFO Connection check task end + +2025-09-24 04:10:38,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:38,435 INFO Connection check task start + +2025-09-24 04:10:38,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:38,435 INFO Out dated connection ,size=0 + +2025-09-24 04:10:38,435 INFO Connection check task end + +2025-09-24 04:10:41,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:41,437 INFO Connection check task start + +2025-09-24 04:10:41,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:41,437 INFO Out dated connection ,size=0 + +2025-09-24 04:10:41,437 INFO Connection check task end + +2025-09-24 04:10:44,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:44,438 INFO Connection check task start + +2025-09-24 04:10:44,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:44,438 INFO Out dated connection ,size=0 + +2025-09-24 04:10:44,438 INFO Connection check task end + +2025-09-24 04:10:47,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:47,438 INFO Connection check task start + +2025-09-24 04:10:47,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:47,439 INFO Out dated connection ,size=0 + +2025-09-24 04:10:47,439 INFO Connection check task end + +2025-09-24 04:10:50,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:50,439 INFO Connection check task start + +2025-09-24 04:10:50,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:50,439 INFO Out dated connection ,size=0 + +2025-09-24 04:10:50,439 INFO Connection check task end + +2025-09-24 04:10:53,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:53,440 INFO Connection check task start + +2025-09-24 04:10:53,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:53,440 INFO Out dated connection ,size=0 + +2025-09-24 04:10:53,440 INFO Connection check task end + +2025-09-24 04:10:56,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:56,440 INFO Connection check task start + +2025-09-24 04:10:56,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:56,440 INFO Out dated connection ,size=0 + +2025-09-24 04:10:56,440 INFO Connection check task end + +2025-09-24 04:10:59,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:10:59,441 INFO Connection check task start + +2025-09-24 04:10:59,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:10:59,441 INFO Out dated connection ,size=0 + +2025-09-24 04:10:59,441 INFO Connection check task end + +2025-09-24 04:11:02,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:02,443 INFO Connection check task start + +2025-09-24 04:11:02,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:02,444 INFO Out dated connection ,size=0 + +2025-09-24 04:11:02,444 INFO Connection check task end + +2025-09-24 04:11:05,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:05,444 INFO Connection check task start + +2025-09-24 04:11:05,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:05,444 INFO Out dated connection ,size=0 + +2025-09-24 04:11:05,444 INFO Connection check task end + +2025-09-24 04:11:08,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:08,446 INFO Connection check task start + +2025-09-24 04:11:08,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:08,447 INFO Out dated connection ,size=0 + +2025-09-24 04:11:08,447 INFO Connection check task end + +2025-09-24 04:11:11,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:11,447 INFO Connection check task start + +2025-09-24 04:11:11,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:11,447 INFO Out dated connection ,size=0 + +2025-09-24 04:11:11,447 INFO Connection check task end + +2025-09-24 04:11:14,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:14,448 INFO Connection check task start + +2025-09-24 04:11:14,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:14,448 INFO Out dated connection ,size=0 + +2025-09-24 04:11:14,448 INFO Connection check task end + +2025-09-24 04:11:17,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:17,448 INFO Connection check task start + +2025-09-24 04:11:17,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:17,449 INFO Out dated connection ,size=0 + +2025-09-24 04:11:17,449 INFO Connection check task end + +2025-09-24 04:11:20,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:20,451 INFO Connection check task start + +2025-09-24 04:11:20,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:20,451 INFO Out dated connection ,size=0 + +2025-09-24 04:11:20,451 INFO Connection check task end + +2025-09-24 04:11:23,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:23,452 INFO Connection check task start + +2025-09-24 04:11:23,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:23,452 INFO Out dated connection ,size=0 + +2025-09-24 04:11:23,452 INFO Connection check task end + +2025-09-24 04:11:26,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:26,453 INFO Connection check task start + +2025-09-24 04:11:26,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:26,453 INFO Out dated connection ,size=0 + +2025-09-24 04:11:26,453 INFO Connection check task end + +2025-09-24 04:11:29,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:29,454 INFO Connection check task start + +2025-09-24 04:11:29,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:29,454 INFO Out dated connection ,size=0 + +2025-09-24 04:11:29,454 INFO Connection check task end + +2025-09-24 04:11:32,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:32,455 INFO Connection check task start + +2025-09-24 04:11:32,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:32,455 INFO Out dated connection ,size=0 + +2025-09-24 04:11:32,455 INFO Connection check task end + +2025-09-24 04:11:35,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:35,457 INFO Connection check task start + +2025-09-24 04:11:35,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:35,457 INFO Out dated connection ,size=0 + +2025-09-24 04:11:35,457 INFO Connection check task end + +2025-09-24 04:11:38,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:38,458 INFO Connection check task start + +2025-09-24 04:11:38,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:38,458 INFO Out dated connection ,size=0 + +2025-09-24 04:11:38,458 INFO Connection check task end + +2025-09-24 04:11:41,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:41,458 INFO Connection check task start + +2025-09-24 04:11:41,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:41,458 INFO Out dated connection ,size=0 + +2025-09-24 04:11:41,458 INFO Connection check task end + +2025-09-24 04:11:44,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:44,460 INFO Connection check task start + +2025-09-24 04:11:44,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:44,460 INFO Out dated connection ,size=0 + +2025-09-24 04:11:44,460 INFO Connection check task end + +2025-09-24 04:11:47,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:47,461 INFO Connection check task start + +2025-09-24 04:11:47,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:47,461 INFO Out dated connection ,size=0 + +2025-09-24 04:11:47,461 INFO Connection check task end + +2025-09-24 04:11:50,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:50,461 INFO Connection check task start + +2025-09-24 04:11:50,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:50,461 INFO Out dated connection ,size=0 + +2025-09-24 04:11:50,461 INFO Connection check task end + +2025-09-24 04:11:53,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:53,462 INFO Connection check task start + +2025-09-24 04:11:53,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:53,462 INFO Out dated connection ,size=0 + +2025-09-24 04:11:53,462 INFO Connection check task end + +2025-09-24 04:11:56,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:56,463 INFO Connection check task start + +2025-09-24 04:11:56,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:56,464 INFO Out dated connection ,size=0 + +2025-09-24 04:11:56,464 INFO Connection check task end + +2025-09-24 04:11:59,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:11:59,465 INFO Connection check task start + +2025-09-24 04:11:59,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:11:59,465 INFO Out dated connection ,size=0 + +2025-09-24 04:11:59,465 INFO Connection check task end + +2025-09-24 04:12:02,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:02,465 INFO Connection check task start + +2025-09-24 04:12:02,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:02,465 INFO Out dated connection ,size=0 + +2025-09-24 04:12:02,465 INFO Connection check task end + +2025-09-24 04:12:05,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:05,466 INFO Connection check task start + +2025-09-24 04:12:05,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:05,466 INFO Out dated connection ,size=0 + +2025-09-24 04:12:05,466 INFO Connection check task end + +2025-09-24 04:12:08,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:08,468 INFO Connection check task start + +2025-09-24 04:12:08,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:08,468 INFO Out dated connection ,size=0 + +2025-09-24 04:12:08,468 INFO Connection check task end + +2025-09-24 04:12:11,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:11,470 INFO Connection check task start + +2025-09-24 04:12:11,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:11,471 INFO Out dated connection ,size=0 + +2025-09-24 04:12:11,471 INFO Connection check task end + +2025-09-24 04:12:14,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:14,473 INFO Connection check task start + +2025-09-24 04:12:14,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:14,473 INFO Out dated connection ,size=0 + +2025-09-24 04:12:14,473 INFO Connection check task end + +2025-09-24 04:12:17,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:17,474 INFO Connection check task start + +2025-09-24 04:12:17,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:17,475 INFO Out dated connection ,size=0 + +2025-09-24 04:12:17,475 INFO Connection check task end + +2025-09-24 04:12:20,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:20,475 INFO Connection check task start + +2025-09-24 04:12:20,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:20,475 INFO Out dated connection ,size=0 + +2025-09-24 04:12:20,476 INFO Connection check task end + +2025-09-24 04:12:23,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:23,476 INFO Connection check task start + +2025-09-24 04:12:23,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:23,476 INFO Out dated connection ,size=0 + +2025-09-24 04:12:23,476 INFO Connection check task end + +2025-09-24 04:12:26,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:26,476 INFO Connection check task start + +2025-09-24 04:12:26,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:26,476 INFO Out dated connection ,size=0 + +2025-09-24 04:12:26,476 INFO Connection check task end + +2025-09-24 04:12:29,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:29,479 INFO Connection check task start + +2025-09-24 04:12:29,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:29,479 INFO Out dated connection ,size=0 + +2025-09-24 04:12:29,479 INFO Connection check task end + +2025-09-24 04:12:32,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:32,479 INFO Connection check task start + +2025-09-24 04:12:32,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:32,480 INFO Out dated connection ,size=0 + +2025-09-24 04:12:32,480 INFO Connection check task end + +2025-09-24 04:12:35,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:35,480 INFO Connection check task start + +2025-09-24 04:12:35,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:35,481 INFO Out dated connection ,size=0 + +2025-09-24 04:12:35,481 INFO Connection check task end + +2025-09-24 04:12:38,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:38,481 INFO Connection check task start + +2025-09-24 04:12:38,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:38,481 INFO Out dated connection ,size=0 + +2025-09-24 04:12:38,481 INFO Connection check task end + +2025-09-24 04:12:41,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:41,483 INFO Connection check task start + +2025-09-24 04:12:41,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:41,483 INFO Out dated connection ,size=0 + +2025-09-24 04:12:41,483 INFO Connection check task end + +2025-09-24 04:12:44,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:44,485 INFO Connection check task start + +2025-09-24 04:12:44,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:44,485 INFO Out dated connection ,size=0 + +2025-09-24 04:12:44,485 INFO Connection check task end + +2025-09-24 04:12:47,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:47,485 INFO Connection check task start + +2025-09-24 04:12:47,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:47,486 INFO Out dated connection ,size=0 + +2025-09-24 04:12:47,486 INFO Connection check task end + +2025-09-24 04:12:50,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:50,487 INFO Connection check task start + +2025-09-24 04:12:50,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:50,487 INFO Out dated connection ,size=0 + +2025-09-24 04:12:50,487 INFO Connection check task end + +2025-09-24 04:12:53,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:53,489 INFO Connection check task start + +2025-09-24 04:12:53,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:53,489 INFO Out dated connection ,size=0 + +2025-09-24 04:12:53,489 INFO Connection check task end + +2025-09-24 04:12:56,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:56,491 INFO Connection check task start + +2025-09-24 04:12:56,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:56,491 INFO Out dated connection ,size=0 + +2025-09-24 04:12:56,491 INFO Connection check task end + +2025-09-24 04:12:59,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:12:59,492 INFO Connection check task start + +2025-09-24 04:12:59,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:12:59,492 INFO Out dated connection ,size=0 + +2025-09-24 04:12:59,492 INFO Connection check task end + +2025-09-24 04:13:02,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:02,493 INFO Connection check task start + +2025-09-24 04:13:02,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:02,493 INFO Out dated connection ,size=0 + +2025-09-24 04:13:02,493 INFO Connection check task end + +2025-09-24 04:13:05,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:05,493 INFO Connection check task start + +2025-09-24 04:13:05,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:05,494 INFO Out dated connection ,size=0 + +2025-09-24 04:13:05,494 INFO Connection check task end + +2025-09-24 04:13:08,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:08,496 INFO Connection check task start + +2025-09-24 04:13:08,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:08,496 INFO Out dated connection ,size=0 + +2025-09-24 04:13:08,496 INFO Connection check task end + +2025-09-24 04:13:11,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:11,496 INFO Connection check task start + +2025-09-24 04:13:11,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:11,497 INFO Out dated connection ,size=0 + +2025-09-24 04:13:11,497 INFO Connection check task end + +2025-09-24 04:13:14,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:14,497 INFO Connection check task start + +2025-09-24 04:13:14,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:14,498 INFO Out dated connection ,size=0 + +2025-09-24 04:13:14,498 INFO Connection check task end + +2025-09-24 04:13:17,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:17,498 INFO Connection check task start + +2025-09-24 04:13:17,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:17,498 INFO Out dated connection ,size=0 + +2025-09-24 04:13:17,498 INFO Connection check task end + +2025-09-24 04:13:20,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:20,499 INFO Connection check task start + +2025-09-24 04:13:20,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:20,499 INFO Out dated connection ,size=0 + +2025-09-24 04:13:20,499 INFO Connection check task end + +2025-09-24 04:13:23,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:23,502 INFO Connection check task start + +2025-09-24 04:13:23,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:23,502 INFO Out dated connection ,size=0 + +2025-09-24 04:13:23,502 INFO Connection check task end + +2025-09-24 04:13:26,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:26,504 INFO Connection check task start + +2025-09-24 04:13:26,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:26,504 INFO Out dated connection ,size=0 + +2025-09-24 04:13:26,504 INFO Connection check task end + +2025-09-24 04:13:29,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:29,506 INFO Connection check task start + +2025-09-24 04:13:29,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:29,506 INFO Out dated connection ,size=0 + +2025-09-24 04:13:29,506 INFO Connection check task end + +2025-09-24 04:13:32,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:32,507 INFO Connection check task start + +2025-09-24 04:13:32,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:32,507 INFO Out dated connection ,size=0 + +2025-09-24 04:13:32,507 INFO Connection check task end + +2025-09-24 04:13:35,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:35,509 INFO Connection check task start + +2025-09-24 04:13:35,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:35,509 INFO Out dated connection ,size=0 + +2025-09-24 04:13:35,510 INFO Connection check task end + +2025-09-24 04:13:38,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:38,512 INFO Connection check task start + +2025-09-24 04:13:38,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:38,512 INFO Out dated connection ,size=0 + +2025-09-24 04:13:38,512 INFO Connection check task end + +2025-09-24 04:13:41,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:41,514 INFO Connection check task start + +2025-09-24 04:13:41,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:41,514 INFO Out dated connection ,size=0 + +2025-09-24 04:13:41,514 INFO Connection check task end + +2025-09-24 04:13:44,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:44,514 INFO Connection check task start + +2025-09-24 04:13:44,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:44,514 INFO Out dated connection ,size=0 + +2025-09-24 04:13:44,514 INFO Connection check task end + +2025-09-24 04:13:47,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:47,515 INFO Connection check task start + +2025-09-24 04:13:47,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:47,515 INFO Out dated connection ,size=0 + +2025-09-24 04:13:47,515 INFO Connection check task end + +2025-09-24 04:13:50,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:50,515 INFO Connection check task start + +2025-09-24 04:13:50,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:50,515 INFO Out dated connection ,size=0 + +2025-09-24 04:13:50,515 INFO Connection check task end + +2025-09-24 04:13:53,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:53,516 INFO Connection check task start + +2025-09-24 04:13:53,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:53,516 INFO Out dated connection ,size=0 + +2025-09-24 04:13:53,516 INFO Connection check task end + +2025-09-24 04:13:56,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:56,516 INFO Connection check task start + +2025-09-24 04:13:56,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:56,517 INFO Out dated connection ,size=0 + +2025-09-24 04:13:56,517 INFO Connection check task end + +2025-09-24 04:13:59,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:13:59,517 INFO Connection check task start + +2025-09-24 04:13:59,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:13:59,517 INFO Out dated connection ,size=0 + +2025-09-24 04:13:59,517 INFO Connection check task end + +2025-09-24 04:14:02,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:02,519 INFO Connection check task start + +2025-09-24 04:14:02,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:02,519 INFO Out dated connection ,size=0 + +2025-09-24 04:14:02,519 INFO Connection check task end + +2025-09-24 04:14:05,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:05,520 INFO Connection check task start + +2025-09-24 04:14:05,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:05,520 INFO Out dated connection ,size=0 + +2025-09-24 04:14:05,520 INFO Connection check task end + +2025-09-24 04:14:08,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:08,522 INFO Connection check task start + +2025-09-24 04:14:08,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:08,523 INFO Out dated connection ,size=0 + +2025-09-24 04:14:08,523 INFO Connection check task end + +2025-09-24 04:14:11,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:11,524 INFO Connection check task start + +2025-09-24 04:14:11,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:11,524 INFO Out dated connection ,size=0 + +2025-09-24 04:14:11,524 INFO Connection check task end + +2025-09-24 04:14:14,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:14,525 INFO Connection check task start + +2025-09-24 04:14:14,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:14,525 INFO Out dated connection ,size=0 + +2025-09-24 04:14:14,525 INFO Connection check task end + +2025-09-24 04:14:17,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:17,526 INFO Connection check task start + +2025-09-24 04:14:17,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:17,526 INFO Out dated connection ,size=0 + +2025-09-24 04:14:17,526 INFO Connection check task end + +2025-09-24 04:14:20,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:20,528 INFO Connection check task start + +2025-09-24 04:14:20,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:20,528 INFO Out dated connection ,size=0 + +2025-09-24 04:14:20,528 INFO Connection check task end + +2025-09-24 04:14:23,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:23,530 INFO Connection check task start + +2025-09-24 04:14:23,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:23,530 INFO Out dated connection ,size=0 + +2025-09-24 04:14:23,530 INFO Connection check task end + +2025-09-24 04:14:26,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:26,531 INFO Connection check task start + +2025-09-24 04:14:26,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:26,531 INFO Out dated connection ,size=0 + +2025-09-24 04:14:26,531 INFO Connection check task end + +2025-09-24 04:14:29,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:29,531 INFO Connection check task start + +2025-09-24 04:14:29,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:29,531 INFO Out dated connection ,size=0 + +2025-09-24 04:14:29,531 INFO Connection check task end + +2025-09-24 04:14:32,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:32,532 INFO Connection check task start + +2025-09-24 04:14:32,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:32,532 INFO Out dated connection ,size=0 + +2025-09-24 04:14:32,532 INFO Connection check task end + +2025-09-24 04:14:35,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:35,534 INFO Connection check task start + +2025-09-24 04:14:35,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:35,534 INFO Out dated connection ,size=0 + +2025-09-24 04:14:35,534 INFO Connection check task end + +2025-09-24 04:14:38,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:38,535 INFO Connection check task start + +2025-09-24 04:14:38,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:38,535 INFO Out dated connection ,size=0 + +2025-09-24 04:14:38,535 INFO Connection check task end + +2025-09-24 04:14:41,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:41,535 INFO Connection check task start + +2025-09-24 04:14:41,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:41,536 INFO Out dated connection ,size=0 + +2025-09-24 04:14:41,536 INFO Connection check task end + +2025-09-24 04:14:44,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:44,536 INFO Connection check task start + +2025-09-24 04:14:44,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:44,536 INFO Out dated connection ,size=0 + +2025-09-24 04:14:44,536 INFO Connection check task end + +2025-09-24 04:14:47,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:47,537 INFO Connection check task start + +2025-09-24 04:14:47,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:47,537 INFO Out dated connection ,size=0 + +2025-09-24 04:14:47,537 INFO Connection check task end + +2025-09-24 04:14:50,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:50,538 INFO Connection check task start + +2025-09-24 04:14:50,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:50,539 INFO Out dated connection ,size=0 + +2025-09-24 04:14:50,539 INFO Connection check task end + +2025-09-24 04:14:53,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:53,540 INFO Connection check task start + +2025-09-24 04:14:53,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:53,540 INFO Out dated connection ,size=0 + +2025-09-24 04:14:53,540 INFO Connection check task end + +2025-09-24 04:14:56,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:56,541 INFO Connection check task start + +2025-09-24 04:14:56,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:56,541 INFO Out dated connection ,size=0 + +2025-09-24 04:14:56,541 INFO Connection check task end + +2025-09-24 04:14:59,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:14:59,542 INFO Connection check task start + +2025-09-24 04:14:59,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:14:59,542 INFO Out dated connection ,size=0 + +2025-09-24 04:14:59,542 INFO Connection check task end + +2025-09-24 04:15:02,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:02,542 INFO Connection check task start + +2025-09-24 04:15:02,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:02,543 INFO Out dated connection ,size=0 + +2025-09-24 04:15:02,543 INFO Connection check task end + +2025-09-24 04:15:05,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:05,543 INFO Connection check task start + +2025-09-24 04:15:05,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:05,543 INFO Out dated connection ,size=0 + +2025-09-24 04:15:05,543 INFO Connection check task end + +2025-09-24 04:15:08,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:08,545 INFO Connection check task start + +2025-09-24 04:15:08,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:08,545 INFO Out dated connection ,size=0 + +2025-09-24 04:15:08,545 INFO Connection check task end + +2025-09-24 04:15:11,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:11,547 INFO Connection check task start + +2025-09-24 04:15:11,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:11,547 INFO Out dated connection ,size=0 + +2025-09-24 04:15:11,547 INFO Connection check task end + +2025-09-24 04:15:14,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:14,549 INFO Connection check task start + +2025-09-24 04:15:14,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:14,549 INFO Out dated connection ,size=0 + +2025-09-24 04:15:14,549 INFO Connection check task end + +2025-09-24 04:15:17,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:17,550 INFO Connection check task start + +2025-09-24 04:15:17,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:17,550 INFO Out dated connection ,size=0 + +2025-09-24 04:15:17,550 INFO Connection check task end + +2025-09-24 04:15:20,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:20,551 INFO Connection check task start + +2025-09-24 04:15:20,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:20,551 INFO Out dated connection ,size=0 + +2025-09-24 04:15:20,552 INFO Connection check task end + +2025-09-24 04:15:23,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:23,552 INFO Connection check task start + +2025-09-24 04:15:23,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:23,552 INFO Out dated connection ,size=0 + +2025-09-24 04:15:23,553 INFO Connection check task end + +2025-09-24 04:15:26,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:26,553 INFO Connection check task start + +2025-09-24 04:15:26,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:26,553 INFO Out dated connection ,size=0 + +2025-09-24 04:15:26,553 INFO Connection check task end + +2025-09-24 04:15:29,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:29,555 INFO Connection check task start + +2025-09-24 04:15:29,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:29,555 INFO Out dated connection ,size=0 + +2025-09-24 04:15:29,555 INFO Connection check task end + +2025-09-24 04:15:32,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:32,557 INFO Connection check task start + +2025-09-24 04:15:32,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:32,557 INFO Out dated connection ,size=0 + +2025-09-24 04:15:32,557 INFO Connection check task end + +2025-09-24 04:15:35,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:35,558 INFO Connection check task start + +2025-09-24 04:15:35,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:35,558 INFO Out dated connection ,size=0 + +2025-09-24 04:15:35,558 INFO Connection check task end + +2025-09-24 04:15:38,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:38,558 INFO Connection check task start + +2025-09-24 04:15:38,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:38,558 INFO Out dated connection ,size=0 + +2025-09-24 04:15:38,558 INFO Connection check task end + +2025-09-24 04:15:41,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:41,559 INFO Connection check task start + +2025-09-24 04:15:41,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:41,559 INFO Out dated connection ,size=0 + +2025-09-24 04:15:41,559 INFO Connection check task end + +2025-09-24 04:15:44,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:44,560 INFO Connection check task start + +2025-09-24 04:15:44,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:44,560 INFO Out dated connection ,size=0 + +2025-09-24 04:15:44,560 INFO Connection check task end + +2025-09-24 04:15:47,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:47,560 INFO Connection check task start + +2025-09-24 04:15:47,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:47,561 INFO Out dated connection ,size=0 + +2025-09-24 04:15:47,561 INFO Connection check task end + +2025-09-24 04:15:50,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:50,562 INFO Connection check task start + +2025-09-24 04:15:50,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:50,562 INFO Out dated connection ,size=0 + +2025-09-24 04:15:50,562 INFO Connection check task end + +2025-09-24 04:15:53,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:53,564 INFO Connection check task start + +2025-09-24 04:15:53,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:53,564 INFO Out dated connection ,size=0 + +2025-09-24 04:15:53,564 INFO Connection check task end + +2025-09-24 04:15:56,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:56,565 INFO Connection check task start + +2025-09-24 04:15:56,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:56,565 INFO Out dated connection ,size=0 + +2025-09-24 04:15:56,565 INFO Connection check task end + +2025-09-24 04:15:59,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:15:59,565 INFO Connection check task start + +2025-09-24 04:15:59,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:15:59,565 INFO Out dated connection ,size=0 + +2025-09-24 04:15:59,566 INFO Connection check task end + +2025-09-24 04:16:02,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:02,566 INFO Connection check task start + +2025-09-24 04:16:02,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:02,566 INFO Out dated connection ,size=0 + +2025-09-24 04:16:02,566 INFO Connection check task end + +2025-09-24 04:16:05,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:05,567 INFO Connection check task start + +2025-09-24 04:16:05,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:05,567 INFO Out dated connection ,size=0 + +2025-09-24 04:16:05,567 INFO Connection check task end + +2025-09-24 04:16:08,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:08,567 INFO Connection check task start + +2025-09-24 04:16:08,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:08,567 INFO Out dated connection ,size=0 + +2025-09-24 04:16:08,567 INFO Connection check task end + +2025-09-24 04:16:11,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:11,569 INFO Connection check task start + +2025-09-24 04:16:11,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:11,569 INFO Out dated connection ,size=0 + +2025-09-24 04:16:11,569 INFO Connection check task end + +2025-09-24 04:16:14,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:14,569 INFO Connection check task start + +2025-09-24 04:16:14,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:14,569 INFO Out dated connection ,size=0 + +2025-09-24 04:16:14,569 INFO Connection check task end + +2025-09-24 04:16:17,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:17,570 INFO Connection check task start + +2025-09-24 04:16:17,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:17,570 INFO Out dated connection ,size=0 + +2025-09-24 04:16:17,570 INFO Connection check task end + +2025-09-24 04:16:20,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:20,571 INFO Connection check task start + +2025-09-24 04:16:20,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:20,571 INFO Out dated connection ,size=0 + +2025-09-24 04:16:20,571 INFO Connection check task end + +2025-09-24 04:16:23,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:23,571 INFO Connection check task start + +2025-09-24 04:16:23,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:23,572 INFO Out dated connection ,size=0 + +2025-09-24 04:16:23,572 INFO Connection check task end + +2025-09-24 04:16:26,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:26,573 INFO Connection check task start + +2025-09-24 04:16:26,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:26,573 INFO Out dated connection ,size=0 + +2025-09-24 04:16:26,573 INFO Connection check task end + +2025-09-24 04:16:29,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:29,574 INFO Connection check task start + +2025-09-24 04:16:29,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:29,574 INFO Out dated connection ,size=0 + +2025-09-24 04:16:29,574 INFO Connection check task end + +2025-09-24 04:16:32,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:32,574 INFO Connection check task start + +2025-09-24 04:16:32,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:32,574 INFO Out dated connection ,size=0 + +2025-09-24 04:16:32,574 INFO Connection check task end + +2025-09-24 04:16:35,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:35,575 INFO Connection check task start + +2025-09-24 04:16:35,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:35,575 INFO Out dated connection ,size=0 + +2025-09-24 04:16:35,575 INFO Connection check task end + +2025-09-24 04:16:38,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:38,577 INFO Connection check task start + +2025-09-24 04:16:38,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:38,577 INFO Out dated connection ,size=0 + +2025-09-24 04:16:38,577 INFO Connection check task end + +2025-09-24 04:16:41,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:41,578 INFO Connection check task start + +2025-09-24 04:16:41,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:41,578 INFO Out dated connection ,size=0 + +2025-09-24 04:16:41,578 INFO Connection check task end + +2025-09-24 04:16:44,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:44,579 INFO Connection check task start + +2025-09-24 04:16:44,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:44,579 INFO Out dated connection ,size=0 + +2025-09-24 04:16:44,579 INFO Connection check task end + +2025-09-24 04:16:47,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:47,581 INFO Connection check task start + +2025-09-24 04:16:47,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:47,581 INFO Out dated connection ,size=0 + +2025-09-24 04:16:47,581 INFO Connection check task end + +2025-09-24 04:16:50,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:50,583 INFO Connection check task start + +2025-09-24 04:16:50,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:50,584 INFO Out dated connection ,size=0 + +2025-09-24 04:16:50,584 INFO Connection check task end + +2025-09-24 04:16:53,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:53,584 INFO Connection check task start + +2025-09-24 04:16:53,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:53,584 INFO Out dated connection ,size=0 + +2025-09-24 04:16:53,584 INFO Connection check task end + +2025-09-24 04:16:56,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:56,584 INFO Connection check task start + +2025-09-24 04:16:56,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:56,585 INFO Out dated connection ,size=0 + +2025-09-24 04:16:56,585 INFO Connection check task end + +2025-09-24 04:16:59,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:16:59,586 INFO Connection check task start + +2025-09-24 04:16:59,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:16:59,587 INFO Out dated connection ,size=0 + +2025-09-24 04:16:59,587 INFO Connection check task end + +2025-09-24 04:17:02,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:02,587 INFO Connection check task start + +2025-09-24 04:17:02,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:02,588 INFO Out dated connection ,size=0 + +2025-09-24 04:17:02,588 INFO Connection check task end + +2025-09-24 04:17:05,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:05,588 INFO Connection check task start + +2025-09-24 04:17:05,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:05,588 INFO Out dated connection ,size=0 + +2025-09-24 04:17:05,588 INFO Connection check task end + +2025-09-24 04:17:08,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:08,589 INFO Connection check task start + +2025-09-24 04:17:08,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:08,589 INFO Out dated connection ,size=0 + +2025-09-24 04:17:08,589 INFO Connection check task end + +2025-09-24 04:17:11,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:11,589 INFO Connection check task start + +2025-09-24 04:17:11,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:11,590 INFO Out dated connection ,size=0 + +2025-09-24 04:17:11,590 INFO Connection check task end + +2025-09-24 04:17:14,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:14,591 INFO Connection check task start + +2025-09-24 04:17:14,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:14,591 INFO Out dated connection ,size=0 + +2025-09-24 04:17:14,591 INFO Connection check task end + +2025-09-24 04:17:17,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:17,592 INFO Connection check task start + +2025-09-24 04:17:17,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:17,593 INFO Out dated connection ,size=0 + +2025-09-24 04:17:17,593 INFO Connection check task end + +2025-09-24 04:17:20,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:20,594 INFO Connection check task start + +2025-09-24 04:17:20,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:20,594 INFO Out dated connection ,size=0 + +2025-09-24 04:17:20,594 INFO Connection check task end + +2025-09-24 04:17:23,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:23,595 INFO Connection check task start + +2025-09-24 04:17:23,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:23,595 INFO Out dated connection ,size=0 + +2025-09-24 04:17:23,595 INFO Connection check task end + +2025-09-24 04:17:26,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:26,597 INFO Connection check task start + +2025-09-24 04:17:26,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:26,597 INFO Out dated connection ,size=0 + +2025-09-24 04:17:26,597 INFO Connection check task end + +2025-09-24 04:17:29,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:29,597 INFO Connection check task start + +2025-09-24 04:17:29,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:29,598 INFO Out dated connection ,size=0 + +2025-09-24 04:17:29,598 INFO Connection check task end + +2025-09-24 04:17:32,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:32,598 INFO Connection check task start + +2025-09-24 04:17:32,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:32,598 INFO Out dated connection ,size=0 + +2025-09-24 04:17:32,598 INFO Connection check task end + +2025-09-24 04:17:35,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:35,600 INFO Connection check task start + +2025-09-24 04:17:35,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:35,600 INFO Out dated connection ,size=0 + +2025-09-24 04:17:35,600 INFO Connection check task end + +2025-09-24 04:17:38,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:38,601 INFO Connection check task start + +2025-09-24 04:17:38,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:38,602 INFO Out dated connection ,size=0 + +2025-09-24 04:17:38,602 INFO Connection check task end + +2025-09-24 04:17:41,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:41,603 INFO Connection check task start + +2025-09-24 04:17:41,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:41,604 INFO Out dated connection ,size=0 + +2025-09-24 04:17:41,604 INFO Connection check task end + +2025-09-24 04:17:44,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:44,605 INFO Connection check task start + +2025-09-24 04:17:44,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:44,605 INFO Out dated connection ,size=0 + +2025-09-24 04:17:44,605 INFO Connection check task end + +2025-09-24 04:17:47,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:47,606 INFO Connection check task start + +2025-09-24 04:17:47,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:47,606 INFO Out dated connection ,size=0 + +2025-09-24 04:17:47,606 INFO Connection check task end + +2025-09-24 04:17:50,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:50,607 INFO Connection check task start + +2025-09-24 04:17:50,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:50,607 INFO Out dated connection ,size=0 + +2025-09-24 04:17:50,607 INFO Connection check task end + +2025-09-24 04:17:53,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:53,608 INFO Connection check task start + +2025-09-24 04:17:53,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:53,608 INFO Out dated connection ,size=0 + +2025-09-24 04:17:53,608 INFO Connection check task end + +2025-09-24 04:17:56,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:56,609 INFO Connection check task start + +2025-09-24 04:17:56,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:56,609 INFO Out dated connection ,size=0 + +2025-09-24 04:17:56,609 INFO Connection check task end + +2025-09-24 04:17:59,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:17:59,611 INFO Connection check task start + +2025-09-24 04:17:59,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:17:59,611 INFO Out dated connection ,size=0 + +2025-09-24 04:17:59,611 INFO Connection check task end + +2025-09-24 04:18:02,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:02,611 INFO Connection check task start + +2025-09-24 04:18:02,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:02,611 INFO Out dated connection ,size=0 + +2025-09-24 04:18:02,611 INFO Connection check task end + +2025-09-24 04:18:05,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:05,613 INFO Connection check task start + +2025-09-24 04:18:05,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:05,613 INFO Out dated connection ,size=0 + +2025-09-24 04:18:05,613 INFO Connection check task end + +2025-09-24 04:18:08,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:08,614 INFO Connection check task start + +2025-09-24 04:18:08,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:08,614 INFO Out dated connection ,size=0 + +2025-09-24 04:18:08,614 INFO Connection check task end + +2025-09-24 04:18:11,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:11,614 INFO Connection check task start + +2025-09-24 04:18:11,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:11,615 INFO Out dated connection ,size=0 + +2025-09-24 04:18:11,615 INFO Connection check task end + +2025-09-24 04:18:14,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:14,615 INFO Connection check task start + +2025-09-24 04:18:14,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:14,615 INFO Out dated connection ,size=0 + +2025-09-24 04:18:14,615 INFO Connection check task end + +2025-09-24 04:18:17,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:17,616 INFO Connection check task start + +2025-09-24 04:18:17,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:17,616 INFO Out dated connection ,size=0 + +2025-09-24 04:18:17,616 INFO Connection check task end + +2025-09-24 04:18:20,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:20,618 INFO Connection check task start + +2025-09-24 04:18:20,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:20,618 INFO Out dated connection ,size=0 + +2025-09-24 04:18:20,618 INFO Connection check task end + +2025-09-24 04:18:23,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:23,620 INFO Connection check task start + +2025-09-24 04:18:23,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:23,620 INFO Out dated connection ,size=0 + +2025-09-24 04:18:23,620 INFO Connection check task end + +2025-09-24 04:18:26,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:26,622 INFO Connection check task start + +2025-09-24 04:18:26,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:26,622 INFO Out dated connection ,size=0 + +2025-09-24 04:18:26,622 INFO Connection check task end + +2025-09-24 04:18:29,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:29,622 INFO Connection check task start + +2025-09-24 04:18:29,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:29,623 INFO Out dated connection ,size=0 + +2025-09-24 04:18:29,623 INFO Connection check task end + +2025-09-24 04:18:32,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:32,625 INFO Connection check task start + +2025-09-24 04:18:32,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:32,625 INFO Out dated connection ,size=0 + +2025-09-24 04:18:32,625 INFO Connection check task end + +2025-09-24 04:18:35,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:35,627 INFO Connection check task start + +2025-09-24 04:18:35,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:35,627 INFO Out dated connection ,size=0 + +2025-09-24 04:18:35,627 INFO Connection check task end + +2025-09-24 04:18:38,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:38,628 INFO Connection check task start + +2025-09-24 04:18:38,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:38,629 INFO Out dated connection ,size=0 + +2025-09-24 04:18:38,629 INFO Connection check task end + +2025-09-24 04:18:41,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:41,629 INFO Connection check task start + +2025-09-24 04:18:41,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:41,629 INFO Out dated connection ,size=0 + +2025-09-24 04:18:41,629 INFO Connection check task end + +2025-09-24 04:18:44,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:44,631 INFO Connection check task start + +2025-09-24 04:18:44,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:44,631 INFO Out dated connection ,size=0 + +2025-09-24 04:18:44,631 INFO Connection check task end + +2025-09-24 04:18:47,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:47,633 INFO Connection check task start + +2025-09-24 04:18:47,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:47,633 INFO Out dated connection ,size=0 + +2025-09-24 04:18:47,633 INFO Connection check task end + +2025-09-24 04:18:50,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:50,634 INFO Connection check task start + +2025-09-24 04:18:50,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:50,634 INFO Out dated connection ,size=0 + +2025-09-24 04:18:50,634 INFO Connection check task end + +2025-09-24 04:18:53,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:53,634 INFO Connection check task start + +2025-09-24 04:18:53,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:53,635 INFO Out dated connection ,size=0 + +2025-09-24 04:18:53,635 INFO Connection check task end + +2025-09-24 04:18:56,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:56,637 INFO Connection check task start + +2025-09-24 04:18:56,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:56,637 INFO Out dated connection ,size=0 + +2025-09-24 04:18:56,637 INFO Connection check task end + +2025-09-24 04:18:59,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:18:59,637 INFO Connection check task start + +2025-09-24 04:18:59,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:18:59,637 INFO Out dated connection ,size=0 + +2025-09-24 04:18:59,638 INFO Connection check task end + +2025-09-24 04:19:02,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:02,638 INFO Connection check task start + +2025-09-24 04:19:02,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:02,638 INFO Out dated connection ,size=0 + +2025-09-24 04:19:02,638 INFO Connection check task end + +2025-09-24 04:19:05,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:05,640 INFO Connection check task start + +2025-09-24 04:19:05,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:05,640 INFO Out dated connection ,size=0 + +2025-09-24 04:19:05,640 INFO Connection check task end + +2025-09-24 04:19:08,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:08,640 INFO Connection check task start + +2025-09-24 04:19:08,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:08,641 INFO Out dated connection ,size=0 + +2025-09-24 04:19:08,641 INFO Connection check task end + +2025-09-24 04:19:11,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:11,641 INFO Connection check task start + +2025-09-24 04:19:11,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:11,641 INFO Out dated connection ,size=0 + +2025-09-24 04:19:11,641 INFO Connection check task end + +2025-09-24 04:19:14,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:14,643 INFO Connection check task start + +2025-09-24 04:19:14,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:14,643 INFO Out dated connection ,size=0 + +2025-09-24 04:19:14,643 INFO Connection check task end + +2025-09-24 04:19:17,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:17,645 INFO Connection check task start + +2025-09-24 04:19:17,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:17,645 INFO Out dated connection ,size=0 + +2025-09-24 04:19:17,645 INFO Connection check task end + +2025-09-24 04:19:20,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:20,645 INFO Connection check task start + +2025-09-24 04:19:20,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:20,646 INFO Out dated connection ,size=0 + +2025-09-24 04:19:20,646 INFO Connection check task end + +2025-09-24 04:19:23,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:23,646 INFO Connection check task start + +2025-09-24 04:19:23,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:23,646 INFO Out dated connection ,size=0 + +2025-09-24 04:19:23,646 INFO Connection check task end + +2025-09-24 04:19:26,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:26,648 INFO Connection check task start + +2025-09-24 04:19:26,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:26,649 INFO Out dated connection ,size=0 + +2025-09-24 04:19:26,649 INFO Connection check task end + +2025-09-24 04:19:29,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:29,651 INFO Connection check task start + +2025-09-24 04:19:29,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:29,651 INFO Out dated connection ,size=0 + +2025-09-24 04:19:29,651 INFO Connection check task end + +2025-09-24 04:19:32,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:32,651 INFO Connection check task start + +2025-09-24 04:19:32,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:32,651 INFO Out dated connection ,size=0 + +2025-09-24 04:19:32,651 INFO Connection check task end + +2025-09-24 04:19:35,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:35,654 INFO Connection check task start + +2025-09-24 04:19:35,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:35,654 INFO Out dated connection ,size=0 + +2025-09-24 04:19:35,654 INFO Connection check task end + +2025-09-24 04:19:38,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:38,656 INFO Connection check task start + +2025-09-24 04:19:38,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:38,656 INFO Out dated connection ,size=0 + +2025-09-24 04:19:38,656 INFO Connection check task end + +2025-09-24 04:19:41,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:41,656 INFO Connection check task start + +2025-09-24 04:19:41,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:41,656 INFO Out dated connection ,size=0 + +2025-09-24 04:19:41,656 INFO Connection check task end + +2025-09-24 04:19:44,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:44,657 INFO Connection check task start + +2025-09-24 04:19:44,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:44,657 INFO Out dated connection ,size=0 + +2025-09-24 04:19:44,657 INFO Connection check task end + +2025-09-24 04:19:47,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:47,657 INFO Connection check task start + +2025-09-24 04:19:47,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:47,658 INFO Out dated connection ,size=0 + +2025-09-24 04:19:47,658 INFO Connection check task end + +2025-09-24 04:19:50,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:50,659 INFO Connection check task start + +2025-09-24 04:19:50,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:50,660 INFO Out dated connection ,size=0 + +2025-09-24 04:19:50,660 INFO Connection check task end + +2025-09-24 04:19:53,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:53,660 INFO Connection check task start + +2025-09-24 04:19:53,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:53,660 INFO Out dated connection ,size=0 + +2025-09-24 04:19:53,660 INFO Connection check task end + +2025-09-24 04:19:56,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:56,661 INFO Connection check task start + +2025-09-24 04:19:56,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:56,661 INFO Out dated connection ,size=0 + +2025-09-24 04:19:56,661 INFO Connection check task end + +2025-09-24 04:19:59,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:19:59,662 INFO Connection check task start + +2025-09-24 04:19:59,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:19:59,662 INFO Out dated connection ,size=0 + +2025-09-24 04:19:59,662 INFO Connection check task end + +2025-09-24 04:20:02,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:02,663 INFO Connection check task start + +2025-09-24 04:20:02,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:02,663 INFO Out dated connection ,size=0 + +2025-09-24 04:20:02,663 INFO Connection check task end + +2025-09-24 04:20:05,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:05,663 INFO Connection check task start + +2025-09-24 04:20:05,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:05,663 INFO Out dated connection ,size=0 + +2025-09-24 04:20:05,663 INFO Connection check task end + +2025-09-24 04:20:08,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:08,665 INFO Connection check task start + +2025-09-24 04:20:08,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:08,666 INFO Out dated connection ,size=0 + +2025-09-24 04:20:08,666 INFO Connection check task end + +2025-09-24 04:20:11,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:11,666 INFO Connection check task start + +2025-09-24 04:20:11,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:11,666 INFO Out dated connection ,size=0 + +2025-09-24 04:20:11,666 INFO Connection check task end + +2025-09-24 04:20:14,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:14,666 INFO Connection check task start + +2025-09-24 04:20:14,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:14,667 INFO Out dated connection ,size=0 + +2025-09-24 04:20:14,667 INFO Connection check task end + +2025-09-24 04:20:17,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:17,667 INFO Connection check task start + +2025-09-24 04:20:17,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:17,668 INFO Out dated connection ,size=0 + +2025-09-24 04:20:17,668 INFO Connection check task end + +2025-09-24 04:20:20,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:20,670 INFO Connection check task start + +2025-09-24 04:20:20,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:20,670 INFO Out dated connection ,size=0 + +2025-09-24 04:20:20,670 INFO Connection check task end + +2025-09-24 04:20:23,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:23,670 INFO Connection check task start + +2025-09-24 04:20:23,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:23,670 INFO Out dated connection ,size=0 + +2025-09-24 04:20:23,671 INFO Connection check task end + +2025-09-24 04:20:26,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:26,673 INFO Connection check task start + +2025-09-24 04:20:26,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:26,673 INFO Out dated connection ,size=0 + +2025-09-24 04:20:26,673 INFO Connection check task end + +2025-09-24 04:20:29,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:29,673 INFO Connection check task start + +2025-09-24 04:20:29,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:29,674 INFO Out dated connection ,size=0 + +2025-09-24 04:20:29,674 INFO Connection check task end + +2025-09-24 04:20:32,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:32,675 INFO Connection check task start + +2025-09-24 04:20:32,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:32,676 INFO Out dated connection ,size=0 + +2025-09-24 04:20:32,676 INFO Connection check task end + +2025-09-24 04:20:35,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:35,678 INFO Connection check task start + +2025-09-24 04:20:35,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:35,678 INFO Out dated connection ,size=0 + +2025-09-24 04:20:35,678 INFO Connection check task end + +2025-09-24 04:20:38,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:38,680 INFO Connection check task start + +2025-09-24 04:20:38,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:38,680 INFO Out dated connection ,size=0 + +2025-09-24 04:20:38,680 INFO Connection check task end + +2025-09-24 04:20:41,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:41,682 INFO Connection check task start + +2025-09-24 04:20:41,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:41,683 INFO Out dated connection ,size=0 + +2025-09-24 04:20:41,683 INFO Connection check task end + +2025-09-24 04:20:44,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:44,683 INFO Connection check task start + +2025-09-24 04:20:44,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:44,683 INFO Out dated connection ,size=0 + +2025-09-24 04:20:44,683 INFO Connection check task end + +2025-09-24 04:20:47,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:47,685 INFO Connection check task start + +2025-09-24 04:20:47,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:47,685 INFO Out dated connection ,size=0 + +2025-09-24 04:20:47,685 INFO Connection check task end + +2025-09-24 04:20:50,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:50,686 INFO Connection check task start + +2025-09-24 04:20:50,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:50,686 INFO Out dated connection ,size=0 + +2025-09-24 04:20:50,686 INFO Connection check task end + +2025-09-24 04:20:53,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:53,687 INFO Connection check task start + +2025-09-24 04:20:53,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:53,688 INFO Out dated connection ,size=0 + +2025-09-24 04:20:53,688 INFO Connection check task end + +2025-09-24 04:20:56,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:56,688 INFO Connection check task start + +2025-09-24 04:20:56,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:56,688 INFO Out dated connection ,size=0 + +2025-09-24 04:20:56,688 INFO Connection check task end + +2025-09-24 04:20:59,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:20:59,690 INFO Connection check task start + +2025-09-24 04:20:59,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:20:59,691 INFO Out dated connection ,size=0 + +2025-09-24 04:20:59,691 INFO Connection check task end + +2025-09-24 04:21:02,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:02,693 INFO Connection check task start + +2025-09-24 04:21:02,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:02,693 INFO Out dated connection ,size=0 + +2025-09-24 04:21:02,693 INFO Connection check task end + +2025-09-24 04:21:05,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:05,695 INFO Connection check task start + +2025-09-24 04:21:05,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:05,695 INFO Out dated connection ,size=0 + +2025-09-24 04:21:05,695 INFO Connection check task end + +2025-09-24 04:21:08,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:08,696 INFO Connection check task start + +2025-09-24 04:21:08,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:08,696 INFO Out dated connection ,size=0 + +2025-09-24 04:21:08,696 INFO Connection check task end + +2025-09-24 04:21:11,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:11,696 INFO Connection check task start + +2025-09-24 04:21:11,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:11,697 INFO Out dated connection ,size=0 + +2025-09-24 04:21:11,697 INFO Connection check task end + +2025-09-24 04:21:14,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:14,697 INFO Connection check task start + +2025-09-24 04:21:14,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:14,697 INFO Out dated connection ,size=0 + +2025-09-24 04:21:14,697 INFO Connection check task end + +2025-09-24 04:21:17,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:17,697 INFO Connection check task start + +2025-09-24 04:21:17,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:17,698 INFO Out dated connection ,size=0 + +2025-09-24 04:21:17,698 INFO Connection check task end + +2025-09-24 04:21:20,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:20,698 INFO Connection check task start + +2025-09-24 04:21:20,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:20,698 INFO Out dated connection ,size=0 + +2025-09-24 04:21:20,698 INFO Connection check task end + +2025-09-24 04:21:23,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:23,700 INFO Connection check task start + +2025-09-24 04:21:23,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:23,700 INFO Out dated connection ,size=0 + +2025-09-24 04:21:23,700 INFO Connection check task end + +2025-09-24 04:21:26,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:26,701 INFO Connection check task start + +2025-09-24 04:21:26,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:26,701 INFO Out dated connection ,size=0 + +2025-09-24 04:21:26,701 INFO Connection check task end + +2025-09-24 04:21:29,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:29,703 INFO Connection check task start + +2025-09-24 04:21:29,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:29,704 INFO Out dated connection ,size=0 + +2025-09-24 04:21:29,704 INFO Connection check task end + +2025-09-24 04:21:32,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:32,704 INFO Connection check task start + +2025-09-24 04:21:32,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:32,704 INFO Out dated connection ,size=0 + +2025-09-24 04:21:32,704 INFO Connection check task end + +2025-09-24 04:21:35,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:35,705 INFO Connection check task start + +2025-09-24 04:21:35,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:35,705 INFO Out dated connection ,size=0 + +2025-09-24 04:21:35,705 INFO Connection check task end + +2025-09-24 04:21:38,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:38,705 INFO Connection check task start + +2025-09-24 04:21:38,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:38,705 INFO Out dated connection ,size=0 + +2025-09-24 04:21:38,705 INFO Connection check task end + +2025-09-24 04:21:41,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:41,706 INFO Connection check task start + +2025-09-24 04:21:41,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:41,707 INFO Out dated connection ,size=0 + +2025-09-24 04:21:41,707 INFO Connection check task end + +2025-09-24 04:21:44,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:44,707 INFO Connection check task start + +2025-09-24 04:21:44,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:44,707 INFO Out dated connection ,size=0 + +2025-09-24 04:21:44,707 INFO Connection check task end + +2025-09-24 04:21:47,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:47,709 INFO Connection check task start + +2025-09-24 04:21:47,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:47,710 INFO Out dated connection ,size=0 + +2025-09-24 04:21:47,710 INFO Connection check task end + +2025-09-24 04:21:50,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:50,710 INFO Connection check task start + +2025-09-24 04:21:50,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:50,711 INFO Out dated connection ,size=0 + +2025-09-24 04:21:50,711 INFO Connection check task end + +2025-09-24 04:21:53,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:53,711 INFO Connection check task start + +2025-09-24 04:21:53,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:53,711 INFO Out dated connection ,size=0 + +2025-09-24 04:21:53,711 INFO Connection check task end + +2025-09-24 04:21:56,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:56,712 INFO Connection check task start + +2025-09-24 04:21:56,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:56,712 INFO Out dated connection ,size=0 + +2025-09-24 04:21:56,712 INFO Connection check task end + +2025-09-24 04:21:59,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:21:59,712 INFO Connection check task start + +2025-09-24 04:21:59,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:21:59,712 INFO Out dated connection ,size=0 + +2025-09-24 04:21:59,712 INFO Connection check task end + +2025-09-24 04:22:02,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:02,713 INFO Connection check task start + +2025-09-24 04:22:02,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:02,714 INFO Out dated connection ,size=0 + +2025-09-24 04:22:02,714 INFO Connection check task end + +2025-09-24 04:22:05,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:05,715 INFO Connection check task start + +2025-09-24 04:22:05,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:05,715 INFO Out dated connection ,size=0 + +2025-09-24 04:22:05,715 INFO Connection check task end + +2025-09-24 04:22:08,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:08,716 INFO Connection check task start + +2025-09-24 04:22:08,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:08,716 INFO Out dated connection ,size=0 + +2025-09-24 04:22:08,716 INFO Connection check task end + +2025-09-24 04:22:11,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:11,717 INFO Connection check task start + +2025-09-24 04:22:11,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:11,717 INFO Out dated connection ,size=0 + +2025-09-24 04:22:11,717 INFO Connection check task end + +2025-09-24 04:22:14,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:14,717 INFO Connection check task start + +2025-09-24 04:22:14,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:14,718 INFO Out dated connection ,size=0 + +2025-09-24 04:22:14,718 INFO Connection check task end + +2025-09-24 04:22:17,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:17,718 INFO Connection check task start + +2025-09-24 04:22:17,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:17,719 INFO Out dated connection ,size=0 + +2025-09-24 04:22:17,719 INFO Connection check task end + +2025-09-24 04:22:20,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:20,720 INFO Connection check task start + +2025-09-24 04:22:20,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:20,720 INFO Out dated connection ,size=0 + +2025-09-24 04:22:20,720 INFO Connection check task end + +2025-09-24 04:22:23,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:23,722 INFO Connection check task start + +2025-09-24 04:22:23,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:23,722 INFO Out dated connection ,size=0 + +2025-09-24 04:22:23,722 INFO Connection check task end + +2025-09-24 04:22:26,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:26,724 INFO Connection check task start + +2025-09-24 04:22:26,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:26,724 INFO Out dated connection ,size=0 + +2025-09-24 04:22:26,724 INFO Connection check task end + +2025-09-24 04:22:29,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:29,725 INFO Connection check task start + +2025-09-24 04:22:29,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:29,725 INFO Out dated connection ,size=0 + +2025-09-24 04:22:29,725 INFO Connection check task end + +2025-09-24 04:22:32,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:32,726 INFO Connection check task start + +2025-09-24 04:22:32,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:32,726 INFO Out dated connection ,size=0 + +2025-09-24 04:22:32,726 INFO Connection check task end + +2025-09-24 04:22:35,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:35,728 INFO Connection check task start + +2025-09-24 04:22:35,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:35,728 INFO Out dated connection ,size=0 + +2025-09-24 04:22:35,728 INFO Connection check task end + +2025-09-24 04:22:38,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:38,729 INFO Connection check task start + +2025-09-24 04:22:38,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:38,729 INFO Out dated connection ,size=0 + +2025-09-24 04:22:38,729 INFO Connection check task end + +2025-09-24 04:22:41,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:41,729 INFO Connection check task start + +2025-09-24 04:22:41,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:41,729 INFO Out dated connection ,size=0 + +2025-09-24 04:22:41,730 INFO Connection check task end + +2025-09-24 04:22:44,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:44,730 INFO Connection check task start + +2025-09-24 04:22:44,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:44,730 INFO Out dated connection ,size=0 + +2025-09-24 04:22:44,730 INFO Connection check task end + +2025-09-24 04:22:47,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:47,731 INFO Connection check task start + +2025-09-24 04:22:47,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:47,731 INFO Out dated connection ,size=0 + +2025-09-24 04:22:47,731 INFO Connection check task end + +2025-09-24 04:22:50,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:50,732 INFO Connection check task start + +2025-09-24 04:22:50,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:50,733 INFO Out dated connection ,size=0 + +2025-09-24 04:22:50,733 INFO Connection check task end + +2025-09-24 04:22:53,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:53,733 INFO Connection check task start + +2025-09-24 04:22:53,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:53,733 INFO Out dated connection ,size=0 + +2025-09-24 04:22:53,733 INFO Connection check task end + +2025-09-24 04:22:56,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:56,734 INFO Connection check task start + +2025-09-24 04:22:56,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:56,734 INFO Out dated connection ,size=0 + +2025-09-24 04:22:56,734 INFO Connection check task end + +2025-09-24 04:22:59,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:22:59,735 INFO Connection check task start + +2025-09-24 04:22:59,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:22:59,735 INFO Out dated connection ,size=0 + +2025-09-24 04:22:59,735 INFO Connection check task end + +2025-09-24 04:23:02,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:02,737 INFO Connection check task start + +2025-09-24 04:23:02,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:02,737 INFO Out dated connection ,size=0 + +2025-09-24 04:23:02,737 INFO Connection check task end + +2025-09-24 04:23:05,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:05,739 INFO Connection check task start + +2025-09-24 04:23:05,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:05,739 INFO Out dated connection ,size=0 + +2025-09-24 04:23:05,739 INFO Connection check task end + +2025-09-24 04:23:08,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:08,739 INFO Connection check task start + +2025-09-24 04:23:08,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:08,739 INFO Out dated connection ,size=0 + +2025-09-24 04:23:08,740 INFO Connection check task end + +2025-09-24 04:23:11,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:11,740 INFO Connection check task start + +2025-09-24 04:23:11,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:11,740 INFO Out dated connection ,size=0 + +2025-09-24 04:23:11,740 INFO Connection check task end + +2025-09-24 04:23:14,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:14,740 INFO Connection check task start + +2025-09-24 04:23:14,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:14,741 INFO Out dated connection ,size=0 + +2025-09-24 04:23:14,741 INFO Connection check task end + +2025-09-24 04:23:17,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:17,743 INFO Connection check task start + +2025-09-24 04:23:17,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:17,743 INFO Out dated connection ,size=0 + +2025-09-24 04:23:17,743 INFO Connection check task end + +2025-09-24 04:23:20,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:20,743 INFO Connection check task start + +2025-09-24 04:23:20,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:20,743 INFO Out dated connection ,size=0 + +2025-09-24 04:23:20,743 INFO Connection check task end + +2025-09-24 04:23:23,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:23,744 INFO Connection check task start + +2025-09-24 04:23:23,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:23,745 INFO Out dated connection ,size=0 + +2025-09-24 04:23:23,745 INFO Connection check task end + +2025-09-24 04:23:26,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:26,747 INFO Connection check task start + +2025-09-24 04:23:26,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:26,747 INFO Out dated connection ,size=0 + +2025-09-24 04:23:26,747 INFO Connection check task end + +2025-09-24 04:23:29,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:29,748 INFO Connection check task start + +2025-09-24 04:23:29,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:29,748 INFO Out dated connection ,size=0 + +2025-09-24 04:23:29,748 INFO Connection check task end + +2025-09-24 04:23:32,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:32,748 INFO Connection check task start + +2025-09-24 04:23:32,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:32,749 INFO Out dated connection ,size=0 + +2025-09-24 04:23:32,749 INFO Connection check task end + +2025-09-24 04:23:35,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:35,750 INFO Connection check task start + +2025-09-24 04:23:35,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:35,750 INFO Out dated connection ,size=0 + +2025-09-24 04:23:35,750 INFO Connection check task end + +2025-09-24 04:23:38,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:38,750 INFO Connection check task start + +2025-09-24 04:23:38,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:38,750 INFO Out dated connection ,size=0 + +2025-09-24 04:23:38,750 INFO Connection check task end + +2025-09-24 04:23:41,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:41,752 INFO Connection check task start + +2025-09-24 04:23:41,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:41,752 INFO Out dated connection ,size=0 + +2025-09-24 04:23:41,752 INFO Connection check task end + +2025-09-24 04:23:44,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:44,752 INFO Connection check task start + +2025-09-24 04:23:44,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:44,752 INFO Out dated connection ,size=0 + +2025-09-24 04:23:44,753 INFO Connection check task end + +2025-09-24 04:23:47,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:47,753 INFO Connection check task start + +2025-09-24 04:23:47,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:47,753 INFO Out dated connection ,size=0 + +2025-09-24 04:23:47,753 INFO Connection check task end + +2025-09-24 04:23:50,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:50,754 INFO Connection check task start + +2025-09-24 04:23:50,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:50,754 INFO Out dated connection ,size=0 + +2025-09-24 04:23:50,754 INFO Connection check task end + +2025-09-24 04:23:53,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:53,754 INFO Connection check task start + +2025-09-24 04:23:53,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:53,755 INFO Out dated connection ,size=0 + +2025-09-24 04:23:53,755 INFO Connection check task end + +2025-09-24 04:23:56,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:56,757 INFO Connection check task start + +2025-09-24 04:23:56,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:56,757 INFO Out dated connection ,size=0 + +2025-09-24 04:23:56,757 INFO Connection check task end + +2025-09-24 04:23:59,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:23:59,759 INFO Connection check task start + +2025-09-24 04:23:59,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:23:59,759 INFO Out dated connection ,size=0 + +2025-09-24 04:23:59,759 INFO Connection check task end + +2025-09-24 04:24:02,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:02,760 INFO Connection check task start + +2025-09-24 04:24:02,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:02,760 INFO Out dated connection ,size=0 + +2025-09-24 04:24:02,760 INFO Connection check task end + +2025-09-24 04:24:05,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:05,762 INFO Connection check task start + +2025-09-24 04:24:05,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:05,763 INFO Out dated connection ,size=0 + +2025-09-24 04:24:05,763 INFO Connection check task end + +2025-09-24 04:24:08,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:08,763 INFO Connection check task start + +2025-09-24 04:24:08,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:08,763 INFO Out dated connection ,size=0 + +2025-09-24 04:24:08,763 INFO Connection check task end + +2025-09-24 04:24:11,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:11,765 INFO Connection check task start + +2025-09-24 04:24:11,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:11,765 INFO Out dated connection ,size=0 + +2025-09-24 04:24:11,765 INFO Connection check task end + +2025-09-24 04:24:14,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:14,766 INFO Connection check task start + +2025-09-24 04:24:14,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:14,766 INFO Out dated connection ,size=0 + +2025-09-24 04:24:14,766 INFO Connection check task end + +2025-09-24 04:24:17,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:17,767 INFO Connection check task start + +2025-09-24 04:24:17,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:17,767 INFO Out dated connection ,size=0 + +2025-09-24 04:24:17,767 INFO Connection check task end + +2025-09-24 04:24:20,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:20,767 INFO Connection check task start + +2025-09-24 04:24:20,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:20,768 INFO Out dated connection ,size=0 + +2025-09-24 04:24:20,768 INFO Connection check task end + +2025-09-24 04:24:23,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:23,768 INFO Connection check task start + +2025-09-24 04:24:23,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:23,768 INFO Out dated connection ,size=0 + +2025-09-24 04:24:23,768 INFO Connection check task end + +2025-09-24 04:24:26,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:26,768 INFO Connection check task start + +2025-09-24 04:24:26,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:26,768 INFO Out dated connection ,size=0 + +2025-09-24 04:24:26,768 INFO Connection check task end + +2025-09-24 04:24:29,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:29,769 INFO Connection check task start + +2025-09-24 04:24:29,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:29,769 INFO Out dated connection ,size=0 + +2025-09-24 04:24:29,769 INFO Connection check task end + +2025-09-24 04:24:32,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:32,770 INFO Connection check task start + +2025-09-24 04:24:32,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:32,770 INFO Out dated connection ,size=0 + +2025-09-24 04:24:32,770 INFO Connection check task end + +2025-09-24 04:24:35,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:35,771 INFO Connection check task start + +2025-09-24 04:24:35,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:35,772 INFO Out dated connection ,size=0 + +2025-09-24 04:24:35,772 INFO Connection check task end + +2025-09-24 04:24:38,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:38,772 INFO Connection check task start + +2025-09-24 04:24:38,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:38,772 INFO Out dated connection ,size=0 + +2025-09-24 04:24:38,772 INFO Connection check task end + +2025-09-24 04:24:41,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:41,773 INFO Connection check task start + +2025-09-24 04:24:41,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:41,773 INFO Out dated connection ,size=0 + +2025-09-24 04:24:41,773 INFO Connection check task end + +2025-09-24 04:24:44,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:44,773 INFO Connection check task start + +2025-09-24 04:24:44,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:44,773 INFO Out dated connection ,size=0 + +2025-09-24 04:24:44,773 INFO Connection check task end + +2025-09-24 04:24:47,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:47,775 INFO Connection check task start + +2025-09-24 04:24:47,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:47,775 INFO Out dated connection ,size=0 + +2025-09-24 04:24:47,776 INFO Connection check task end + +2025-09-24 04:24:50,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:50,777 INFO Connection check task start + +2025-09-24 04:24:50,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:50,777 INFO Out dated connection ,size=0 + +2025-09-24 04:24:50,777 INFO Connection check task end + +2025-09-24 04:24:53,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:53,778 INFO Connection check task start + +2025-09-24 04:24:53,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:53,778 INFO Out dated connection ,size=0 + +2025-09-24 04:24:53,778 INFO Connection check task end + +2025-09-24 04:24:56,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:56,779 INFO Connection check task start + +2025-09-24 04:24:56,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:56,779 INFO Out dated connection ,size=0 + +2025-09-24 04:24:56,779 INFO Connection check task end + +2025-09-24 04:24:59,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:24:59,780 INFO Connection check task start + +2025-09-24 04:24:59,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:24:59,780 INFO Out dated connection ,size=0 + +2025-09-24 04:24:59,780 INFO Connection check task end + +2025-09-24 04:25:02,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:02,783 INFO Connection check task start + +2025-09-24 04:25:02,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:02,783 INFO Out dated connection ,size=0 + +2025-09-24 04:25:02,783 INFO Connection check task end + +2025-09-24 04:25:05,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:05,783 INFO Connection check task start + +2025-09-24 04:25:05,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:05,783 INFO Out dated connection ,size=0 + +2025-09-24 04:25:05,784 INFO Connection check task end + +2025-09-24 04:25:08,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:08,785 INFO Connection check task start + +2025-09-24 04:25:08,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:08,786 INFO Out dated connection ,size=0 + +2025-09-24 04:25:08,786 INFO Connection check task end + +2025-09-24 04:25:11,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:11,786 INFO Connection check task start + +2025-09-24 04:25:11,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:11,786 INFO Out dated connection ,size=0 + +2025-09-24 04:25:11,787 INFO Connection check task end + +2025-09-24 04:25:14,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:14,787 INFO Connection check task start + +2025-09-24 04:25:14,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:14,787 INFO Out dated connection ,size=0 + +2025-09-24 04:25:14,787 INFO Connection check task end + +2025-09-24 04:25:17,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:17,789 INFO Connection check task start + +2025-09-24 04:25:17,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:17,789 INFO Out dated connection ,size=0 + +2025-09-24 04:25:17,789 INFO Connection check task end + +2025-09-24 04:25:20,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:20,790 INFO Connection check task start + +2025-09-24 04:25:20,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:20,790 INFO Out dated connection ,size=0 + +2025-09-24 04:25:20,790 INFO Connection check task end + +2025-09-24 04:25:23,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:23,790 INFO Connection check task start + +2025-09-24 04:25:23,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:23,790 INFO Out dated connection ,size=0 + +2025-09-24 04:25:23,790 INFO Connection check task end + +2025-09-24 04:25:26,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:26,792 INFO Connection check task start + +2025-09-24 04:25:26,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:26,792 INFO Out dated connection ,size=0 + +2025-09-24 04:25:26,792 INFO Connection check task end + +2025-09-24 04:25:29,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:29,792 INFO Connection check task start + +2025-09-24 04:25:29,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:29,793 INFO Out dated connection ,size=0 + +2025-09-24 04:25:29,793 INFO Connection check task end + +2025-09-24 04:25:32,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:32,793 INFO Connection check task start + +2025-09-24 04:25:32,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:32,793 INFO Out dated connection ,size=0 + +2025-09-24 04:25:32,793 INFO Connection check task end + +2025-09-24 04:25:35,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:35,794 INFO Connection check task start + +2025-09-24 04:25:35,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:35,794 INFO Out dated connection ,size=0 + +2025-09-24 04:25:35,794 INFO Connection check task end + +2025-09-24 04:25:38,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:38,795 INFO Connection check task start + +2025-09-24 04:25:38,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:38,795 INFO Out dated connection ,size=0 + +2025-09-24 04:25:38,795 INFO Connection check task end + +2025-09-24 04:25:41,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:41,797 INFO Connection check task start + +2025-09-24 04:25:41,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:41,797 INFO Out dated connection ,size=0 + +2025-09-24 04:25:41,797 INFO Connection check task end + +2025-09-24 04:25:44,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:44,799 INFO Connection check task start + +2025-09-24 04:25:44,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:44,799 INFO Out dated connection ,size=0 + +2025-09-24 04:25:44,799 INFO Connection check task end + +2025-09-24 04:25:47,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:47,800 INFO Connection check task start + +2025-09-24 04:25:47,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:47,800 INFO Out dated connection ,size=0 + +2025-09-24 04:25:47,800 INFO Connection check task end + +2025-09-24 04:25:50,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:50,800 INFO Connection check task start + +2025-09-24 04:25:50,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:50,800 INFO Out dated connection ,size=0 + +2025-09-24 04:25:50,800 INFO Connection check task end + +2025-09-24 04:25:53,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:53,801 INFO Connection check task start + +2025-09-24 04:25:53,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:53,801 INFO Out dated connection ,size=0 + +2025-09-24 04:25:53,801 INFO Connection check task end + +2025-09-24 04:25:56,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:56,801 INFO Connection check task start + +2025-09-24 04:25:56,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:56,801 INFO Out dated connection ,size=0 + +2025-09-24 04:25:56,801 INFO Connection check task end + +2025-09-24 04:25:59,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:25:59,803 INFO Connection check task start + +2025-09-24 04:25:59,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:25:59,803 INFO Out dated connection ,size=0 + +2025-09-24 04:25:59,803 INFO Connection check task end + +2025-09-24 04:26:02,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:02,805 INFO Connection check task start + +2025-09-24 04:26:02,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:02,805 INFO Out dated connection ,size=0 + +2025-09-24 04:26:02,805 INFO Connection check task end + +2025-09-24 04:26:05,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:05,806 INFO Connection check task start + +2025-09-24 04:26:05,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:05,807 INFO Out dated connection ,size=0 + +2025-09-24 04:26:05,807 INFO Connection check task end + +2025-09-24 04:26:08,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:08,809 INFO Connection check task start + +2025-09-24 04:26:08,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:08,809 INFO Out dated connection ,size=0 + +2025-09-24 04:26:08,809 INFO Connection check task end + +2025-09-24 04:26:11,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:11,809 INFO Connection check task start + +2025-09-24 04:26:11,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:11,809 INFO Out dated connection ,size=0 + +2025-09-24 04:26:11,809 INFO Connection check task end + +2025-09-24 04:26:14,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:14,810 INFO Connection check task start + +2025-09-24 04:26:14,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:14,810 INFO Out dated connection ,size=0 + +2025-09-24 04:26:14,810 INFO Connection check task end + +2025-09-24 04:26:17,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:17,812 INFO Connection check task start + +2025-09-24 04:26:17,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:17,812 INFO Out dated connection ,size=0 + +2025-09-24 04:26:17,813 INFO Connection check task end + +2025-09-24 04:26:20,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:20,814 INFO Connection check task start + +2025-09-24 04:26:20,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:20,814 INFO Out dated connection ,size=0 + +2025-09-24 04:26:20,814 INFO Connection check task end + +2025-09-24 04:26:23,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:23,815 INFO Connection check task start + +2025-09-24 04:26:23,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:23,815 INFO Out dated connection ,size=0 + +2025-09-24 04:26:23,815 INFO Connection check task end + +2025-09-24 04:26:26,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:26,815 INFO Connection check task start + +2025-09-24 04:26:26,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:26,815 INFO Out dated connection ,size=0 + +2025-09-24 04:26:26,815 INFO Connection check task end + +2025-09-24 04:26:29,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:29,817 INFO Connection check task start + +2025-09-24 04:26:29,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:29,818 INFO Out dated connection ,size=0 + +2025-09-24 04:26:29,818 INFO Connection check task end + +2025-09-24 04:26:32,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:32,820 INFO Connection check task start + +2025-09-24 04:26:32,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:32,820 INFO Out dated connection ,size=0 + +2025-09-24 04:26:32,820 INFO Connection check task end + +2025-09-24 04:26:35,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:35,822 INFO Connection check task start + +2025-09-24 04:26:35,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:35,822 INFO Out dated connection ,size=0 + +2025-09-24 04:26:35,822 INFO Connection check task end + +2025-09-24 04:26:38,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:38,823 INFO Connection check task start + +2025-09-24 04:26:38,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:38,824 INFO Out dated connection ,size=0 + +2025-09-24 04:26:38,824 INFO Connection check task end + +2025-09-24 04:26:41,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:41,825 INFO Connection check task start + +2025-09-24 04:26:41,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:41,825 INFO Out dated connection ,size=0 + +2025-09-24 04:26:41,825 INFO Connection check task end + +2025-09-24 04:26:44,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:44,825 INFO Connection check task start + +2025-09-24 04:26:44,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:44,825 INFO Out dated connection ,size=0 + +2025-09-24 04:26:44,826 INFO Connection check task end + +2025-09-24 04:26:47,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:47,827 INFO Connection check task start + +2025-09-24 04:26:47,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:47,828 INFO Out dated connection ,size=0 + +2025-09-24 04:26:47,828 INFO Connection check task end + +2025-09-24 04:26:50,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:50,828 INFO Connection check task start + +2025-09-24 04:26:50,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:50,828 INFO Out dated connection ,size=0 + +2025-09-24 04:26:50,828 INFO Connection check task end + +2025-09-24 04:26:53,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:53,829 INFO Connection check task start + +2025-09-24 04:26:53,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:53,829 INFO Out dated connection ,size=0 + +2025-09-24 04:26:53,829 INFO Connection check task end + +2025-09-24 04:26:56,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:56,830 INFO Connection check task start + +2025-09-24 04:26:56,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:56,830 INFO Out dated connection ,size=0 + +2025-09-24 04:26:56,830 INFO Connection check task end + +2025-09-24 04:26:59,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:26:59,831 INFO Connection check task start + +2025-09-24 04:26:59,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:26:59,831 INFO Out dated connection ,size=0 + +2025-09-24 04:26:59,832 INFO Connection check task end + +2025-09-24 04:27:02,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:02,832 INFO Connection check task start + +2025-09-24 04:27:02,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:02,832 INFO Out dated connection ,size=0 + +2025-09-24 04:27:02,833 INFO Connection check task end + +2025-09-24 04:27:05,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:05,833 INFO Connection check task start + +2025-09-24 04:27:05,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:05,834 INFO Out dated connection ,size=0 + +2025-09-24 04:27:05,834 INFO Connection check task end + +2025-09-24 04:27:08,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:08,835 INFO Connection check task start + +2025-09-24 04:27:08,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:08,835 INFO Out dated connection ,size=0 + +2025-09-24 04:27:08,835 INFO Connection check task end + +2025-09-24 04:27:11,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:11,835 INFO Connection check task start + +2025-09-24 04:27:11,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:11,835 INFO Out dated connection ,size=0 + +2025-09-24 04:27:11,836 INFO Connection check task end + +2025-09-24 04:27:14,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:14,836 INFO Connection check task start + +2025-09-24 04:27:14,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:14,836 INFO Out dated connection ,size=0 + +2025-09-24 04:27:14,836 INFO Connection check task end + +2025-09-24 04:27:17,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:17,837 INFO Connection check task start + +2025-09-24 04:27:17,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:17,838 INFO Out dated connection ,size=0 + +2025-09-24 04:27:17,838 INFO Connection check task end + +2025-09-24 04:27:20,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:20,839 INFO Connection check task start + +2025-09-24 04:27:20,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:20,839 INFO Out dated connection ,size=0 + +2025-09-24 04:27:20,839 INFO Connection check task end + +2025-09-24 04:27:23,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:23,840 INFO Connection check task start + +2025-09-24 04:27:23,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:23,840 INFO Out dated connection ,size=0 + +2025-09-24 04:27:23,840 INFO Connection check task end + +2025-09-24 04:27:26,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:26,842 INFO Connection check task start + +2025-09-24 04:27:26,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:26,843 INFO Out dated connection ,size=0 + +2025-09-24 04:27:26,843 INFO Connection check task end + +2025-09-24 04:27:29,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:29,845 INFO Connection check task start + +2025-09-24 04:27:29,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:29,845 INFO Out dated connection ,size=0 + +2025-09-24 04:27:29,845 INFO Connection check task end + +2025-09-24 04:27:32,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:32,845 INFO Connection check task start + +2025-09-24 04:27:32,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:32,846 INFO Out dated connection ,size=0 + +2025-09-24 04:27:32,846 INFO Connection check task end + +2025-09-24 04:27:35,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:35,848 INFO Connection check task start + +2025-09-24 04:27:35,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:35,848 INFO Out dated connection ,size=0 + +2025-09-24 04:27:35,848 INFO Connection check task end + +2025-09-24 04:27:38,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:38,848 INFO Connection check task start + +2025-09-24 04:27:38,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:38,848 INFO Out dated connection ,size=0 + +2025-09-24 04:27:38,848 INFO Connection check task end + +2025-09-24 04:27:41,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:41,849 INFO Connection check task start + +2025-09-24 04:27:41,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:41,849 INFO Out dated connection ,size=0 + +2025-09-24 04:27:41,849 INFO Connection check task end + +2025-09-24 04:27:44,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:44,850 INFO Connection check task start + +2025-09-24 04:27:44,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:44,850 INFO Out dated connection ,size=0 + +2025-09-24 04:27:44,850 INFO Connection check task end + +2025-09-24 04:27:47,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:47,851 INFO Connection check task start + +2025-09-24 04:27:47,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:47,852 INFO Out dated connection ,size=0 + +2025-09-24 04:27:47,852 INFO Connection check task end + +2025-09-24 04:27:50,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:50,853 INFO Connection check task start + +2025-09-24 04:27:50,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:50,858 INFO Out dated connection ,size=0 + +2025-09-24 04:27:50,859 INFO Connection check task end + +2025-09-24 04:27:53,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:53,860 INFO Connection check task start + +2025-09-24 04:27:53,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:53,860 INFO Out dated connection ,size=0 + +2025-09-24 04:27:53,860 INFO Connection check task end + +2025-09-24 04:27:56,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:56,862 INFO Connection check task start + +2025-09-24 04:27:56,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:56,862 INFO Out dated connection ,size=0 + +2025-09-24 04:27:56,862 INFO Connection check task end + +2025-09-24 04:27:59,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:27:59,864 INFO Connection check task start + +2025-09-24 04:27:59,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:27:59,864 INFO Out dated connection ,size=0 + +2025-09-24 04:27:59,864 INFO Connection check task end + +2025-09-24 04:28:02,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:02,864 INFO Connection check task start + +2025-09-24 04:28:02,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:02,864 INFO Out dated connection ,size=0 + +2025-09-24 04:28:02,864 INFO Connection check task end + +2025-09-24 04:28:05,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:05,865 INFO Connection check task start + +2025-09-24 04:28:05,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:05,866 INFO Out dated connection ,size=0 + +2025-09-24 04:28:05,866 INFO Connection check task end + +2025-09-24 04:28:08,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:08,866 INFO Connection check task start + +2025-09-24 04:28:08,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:08,867 INFO Out dated connection ,size=0 + +2025-09-24 04:28:08,867 INFO Connection check task end + +2025-09-24 04:28:11,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:11,868 INFO Connection check task start + +2025-09-24 04:28:11,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:11,869 INFO Out dated connection ,size=0 + +2025-09-24 04:28:11,869 INFO Connection check task end + +2025-09-24 04:28:14,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:14,869 INFO Connection check task start + +2025-09-24 04:28:14,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:14,869 INFO Out dated connection ,size=0 + +2025-09-24 04:28:14,869 INFO Connection check task end + +2025-09-24 04:28:17,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:17,871 INFO Connection check task start + +2025-09-24 04:28:17,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:17,872 INFO Out dated connection ,size=0 + +2025-09-24 04:28:17,872 INFO Connection check task end + +2025-09-24 04:28:20,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:20,872 INFO Connection check task start + +2025-09-24 04:28:20,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:20,872 INFO Out dated connection ,size=0 + +2025-09-24 04:28:20,872 INFO Connection check task end + +2025-09-24 04:28:23,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:23,873 INFO Connection check task start + +2025-09-24 04:28:23,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:23,873 INFO Out dated connection ,size=0 + +2025-09-24 04:28:23,873 INFO Connection check task end + +2025-09-24 04:28:26,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:26,874 INFO Connection check task start + +2025-09-24 04:28:26,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:26,875 INFO Out dated connection ,size=0 + +2025-09-24 04:28:26,875 INFO Connection check task end + +2025-09-24 04:28:29,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:29,875 INFO Connection check task start + +2025-09-24 04:28:29,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:29,875 INFO Out dated connection ,size=0 + +2025-09-24 04:28:29,875 INFO Connection check task end + +2025-09-24 04:28:32,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:32,877 INFO Connection check task start + +2025-09-24 04:28:32,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:32,877 INFO Out dated connection ,size=0 + +2025-09-24 04:28:32,878 INFO Connection check task end + +2025-09-24 04:28:35,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:35,880 INFO Connection check task start + +2025-09-24 04:28:35,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:35,880 INFO Out dated connection ,size=0 + +2025-09-24 04:28:35,880 INFO Connection check task end + +2025-09-24 04:28:38,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:38,881 INFO Connection check task start + +2025-09-24 04:28:38,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:38,882 INFO Out dated connection ,size=0 + +2025-09-24 04:28:38,882 INFO Connection check task end + +2025-09-24 04:28:41,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:41,882 INFO Connection check task start + +2025-09-24 04:28:41,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:41,882 INFO Out dated connection ,size=0 + +2025-09-24 04:28:41,882 INFO Connection check task end + +2025-09-24 04:28:44,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:44,883 INFO Connection check task start + +2025-09-24 04:28:44,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:44,884 INFO Out dated connection ,size=0 + +2025-09-24 04:28:44,884 INFO Connection check task end + +2025-09-24 04:28:47,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:47,886 INFO Connection check task start + +2025-09-24 04:28:47,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:47,886 INFO Out dated connection ,size=0 + +2025-09-24 04:28:47,886 INFO Connection check task end + +2025-09-24 04:28:50,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:50,887 INFO Connection check task start + +2025-09-24 04:28:50,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:50,888 INFO Out dated connection ,size=0 + +2025-09-24 04:28:50,888 INFO Connection check task end + +2025-09-24 04:28:53,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:53,890 INFO Connection check task start + +2025-09-24 04:28:53,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:53,890 INFO Out dated connection ,size=0 + +2025-09-24 04:28:53,890 INFO Connection check task end + +2025-09-24 04:28:56,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:56,892 INFO Connection check task start + +2025-09-24 04:28:56,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:56,893 INFO Out dated connection ,size=0 + +2025-09-24 04:28:56,893 INFO Connection check task end + +2025-09-24 04:28:59,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:28:59,894 INFO Connection check task start + +2025-09-24 04:28:59,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:28:59,894 INFO Out dated connection ,size=0 + +2025-09-24 04:28:59,894 INFO Connection check task end + +2025-09-24 04:29:02,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:02,896 INFO Connection check task start + +2025-09-24 04:29:02,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:02,896 INFO Out dated connection ,size=0 + +2025-09-24 04:29:02,896 INFO Connection check task end + +2025-09-24 04:29:05,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:05,898 INFO Connection check task start + +2025-09-24 04:29:05,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:05,899 INFO Out dated connection ,size=0 + +2025-09-24 04:29:05,899 INFO Connection check task end + +2025-09-24 04:29:08,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:08,900 INFO Connection check task start + +2025-09-24 04:29:08,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:08,901 INFO Out dated connection ,size=0 + +2025-09-24 04:29:08,901 INFO Connection check task end + +2025-09-24 04:29:11,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:11,901 INFO Connection check task start + +2025-09-24 04:29:11,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:11,901 INFO Out dated connection ,size=0 + +2025-09-24 04:29:11,901 INFO Connection check task end + +2025-09-24 04:29:14,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:14,903 INFO Connection check task start + +2025-09-24 04:29:14,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:14,904 INFO Out dated connection ,size=0 + +2025-09-24 04:29:14,904 INFO Connection check task end + +2025-09-24 04:29:17,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:17,904 INFO Connection check task start + +2025-09-24 04:29:17,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:17,904 INFO Out dated connection ,size=0 + +2025-09-24 04:29:17,904 INFO Connection check task end + +2025-09-24 04:29:20,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:20,905 INFO Connection check task start + +2025-09-24 04:29:20,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:20,906 INFO Out dated connection ,size=0 + +2025-09-24 04:29:20,906 INFO Connection check task end + +2025-09-24 04:29:23,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:23,906 INFO Connection check task start + +2025-09-24 04:29:23,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:23,907 INFO Out dated connection ,size=0 + +2025-09-24 04:29:23,907 INFO Connection check task end + +2025-09-24 04:29:26,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:26,909 INFO Connection check task start + +2025-09-24 04:29:26,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:26,909 INFO Out dated connection ,size=0 + +2025-09-24 04:29:26,909 INFO Connection check task end + +2025-09-24 04:29:29,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:29,909 INFO Connection check task start + +2025-09-24 04:29:29,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:29,910 INFO Out dated connection ,size=0 + +2025-09-24 04:29:29,910 INFO Connection check task end + +2025-09-24 04:29:32,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:32,911 INFO Connection check task start + +2025-09-24 04:29:32,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:32,912 INFO Out dated connection ,size=0 + +2025-09-24 04:29:32,912 INFO Connection check task end + +2025-09-24 04:29:35,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:35,913 INFO Connection check task start + +2025-09-24 04:29:35,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:35,913 INFO Out dated connection ,size=0 + +2025-09-24 04:29:35,913 INFO Connection check task end + +2025-09-24 04:29:38,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:38,915 INFO Connection check task start + +2025-09-24 04:29:38,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:38,915 INFO Out dated connection ,size=0 + +2025-09-24 04:29:38,915 INFO Connection check task end + +2025-09-24 04:29:41,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:41,916 INFO Connection check task start + +2025-09-24 04:29:41,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:41,916 INFO Out dated connection ,size=0 + +2025-09-24 04:29:41,916 INFO Connection check task end + +2025-09-24 04:29:44,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:44,919 INFO Connection check task start + +2025-09-24 04:29:44,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:44,919 INFO Out dated connection ,size=0 + +2025-09-24 04:29:44,919 INFO Connection check task end + +2025-09-24 04:29:47,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:47,921 INFO Connection check task start + +2025-09-24 04:29:47,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:47,921 INFO Out dated connection ,size=0 + +2025-09-24 04:29:47,921 INFO Connection check task end + +2025-09-24 04:29:50,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:50,923 INFO Connection check task start + +2025-09-24 04:29:50,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:50,923 INFO Out dated connection ,size=0 + +2025-09-24 04:29:50,923 INFO Connection check task end + +2025-09-24 04:29:53,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:53,925 INFO Connection check task start + +2025-09-24 04:29:53,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:53,926 INFO Out dated connection ,size=0 + +2025-09-24 04:29:53,926 INFO Connection check task end + +2025-09-24 04:29:56,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:56,926 INFO Connection check task start + +2025-09-24 04:29:56,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:56,926 INFO Out dated connection ,size=0 + +2025-09-24 04:29:56,926 INFO Connection check task end + +2025-09-24 04:29:59,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:29:59,927 INFO Connection check task start + +2025-09-24 04:29:59,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:29:59,927 INFO Out dated connection ,size=0 + +2025-09-24 04:29:59,927 INFO Connection check task end + +2025-09-24 04:30:02,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:02,929 INFO Connection check task start + +2025-09-24 04:30:02,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:02,929 INFO Out dated connection ,size=0 + +2025-09-24 04:30:02,929 INFO Connection check task end + +2025-09-24 04:30:05,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:05,929 INFO Connection check task start + +2025-09-24 04:30:05,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:05,929 INFO Out dated connection ,size=0 + +2025-09-24 04:30:05,929 INFO Connection check task end + +2025-09-24 04:30:08,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:08,930 INFO Connection check task start + +2025-09-24 04:30:08,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:08,930 INFO Out dated connection ,size=0 + +2025-09-24 04:30:08,930 INFO Connection check task end + +2025-09-24 04:30:11,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:11,930 INFO Connection check task start + +2025-09-24 04:30:11,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:11,930 INFO Out dated connection ,size=0 + +2025-09-24 04:30:11,930 INFO Connection check task end + +2025-09-24 04:30:14,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:14,930 INFO Connection check task start + +2025-09-24 04:30:14,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:14,931 INFO Out dated connection ,size=0 + +2025-09-24 04:30:14,931 INFO Connection check task end + +2025-09-24 04:30:17,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:17,933 INFO Connection check task start + +2025-09-24 04:30:17,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:17,933 INFO Out dated connection ,size=0 + +2025-09-24 04:30:17,933 INFO Connection check task end + +2025-09-24 04:30:20,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:20,933 INFO Connection check task start + +2025-09-24 04:30:20,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:20,934 INFO Out dated connection ,size=0 + +2025-09-24 04:30:20,934 INFO Connection check task end + +2025-09-24 04:30:23,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:23,935 INFO Connection check task start + +2025-09-24 04:30:23,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:23,935 INFO Out dated connection ,size=0 + +2025-09-24 04:30:23,935 INFO Connection check task end + +2025-09-24 04:30:26,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:26,935 INFO Connection check task start + +2025-09-24 04:30:26,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:26,935 INFO Out dated connection ,size=0 + +2025-09-24 04:30:26,935 INFO Connection check task end + +2025-09-24 04:30:29,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:29,937 INFO Connection check task start + +2025-09-24 04:30:29,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:29,937 INFO Out dated connection ,size=0 + +2025-09-24 04:30:29,937 INFO Connection check task end + +2025-09-24 04:30:32,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:32,937 INFO Connection check task start + +2025-09-24 04:30:32,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:32,938 INFO Out dated connection ,size=0 + +2025-09-24 04:30:32,938 INFO Connection check task end + +2025-09-24 04:30:35,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:35,940 INFO Connection check task start + +2025-09-24 04:30:35,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:35,940 INFO Out dated connection ,size=0 + +2025-09-24 04:30:35,940 INFO Connection check task end + +2025-09-24 04:30:38,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:38,940 INFO Connection check task start + +2025-09-24 04:30:38,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:38,940 INFO Out dated connection ,size=0 + +2025-09-24 04:30:38,940 INFO Connection check task end + +2025-09-24 04:30:41,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:41,942 INFO Connection check task start + +2025-09-24 04:30:41,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:41,942 INFO Out dated connection ,size=0 + +2025-09-24 04:30:41,943 INFO Connection check task end + +2025-09-24 04:30:44,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:44,944 INFO Connection check task start + +2025-09-24 04:30:44,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:44,944 INFO Out dated connection ,size=0 + +2025-09-24 04:30:44,944 INFO Connection check task end + +2025-09-24 04:30:47,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:47,945 INFO Connection check task start + +2025-09-24 04:30:47,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:47,945 INFO Out dated connection ,size=0 + +2025-09-24 04:30:47,945 INFO Connection check task end + +2025-09-24 04:30:50,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:50,947 INFO Connection check task start + +2025-09-24 04:30:50,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:50,947 INFO Out dated connection ,size=0 + +2025-09-24 04:30:50,947 INFO Connection check task end + +2025-09-24 04:30:53,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:53,949 INFO Connection check task start + +2025-09-24 04:30:53,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:53,949 INFO Out dated connection ,size=0 + +2025-09-24 04:30:53,949 INFO Connection check task end + +2025-09-24 04:30:56,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:56,951 INFO Connection check task start + +2025-09-24 04:30:56,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:56,951 INFO Out dated connection ,size=0 + +2025-09-24 04:30:56,951 INFO Connection check task end + +2025-09-24 04:30:59,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:30:59,951 INFO Connection check task start + +2025-09-24 04:30:59,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:30:59,952 INFO Out dated connection ,size=0 + +2025-09-24 04:30:59,952 INFO Connection check task end + +2025-09-24 04:31:02,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:02,952 INFO Connection check task start + +2025-09-24 04:31:02,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:02,952 INFO Out dated connection ,size=0 + +2025-09-24 04:31:02,952 INFO Connection check task end + +2025-09-24 04:31:05,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:05,952 INFO Connection check task start + +2025-09-24 04:31:05,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:05,952 INFO Out dated connection ,size=0 + +2025-09-24 04:31:05,952 INFO Connection check task end + +2025-09-24 04:31:08,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:08,953 INFO Connection check task start + +2025-09-24 04:31:08,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:08,953 INFO Out dated connection ,size=0 + +2025-09-24 04:31:08,953 INFO Connection check task end + +2025-09-24 04:31:11,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:11,953 INFO Connection check task start + +2025-09-24 04:31:11,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:11,953 INFO Out dated connection ,size=0 + +2025-09-24 04:31:11,953 INFO Connection check task end + +2025-09-24 04:31:14,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:14,953 INFO Connection check task start + +2025-09-24 04:31:14,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:14,954 INFO Out dated connection ,size=0 + +2025-09-24 04:31:14,954 INFO Connection check task end + +2025-09-24 04:31:17,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:17,954 INFO Connection check task start + +2025-09-24 04:31:17,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:17,954 INFO Out dated connection ,size=0 + +2025-09-24 04:31:17,954 INFO Connection check task end + +2025-09-24 04:31:20,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:20,955 INFO Connection check task start + +2025-09-24 04:31:20,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:20,955 INFO Out dated connection ,size=0 + +2025-09-24 04:31:20,955 INFO Connection check task end + +2025-09-24 04:31:23,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:23,957 INFO Connection check task start + +2025-09-24 04:31:23,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:23,958 INFO Out dated connection ,size=0 + +2025-09-24 04:31:23,958 INFO Connection check task end + +2025-09-24 04:31:26,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:26,960 INFO Connection check task start + +2025-09-24 04:31:26,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:26,960 INFO Out dated connection ,size=0 + +2025-09-24 04:31:26,960 INFO Connection check task end + +2025-09-24 04:31:29,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:29,962 INFO Connection check task start + +2025-09-24 04:31:29,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:29,962 INFO Out dated connection ,size=0 + +2025-09-24 04:31:29,962 INFO Connection check task end + +2025-09-24 04:31:32,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:32,964 INFO Connection check task start + +2025-09-24 04:31:32,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:32,964 INFO Out dated connection ,size=0 + +2025-09-24 04:31:32,964 INFO Connection check task end + +2025-09-24 04:31:35,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:35,964 INFO Connection check task start + +2025-09-24 04:31:35,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:35,965 INFO Out dated connection ,size=0 + +2025-09-24 04:31:35,965 INFO Connection check task end + +2025-09-24 04:31:38,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:38,967 INFO Connection check task start + +2025-09-24 04:31:38,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:38,967 INFO Out dated connection ,size=0 + +2025-09-24 04:31:38,967 INFO Connection check task end + +2025-09-24 04:31:41,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:41,967 INFO Connection check task start + +2025-09-24 04:31:41,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:41,968 INFO Out dated connection ,size=0 + +2025-09-24 04:31:41,969 INFO Connection check task end + +2025-09-24 04:31:44,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:44,970 INFO Connection check task start + +2025-09-24 04:31:44,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:44,970 INFO Out dated connection ,size=0 + +2025-09-24 04:31:44,970 INFO Connection check task end + +2025-09-24 04:31:47,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:47,970 INFO Connection check task start + +2025-09-24 04:31:47,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:47,971 INFO Out dated connection ,size=0 + +2025-09-24 04:31:47,971 INFO Connection check task end + +2025-09-24 04:31:50,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:50,973 INFO Connection check task start + +2025-09-24 04:31:50,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:50,973 INFO Out dated connection ,size=0 + +2025-09-24 04:31:50,973 INFO Connection check task end + +2025-09-24 04:31:53,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:53,973 INFO Connection check task start + +2025-09-24 04:31:53,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:53,974 INFO Out dated connection ,size=0 + +2025-09-24 04:31:53,974 INFO Connection check task end + +2025-09-24 04:31:56,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:56,975 INFO Connection check task start + +2025-09-24 04:31:56,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:56,975 INFO Out dated connection ,size=0 + +2025-09-24 04:31:56,975 INFO Connection check task end + +2025-09-24 04:31:59,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:31:59,977 INFO Connection check task start + +2025-09-24 04:31:59,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:31:59,978 INFO Out dated connection ,size=0 + +2025-09-24 04:31:59,978 INFO Connection check task end + +2025-09-24 04:32:02,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:02,978 INFO Connection check task start + +2025-09-24 04:32:02,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:02,978 INFO Out dated connection ,size=0 + +2025-09-24 04:32:02,978 INFO Connection check task end + +2025-09-24 04:32:05,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:05,980 INFO Connection check task start + +2025-09-24 04:32:05,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:05,980 INFO Out dated connection ,size=0 + +2025-09-24 04:32:05,980 INFO Connection check task end + +2025-09-24 04:32:08,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:08,982 INFO Connection check task start + +2025-09-24 04:32:08,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:08,982 INFO Out dated connection ,size=0 + +2025-09-24 04:32:08,982 INFO Connection check task end + +2025-09-24 04:32:11,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:11,983 INFO Connection check task start + +2025-09-24 04:32:11,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:11,983 INFO Out dated connection ,size=0 + +2025-09-24 04:32:11,983 INFO Connection check task end + +2025-09-24 04:32:14,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:14,983 INFO Connection check task start + +2025-09-24 04:32:14,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:14,983 INFO Out dated connection ,size=0 + +2025-09-24 04:32:14,983 INFO Connection check task end + +2025-09-24 04:32:17,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:17,984 INFO Connection check task start + +2025-09-24 04:32:17,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:17,984 INFO Out dated connection ,size=0 + +2025-09-24 04:32:17,984 INFO Connection check task end + +2025-09-24 04:32:20,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:20,986 INFO Connection check task start + +2025-09-24 04:32:20,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:20,986 INFO Out dated connection ,size=0 + +2025-09-24 04:32:20,986 INFO Connection check task end + +2025-09-24 04:32:23,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:23,988 INFO Connection check task start + +2025-09-24 04:32:23,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:23,988 INFO Out dated connection ,size=0 + +2025-09-24 04:32:23,988 INFO Connection check task end + +2025-09-24 04:32:26,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:26,988 INFO Connection check task start + +2025-09-24 04:32:26,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:26,989 INFO Out dated connection ,size=0 + +2025-09-24 04:32:26,989 INFO Connection check task end + +2025-09-24 04:32:29,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:29,989 INFO Connection check task start + +2025-09-24 04:32:29,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:29,990 INFO Out dated connection ,size=0 + +2025-09-24 04:32:29,990 INFO Connection check task end + +2025-09-24 04:32:32,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:32,991 INFO Connection check task start + +2025-09-24 04:32:32,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:32,991 INFO Out dated connection ,size=0 + +2025-09-24 04:32:32,991 INFO Connection check task end + +2025-09-24 04:32:35,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:35,993 INFO Connection check task start + +2025-09-24 04:32:35,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:35,993 INFO Out dated connection ,size=0 + +2025-09-24 04:32:35,993 INFO Connection check task end + +2025-09-24 04:32:38,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:38,993 INFO Connection check task start + +2025-09-24 04:32:38,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:38,993 INFO Out dated connection ,size=0 + +2025-09-24 04:32:38,994 INFO Connection check task end + +2025-09-24 04:32:41,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:41,995 INFO Connection check task start + +2025-09-24 04:32:41,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:41,996 INFO Out dated connection ,size=0 + +2025-09-24 04:32:41,996 INFO Connection check task end + +2025-09-24 04:32:44,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:44,996 INFO Connection check task start + +2025-09-24 04:32:44,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:44,997 INFO Out dated connection ,size=0 + +2025-09-24 04:32:44,997 INFO Connection check task end + +2025-09-24 04:32:47,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:47,997 INFO Connection check task start + +2025-09-24 04:32:47,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:47,997 INFO Out dated connection ,size=0 + +2025-09-24 04:32:47,997 INFO Connection check task end + +2025-09-24 04:32:50,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:50,999 INFO Connection check task start + +2025-09-24 04:32:50,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:50,999 INFO Out dated connection ,size=0 + +2025-09-24 04:32:50,999 INFO Connection check task end + +2025-09-24 04:32:53,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:54,000 INFO Connection check task start + +2025-09-24 04:32:54,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:54,000 INFO Out dated connection ,size=0 + +2025-09-24 04:32:54,000 INFO Connection check task end + +2025-09-24 04:32:56,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:32:57,002 INFO Connection check task start + +2025-09-24 04:32:57,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:32:57,002 INFO Out dated connection ,size=0 + +2025-09-24 04:32:57,002 INFO Connection check task end + +2025-09-24 04:32:59,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:00,004 INFO Connection check task start + +2025-09-24 04:33:00,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:00,005 INFO Out dated connection ,size=0 + +2025-09-24 04:33:00,005 INFO Connection check task end + +2025-09-24 04:33:02,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:03,005 INFO Connection check task start + +2025-09-24 04:33:03,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:03,005 INFO Out dated connection ,size=0 + +2025-09-24 04:33:03,005 INFO Connection check task end + +2025-09-24 04:33:05,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:06,006 INFO Connection check task start + +2025-09-24 04:33:06,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:06,006 INFO Out dated connection ,size=0 + +2025-09-24 04:33:06,006 INFO Connection check task end + +2025-09-24 04:33:08,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:09,007 INFO Connection check task start + +2025-09-24 04:33:09,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:09,007 INFO Out dated connection ,size=0 + +2025-09-24 04:33:09,008 INFO Connection check task end + +2025-09-24 04:33:11,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:12,010 INFO Connection check task start + +2025-09-24 04:33:12,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:12,010 INFO Out dated connection ,size=0 + +2025-09-24 04:33:12,010 INFO Connection check task end + +2025-09-24 04:33:14,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:15,010 INFO Connection check task start + +2025-09-24 04:33:15,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:15,010 INFO Out dated connection ,size=0 + +2025-09-24 04:33:15,010 INFO Connection check task end + +2025-09-24 04:33:17,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:18,011 INFO Connection check task start + +2025-09-24 04:33:18,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:18,011 INFO Out dated connection ,size=0 + +2025-09-24 04:33:18,011 INFO Connection check task end + +2025-09-24 04:33:20,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:21,011 INFO Connection check task start + +2025-09-24 04:33:21,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:21,012 INFO Out dated connection ,size=0 + +2025-09-24 04:33:21,012 INFO Connection check task end + +2025-09-24 04:33:23,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:24,013 INFO Connection check task start + +2025-09-24 04:33:24,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:24,013 INFO Out dated connection ,size=0 + +2025-09-24 04:33:24,014 INFO Connection check task end + +2025-09-24 04:33:26,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:27,014 INFO Connection check task start + +2025-09-24 04:33:27,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:27,014 INFO Out dated connection ,size=0 + +2025-09-24 04:33:27,014 INFO Connection check task end + +2025-09-24 04:33:29,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:30,016 INFO Connection check task start + +2025-09-24 04:33:30,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:30,016 INFO Out dated connection ,size=0 + +2025-09-24 04:33:30,016 INFO Connection check task end + +2025-09-24 04:33:32,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:33,017 INFO Connection check task start + +2025-09-24 04:33:33,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:33,017 INFO Out dated connection ,size=0 + +2025-09-24 04:33:33,017 INFO Connection check task end + +2025-09-24 04:33:35,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:36,017 INFO Connection check task start + +2025-09-24 04:33:36,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:36,018 INFO Out dated connection ,size=0 + +2025-09-24 04:33:36,018 INFO Connection check task end + +2025-09-24 04:33:38,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:39,020 INFO Connection check task start + +2025-09-24 04:33:39,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:39,020 INFO Out dated connection ,size=0 + +2025-09-24 04:33:39,020 INFO Connection check task end + +2025-09-24 04:33:41,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:42,021 INFO Connection check task start + +2025-09-24 04:33:42,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:42,021 INFO Out dated connection ,size=0 + +2025-09-24 04:33:42,021 INFO Connection check task end + +2025-09-24 04:33:44,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:45,023 INFO Connection check task start + +2025-09-24 04:33:45,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:45,023 INFO Out dated connection ,size=0 + +2025-09-24 04:33:45,023 INFO Connection check task end + +2025-09-24 04:33:47,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:48,025 INFO Connection check task start + +2025-09-24 04:33:48,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:48,026 INFO Out dated connection ,size=0 + +2025-09-24 04:33:48,026 INFO Connection check task end + +2025-09-24 04:33:50,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:51,028 INFO Connection check task start + +2025-09-24 04:33:51,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:51,028 INFO Out dated connection ,size=0 + +2025-09-24 04:33:51,028 INFO Connection check task end + +2025-09-24 04:33:53,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:54,028 INFO Connection check task start + +2025-09-24 04:33:54,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:54,028 INFO Out dated connection ,size=0 + +2025-09-24 04:33:54,028 INFO Connection check task end + +2025-09-24 04:33:56,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:33:57,030 INFO Connection check task start + +2025-09-24 04:33:57,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:33:57,030 INFO Out dated connection ,size=0 + +2025-09-24 04:33:57,030 INFO Connection check task end + +2025-09-24 04:33:59,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:00,031 INFO Connection check task start + +2025-09-24 04:34:00,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:00,031 INFO Out dated connection ,size=0 + +2025-09-24 04:34:00,031 INFO Connection check task end + +2025-09-24 04:34:02,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:03,032 INFO Connection check task start + +2025-09-24 04:34:03,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:03,032 INFO Out dated connection ,size=0 + +2025-09-24 04:34:03,032 INFO Connection check task end + +2025-09-24 04:34:05,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:06,034 INFO Connection check task start + +2025-09-24 04:34:06,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:06,034 INFO Out dated connection ,size=0 + +2025-09-24 04:34:06,034 INFO Connection check task end + +2025-09-24 04:34:08,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:09,034 INFO Connection check task start + +2025-09-24 04:34:09,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:09,034 INFO Out dated connection ,size=0 + +2025-09-24 04:34:09,034 INFO Connection check task end + +2025-09-24 04:34:11,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:12,035 INFO Connection check task start + +2025-09-24 04:34:12,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:12,035 INFO Out dated connection ,size=0 + +2025-09-24 04:34:12,035 INFO Connection check task end + +2025-09-24 04:34:14,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:15,035 INFO Connection check task start + +2025-09-24 04:34:15,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:15,036 INFO Out dated connection ,size=0 + +2025-09-24 04:34:15,036 INFO Connection check task end + +2025-09-24 04:34:17,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:18,037 INFO Connection check task start + +2025-09-24 04:34:18,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:18,037 INFO Out dated connection ,size=0 + +2025-09-24 04:34:18,037 INFO Connection check task end + +2025-09-24 04:34:20,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:21,038 INFO Connection check task start + +2025-09-24 04:34:21,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:21,038 INFO Out dated connection ,size=0 + +2025-09-24 04:34:21,038 INFO Connection check task end + +2025-09-24 04:34:23,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:24,040 INFO Connection check task start + +2025-09-24 04:34:24,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:24,040 INFO Out dated connection ,size=0 + +2025-09-24 04:34:24,041 INFO Connection check task end + +2025-09-24 04:34:26,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:27,041 INFO Connection check task start + +2025-09-24 04:34:27,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:27,041 INFO Out dated connection ,size=0 + +2025-09-24 04:34:27,041 INFO Connection check task end + +2025-09-24 04:34:29,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:30,043 INFO Connection check task start + +2025-09-24 04:34:30,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:30,044 INFO Out dated connection ,size=0 + +2025-09-24 04:34:30,044 INFO Connection check task end + +2025-09-24 04:34:32,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:33,045 INFO Connection check task start + +2025-09-24 04:34:33,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:33,045 INFO Out dated connection ,size=0 + +2025-09-24 04:34:33,045 INFO Connection check task end + +2025-09-24 04:34:35,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:36,045 INFO Connection check task start + +2025-09-24 04:34:36,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:36,046 INFO Out dated connection ,size=0 + +2025-09-24 04:34:36,046 INFO Connection check task end + +2025-09-24 04:34:38,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:39,046 INFO Connection check task start + +2025-09-24 04:34:39,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:39,046 INFO Out dated connection ,size=0 + +2025-09-24 04:34:39,047 INFO Connection check task end + +2025-09-24 04:34:41,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:42,047 INFO Connection check task start + +2025-09-24 04:34:42,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:42,047 INFO Out dated connection ,size=0 + +2025-09-24 04:34:42,047 INFO Connection check task end + +2025-09-24 04:34:44,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:45,047 INFO Connection check task start + +2025-09-24 04:34:45,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:45,047 INFO Out dated connection ,size=0 + +2025-09-24 04:34:45,048 INFO Connection check task end + +2025-09-24 04:34:47,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:48,048 INFO Connection check task start + +2025-09-24 04:34:48,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:48,048 INFO Out dated connection ,size=0 + +2025-09-24 04:34:48,048 INFO Connection check task end + +2025-09-24 04:34:50,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:51,049 INFO Connection check task start + +2025-09-24 04:34:51,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:51,049 INFO Out dated connection ,size=0 + +2025-09-24 04:34:51,049 INFO Connection check task end + +2025-09-24 04:34:53,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:54,049 INFO Connection check task start + +2025-09-24 04:34:54,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:54,049 INFO Out dated connection ,size=0 + +2025-09-24 04:34:54,049 INFO Connection check task end + +2025-09-24 04:34:56,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:34:57,050 INFO Connection check task start + +2025-09-24 04:34:57,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:34:57,050 INFO Out dated connection ,size=0 + +2025-09-24 04:34:57,050 INFO Connection check task end + +2025-09-24 04:34:59,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:00,051 INFO Connection check task start + +2025-09-24 04:35:00,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:00,051 INFO Out dated connection ,size=0 + +2025-09-24 04:35:00,051 INFO Connection check task end + +2025-09-24 04:35:02,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:03,053 INFO Connection check task start + +2025-09-24 04:35:03,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:03,053 INFO Out dated connection ,size=0 + +2025-09-24 04:35:03,053 INFO Connection check task end + +2025-09-24 04:35:05,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:06,053 INFO Connection check task start + +2025-09-24 04:35:06,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:06,054 INFO Out dated connection ,size=0 + +2025-09-24 04:35:06,054 INFO Connection check task end + +2025-09-24 04:35:08,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:09,055 INFO Connection check task start + +2025-09-24 04:35:09,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:09,056 INFO Out dated connection ,size=0 + +2025-09-24 04:35:09,056 INFO Connection check task end + +2025-09-24 04:35:11,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:12,056 INFO Connection check task start + +2025-09-24 04:35:12,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:12,056 INFO Out dated connection ,size=0 + +2025-09-24 04:35:12,056 INFO Connection check task end + +2025-09-24 04:35:14,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:15,057 INFO Connection check task start + +2025-09-24 04:35:15,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:15,057 INFO Out dated connection ,size=0 + +2025-09-24 04:35:15,057 INFO Connection check task end + +2025-09-24 04:35:17,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:18,057 INFO Connection check task start + +2025-09-24 04:35:18,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:18,058 INFO Out dated connection ,size=0 + +2025-09-24 04:35:18,058 INFO Connection check task end + +2025-09-24 04:35:20,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:21,059 INFO Connection check task start + +2025-09-24 04:35:21,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:21,059 INFO Out dated connection ,size=0 + +2025-09-24 04:35:21,059 INFO Connection check task end + +2025-09-24 04:35:23,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:24,060 INFO Connection check task start + +2025-09-24 04:35:24,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:24,060 INFO Out dated connection ,size=0 + +2025-09-24 04:35:24,060 INFO Connection check task end + +2025-09-24 04:35:26,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:27,062 INFO Connection check task start + +2025-09-24 04:35:27,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:27,062 INFO Out dated connection ,size=0 + +2025-09-24 04:35:27,062 INFO Connection check task end + +2025-09-24 04:35:29,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:30,063 INFO Connection check task start + +2025-09-24 04:35:30,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:30,063 INFO Out dated connection ,size=0 + +2025-09-24 04:35:30,063 INFO Connection check task end + +2025-09-24 04:35:32,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:33,065 INFO Connection check task start + +2025-09-24 04:35:33,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:33,065 INFO Out dated connection ,size=0 + +2025-09-24 04:35:33,065 INFO Connection check task end + +2025-09-24 04:35:35,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:36,066 INFO Connection check task start + +2025-09-24 04:35:36,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:36,066 INFO Out dated connection ,size=0 + +2025-09-24 04:35:36,066 INFO Connection check task end + +2025-09-24 04:35:38,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:39,066 INFO Connection check task start + +2025-09-24 04:35:39,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:39,067 INFO Out dated connection ,size=0 + +2025-09-24 04:35:39,067 INFO Connection check task end + +2025-09-24 04:35:41,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:42,067 INFO Connection check task start + +2025-09-24 04:35:42,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:42,067 INFO Out dated connection ,size=0 + +2025-09-24 04:35:42,067 INFO Connection check task end + +2025-09-24 04:35:44,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:45,068 INFO Connection check task start + +2025-09-24 04:35:45,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:45,069 INFO Out dated connection ,size=0 + +2025-09-24 04:35:45,069 INFO Connection check task end + +2025-09-24 04:35:47,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:48,069 INFO Connection check task start + +2025-09-24 04:35:48,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:48,096 INFO Out dated connection ,size=0 + +2025-09-24 04:35:48,096 INFO Connection check task end + +2025-09-24 04:35:50,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:51,096 INFO Connection check task start + +2025-09-24 04:35:51,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:51,096 INFO Out dated connection ,size=0 + +2025-09-24 04:35:51,096 INFO Connection check task end + +2025-09-24 04:35:53,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:54,097 INFO Connection check task start + +2025-09-24 04:35:54,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:54,097 INFO Out dated connection ,size=0 + +2025-09-24 04:35:54,097 INFO Connection check task end + +2025-09-24 04:35:56,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:35:57,099 INFO Connection check task start + +2025-09-24 04:35:57,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:35:57,099 INFO Out dated connection ,size=0 + +2025-09-24 04:35:57,099 INFO Connection check task end + +2025-09-24 04:35:59,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:00,100 INFO Connection check task start + +2025-09-24 04:36:00,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:00,101 INFO Out dated connection ,size=0 + +2025-09-24 04:36:00,101 INFO Connection check task end + +2025-09-24 04:36:02,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:03,102 INFO Connection check task start + +2025-09-24 04:36:03,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:03,103 INFO Out dated connection ,size=0 + +2025-09-24 04:36:03,103 INFO Connection check task end + +2025-09-24 04:36:05,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:06,103 INFO Connection check task start + +2025-09-24 04:36:06,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:06,104 INFO Out dated connection ,size=0 + +2025-09-24 04:36:06,104 INFO Connection check task end + +2025-09-24 04:36:08,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:09,106 INFO Connection check task start + +2025-09-24 04:36:09,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:09,106 INFO Out dated connection ,size=0 + +2025-09-24 04:36:09,106 INFO Connection check task end + +2025-09-24 04:36:11,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:12,108 INFO Connection check task start + +2025-09-24 04:36:12,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:12,108 INFO Out dated connection ,size=0 + +2025-09-24 04:36:12,108 INFO Connection check task end + +2025-09-24 04:36:14,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:15,110 INFO Connection check task start + +2025-09-24 04:36:15,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:15,110 INFO Out dated connection ,size=0 + +2025-09-24 04:36:15,110 INFO Connection check task end + +2025-09-24 04:36:17,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:18,112 INFO Connection check task start + +2025-09-24 04:36:18,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:18,112 INFO Out dated connection ,size=0 + +2025-09-24 04:36:18,112 INFO Connection check task end + +2025-09-24 04:36:20,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:21,112 INFO Connection check task start + +2025-09-24 04:36:21,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:21,113 INFO Out dated connection ,size=0 + +2025-09-24 04:36:21,113 INFO Connection check task end + +2025-09-24 04:36:23,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:24,115 INFO Connection check task start + +2025-09-24 04:36:24,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:24,115 INFO Out dated connection ,size=0 + +2025-09-24 04:36:24,115 INFO Connection check task end + +2025-09-24 04:36:26,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:27,115 INFO Connection check task start + +2025-09-24 04:36:27,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:27,116 INFO Out dated connection ,size=0 + +2025-09-24 04:36:27,116 INFO Connection check task end + +2025-09-24 04:36:29,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:30,117 INFO Connection check task start + +2025-09-24 04:36:30,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:30,117 INFO Out dated connection ,size=0 + +2025-09-24 04:36:30,117 INFO Connection check task end + +2025-09-24 04:36:32,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:33,118 INFO Connection check task start + +2025-09-24 04:36:33,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:33,118 INFO Out dated connection ,size=0 + +2025-09-24 04:36:33,118 INFO Connection check task end + +2025-09-24 04:36:35,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:36,120 INFO Connection check task start + +2025-09-24 04:36:36,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:36,121 INFO Out dated connection ,size=0 + +2025-09-24 04:36:36,121 INFO Connection check task end + +2025-09-24 04:36:38,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:39,122 INFO Connection check task start + +2025-09-24 04:36:39,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:39,122 INFO Out dated connection ,size=0 + +2025-09-24 04:36:39,122 INFO Connection check task end + +2025-09-24 04:36:41,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:42,122 INFO Connection check task start + +2025-09-24 04:36:42,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:42,123 INFO Out dated connection ,size=0 + +2025-09-24 04:36:42,123 INFO Connection check task end + +2025-09-24 04:36:44,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:45,123 INFO Connection check task start + +2025-09-24 04:36:45,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:45,123 INFO Out dated connection ,size=0 + +2025-09-24 04:36:45,123 INFO Connection check task end + +2025-09-24 04:36:47,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:48,125 INFO Connection check task start + +2025-09-24 04:36:48,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:48,126 INFO Out dated connection ,size=0 + +2025-09-24 04:36:48,126 INFO Connection check task end + +2025-09-24 04:36:50,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:51,128 INFO Connection check task start + +2025-09-24 04:36:51,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:51,129 INFO Out dated connection ,size=0 + +2025-09-24 04:36:51,129 INFO Connection check task end + +2025-09-24 04:36:53,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:54,131 INFO Connection check task start + +2025-09-24 04:36:54,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:54,131 INFO Out dated connection ,size=0 + +2025-09-24 04:36:54,131 INFO Connection check task end + +2025-09-24 04:36:56,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:36:57,133 INFO Connection check task start + +2025-09-24 04:36:57,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:36:57,133 INFO Out dated connection ,size=0 + +2025-09-24 04:36:57,133 INFO Connection check task end + +2025-09-24 04:36:59,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:00,133 INFO Connection check task start + +2025-09-24 04:37:00,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:00,133 INFO Out dated connection ,size=0 + +2025-09-24 04:37:00,134 INFO Connection check task end + +2025-09-24 04:37:02,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:03,134 INFO Connection check task start + +2025-09-24 04:37:03,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:03,134 INFO Out dated connection ,size=0 + +2025-09-24 04:37:03,135 INFO Connection check task end + +2025-09-24 04:37:05,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:06,137 INFO Connection check task start + +2025-09-24 04:37:06,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:06,137 INFO Out dated connection ,size=0 + +2025-09-24 04:37:06,137 INFO Connection check task end + +2025-09-24 04:37:08,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:09,138 INFO Connection check task start + +2025-09-24 04:37:09,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:09,139 INFO Out dated connection ,size=0 + +2025-09-24 04:37:09,139 INFO Connection check task end + +2025-09-24 04:37:11,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:12,140 INFO Connection check task start + +2025-09-24 04:37:12,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:12,140 INFO Out dated connection ,size=0 + +2025-09-24 04:37:12,140 INFO Connection check task end + +2025-09-24 04:37:14,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:15,142 INFO Connection check task start + +2025-09-24 04:37:15,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:15,142 INFO Out dated connection ,size=0 + +2025-09-24 04:37:15,142 INFO Connection check task end + +2025-09-24 04:37:17,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:18,142 INFO Connection check task start + +2025-09-24 04:37:18,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:18,155 INFO Out dated connection ,size=0 + +2025-09-24 04:37:18,155 INFO Connection check task end + +2025-09-24 04:37:20,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:21,155 INFO Connection check task start + +2025-09-24 04:37:21,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:21,155 INFO Out dated connection ,size=0 + +2025-09-24 04:37:21,155 INFO Connection check task end + +2025-09-24 04:37:23,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:24,155 INFO Connection check task start + +2025-09-24 04:37:24,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:24,156 INFO Out dated connection ,size=0 + +2025-09-24 04:37:24,156 INFO Connection check task end + +2025-09-24 04:37:26,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:27,156 INFO Connection check task start + +2025-09-24 04:37:27,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:27,156 INFO Out dated connection ,size=0 + +2025-09-24 04:37:27,156 INFO Connection check task end + +2025-09-24 04:37:29,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:30,157 INFO Connection check task start + +2025-09-24 04:37:30,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:30,157 INFO Out dated connection ,size=0 + +2025-09-24 04:37:30,157 INFO Connection check task end + +2025-09-24 04:37:32,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:33,157 INFO Connection check task start + +2025-09-24 04:37:33,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:33,158 INFO Out dated connection ,size=0 + +2025-09-24 04:37:33,158 INFO Connection check task end + +2025-09-24 04:37:35,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:36,158 INFO Connection check task start + +2025-09-24 04:37:36,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:36,158 INFO Out dated connection ,size=0 + +2025-09-24 04:37:36,158 INFO Connection check task end + +2025-09-24 04:37:38,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:39,159 INFO Connection check task start + +2025-09-24 04:37:39,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:39,159 INFO Out dated connection ,size=0 + +2025-09-24 04:37:39,159 INFO Connection check task end + +2025-09-24 04:37:41,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:42,161 INFO Connection check task start + +2025-09-24 04:37:42,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:42,161 INFO Out dated connection ,size=0 + +2025-09-24 04:37:42,161 INFO Connection check task end + +2025-09-24 04:37:44,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:45,161 INFO Connection check task start + +2025-09-24 04:37:45,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:45,161 INFO Out dated connection ,size=0 + +2025-09-24 04:37:45,161 INFO Connection check task end + +2025-09-24 04:37:47,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:48,162 INFO Connection check task start + +2025-09-24 04:37:48,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:48,163 INFO Out dated connection ,size=0 + +2025-09-24 04:37:48,164 INFO Connection check task end + +2025-09-24 04:37:50,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:51,164 INFO Connection check task start + +2025-09-24 04:37:51,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:51,164 INFO Out dated connection ,size=0 + +2025-09-24 04:37:51,165 INFO Connection check task end + +2025-09-24 04:37:53,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:54,165 INFO Connection check task start + +2025-09-24 04:37:54,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:54,165 INFO Out dated connection ,size=0 + +2025-09-24 04:37:54,165 INFO Connection check task end + +2025-09-24 04:37:56,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:37:57,165 INFO Connection check task start + +2025-09-24 04:37:57,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:37:57,165 INFO Out dated connection ,size=0 + +2025-09-24 04:37:57,166 INFO Connection check task end + +2025-09-24 04:37:59,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:00,167 INFO Connection check task start + +2025-09-24 04:38:00,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:00,168 INFO Out dated connection ,size=0 + +2025-09-24 04:38:00,168 INFO Connection check task end + +2025-09-24 04:38:02,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:03,170 INFO Connection check task start + +2025-09-24 04:38:03,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:03,170 INFO Out dated connection ,size=0 + +2025-09-24 04:38:03,170 INFO Connection check task end + +2025-09-24 04:38:05,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:06,171 INFO Connection check task start + +2025-09-24 04:38:06,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:06,172 INFO Out dated connection ,size=0 + +2025-09-24 04:38:06,172 INFO Connection check task end + +2025-09-24 04:38:08,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:09,172 INFO Connection check task start + +2025-09-24 04:38:09,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:09,173 INFO Out dated connection ,size=0 + +2025-09-24 04:38:09,173 INFO Connection check task end + +2025-09-24 04:38:11,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:12,173 INFO Connection check task start + +2025-09-24 04:38:12,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:12,173 INFO Out dated connection ,size=0 + +2025-09-24 04:38:12,173 INFO Connection check task end + +2025-09-24 04:38:14,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:15,174 INFO Connection check task start + +2025-09-24 04:38:15,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:15,174 INFO Out dated connection ,size=0 + +2025-09-24 04:38:15,174 INFO Connection check task end + +2025-09-24 04:38:17,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:18,176 INFO Connection check task start + +2025-09-24 04:38:18,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:18,176 INFO Out dated connection ,size=0 + +2025-09-24 04:38:18,176 INFO Connection check task end + +2025-09-24 04:38:20,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:21,176 INFO Connection check task start + +2025-09-24 04:38:21,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:21,176 INFO Out dated connection ,size=0 + +2025-09-24 04:38:21,176 INFO Connection check task end + +2025-09-24 04:38:23,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:24,178 INFO Connection check task start + +2025-09-24 04:38:24,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:24,179 INFO Out dated connection ,size=0 + +2025-09-24 04:38:24,179 INFO Connection check task end + +2025-09-24 04:38:26,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:27,181 INFO Connection check task start + +2025-09-24 04:38:27,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:27,181 INFO Out dated connection ,size=0 + +2025-09-24 04:38:27,181 INFO Connection check task end + +2025-09-24 04:38:29,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:30,183 INFO Connection check task start + +2025-09-24 04:38:30,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:30,184 INFO Out dated connection ,size=0 + +2025-09-24 04:38:30,184 INFO Connection check task end + +2025-09-24 04:38:32,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:33,184 INFO Connection check task start + +2025-09-24 04:38:33,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:33,185 INFO Out dated connection ,size=0 + +2025-09-24 04:38:33,185 INFO Connection check task end + +2025-09-24 04:38:35,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:36,185 INFO Connection check task start + +2025-09-24 04:38:36,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:36,185 INFO Out dated connection ,size=0 + +2025-09-24 04:38:36,185 INFO Connection check task end + +2025-09-24 04:38:38,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:39,186 INFO Connection check task start + +2025-09-24 04:38:39,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:39,186 INFO Out dated connection ,size=0 + +2025-09-24 04:38:39,186 INFO Connection check task end + +2025-09-24 04:38:41,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:42,188 INFO Connection check task start + +2025-09-24 04:38:42,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:42,189 INFO Out dated connection ,size=0 + +2025-09-24 04:38:42,189 INFO Connection check task end + +2025-09-24 04:38:44,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:45,189 INFO Connection check task start + +2025-09-24 04:38:45,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:45,190 INFO Out dated connection ,size=0 + +2025-09-24 04:38:45,190 INFO Connection check task end + +2025-09-24 04:38:47,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:48,192 INFO Connection check task start + +2025-09-24 04:38:48,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:48,192 INFO Out dated connection ,size=0 + +2025-09-24 04:38:48,192 INFO Connection check task end + +2025-09-24 04:38:50,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:51,194 INFO Connection check task start + +2025-09-24 04:38:51,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:51,194 INFO Out dated connection ,size=0 + +2025-09-24 04:38:51,195 INFO Connection check task end + +2025-09-24 04:38:53,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:54,197 INFO Connection check task start + +2025-09-24 04:38:54,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:54,197 INFO Out dated connection ,size=0 + +2025-09-24 04:38:54,197 INFO Connection check task end + +2025-09-24 04:38:56,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:38:57,198 INFO Connection check task start + +2025-09-24 04:38:57,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:38:57,198 INFO Out dated connection ,size=0 + +2025-09-24 04:38:57,198 INFO Connection check task end + +2025-09-24 04:38:59,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:00,198 INFO Connection check task start + +2025-09-24 04:39:00,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:00,198 INFO Out dated connection ,size=0 + +2025-09-24 04:39:00,199 INFO Connection check task end + +2025-09-24 04:39:02,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:03,199 INFO Connection check task start + +2025-09-24 04:39:03,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:03,199 INFO Out dated connection ,size=0 + +2025-09-24 04:39:03,199 INFO Connection check task end + +2025-09-24 04:39:05,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:06,200 INFO Connection check task start + +2025-09-24 04:39:06,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:06,200 INFO Out dated connection ,size=0 + +2025-09-24 04:39:06,200 INFO Connection check task end + +2025-09-24 04:39:08,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:09,201 INFO Connection check task start + +2025-09-24 04:39:09,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:09,201 INFO Out dated connection ,size=0 + +2025-09-24 04:39:09,201 INFO Connection check task end + +2025-09-24 04:39:11,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:12,203 INFO Connection check task start + +2025-09-24 04:39:12,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:12,203 INFO Out dated connection ,size=0 + +2025-09-24 04:39:12,203 INFO Connection check task end + +2025-09-24 04:39:14,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:15,205 INFO Connection check task start + +2025-09-24 04:39:15,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:15,206 INFO Out dated connection ,size=0 + +2025-09-24 04:39:15,206 INFO Connection check task end + +2025-09-24 04:39:17,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:18,206 INFO Connection check task start + +2025-09-24 04:39:18,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:18,206 INFO Out dated connection ,size=0 + +2025-09-24 04:39:18,206 INFO Connection check task end + +2025-09-24 04:39:20,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:21,206 INFO Connection check task start + +2025-09-24 04:39:21,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:21,206 INFO Out dated connection ,size=0 + +2025-09-24 04:39:21,206 INFO Connection check task end + +2025-09-24 04:39:23,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:24,208 INFO Connection check task start + +2025-09-24 04:39:24,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:24,208 INFO Out dated connection ,size=0 + +2025-09-24 04:39:24,208 INFO Connection check task end + +2025-09-24 04:39:26,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:27,210 INFO Connection check task start + +2025-09-24 04:39:27,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:27,210 INFO Out dated connection ,size=0 + +2025-09-24 04:39:27,210 INFO Connection check task end + +2025-09-24 04:39:29,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:30,210 INFO Connection check task start + +2025-09-24 04:39:30,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:30,210 INFO Out dated connection ,size=0 + +2025-09-24 04:39:30,210 INFO Connection check task end + +2025-09-24 04:39:32,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:33,211 INFO Connection check task start + +2025-09-24 04:39:33,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:33,212 INFO Out dated connection ,size=0 + +2025-09-24 04:39:33,212 INFO Connection check task end + +2025-09-24 04:39:35,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:36,213 INFO Connection check task start + +2025-09-24 04:39:36,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:36,213 INFO Out dated connection ,size=0 + +2025-09-24 04:39:36,213 INFO Connection check task end + +2025-09-24 04:39:38,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:39,214 INFO Connection check task start + +2025-09-24 04:39:39,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:39,214 INFO Out dated connection ,size=0 + +2025-09-24 04:39:39,214 INFO Connection check task end + +2025-09-24 04:39:41,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:42,216 INFO Connection check task start + +2025-09-24 04:39:42,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:42,216 INFO Out dated connection ,size=0 + +2025-09-24 04:39:42,216 INFO Connection check task end + +2025-09-24 04:39:44,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:45,218 INFO Connection check task start + +2025-09-24 04:39:45,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:45,218 INFO Out dated connection ,size=0 + +2025-09-24 04:39:45,219 INFO Connection check task end + +2025-09-24 04:39:47,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:48,220 INFO Connection check task start + +2025-09-24 04:39:48,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:48,220 INFO Out dated connection ,size=0 + +2025-09-24 04:39:48,220 INFO Connection check task end + +2025-09-24 04:39:50,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:51,222 INFO Connection check task start + +2025-09-24 04:39:51,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:51,222 INFO Out dated connection ,size=0 + +2025-09-24 04:39:51,222 INFO Connection check task end + +2025-09-24 04:39:53,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:54,223 INFO Connection check task start + +2025-09-24 04:39:54,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:54,223 INFO Out dated connection ,size=0 + +2025-09-24 04:39:54,223 INFO Connection check task end + +2025-09-24 04:39:56,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:39:57,226 INFO Connection check task start + +2025-09-24 04:39:57,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:39:57,226 INFO Out dated connection ,size=0 + +2025-09-24 04:39:57,226 INFO Connection check task end + +2025-09-24 04:39:59,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:00,228 INFO Connection check task start + +2025-09-24 04:40:00,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:00,228 INFO Out dated connection ,size=0 + +2025-09-24 04:40:00,228 INFO Connection check task end + +2025-09-24 04:40:02,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:03,229 INFO Connection check task start + +2025-09-24 04:40:03,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:03,229 INFO Out dated connection ,size=0 + +2025-09-24 04:40:03,229 INFO Connection check task end + +2025-09-24 04:40:05,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:06,231 INFO Connection check task start + +2025-09-24 04:40:06,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:06,231 INFO Out dated connection ,size=0 + +2025-09-24 04:40:06,231 INFO Connection check task end + +2025-09-24 04:40:08,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:09,232 INFO Connection check task start + +2025-09-24 04:40:09,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:09,233 INFO Out dated connection ,size=0 + +2025-09-24 04:40:09,233 INFO Connection check task end + +2025-09-24 04:40:11,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:12,233 INFO Connection check task start + +2025-09-24 04:40:12,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:12,233 INFO Out dated connection ,size=0 + +2025-09-24 04:40:12,233 INFO Connection check task end + +2025-09-24 04:40:14,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:15,234 INFO Connection check task start + +2025-09-24 04:40:15,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:15,234 INFO Out dated connection ,size=0 + +2025-09-24 04:40:15,235 INFO Connection check task end + +2025-09-24 04:40:17,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:18,235 INFO Connection check task start + +2025-09-24 04:40:18,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:18,235 INFO Out dated connection ,size=0 + +2025-09-24 04:40:18,235 INFO Connection check task end + +2025-09-24 04:40:20,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:21,236 INFO Connection check task start + +2025-09-24 04:40:21,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:21,236 INFO Out dated connection ,size=0 + +2025-09-24 04:40:21,236 INFO Connection check task end + +2025-09-24 04:40:23,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:24,238 INFO Connection check task start + +2025-09-24 04:40:24,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:24,239 INFO Out dated connection ,size=0 + +2025-09-24 04:40:24,239 INFO Connection check task end + +2025-09-24 04:40:26,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:27,240 INFO Connection check task start + +2025-09-24 04:40:27,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:27,241 INFO Out dated connection ,size=0 + +2025-09-24 04:40:27,241 INFO Connection check task end + +2025-09-24 04:40:29,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:30,243 INFO Connection check task start + +2025-09-24 04:40:30,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:30,243 INFO Out dated connection ,size=0 + +2025-09-24 04:40:30,243 INFO Connection check task end + +2025-09-24 04:40:32,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:33,244 INFO Connection check task start + +2025-09-24 04:40:33,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:33,245 INFO Out dated connection ,size=0 + +2025-09-24 04:40:33,245 INFO Connection check task end + +2025-09-24 04:40:35,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:36,247 INFO Connection check task start + +2025-09-24 04:40:36,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:36,247 INFO Out dated connection ,size=0 + +2025-09-24 04:40:36,247 INFO Connection check task end + +2025-09-24 04:40:38,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:39,248 INFO Connection check task start + +2025-09-24 04:40:39,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:39,249 INFO Out dated connection ,size=0 + +2025-09-24 04:40:39,249 INFO Connection check task end + +2025-09-24 04:40:41,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:42,249 INFO Connection check task start + +2025-09-24 04:40:42,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:42,250 INFO Out dated connection ,size=0 + +2025-09-24 04:40:42,250 INFO Connection check task end + +2025-09-24 04:40:44,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:45,251 INFO Connection check task start + +2025-09-24 04:40:45,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:45,251 INFO Out dated connection ,size=0 + +2025-09-24 04:40:45,251 INFO Connection check task end + +2025-09-24 04:40:47,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:48,253 INFO Connection check task start + +2025-09-24 04:40:48,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:48,253 INFO Out dated connection ,size=0 + +2025-09-24 04:40:48,253 INFO Connection check task end + +2025-09-24 04:40:50,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:51,254 INFO Connection check task start + +2025-09-24 04:40:51,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:51,254 INFO Out dated connection ,size=0 + +2025-09-24 04:40:51,254 INFO Connection check task end + +2025-09-24 04:40:53,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:54,256 INFO Connection check task start + +2025-09-24 04:40:54,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:54,257 INFO Out dated connection ,size=0 + +2025-09-24 04:40:54,257 INFO Connection check task end + +2025-09-24 04:40:56,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:40:57,257 INFO Connection check task start + +2025-09-24 04:40:57,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:40:57,258 INFO Out dated connection ,size=0 + +2025-09-24 04:40:57,258 INFO Connection check task end + +2025-09-24 04:40:59,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:00,259 INFO Connection check task start + +2025-09-24 04:41:00,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:00,259 INFO Out dated connection ,size=0 + +2025-09-24 04:41:00,259 INFO Connection check task end + +2025-09-24 04:41:02,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:03,260 INFO Connection check task start + +2025-09-24 04:41:03,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:03,260 INFO Out dated connection ,size=0 + +2025-09-24 04:41:03,260 INFO Connection check task end + +2025-09-24 04:41:05,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:06,260 INFO Connection check task start + +2025-09-24 04:41:06,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:06,261 INFO Out dated connection ,size=0 + +2025-09-24 04:41:06,261 INFO Connection check task end + +2025-09-24 04:41:08,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:09,261 INFO Connection check task start + +2025-09-24 04:41:09,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:09,261 INFO Out dated connection ,size=0 + +2025-09-24 04:41:09,261 INFO Connection check task end + +2025-09-24 04:41:11,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:12,262 INFO Connection check task start + +2025-09-24 04:41:12,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:12,262 INFO Out dated connection ,size=0 + +2025-09-24 04:41:12,262 INFO Connection check task end + +2025-09-24 04:41:14,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:15,263 INFO Connection check task start + +2025-09-24 04:41:15,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:15,263 INFO Out dated connection ,size=0 + +2025-09-24 04:41:15,263 INFO Connection check task end + +2025-09-24 04:41:17,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:18,264 INFO Connection check task start + +2025-09-24 04:41:18,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:18,264 INFO Out dated connection ,size=0 + +2025-09-24 04:41:18,264 INFO Connection check task end + +2025-09-24 04:41:20,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:21,265 INFO Connection check task start + +2025-09-24 04:41:21,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:21,265 INFO Out dated connection ,size=0 + +2025-09-24 04:41:21,265 INFO Connection check task end + +2025-09-24 04:41:23,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:24,267 INFO Connection check task start + +2025-09-24 04:41:24,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:24,267 INFO Out dated connection ,size=0 + +2025-09-24 04:41:24,267 INFO Connection check task end + +2025-09-24 04:41:26,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:27,267 INFO Connection check task start + +2025-09-24 04:41:27,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:27,268 INFO Out dated connection ,size=0 + +2025-09-24 04:41:27,268 INFO Connection check task end + +2025-09-24 04:41:29,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:30,269 INFO Connection check task start + +2025-09-24 04:41:30,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:30,270 INFO Out dated connection ,size=0 + +2025-09-24 04:41:30,270 INFO Connection check task end + +2025-09-24 04:41:32,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:33,270 INFO Connection check task start + +2025-09-24 04:41:33,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:33,270 INFO Out dated connection ,size=0 + +2025-09-24 04:41:33,270 INFO Connection check task end + +2025-09-24 04:41:35,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:36,270 INFO Connection check task start + +2025-09-24 04:41:36,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:36,270 INFO Out dated connection ,size=0 + +2025-09-24 04:41:36,271 INFO Connection check task end + +2025-09-24 04:41:38,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:39,272 INFO Connection check task start + +2025-09-24 04:41:39,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:39,272 INFO Out dated connection ,size=0 + +2025-09-24 04:41:39,272 INFO Connection check task end + +2025-09-24 04:41:41,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:42,273 INFO Connection check task start + +2025-09-24 04:41:42,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:42,273 INFO Out dated connection ,size=0 + +2025-09-24 04:41:42,273 INFO Connection check task end + +2025-09-24 04:41:44,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:45,275 INFO Connection check task start + +2025-09-24 04:41:45,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:45,275 INFO Out dated connection ,size=0 + +2025-09-24 04:41:45,275 INFO Connection check task end + +2025-09-24 04:41:47,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:48,276 INFO Connection check task start + +2025-09-24 04:41:48,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:48,287 INFO Out dated connection ,size=0 + +2025-09-24 04:41:48,287 INFO Connection check task end + +2025-09-24 04:41:50,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:51,289 INFO Connection check task start + +2025-09-24 04:41:51,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:51,289 INFO Out dated connection ,size=0 + +2025-09-24 04:41:51,289 INFO Connection check task end + +2025-09-24 04:41:53,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:54,290 INFO Connection check task start + +2025-09-24 04:41:54,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:54,290 INFO Out dated connection ,size=0 + +2025-09-24 04:41:54,290 INFO Connection check task end + +2025-09-24 04:41:56,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:41:57,290 INFO Connection check task start + +2025-09-24 04:41:57,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:41:57,291 INFO Out dated connection ,size=0 + +2025-09-24 04:41:57,291 INFO Connection check task end + +2025-09-24 04:41:59,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:00,293 INFO Connection check task start + +2025-09-24 04:42:00,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:00,293 INFO Out dated connection ,size=0 + +2025-09-24 04:42:00,293 INFO Connection check task end + +2025-09-24 04:42:02,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:03,293 INFO Connection check task start + +2025-09-24 04:42:03,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:03,294 INFO Out dated connection ,size=0 + +2025-09-24 04:42:03,294 INFO Connection check task end + +2025-09-24 04:42:05,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:06,294 INFO Connection check task start + +2025-09-24 04:42:06,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:06,294 INFO Out dated connection ,size=0 + +2025-09-24 04:42:06,294 INFO Connection check task end + +2025-09-24 04:42:08,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:09,294 INFO Connection check task start + +2025-09-24 04:42:09,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:09,295 INFO Out dated connection ,size=0 + +2025-09-24 04:42:09,295 INFO Connection check task end + +2025-09-24 04:42:11,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:12,295 INFO Connection check task start + +2025-09-24 04:42:12,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:12,295 INFO Out dated connection ,size=0 + +2025-09-24 04:42:12,295 INFO Connection check task end + +2025-09-24 04:42:14,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:15,295 INFO Connection check task start + +2025-09-24 04:42:15,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:15,296 INFO Out dated connection ,size=0 + +2025-09-24 04:42:15,296 INFO Connection check task end + +2025-09-24 04:42:17,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:18,296 INFO Connection check task start + +2025-09-24 04:42:18,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:18,317 INFO Out dated connection ,size=0 + +2025-09-24 04:42:18,317 INFO Connection check task end + +2025-09-24 04:42:20,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:21,337 INFO Connection check task start + +2025-09-24 04:42:21,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:21,337 INFO Out dated connection ,size=0 + +2025-09-24 04:42:21,337 INFO Connection check task end + +2025-09-24 04:42:23,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:24,337 INFO Connection check task start + +2025-09-24 04:42:24,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:24,338 INFO Out dated connection ,size=0 + +2025-09-24 04:42:24,338 INFO Connection check task end + +2025-09-24 04:42:26,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:27,338 INFO Connection check task start + +2025-09-24 04:42:27,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:27,338 INFO Out dated connection ,size=0 + +2025-09-24 04:42:27,338 INFO Connection check task end + +2025-09-24 04:42:29,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:30,338 INFO Connection check task start + +2025-09-24 04:42:30,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:30,338 INFO Out dated connection ,size=0 + +2025-09-24 04:42:30,338 INFO Connection check task end + +2025-09-24 04:42:32,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:33,339 INFO Connection check task start + +2025-09-24 04:42:33,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:33,339 INFO Out dated connection ,size=0 + +2025-09-24 04:42:33,339 INFO Connection check task end + +2025-09-24 04:42:35,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:36,339 INFO Connection check task start + +2025-09-24 04:42:36,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:36,339 INFO Out dated connection ,size=0 + +2025-09-24 04:42:36,339 INFO Connection check task end + +2025-09-24 04:42:38,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:39,340 INFO Connection check task start + +2025-09-24 04:42:39,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:39,340 INFO Out dated connection ,size=0 + +2025-09-24 04:42:39,340 INFO Connection check task end + +2025-09-24 04:42:41,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:42,342 INFO Connection check task start + +2025-09-24 04:42:42,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:42,342 INFO Out dated connection ,size=0 + +2025-09-24 04:42:42,342 INFO Connection check task end + +2025-09-24 04:42:44,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:45,342 INFO Connection check task start + +2025-09-24 04:42:45,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:45,342 INFO Out dated connection ,size=0 + +2025-09-24 04:42:45,342 INFO Connection check task end + +2025-09-24 04:42:47,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:48,342 INFO Connection check task start + +2025-09-24 04:42:48,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:48,343 INFO Out dated connection ,size=0 + +2025-09-24 04:42:48,343 INFO Connection check task end + +2025-09-24 04:42:50,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:51,343 INFO Connection check task start + +2025-09-24 04:42:51,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:51,343 INFO Out dated connection ,size=0 + +2025-09-24 04:42:51,343 INFO Connection check task end + +2025-09-24 04:42:53,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:54,343 INFO Connection check task start + +2025-09-24 04:42:54,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:54,344 INFO Out dated connection ,size=0 + +2025-09-24 04:42:54,344 INFO Connection check task end + +2025-09-24 04:42:56,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:42:57,344 INFO Connection check task start + +2025-09-24 04:42:57,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:42:57,344 INFO Out dated connection ,size=0 + +2025-09-24 04:42:57,344 INFO Connection check task end + +2025-09-24 04:42:59,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:00,345 INFO Connection check task start + +2025-09-24 04:43:00,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:00,345 INFO Out dated connection ,size=0 + +2025-09-24 04:43:00,345 INFO Connection check task end + +2025-09-24 04:43:02,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:03,346 INFO Connection check task start + +2025-09-24 04:43:03,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:03,347 INFO Out dated connection ,size=0 + +2025-09-24 04:43:03,347 INFO Connection check task end + +2025-09-24 04:43:05,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:06,348 INFO Connection check task start + +2025-09-24 04:43:06,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:06,348 INFO Out dated connection ,size=0 + +2025-09-24 04:43:06,348 INFO Connection check task end + +2025-09-24 04:43:08,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:09,348 INFO Connection check task start + +2025-09-24 04:43:09,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:09,348 INFO Out dated connection ,size=0 + +2025-09-24 04:43:09,348 INFO Connection check task end + +2025-09-24 04:43:11,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:12,349 INFO Connection check task start + +2025-09-24 04:43:12,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:12,349 INFO Out dated connection ,size=0 + +2025-09-24 04:43:12,349 INFO Connection check task end + +2025-09-24 04:43:14,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:15,351 INFO Connection check task start + +2025-09-24 04:43:15,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:15,351 INFO Out dated connection ,size=0 + +2025-09-24 04:43:15,351 INFO Connection check task end + +2025-09-24 04:43:17,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:18,351 INFO Connection check task start + +2025-09-24 04:43:18,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:18,352 INFO Out dated connection ,size=0 + +2025-09-24 04:43:18,352 INFO Connection check task end + +2025-09-24 04:43:20,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:21,352 INFO Connection check task start + +2025-09-24 04:43:21,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:21,352 INFO Out dated connection ,size=0 + +2025-09-24 04:43:21,352 INFO Connection check task end + +2025-09-24 04:43:23,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:24,352 INFO Connection check task start + +2025-09-24 04:43:24,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:24,352 INFO Out dated connection ,size=0 + +2025-09-24 04:43:24,352 INFO Connection check task end + +2025-09-24 04:43:26,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:27,353 INFO Connection check task start + +2025-09-24 04:43:27,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:27,354 INFO Out dated connection ,size=0 + +2025-09-24 04:43:27,354 INFO Connection check task end + +2025-09-24 04:43:29,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:30,354 INFO Connection check task start + +2025-09-24 04:43:30,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:30,354 INFO Out dated connection ,size=0 + +2025-09-24 04:43:30,354 INFO Connection check task end + +2025-09-24 04:43:32,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:33,355 INFO Connection check task start + +2025-09-24 04:43:33,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:33,355 INFO Out dated connection ,size=0 + +2025-09-24 04:43:33,355 INFO Connection check task end + +2025-09-24 04:43:35,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:36,355 INFO Connection check task start + +2025-09-24 04:43:36,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:36,356 INFO Out dated connection ,size=0 + +2025-09-24 04:43:36,356 INFO Connection check task end + +2025-09-24 04:43:38,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:39,356 INFO Connection check task start + +2025-09-24 04:43:39,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:39,356 INFO Out dated connection ,size=0 + +2025-09-24 04:43:39,357 INFO Connection check task end + +2025-09-24 04:43:41,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:42,357 INFO Connection check task start + +2025-09-24 04:43:42,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:42,357 INFO Out dated connection ,size=0 + +2025-09-24 04:43:42,357 INFO Connection check task end + +2025-09-24 04:43:44,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:45,357 INFO Connection check task start + +2025-09-24 04:43:45,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:45,357 INFO Out dated connection ,size=0 + +2025-09-24 04:43:45,357 INFO Connection check task end + +2025-09-24 04:43:47,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:48,358 INFO Connection check task start + +2025-09-24 04:43:48,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:48,358 INFO Out dated connection ,size=0 + +2025-09-24 04:43:48,358 INFO Connection check task end + +2025-09-24 04:43:50,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:51,359 INFO Connection check task start + +2025-09-24 04:43:51,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:51,360 INFO Out dated connection ,size=0 + +2025-09-24 04:43:51,360 INFO Connection check task end + +2025-09-24 04:43:53,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:54,360 INFO Connection check task start + +2025-09-24 04:43:54,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:54,360 INFO Out dated connection ,size=0 + +2025-09-24 04:43:54,360 INFO Connection check task end + +2025-09-24 04:43:56,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:43:57,361 INFO Connection check task start + +2025-09-24 04:43:57,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:43:57,362 INFO Out dated connection ,size=0 + +2025-09-24 04:43:57,362 INFO Connection check task end + +2025-09-24 04:43:59,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:00,362 INFO Connection check task start + +2025-09-24 04:44:00,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:00,362 INFO Out dated connection ,size=0 + +2025-09-24 04:44:00,363 INFO Connection check task end + +2025-09-24 04:44:02,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:03,363 INFO Connection check task start + +2025-09-24 04:44:03,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:03,363 INFO Out dated connection ,size=0 + +2025-09-24 04:44:03,363 INFO Connection check task end + +2025-09-24 04:44:05,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:06,366 INFO Connection check task start + +2025-09-24 04:44:06,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:06,366 INFO Out dated connection ,size=0 + +2025-09-24 04:44:06,366 INFO Connection check task end + +2025-09-24 04:44:08,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:09,366 INFO Connection check task start + +2025-09-24 04:44:09,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:09,367 INFO Out dated connection ,size=0 + +2025-09-24 04:44:09,367 INFO Connection check task end + +2025-09-24 04:44:11,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:12,367 INFO Connection check task start + +2025-09-24 04:44:12,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:12,367 INFO Out dated connection ,size=0 + +2025-09-24 04:44:12,367 INFO Connection check task end + +2025-09-24 04:44:14,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:15,368 INFO Connection check task start + +2025-09-24 04:44:15,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:15,368 INFO Out dated connection ,size=0 + +2025-09-24 04:44:15,368 INFO Connection check task end + +2025-09-24 04:44:17,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:18,369 INFO Connection check task start + +2025-09-24 04:44:18,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:18,369 INFO Out dated connection ,size=0 + +2025-09-24 04:44:18,369 INFO Connection check task end + +2025-09-24 04:44:20,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:21,369 INFO Connection check task start + +2025-09-24 04:44:21,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:21,369 INFO Out dated connection ,size=0 + +2025-09-24 04:44:21,369 INFO Connection check task end + +2025-09-24 04:44:23,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:24,371 INFO Connection check task start + +2025-09-24 04:44:24,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:24,371 INFO Out dated connection ,size=0 + +2025-09-24 04:44:24,371 INFO Connection check task end + +2025-09-24 04:44:26,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:27,373 INFO Connection check task start + +2025-09-24 04:44:27,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:27,373 INFO Out dated connection ,size=0 + +2025-09-24 04:44:27,373 INFO Connection check task end + +2025-09-24 04:44:29,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:30,374 INFO Connection check task start + +2025-09-24 04:44:30,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:30,374 INFO Out dated connection ,size=0 + +2025-09-24 04:44:30,374 INFO Connection check task end + +2025-09-24 04:44:32,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:33,376 INFO Connection check task start + +2025-09-24 04:44:33,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:33,376 INFO Out dated connection ,size=0 + +2025-09-24 04:44:33,376 INFO Connection check task end + +2025-09-24 04:44:35,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:36,378 INFO Connection check task start + +2025-09-24 04:44:36,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:36,378 INFO Out dated connection ,size=0 + +2025-09-24 04:44:36,378 INFO Connection check task end + +2025-09-24 04:44:38,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:39,381 INFO Connection check task start + +2025-09-24 04:44:39,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:39,381 INFO Out dated connection ,size=0 + +2025-09-24 04:44:39,381 INFO Connection check task end + +2025-09-24 04:44:41,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:42,382 INFO Connection check task start + +2025-09-24 04:44:42,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:42,382 INFO Out dated connection ,size=0 + +2025-09-24 04:44:42,382 INFO Connection check task end + +2025-09-24 04:44:44,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:45,382 INFO Connection check task start + +2025-09-24 04:44:45,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:45,382 INFO Out dated connection ,size=0 + +2025-09-24 04:44:45,382 INFO Connection check task end + +2025-09-24 04:44:47,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:48,383 INFO Connection check task start + +2025-09-24 04:44:48,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:48,383 INFO Out dated connection ,size=0 + +2025-09-24 04:44:48,383 INFO Connection check task end + +2025-09-24 04:44:50,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:51,384 INFO Connection check task start + +2025-09-24 04:44:51,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:51,384 INFO Out dated connection ,size=0 + +2025-09-24 04:44:51,384 INFO Connection check task end + +2025-09-24 04:44:53,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:54,385 INFO Connection check task start + +2025-09-24 04:44:54,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:54,386 INFO Out dated connection ,size=0 + +2025-09-24 04:44:54,386 INFO Connection check task end + +2025-09-24 04:44:56,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:44:57,386 INFO Connection check task start + +2025-09-24 04:44:57,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:44:57,387 INFO Out dated connection ,size=0 + +2025-09-24 04:44:57,387 INFO Connection check task end + +2025-09-24 04:44:59,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:00,388 INFO Connection check task start + +2025-09-24 04:45:00,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:00,388 INFO Out dated connection ,size=0 + +2025-09-24 04:45:00,388 INFO Connection check task end + +2025-09-24 04:45:02,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:03,390 INFO Connection check task start + +2025-09-24 04:45:03,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:03,390 INFO Out dated connection ,size=0 + +2025-09-24 04:45:03,390 INFO Connection check task end + +2025-09-24 04:45:05,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:06,392 INFO Connection check task start + +2025-09-24 04:45:06,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:06,393 INFO Out dated connection ,size=0 + +2025-09-24 04:45:06,393 INFO Connection check task end + +2025-09-24 04:45:08,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:09,393 INFO Connection check task start + +2025-09-24 04:45:09,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:09,393 INFO Out dated connection ,size=0 + +2025-09-24 04:45:09,393 INFO Connection check task end + +2025-09-24 04:45:11,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:12,393 INFO Connection check task start + +2025-09-24 04:45:12,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:12,394 INFO Out dated connection ,size=0 + +2025-09-24 04:45:12,394 INFO Connection check task end + +2025-09-24 04:45:14,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:15,394 INFO Connection check task start + +2025-09-24 04:45:15,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:15,394 INFO Out dated connection ,size=0 + +2025-09-24 04:45:15,394 INFO Connection check task end + +2025-09-24 04:45:17,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:18,394 INFO Connection check task start + +2025-09-24 04:45:18,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:18,395 INFO Out dated connection ,size=0 + +2025-09-24 04:45:18,395 INFO Connection check task end + +2025-09-24 04:45:20,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:21,395 INFO Connection check task start + +2025-09-24 04:45:21,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:21,395 INFO Out dated connection ,size=0 + +2025-09-24 04:45:21,395 INFO Connection check task end + +2025-09-24 04:45:23,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:24,396 INFO Connection check task start + +2025-09-24 04:45:24,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:24,396 INFO Out dated connection ,size=0 + +2025-09-24 04:45:24,396 INFO Connection check task end + +2025-09-24 04:45:26,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:27,396 INFO Connection check task start + +2025-09-24 04:45:27,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:27,397 INFO Out dated connection ,size=0 + +2025-09-24 04:45:27,397 INFO Connection check task end + +2025-09-24 04:45:29,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:30,399 INFO Connection check task start + +2025-09-24 04:45:30,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:30,399 INFO Out dated connection ,size=0 + +2025-09-24 04:45:30,399 INFO Connection check task end + +2025-09-24 04:45:32,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:33,399 INFO Connection check task start + +2025-09-24 04:45:33,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:33,399 INFO Out dated connection ,size=0 + +2025-09-24 04:45:33,400 INFO Connection check task end + +2025-09-24 04:45:35,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:36,400 INFO Connection check task start + +2025-09-24 04:45:36,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:36,401 INFO Out dated connection ,size=0 + +2025-09-24 04:45:36,401 INFO Connection check task end + +2025-09-24 04:45:38,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:39,401 INFO Connection check task start + +2025-09-24 04:45:39,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:39,401 INFO Out dated connection ,size=0 + +2025-09-24 04:45:39,401 INFO Connection check task end + +2025-09-24 04:45:41,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:42,402 INFO Connection check task start + +2025-09-24 04:45:42,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:42,402 INFO Out dated connection ,size=0 + +2025-09-24 04:45:42,402 INFO Connection check task end + +2025-09-24 04:45:44,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:45,403 INFO Connection check task start + +2025-09-24 04:45:45,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:45,403 INFO Out dated connection ,size=0 + +2025-09-24 04:45:45,403 INFO Connection check task end + +2025-09-24 04:45:47,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:48,404 INFO Connection check task start + +2025-09-24 04:45:48,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:48,404 INFO Out dated connection ,size=0 + +2025-09-24 04:45:48,404 INFO Connection check task end + +2025-09-24 04:45:50,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:51,405 INFO Connection check task start + +2025-09-24 04:45:51,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:51,412 INFO Out dated connection ,size=0 + +2025-09-24 04:45:51,412 INFO Connection check task end + +2025-09-24 04:45:53,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:54,413 INFO Connection check task start + +2025-09-24 04:45:54,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:54,413 INFO Out dated connection ,size=0 + +2025-09-24 04:45:54,413 INFO Connection check task end + +2025-09-24 04:45:56,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:45:57,414 INFO Connection check task start + +2025-09-24 04:45:57,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:45:57,414 INFO Out dated connection ,size=0 + +2025-09-24 04:45:57,414 INFO Connection check task end + +2025-09-24 04:45:59,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:00,414 INFO Connection check task start + +2025-09-24 04:46:00,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:00,414 INFO Out dated connection ,size=0 + +2025-09-24 04:46:00,414 INFO Connection check task end + +2025-09-24 04:46:02,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:03,416 INFO Connection check task start + +2025-09-24 04:46:03,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:03,416 INFO Out dated connection ,size=0 + +2025-09-24 04:46:03,417 INFO Connection check task end + +2025-09-24 04:46:05,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:06,417 INFO Connection check task start + +2025-09-24 04:46:06,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:06,418 INFO Out dated connection ,size=0 + +2025-09-24 04:46:06,418 INFO Connection check task end + +2025-09-24 04:46:08,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:09,419 INFO Connection check task start + +2025-09-24 04:46:09,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:09,419 INFO Out dated connection ,size=0 + +2025-09-24 04:46:09,419 INFO Connection check task end + +2025-09-24 04:46:11,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:12,420 INFO Connection check task start + +2025-09-24 04:46:12,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:12,420 INFO Out dated connection ,size=0 + +2025-09-24 04:46:12,420 INFO Connection check task end + +2025-09-24 04:46:14,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:15,422 INFO Connection check task start + +2025-09-24 04:46:15,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:15,422 INFO Out dated connection ,size=0 + +2025-09-24 04:46:15,422 INFO Connection check task end + +2025-09-24 04:46:17,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:18,425 INFO Connection check task start + +2025-09-24 04:46:18,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:18,425 INFO Out dated connection ,size=0 + +2025-09-24 04:46:18,425 INFO Connection check task end + +2025-09-24 04:46:20,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:21,425 INFO Connection check task start + +2025-09-24 04:46:21,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:21,425 INFO Out dated connection ,size=0 + +2025-09-24 04:46:21,425 INFO Connection check task end + +2025-09-24 04:46:23,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:24,425 INFO Connection check task start + +2025-09-24 04:46:24,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:24,426 INFO Out dated connection ,size=0 + +2025-09-24 04:46:24,426 INFO Connection check task end + +2025-09-24 04:46:26,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:27,426 INFO Connection check task start + +2025-09-24 04:46:27,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:27,426 INFO Out dated connection ,size=0 + +2025-09-24 04:46:27,426 INFO Connection check task end + +2025-09-24 04:46:29,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:30,426 INFO Connection check task start + +2025-09-24 04:46:30,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:30,427 INFO Out dated connection ,size=0 + +2025-09-24 04:46:30,427 INFO Connection check task end + +2025-09-24 04:46:32,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:33,428 INFO Connection check task start + +2025-09-24 04:46:33,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:33,428 INFO Out dated connection ,size=0 + +2025-09-24 04:46:33,429 INFO Connection check task end + +2025-09-24 04:46:35,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:36,430 INFO Connection check task start + +2025-09-24 04:46:36,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:36,430 INFO Out dated connection ,size=0 + +2025-09-24 04:46:36,430 INFO Connection check task end + +2025-09-24 04:46:38,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:39,431 INFO Connection check task start + +2025-09-24 04:46:39,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:39,431 INFO Out dated connection ,size=0 + +2025-09-24 04:46:39,431 INFO Connection check task end + +2025-09-24 04:46:41,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:42,433 INFO Connection check task start + +2025-09-24 04:46:42,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:42,433 INFO Out dated connection ,size=0 + +2025-09-24 04:46:42,433 INFO Connection check task end + +2025-09-24 04:46:44,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:45,435 INFO Connection check task start + +2025-09-24 04:46:45,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:45,435 INFO Out dated connection ,size=0 + +2025-09-24 04:46:45,435 INFO Connection check task end + +2025-09-24 04:46:47,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:48,435 INFO Connection check task start + +2025-09-24 04:46:48,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:48,436 INFO Out dated connection ,size=0 + +2025-09-24 04:46:48,436 INFO Connection check task end + +2025-09-24 04:46:50,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:51,438 INFO Connection check task start + +2025-09-24 04:46:51,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:51,438 INFO Out dated connection ,size=0 + +2025-09-24 04:46:51,438 INFO Connection check task end + +2025-09-24 04:46:53,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:54,438 INFO Connection check task start + +2025-09-24 04:46:54,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:54,438 INFO Out dated connection ,size=0 + +2025-09-24 04:46:54,438 INFO Connection check task end + +2025-09-24 04:46:56,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:46:57,440 INFO Connection check task start + +2025-09-24 04:46:57,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:46:57,440 INFO Out dated connection ,size=0 + +2025-09-24 04:46:57,440 INFO Connection check task end + +2025-09-24 04:46:59,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:00,441 INFO Connection check task start + +2025-09-24 04:47:00,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:00,441 INFO Out dated connection ,size=0 + +2025-09-24 04:47:00,441 INFO Connection check task end + +2025-09-24 04:47:02,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:03,441 INFO Connection check task start + +2025-09-24 04:47:03,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:03,442 INFO Out dated connection ,size=0 + +2025-09-24 04:47:03,442 INFO Connection check task end + +2025-09-24 04:47:05,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:06,443 INFO Connection check task start + +2025-09-24 04:47:06,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:06,443 INFO Out dated connection ,size=0 + +2025-09-24 04:47:06,443 INFO Connection check task end + +2025-09-24 04:47:08,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:09,445 INFO Connection check task start + +2025-09-24 04:47:09,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:09,445 INFO Out dated connection ,size=0 + +2025-09-24 04:47:09,446 INFO Connection check task end + +2025-09-24 04:47:11,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:12,447 INFO Connection check task start + +2025-09-24 04:47:12,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:12,447 INFO Out dated connection ,size=0 + +2025-09-24 04:47:12,447 INFO Connection check task end + +2025-09-24 04:47:14,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:15,447 INFO Connection check task start + +2025-09-24 04:47:15,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:15,448 INFO Out dated connection ,size=0 + +2025-09-24 04:47:15,448 INFO Connection check task end + +2025-09-24 04:47:17,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:18,450 INFO Connection check task start + +2025-09-24 04:47:18,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:18,450 INFO Out dated connection ,size=0 + +2025-09-24 04:47:18,450 INFO Connection check task end + +2025-09-24 04:47:20,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:21,452 INFO Connection check task start + +2025-09-24 04:47:21,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:21,453 INFO Out dated connection ,size=0 + +2025-09-24 04:47:21,453 INFO Connection check task end + +2025-09-24 04:47:23,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:24,453 INFO Connection check task start + +2025-09-24 04:47:24,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:24,453 INFO Out dated connection ,size=0 + +2025-09-24 04:47:24,453 INFO Connection check task end + +2025-09-24 04:47:26,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:27,455 INFO Connection check task start + +2025-09-24 04:47:27,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:27,455 INFO Out dated connection ,size=0 + +2025-09-24 04:47:27,455 INFO Connection check task end + +2025-09-24 04:47:29,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:30,456 INFO Connection check task start + +2025-09-24 04:47:30,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:30,456 INFO Out dated connection ,size=0 + +2025-09-24 04:47:30,456 INFO Connection check task end + +2025-09-24 04:47:32,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:33,458 INFO Connection check task start + +2025-09-24 04:47:33,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:33,458 INFO Out dated connection ,size=0 + +2025-09-24 04:47:33,459 INFO Connection check task end + +2025-09-24 04:47:35,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:36,459 INFO Connection check task start + +2025-09-24 04:47:36,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:36,459 INFO Out dated connection ,size=0 + +2025-09-24 04:47:36,459 INFO Connection check task end + +2025-09-24 04:47:38,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:39,460 INFO Connection check task start + +2025-09-24 04:47:39,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:39,460 INFO Out dated connection ,size=0 + +2025-09-24 04:47:39,460 INFO Connection check task end + +2025-09-24 04:47:41,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:42,461 INFO Connection check task start + +2025-09-24 04:47:42,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:42,461 INFO Out dated connection ,size=0 + +2025-09-24 04:47:42,461 INFO Connection check task end + +2025-09-24 04:47:44,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:45,464 INFO Connection check task start + +2025-09-24 04:47:45,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:45,464 INFO Out dated connection ,size=0 + +2025-09-24 04:47:45,464 INFO Connection check task end + +2025-09-24 04:47:47,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:48,464 INFO Connection check task start + +2025-09-24 04:47:48,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:48,464 INFO Out dated connection ,size=0 + +2025-09-24 04:47:48,465 INFO Connection check task end + +2025-09-24 04:47:50,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:51,466 INFO Connection check task start + +2025-09-24 04:47:51,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:51,467 INFO Out dated connection ,size=0 + +2025-09-24 04:47:51,467 INFO Connection check task end + +2025-09-24 04:47:53,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:54,467 INFO Connection check task start + +2025-09-24 04:47:54,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:54,467 INFO Out dated connection ,size=0 + +2025-09-24 04:47:54,467 INFO Connection check task end + +2025-09-24 04:47:56,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:47:57,468 INFO Connection check task start + +2025-09-24 04:47:57,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:47:57,468 INFO Out dated connection ,size=0 + +2025-09-24 04:47:57,468 INFO Connection check task end + +2025-09-24 04:47:59,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:00,469 INFO Connection check task start + +2025-09-24 04:48:00,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:00,470 INFO Out dated connection ,size=0 + +2025-09-24 04:48:00,470 INFO Connection check task end + +2025-09-24 04:48:02,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:03,472 INFO Connection check task start + +2025-09-24 04:48:03,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:03,472 INFO Out dated connection ,size=0 + +2025-09-24 04:48:03,472 INFO Connection check task end + +2025-09-24 04:48:05,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:06,474 INFO Connection check task start + +2025-09-24 04:48:06,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:06,474 INFO Out dated connection ,size=0 + +2025-09-24 04:48:06,474 INFO Connection check task end + +2025-09-24 04:48:08,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:09,475 INFO Connection check task start + +2025-09-24 04:48:09,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:09,475 INFO Out dated connection ,size=0 + +2025-09-24 04:48:09,475 INFO Connection check task end + +2025-09-24 04:48:11,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:12,476 INFO Connection check task start + +2025-09-24 04:48:12,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:12,476 INFO Out dated connection ,size=0 + +2025-09-24 04:48:12,476 INFO Connection check task end + +2025-09-24 04:48:14,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:15,478 INFO Connection check task start + +2025-09-24 04:48:15,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:15,478 INFO Out dated connection ,size=0 + +2025-09-24 04:48:15,478 INFO Connection check task end + +2025-09-24 04:48:17,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:18,479 INFO Connection check task start + +2025-09-24 04:48:18,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:18,479 INFO Out dated connection ,size=0 + +2025-09-24 04:48:18,479 INFO Connection check task end + +2025-09-24 04:48:20,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:21,479 INFO Connection check task start + +2025-09-24 04:48:21,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:21,479 INFO Out dated connection ,size=0 + +2025-09-24 04:48:21,479 INFO Connection check task end + +2025-09-24 04:48:23,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:24,479 INFO Connection check task start + +2025-09-24 04:48:24,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:24,479 INFO Out dated connection ,size=0 + +2025-09-24 04:48:24,480 INFO Connection check task end + +2025-09-24 04:48:26,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:27,480 INFO Connection check task start + +2025-09-24 04:48:27,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:27,480 INFO Out dated connection ,size=0 + +2025-09-24 04:48:27,480 INFO Connection check task end + +2025-09-24 04:48:29,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:30,480 INFO Connection check task start + +2025-09-24 04:48:30,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:30,481 INFO Out dated connection ,size=0 + +2025-09-24 04:48:30,481 INFO Connection check task end + +2025-09-24 04:48:32,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:33,481 INFO Connection check task start + +2025-09-24 04:48:33,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:33,481 INFO Out dated connection ,size=0 + +2025-09-24 04:48:33,481 INFO Connection check task end + +2025-09-24 04:48:35,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:36,482 INFO Connection check task start + +2025-09-24 04:48:36,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:36,483 INFO Out dated connection ,size=0 + +2025-09-24 04:48:36,483 INFO Connection check task end + +2025-09-24 04:48:38,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:39,484 INFO Connection check task start + +2025-09-24 04:48:39,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:39,484 INFO Out dated connection ,size=0 + +2025-09-24 04:48:39,484 INFO Connection check task end + +2025-09-24 04:48:41,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:42,485 INFO Connection check task start + +2025-09-24 04:48:42,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:42,485 INFO Out dated connection ,size=0 + +2025-09-24 04:48:42,485 INFO Connection check task end + +2025-09-24 04:48:44,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:45,485 INFO Connection check task start + +2025-09-24 04:48:45,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:45,486 INFO Out dated connection ,size=0 + +2025-09-24 04:48:45,486 INFO Connection check task end + +2025-09-24 04:48:47,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:48,486 INFO Connection check task start + +2025-09-24 04:48:48,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:48,486 INFO Out dated connection ,size=0 + +2025-09-24 04:48:48,486 INFO Connection check task end + +2025-09-24 04:48:50,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:51,486 INFO Connection check task start + +2025-09-24 04:48:51,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:51,487 INFO Out dated connection ,size=0 + +2025-09-24 04:48:51,487 INFO Connection check task end + +2025-09-24 04:48:53,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:54,489 INFO Connection check task start + +2025-09-24 04:48:54,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:54,489 INFO Out dated connection ,size=0 + +2025-09-24 04:48:54,489 INFO Connection check task end + +2025-09-24 04:48:56,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:48:57,490 INFO Connection check task start + +2025-09-24 04:48:57,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:48:57,490 INFO Out dated connection ,size=0 + +2025-09-24 04:48:57,490 INFO Connection check task end + +2025-09-24 04:48:59,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:00,492 INFO Connection check task start + +2025-09-24 04:49:00,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:00,492 INFO Out dated connection ,size=0 + +2025-09-24 04:49:00,492 INFO Connection check task end + +2025-09-24 04:49:02,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:03,494 INFO Connection check task start + +2025-09-24 04:49:03,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:03,494 INFO Out dated connection ,size=0 + +2025-09-24 04:49:03,494 INFO Connection check task end + +2025-09-24 04:49:05,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:06,495 INFO Connection check task start + +2025-09-24 04:49:06,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:06,495 INFO Out dated connection ,size=0 + +2025-09-24 04:49:06,495 INFO Connection check task end + +2025-09-24 04:49:08,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:09,496 INFO Connection check task start + +2025-09-24 04:49:09,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:09,497 INFO Out dated connection ,size=0 + +2025-09-24 04:49:09,497 INFO Connection check task end + +2025-09-24 04:49:11,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:12,499 INFO Connection check task start + +2025-09-24 04:49:12,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:12,499 INFO Out dated connection ,size=0 + +2025-09-24 04:49:12,499 INFO Connection check task end + +2025-09-24 04:49:14,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:15,500 INFO Connection check task start + +2025-09-24 04:49:15,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:15,501 INFO Out dated connection ,size=0 + +2025-09-24 04:49:15,501 INFO Connection check task end + +2025-09-24 04:49:17,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:18,501 INFO Connection check task start + +2025-09-24 04:49:18,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:18,502 INFO Out dated connection ,size=0 + +2025-09-24 04:49:18,502 INFO Connection check task end + +2025-09-24 04:49:20,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:21,503 INFO Connection check task start + +2025-09-24 04:49:21,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:21,503 INFO Out dated connection ,size=0 + +2025-09-24 04:49:21,503 INFO Connection check task end + +2025-09-24 04:49:23,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:24,503 INFO Connection check task start + +2025-09-24 04:49:24,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:24,503 INFO Out dated connection ,size=0 + +2025-09-24 04:49:24,503 INFO Connection check task end + +2025-09-24 04:49:26,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:27,505 INFO Connection check task start + +2025-09-24 04:49:27,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:27,505 INFO Out dated connection ,size=0 + +2025-09-24 04:49:27,505 INFO Connection check task end + +2025-09-24 04:49:29,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:30,505 INFO Connection check task start + +2025-09-24 04:49:30,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:30,505 INFO Out dated connection ,size=0 + +2025-09-24 04:49:30,505 INFO Connection check task end + +2025-09-24 04:49:32,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:33,507 INFO Connection check task start + +2025-09-24 04:49:33,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:33,507 INFO Out dated connection ,size=0 + +2025-09-24 04:49:33,507 INFO Connection check task end + +2025-09-24 04:49:35,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:36,508 INFO Connection check task start + +2025-09-24 04:49:36,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:36,508 INFO Out dated connection ,size=0 + +2025-09-24 04:49:36,508 INFO Connection check task end + +2025-09-24 04:49:38,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:39,509 INFO Connection check task start + +2025-09-24 04:49:39,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:39,509 INFO Out dated connection ,size=0 + +2025-09-24 04:49:39,509 INFO Connection check task end + +2025-09-24 04:49:41,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:42,511 INFO Connection check task start + +2025-09-24 04:49:42,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:42,511 INFO Out dated connection ,size=0 + +2025-09-24 04:49:42,511 INFO Connection check task end + +2025-09-24 04:49:44,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:45,513 INFO Connection check task start + +2025-09-24 04:49:45,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:45,513 INFO Out dated connection ,size=0 + +2025-09-24 04:49:45,513 INFO Connection check task end + +2025-09-24 04:49:47,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:48,515 INFO Connection check task start + +2025-09-24 04:49:48,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:48,515 INFO Out dated connection ,size=0 + +2025-09-24 04:49:48,515 INFO Connection check task end + +2025-09-24 04:49:50,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:51,516 INFO Connection check task start + +2025-09-24 04:49:51,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:51,516 INFO Out dated connection ,size=0 + +2025-09-24 04:49:51,516 INFO Connection check task end + +2025-09-24 04:49:53,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:54,517 INFO Connection check task start + +2025-09-24 04:49:54,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:54,517 INFO Out dated connection ,size=0 + +2025-09-24 04:49:54,517 INFO Connection check task end + +2025-09-24 04:49:56,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:49:57,519 INFO Connection check task start + +2025-09-24 04:49:57,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:49:57,519 INFO Out dated connection ,size=0 + +2025-09-24 04:49:57,519 INFO Connection check task end + +2025-09-24 04:49:59,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:00,519 INFO Connection check task start + +2025-09-24 04:50:00,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:00,519 INFO Out dated connection ,size=0 + +2025-09-24 04:50:00,520 INFO Connection check task end + +2025-09-24 04:50:02,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:03,520 INFO Connection check task start + +2025-09-24 04:50:03,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:03,520 INFO Out dated connection ,size=0 + +2025-09-24 04:50:03,520 INFO Connection check task end + +2025-09-24 04:50:05,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:06,522 INFO Connection check task start + +2025-09-24 04:50:06,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:06,522 INFO Out dated connection ,size=0 + +2025-09-24 04:50:06,523 INFO Connection check task end + +2025-09-24 04:50:08,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:09,524 INFO Connection check task start + +2025-09-24 04:50:09,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:09,525 INFO Out dated connection ,size=0 + +2025-09-24 04:50:09,525 INFO Connection check task end + +2025-09-24 04:50:11,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:12,525 INFO Connection check task start + +2025-09-24 04:50:12,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:12,525 INFO Out dated connection ,size=0 + +2025-09-24 04:50:12,525 INFO Connection check task end + +2025-09-24 04:50:14,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:15,527 INFO Connection check task start + +2025-09-24 04:50:15,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:15,528 INFO Out dated connection ,size=0 + +2025-09-24 04:50:15,528 INFO Connection check task end + +2025-09-24 04:50:17,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:18,530 INFO Connection check task start + +2025-09-24 04:50:18,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:18,530 INFO Out dated connection ,size=0 + +2025-09-24 04:50:18,530 INFO Connection check task end + +2025-09-24 04:50:20,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:21,530 INFO Connection check task start + +2025-09-24 04:50:21,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:21,531 INFO Out dated connection ,size=0 + +2025-09-24 04:50:21,531 INFO Connection check task end + +2025-09-24 04:50:23,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:24,531 INFO Connection check task start + +2025-09-24 04:50:24,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:24,531 INFO Out dated connection ,size=0 + +2025-09-24 04:50:24,531 INFO Connection check task end + +2025-09-24 04:50:26,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:27,534 INFO Connection check task start + +2025-09-24 04:50:27,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:27,534 INFO Out dated connection ,size=0 + +2025-09-24 04:50:27,534 INFO Connection check task end + +2025-09-24 04:50:29,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:30,535 INFO Connection check task start + +2025-09-24 04:50:30,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:30,535 INFO Out dated connection ,size=0 + +2025-09-24 04:50:30,535 INFO Connection check task end + +2025-09-24 04:50:32,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:33,536 INFO Connection check task start + +2025-09-24 04:50:33,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:33,536 INFO Out dated connection ,size=0 + +2025-09-24 04:50:33,536 INFO Connection check task end + +2025-09-24 04:50:35,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:36,536 INFO Connection check task start + +2025-09-24 04:50:36,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:36,536 INFO Out dated connection ,size=0 + +2025-09-24 04:50:36,536 INFO Connection check task end + +2025-09-24 04:50:38,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:39,537 INFO Connection check task start + +2025-09-24 04:50:39,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:39,537 INFO Out dated connection ,size=0 + +2025-09-24 04:50:39,537 INFO Connection check task end + +2025-09-24 04:50:41,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:42,538 INFO Connection check task start + +2025-09-24 04:50:42,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:42,539 INFO Out dated connection ,size=0 + +2025-09-24 04:50:42,539 INFO Connection check task end + +2025-09-24 04:50:44,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:45,541 INFO Connection check task start + +2025-09-24 04:50:45,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:45,541 INFO Out dated connection ,size=0 + +2025-09-24 04:50:45,541 INFO Connection check task end + +2025-09-24 04:50:47,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:48,541 INFO Connection check task start + +2025-09-24 04:50:48,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:48,542 INFO Out dated connection ,size=0 + +2025-09-24 04:50:48,542 INFO Connection check task end + +2025-09-24 04:50:50,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:51,542 INFO Connection check task start + +2025-09-24 04:50:51,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:51,542 INFO Out dated connection ,size=0 + +2025-09-24 04:50:51,542 INFO Connection check task end + +2025-09-24 04:50:53,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:54,544 INFO Connection check task start + +2025-09-24 04:50:54,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:54,544 INFO Out dated connection ,size=0 + +2025-09-24 04:50:54,544 INFO Connection check task end + +2025-09-24 04:50:56,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:50:57,546 INFO Connection check task start + +2025-09-24 04:50:57,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:50:57,546 INFO Out dated connection ,size=0 + +2025-09-24 04:50:57,546 INFO Connection check task end + +2025-09-24 04:50:59,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:00,547 INFO Connection check task start + +2025-09-24 04:51:00,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:00,547 INFO Out dated connection ,size=0 + +2025-09-24 04:51:00,547 INFO Connection check task end + +2025-09-24 04:51:02,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:03,548 INFO Connection check task start + +2025-09-24 04:51:03,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:03,548 INFO Out dated connection ,size=0 + +2025-09-24 04:51:03,548 INFO Connection check task end + +2025-09-24 04:51:05,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:06,549 INFO Connection check task start + +2025-09-24 04:51:06,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:06,549 INFO Out dated connection ,size=0 + +2025-09-24 04:51:06,549 INFO Connection check task end + +2025-09-24 04:51:08,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:09,551 INFO Connection check task start + +2025-09-24 04:51:09,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:09,551 INFO Out dated connection ,size=0 + +2025-09-24 04:51:09,551 INFO Connection check task end + +2025-09-24 04:51:11,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:12,552 INFO Connection check task start + +2025-09-24 04:51:12,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:12,552 INFO Out dated connection ,size=0 + +2025-09-24 04:51:12,552 INFO Connection check task end + +2025-09-24 04:51:14,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:15,554 INFO Connection check task start + +2025-09-24 04:51:15,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:15,554 INFO Out dated connection ,size=0 + +2025-09-24 04:51:15,554 INFO Connection check task end + +2025-09-24 04:51:17,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:18,555 INFO Connection check task start + +2025-09-24 04:51:18,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:18,555 INFO Out dated connection ,size=0 + +2025-09-24 04:51:18,555 INFO Connection check task end + +2025-09-24 04:51:20,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:21,555 INFO Connection check task start + +2025-09-24 04:51:21,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:21,555 INFO Out dated connection ,size=0 + +2025-09-24 04:51:21,555 INFO Connection check task end + +2025-09-24 04:51:23,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:24,556 INFO Connection check task start + +2025-09-24 04:51:24,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:24,556 INFO Out dated connection ,size=0 + +2025-09-24 04:51:24,556 INFO Connection check task end + +2025-09-24 04:51:26,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:27,558 INFO Connection check task start + +2025-09-24 04:51:27,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:27,558 INFO Out dated connection ,size=0 + +2025-09-24 04:51:27,558 INFO Connection check task end + +2025-09-24 04:51:29,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:30,559 INFO Connection check task start + +2025-09-24 04:51:30,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:30,559 INFO Out dated connection ,size=0 + +2025-09-24 04:51:30,559 INFO Connection check task end + +2025-09-24 04:51:32,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:33,561 INFO Connection check task start + +2025-09-24 04:51:33,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:33,561 INFO Out dated connection ,size=0 + +2025-09-24 04:51:33,561 INFO Connection check task end + +2025-09-24 04:51:35,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:36,562 INFO Connection check task start + +2025-09-24 04:51:36,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:36,562 INFO Out dated connection ,size=0 + +2025-09-24 04:51:36,562 INFO Connection check task end + +2025-09-24 04:51:38,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:39,562 INFO Connection check task start + +2025-09-24 04:51:39,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:39,562 INFO Out dated connection ,size=0 + +2025-09-24 04:51:39,563 INFO Connection check task end + +2025-09-24 04:51:41,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:42,563 INFO Connection check task start + +2025-09-24 04:51:42,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:42,563 INFO Out dated connection ,size=0 + +2025-09-24 04:51:42,563 INFO Connection check task end + +2025-09-24 04:51:44,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:45,563 INFO Connection check task start + +2025-09-24 04:51:45,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:45,564 INFO Out dated connection ,size=0 + +2025-09-24 04:51:45,564 INFO Connection check task end + +2025-09-24 04:51:47,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:48,564 INFO Connection check task start + +2025-09-24 04:51:48,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:48,564 INFO Out dated connection ,size=0 + +2025-09-24 04:51:48,564 INFO Connection check task end + +2025-09-24 04:51:50,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:51,565 INFO Connection check task start + +2025-09-24 04:51:51,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:51,565 INFO Out dated connection ,size=0 + +2025-09-24 04:51:51,565 INFO Connection check task end + +2025-09-24 04:51:53,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:54,567 INFO Connection check task start + +2025-09-24 04:51:54,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:54,567 INFO Out dated connection ,size=0 + +2025-09-24 04:51:54,567 INFO Connection check task end + +2025-09-24 04:51:56,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:51:57,568 INFO Connection check task start + +2025-09-24 04:51:57,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:51:57,568 INFO Out dated connection ,size=0 + +2025-09-24 04:51:57,568 INFO Connection check task end + +2025-09-24 04:51:59,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:00,568 INFO Connection check task start + +2025-09-24 04:52:00,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:00,569 INFO Out dated connection ,size=0 + +2025-09-24 04:52:00,569 INFO Connection check task end + +2025-09-24 04:52:02,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:03,571 INFO Connection check task start + +2025-09-24 04:52:03,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:03,571 INFO Out dated connection ,size=0 + +2025-09-24 04:52:03,571 INFO Connection check task end + +2025-09-24 04:52:05,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:06,572 INFO Connection check task start + +2025-09-24 04:52:06,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:06,573 INFO Out dated connection ,size=0 + +2025-09-24 04:52:06,573 INFO Connection check task end + +2025-09-24 04:52:08,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:09,573 INFO Connection check task start + +2025-09-24 04:52:09,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:09,573 INFO Out dated connection ,size=0 + +2025-09-24 04:52:09,573 INFO Connection check task end + +2025-09-24 04:52:11,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:12,574 INFO Connection check task start + +2025-09-24 04:52:12,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:12,574 INFO Out dated connection ,size=0 + +2025-09-24 04:52:12,574 INFO Connection check task end + +2025-09-24 04:52:14,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:15,576 INFO Connection check task start + +2025-09-24 04:52:15,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:15,576 INFO Out dated connection ,size=0 + +2025-09-24 04:52:15,576 INFO Connection check task end + +2025-09-24 04:52:17,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:18,578 INFO Connection check task start + +2025-09-24 04:52:18,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:18,578 INFO Out dated connection ,size=0 + +2025-09-24 04:52:18,578 INFO Connection check task end + +2025-09-24 04:52:21,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:21,579 INFO Connection check task start + +2025-09-24 04:52:21,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:21,579 INFO Out dated connection ,size=0 + +2025-09-24 04:52:21,579 INFO Connection check task end + +2025-09-24 04:52:24,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:24,579 INFO Connection check task start + +2025-09-24 04:52:24,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:24,580 INFO Out dated connection ,size=0 + +2025-09-24 04:52:24,580 INFO Connection check task end + +2025-09-24 04:52:27,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:27,580 INFO Connection check task start + +2025-09-24 04:52:27,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:27,580 INFO Out dated connection ,size=0 + +2025-09-24 04:52:27,580 INFO Connection check task end + +2025-09-24 04:52:30,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:30,582 INFO Connection check task start + +2025-09-24 04:52:30,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:30,583 INFO Out dated connection ,size=0 + +2025-09-24 04:52:30,583 INFO Connection check task end + +2025-09-24 04:52:33,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:33,583 INFO Connection check task start + +2025-09-24 04:52:33,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:33,583 INFO Out dated connection ,size=0 + +2025-09-24 04:52:33,583 INFO Connection check task end + +2025-09-24 04:52:36,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:36,585 INFO Connection check task start + +2025-09-24 04:52:36,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:36,586 INFO Out dated connection ,size=0 + +2025-09-24 04:52:36,586 INFO Connection check task end + +2025-09-24 04:52:39,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:39,586 INFO Connection check task start + +2025-09-24 04:52:39,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:39,586 INFO Out dated connection ,size=0 + +2025-09-24 04:52:39,586 INFO Connection check task end + +2025-09-24 04:52:42,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:42,588 INFO Connection check task start + +2025-09-24 04:52:42,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:42,588 INFO Out dated connection ,size=0 + +2025-09-24 04:52:42,588 INFO Connection check task end + +2025-09-24 04:52:45,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:45,589 INFO Connection check task start + +2025-09-24 04:52:45,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:45,590 INFO Out dated connection ,size=0 + +2025-09-24 04:52:45,590 INFO Connection check task end + +2025-09-24 04:52:48,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:48,590 INFO Connection check task start + +2025-09-24 04:52:48,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:48,590 INFO Out dated connection ,size=0 + +2025-09-24 04:52:48,590 INFO Connection check task end + +2025-09-24 04:52:51,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:51,593 INFO Connection check task start + +2025-09-24 04:52:51,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:51,593 INFO Out dated connection ,size=0 + +2025-09-24 04:52:51,593 INFO Connection check task end + +2025-09-24 04:52:54,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:54,593 INFO Connection check task start + +2025-09-24 04:52:54,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:54,593 INFO Out dated connection ,size=0 + +2025-09-24 04:52:54,593 INFO Connection check task end + +2025-09-24 04:52:57,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:52:57,595 INFO Connection check task start + +2025-09-24 04:52:57,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:52:57,595 INFO Out dated connection ,size=0 + +2025-09-24 04:52:57,596 INFO Connection check task end + +2025-09-24 04:53:00,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:00,596 INFO Connection check task start + +2025-09-24 04:53:00,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:00,596 INFO Out dated connection ,size=0 + +2025-09-24 04:53:00,596 INFO Connection check task end + +2025-09-24 04:53:03,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:03,596 INFO Connection check task start + +2025-09-24 04:53:03,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:03,597 INFO Out dated connection ,size=0 + +2025-09-24 04:53:03,597 INFO Connection check task end + +2025-09-24 04:53:06,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:06,597 INFO Connection check task start + +2025-09-24 04:53:06,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:06,597 INFO Out dated connection ,size=0 + +2025-09-24 04:53:06,597 INFO Connection check task end + +2025-09-24 04:53:09,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:09,597 INFO Connection check task start + +2025-09-24 04:53:09,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:09,598 INFO Out dated connection ,size=0 + +2025-09-24 04:53:09,598 INFO Connection check task end + +2025-09-24 04:53:12,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:12,598 INFO Connection check task start + +2025-09-24 04:53:12,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:12,598 INFO Out dated connection ,size=0 + +2025-09-24 04:53:12,598 INFO Connection check task end + +2025-09-24 04:53:15,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:15,599 INFO Connection check task start + +2025-09-24 04:53:15,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:15,599 INFO Out dated connection ,size=0 + +2025-09-24 04:53:15,599 INFO Connection check task end + +2025-09-24 04:53:18,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:18,599 INFO Connection check task start + +2025-09-24 04:53:18,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:18,599 INFO Out dated connection ,size=0 + +2025-09-24 04:53:18,599 INFO Connection check task end + +2025-09-24 04:53:21,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:21,600 INFO Connection check task start + +2025-09-24 04:53:21,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:21,600 INFO Out dated connection ,size=0 + +2025-09-24 04:53:21,600 INFO Connection check task end + +2025-09-24 04:53:24,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:24,602 INFO Connection check task start + +2025-09-24 04:53:24,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:24,602 INFO Out dated connection ,size=0 + +2025-09-24 04:53:24,602 INFO Connection check task end + +2025-09-24 04:53:27,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:27,603 INFO Connection check task start + +2025-09-24 04:53:27,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:27,603 INFO Out dated connection ,size=0 + +2025-09-24 04:53:27,603 INFO Connection check task end + +2025-09-24 04:53:30,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:30,603 INFO Connection check task start + +2025-09-24 04:53:30,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:30,603 INFO Out dated connection ,size=0 + +2025-09-24 04:53:30,603 INFO Connection check task end + +2025-09-24 04:53:33,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:33,604 INFO Connection check task start + +2025-09-24 04:53:33,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:33,604 INFO Out dated connection ,size=0 + +2025-09-24 04:53:33,604 INFO Connection check task end + +2025-09-24 04:53:36,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:36,605 INFO Connection check task start + +2025-09-24 04:53:36,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:36,605 INFO Out dated connection ,size=0 + +2025-09-24 04:53:36,605 INFO Connection check task end + +2025-09-24 04:53:39,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:39,606 INFO Connection check task start + +2025-09-24 04:53:39,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:39,606 INFO Out dated connection ,size=0 + +2025-09-24 04:53:39,606 INFO Connection check task end + +2025-09-24 04:53:42,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:42,607 INFO Connection check task start + +2025-09-24 04:53:42,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:42,607 INFO Out dated connection ,size=0 + +2025-09-24 04:53:42,607 INFO Connection check task end + +2025-09-24 04:53:45,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:45,608 INFO Connection check task start + +2025-09-24 04:53:45,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:45,608 INFO Out dated connection ,size=0 + +2025-09-24 04:53:45,608 INFO Connection check task end + +2025-09-24 04:53:48,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:48,609 INFO Connection check task start + +2025-09-24 04:53:48,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:48,610 INFO Out dated connection ,size=0 + +2025-09-24 04:53:48,610 INFO Connection check task end + +2025-09-24 04:53:51,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:51,611 INFO Connection check task start + +2025-09-24 04:53:51,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:51,612 INFO Out dated connection ,size=0 + +2025-09-24 04:53:51,612 INFO Connection check task end + +2025-09-24 04:53:54,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:54,612 INFO Connection check task start + +2025-09-24 04:53:54,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:54,612 INFO Out dated connection ,size=0 + +2025-09-24 04:53:54,612 INFO Connection check task end + +2025-09-24 04:53:57,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:53:57,614 INFO Connection check task start + +2025-09-24 04:53:57,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:53:57,614 INFO Out dated connection ,size=0 + +2025-09-24 04:53:57,614 INFO Connection check task end + +2025-09-24 04:54:00,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:00,615 INFO Connection check task start + +2025-09-24 04:54:00,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:00,615 INFO Out dated connection ,size=0 + +2025-09-24 04:54:00,615 INFO Connection check task end + +2025-09-24 04:54:03,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:03,616 INFO Connection check task start + +2025-09-24 04:54:03,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:03,616 INFO Out dated connection ,size=0 + +2025-09-24 04:54:03,616 INFO Connection check task end + +2025-09-24 04:54:06,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:06,616 INFO Connection check task start + +2025-09-24 04:54:06,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:06,616 INFO Out dated connection ,size=0 + +2025-09-24 04:54:06,616 INFO Connection check task end + +2025-09-24 04:54:09,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:09,619 INFO Connection check task start + +2025-09-24 04:54:09,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:09,619 INFO Out dated connection ,size=0 + +2025-09-24 04:54:09,619 INFO Connection check task end + +2025-09-24 04:54:12,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:12,621 INFO Connection check task start + +2025-09-24 04:54:12,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:12,621 INFO Out dated connection ,size=0 + +2025-09-24 04:54:12,621 INFO Connection check task end + +2025-09-24 04:54:15,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:15,623 INFO Connection check task start + +2025-09-24 04:54:15,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:15,623 INFO Out dated connection ,size=0 + +2025-09-24 04:54:15,623 INFO Connection check task end + +2025-09-24 04:54:18,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:18,624 INFO Connection check task start + +2025-09-24 04:54:18,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:18,625 INFO Out dated connection ,size=0 + +2025-09-24 04:54:18,625 INFO Connection check task end + +2025-09-24 04:54:21,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:21,625 INFO Connection check task start + +2025-09-24 04:54:21,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:21,625 INFO Out dated connection ,size=0 + +2025-09-24 04:54:21,625 INFO Connection check task end + +2025-09-24 04:54:24,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:24,625 INFO Connection check task start + +2025-09-24 04:54:24,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:24,626 INFO Out dated connection ,size=0 + +2025-09-24 04:54:24,626 INFO Connection check task end + +2025-09-24 04:54:27,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:27,627 INFO Connection check task start + +2025-09-24 04:54:27,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:27,628 INFO Out dated connection ,size=0 + +2025-09-24 04:54:27,628 INFO Connection check task end + +2025-09-24 04:54:30,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:30,628 INFO Connection check task start + +2025-09-24 04:54:30,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:30,628 INFO Out dated connection ,size=0 + +2025-09-24 04:54:30,628 INFO Connection check task end + +2025-09-24 04:54:33,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:33,631 INFO Connection check task start + +2025-09-24 04:54:33,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:33,631 INFO Out dated connection ,size=0 + +2025-09-24 04:54:33,631 INFO Connection check task end + +2025-09-24 04:54:36,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:36,632 INFO Connection check task start + +2025-09-24 04:54:36,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:36,632 INFO Out dated connection ,size=0 + +2025-09-24 04:54:36,632 INFO Connection check task end + +2025-09-24 04:54:39,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:39,634 INFO Connection check task start + +2025-09-24 04:54:39,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:39,634 INFO Out dated connection ,size=0 + +2025-09-24 04:54:39,634 INFO Connection check task end + +2025-09-24 04:54:42,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:42,636 INFO Connection check task start + +2025-09-24 04:54:42,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:42,636 INFO Out dated connection ,size=0 + +2025-09-24 04:54:42,636 INFO Connection check task end + +2025-09-24 04:54:45,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:45,637 INFO Connection check task start + +2025-09-24 04:54:45,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:45,637 INFO Out dated connection ,size=0 + +2025-09-24 04:54:45,637 INFO Connection check task end + +2025-09-24 04:54:48,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:48,638 INFO Connection check task start + +2025-09-24 04:54:48,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:48,638 INFO Out dated connection ,size=0 + +2025-09-24 04:54:48,638 INFO Connection check task end + +2025-09-24 04:54:51,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:51,638 INFO Connection check task start + +2025-09-24 04:54:51,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:51,639 INFO Out dated connection ,size=0 + +2025-09-24 04:54:51,639 INFO Connection check task end + +2025-09-24 04:54:54,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:54,641 INFO Connection check task start + +2025-09-24 04:54:54,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:54,641 INFO Out dated connection ,size=0 + +2025-09-24 04:54:54,641 INFO Connection check task end + +2025-09-24 04:54:57,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:54:57,641 INFO Connection check task start + +2025-09-24 04:54:57,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:54:57,641 INFO Out dated connection ,size=0 + +2025-09-24 04:54:57,641 INFO Connection check task end + +2025-09-24 04:55:00,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:00,644 INFO Connection check task start + +2025-09-24 04:55:00,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:00,644 INFO Out dated connection ,size=0 + +2025-09-24 04:55:00,644 INFO Connection check task end + +2025-09-24 04:55:03,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:03,646 INFO Connection check task start + +2025-09-24 04:55:03,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:03,646 INFO Out dated connection ,size=0 + +2025-09-24 04:55:03,646 INFO Connection check task end + +2025-09-24 04:55:06,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:06,646 INFO Connection check task start + +2025-09-24 04:55:06,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:06,657 INFO Out dated connection ,size=0 + +2025-09-24 04:55:06,657 INFO Connection check task end + +2025-09-24 04:55:09,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:09,657 INFO Connection check task start + +2025-09-24 04:55:09,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:09,657 INFO Out dated connection ,size=0 + +2025-09-24 04:55:09,657 INFO Connection check task end + +2025-09-24 04:55:12,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:12,659 INFO Connection check task start + +2025-09-24 04:55:12,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:12,660 INFO Out dated connection ,size=0 + +2025-09-24 04:55:12,660 INFO Connection check task end + +2025-09-24 04:55:15,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:15,660 INFO Connection check task start + +2025-09-24 04:55:15,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:15,660 INFO Out dated connection ,size=0 + +2025-09-24 04:55:15,660 INFO Connection check task end + +2025-09-24 04:55:18,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:18,662 INFO Connection check task start + +2025-09-24 04:55:18,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:18,662 INFO Out dated connection ,size=0 + +2025-09-24 04:55:18,662 INFO Connection check task end + +2025-09-24 04:55:21,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:21,665 INFO Connection check task start + +2025-09-24 04:55:21,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:21,665 INFO Out dated connection ,size=0 + +2025-09-24 04:55:21,665 INFO Connection check task end + +2025-09-24 04:55:24,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:24,666 INFO Connection check task start + +2025-09-24 04:55:24,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:24,667 INFO Out dated connection ,size=0 + +2025-09-24 04:55:24,667 INFO Connection check task end + +2025-09-24 04:55:27,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:27,667 INFO Connection check task start + +2025-09-24 04:55:27,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:27,667 INFO Out dated connection ,size=0 + +2025-09-24 04:55:27,667 INFO Connection check task end + +2025-09-24 04:55:30,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:30,668 INFO Connection check task start + +2025-09-24 04:55:30,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:30,669 INFO Out dated connection ,size=0 + +2025-09-24 04:55:30,669 INFO Connection check task end + +2025-09-24 04:55:33,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:33,670 INFO Connection check task start + +2025-09-24 04:55:33,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:33,670 INFO Out dated connection ,size=0 + +2025-09-24 04:55:33,670 INFO Connection check task end + +2025-09-24 04:55:36,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:36,672 INFO Connection check task start + +2025-09-24 04:55:36,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:36,673 INFO Out dated connection ,size=0 + +2025-09-24 04:55:36,673 INFO Connection check task end + +2025-09-24 04:55:39,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:39,673 INFO Connection check task start + +2025-09-24 04:55:39,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:39,673 INFO Out dated connection ,size=0 + +2025-09-24 04:55:39,673 INFO Connection check task end + +2025-09-24 04:55:42,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:42,674 INFO Connection check task start + +2025-09-24 04:55:42,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:42,674 INFO Out dated connection ,size=0 + +2025-09-24 04:55:42,674 INFO Connection check task end + +2025-09-24 04:55:45,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:45,675 INFO Connection check task start + +2025-09-24 04:55:45,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:45,675 INFO Out dated connection ,size=0 + +2025-09-24 04:55:45,675 INFO Connection check task end + +2025-09-24 04:55:48,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:48,676 INFO Connection check task start + +2025-09-24 04:55:48,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:48,676 INFO Out dated connection ,size=0 + +2025-09-24 04:55:48,676 INFO Connection check task end + +2025-09-24 04:55:51,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:51,678 INFO Connection check task start + +2025-09-24 04:55:51,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:51,678 INFO Out dated connection ,size=0 + +2025-09-24 04:55:51,678 INFO Connection check task end + +2025-09-24 04:55:54,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:54,680 INFO Connection check task start + +2025-09-24 04:55:54,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:54,680 INFO Out dated connection ,size=0 + +2025-09-24 04:55:54,680 INFO Connection check task end + +2025-09-24 04:55:57,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:55:57,680 INFO Connection check task start + +2025-09-24 04:55:57,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:55:57,681 INFO Out dated connection ,size=0 + +2025-09-24 04:55:57,681 INFO Connection check task end + +2025-09-24 04:56:00,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:00,681 INFO Connection check task start + +2025-09-24 04:56:00,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:00,682 INFO Out dated connection ,size=0 + +2025-09-24 04:56:00,682 INFO Connection check task end + +2025-09-24 04:56:03,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:03,682 INFO Connection check task start + +2025-09-24 04:56:03,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:03,682 INFO Out dated connection ,size=0 + +2025-09-24 04:56:03,682 INFO Connection check task end + +2025-09-24 04:56:06,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:06,683 INFO Connection check task start + +2025-09-24 04:56:06,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:06,683 INFO Out dated connection ,size=0 + +2025-09-24 04:56:06,683 INFO Connection check task end + +2025-09-24 04:56:09,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:09,684 INFO Connection check task start + +2025-09-24 04:56:09,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:09,684 INFO Out dated connection ,size=0 + +2025-09-24 04:56:09,684 INFO Connection check task end + +2025-09-24 04:56:12,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:12,684 INFO Connection check task start + +2025-09-24 04:56:12,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:12,684 INFO Out dated connection ,size=0 + +2025-09-24 04:56:12,685 INFO Connection check task end + +2025-09-24 04:56:15,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:15,687 INFO Connection check task start + +2025-09-24 04:56:15,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:15,687 INFO Out dated connection ,size=0 + +2025-09-24 04:56:15,687 INFO Connection check task end + +2025-09-24 04:56:18,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:18,687 INFO Connection check task start + +2025-09-24 04:56:18,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:18,687 INFO Out dated connection ,size=0 + +2025-09-24 04:56:18,687 INFO Connection check task end + +2025-09-24 04:56:21,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:21,688 INFO Connection check task start + +2025-09-24 04:56:21,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:21,688 INFO Out dated connection ,size=0 + +2025-09-24 04:56:21,688 INFO Connection check task end + +2025-09-24 04:56:24,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:24,688 INFO Connection check task start + +2025-09-24 04:56:24,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:24,688 INFO Out dated connection ,size=0 + +2025-09-24 04:56:24,688 INFO Connection check task end + +2025-09-24 04:56:27,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:27,689 INFO Connection check task start + +2025-09-24 04:56:27,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:27,689 INFO Out dated connection ,size=0 + +2025-09-24 04:56:27,689 INFO Connection check task end + +2025-09-24 04:56:30,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:30,690 INFO Connection check task start + +2025-09-24 04:56:30,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:30,690 INFO Out dated connection ,size=0 + +2025-09-24 04:56:30,690 INFO Connection check task end + +2025-09-24 04:56:33,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:33,690 INFO Connection check task start + +2025-09-24 04:56:33,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:33,690 INFO Out dated connection ,size=0 + +2025-09-24 04:56:33,691 INFO Connection check task end + +2025-09-24 04:56:36,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:36,693 INFO Connection check task start + +2025-09-24 04:56:36,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:36,693 INFO Out dated connection ,size=0 + +2025-09-24 04:56:36,693 INFO Connection check task end + +2025-09-24 04:56:39,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:39,693 INFO Connection check task start + +2025-09-24 04:56:39,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:39,693 INFO Out dated connection ,size=0 + +2025-09-24 04:56:39,693 INFO Connection check task end + +2025-09-24 04:56:42,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:42,694 INFO Connection check task start + +2025-09-24 04:56:42,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:42,694 INFO Out dated connection ,size=0 + +2025-09-24 04:56:42,694 INFO Connection check task end + +2025-09-24 04:56:45,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:45,694 INFO Connection check task start + +2025-09-24 04:56:45,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:45,694 INFO Out dated connection ,size=0 + +2025-09-24 04:56:45,694 INFO Connection check task end + +2025-09-24 04:56:48,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:48,695 INFO Connection check task start + +2025-09-24 04:56:48,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:48,695 INFO Out dated connection ,size=0 + +2025-09-24 04:56:48,696 INFO Connection check task end + +2025-09-24 04:56:51,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:51,696 INFO Connection check task start + +2025-09-24 04:56:51,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:51,696 INFO Out dated connection ,size=0 + +2025-09-24 04:56:51,696 INFO Connection check task end + +2025-09-24 04:56:54,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:54,698 INFO Connection check task start + +2025-09-24 04:56:54,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:54,699 INFO Out dated connection ,size=0 + +2025-09-24 04:56:54,699 INFO Connection check task end + +2025-09-24 04:56:57,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:56:57,699 INFO Connection check task start + +2025-09-24 04:56:57,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:56:57,700 INFO Out dated connection ,size=0 + +2025-09-24 04:56:57,700 INFO Connection check task end + +2025-09-24 04:57:00,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:00,700 INFO Connection check task start + +2025-09-24 04:57:00,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:00,701 INFO Out dated connection ,size=0 + +2025-09-24 04:57:00,701 INFO Connection check task end + +2025-09-24 04:57:03,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:03,702 INFO Connection check task start + +2025-09-24 04:57:03,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:03,702 INFO Out dated connection ,size=0 + +2025-09-24 04:57:03,702 INFO Connection check task end + +2025-09-24 04:57:06,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:06,703 INFO Connection check task start + +2025-09-24 04:57:06,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:06,703 INFO Out dated connection ,size=0 + +2025-09-24 04:57:06,703 INFO Connection check task end + +2025-09-24 04:57:09,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:09,705 INFO Connection check task start + +2025-09-24 04:57:09,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:09,705 INFO Out dated connection ,size=0 + +2025-09-24 04:57:09,705 INFO Connection check task end + +2025-09-24 04:57:12,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:12,705 INFO Connection check task start + +2025-09-24 04:57:12,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:12,706 INFO Out dated connection ,size=0 + +2025-09-24 04:57:12,706 INFO Connection check task end + +2025-09-24 04:57:15,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:15,706 INFO Connection check task start + +2025-09-24 04:57:15,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:15,706 INFO Out dated connection ,size=0 + +2025-09-24 04:57:15,706 INFO Connection check task end + +2025-09-24 04:57:18,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:18,707 INFO Connection check task start + +2025-09-24 04:57:18,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:18,707 INFO Out dated connection ,size=0 + +2025-09-24 04:57:18,707 INFO Connection check task end + +2025-09-24 04:57:21,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:21,707 INFO Connection check task start + +2025-09-24 04:57:21,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:21,707 INFO Out dated connection ,size=0 + +2025-09-24 04:57:21,707 INFO Connection check task end + +2025-09-24 04:57:24,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:24,708 INFO Connection check task start + +2025-09-24 04:57:24,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:24,708 INFO Out dated connection ,size=0 + +2025-09-24 04:57:24,708 INFO Connection check task end + +2025-09-24 04:57:27,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:27,709 INFO Connection check task start + +2025-09-24 04:57:27,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:27,709 INFO Out dated connection ,size=0 + +2025-09-24 04:57:27,709 INFO Connection check task end + +2025-09-24 04:57:30,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:30,709 INFO Connection check task start + +2025-09-24 04:57:30,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:30,710 INFO Out dated connection ,size=0 + +2025-09-24 04:57:30,710 INFO Connection check task end + +2025-09-24 04:57:33,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:33,710 INFO Connection check task start + +2025-09-24 04:57:33,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:33,710 INFO Out dated connection ,size=0 + +2025-09-24 04:57:33,710 INFO Connection check task end + +2025-09-24 04:57:36,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:36,711 INFO Connection check task start + +2025-09-24 04:57:36,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:36,711 INFO Out dated connection ,size=0 + +2025-09-24 04:57:36,711 INFO Connection check task end + +2025-09-24 04:57:39,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:39,712 INFO Connection check task start + +2025-09-24 04:57:39,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:39,712 INFO Out dated connection ,size=0 + +2025-09-24 04:57:39,712 INFO Connection check task end + +2025-09-24 04:57:42,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:42,714 INFO Connection check task start + +2025-09-24 04:57:42,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:42,715 INFO Out dated connection ,size=0 + +2025-09-24 04:57:42,715 INFO Connection check task end + +2025-09-24 04:57:45,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:45,715 INFO Connection check task start + +2025-09-24 04:57:45,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:45,715 INFO Out dated connection ,size=0 + +2025-09-24 04:57:45,715 INFO Connection check task end + +2025-09-24 04:57:48,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:48,717 INFO Connection check task start + +2025-09-24 04:57:48,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:48,717 INFO Out dated connection ,size=0 + +2025-09-24 04:57:48,717 INFO Connection check task end + +2025-09-24 04:57:51,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:51,717 INFO Connection check task start + +2025-09-24 04:57:51,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:51,717 INFO Out dated connection ,size=0 + +2025-09-24 04:57:51,718 INFO Connection check task end + +2025-09-24 04:57:54,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:54,718 INFO Connection check task start + +2025-09-24 04:57:54,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:54,718 INFO Out dated connection ,size=0 + +2025-09-24 04:57:54,718 INFO Connection check task end + +2025-09-24 04:57:57,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:57:57,719 INFO Connection check task start + +2025-09-24 04:57:57,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:57:57,719 INFO Out dated connection ,size=0 + +2025-09-24 04:57:57,719 INFO Connection check task end + +2025-09-24 04:58:00,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:00,721 INFO Connection check task start + +2025-09-24 04:58:00,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:00,721 INFO Out dated connection ,size=0 + +2025-09-24 04:58:00,721 INFO Connection check task end + +2025-09-24 04:58:03,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:03,722 INFO Connection check task start + +2025-09-24 04:58:03,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:03,722 INFO Out dated connection ,size=0 + +2025-09-24 04:58:03,723 INFO Connection check task end + +2025-09-24 04:58:06,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:06,723 INFO Connection check task start + +2025-09-24 04:58:06,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:06,723 INFO Out dated connection ,size=0 + +2025-09-24 04:58:06,723 INFO Connection check task end + +2025-09-24 04:58:09,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:09,723 INFO Connection check task start + +2025-09-24 04:58:09,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:09,724 INFO Out dated connection ,size=0 + +2025-09-24 04:58:09,724 INFO Connection check task end + +2025-09-24 04:58:12,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:12,725 INFO Connection check task start + +2025-09-24 04:58:12,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:12,725 INFO Out dated connection ,size=0 + +2025-09-24 04:58:12,725 INFO Connection check task end + +2025-09-24 04:58:15,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:15,726 INFO Connection check task start + +2025-09-24 04:58:15,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:15,726 INFO Out dated connection ,size=0 + +2025-09-24 04:58:15,726 INFO Connection check task end + +2025-09-24 04:58:18,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:18,728 INFO Connection check task start + +2025-09-24 04:58:18,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:18,728 INFO Out dated connection ,size=0 + +2025-09-24 04:58:18,728 INFO Connection check task end + +2025-09-24 04:58:21,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:21,729 INFO Connection check task start + +2025-09-24 04:58:21,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:21,730 INFO Out dated connection ,size=0 + +2025-09-24 04:58:21,730 INFO Connection check task end + +2025-09-24 04:58:24,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:24,731 INFO Connection check task start + +2025-09-24 04:58:24,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:24,731 INFO Out dated connection ,size=0 + +2025-09-24 04:58:24,731 INFO Connection check task end + +2025-09-24 04:58:27,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:27,731 INFO Connection check task start + +2025-09-24 04:58:27,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:27,731 INFO Out dated connection ,size=0 + +2025-09-24 04:58:27,731 INFO Connection check task end + +2025-09-24 04:58:30,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:30,732 INFO Connection check task start + +2025-09-24 04:58:30,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:30,732 INFO Out dated connection ,size=0 + +2025-09-24 04:58:30,732 INFO Connection check task end + +2025-09-24 04:58:33,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:33,732 INFO Connection check task start + +2025-09-24 04:58:33,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:33,732 INFO Out dated connection ,size=0 + +2025-09-24 04:58:33,732 INFO Connection check task end + +2025-09-24 04:58:36,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:36,733 INFO Connection check task start + +2025-09-24 04:58:36,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:36,733 INFO Out dated connection ,size=0 + +2025-09-24 04:58:36,733 INFO Connection check task end + +2025-09-24 04:58:39,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:39,735 INFO Connection check task start + +2025-09-24 04:58:39,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:39,736 INFO Out dated connection ,size=0 + +2025-09-24 04:58:39,736 INFO Connection check task end + +2025-09-24 04:58:42,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:42,736 INFO Connection check task start + +2025-09-24 04:58:42,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:42,736 INFO Out dated connection ,size=0 + +2025-09-24 04:58:42,736 INFO Connection check task end + +2025-09-24 04:58:45,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:45,737 INFO Connection check task start + +2025-09-24 04:58:45,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:45,737 INFO Out dated connection ,size=0 + +2025-09-24 04:58:45,737 INFO Connection check task end + +2025-09-24 04:58:48,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:48,738 INFO Connection check task start + +2025-09-24 04:58:48,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:48,738 INFO Out dated connection ,size=0 + +2025-09-24 04:58:48,738 INFO Connection check task end + +2025-09-24 04:58:51,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:51,740 INFO Connection check task start + +2025-09-24 04:58:51,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:51,740 INFO Out dated connection ,size=0 + +2025-09-24 04:58:51,740 INFO Connection check task end + +2025-09-24 04:58:54,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:54,741 INFO Connection check task start + +2025-09-24 04:58:54,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:54,741 INFO Out dated connection ,size=0 + +2025-09-24 04:58:54,741 INFO Connection check task end + +2025-09-24 04:58:57,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:58:57,742 INFO Connection check task start + +2025-09-24 04:58:57,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:58:57,742 INFO Out dated connection ,size=0 + +2025-09-24 04:58:57,742 INFO Connection check task end + +2025-09-24 04:59:00,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:00,742 INFO Connection check task start + +2025-09-24 04:59:00,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:00,742 INFO Out dated connection ,size=0 + +2025-09-24 04:59:00,742 INFO Connection check task end + +2025-09-24 04:59:03,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:03,744 INFO Connection check task start + +2025-09-24 04:59:03,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:03,744 INFO Out dated connection ,size=0 + +2025-09-24 04:59:03,744 INFO Connection check task end + +2025-09-24 04:59:06,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:06,745 INFO Connection check task start + +2025-09-24 04:59:06,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:06,745 INFO Out dated connection ,size=0 + +2025-09-24 04:59:06,745 INFO Connection check task end + +2025-09-24 04:59:09,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:09,745 INFO Connection check task start + +2025-09-24 04:59:09,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:09,745 INFO Out dated connection ,size=0 + +2025-09-24 04:59:09,746 INFO Connection check task end + +2025-09-24 04:59:12,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:12,746 INFO Connection check task start + +2025-09-24 04:59:12,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:12,746 INFO Out dated connection ,size=0 + +2025-09-24 04:59:12,746 INFO Connection check task end + +2025-09-24 04:59:15,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:15,748 INFO Connection check task start + +2025-09-24 04:59:15,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:15,748 INFO Out dated connection ,size=0 + +2025-09-24 04:59:15,748 INFO Connection check task end + +2025-09-24 04:59:18,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:18,750 INFO Connection check task start + +2025-09-24 04:59:18,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:18,750 INFO Out dated connection ,size=0 + +2025-09-24 04:59:18,750 INFO Connection check task end + +2025-09-24 04:59:21,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:21,750 INFO Connection check task start + +2025-09-24 04:59:21,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:21,751 INFO Out dated connection ,size=0 + +2025-09-24 04:59:21,751 INFO Connection check task end + +2025-09-24 04:59:24,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:24,751 INFO Connection check task start + +2025-09-24 04:59:24,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:24,751 INFO Out dated connection ,size=0 + +2025-09-24 04:59:24,751 INFO Connection check task end + +2025-09-24 04:59:27,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:27,752 INFO Connection check task start + +2025-09-24 04:59:27,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:27,753 INFO Out dated connection ,size=0 + +2025-09-24 04:59:27,753 INFO Connection check task end + +2025-09-24 04:59:30,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:30,753 INFO Connection check task start + +2025-09-24 04:59:30,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:30,753 INFO Out dated connection ,size=0 + +2025-09-24 04:59:30,753 INFO Connection check task end + +2025-09-24 04:59:33,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:33,754 INFO Connection check task start + +2025-09-24 04:59:33,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:33,754 INFO Out dated connection ,size=0 + +2025-09-24 04:59:33,754 INFO Connection check task end + +2025-09-24 04:59:36,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:36,754 INFO Connection check task start + +2025-09-24 04:59:36,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:36,754 INFO Out dated connection ,size=0 + +2025-09-24 04:59:36,754 INFO Connection check task end + +2025-09-24 04:59:39,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:39,754 INFO Connection check task start + +2025-09-24 04:59:39,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:39,755 INFO Out dated connection ,size=0 + +2025-09-24 04:59:39,755 INFO Connection check task end + +2025-09-24 04:59:42,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:42,757 INFO Connection check task start + +2025-09-24 04:59:42,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:42,757 INFO Out dated connection ,size=0 + +2025-09-24 04:59:42,757 INFO Connection check task end + +2025-09-24 04:59:45,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:45,758 INFO Connection check task start + +2025-09-24 04:59:45,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:45,758 INFO Out dated connection ,size=0 + +2025-09-24 04:59:45,758 INFO Connection check task end + +2025-09-24 04:59:48,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:48,760 INFO Connection check task start + +2025-09-24 04:59:48,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:48,760 INFO Out dated connection ,size=0 + +2025-09-24 04:59:48,760 INFO Connection check task end + +2025-09-24 04:59:51,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:51,761 INFO Connection check task start + +2025-09-24 04:59:51,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:51,761 INFO Out dated connection ,size=0 + +2025-09-24 04:59:51,761 INFO Connection check task end + +2025-09-24 04:59:54,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:54,764 INFO Connection check task start + +2025-09-24 04:59:54,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:54,764 INFO Out dated connection ,size=0 + +2025-09-24 04:59:54,764 INFO Connection check task end + +2025-09-24 04:59:57,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 04:59:57,766 INFO Connection check task start + +2025-09-24 04:59:57,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 04:59:57,766 INFO Out dated connection ,size=0 + +2025-09-24 04:59:57,766 INFO Connection check task end + +2025-09-24 05:00:00,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:00,768 INFO Connection check task start + +2025-09-24 05:00:00,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:00,768 INFO Out dated connection ,size=0 + +2025-09-24 05:00:00,768 INFO Connection check task end + +2025-09-24 05:00:03,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:03,769 INFO Connection check task start + +2025-09-24 05:00:03,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:03,769 INFO Out dated connection ,size=0 + +2025-09-24 05:00:03,769 INFO Connection check task end + +2025-09-24 05:00:06,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:06,769 INFO Connection check task start + +2025-09-24 05:00:06,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:06,769 INFO Out dated connection ,size=0 + +2025-09-24 05:00:06,770 INFO Connection check task end + +2025-09-24 05:00:09,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:09,771 INFO Connection check task start + +2025-09-24 05:00:09,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:09,772 INFO Out dated connection ,size=0 + +2025-09-24 05:00:09,772 INFO Connection check task end + +2025-09-24 05:00:12,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:12,772 INFO Connection check task start + +2025-09-24 05:00:12,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:12,772 INFO Out dated connection ,size=0 + +2025-09-24 05:00:12,772 INFO Connection check task end + +2025-09-24 05:00:15,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:15,773 INFO Connection check task start + +2025-09-24 05:00:15,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:15,774 INFO Out dated connection ,size=0 + +2025-09-24 05:00:15,774 INFO Connection check task end + +2025-09-24 05:00:18,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:18,775 INFO Connection check task start + +2025-09-24 05:00:18,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:18,775 INFO Out dated connection ,size=0 + +2025-09-24 05:00:18,775 INFO Connection check task end + +2025-09-24 05:00:21,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:21,776 INFO Connection check task start + +2025-09-24 05:00:21,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:21,776 INFO Out dated connection ,size=0 + +2025-09-24 05:00:21,776 INFO Connection check task end + +2025-09-24 05:00:24,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:24,778 INFO Connection check task start + +2025-09-24 05:00:24,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:24,778 INFO Out dated connection ,size=0 + +2025-09-24 05:00:24,778 INFO Connection check task end + +2025-09-24 05:00:27,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:27,778 INFO Connection check task start + +2025-09-24 05:00:27,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:27,778 INFO Out dated connection ,size=0 + +2025-09-24 05:00:27,778 INFO Connection check task end + +2025-09-24 05:00:30,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:30,780 INFO Connection check task start + +2025-09-24 05:00:30,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:30,780 INFO Out dated connection ,size=0 + +2025-09-24 05:00:30,780 INFO Connection check task end + +2025-09-24 05:00:33,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:33,782 INFO Connection check task start + +2025-09-24 05:00:33,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:33,782 INFO Out dated connection ,size=0 + +2025-09-24 05:00:33,782 INFO Connection check task end + +2025-09-24 05:00:36,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:36,782 INFO Connection check task start + +2025-09-24 05:00:36,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:36,782 INFO Out dated connection ,size=0 + +2025-09-24 05:00:36,782 INFO Connection check task end + +2025-09-24 05:00:39,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:39,784 INFO Connection check task start + +2025-09-24 05:00:39,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:39,784 INFO Out dated connection ,size=0 + +2025-09-24 05:00:39,784 INFO Connection check task end + +2025-09-24 05:00:42,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:42,786 INFO Connection check task start + +2025-09-24 05:00:42,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:42,786 INFO Out dated connection ,size=0 + +2025-09-24 05:00:42,786 INFO Connection check task end + +2025-09-24 05:00:45,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:45,787 INFO Connection check task start + +2025-09-24 05:00:45,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:45,787 INFO Out dated connection ,size=0 + +2025-09-24 05:00:45,787 INFO Connection check task end + +2025-09-24 05:00:48,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:48,789 INFO Connection check task start + +2025-09-24 05:00:48,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:48,790 INFO Out dated connection ,size=0 + +2025-09-24 05:00:48,790 INFO Connection check task end + +2025-09-24 05:00:51,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:51,790 INFO Connection check task start + +2025-09-24 05:00:51,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:51,790 INFO Out dated connection ,size=0 + +2025-09-24 05:00:51,790 INFO Connection check task end + +2025-09-24 05:00:54,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:54,792 INFO Connection check task start + +2025-09-24 05:00:54,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:54,792 INFO Out dated connection ,size=0 + +2025-09-24 05:00:54,792 INFO Connection check task end + +2025-09-24 05:00:57,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:00:57,794 INFO Connection check task start + +2025-09-24 05:00:57,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:00:57,795 INFO Out dated connection ,size=0 + +2025-09-24 05:00:57,795 INFO Connection check task end + +2025-09-24 05:01:00,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:00,795 INFO Connection check task start + +2025-09-24 05:01:00,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:00,795 INFO Out dated connection ,size=0 + +2025-09-24 05:01:00,796 INFO Connection check task end + +2025-09-24 05:01:03,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:03,796 INFO Connection check task start + +2025-09-24 05:01:03,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:03,796 INFO Out dated connection ,size=0 + +2025-09-24 05:01:03,796 INFO Connection check task end + +2025-09-24 05:01:06,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:06,798 INFO Connection check task start + +2025-09-24 05:01:06,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:06,798 INFO Out dated connection ,size=0 + +2025-09-24 05:01:06,798 INFO Connection check task end + +2025-09-24 05:01:09,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:09,799 INFO Connection check task start + +2025-09-24 05:01:09,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:09,799 INFO Out dated connection ,size=0 + +2025-09-24 05:01:09,799 INFO Connection check task end + +2025-09-24 05:01:12,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:12,801 INFO Connection check task start + +2025-09-24 05:01:12,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:12,801 INFO Out dated connection ,size=0 + +2025-09-24 05:01:12,801 INFO Connection check task end + +2025-09-24 05:01:15,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:15,801 INFO Connection check task start + +2025-09-24 05:01:15,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:15,801 INFO Out dated connection ,size=0 + +2025-09-24 05:01:15,801 INFO Connection check task end + +2025-09-24 05:01:18,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:18,802 INFO Connection check task start + +2025-09-24 05:01:18,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:18,802 INFO Out dated connection ,size=0 + +2025-09-24 05:01:18,802 INFO Connection check task end + +2025-09-24 05:01:21,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:21,804 INFO Connection check task start + +2025-09-24 05:01:21,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:21,804 INFO Out dated connection ,size=0 + +2025-09-24 05:01:21,804 INFO Connection check task end + +2025-09-24 05:01:24,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:24,807 INFO Connection check task start + +2025-09-24 05:01:24,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:24,807 INFO Out dated connection ,size=0 + +2025-09-24 05:01:24,807 INFO Connection check task end + +2025-09-24 05:01:27,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:27,807 INFO Connection check task start + +2025-09-24 05:01:27,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:27,807 INFO Out dated connection ,size=0 + +2025-09-24 05:01:27,807 INFO Connection check task end + +2025-09-24 05:01:30,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:30,808 INFO Connection check task start + +2025-09-24 05:01:30,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:30,808 INFO Out dated connection ,size=0 + +2025-09-24 05:01:30,808 INFO Connection check task end + +2025-09-24 05:01:33,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:33,810 INFO Connection check task start + +2025-09-24 05:01:33,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:33,811 INFO Out dated connection ,size=0 + +2025-09-24 05:01:33,811 INFO Connection check task end + +2025-09-24 05:01:36,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:36,812 INFO Connection check task start + +2025-09-24 05:01:36,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:36,812 INFO Out dated connection ,size=0 + +2025-09-24 05:01:36,812 INFO Connection check task end + +2025-09-24 05:01:39,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:39,814 INFO Connection check task start + +2025-09-24 05:01:39,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:39,814 INFO Out dated connection ,size=0 + +2025-09-24 05:01:39,814 INFO Connection check task end + +2025-09-24 05:01:42,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:42,815 INFO Connection check task start + +2025-09-24 05:01:42,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:42,815 INFO Out dated connection ,size=0 + +2025-09-24 05:01:42,815 INFO Connection check task end + +2025-09-24 05:01:45,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:45,817 INFO Connection check task start + +2025-09-24 05:01:45,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:45,817 INFO Out dated connection ,size=0 + +2025-09-24 05:01:45,817 INFO Connection check task end + +2025-09-24 05:01:48,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:48,819 INFO Connection check task start + +2025-09-24 05:01:48,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:48,819 INFO Out dated connection ,size=0 + +2025-09-24 05:01:48,819 INFO Connection check task end + +2025-09-24 05:01:51,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:51,822 INFO Connection check task start + +2025-09-24 05:01:51,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:51,822 INFO Out dated connection ,size=0 + +2025-09-24 05:01:51,822 INFO Connection check task end + +2025-09-24 05:01:54,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:54,822 INFO Connection check task start + +2025-09-24 05:01:54,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:54,822 INFO Out dated connection ,size=0 + +2025-09-24 05:01:54,823 INFO Connection check task end + +2025-09-24 05:01:57,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:01:57,824 INFO Connection check task start + +2025-09-24 05:01:57,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:01:57,824 INFO Out dated connection ,size=0 + +2025-09-24 05:01:57,824 INFO Connection check task end + +2025-09-24 05:02:00,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:00,825 INFO Connection check task start + +2025-09-24 05:02:00,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:00,826 INFO Out dated connection ,size=0 + +2025-09-24 05:02:00,826 INFO Connection check task end + +2025-09-24 05:02:03,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:03,828 INFO Connection check task start + +2025-09-24 05:02:03,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:03,828 INFO Out dated connection ,size=0 + +2025-09-24 05:02:03,828 INFO Connection check task end + +2025-09-24 05:02:06,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:06,830 INFO Connection check task start + +2025-09-24 05:02:06,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:06,830 INFO Out dated connection ,size=0 + +2025-09-24 05:02:06,830 INFO Connection check task end + +2025-09-24 05:02:09,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:09,831 INFO Connection check task start + +2025-09-24 05:02:09,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:09,832 INFO Out dated connection ,size=0 + +2025-09-24 05:02:09,832 INFO Connection check task end + +2025-09-24 05:02:12,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:12,834 INFO Connection check task start + +2025-09-24 05:02:12,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:12,834 INFO Out dated connection ,size=0 + +2025-09-24 05:02:12,834 INFO Connection check task end + +2025-09-24 05:02:15,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:15,834 INFO Connection check task start + +2025-09-24 05:02:15,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:15,834 INFO Out dated connection ,size=0 + +2025-09-24 05:02:15,834 INFO Connection check task end + +2025-09-24 05:02:18,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:18,836 INFO Connection check task start + +2025-09-24 05:02:18,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:18,836 INFO Out dated connection ,size=0 + +2025-09-24 05:02:18,836 INFO Connection check task end + +2025-09-24 05:02:21,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:21,837 INFO Connection check task start + +2025-09-24 05:02:21,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:21,837 INFO Out dated connection ,size=0 + +2025-09-24 05:02:21,837 INFO Connection check task end + +2025-09-24 05:02:24,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:24,838 INFO Connection check task start + +2025-09-24 05:02:24,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:24,838 INFO Out dated connection ,size=0 + +2025-09-24 05:02:24,838 INFO Connection check task end + +2025-09-24 05:02:27,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:27,840 INFO Connection check task start + +2025-09-24 05:02:27,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:27,840 INFO Out dated connection ,size=0 + +2025-09-24 05:02:27,840 INFO Connection check task end + +2025-09-24 05:02:30,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:30,841 INFO Connection check task start + +2025-09-24 05:02:30,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:30,841 INFO Out dated connection ,size=0 + +2025-09-24 05:02:30,841 INFO Connection check task end + +2025-09-24 05:02:33,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:33,842 INFO Connection check task start + +2025-09-24 05:02:33,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:33,842 INFO Out dated connection ,size=0 + +2025-09-24 05:02:33,843 INFO Connection check task end + +2025-09-24 05:02:36,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:36,843 INFO Connection check task start + +2025-09-24 05:02:36,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:36,843 INFO Out dated connection ,size=0 + +2025-09-24 05:02:36,843 INFO Connection check task end + +2025-09-24 05:02:39,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:39,843 INFO Connection check task start + +2025-09-24 05:02:39,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:39,844 INFO Out dated connection ,size=0 + +2025-09-24 05:02:39,844 INFO Connection check task end + +2025-09-24 05:02:42,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:42,845 INFO Connection check task start + +2025-09-24 05:02:42,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:42,846 INFO Out dated connection ,size=0 + +2025-09-24 05:02:42,846 INFO Connection check task end + +2025-09-24 05:02:45,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:45,847 INFO Connection check task start + +2025-09-24 05:02:45,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:45,847 INFO Out dated connection ,size=0 + +2025-09-24 05:02:45,847 INFO Connection check task end + +2025-09-24 05:02:48,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:48,850 INFO Connection check task start + +2025-09-24 05:02:48,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:48,850 INFO Out dated connection ,size=0 + +2025-09-24 05:02:48,850 INFO Connection check task end + +2025-09-24 05:02:51,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:51,852 INFO Connection check task start + +2025-09-24 05:02:51,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:51,852 INFO Out dated connection ,size=0 + +2025-09-24 05:02:51,852 INFO Connection check task end + +2025-09-24 05:02:54,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:54,854 INFO Connection check task start + +2025-09-24 05:02:54,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:54,854 INFO Out dated connection ,size=0 + +2025-09-24 05:02:54,855 INFO Connection check task end + +2025-09-24 05:02:57,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:02:57,856 INFO Connection check task start + +2025-09-24 05:02:57,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:02:57,857 INFO Out dated connection ,size=0 + +2025-09-24 05:02:57,857 INFO Connection check task end + +2025-09-24 05:03:00,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:00,858 INFO Connection check task start + +2025-09-24 05:03:00,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:00,858 INFO Out dated connection ,size=0 + +2025-09-24 05:03:00,858 INFO Connection check task end + +2025-09-24 05:03:03,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:03,859 INFO Connection check task start + +2025-09-24 05:03:03,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:03,859 INFO Out dated connection ,size=0 + +2025-09-24 05:03:03,859 INFO Connection check task end + +2025-09-24 05:03:06,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:06,859 INFO Connection check task start + +2025-09-24 05:03:06,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:06,859 INFO Out dated connection ,size=0 + +2025-09-24 05:03:06,859 INFO Connection check task end + +2025-09-24 05:03:09,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:09,860 INFO Connection check task start + +2025-09-24 05:03:09,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:09,860 INFO Out dated connection ,size=0 + +2025-09-24 05:03:09,860 INFO Connection check task end + +2025-09-24 05:03:12,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:12,861 INFO Connection check task start + +2025-09-24 05:03:12,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:12,862 INFO Out dated connection ,size=0 + +2025-09-24 05:03:12,862 INFO Connection check task end + +2025-09-24 05:03:15,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:15,862 INFO Connection check task start + +2025-09-24 05:03:15,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:15,862 INFO Out dated connection ,size=0 + +2025-09-24 05:03:15,862 INFO Connection check task end + +2025-09-24 05:03:18,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:18,863 INFO Connection check task start + +2025-09-24 05:03:18,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:18,863 INFO Out dated connection ,size=0 + +2025-09-24 05:03:18,863 INFO Connection check task end + +2025-09-24 05:03:21,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:21,864 INFO Connection check task start + +2025-09-24 05:03:21,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:21,865 INFO Out dated connection ,size=0 + +2025-09-24 05:03:21,865 INFO Connection check task end + +2025-09-24 05:03:24,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:24,865 INFO Connection check task start + +2025-09-24 05:03:24,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:24,865 INFO Out dated connection ,size=0 + +2025-09-24 05:03:24,865 INFO Connection check task end + +2025-09-24 05:03:27,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:27,867 INFO Connection check task start + +2025-09-24 05:03:27,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:27,867 INFO Out dated connection ,size=0 + +2025-09-24 05:03:27,868 INFO Connection check task end + +2025-09-24 05:03:30,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:30,868 INFO Connection check task start + +2025-09-24 05:03:30,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:30,868 INFO Out dated connection ,size=0 + +2025-09-24 05:03:30,868 INFO Connection check task end + +2025-09-24 05:03:33,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:33,869 INFO Connection check task start + +2025-09-24 05:03:33,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:33,869 INFO Out dated connection ,size=0 + +2025-09-24 05:03:33,869 INFO Connection check task end + +2025-09-24 05:03:36,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:36,869 INFO Connection check task start + +2025-09-24 05:03:36,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:36,870 INFO Out dated connection ,size=0 + +2025-09-24 05:03:36,870 INFO Connection check task end + +2025-09-24 05:03:39,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:39,870 INFO Connection check task start + +2025-09-24 05:03:39,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:39,870 INFO Out dated connection ,size=0 + +2025-09-24 05:03:39,870 INFO Connection check task end + +2025-09-24 05:03:42,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:42,872 INFO Connection check task start + +2025-09-24 05:03:42,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:42,872 INFO Out dated connection ,size=0 + +2025-09-24 05:03:42,872 INFO Connection check task end + +2025-09-24 05:03:45,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:45,872 INFO Connection check task start + +2025-09-24 05:03:45,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:45,873 INFO Out dated connection ,size=0 + +2025-09-24 05:03:45,873 INFO Connection check task end + +2025-09-24 05:03:48,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:48,875 INFO Connection check task start + +2025-09-24 05:03:48,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:48,875 INFO Out dated connection ,size=0 + +2025-09-24 05:03:48,875 INFO Connection check task end + +2025-09-24 05:03:51,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:51,875 INFO Connection check task start + +2025-09-24 05:03:51,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:51,876 INFO Out dated connection ,size=0 + +2025-09-24 05:03:51,876 INFO Connection check task end + +2025-09-24 05:03:54,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:54,876 INFO Connection check task start + +2025-09-24 05:03:54,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:54,876 INFO Out dated connection ,size=0 + +2025-09-24 05:03:54,876 INFO Connection check task end + +2025-09-24 05:03:57,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:03:57,876 INFO Connection check task start + +2025-09-24 05:03:57,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:03:57,877 INFO Out dated connection ,size=0 + +2025-09-24 05:03:57,877 INFO Connection check task end + +2025-09-24 05:04:00,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:00,877 INFO Connection check task start + +2025-09-24 05:04:00,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:00,877 INFO Out dated connection ,size=0 + +2025-09-24 05:04:00,877 INFO Connection check task end + +2025-09-24 05:04:03,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:03,879 INFO Connection check task start + +2025-09-24 05:04:03,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:03,880 INFO Out dated connection ,size=0 + +2025-09-24 05:04:03,880 INFO Connection check task end + +2025-09-24 05:04:06,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:06,880 INFO Connection check task start + +2025-09-24 05:04:06,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:06,880 INFO Out dated connection ,size=0 + +2025-09-24 05:04:06,880 INFO Connection check task end + +2025-09-24 05:04:09,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:09,880 INFO Connection check task start + +2025-09-24 05:04:09,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:09,880 INFO Out dated connection ,size=0 + +2025-09-24 05:04:09,881 INFO Connection check task end + +2025-09-24 05:04:12,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:12,881 INFO Connection check task start + +2025-09-24 05:04:12,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:12,882 INFO Out dated connection ,size=0 + +2025-09-24 05:04:12,882 INFO Connection check task end + +2025-09-24 05:04:15,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:15,884 INFO Connection check task start + +2025-09-24 05:04:15,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:15,884 INFO Out dated connection ,size=0 + +2025-09-24 05:04:15,884 INFO Connection check task end + +2025-09-24 05:04:18,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:18,886 INFO Connection check task start + +2025-09-24 05:04:18,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:18,886 INFO Out dated connection ,size=0 + +2025-09-24 05:04:18,886 INFO Connection check task end + +2025-09-24 05:04:21,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:21,886 INFO Connection check task start + +2025-09-24 05:04:21,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:21,887 INFO Out dated connection ,size=0 + +2025-09-24 05:04:21,887 INFO Connection check task end + +2025-09-24 05:04:24,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:24,888 INFO Connection check task start + +2025-09-24 05:04:24,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:24,888 INFO Out dated connection ,size=0 + +2025-09-24 05:04:24,889 INFO Connection check task end + +2025-09-24 05:04:27,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:27,889 INFO Connection check task start + +2025-09-24 05:04:27,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:27,889 INFO Out dated connection ,size=0 + +2025-09-24 05:04:27,889 INFO Connection check task end + +2025-09-24 05:04:30,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:30,890 INFO Connection check task start + +2025-09-24 05:04:30,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:30,891 INFO Out dated connection ,size=0 + +2025-09-24 05:04:30,891 INFO Connection check task end + +2025-09-24 05:04:33,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:33,891 INFO Connection check task start + +2025-09-24 05:04:33,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:33,891 INFO Out dated connection ,size=0 + +2025-09-24 05:04:33,891 INFO Connection check task end + +2025-09-24 05:04:36,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:36,893 INFO Connection check task start + +2025-09-24 05:04:36,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:36,893 INFO Out dated connection ,size=0 + +2025-09-24 05:04:36,893 INFO Connection check task end + +2025-09-24 05:04:39,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:39,894 INFO Connection check task start + +2025-09-24 05:04:39,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:39,895 INFO Out dated connection ,size=0 + +2025-09-24 05:04:39,895 INFO Connection check task end + +2025-09-24 05:04:42,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:42,897 INFO Connection check task start + +2025-09-24 05:04:42,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:42,897 INFO Out dated connection ,size=0 + +2025-09-24 05:04:42,897 INFO Connection check task end + +2025-09-24 05:04:45,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:45,898 INFO Connection check task start + +2025-09-24 05:04:45,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:45,898 INFO Out dated connection ,size=0 + +2025-09-24 05:04:45,898 INFO Connection check task end + +2025-09-24 05:04:48,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:48,899 INFO Connection check task start + +2025-09-24 05:04:48,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:48,899 INFO Out dated connection ,size=0 + +2025-09-24 05:04:48,899 INFO Connection check task end + +2025-09-24 05:04:51,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:51,899 INFO Connection check task start + +2025-09-24 05:04:51,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:51,900 INFO Out dated connection ,size=0 + +2025-09-24 05:04:51,900 INFO Connection check task end + +2025-09-24 05:04:54,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:54,902 INFO Connection check task start + +2025-09-24 05:04:54,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:54,902 INFO Out dated connection ,size=0 + +2025-09-24 05:04:54,902 INFO Connection check task end + +2025-09-24 05:04:57,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:04:57,904 INFO Connection check task start + +2025-09-24 05:04:57,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:04:57,904 INFO Out dated connection ,size=0 + +2025-09-24 05:04:57,904 INFO Connection check task end + +2025-09-24 05:05:00,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:00,904 INFO Connection check task start + +2025-09-24 05:05:00,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:00,904 INFO Out dated connection ,size=0 + +2025-09-24 05:05:00,904 INFO Connection check task end + +2025-09-24 05:05:03,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:03,906 INFO Connection check task start + +2025-09-24 05:05:03,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:03,906 INFO Out dated connection ,size=0 + +2025-09-24 05:05:03,906 INFO Connection check task end + +2025-09-24 05:05:06,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:06,907 INFO Connection check task start + +2025-09-24 05:05:06,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:06,907 INFO Out dated connection ,size=0 + +2025-09-24 05:05:06,907 INFO Connection check task end + +2025-09-24 05:05:09,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:09,908 INFO Connection check task start + +2025-09-24 05:05:09,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:09,908 INFO Out dated connection ,size=0 + +2025-09-24 05:05:09,908 INFO Connection check task end + +2025-09-24 05:05:12,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:12,909 INFO Connection check task start + +2025-09-24 05:05:12,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:12,909 INFO Out dated connection ,size=0 + +2025-09-24 05:05:12,909 INFO Connection check task end + +2025-09-24 05:05:15,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:15,909 INFO Connection check task start + +2025-09-24 05:05:15,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:15,910 INFO Out dated connection ,size=0 + +2025-09-24 05:05:15,910 INFO Connection check task end + +2025-09-24 05:05:18,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:18,910 INFO Connection check task start + +2025-09-24 05:05:18,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:18,910 INFO Out dated connection ,size=0 + +2025-09-24 05:05:18,910 INFO Connection check task end + +2025-09-24 05:05:21,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:21,912 INFO Connection check task start + +2025-09-24 05:05:21,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:21,912 INFO Out dated connection ,size=0 + +2025-09-24 05:05:21,912 INFO Connection check task end + +2025-09-24 05:05:24,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:24,913 INFO Connection check task start + +2025-09-24 05:05:24,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:24,913 INFO Out dated connection ,size=0 + +2025-09-24 05:05:24,913 INFO Connection check task end + +2025-09-24 05:05:27,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:27,914 INFO Connection check task start + +2025-09-24 05:05:27,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:27,914 INFO Out dated connection ,size=0 + +2025-09-24 05:05:27,914 INFO Connection check task end + +2025-09-24 05:05:30,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:30,915 INFO Connection check task start + +2025-09-24 05:05:30,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:30,915 INFO Out dated connection ,size=0 + +2025-09-24 05:05:30,915 INFO Connection check task end + +2025-09-24 05:05:33,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:33,915 INFO Connection check task start + +2025-09-24 05:05:33,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:33,915 INFO Out dated connection ,size=0 + +2025-09-24 05:05:33,916 INFO Connection check task end + +2025-09-24 05:05:36,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:36,916 INFO Connection check task start + +2025-09-24 05:05:36,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:36,916 INFO Out dated connection ,size=0 + +2025-09-24 05:05:36,916 INFO Connection check task end + +2025-09-24 05:05:39,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:39,917 INFO Connection check task start + +2025-09-24 05:05:39,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:39,917 INFO Out dated connection ,size=0 + +2025-09-24 05:05:39,917 INFO Connection check task end + +2025-09-24 05:05:42,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:42,917 INFO Connection check task start + +2025-09-24 05:05:42,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:42,917 INFO Out dated connection ,size=0 + +2025-09-24 05:05:42,917 INFO Connection check task end + +2025-09-24 05:05:45,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:45,918 INFO Connection check task start + +2025-09-24 05:05:45,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:45,918 INFO Out dated connection ,size=0 + +2025-09-24 05:05:45,918 INFO Connection check task end + +2025-09-24 05:05:48,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:48,920 INFO Connection check task start + +2025-09-24 05:05:48,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:48,920 INFO Out dated connection ,size=0 + +2025-09-24 05:05:48,920 INFO Connection check task end + +2025-09-24 05:05:51,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:51,921 INFO Connection check task start + +2025-09-24 05:05:51,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:51,921 INFO Out dated connection ,size=0 + +2025-09-24 05:05:51,921 INFO Connection check task end + +2025-09-24 05:05:54,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:54,922 INFO Connection check task start + +2025-09-24 05:05:54,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:54,922 INFO Out dated connection ,size=0 + +2025-09-24 05:05:54,922 INFO Connection check task end + +2025-09-24 05:05:57,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:05:57,923 INFO Connection check task start + +2025-09-24 05:05:57,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:05:57,923 INFO Out dated connection ,size=0 + +2025-09-24 05:05:57,923 INFO Connection check task end + +2025-09-24 05:06:00,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:00,924 INFO Connection check task start + +2025-09-24 05:06:00,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:00,924 INFO Out dated connection ,size=0 + +2025-09-24 05:06:00,924 INFO Connection check task end + +2025-09-24 05:06:03,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:03,925 INFO Connection check task start + +2025-09-24 05:06:03,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:03,926 INFO Out dated connection ,size=0 + +2025-09-24 05:06:03,926 INFO Connection check task end + +2025-09-24 05:06:06,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:06,926 INFO Connection check task start + +2025-09-24 05:06:06,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:06,926 INFO Out dated connection ,size=0 + +2025-09-24 05:06:06,926 INFO Connection check task end + +2025-09-24 05:06:09,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:09,926 INFO Connection check task start + +2025-09-24 05:06:09,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:09,926 INFO Out dated connection ,size=0 + +2025-09-24 05:06:09,927 INFO Connection check task end + +2025-09-24 05:06:12,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:12,927 INFO Connection check task start + +2025-09-24 05:06:12,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:12,927 INFO Out dated connection ,size=0 + +2025-09-24 05:06:12,927 INFO Connection check task end + +2025-09-24 05:06:15,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:15,928 INFO Connection check task start + +2025-09-24 05:06:15,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:15,928 INFO Out dated connection ,size=0 + +2025-09-24 05:06:15,929 INFO Connection check task end + +2025-09-24 05:06:18,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:18,929 INFO Connection check task start + +2025-09-24 05:06:18,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:18,930 INFO Out dated connection ,size=0 + +2025-09-24 05:06:18,930 INFO Connection check task end + +2025-09-24 05:06:21,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:21,930 INFO Connection check task start + +2025-09-24 05:06:21,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:21,931 INFO Out dated connection ,size=0 + +2025-09-24 05:06:21,931 INFO Connection check task end + +2025-09-24 05:06:24,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:24,932 INFO Connection check task start + +2025-09-24 05:06:24,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:24,932 INFO Out dated connection ,size=0 + +2025-09-24 05:06:24,932 INFO Connection check task end + +2025-09-24 05:06:27,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:27,933 INFO Connection check task start + +2025-09-24 05:06:27,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:27,933 INFO Out dated connection ,size=0 + +2025-09-24 05:06:27,933 INFO Connection check task end + +2025-09-24 05:06:30,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:30,933 INFO Connection check task start + +2025-09-24 05:06:30,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:30,934 INFO Out dated connection ,size=0 + +2025-09-24 05:06:30,934 INFO Connection check task end + +2025-09-24 05:06:33,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:33,935 INFO Connection check task start + +2025-09-24 05:06:33,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:33,935 INFO Out dated connection ,size=0 + +2025-09-24 05:06:33,935 INFO Connection check task end + +2025-09-24 05:06:36,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:36,937 INFO Connection check task start + +2025-09-24 05:06:36,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:36,937 INFO Out dated connection ,size=0 + +2025-09-24 05:06:36,937 INFO Connection check task end + +2025-09-24 05:06:39,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:39,939 INFO Connection check task start + +2025-09-24 05:06:39,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:39,939 INFO Out dated connection ,size=0 + +2025-09-24 05:06:39,939 INFO Connection check task end + +2025-09-24 05:06:42,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:42,941 INFO Connection check task start + +2025-09-24 05:06:42,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:42,941 INFO Out dated connection ,size=0 + +2025-09-24 05:06:42,941 INFO Connection check task end + +2025-09-24 05:06:45,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:45,942 INFO Connection check task start + +2025-09-24 05:06:45,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:45,942 INFO Out dated connection ,size=0 + +2025-09-24 05:06:45,942 INFO Connection check task end + +2025-09-24 05:06:48,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:48,943 INFO Connection check task start + +2025-09-24 05:06:48,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:48,944 INFO Out dated connection ,size=0 + +2025-09-24 05:06:48,944 INFO Connection check task end + +2025-09-24 05:06:51,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:51,944 INFO Connection check task start + +2025-09-24 05:06:51,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:51,944 INFO Out dated connection ,size=0 + +2025-09-24 05:06:51,944 INFO Connection check task end + +2025-09-24 05:06:54,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:54,945 INFO Connection check task start + +2025-09-24 05:06:54,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:54,945 INFO Out dated connection ,size=0 + +2025-09-24 05:06:54,945 INFO Connection check task end + +2025-09-24 05:06:57,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:06:57,945 INFO Connection check task start + +2025-09-24 05:06:57,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:06:57,945 INFO Out dated connection ,size=0 + +2025-09-24 05:06:57,945 INFO Connection check task end + +2025-09-24 05:07:00,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:00,946 INFO Connection check task start + +2025-09-24 05:07:00,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:00,947 INFO Out dated connection ,size=0 + +2025-09-24 05:07:00,947 INFO Connection check task end + +2025-09-24 05:07:03,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:03,947 INFO Connection check task start + +2025-09-24 05:07:03,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:03,947 INFO Out dated connection ,size=0 + +2025-09-24 05:07:03,947 INFO Connection check task end + +2025-09-24 05:07:06,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:06,948 INFO Connection check task start + +2025-09-24 05:07:06,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:06,948 INFO Out dated connection ,size=0 + +2025-09-24 05:07:06,948 INFO Connection check task end + +2025-09-24 05:07:09,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:09,949 INFO Connection check task start + +2025-09-24 05:07:09,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:09,949 INFO Out dated connection ,size=0 + +2025-09-24 05:07:09,949 INFO Connection check task end + +2025-09-24 05:07:12,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:12,949 INFO Connection check task start + +2025-09-24 05:07:12,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:12,949 INFO Out dated connection ,size=0 + +2025-09-24 05:07:12,949 INFO Connection check task end + +2025-09-24 05:07:15,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:15,951 INFO Connection check task start + +2025-09-24 05:07:15,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:15,951 INFO Out dated connection ,size=0 + +2025-09-24 05:07:15,951 INFO Connection check task end + +2025-09-24 05:07:18,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:18,953 INFO Connection check task start + +2025-09-24 05:07:18,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:18,953 INFO Out dated connection ,size=0 + +2025-09-24 05:07:18,953 INFO Connection check task end + +2025-09-24 05:07:21,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:21,953 INFO Connection check task start + +2025-09-24 05:07:21,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:21,953 INFO Out dated connection ,size=0 + +2025-09-24 05:07:21,953 INFO Connection check task end + +2025-09-24 05:07:24,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:24,955 INFO Connection check task start + +2025-09-24 05:07:24,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:24,955 INFO Out dated connection ,size=0 + +2025-09-24 05:07:24,955 INFO Connection check task end + +2025-09-24 05:07:27,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:27,956 INFO Connection check task start + +2025-09-24 05:07:27,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:27,957 INFO Out dated connection ,size=0 + +2025-09-24 05:07:27,957 INFO Connection check task end + +2025-09-24 05:07:30,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:30,957 INFO Connection check task start + +2025-09-24 05:07:30,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:30,957 INFO Out dated connection ,size=0 + +2025-09-24 05:07:30,957 INFO Connection check task end + +2025-09-24 05:07:33,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:33,959 INFO Connection check task start + +2025-09-24 05:07:33,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:33,959 INFO Out dated connection ,size=0 + +2025-09-24 05:07:33,959 INFO Connection check task end + +2025-09-24 05:07:36,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:36,960 INFO Connection check task start + +2025-09-24 05:07:36,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:36,960 INFO Out dated connection ,size=0 + +2025-09-24 05:07:36,960 INFO Connection check task end + +2025-09-24 05:07:39,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:39,961 INFO Connection check task start + +2025-09-24 05:07:39,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:39,962 INFO Out dated connection ,size=0 + +2025-09-24 05:07:39,962 INFO Connection check task end + +2025-09-24 05:07:42,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:42,963 INFO Connection check task start + +2025-09-24 05:07:42,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:42,963 INFO Out dated connection ,size=0 + +2025-09-24 05:07:42,963 INFO Connection check task end + +2025-09-24 05:07:45,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:45,964 INFO Connection check task start + +2025-09-24 05:07:45,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:45,964 INFO Out dated connection ,size=0 + +2025-09-24 05:07:45,964 INFO Connection check task end + +2025-09-24 05:07:48,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:48,965 INFO Connection check task start + +2025-09-24 05:07:48,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:48,965 INFO Out dated connection ,size=0 + +2025-09-24 05:07:48,965 INFO Connection check task end + +2025-09-24 05:07:51,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:51,965 INFO Connection check task start + +2025-09-24 05:07:51,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:51,965 INFO Out dated connection ,size=0 + +2025-09-24 05:07:51,965 INFO Connection check task end + +2025-09-24 05:07:54,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:54,966 INFO Connection check task start + +2025-09-24 05:07:54,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:54,966 INFO Out dated connection ,size=0 + +2025-09-24 05:07:54,966 INFO Connection check task end + +2025-09-24 05:07:57,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:07:57,966 INFO Connection check task start + +2025-09-24 05:07:57,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:07:57,966 INFO Out dated connection ,size=0 + +2025-09-24 05:07:57,966 INFO Connection check task end + +2025-09-24 05:08:00,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:00,968 INFO Connection check task start + +2025-09-24 05:08:00,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:00,968 INFO Out dated connection ,size=0 + +2025-09-24 05:08:00,968 INFO Connection check task end + +2025-09-24 05:08:03,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:03,969 INFO Connection check task start + +2025-09-24 05:08:03,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:03,969 INFO Out dated connection ,size=0 + +2025-09-24 05:08:03,969 INFO Connection check task end + +2025-09-24 05:08:06,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:06,971 INFO Connection check task start + +2025-09-24 05:08:06,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:06,971 INFO Out dated connection ,size=0 + +2025-09-24 05:08:06,971 INFO Connection check task end + +2025-09-24 05:08:09,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:09,972 INFO Connection check task start + +2025-09-24 05:08:09,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:09,972 INFO Out dated connection ,size=0 + +2025-09-24 05:08:09,972 INFO Connection check task end + +2025-09-24 05:08:12,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:12,974 INFO Connection check task start + +2025-09-24 05:08:12,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:12,975 INFO Out dated connection ,size=0 + +2025-09-24 05:08:12,975 INFO Connection check task end + +2025-09-24 05:08:15,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:15,975 INFO Connection check task start + +2025-09-24 05:08:15,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:15,975 INFO Out dated connection ,size=0 + +2025-09-24 05:08:15,975 INFO Connection check task end + +2025-09-24 05:08:18,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:18,977 INFO Connection check task start + +2025-09-24 05:08:18,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:18,977 INFO Out dated connection ,size=0 + +2025-09-24 05:08:18,977 INFO Connection check task end + +2025-09-24 05:08:21,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:21,979 INFO Connection check task start + +2025-09-24 05:08:21,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:21,979 INFO Out dated connection ,size=0 + +2025-09-24 05:08:21,979 INFO Connection check task end + +2025-09-24 05:08:24,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:24,980 INFO Connection check task start + +2025-09-24 05:08:24,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:24,980 INFO Out dated connection ,size=0 + +2025-09-24 05:08:24,980 INFO Connection check task end + +2025-09-24 05:08:27,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:27,982 INFO Connection check task start + +2025-09-24 05:08:27,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:27,982 INFO Out dated connection ,size=0 + +2025-09-24 05:08:27,983 INFO Connection check task end + +2025-09-24 05:08:30,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:30,985 INFO Connection check task start + +2025-09-24 05:08:30,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:30,985 INFO Out dated connection ,size=0 + +2025-09-24 05:08:30,985 INFO Connection check task end + +2025-09-24 05:08:33,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:33,986 INFO Connection check task start + +2025-09-24 05:08:33,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:33,987 INFO Out dated connection ,size=0 + +2025-09-24 05:08:33,987 INFO Connection check task end + +2025-09-24 05:08:36,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:36,987 INFO Connection check task start + +2025-09-24 05:08:36,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:36,987 INFO Out dated connection ,size=0 + +2025-09-24 05:08:36,987 INFO Connection check task end + +2025-09-24 05:08:39,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:39,988 INFO Connection check task start + +2025-09-24 05:08:39,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:39,988 INFO Out dated connection ,size=0 + +2025-09-24 05:08:39,988 INFO Connection check task end + +2025-09-24 05:08:42,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:42,988 INFO Connection check task start + +2025-09-24 05:08:42,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:42,988 INFO Out dated connection ,size=0 + +2025-09-24 05:08:42,988 INFO Connection check task end + +2025-09-24 05:08:45,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:45,989 INFO Connection check task start + +2025-09-24 05:08:45,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:45,989 INFO Out dated connection ,size=0 + +2025-09-24 05:08:45,989 INFO Connection check task end + +2025-09-24 05:08:48,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:48,989 INFO Connection check task start + +2025-09-24 05:08:48,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:48,989 INFO Out dated connection ,size=0 + +2025-09-24 05:08:48,990 INFO Connection check task end + +2025-09-24 05:08:51,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:51,992 INFO Connection check task start + +2025-09-24 05:08:51,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:51,992 INFO Out dated connection ,size=0 + +2025-09-24 05:08:51,992 INFO Connection check task end + +2025-09-24 05:08:54,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:54,994 INFO Connection check task start + +2025-09-24 05:08:54,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:54,994 INFO Out dated connection ,size=0 + +2025-09-24 05:08:54,994 INFO Connection check task end + +2025-09-24 05:08:57,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:08:57,994 INFO Connection check task start + +2025-09-24 05:08:57,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:08:57,994 INFO Out dated connection ,size=0 + +2025-09-24 05:08:57,994 INFO Connection check task end + +2025-09-24 05:09:00,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:00,995 INFO Connection check task start + +2025-09-24 05:09:00,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:00,995 INFO Out dated connection ,size=0 + +2025-09-24 05:09:00,995 INFO Connection check task end + +2025-09-24 05:09:03,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:03,996 INFO Connection check task start + +2025-09-24 05:09:03,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:03,996 INFO Out dated connection ,size=0 + +2025-09-24 05:09:03,996 INFO Connection check task end + +2025-09-24 05:09:06,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:06,996 INFO Connection check task start + +2025-09-24 05:09:06,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:06,998 INFO Out dated connection ,size=0 + +2025-09-24 05:09:06,998 INFO Connection check task end + +2025-09-24 05:09:09,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:10,000 INFO Connection check task start + +2025-09-24 05:09:10,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:10,000 INFO Out dated connection ,size=0 + +2025-09-24 05:09:10,000 INFO Connection check task end + +2025-09-24 05:09:12,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:13,002 INFO Connection check task start + +2025-09-24 05:09:13,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:13,002 INFO Out dated connection ,size=0 + +2025-09-24 05:09:13,002 INFO Connection check task end + +2025-09-24 05:09:15,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:16,003 INFO Connection check task start + +2025-09-24 05:09:16,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:16,003 INFO Out dated connection ,size=0 + +2025-09-24 05:09:16,003 INFO Connection check task end + +2025-09-24 05:09:18,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:19,003 INFO Connection check task start + +2025-09-24 05:09:19,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:19,004 INFO Out dated connection ,size=0 + +2025-09-24 05:09:19,004 INFO Connection check task end + +2025-09-24 05:09:21,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:22,004 INFO Connection check task start + +2025-09-24 05:09:22,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:22,004 INFO Out dated connection ,size=0 + +2025-09-24 05:09:22,004 INFO Connection check task end + +2025-09-24 05:09:24,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:25,005 INFO Connection check task start + +2025-09-24 05:09:25,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:25,005 INFO Out dated connection ,size=0 + +2025-09-24 05:09:25,005 INFO Connection check task end + +2025-09-24 05:09:27,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:28,006 INFO Connection check task start + +2025-09-24 05:09:28,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:28,006 INFO Out dated connection ,size=0 + +2025-09-24 05:09:28,006 INFO Connection check task end + +2025-09-24 05:09:30,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:31,006 INFO Connection check task start + +2025-09-24 05:09:31,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:31,007 INFO Out dated connection ,size=0 + +2025-09-24 05:09:31,007 INFO Connection check task end + +2025-09-24 05:09:33,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:34,007 INFO Connection check task start + +2025-09-24 05:09:34,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:34,007 INFO Out dated connection ,size=0 + +2025-09-24 05:09:34,007 INFO Connection check task end + +2025-09-24 05:09:36,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:37,007 INFO Connection check task start + +2025-09-24 05:09:37,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:37,008 INFO Out dated connection ,size=0 + +2025-09-24 05:09:37,008 INFO Connection check task end + +2025-09-24 05:09:39,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:40,008 INFO Connection check task start + +2025-09-24 05:09:40,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:40,008 INFO Out dated connection ,size=0 + +2025-09-24 05:09:40,008 INFO Connection check task end + +2025-09-24 05:09:42,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:43,010 INFO Connection check task start + +2025-09-24 05:09:43,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:43,011 INFO Out dated connection ,size=0 + +2025-09-24 05:09:43,011 INFO Connection check task end + +2025-09-24 05:09:45,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:46,011 INFO Connection check task start + +2025-09-24 05:09:46,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:46,011 INFO Out dated connection ,size=0 + +2025-09-24 05:09:46,011 INFO Connection check task end + +2025-09-24 05:09:48,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:49,013 INFO Connection check task start + +2025-09-24 05:09:49,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:49,014 INFO Out dated connection ,size=0 + +2025-09-24 05:09:49,014 INFO Connection check task end + +2025-09-24 05:09:51,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:52,014 INFO Connection check task start + +2025-09-24 05:09:52,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:52,015 INFO Out dated connection ,size=0 + +2025-09-24 05:09:52,015 INFO Connection check task end + +2025-09-24 05:09:54,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:55,015 INFO Connection check task start + +2025-09-24 05:09:55,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:55,015 INFO Out dated connection ,size=0 + +2025-09-24 05:09:55,015 INFO Connection check task end + +2025-09-24 05:09:57,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:09:58,015 INFO Connection check task start + +2025-09-24 05:09:58,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:09:58,016 INFO Out dated connection ,size=0 + +2025-09-24 05:09:58,016 INFO Connection check task end + +2025-09-24 05:10:00,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:01,016 INFO Connection check task start + +2025-09-24 05:10:01,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:01,017 INFO Out dated connection ,size=0 + +2025-09-24 05:10:01,017 INFO Connection check task end + +2025-09-24 05:10:03,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:04,017 INFO Connection check task start + +2025-09-24 05:10:04,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:04,017 INFO Out dated connection ,size=0 + +2025-09-24 05:10:04,017 INFO Connection check task end + +2025-09-24 05:10:06,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:07,017 INFO Connection check task start + +2025-09-24 05:10:07,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:07,018 INFO Out dated connection ,size=0 + +2025-09-24 05:10:07,018 INFO Connection check task end + +2025-09-24 05:10:09,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:10,019 INFO Connection check task start + +2025-09-24 05:10:10,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:10,019 INFO Out dated connection ,size=0 + +2025-09-24 05:10:10,019 INFO Connection check task end + +2025-09-24 05:10:12,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:13,019 INFO Connection check task start + +2025-09-24 05:10:13,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:13,020 INFO Out dated connection ,size=0 + +2025-09-24 05:10:13,020 INFO Connection check task end + +2025-09-24 05:10:15,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:16,020 INFO Connection check task start + +2025-09-24 05:10:16,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:16,020 INFO Out dated connection ,size=0 + +2025-09-24 05:10:16,020 INFO Connection check task end + +2025-09-24 05:10:18,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:19,021 INFO Connection check task start + +2025-09-24 05:10:19,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:19,021 INFO Out dated connection ,size=0 + +2025-09-24 05:10:19,021 INFO Connection check task end + +2025-09-24 05:10:21,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:22,022 INFO Connection check task start + +2025-09-24 05:10:22,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:22,022 INFO Out dated connection ,size=0 + +2025-09-24 05:10:22,022 INFO Connection check task end + +2025-09-24 05:10:24,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:25,022 INFO Connection check task start + +2025-09-24 05:10:25,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:25,022 INFO Out dated connection ,size=0 + +2025-09-24 05:10:25,023 INFO Connection check task end + +2025-09-24 05:10:27,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:28,024 INFO Connection check task start + +2025-09-24 05:10:28,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:28,024 INFO Out dated connection ,size=0 + +2025-09-24 05:10:28,024 INFO Connection check task end + +2025-09-24 05:10:30,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:31,025 INFO Connection check task start + +2025-09-24 05:10:31,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:31,025 INFO Out dated connection ,size=0 + +2025-09-24 05:10:31,026 INFO Connection check task end + +2025-09-24 05:10:33,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:34,028 INFO Connection check task start + +2025-09-24 05:10:34,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:34,028 INFO Out dated connection ,size=0 + +2025-09-24 05:10:34,028 INFO Connection check task end + +2025-09-24 05:10:36,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:37,028 INFO Connection check task start + +2025-09-24 05:10:37,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:37,028 INFO Out dated connection ,size=0 + +2025-09-24 05:10:37,028 INFO Connection check task end + +2025-09-24 05:10:39,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:40,029 INFO Connection check task start + +2025-09-24 05:10:40,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:40,029 INFO Out dated connection ,size=0 + +2025-09-24 05:10:40,029 INFO Connection check task end + +2025-09-24 05:10:42,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:43,030 INFO Connection check task start + +2025-09-24 05:10:43,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:43,031 INFO Out dated connection ,size=0 + +2025-09-24 05:10:43,031 INFO Connection check task end + +2025-09-24 05:10:45,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:46,033 INFO Connection check task start + +2025-09-24 05:10:46,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:46,033 INFO Out dated connection ,size=0 + +2025-09-24 05:10:46,033 INFO Connection check task end + +2025-09-24 05:10:48,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:49,035 INFO Connection check task start + +2025-09-24 05:10:49,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:49,035 INFO Out dated connection ,size=0 + +2025-09-24 05:10:49,035 INFO Connection check task end + +2025-09-24 05:10:51,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:52,038 INFO Connection check task start + +2025-09-24 05:10:52,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:52,038 INFO Out dated connection ,size=0 + +2025-09-24 05:10:52,038 INFO Connection check task end + +2025-09-24 05:10:54,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:55,040 INFO Connection check task start + +2025-09-24 05:10:55,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:55,040 INFO Out dated connection ,size=0 + +2025-09-24 05:10:55,040 INFO Connection check task end + +2025-09-24 05:10:57,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:10:58,040 INFO Connection check task start + +2025-09-24 05:10:58,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:10:58,041 INFO Out dated connection ,size=0 + +2025-09-24 05:10:58,041 INFO Connection check task end + +2025-09-24 05:11:00,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:01,043 INFO Connection check task start + +2025-09-24 05:11:01,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:01,043 INFO Out dated connection ,size=0 + +2025-09-24 05:11:01,043 INFO Connection check task end + +2025-09-24 05:11:03,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:04,043 INFO Connection check task start + +2025-09-24 05:11:04,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:04,043 INFO Out dated connection ,size=0 + +2025-09-24 05:11:04,043 INFO Connection check task end + +2025-09-24 05:11:06,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:07,045 INFO Connection check task start + +2025-09-24 05:11:07,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:07,045 INFO Out dated connection ,size=0 + +2025-09-24 05:11:07,045 INFO Connection check task end + +2025-09-24 05:11:09,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:10,046 INFO Connection check task start + +2025-09-24 05:11:10,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:10,046 INFO Out dated connection ,size=0 + +2025-09-24 05:11:10,047 INFO Connection check task end + +2025-09-24 05:11:12,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:13,047 INFO Connection check task start + +2025-09-24 05:11:13,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:13,048 INFO Out dated connection ,size=0 + +2025-09-24 05:11:13,048 INFO Connection check task end + +2025-09-24 05:11:15,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:16,048 INFO Connection check task start + +2025-09-24 05:11:16,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:16,048 INFO Out dated connection ,size=0 + +2025-09-24 05:11:16,048 INFO Connection check task end + +2025-09-24 05:11:18,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:19,048 INFO Connection check task start + +2025-09-24 05:11:19,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:19,049 INFO Out dated connection ,size=0 + +2025-09-24 05:11:19,049 INFO Connection check task end + +2025-09-24 05:11:21,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:22,049 INFO Connection check task start + +2025-09-24 05:11:22,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:22,049 INFO Out dated connection ,size=0 + +2025-09-24 05:11:22,049 INFO Connection check task end + +2025-09-24 05:11:24,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:25,051 INFO Connection check task start + +2025-09-24 05:11:25,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:25,051 INFO Out dated connection ,size=0 + +2025-09-24 05:11:25,052 INFO Connection check task end + +2025-09-24 05:11:27,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:28,053 INFO Connection check task start + +2025-09-24 05:11:28,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:28,053 INFO Out dated connection ,size=0 + +2025-09-24 05:11:28,053 INFO Connection check task end + +2025-09-24 05:11:30,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:31,054 INFO Connection check task start + +2025-09-24 05:11:31,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:31,054 INFO Out dated connection ,size=0 + +2025-09-24 05:11:31,054 INFO Connection check task end + +2025-09-24 05:11:33,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:34,055 INFO Connection check task start + +2025-09-24 05:11:34,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:34,055 INFO Out dated connection ,size=0 + +2025-09-24 05:11:34,055 INFO Connection check task end + +2025-09-24 05:11:36,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:37,056 INFO Connection check task start + +2025-09-24 05:11:37,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:37,056 INFO Out dated connection ,size=0 + +2025-09-24 05:11:37,056 INFO Connection check task end + +2025-09-24 05:11:39,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:40,059 INFO Connection check task start + +2025-09-24 05:11:40,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:40,059 INFO Out dated connection ,size=0 + +2025-09-24 05:11:40,059 INFO Connection check task end + +2025-09-24 05:11:42,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:43,061 INFO Connection check task start + +2025-09-24 05:11:43,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:43,061 INFO Out dated connection ,size=0 + +2025-09-24 05:11:43,061 INFO Connection check task end + +2025-09-24 05:11:45,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:46,062 INFO Connection check task start + +2025-09-24 05:11:46,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:46,062 INFO Out dated connection ,size=0 + +2025-09-24 05:11:46,062 INFO Connection check task end + +2025-09-24 05:11:48,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:49,062 INFO Connection check task start + +2025-09-24 05:11:49,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:49,063 INFO Out dated connection ,size=0 + +2025-09-24 05:11:49,063 INFO Connection check task end + +2025-09-24 05:11:51,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:52,065 INFO Connection check task start + +2025-09-24 05:11:52,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:52,065 INFO Out dated connection ,size=0 + +2025-09-24 05:11:52,065 INFO Connection check task end + +2025-09-24 05:11:54,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:55,066 INFO Connection check task start + +2025-09-24 05:11:55,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:55,066 INFO Out dated connection ,size=0 + +2025-09-24 05:11:55,066 INFO Connection check task end + +2025-09-24 05:11:57,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:11:58,066 INFO Connection check task start + +2025-09-24 05:11:58,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:11:58,067 INFO Out dated connection ,size=0 + +2025-09-24 05:11:58,067 INFO Connection check task end + +2025-09-24 05:12:00,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:01,069 INFO Connection check task start + +2025-09-24 05:12:01,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:01,069 INFO Out dated connection ,size=0 + +2025-09-24 05:12:01,069 INFO Connection check task end + +2025-09-24 05:12:03,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:04,070 INFO Connection check task start + +2025-09-24 05:12:04,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:04,070 INFO Out dated connection ,size=0 + +2025-09-24 05:12:04,070 INFO Connection check task end + +2025-09-24 05:12:06,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:07,071 INFO Connection check task start + +2025-09-24 05:12:07,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:07,071 INFO Out dated connection ,size=0 + +2025-09-24 05:12:07,071 INFO Connection check task end + +2025-09-24 05:12:09,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:10,071 INFO Connection check task start + +2025-09-24 05:12:10,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:10,072 INFO Out dated connection ,size=0 + +2025-09-24 05:12:10,072 INFO Connection check task end + +2025-09-24 05:12:12,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:13,072 INFO Connection check task start + +2025-09-24 05:12:13,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:13,072 INFO Out dated connection ,size=0 + +2025-09-24 05:12:13,072 INFO Connection check task end + +2025-09-24 05:12:15,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:16,074 INFO Connection check task start + +2025-09-24 05:12:16,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:16,075 INFO Out dated connection ,size=0 + +2025-09-24 05:12:16,075 INFO Connection check task end + +2025-09-24 05:12:18,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:19,076 INFO Connection check task start + +2025-09-24 05:12:19,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:19,076 INFO Out dated connection ,size=0 + +2025-09-24 05:12:19,076 INFO Connection check task end + +2025-09-24 05:12:21,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:22,076 INFO Connection check task start + +2025-09-24 05:12:22,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:22,077 INFO Out dated connection ,size=0 + +2025-09-24 05:12:22,077 INFO Connection check task end + +2025-09-24 05:12:24,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:25,078 INFO Connection check task start + +2025-09-24 05:12:25,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:25,078 INFO Out dated connection ,size=0 + +2025-09-24 05:12:25,078 INFO Connection check task end + +2025-09-24 05:12:27,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:28,080 INFO Connection check task start + +2025-09-24 05:12:28,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:28,080 INFO Out dated connection ,size=0 + +2025-09-24 05:12:28,080 INFO Connection check task end + +2025-09-24 05:12:30,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:31,082 INFO Connection check task start + +2025-09-24 05:12:31,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:31,082 INFO Out dated connection ,size=0 + +2025-09-24 05:12:31,082 INFO Connection check task end + +2025-09-24 05:12:33,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:34,083 INFO Connection check task start + +2025-09-24 05:12:34,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:34,084 INFO Out dated connection ,size=0 + +2025-09-24 05:12:34,084 INFO Connection check task end + +2025-09-24 05:12:36,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:37,085 INFO Connection check task start + +2025-09-24 05:12:37,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:37,085 INFO Out dated connection ,size=0 + +2025-09-24 05:12:37,085 INFO Connection check task end + +2025-09-24 05:12:39,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:40,085 INFO Connection check task start + +2025-09-24 05:12:40,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:40,086 INFO Out dated connection ,size=0 + +2025-09-24 05:12:40,086 INFO Connection check task end + +2025-09-24 05:12:42,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:43,088 INFO Connection check task start + +2025-09-24 05:12:43,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:43,088 INFO Out dated connection ,size=0 + +2025-09-24 05:12:43,088 INFO Connection check task end + +2025-09-24 05:12:45,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:46,088 INFO Connection check task start + +2025-09-24 05:12:46,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:46,088 INFO Out dated connection ,size=0 + +2025-09-24 05:12:46,089 INFO Connection check task end + +2025-09-24 05:12:48,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:49,091 INFO Connection check task start + +2025-09-24 05:12:49,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:49,091 INFO Out dated connection ,size=0 + +2025-09-24 05:12:49,091 INFO Connection check task end + +2025-09-24 05:12:51,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:52,092 INFO Connection check task start + +2025-09-24 05:12:52,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:52,092 INFO Out dated connection ,size=0 + +2025-09-24 05:12:52,092 INFO Connection check task end + +2025-09-24 05:12:54,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:55,092 INFO Connection check task start + +2025-09-24 05:12:55,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:55,093 INFO Out dated connection ,size=0 + +2025-09-24 05:12:55,093 INFO Connection check task end + +2025-09-24 05:12:57,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:12:58,093 INFO Connection check task start + +2025-09-24 05:12:58,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:12:58,093 INFO Out dated connection ,size=0 + +2025-09-24 05:12:58,093 INFO Connection check task end + +2025-09-24 05:13:00,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:01,095 INFO Connection check task start + +2025-09-24 05:13:01,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:01,095 INFO Out dated connection ,size=0 + +2025-09-24 05:13:01,095 INFO Connection check task end + +2025-09-24 05:13:03,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:04,097 INFO Connection check task start + +2025-09-24 05:13:04,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:04,098 INFO Out dated connection ,size=0 + +2025-09-24 05:13:04,098 INFO Connection check task end + +2025-09-24 05:13:06,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:07,098 INFO Connection check task start + +2025-09-24 05:13:07,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:07,098 INFO Out dated connection ,size=0 + +2025-09-24 05:13:07,098 INFO Connection check task end + +2025-09-24 05:13:09,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:10,099 INFO Connection check task start + +2025-09-24 05:13:10,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:10,099 INFO Out dated connection ,size=0 + +2025-09-24 05:13:10,099 INFO Connection check task end + +2025-09-24 05:13:12,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:13,100 INFO Connection check task start + +2025-09-24 05:13:13,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:13,100 INFO Out dated connection ,size=0 + +2025-09-24 05:13:13,100 INFO Connection check task end + +2025-09-24 05:13:15,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:16,100 INFO Connection check task start + +2025-09-24 05:13:16,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:16,100 INFO Out dated connection ,size=0 + +2025-09-24 05:13:16,100 INFO Connection check task end + +2025-09-24 05:13:18,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:19,101 INFO Connection check task start + +2025-09-24 05:13:19,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:19,101 INFO Out dated connection ,size=0 + +2025-09-24 05:13:19,101 INFO Connection check task end + +2025-09-24 05:13:21,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:22,101 INFO Connection check task start + +2025-09-24 05:13:22,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:22,102 INFO Out dated connection ,size=0 + +2025-09-24 05:13:22,102 INFO Connection check task end + +2025-09-24 05:13:24,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:25,104 INFO Connection check task start + +2025-09-24 05:13:25,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:25,104 INFO Out dated connection ,size=0 + +2025-09-24 05:13:25,104 INFO Connection check task end + +2025-09-24 05:13:27,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:28,104 INFO Connection check task start + +2025-09-24 05:13:28,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:28,104 INFO Out dated connection ,size=0 + +2025-09-24 05:13:28,105 INFO Connection check task end + +2025-09-24 05:13:30,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:31,106 INFO Connection check task start + +2025-09-24 05:13:31,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:31,107 INFO Out dated connection ,size=0 + +2025-09-24 05:13:31,107 INFO Connection check task end + +2025-09-24 05:13:33,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:34,107 INFO Connection check task start + +2025-09-24 05:13:34,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:34,107 INFO Out dated connection ,size=0 + +2025-09-24 05:13:34,107 INFO Connection check task end + +2025-09-24 05:13:36,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:37,108 INFO Connection check task start + +2025-09-24 05:13:37,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:37,108 INFO Out dated connection ,size=0 + +2025-09-24 05:13:37,108 INFO Connection check task end + +2025-09-24 05:13:39,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:40,110 INFO Connection check task start + +2025-09-24 05:13:40,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:40,110 INFO Out dated connection ,size=0 + +2025-09-24 05:13:40,110 INFO Connection check task end + +2025-09-24 05:13:42,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:43,112 INFO Connection check task start + +2025-09-24 05:13:43,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:43,112 INFO Out dated connection ,size=0 + +2025-09-24 05:13:43,112 INFO Connection check task end + +2025-09-24 05:13:45,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:46,113 INFO Connection check task start + +2025-09-24 05:13:46,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:46,113 INFO Out dated connection ,size=0 + +2025-09-24 05:13:46,113 INFO Connection check task end + +2025-09-24 05:13:48,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:49,114 INFO Connection check task start + +2025-09-24 05:13:49,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:49,114 INFO Out dated connection ,size=0 + +2025-09-24 05:13:49,114 INFO Connection check task end + +2025-09-24 05:13:51,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:52,114 INFO Connection check task start + +2025-09-24 05:13:52,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:52,114 INFO Out dated connection ,size=0 + +2025-09-24 05:13:52,115 INFO Connection check task end + +2025-09-24 05:13:54,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:55,115 INFO Connection check task start + +2025-09-24 05:13:55,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:55,115 INFO Out dated connection ,size=0 + +2025-09-24 05:13:55,115 INFO Connection check task end + +2025-09-24 05:13:57,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:13:58,116 INFO Connection check task start + +2025-09-24 05:13:58,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:13:58,116 INFO Out dated connection ,size=0 + +2025-09-24 05:13:58,116 INFO Connection check task end + +2025-09-24 05:14:00,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:01,117 INFO Connection check task start + +2025-09-24 05:14:01,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:01,118 INFO Out dated connection ,size=0 + +2025-09-24 05:14:01,118 INFO Connection check task end + +2025-09-24 05:14:03,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:04,118 INFO Connection check task start + +2025-09-24 05:14:04,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:04,118 INFO Out dated connection ,size=0 + +2025-09-24 05:14:04,118 INFO Connection check task end + +2025-09-24 05:14:06,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:07,120 INFO Connection check task start + +2025-09-24 05:14:07,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:07,120 INFO Out dated connection ,size=0 + +2025-09-24 05:14:07,120 INFO Connection check task end + +2025-09-24 05:14:09,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:10,122 INFO Connection check task start + +2025-09-24 05:14:10,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:10,122 INFO Out dated connection ,size=0 + +2025-09-24 05:14:10,122 INFO Connection check task end + +2025-09-24 05:14:12,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:13,124 INFO Connection check task start + +2025-09-24 05:14:13,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:13,124 INFO Out dated connection ,size=0 + +2025-09-24 05:14:13,124 INFO Connection check task end + +2025-09-24 05:14:15,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:16,125 INFO Connection check task start + +2025-09-24 05:14:16,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:16,125 INFO Out dated connection ,size=0 + +2025-09-24 05:14:16,125 INFO Connection check task end + +2025-09-24 05:14:18,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:19,127 INFO Connection check task start + +2025-09-24 05:14:19,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:19,128 INFO Out dated connection ,size=0 + +2025-09-24 05:14:19,128 INFO Connection check task end + +2025-09-24 05:14:21,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:22,129 INFO Connection check task start + +2025-09-24 05:14:22,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:22,129 INFO Out dated connection ,size=0 + +2025-09-24 05:14:22,129 INFO Connection check task end + +2025-09-24 05:14:24,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:25,129 INFO Connection check task start + +2025-09-24 05:14:25,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:25,130 INFO Out dated connection ,size=0 + +2025-09-24 05:14:25,130 INFO Connection check task end + +2025-09-24 05:14:27,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:28,132 INFO Connection check task start + +2025-09-24 05:14:28,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:28,132 INFO Out dated connection ,size=0 + +2025-09-24 05:14:28,132 INFO Connection check task end + +2025-09-24 05:14:30,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:31,133 INFO Connection check task start + +2025-09-24 05:14:31,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:31,133 INFO Out dated connection ,size=0 + +2025-09-24 05:14:31,133 INFO Connection check task end + +2025-09-24 05:14:33,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:34,133 INFO Connection check task start + +2025-09-24 05:14:34,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:34,133 INFO Out dated connection ,size=0 + +2025-09-24 05:14:34,133 INFO Connection check task end + +2025-09-24 05:14:36,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:37,134 INFO Connection check task start + +2025-09-24 05:14:37,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:37,134 INFO Out dated connection ,size=0 + +2025-09-24 05:14:37,134 INFO Connection check task end + +2025-09-24 05:14:39,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:40,135 INFO Connection check task start + +2025-09-24 05:14:40,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:40,135 INFO Out dated connection ,size=0 + +2025-09-24 05:14:40,135 INFO Connection check task end + +2025-09-24 05:14:42,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:43,136 INFO Connection check task start + +2025-09-24 05:14:43,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:43,136 INFO Out dated connection ,size=0 + +2025-09-24 05:14:43,136 INFO Connection check task end + +2025-09-24 05:14:45,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:46,137 INFO Connection check task start + +2025-09-24 05:14:46,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:46,137 INFO Out dated connection ,size=0 + +2025-09-24 05:14:46,137 INFO Connection check task end + +2025-09-24 05:14:48,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:49,139 INFO Connection check task start + +2025-09-24 05:14:49,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:49,139 INFO Out dated connection ,size=0 + +2025-09-24 05:14:49,139 INFO Connection check task end + +2025-09-24 05:14:51,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:52,141 INFO Connection check task start + +2025-09-24 05:14:52,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:52,141 INFO Out dated connection ,size=0 + +2025-09-24 05:14:52,141 INFO Connection check task end + +2025-09-24 05:14:54,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:55,141 INFO Connection check task start + +2025-09-24 05:14:55,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:55,142 INFO Out dated connection ,size=0 + +2025-09-24 05:14:55,142 INFO Connection check task end + +2025-09-24 05:14:57,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:14:58,143 INFO Connection check task start + +2025-09-24 05:14:58,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:14:58,144 INFO Out dated connection ,size=0 + +2025-09-24 05:14:58,144 INFO Connection check task end + +2025-09-24 05:15:00,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:01,144 INFO Connection check task start + +2025-09-24 05:15:01,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:01,144 INFO Out dated connection ,size=0 + +2025-09-24 05:15:01,144 INFO Connection check task end + +2025-09-24 05:15:03,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:04,145 INFO Connection check task start + +2025-09-24 05:15:04,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:04,146 INFO Out dated connection ,size=0 + +2025-09-24 05:15:04,146 INFO Connection check task end + +2025-09-24 05:15:06,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:07,146 INFO Connection check task start + +2025-09-24 05:15:07,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:07,146 INFO Out dated connection ,size=0 + +2025-09-24 05:15:07,146 INFO Connection check task end + +2025-09-24 05:15:09,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:10,147 INFO Connection check task start + +2025-09-24 05:15:10,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:10,147 INFO Out dated connection ,size=0 + +2025-09-24 05:15:10,147 INFO Connection check task end + +2025-09-24 05:15:12,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:13,150 INFO Connection check task start + +2025-09-24 05:15:13,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:13,150 INFO Out dated connection ,size=0 + +2025-09-24 05:15:13,150 INFO Connection check task end + +2025-09-24 05:15:15,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:16,150 INFO Connection check task start + +2025-09-24 05:15:16,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:16,150 INFO Out dated connection ,size=0 + +2025-09-24 05:15:16,150 INFO Connection check task end + +2025-09-24 05:15:18,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:19,152 INFO Connection check task start + +2025-09-24 05:15:19,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:19,152 INFO Out dated connection ,size=0 + +2025-09-24 05:15:19,152 INFO Connection check task end + +2025-09-24 05:15:21,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:22,152 INFO Connection check task start + +2025-09-24 05:15:22,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:22,152 INFO Out dated connection ,size=0 + +2025-09-24 05:15:22,152 INFO Connection check task end + +2025-09-24 05:15:24,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:25,153 INFO Connection check task start + +2025-09-24 05:15:25,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:25,153 INFO Out dated connection ,size=0 + +2025-09-24 05:15:25,153 INFO Connection check task end + +2025-09-24 05:15:27,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:28,154 INFO Connection check task start + +2025-09-24 05:15:28,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:28,154 INFO Out dated connection ,size=0 + +2025-09-24 05:15:28,154 INFO Connection check task end + +2025-09-24 05:15:30,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:31,156 INFO Connection check task start + +2025-09-24 05:15:31,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:31,156 INFO Out dated connection ,size=0 + +2025-09-24 05:15:31,156 INFO Connection check task end + +2025-09-24 05:15:33,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:34,157 INFO Connection check task start + +2025-09-24 05:15:34,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:34,157 INFO Out dated connection ,size=0 + +2025-09-24 05:15:34,157 INFO Connection check task end + +2025-09-24 05:15:36,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:37,157 INFO Connection check task start + +2025-09-24 05:15:37,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:37,157 INFO Out dated connection ,size=0 + +2025-09-24 05:15:37,157 INFO Connection check task end + +2025-09-24 05:15:39,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:40,159 INFO Connection check task start + +2025-09-24 05:15:40,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:40,159 INFO Out dated connection ,size=0 + +2025-09-24 05:15:40,159 INFO Connection check task end + +2025-09-24 05:15:42,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:43,160 INFO Connection check task start + +2025-09-24 05:15:43,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:43,160 INFO Out dated connection ,size=0 + +2025-09-24 05:15:43,160 INFO Connection check task end + +2025-09-24 05:15:45,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:46,162 INFO Connection check task start + +2025-09-24 05:15:46,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:46,163 INFO Out dated connection ,size=0 + +2025-09-24 05:15:46,163 INFO Connection check task end + +2025-09-24 05:15:48,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:49,165 INFO Connection check task start + +2025-09-24 05:15:49,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:49,165 INFO Out dated connection ,size=0 + +2025-09-24 05:15:49,165 INFO Connection check task end + +2025-09-24 05:15:51,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:52,167 INFO Connection check task start + +2025-09-24 05:15:52,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:52,167 INFO Out dated connection ,size=0 + +2025-09-24 05:15:52,168 INFO Connection check task end + +2025-09-24 05:15:54,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:55,170 INFO Connection check task start + +2025-09-24 05:15:55,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:55,170 INFO Out dated connection ,size=0 + +2025-09-24 05:15:55,170 INFO Connection check task end + +2025-09-24 05:15:57,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:15:58,170 INFO Connection check task start + +2025-09-24 05:15:58,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:15:58,171 INFO Out dated connection ,size=0 + +2025-09-24 05:15:58,171 INFO Connection check task end + +2025-09-24 05:16:00,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:01,173 INFO Connection check task start + +2025-09-24 05:16:01,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:01,173 INFO Out dated connection ,size=0 + +2025-09-24 05:16:01,173 INFO Connection check task end + +2025-09-24 05:16:03,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:04,175 INFO Connection check task start + +2025-09-24 05:16:04,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:04,175 INFO Out dated connection ,size=0 + +2025-09-24 05:16:04,175 INFO Connection check task end + +2025-09-24 05:16:06,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:07,176 INFO Connection check task start + +2025-09-24 05:16:07,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:07,176 INFO Out dated connection ,size=0 + +2025-09-24 05:16:07,176 INFO Connection check task end + +2025-09-24 05:16:09,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:10,177 INFO Connection check task start + +2025-09-24 05:16:10,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:10,177 INFO Out dated connection ,size=0 + +2025-09-24 05:16:10,177 INFO Connection check task end + +2025-09-24 05:16:12,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:13,178 INFO Connection check task start + +2025-09-24 05:16:13,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:13,178 INFO Out dated connection ,size=0 + +2025-09-24 05:16:13,178 INFO Connection check task end + +2025-09-24 05:16:15,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:16,180 INFO Connection check task start + +2025-09-24 05:16:16,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:16,180 INFO Out dated connection ,size=0 + +2025-09-24 05:16:16,180 INFO Connection check task end + +2025-09-24 05:16:18,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:19,181 INFO Connection check task start + +2025-09-24 05:16:19,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:19,181 INFO Out dated connection ,size=0 + +2025-09-24 05:16:19,181 INFO Connection check task end + +2025-09-24 05:16:21,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:22,182 INFO Connection check task start + +2025-09-24 05:16:22,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:22,182 INFO Out dated connection ,size=0 + +2025-09-24 05:16:22,182 INFO Connection check task end + +2025-09-24 05:16:24,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:25,184 INFO Connection check task start + +2025-09-24 05:16:25,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:25,184 INFO Out dated connection ,size=0 + +2025-09-24 05:16:25,184 INFO Connection check task end + +2025-09-24 05:16:27,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:28,186 INFO Connection check task start + +2025-09-24 05:16:28,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:28,187 INFO Out dated connection ,size=0 + +2025-09-24 05:16:28,187 INFO Connection check task end + +2025-09-24 05:16:30,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:31,188 INFO Connection check task start + +2025-09-24 05:16:31,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:31,188 INFO Out dated connection ,size=0 + +2025-09-24 05:16:31,188 INFO Connection check task end + +2025-09-24 05:16:33,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:34,189 INFO Connection check task start + +2025-09-24 05:16:34,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:34,189 INFO Out dated connection ,size=0 + +2025-09-24 05:16:34,189 INFO Connection check task end + +2025-09-24 05:16:36,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:37,190 INFO Connection check task start + +2025-09-24 05:16:37,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:37,190 INFO Out dated connection ,size=0 + +2025-09-24 05:16:37,190 INFO Connection check task end + +2025-09-24 05:16:39,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:40,192 INFO Connection check task start + +2025-09-24 05:16:40,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:40,192 INFO Out dated connection ,size=0 + +2025-09-24 05:16:40,193 INFO Connection check task end + +2025-09-24 05:16:42,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:43,195 INFO Connection check task start + +2025-09-24 05:16:43,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:43,195 INFO Out dated connection ,size=0 + +2025-09-24 05:16:43,195 INFO Connection check task end + +2025-09-24 05:16:45,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:46,197 INFO Connection check task start + +2025-09-24 05:16:46,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:46,197 INFO Out dated connection ,size=0 + +2025-09-24 05:16:46,197 INFO Connection check task end + +2025-09-24 05:16:48,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:49,197 INFO Connection check task start + +2025-09-24 05:16:49,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:49,197 INFO Out dated connection ,size=0 + +2025-09-24 05:16:49,197 INFO Connection check task end + +2025-09-24 05:16:51,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:52,198 INFO Connection check task start + +2025-09-24 05:16:52,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:52,198 INFO Out dated connection ,size=0 + +2025-09-24 05:16:52,198 INFO Connection check task end + +2025-09-24 05:16:54,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:55,199 INFO Connection check task start + +2025-09-24 05:16:55,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:55,199 INFO Out dated connection ,size=0 + +2025-09-24 05:16:55,199 INFO Connection check task end + +2025-09-24 05:16:57,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:16:58,201 INFO Connection check task start + +2025-09-24 05:16:58,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:16:58,202 INFO Out dated connection ,size=0 + +2025-09-24 05:16:58,202 INFO Connection check task end + +2025-09-24 05:17:00,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:01,202 INFO Connection check task start + +2025-09-24 05:17:01,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:01,202 INFO Out dated connection ,size=0 + +2025-09-24 05:17:01,202 INFO Connection check task end + +2025-09-24 05:17:03,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:04,203 INFO Connection check task start + +2025-09-24 05:17:04,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:04,204 INFO Out dated connection ,size=0 + +2025-09-24 05:17:04,204 INFO Connection check task end + +2025-09-24 05:17:06,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:07,204 INFO Connection check task start + +2025-09-24 05:17:07,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:07,204 INFO Out dated connection ,size=0 + +2025-09-24 05:17:07,204 INFO Connection check task end + +2025-09-24 05:17:09,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:10,206 INFO Connection check task start + +2025-09-24 05:17:10,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:10,206 INFO Out dated connection ,size=0 + +2025-09-24 05:17:10,206 INFO Connection check task end + +2025-09-24 05:17:12,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:13,207 INFO Connection check task start + +2025-09-24 05:17:13,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:13,207 INFO Out dated connection ,size=0 + +2025-09-24 05:17:13,207 INFO Connection check task end + +2025-09-24 05:17:15,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:16,209 INFO Connection check task start + +2025-09-24 05:17:16,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:16,209 INFO Out dated connection ,size=0 + +2025-09-24 05:17:16,209 INFO Connection check task end + +2025-09-24 05:17:18,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:19,211 INFO Connection check task start + +2025-09-24 05:17:19,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:19,211 INFO Out dated connection ,size=0 + +2025-09-24 05:17:19,211 INFO Connection check task end + +2025-09-24 05:17:21,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:22,213 INFO Connection check task start + +2025-09-24 05:17:22,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:22,213 INFO Out dated connection ,size=0 + +2025-09-24 05:17:22,213 INFO Connection check task end + +2025-09-24 05:17:24,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:25,215 INFO Connection check task start + +2025-09-24 05:17:25,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:25,215 INFO Out dated connection ,size=0 + +2025-09-24 05:17:25,215 INFO Connection check task end + +2025-09-24 05:17:27,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:28,216 INFO Connection check task start + +2025-09-24 05:17:28,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:28,216 INFO Out dated connection ,size=0 + +2025-09-24 05:17:28,216 INFO Connection check task end + +2025-09-24 05:17:30,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:31,218 INFO Connection check task start + +2025-09-24 05:17:31,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:31,218 INFO Out dated connection ,size=0 + +2025-09-24 05:17:31,218 INFO Connection check task end + +2025-09-24 05:17:33,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:34,220 INFO Connection check task start + +2025-09-24 05:17:34,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:34,221 INFO Out dated connection ,size=0 + +2025-09-24 05:17:34,221 INFO Connection check task end + +2025-09-24 05:17:36,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:37,221 INFO Connection check task start + +2025-09-24 05:17:37,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:37,221 INFO Out dated connection ,size=0 + +2025-09-24 05:17:37,221 INFO Connection check task end + +2025-09-24 05:17:39,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:40,222 INFO Connection check task start + +2025-09-24 05:17:40,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:40,222 INFO Out dated connection ,size=0 + +2025-09-24 05:17:40,222 INFO Connection check task end + +2025-09-24 05:17:42,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:43,223 INFO Connection check task start + +2025-09-24 05:17:43,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:43,224 INFO Out dated connection ,size=0 + +2025-09-24 05:17:43,224 INFO Connection check task end + +2025-09-24 05:17:45,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:46,226 INFO Connection check task start + +2025-09-24 05:17:46,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:46,226 INFO Out dated connection ,size=0 + +2025-09-24 05:17:46,226 INFO Connection check task end + +2025-09-24 05:17:48,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:49,227 INFO Connection check task start + +2025-09-24 05:17:49,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:49,227 INFO Out dated connection ,size=0 + +2025-09-24 05:17:49,227 INFO Connection check task end + +2025-09-24 05:17:51,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:52,228 INFO Connection check task start + +2025-09-24 05:17:52,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:52,228 INFO Out dated connection ,size=0 + +2025-09-24 05:17:52,228 INFO Connection check task end + +2025-09-24 05:17:54,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:55,229 INFO Connection check task start + +2025-09-24 05:17:55,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:55,229 INFO Out dated connection ,size=0 + +2025-09-24 05:17:55,229 INFO Connection check task end + +2025-09-24 05:17:57,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:17:58,231 INFO Connection check task start + +2025-09-24 05:17:58,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:17:58,231 INFO Out dated connection ,size=0 + +2025-09-24 05:17:58,231 INFO Connection check task end + +2025-09-24 05:18:00,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:01,232 INFO Connection check task start + +2025-09-24 05:18:01,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:01,232 INFO Out dated connection ,size=0 + +2025-09-24 05:18:01,232 INFO Connection check task end + +2025-09-24 05:18:03,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:04,233 INFO Connection check task start + +2025-09-24 05:18:04,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:04,233 INFO Out dated connection ,size=0 + +2025-09-24 05:18:04,233 INFO Connection check task end + +2025-09-24 05:18:06,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:07,234 INFO Connection check task start + +2025-09-24 05:18:07,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:07,234 INFO Out dated connection ,size=0 + +2025-09-24 05:18:07,234 INFO Connection check task end + +2025-09-24 05:18:09,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:10,234 INFO Connection check task start + +2025-09-24 05:18:10,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:10,235 INFO Out dated connection ,size=0 + +2025-09-24 05:18:10,235 INFO Connection check task end + +2025-09-24 05:18:12,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:13,235 INFO Connection check task start + +2025-09-24 05:18:13,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:13,236 INFO Out dated connection ,size=0 + +2025-09-24 05:18:13,236 INFO Connection check task end + +2025-09-24 05:18:15,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:16,237 INFO Connection check task start + +2025-09-24 05:18:16,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:16,237 INFO Out dated connection ,size=0 + +2025-09-24 05:18:16,237 INFO Connection check task end + +2025-09-24 05:18:18,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:19,237 INFO Connection check task start + +2025-09-24 05:18:19,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:19,256 INFO Out dated connection ,size=0 + +2025-09-24 05:18:19,256 INFO Connection check task end + +2025-09-24 05:18:21,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:22,256 INFO Connection check task start + +2025-09-24 05:18:22,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:22,256 INFO Out dated connection ,size=0 + +2025-09-24 05:18:22,257 INFO Connection check task end + +2025-09-24 05:18:24,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:25,257 INFO Connection check task start + +2025-09-24 05:18:25,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:25,257 INFO Out dated connection ,size=0 + +2025-09-24 05:18:25,257 INFO Connection check task end + +2025-09-24 05:18:27,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:28,257 INFO Connection check task start + +2025-09-24 05:18:28,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:28,258 INFO Out dated connection ,size=0 + +2025-09-24 05:18:28,258 INFO Connection check task end + +2025-09-24 05:18:30,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:31,260 INFO Connection check task start + +2025-09-24 05:18:31,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:31,260 INFO Out dated connection ,size=0 + +2025-09-24 05:18:31,260 INFO Connection check task end + +2025-09-24 05:18:33,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:34,262 INFO Connection check task start + +2025-09-24 05:18:34,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:34,262 INFO Out dated connection ,size=0 + +2025-09-24 05:18:34,262 INFO Connection check task end + +2025-09-24 05:18:36,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:37,262 INFO Connection check task start + +2025-09-24 05:18:37,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:37,262 INFO Out dated connection ,size=0 + +2025-09-24 05:18:37,262 INFO Connection check task end + +2025-09-24 05:18:39,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:40,264 INFO Connection check task start + +2025-09-24 05:18:40,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:40,265 INFO Out dated connection ,size=0 + +2025-09-24 05:18:40,265 INFO Connection check task end + +2025-09-24 05:18:42,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:43,265 INFO Connection check task start + +2025-09-24 05:18:43,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:43,265 INFO Out dated connection ,size=0 + +2025-09-24 05:18:43,265 INFO Connection check task end + +2025-09-24 05:18:45,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:46,265 INFO Connection check task start + +2025-09-24 05:18:46,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:46,266 INFO Out dated connection ,size=0 + +2025-09-24 05:18:46,266 INFO Connection check task end + +2025-09-24 05:18:48,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:49,266 INFO Connection check task start + +2025-09-24 05:18:49,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:49,266 INFO Out dated connection ,size=0 + +2025-09-24 05:18:49,266 INFO Connection check task end + +2025-09-24 05:18:51,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:52,266 INFO Connection check task start + +2025-09-24 05:18:52,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:52,267 INFO Out dated connection ,size=0 + +2025-09-24 05:18:52,267 INFO Connection check task end + +2025-09-24 05:18:54,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:55,267 INFO Connection check task start + +2025-09-24 05:18:55,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:55,267 INFO Out dated connection ,size=0 + +2025-09-24 05:18:55,268 INFO Connection check task end + +2025-09-24 05:18:57,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:18:58,268 INFO Connection check task start + +2025-09-24 05:18:58,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:18:58,268 INFO Out dated connection ,size=0 + +2025-09-24 05:18:58,268 INFO Connection check task end + +2025-09-24 05:19:00,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:01,269 INFO Connection check task start + +2025-09-24 05:19:01,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:01,269 INFO Out dated connection ,size=0 + +2025-09-24 05:19:01,269 INFO Connection check task end + +2025-09-24 05:19:03,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:04,269 INFO Connection check task start + +2025-09-24 05:19:04,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:04,270 INFO Out dated connection ,size=0 + +2025-09-24 05:19:04,270 INFO Connection check task end + +2025-09-24 05:19:06,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:07,270 INFO Connection check task start + +2025-09-24 05:19:07,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:07,270 INFO Out dated connection ,size=0 + +2025-09-24 05:19:07,270 INFO Connection check task end + +2025-09-24 05:19:09,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:10,270 INFO Connection check task start + +2025-09-24 05:19:10,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:10,270 INFO Out dated connection ,size=0 + +2025-09-24 05:19:10,270 INFO Connection check task end + +2025-09-24 05:19:12,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:13,271 INFO Connection check task start + +2025-09-24 05:19:13,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:13,271 INFO Out dated connection ,size=0 + +2025-09-24 05:19:13,271 INFO Connection check task end + +2025-09-24 05:19:15,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:16,272 INFO Connection check task start + +2025-09-24 05:19:16,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:16,272 INFO Out dated connection ,size=0 + +2025-09-24 05:19:16,272 INFO Connection check task end + +2025-09-24 05:19:18,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:19,278 INFO Connection check task start + +2025-09-24 05:19:19,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:19,278 INFO Out dated connection ,size=0 + +2025-09-24 05:19:19,278 INFO Connection check task end + +2025-09-24 05:19:21,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:22,279 INFO Connection check task start + +2025-09-24 05:19:22,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:22,279 INFO Out dated connection ,size=0 + +2025-09-24 05:19:22,280 INFO Connection check task end + +2025-09-24 05:19:24,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:25,280 INFO Connection check task start + +2025-09-24 05:19:25,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:25,280 INFO Out dated connection ,size=0 + +2025-09-24 05:19:25,280 INFO Connection check task end + +2025-09-24 05:19:27,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:28,280 INFO Connection check task start + +2025-09-24 05:19:28,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:28,280 INFO Out dated connection ,size=0 + +2025-09-24 05:19:28,280 INFO Connection check task end + +2025-09-24 05:19:30,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:31,281 INFO Connection check task start + +2025-09-24 05:19:31,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:31,281 INFO Out dated connection ,size=0 + +2025-09-24 05:19:31,281 INFO Connection check task end + +2025-09-24 05:19:33,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:34,281 INFO Connection check task start + +2025-09-24 05:19:34,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:34,281 INFO Out dated connection ,size=0 + +2025-09-24 05:19:34,281 INFO Connection check task end + +2025-09-24 05:19:36,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:37,283 INFO Connection check task start + +2025-09-24 05:19:37,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:37,284 INFO Out dated connection ,size=0 + +2025-09-24 05:19:37,284 INFO Connection check task end + +2025-09-24 05:19:39,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:40,284 INFO Connection check task start + +2025-09-24 05:19:40,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:40,284 INFO Out dated connection ,size=0 + +2025-09-24 05:19:40,284 INFO Connection check task end + +2025-09-24 05:19:42,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:43,284 INFO Connection check task start + +2025-09-24 05:19:43,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:43,285 INFO Out dated connection ,size=0 + +2025-09-24 05:19:43,285 INFO Connection check task end + +2025-09-24 05:19:45,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:46,285 INFO Connection check task start + +2025-09-24 05:19:46,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:46,285 INFO Out dated connection ,size=0 + +2025-09-24 05:19:46,285 INFO Connection check task end + +2025-09-24 05:19:48,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:49,286 INFO Connection check task start + +2025-09-24 05:19:49,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:49,286 INFO Out dated connection ,size=0 + +2025-09-24 05:19:49,286 INFO Connection check task end + +2025-09-24 05:19:51,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:52,286 INFO Connection check task start + +2025-09-24 05:19:52,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:52,287 INFO Out dated connection ,size=0 + +2025-09-24 05:19:52,287 INFO Connection check task end + +2025-09-24 05:19:54,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:55,287 INFO Connection check task start + +2025-09-24 05:19:55,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:55,287 INFO Out dated connection ,size=0 + +2025-09-24 05:19:55,287 INFO Connection check task end + +2025-09-24 05:19:57,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:19:58,288 INFO Connection check task start + +2025-09-24 05:19:58,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:19:58,288 INFO Out dated connection ,size=0 + +2025-09-24 05:19:58,288 INFO Connection check task end + +2025-09-24 05:20:00,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:01,288 INFO Connection check task start + +2025-09-24 05:20:01,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:01,288 INFO Out dated connection ,size=0 + +2025-09-24 05:20:01,288 INFO Connection check task end + +2025-09-24 05:20:03,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:04,288 INFO Connection check task start + +2025-09-24 05:20:04,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:04,289 INFO Out dated connection ,size=0 + +2025-09-24 05:20:04,289 INFO Connection check task end + +2025-09-24 05:20:06,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:07,289 INFO Connection check task start + +2025-09-24 05:20:07,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:07,289 INFO Out dated connection ,size=0 + +2025-09-24 05:20:07,289 INFO Connection check task end + +2025-09-24 05:20:09,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:10,289 INFO Connection check task start + +2025-09-24 05:20:10,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:10,289 INFO Out dated connection ,size=0 + +2025-09-24 05:20:10,289 INFO Connection check task end + +2025-09-24 05:20:12,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:13,290 INFO Connection check task start + +2025-09-24 05:20:13,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:13,290 INFO Out dated connection ,size=0 + +2025-09-24 05:20:13,290 INFO Connection check task end + +2025-09-24 05:20:15,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:16,290 INFO Connection check task start + +2025-09-24 05:20:16,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:16,290 INFO Out dated connection ,size=0 + +2025-09-24 05:20:16,290 INFO Connection check task end + +2025-09-24 05:20:18,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:19,297 INFO Connection check task start + +2025-09-24 05:20:19,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:19,299 INFO Out dated connection ,size=0 + +2025-09-24 05:20:19,299 INFO Connection check task end + +2025-09-24 05:20:21,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:22,299 INFO Connection check task start + +2025-09-24 05:20:22,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:22,299 INFO Out dated connection ,size=0 + +2025-09-24 05:20:22,299 INFO Connection check task end + +2025-09-24 05:20:24,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:25,300 INFO Connection check task start + +2025-09-24 05:20:25,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:25,300 INFO Out dated connection ,size=0 + +2025-09-24 05:20:25,300 INFO Connection check task end + +2025-09-24 05:20:27,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:28,300 INFO Connection check task start + +2025-09-24 05:20:28,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:28,300 INFO Out dated connection ,size=0 + +2025-09-24 05:20:28,300 INFO Connection check task end + +2025-09-24 05:20:30,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:31,301 INFO Connection check task start + +2025-09-24 05:20:31,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:31,301 INFO Out dated connection ,size=0 + +2025-09-24 05:20:31,301 INFO Connection check task end + +2025-09-24 05:20:33,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:34,301 INFO Connection check task start + +2025-09-24 05:20:34,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:34,302 INFO Out dated connection ,size=0 + +2025-09-24 05:20:34,302 INFO Connection check task end + +2025-09-24 05:20:36,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:37,302 INFO Connection check task start + +2025-09-24 05:20:37,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:37,302 INFO Out dated connection ,size=0 + +2025-09-24 05:20:37,302 INFO Connection check task end + +2025-09-24 05:20:39,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:40,302 INFO Connection check task start + +2025-09-24 05:20:40,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:40,303 INFO Out dated connection ,size=0 + +2025-09-24 05:20:40,303 INFO Connection check task end + +2025-09-24 05:20:42,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:43,303 INFO Connection check task start + +2025-09-24 05:20:43,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:43,303 INFO Out dated connection ,size=0 + +2025-09-24 05:20:43,303 INFO Connection check task end + +2025-09-24 05:20:45,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:46,303 INFO Connection check task start + +2025-09-24 05:20:46,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:46,303 INFO Out dated connection ,size=0 + +2025-09-24 05:20:46,303 INFO Connection check task end + +2025-09-24 05:20:48,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:49,304 INFO Connection check task start + +2025-09-24 05:20:49,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:49,304 INFO Out dated connection ,size=0 + +2025-09-24 05:20:49,304 INFO Connection check task end + +2025-09-24 05:20:51,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:52,304 INFO Connection check task start + +2025-09-24 05:20:52,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:52,304 INFO Out dated connection ,size=0 + +2025-09-24 05:20:52,304 INFO Connection check task end + +2025-09-24 05:20:54,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:55,305 INFO Connection check task start + +2025-09-24 05:20:55,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:55,305 INFO Out dated connection ,size=0 + +2025-09-24 05:20:55,305 INFO Connection check task end + +2025-09-24 05:20:57,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:20:58,305 INFO Connection check task start + +2025-09-24 05:20:58,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:20:58,305 INFO Out dated connection ,size=0 + +2025-09-24 05:20:58,305 INFO Connection check task end + +2025-09-24 05:21:00,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:01,305 INFO Connection check task start + +2025-09-24 05:21:01,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:01,306 INFO Out dated connection ,size=0 + +2025-09-24 05:21:01,306 INFO Connection check task end + +2025-09-24 05:21:03,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:04,306 INFO Connection check task start + +2025-09-24 05:21:04,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:04,306 INFO Out dated connection ,size=0 + +2025-09-24 05:21:04,306 INFO Connection check task end + +2025-09-24 05:21:06,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:07,306 INFO Connection check task start + +2025-09-24 05:21:07,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:07,306 INFO Out dated connection ,size=0 + +2025-09-24 05:21:07,306 INFO Connection check task end + +2025-09-24 05:21:09,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:10,307 INFO Connection check task start + +2025-09-24 05:21:10,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:10,307 INFO Out dated connection ,size=0 + +2025-09-24 05:21:10,307 INFO Connection check task end + +2025-09-24 05:21:12,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:13,307 INFO Connection check task start + +2025-09-24 05:21:13,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:13,307 INFO Out dated connection ,size=0 + +2025-09-24 05:21:13,307 INFO Connection check task end + +2025-09-24 05:21:15,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:16,307 INFO Connection check task start + +2025-09-24 05:21:16,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:16,307 INFO Out dated connection ,size=0 + +2025-09-24 05:21:16,307 INFO Connection check task end + +2025-09-24 05:21:18,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:19,308 INFO Connection check task start + +2025-09-24 05:21:19,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:19,308 INFO Out dated connection ,size=0 + +2025-09-24 05:21:19,308 INFO Connection check task end + +2025-09-24 05:21:21,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:22,308 INFO Connection check task start + +2025-09-24 05:21:22,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:22,308 INFO Out dated connection ,size=0 + +2025-09-24 05:21:22,308 INFO Connection check task end + +2025-09-24 05:21:24,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:25,308 INFO Connection check task start + +2025-09-24 05:21:25,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:25,309 INFO Out dated connection ,size=0 + +2025-09-24 05:21:25,309 INFO Connection check task end + +2025-09-24 05:21:27,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:28,309 INFO Connection check task start + +2025-09-24 05:21:28,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:28,310 INFO Out dated connection ,size=0 + +2025-09-24 05:21:28,310 INFO Connection check task end + +2025-09-24 05:21:30,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:31,310 INFO Connection check task start + +2025-09-24 05:21:31,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:31,310 INFO Out dated connection ,size=0 + +2025-09-24 05:21:31,310 INFO Connection check task end + +2025-09-24 05:21:33,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:34,310 INFO Connection check task start + +2025-09-24 05:21:34,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:34,310 INFO Out dated connection ,size=0 + +2025-09-24 05:21:34,310 INFO Connection check task end + +2025-09-24 05:21:36,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:37,311 INFO Connection check task start + +2025-09-24 05:21:37,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:37,311 INFO Out dated connection ,size=0 + +2025-09-24 05:21:37,311 INFO Connection check task end + +2025-09-24 05:21:39,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:40,311 INFO Connection check task start + +2025-09-24 05:21:40,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:40,312 INFO Out dated connection ,size=0 + +2025-09-24 05:21:40,312 INFO Connection check task end + +2025-09-24 05:21:42,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:43,312 INFO Connection check task start + +2025-09-24 05:21:43,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:43,312 INFO Out dated connection ,size=0 + +2025-09-24 05:21:43,312 INFO Connection check task end + +2025-09-24 05:21:45,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:46,313 INFO Connection check task start + +2025-09-24 05:21:46,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:46,313 INFO Out dated connection ,size=0 + +2025-09-24 05:21:46,313 INFO Connection check task end + +2025-09-24 05:21:48,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:49,314 INFO Connection check task start + +2025-09-24 05:21:49,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:49,314 INFO Out dated connection ,size=0 + +2025-09-24 05:21:49,314 INFO Connection check task end + +2025-09-24 05:21:51,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:52,314 INFO Connection check task start + +2025-09-24 05:21:52,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:52,315 INFO Out dated connection ,size=0 + +2025-09-24 05:21:52,315 INFO Connection check task end + +2025-09-24 05:21:54,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:55,315 INFO Connection check task start + +2025-09-24 05:21:55,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:55,315 INFO Out dated connection ,size=0 + +2025-09-24 05:21:55,315 INFO Connection check task end + +2025-09-24 05:21:57,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:21:58,315 INFO Connection check task start + +2025-09-24 05:21:58,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:21:58,316 INFO Out dated connection ,size=0 + +2025-09-24 05:21:58,316 INFO Connection check task end + +2025-09-24 05:22:00,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:01,316 INFO Connection check task start + +2025-09-24 05:22:01,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:01,316 INFO Out dated connection ,size=0 + +2025-09-24 05:22:01,316 INFO Connection check task end + +2025-09-24 05:22:03,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:04,317 INFO Connection check task start + +2025-09-24 05:22:04,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:04,317 INFO Out dated connection ,size=0 + +2025-09-24 05:22:04,317 INFO Connection check task end + +2025-09-24 05:22:06,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:07,317 INFO Connection check task start + +2025-09-24 05:22:07,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:07,317 INFO Out dated connection ,size=0 + +2025-09-24 05:22:07,317 INFO Connection check task end + +2025-09-24 05:22:09,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:10,318 INFO Connection check task start + +2025-09-24 05:22:10,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:10,318 INFO Out dated connection ,size=0 + +2025-09-24 05:22:10,318 INFO Connection check task end + +2025-09-24 05:22:12,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:13,318 INFO Connection check task start + +2025-09-24 05:22:13,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:13,318 INFO Out dated connection ,size=0 + +2025-09-24 05:22:13,318 INFO Connection check task end + +2025-09-24 05:22:15,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:16,319 INFO Connection check task start + +2025-09-24 05:22:16,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:16,319 INFO Out dated connection ,size=0 + +2025-09-24 05:22:16,319 INFO Connection check task end + +2025-09-24 05:22:18,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:19,319 INFO Connection check task start + +2025-09-24 05:22:19,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:19,319 INFO Out dated connection ,size=0 + +2025-09-24 05:22:19,319 INFO Connection check task end + +2025-09-24 05:22:21,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:22,320 INFO Connection check task start + +2025-09-24 05:22:22,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:22,320 INFO Out dated connection ,size=0 + +2025-09-24 05:22:22,320 INFO Connection check task end + +2025-09-24 05:22:24,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:25,320 INFO Connection check task start + +2025-09-24 05:22:25,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:25,320 INFO Out dated connection ,size=0 + +2025-09-24 05:22:25,320 INFO Connection check task end + +2025-09-24 05:22:27,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:28,321 INFO Connection check task start + +2025-09-24 05:22:28,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:28,321 INFO Out dated connection ,size=0 + +2025-09-24 05:22:28,321 INFO Connection check task end + +2025-09-24 05:22:30,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:31,322 INFO Connection check task start + +2025-09-24 05:22:31,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:31,322 INFO Out dated connection ,size=0 + +2025-09-24 05:22:31,322 INFO Connection check task end + +2025-09-24 05:22:33,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:34,322 INFO Connection check task start + +2025-09-24 05:22:34,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:34,322 INFO Out dated connection ,size=0 + +2025-09-24 05:22:34,322 INFO Connection check task end + +2025-09-24 05:22:36,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:37,322 INFO Connection check task start + +2025-09-24 05:22:37,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:37,323 INFO Out dated connection ,size=0 + +2025-09-24 05:22:37,323 INFO Connection check task end + +2025-09-24 05:22:39,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:40,323 INFO Connection check task start + +2025-09-24 05:22:40,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:40,323 INFO Out dated connection ,size=0 + +2025-09-24 05:22:40,323 INFO Connection check task end + +2025-09-24 05:22:42,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:43,324 INFO Connection check task start + +2025-09-24 05:22:43,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:43,324 INFO Out dated connection ,size=0 + +2025-09-24 05:22:43,324 INFO Connection check task end + +2025-09-24 05:22:45,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:46,325 INFO Connection check task start + +2025-09-24 05:22:46,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:46,325 INFO Out dated connection ,size=0 + +2025-09-24 05:22:46,325 INFO Connection check task end + +2025-09-24 05:22:48,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:49,326 INFO Connection check task start + +2025-09-24 05:22:49,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:49,327 INFO Out dated connection ,size=0 + +2025-09-24 05:22:49,327 INFO Connection check task end + +2025-09-24 05:22:51,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:52,327 INFO Connection check task start + +2025-09-24 05:22:52,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:52,327 INFO Out dated connection ,size=0 + +2025-09-24 05:22:52,327 INFO Connection check task end + +2025-09-24 05:22:54,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:55,327 INFO Connection check task start + +2025-09-24 05:22:55,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:55,328 INFO Out dated connection ,size=0 + +2025-09-24 05:22:55,328 INFO Connection check task end + +2025-09-24 05:22:57,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:22:58,328 INFO Connection check task start + +2025-09-24 05:22:58,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:22:58,328 INFO Out dated connection ,size=0 + +2025-09-24 05:22:58,328 INFO Connection check task end + +2025-09-24 05:23:00,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:01,329 INFO Connection check task start + +2025-09-24 05:23:01,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:01,329 INFO Out dated connection ,size=0 + +2025-09-24 05:23:01,329 INFO Connection check task end + +2025-09-24 05:23:03,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:04,329 INFO Connection check task start + +2025-09-24 05:23:04,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:04,329 INFO Out dated connection ,size=0 + +2025-09-24 05:23:04,329 INFO Connection check task end + +2025-09-24 05:23:06,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:07,330 INFO Connection check task start + +2025-09-24 05:23:07,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:07,331 INFO Out dated connection ,size=0 + +2025-09-24 05:23:07,331 INFO Connection check task end + +2025-09-24 05:23:09,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:10,331 INFO Connection check task start + +2025-09-24 05:23:10,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:10,331 INFO Out dated connection ,size=0 + +2025-09-24 05:23:10,331 INFO Connection check task end + +2025-09-24 05:23:12,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:13,333 INFO Connection check task start + +2025-09-24 05:23:13,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:13,333 INFO Out dated connection ,size=0 + +2025-09-24 05:23:13,333 INFO Connection check task end + +2025-09-24 05:23:15,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:16,334 INFO Connection check task start + +2025-09-24 05:23:16,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:16,334 INFO Out dated connection ,size=0 + +2025-09-24 05:23:16,335 INFO Connection check task end + +2025-09-24 05:23:18,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:19,335 INFO Connection check task start + +2025-09-24 05:23:19,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:19,335 INFO Out dated connection ,size=0 + +2025-09-24 05:23:19,335 INFO Connection check task end + +2025-09-24 05:23:21,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:22,336 INFO Connection check task start + +2025-09-24 05:23:22,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:22,336 INFO Out dated connection ,size=0 + +2025-09-24 05:23:22,336 INFO Connection check task end + +2025-09-24 05:23:24,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:25,338 INFO Connection check task start + +2025-09-24 05:23:25,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:25,338 INFO Out dated connection ,size=0 + +2025-09-24 05:23:25,338 INFO Connection check task end + +2025-09-24 05:23:27,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:28,340 INFO Connection check task start + +2025-09-24 05:23:28,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:28,340 INFO Out dated connection ,size=0 + +2025-09-24 05:23:28,341 INFO Connection check task end + +2025-09-24 05:23:30,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:31,341 INFO Connection check task start + +2025-09-24 05:23:31,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:31,341 INFO Out dated connection ,size=0 + +2025-09-24 05:23:31,341 INFO Connection check task end + +2025-09-24 05:23:33,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:34,342 INFO Connection check task start + +2025-09-24 05:23:34,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:34,343 INFO Out dated connection ,size=0 + +2025-09-24 05:23:34,343 INFO Connection check task end + +2025-09-24 05:23:36,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:37,343 INFO Connection check task start + +2025-09-24 05:23:37,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:37,343 INFO Out dated connection ,size=0 + +2025-09-24 05:23:37,343 INFO Connection check task end + +2025-09-24 05:23:39,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:40,345 INFO Connection check task start + +2025-09-24 05:23:40,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:40,345 INFO Out dated connection ,size=0 + +2025-09-24 05:23:40,346 INFO Connection check task end + +2025-09-24 05:23:42,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:43,347 INFO Connection check task start + +2025-09-24 05:23:43,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:43,347 INFO Out dated connection ,size=0 + +2025-09-24 05:23:43,347 INFO Connection check task end + +2025-09-24 05:23:45,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:46,348 INFO Connection check task start + +2025-09-24 05:23:46,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:46,348 INFO Out dated connection ,size=0 + +2025-09-24 05:23:46,348 INFO Connection check task end + +2025-09-24 05:23:48,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:49,350 INFO Connection check task start + +2025-09-24 05:23:49,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:49,350 INFO Out dated connection ,size=0 + +2025-09-24 05:23:49,350 INFO Connection check task end + +2025-09-24 05:23:51,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:52,350 INFO Connection check task start + +2025-09-24 05:23:52,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:52,351 INFO Out dated connection ,size=0 + +2025-09-24 05:23:52,351 INFO Connection check task end + +2025-09-24 05:23:54,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:55,352 INFO Connection check task start + +2025-09-24 05:23:55,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:55,353 INFO Out dated connection ,size=0 + +2025-09-24 05:23:55,353 INFO Connection check task end + +2025-09-24 05:23:57,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:23:58,354 INFO Connection check task start + +2025-09-24 05:23:58,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:23:58,354 INFO Out dated connection ,size=0 + +2025-09-24 05:23:58,354 INFO Connection check task end + +2025-09-24 05:24:00,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:01,356 INFO Connection check task start + +2025-09-24 05:24:01,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:01,356 INFO Out dated connection ,size=0 + +2025-09-24 05:24:01,356 INFO Connection check task end + +2025-09-24 05:24:03,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:04,357 INFO Connection check task start + +2025-09-24 05:24:04,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:04,357 INFO Out dated connection ,size=0 + +2025-09-24 05:24:04,357 INFO Connection check task end + +2025-09-24 05:24:06,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:07,359 INFO Connection check task start + +2025-09-24 05:24:07,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:07,359 INFO Out dated connection ,size=0 + +2025-09-24 05:24:07,359 INFO Connection check task end + +2025-09-24 05:24:09,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:10,359 INFO Connection check task start + +2025-09-24 05:24:10,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:10,359 INFO Out dated connection ,size=0 + +2025-09-24 05:24:10,359 INFO Connection check task end + +2025-09-24 05:24:12,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:13,361 INFO Connection check task start + +2025-09-24 05:24:13,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:13,362 INFO Out dated connection ,size=0 + +2025-09-24 05:24:13,362 INFO Connection check task end + +2025-09-24 05:24:15,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:16,362 INFO Connection check task start + +2025-09-24 05:24:16,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:16,362 INFO Out dated connection ,size=0 + +2025-09-24 05:24:16,362 INFO Connection check task end + +2025-09-24 05:24:18,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:19,363 INFO Connection check task start + +2025-09-24 05:24:19,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:19,363 INFO Out dated connection ,size=0 + +2025-09-24 05:24:19,363 INFO Connection check task end + +2025-09-24 05:24:21,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:22,364 INFO Connection check task start + +2025-09-24 05:24:22,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:22,364 INFO Out dated connection ,size=0 + +2025-09-24 05:24:22,364 INFO Connection check task end + +2025-09-24 05:24:24,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:25,366 INFO Connection check task start + +2025-09-24 05:24:25,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:25,366 INFO Out dated connection ,size=0 + +2025-09-24 05:24:25,366 INFO Connection check task end + +2025-09-24 05:24:27,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:28,366 INFO Connection check task start + +2025-09-24 05:24:28,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:28,366 INFO Out dated connection ,size=0 + +2025-09-24 05:24:28,366 INFO Connection check task end + +2025-09-24 05:24:30,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:31,367 INFO Connection check task start + +2025-09-24 05:24:31,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:31,367 INFO Out dated connection ,size=0 + +2025-09-24 05:24:31,367 INFO Connection check task end + +2025-09-24 05:24:33,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:34,367 INFO Connection check task start + +2025-09-24 05:24:34,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:34,367 INFO Out dated connection ,size=0 + +2025-09-24 05:24:34,367 INFO Connection check task end + +2025-09-24 05:24:36,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:37,368 INFO Connection check task start + +2025-09-24 05:24:37,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:37,368 INFO Out dated connection ,size=0 + +2025-09-24 05:24:37,368 INFO Connection check task end + +2025-09-24 05:24:39,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:40,369 INFO Connection check task start + +2025-09-24 05:24:40,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:40,369 INFO Out dated connection ,size=0 + +2025-09-24 05:24:40,369 INFO Connection check task end + +2025-09-24 05:24:42,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:43,370 INFO Connection check task start + +2025-09-24 05:24:43,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:43,370 INFO Out dated connection ,size=0 + +2025-09-24 05:24:43,370 INFO Connection check task end + +2025-09-24 05:24:45,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:46,371 INFO Connection check task start + +2025-09-24 05:24:46,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:46,371 INFO Out dated connection ,size=0 + +2025-09-24 05:24:46,371 INFO Connection check task end + +2025-09-24 05:24:48,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:49,372 INFO Connection check task start + +2025-09-24 05:24:49,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:49,373 INFO Out dated connection ,size=0 + +2025-09-24 05:24:49,373 INFO Connection check task end + +2025-09-24 05:24:51,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:52,374 INFO Connection check task start + +2025-09-24 05:24:52,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:52,375 INFO Out dated connection ,size=0 + +2025-09-24 05:24:52,375 INFO Connection check task end + +2025-09-24 05:24:54,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:55,377 INFO Connection check task start + +2025-09-24 05:24:55,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:55,377 INFO Out dated connection ,size=0 + +2025-09-24 05:24:55,377 INFO Connection check task end + +2025-09-24 05:24:57,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:24:58,377 INFO Connection check task start + +2025-09-24 05:24:58,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:24:58,378 INFO Out dated connection ,size=0 + +2025-09-24 05:24:58,378 INFO Connection check task end + +2025-09-24 05:25:00,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:01,380 INFO Connection check task start + +2025-09-24 05:25:01,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:01,380 INFO Out dated connection ,size=0 + +2025-09-24 05:25:01,380 INFO Connection check task end + +2025-09-24 05:25:03,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:04,380 INFO Connection check task start + +2025-09-24 05:25:04,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:04,380 INFO Out dated connection ,size=0 + +2025-09-24 05:25:04,380 INFO Connection check task end + +2025-09-24 05:25:06,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:07,381 INFO Connection check task start + +2025-09-24 05:25:07,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:07,381 INFO Out dated connection ,size=0 + +2025-09-24 05:25:07,381 INFO Connection check task end + +2025-09-24 05:25:09,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:10,383 INFO Connection check task start + +2025-09-24 05:25:10,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:10,383 INFO Out dated connection ,size=0 + +2025-09-24 05:25:10,383 INFO Connection check task end + +2025-09-24 05:25:12,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:13,385 INFO Connection check task start + +2025-09-24 05:25:13,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:13,385 INFO Out dated connection ,size=0 + +2025-09-24 05:25:13,385 INFO Connection check task end + +2025-09-24 05:25:15,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:16,386 INFO Connection check task start + +2025-09-24 05:25:16,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:16,386 INFO Out dated connection ,size=0 + +2025-09-24 05:25:16,386 INFO Connection check task end + +2025-09-24 05:25:18,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:19,387 INFO Connection check task start + +2025-09-24 05:25:19,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:19,388 INFO Out dated connection ,size=0 + +2025-09-24 05:25:19,388 INFO Connection check task end + +2025-09-24 05:25:21,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:22,390 INFO Connection check task start + +2025-09-24 05:25:22,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:22,390 INFO Out dated connection ,size=0 + +2025-09-24 05:25:22,390 INFO Connection check task end + +2025-09-24 05:25:24,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:25,391 INFO Connection check task start + +2025-09-24 05:25:25,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:25,392 INFO Out dated connection ,size=0 + +2025-09-24 05:25:25,392 INFO Connection check task end + +2025-09-24 05:25:27,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:28,392 INFO Connection check task start + +2025-09-24 05:25:28,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:28,392 INFO Out dated connection ,size=0 + +2025-09-24 05:25:28,392 INFO Connection check task end + +2025-09-24 05:25:30,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:31,394 INFO Connection check task start + +2025-09-24 05:25:31,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:31,394 INFO Out dated connection ,size=0 + +2025-09-24 05:25:31,394 INFO Connection check task end + +2025-09-24 05:25:33,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:34,395 INFO Connection check task start + +2025-09-24 05:25:34,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:34,395 INFO Out dated connection ,size=0 + +2025-09-24 05:25:34,395 INFO Connection check task end + +2025-09-24 05:25:36,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:37,396 INFO Connection check task start + +2025-09-24 05:25:37,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:37,396 INFO Out dated connection ,size=0 + +2025-09-24 05:25:37,396 INFO Connection check task end + +2025-09-24 05:25:39,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:40,398 INFO Connection check task start + +2025-09-24 05:25:40,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:40,399 INFO Out dated connection ,size=0 + +2025-09-24 05:25:40,399 INFO Connection check task end + +2025-09-24 05:25:42,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:43,399 INFO Connection check task start + +2025-09-24 05:25:43,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:43,400 INFO Out dated connection ,size=0 + +2025-09-24 05:25:43,400 INFO Connection check task end + +2025-09-24 05:25:45,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:46,400 INFO Connection check task start + +2025-09-24 05:25:46,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:46,401 INFO Out dated connection ,size=0 + +2025-09-24 05:25:46,401 INFO Connection check task end + +2025-09-24 05:25:48,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:49,401 INFO Connection check task start + +2025-09-24 05:25:49,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:49,401 INFO Out dated connection ,size=0 + +2025-09-24 05:25:49,401 INFO Connection check task end + +2025-09-24 05:25:51,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:52,403 INFO Connection check task start + +2025-09-24 05:25:52,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:52,403 INFO Out dated connection ,size=0 + +2025-09-24 05:25:52,403 INFO Connection check task end + +2025-09-24 05:25:54,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:55,404 INFO Connection check task start + +2025-09-24 05:25:55,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:55,404 INFO Out dated connection ,size=0 + +2025-09-24 05:25:55,404 INFO Connection check task end + +2025-09-24 05:25:57,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:25:58,406 INFO Connection check task start + +2025-09-24 05:25:58,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:25:58,407 INFO Out dated connection ,size=0 + +2025-09-24 05:25:58,407 INFO Connection check task end + +2025-09-24 05:26:00,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:01,407 INFO Connection check task start + +2025-09-24 05:26:01,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:01,407 INFO Out dated connection ,size=0 + +2025-09-24 05:26:01,407 INFO Connection check task end + +2025-09-24 05:26:03,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:04,409 INFO Connection check task start + +2025-09-24 05:26:04,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:04,409 INFO Out dated connection ,size=0 + +2025-09-24 05:26:04,409 INFO Connection check task end + +2025-09-24 05:26:06,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:07,410 INFO Connection check task start + +2025-09-24 05:26:07,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:07,410 INFO Out dated connection ,size=0 + +2025-09-24 05:26:07,410 INFO Connection check task end + +2025-09-24 05:26:09,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:10,411 INFO Connection check task start + +2025-09-24 05:26:10,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:10,412 INFO Out dated connection ,size=0 + +2025-09-24 05:26:10,412 INFO Connection check task end + +2025-09-24 05:26:12,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:13,413 INFO Connection check task start + +2025-09-24 05:26:13,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:13,413 INFO Out dated connection ,size=0 + +2025-09-24 05:26:13,413 INFO Connection check task end + +2025-09-24 05:26:15,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:16,414 INFO Connection check task start + +2025-09-24 05:26:16,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:16,414 INFO Out dated connection ,size=0 + +2025-09-24 05:26:16,414 INFO Connection check task end + +2025-09-24 05:26:18,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:19,420 INFO Connection check task start + +2025-09-24 05:26:19,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:19,420 INFO Out dated connection ,size=0 + +2025-09-24 05:26:19,420 INFO Connection check task end + +2025-09-24 05:26:21,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:22,421 INFO Connection check task start + +2025-09-24 05:26:22,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:22,421 INFO Out dated connection ,size=0 + +2025-09-24 05:26:22,421 INFO Connection check task end + +2025-09-24 05:26:24,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:25,421 INFO Connection check task start + +2025-09-24 05:26:25,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:25,421 INFO Out dated connection ,size=0 + +2025-09-24 05:26:25,421 INFO Connection check task end + +2025-09-24 05:26:27,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:28,422 INFO Connection check task start + +2025-09-24 05:26:28,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:28,422 INFO Out dated connection ,size=0 + +2025-09-24 05:26:28,422 INFO Connection check task end + +2025-09-24 05:26:30,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:31,423 INFO Connection check task start + +2025-09-24 05:26:31,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:31,423 INFO Out dated connection ,size=0 + +2025-09-24 05:26:31,423 INFO Connection check task end + +2025-09-24 05:26:33,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:34,423 INFO Connection check task start + +2025-09-24 05:26:34,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:34,423 INFO Out dated connection ,size=0 + +2025-09-24 05:26:34,423 INFO Connection check task end + +2025-09-24 05:26:36,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:37,424 INFO Connection check task start + +2025-09-24 05:26:37,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:37,425 INFO Out dated connection ,size=0 + +2025-09-24 05:26:37,425 INFO Connection check task end + +2025-09-24 05:26:39,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:40,425 INFO Connection check task start + +2025-09-24 05:26:40,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:40,425 INFO Out dated connection ,size=0 + +2025-09-24 05:26:40,425 INFO Connection check task end + +2025-09-24 05:26:42,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:43,426 INFO Connection check task start + +2025-09-24 05:26:43,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:43,426 INFO Out dated connection ,size=0 + +2025-09-24 05:26:43,426 INFO Connection check task end + +2025-09-24 05:26:45,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:46,426 INFO Connection check task start + +2025-09-24 05:26:46,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:46,440 INFO Out dated connection ,size=0 + +2025-09-24 05:26:46,440 INFO Connection check task end + +2025-09-24 05:26:48,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:49,441 INFO Connection check task start + +2025-09-24 05:26:49,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:49,441 INFO Out dated connection ,size=0 + +2025-09-24 05:26:49,441 INFO Connection check task end + +2025-09-24 05:26:51,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:52,441 INFO Connection check task start + +2025-09-24 05:26:52,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:52,442 INFO Out dated connection ,size=0 + +2025-09-24 05:26:52,442 INFO Connection check task end + +2025-09-24 05:26:54,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:55,442 INFO Connection check task start + +2025-09-24 05:26:55,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:55,442 INFO Out dated connection ,size=0 + +2025-09-24 05:26:55,442 INFO Connection check task end + +2025-09-24 05:26:57,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:26:58,442 INFO Connection check task start + +2025-09-24 05:26:58,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:26:58,443 INFO Out dated connection ,size=0 + +2025-09-24 05:26:58,443 INFO Connection check task end + +2025-09-24 05:27:00,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:01,443 INFO Connection check task start + +2025-09-24 05:27:01,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:01,443 INFO Out dated connection ,size=0 + +2025-09-24 05:27:01,443 INFO Connection check task end + +2025-09-24 05:27:03,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:04,444 INFO Connection check task start + +2025-09-24 05:27:04,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:04,444 INFO Out dated connection ,size=0 + +2025-09-24 05:27:04,444 INFO Connection check task end + +2025-09-24 05:27:06,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:07,446 INFO Connection check task start + +2025-09-24 05:27:07,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:07,446 INFO Out dated connection ,size=0 + +2025-09-24 05:27:07,446 INFO Connection check task end + +2025-09-24 05:27:09,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:10,447 INFO Connection check task start + +2025-09-24 05:27:10,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:10,447 INFO Out dated connection ,size=0 + +2025-09-24 05:27:10,447 INFO Connection check task end + +2025-09-24 05:27:12,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:13,449 INFO Connection check task start + +2025-09-24 05:27:13,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:13,450 INFO Out dated connection ,size=0 + +2025-09-24 05:27:13,450 INFO Connection check task end + +2025-09-24 05:27:15,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:16,451 INFO Connection check task start + +2025-09-24 05:27:16,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:16,451 INFO Out dated connection ,size=0 + +2025-09-24 05:27:16,452 INFO Connection check task end + +2025-09-24 05:27:18,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:19,452 INFO Connection check task start + +2025-09-24 05:27:19,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:19,452 INFO Out dated connection ,size=0 + +2025-09-24 05:27:19,452 INFO Connection check task end + +2025-09-24 05:27:21,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:22,453 INFO Connection check task start + +2025-09-24 05:27:22,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:22,453 INFO Out dated connection ,size=0 + +2025-09-24 05:27:22,453 INFO Connection check task end + +2025-09-24 05:27:24,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:25,455 INFO Connection check task start + +2025-09-24 05:27:25,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:25,455 INFO Out dated connection ,size=0 + +2025-09-24 05:27:25,455 INFO Connection check task end + +2025-09-24 05:27:27,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:28,455 INFO Connection check task start + +2025-09-24 05:27:28,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:28,455 INFO Out dated connection ,size=0 + +2025-09-24 05:27:28,455 INFO Connection check task end + +2025-09-24 05:27:30,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:31,456 INFO Connection check task start + +2025-09-24 05:27:31,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:31,456 INFO Out dated connection ,size=0 + +2025-09-24 05:27:31,456 INFO Connection check task end + +2025-09-24 05:27:33,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:34,456 INFO Connection check task start + +2025-09-24 05:27:34,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:34,456 INFO Out dated connection ,size=0 + +2025-09-24 05:27:34,456 INFO Connection check task end + +2025-09-24 05:27:36,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:37,456 INFO Connection check task start + +2025-09-24 05:27:37,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:37,457 INFO Out dated connection ,size=0 + +2025-09-24 05:27:37,457 INFO Connection check task end + +2025-09-24 05:27:39,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:40,459 INFO Connection check task start + +2025-09-24 05:27:40,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:40,459 INFO Out dated connection ,size=0 + +2025-09-24 05:27:40,459 INFO Connection check task end + +2025-09-24 05:27:42,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:43,460 INFO Connection check task start + +2025-09-24 05:27:43,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:43,460 INFO Out dated connection ,size=0 + +2025-09-24 05:27:43,460 INFO Connection check task end + +2025-09-24 05:27:45,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:46,460 INFO Connection check task start + +2025-09-24 05:27:46,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:46,461 INFO Out dated connection ,size=0 + +2025-09-24 05:27:46,461 INFO Connection check task end + +2025-09-24 05:27:48,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:49,461 INFO Connection check task start + +2025-09-24 05:27:49,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:49,462 INFO Out dated connection ,size=0 + +2025-09-24 05:27:49,462 INFO Connection check task end + +2025-09-24 05:27:51,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:52,462 INFO Connection check task start + +2025-09-24 05:27:52,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:52,462 INFO Out dated connection ,size=0 + +2025-09-24 05:27:52,462 INFO Connection check task end + +2025-09-24 05:27:54,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:55,462 INFO Connection check task start + +2025-09-24 05:27:55,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:55,463 INFO Out dated connection ,size=0 + +2025-09-24 05:27:55,463 INFO Connection check task end + +2025-09-24 05:27:57,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:27:58,464 INFO Connection check task start + +2025-09-24 05:27:58,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:27:58,465 INFO Out dated connection ,size=0 + +2025-09-24 05:27:58,465 INFO Connection check task end + +2025-09-24 05:28:00,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:01,467 INFO Connection check task start + +2025-09-24 05:28:01,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:01,467 INFO Out dated connection ,size=0 + +2025-09-24 05:28:01,467 INFO Connection check task end + +2025-09-24 05:28:03,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:04,469 INFO Connection check task start + +2025-09-24 05:28:04,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:04,469 INFO Out dated connection ,size=0 + +2025-09-24 05:28:04,469 INFO Connection check task end + +2025-09-24 05:28:06,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:07,471 INFO Connection check task start + +2025-09-24 05:28:07,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:07,471 INFO Out dated connection ,size=0 + +2025-09-24 05:28:07,471 INFO Connection check task end + +2025-09-24 05:28:09,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:10,472 INFO Connection check task start + +2025-09-24 05:28:10,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:10,472 INFO Out dated connection ,size=0 + +2025-09-24 05:28:10,472 INFO Connection check task end + +2025-09-24 05:28:12,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:13,472 INFO Connection check task start + +2025-09-24 05:28:13,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:13,472 INFO Out dated connection ,size=0 + +2025-09-24 05:28:13,472 INFO Connection check task end + +2025-09-24 05:28:15,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:16,475 INFO Connection check task start + +2025-09-24 05:28:16,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:16,475 INFO Out dated connection ,size=0 + +2025-09-24 05:28:16,475 INFO Connection check task end + +2025-09-24 05:28:18,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:19,477 INFO Connection check task start + +2025-09-24 05:28:19,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:19,478 INFO Out dated connection ,size=0 + +2025-09-24 05:28:19,478 INFO Connection check task end + +2025-09-24 05:28:21,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:22,478 INFO Connection check task start + +2025-09-24 05:28:22,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:22,478 INFO Out dated connection ,size=0 + +2025-09-24 05:28:22,478 INFO Connection check task end + +2025-09-24 05:28:24,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:25,480 INFO Connection check task start + +2025-09-24 05:28:25,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:25,480 INFO Out dated connection ,size=0 + +2025-09-24 05:28:25,480 INFO Connection check task end + +2025-09-24 05:28:27,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:28,481 INFO Connection check task start + +2025-09-24 05:28:28,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:28,481 INFO Out dated connection ,size=0 + +2025-09-24 05:28:28,481 INFO Connection check task end + +2025-09-24 05:28:30,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:31,483 INFO Connection check task start + +2025-09-24 05:28:31,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:31,483 INFO Out dated connection ,size=0 + +2025-09-24 05:28:31,483 INFO Connection check task end + +2025-09-24 05:28:33,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:34,484 INFO Connection check task start + +2025-09-24 05:28:34,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:34,484 INFO Out dated connection ,size=0 + +2025-09-24 05:28:34,484 INFO Connection check task end + +2025-09-24 05:28:36,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:37,484 INFO Connection check task start + +2025-09-24 05:28:37,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:37,485 INFO Out dated connection ,size=0 + +2025-09-24 05:28:37,485 INFO Connection check task end + +2025-09-24 05:28:39,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:40,485 INFO Connection check task start + +2025-09-24 05:28:40,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:40,485 INFO Out dated connection ,size=0 + +2025-09-24 05:28:40,485 INFO Connection check task end + +2025-09-24 05:28:42,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:43,487 INFO Connection check task start + +2025-09-24 05:28:43,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:43,487 INFO Out dated connection ,size=0 + +2025-09-24 05:28:43,488 INFO Connection check task end + +2025-09-24 05:28:45,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:46,490 INFO Connection check task start + +2025-09-24 05:28:46,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:46,490 INFO Out dated connection ,size=0 + +2025-09-24 05:28:46,490 INFO Connection check task end + +2025-09-24 05:28:48,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:49,492 INFO Connection check task start + +2025-09-24 05:28:49,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:49,492 INFO Out dated connection ,size=0 + +2025-09-24 05:28:49,492 INFO Connection check task end + +2025-09-24 05:28:51,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:52,495 INFO Connection check task start + +2025-09-24 05:28:52,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:52,495 INFO Out dated connection ,size=0 + +2025-09-24 05:28:52,495 INFO Connection check task end + +2025-09-24 05:28:54,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:55,495 INFO Connection check task start + +2025-09-24 05:28:55,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:55,496 INFO Out dated connection ,size=0 + +2025-09-24 05:28:55,496 INFO Connection check task end + +2025-09-24 05:28:57,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:28:58,496 INFO Connection check task start + +2025-09-24 05:28:58,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:28:58,496 INFO Out dated connection ,size=0 + +2025-09-24 05:28:58,496 INFO Connection check task end + +2025-09-24 05:29:00,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:01,496 INFO Connection check task start + +2025-09-24 05:29:01,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:01,497 INFO Out dated connection ,size=0 + +2025-09-24 05:29:01,497 INFO Connection check task end + +2025-09-24 05:29:03,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:04,498 INFO Connection check task start + +2025-09-24 05:29:04,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:04,498 INFO Out dated connection ,size=0 + +2025-09-24 05:29:04,498 INFO Connection check task end + +2025-09-24 05:29:06,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:07,499 INFO Connection check task start + +2025-09-24 05:29:07,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:07,499 INFO Out dated connection ,size=0 + +2025-09-24 05:29:07,499 INFO Connection check task end + +2025-09-24 05:29:09,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:10,500 INFO Connection check task start + +2025-09-24 05:29:10,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:10,500 INFO Out dated connection ,size=0 + +2025-09-24 05:29:10,500 INFO Connection check task end + +2025-09-24 05:29:12,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:13,501 INFO Connection check task start + +2025-09-24 05:29:13,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:13,501 INFO Out dated connection ,size=0 + +2025-09-24 05:29:13,501 INFO Connection check task end + +2025-09-24 05:29:15,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:16,502 INFO Connection check task start + +2025-09-24 05:29:16,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:16,502 INFO Out dated connection ,size=0 + +2025-09-24 05:29:16,502 INFO Connection check task end + +2025-09-24 05:29:18,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:19,502 INFO Connection check task start + +2025-09-24 05:29:19,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:19,503 INFO Out dated connection ,size=0 + +2025-09-24 05:29:19,503 INFO Connection check task end + +2025-09-24 05:29:21,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:22,503 INFO Connection check task start + +2025-09-24 05:29:22,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:22,503 INFO Out dated connection ,size=0 + +2025-09-24 05:29:22,503 INFO Connection check task end + +2025-09-24 05:29:24,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:25,505 INFO Connection check task start + +2025-09-24 05:29:25,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:25,505 INFO Out dated connection ,size=0 + +2025-09-24 05:29:25,505 INFO Connection check task end + +2025-09-24 05:29:27,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:28,508 INFO Connection check task start + +2025-09-24 05:29:28,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:28,508 INFO Out dated connection ,size=0 + +2025-09-24 05:29:28,508 INFO Connection check task end + +2025-09-24 05:29:30,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:31,509 INFO Connection check task start + +2025-09-24 05:29:31,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:31,509 INFO Out dated connection ,size=0 + +2025-09-24 05:29:31,509 INFO Connection check task end + +2025-09-24 05:29:33,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:34,509 INFO Connection check task start + +2025-09-24 05:29:34,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:34,509 INFO Out dated connection ,size=0 + +2025-09-24 05:29:34,509 INFO Connection check task end + +2025-09-24 05:29:36,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:37,510 INFO Connection check task start + +2025-09-24 05:29:37,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:37,510 INFO Out dated connection ,size=0 + +2025-09-24 05:29:37,510 INFO Connection check task end + +2025-09-24 05:29:39,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:40,511 INFO Connection check task start + +2025-09-24 05:29:40,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:40,511 INFO Out dated connection ,size=0 + +2025-09-24 05:29:40,511 INFO Connection check task end + +2025-09-24 05:29:42,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:43,513 INFO Connection check task start + +2025-09-24 05:29:43,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:43,513 INFO Out dated connection ,size=0 + +2025-09-24 05:29:43,513 INFO Connection check task end + +2025-09-24 05:29:45,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:46,513 INFO Connection check task start + +2025-09-24 05:29:46,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:46,514 INFO Out dated connection ,size=0 + +2025-09-24 05:29:46,514 INFO Connection check task end + +2025-09-24 05:29:48,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:49,514 INFO Connection check task start + +2025-09-24 05:29:49,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:49,515 INFO Out dated connection ,size=0 + +2025-09-24 05:29:49,515 INFO Connection check task end + +2025-09-24 05:29:51,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:52,517 INFO Connection check task start + +2025-09-24 05:29:52,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:52,517 INFO Out dated connection ,size=0 + +2025-09-24 05:29:52,517 INFO Connection check task end + +2025-09-24 05:29:54,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:55,517 INFO Connection check task start + +2025-09-24 05:29:55,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:55,517 INFO Out dated connection ,size=0 + +2025-09-24 05:29:55,517 INFO Connection check task end + +2025-09-24 05:29:57,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:29:58,519 INFO Connection check task start + +2025-09-24 05:29:58,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:29:58,519 INFO Out dated connection ,size=0 + +2025-09-24 05:29:58,519 INFO Connection check task end + +2025-09-24 05:30:00,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:01,521 INFO Connection check task start + +2025-09-24 05:30:01,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:01,522 INFO Out dated connection ,size=0 + +2025-09-24 05:30:01,522 INFO Connection check task end + +2025-09-24 05:30:03,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:04,522 INFO Connection check task start + +2025-09-24 05:30:04,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:04,522 INFO Out dated connection ,size=0 + +2025-09-24 05:30:04,522 INFO Connection check task end + +2025-09-24 05:30:06,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:07,524 INFO Connection check task start + +2025-09-24 05:30:07,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:07,524 INFO Out dated connection ,size=0 + +2025-09-24 05:30:07,524 INFO Connection check task end + +2025-09-24 05:30:09,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:10,524 INFO Connection check task start + +2025-09-24 05:30:10,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:10,525 INFO Out dated connection ,size=0 + +2025-09-24 05:30:10,525 INFO Connection check task end + +2025-09-24 05:30:12,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:13,526 INFO Connection check task start + +2025-09-24 05:30:13,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:13,526 INFO Out dated connection ,size=0 + +2025-09-24 05:30:13,526 INFO Connection check task end + +2025-09-24 05:30:15,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:16,526 INFO Connection check task start + +2025-09-24 05:30:16,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:16,527 INFO Out dated connection ,size=0 + +2025-09-24 05:30:16,527 INFO Connection check task end + +2025-09-24 05:30:18,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:19,529 INFO Connection check task start + +2025-09-24 05:30:19,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:19,529 INFO Out dated connection ,size=0 + +2025-09-24 05:30:19,529 INFO Connection check task end + +2025-09-24 05:30:21,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:22,531 INFO Connection check task start + +2025-09-24 05:30:22,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:22,532 INFO Out dated connection ,size=0 + +2025-09-24 05:30:22,532 INFO Connection check task end + +2025-09-24 05:30:24,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:25,533 INFO Connection check task start + +2025-09-24 05:30:25,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:25,534 INFO Out dated connection ,size=0 + +2025-09-24 05:30:25,534 INFO Connection check task end + +2025-09-24 05:30:27,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:28,536 INFO Connection check task start + +2025-09-24 05:30:28,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:28,536 INFO Out dated connection ,size=0 + +2025-09-24 05:30:28,536 INFO Connection check task end + +2025-09-24 05:30:30,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:31,537 INFO Connection check task start + +2025-09-24 05:30:31,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:31,537 INFO Out dated connection ,size=0 + +2025-09-24 05:30:31,537 INFO Connection check task end + +2025-09-24 05:30:33,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:34,539 INFO Connection check task start + +2025-09-24 05:30:34,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:34,539 INFO Out dated connection ,size=0 + +2025-09-24 05:30:34,539 INFO Connection check task end + +2025-09-24 05:30:36,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:37,542 INFO Connection check task start + +2025-09-24 05:30:37,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:37,542 INFO Out dated connection ,size=0 + +2025-09-24 05:30:37,542 INFO Connection check task end + +2025-09-24 05:30:39,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:40,544 INFO Connection check task start + +2025-09-24 05:30:40,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:40,545 INFO Out dated connection ,size=0 + +2025-09-24 05:30:40,545 INFO Connection check task end + +2025-09-24 05:30:42,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:43,546 INFO Connection check task start + +2025-09-24 05:30:43,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:43,546 INFO Out dated connection ,size=0 + +2025-09-24 05:30:43,546 INFO Connection check task end + +2025-09-24 05:30:45,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:46,547 INFO Connection check task start + +2025-09-24 05:30:46,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:46,547 INFO Out dated connection ,size=0 + +2025-09-24 05:30:46,548 INFO Connection check task end + +2025-09-24 05:30:48,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:49,549 INFO Connection check task start + +2025-09-24 05:30:49,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:49,550 INFO Out dated connection ,size=0 + +2025-09-24 05:30:49,550 INFO Connection check task end + +2025-09-24 05:30:51,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:52,550 INFO Connection check task start + +2025-09-24 05:30:52,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:52,550 INFO Out dated connection ,size=0 + +2025-09-24 05:30:52,550 INFO Connection check task end + +2025-09-24 05:30:54,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:55,551 INFO Connection check task start + +2025-09-24 05:30:55,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:55,551 INFO Out dated connection ,size=0 + +2025-09-24 05:30:55,551 INFO Connection check task end + +2025-09-24 05:30:57,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:30:58,553 INFO Connection check task start + +2025-09-24 05:30:58,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:30:58,554 INFO Out dated connection ,size=0 + +2025-09-24 05:30:58,554 INFO Connection check task end + +2025-09-24 05:31:00,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:01,554 INFO Connection check task start + +2025-09-24 05:31:01,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:01,554 INFO Out dated connection ,size=0 + +2025-09-24 05:31:01,554 INFO Connection check task end + +2025-09-24 05:31:03,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:04,555 INFO Connection check task start + +2025-09-24 05:31:04,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:04,555 INFO Out dated connection ,size=0 + +2025-09-24 05:31:04,555 INFO Connection check task end + +2025-09-24 05:31:06,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:07,556 INFO Connection check task start + +2025-09-24 05:31:07,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:07,556 INFO Out dated connection ,size=0 + +2025-09-24 05:31:07,556 INFO Connection check task end + +2025-09-24 05:31:09,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:10,559 INFO Connection check task start + +2025-09-24 05:31:10,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:10,559 INFO Out dated connection ,size=0 + +2025-09-24 05:31:10,559 INFO Connection check task end + +2025-09-24 05:31:12,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:13,561 INFO Connection check task start + +2025-09-24 05:31:13,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:13,562 INFO Out dated connection ,size=0 + +2025-09-24 05:31:13,562 INFO Connection check task end + +2025-09-24 05:31:15,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:16,562 INFO Connection check task start + +2025-09-24 05:31:16,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:16,562 INFO Out dated connection ,size=0 + +2025-09-24 05:31:16,563 INFO Connection check task end + +2025-09-24 05:31:18,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:19,563 INFO Connection check task start + +2025-09-24 05:31:19,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:19,563 INFO Out dated connection ,size=0 + +2025-09-24 05:31:19,563 INFO Connection check task end + +2025-09-24 05:31:21,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:22,564 INFO Connection check task start + +2025-09-24 05:31:22,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:22,564 INFO Out dated connection ,size=0 + +2025-09-24 05:31:22,564 INFO Connection check task end + +2025-09-24 05:31:24,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:25,566 INFO Connection check task start + +2025-09-24 05:31:25,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:25,566 INFO Out dated connection ,size=0 + +2025-09-24 05:31:25,566 INFO Connection check task end + +2025-09-24 05:31:27,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:28,567 INFO Connection check task start + +2025-09-24 05:31:28,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:28,567 INFO Out dated connection ,size=0 + +2025-09-24 05:31:28,567 INFO Connection check task end + +2025-09-24 05:31:30,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:31,569 INFO Connection check task start + +2025-09-24 05:31:31,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:31,569 INFO Out dated connection ,size=0 + +2025-09-24 05:31:31,570 INFO Connection check task end + +2025-09-24 05:31:33,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:34,570 INFO Connection check task start + +2025-09-24 05:31:34,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:34,570 INFO Out dated connection ,size=0 + +2025-09-24 05:31:34,570 INFO Connection check task end + +2025-09-24 05:31:36,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:37,572 INFO Connection check task start + +2025-09-24 05:31:37,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:37,573 INFO Out dated connection ,size=0 + +2025-09-24 05:31:37,573 INFO Connection check task end + +2025-09-24 05:31:39,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:40,573 INFO Connection check task start + +2025-09-24 05:31:40,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:40,574 INFO Out dated connection ,size=0 + +2025-09-24 05:31:40,574 INFO Connection check task end + +2025-09-24 05:31:42,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:43,574 INFO Connection check task start + +2025-09-24 05:31:43,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:43,574 INFO Out dated connection ,size=0 + +2025-09-24 05:31:43,574 INFO Connection check task end + +2025-09-24 05:31:45,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:46,576 INFO Connection check task start + +2025-09-24 05:31:46,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:46,576 INFO Out dated connection ,size=0 + +2025-09-24 05:31:46,576 INFO Connection check task end + +2025-09-24 05:31:48,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:49,576 INFO Connection check task start + +2025-09-24 05:31:49,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:49,577 INFO Out dated connection ,size=0 + +2025-09-24 05:31:49,577 INFO Connection check task end + +2025-09-24 05:31:51,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:52,578 INFO Connection check task start + +2025-09-24 05:31:52,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:52,578 INFO Out dated connection ,size=0 + +2025-09-24 05:31:52,579 INFO Connection check task end + +2025-09-24 05:31:54,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:55,579 INFO Connection check task start + +2025-09-24 05:31:55,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:55,580 INFO Out dated connection ,size=0 + +2025-09-24 05:31:55,580 INFO Connection check task end + +2025-09-24 05:31:57,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:31:58,580 INFO Connection check task start + +2025-09-24 05:31:58,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:31:58,581 INFO Out dated connection ,size=0 + +2025-09-24 05:31:58,581 INFO Connection check task end + +2025-09-24 05:32:00,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:01,582 INFO Connection check task start + +2025-09-24 05:32:01,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:01,582 INFO Out dated connection ,size=0 + +2025-09-24 05:32:01,582 INFO Connection check task end + +2025-09-24 05:32:03,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:04,583 INFO Connection check task start + +2025-09-24 05:32:04,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:04,583 INFO Out dated connection ,size=0 + +2025-09-24 05:32:04,583 INFO Connection check task end + +2025-09-24 05:32:06,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:07,583 INFO Connection check task start + +2025-09-24 05:32:07,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:07,583 INFO Out dated connection ,size=0 + +2025-09-24 05:32:07,583 INFO Connection check task end + +2025-09-24 05:32:09,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:10,584 INFO Connection check task start + +2025-09-24 05:32:10,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:10,584 INFO Out dated connection ,size=0 + +2025-09-24 05:32:10,584 INFO Connection check task end + +2025-09-24 05:32:12,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:13,584 INFO Connection check task start + +2025-09-24 05:32:13,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:13,584 INFO Out dated connection ,size=0 + +2025-09-24 05:32:13,584 INFO Connection check task end + +2025-09-24 05:32:15,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:16,585 INFO Connection check task start + +2025-09-24 05:32:16,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:16,585 INFO Out dated connection ,size=0 + +2025-09-24 05:32:16,585 INFO Connection check task end + +2025-09-24 05:32:18,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:19,585 INFO Connection check task start + +2025-09-24 05:32:19,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:19,585 INFO Out dated connection ,size=0 + +2025-09-24 05:32:19,585 INFO Connection check task end + +2025-09-24 05:32:21,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:22,586 INFO Connection check task start + +2025-09-24 05:32:22,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:22,586 INFO Out dated connection ,size=0 + +2025-09-24 05:32:22,586 INFO Connection check task end + +2025-09-24 05:32:24,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:25,587 INFO Connection check task start + +2025-09-24 05:32:25,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:25,587 INFO Out dated connection ,size=0 + +2025-09-24 05:32:25,587 INFO Connection check task end + +2025-09-24 05:32:27,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:28,588 INFO Connection check task start + +2025-09-24 05:32:28,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:28,588 INFO Out dated connection ,size=0 + +2025-09-24 05:32:28,588 INFO Connection check task end + +2025-09-24 05:32:30,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:31,588 INFO Connection check task start + +2025-09-24 05:32:31,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:31,588 INFO Out dated connection ,size=0 + +2025-09-24 05:32:31,588 INFO Connection check task end + +2025-09-24 05:32:33,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:34,590 INFO Connection check task start + +2025-09-24 05:32:34,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:34,590 INFO Out dated connection ,size=0 + +2025-09-24 05:32:34,590 INFO Connection check task end + +2025-09-24 05:32:36,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:37,592 INFO Connection check task start + +2025-09-24 05:32:37,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:37,592 INFO Out dated connection ,size=0 + +2025-09-24 05:32:37,592 INFO Connection check task end + +2025-09-24 05:32:39,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:40,594 INFO Connection check task start + +2025-09-24 05:32:40,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:40,594 INFO Out dated connection ,size=0 + +2025-09-24 05:32:40,594 INFO Connection check task end + +2025-09-24 05:32:42,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:43,596 INFO Connection check task start + +2025-09-24 05:32:43,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:43,596 INFO Out dated connection ,size=0 + +2025-09-24 05:32:43,596 INFO Connection check task end + +2025-09-24 05:32:45,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:46,597 INFO Connection check task start + +2025-09-24 05:32:46,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:46,597 INFO Out dated connection ,size=0 + +2025-09-24 05:32:46,597 INFO Connection check task end + +2025-09-24 05:32:48,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:49,597 INFO Connection check task start + +2025-09-24 05:32:49,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:49,597 INFO Out dated connection ,size=0 + +2025-09-24 05:32:49,598 INFO Connection check task end + +2025-09-24 05:32:51,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:52,599 INFO Connection check task start + +2025-09-24 05:32:52,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:52,600 INFO Out dated connection ,size=0 + +2025-09-24 05:32:52,600 INFO Connection check task end + +2025-09-24 05:32:54,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:55,601 INFO Connection check task start + +2025-09-24 05:32:55,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:55,601 INFO Out dated connection ,size=0 + +2025-09-24 05:32:55,601 INFO Connection check task end + +2025-09-24 05:32:57,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:32:58,602 INFO Connection check task start + +2025-09-24 05:32:58,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:32:58,602 INFO Out dated connection ,size=0 + +2025-09-24 05:32:58,602 INFO Connection check task end + +2025-09-24 05:33:00,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:01,602 INFO Connection check task start + +2025-09-24 05:33:01,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:01,603 INFO Out dated connection ,size=0 + +2025-09-24 05:33:01,603 INFO Connection check task end + +2025-09-24 05:33:03,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:04,605 INFO Connection check task start + +2025-09-24 05:33:04,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:04,605 INFO Out dated connection ,size=0 + +2025-09-24 05:33:04,605 INFO Connection check task end + +2025-09-24 05:33:06,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:07,607 INFO Connection check task start + +2025-09-24 05:33:07,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:07,607 INFO Out dated connection ,size=0 + +2025-09-24 05:33:07,607 INFO Connection check task end + +2025-09-24 05:33:09,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:10,608 INFO Connection check task start + +2025-09-24 05:33:10,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:10,608 INFO Out dated connection ,size=0 + +2025-09-24 05:33:10,608 INFO Connection check task end + +2025-09-24 05:33:12,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:13,610 INFO Connection check task start + +2025-09-24 05:33:13,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:13,610 INFO Out dated connection ,size=0 + +2025-09-24 05:33:13,610 INFO Connection check task end + +2025-09-24 05:33:15,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:16,612 INFO Connection check task start + +2025-09-24 05:33:16,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:16,613 INFO Out dated connection ,size=0 + +2025-09-24 05:33:16,613 INFO Connection check task end + +2025-09-24 05:33:18,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:19,615 INFO Connection check task start + +2025-09-24 05:33:19,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:19,615 INFO Out dated connection ,size=0 + +2025-09-24 05:33:19,615 INFO Connection check task end + +2025-09-24 05:33:21,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:22,615 INFO Connection check task start + +2025-09-24 05:33:22,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:22,615 INFO Out dated connection ,size=0 + +2025-09-24 05:33:22,615 INFO Connection check task end + +2025-09-24 05:33:24,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:25,616 INFO Connection check task start + +2025-09-24 05:33:25,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:25,616 INFO Out dated connection ,size=0 + +2025-09-24 05:33:25,616 INFO Connection check task end + +2025-09-24 05:33:27,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:28,616 INFO Connection check task start + +2025-09-24 05:33:28,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:28,616 INFO Out dated connection ,size=0 + +2025-09-24 05:33:28,616 INFO Connection check task end + +2025-09-24 05:33:30,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:31,619 INFO Connection check task start + +2025-09-24 05:33:31,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:31,619 INFO Out dated connection ,size=0 + +2025-09-24 05:33:31,619 INFO Connection check task end + +2025-09-24 05:33:33,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:34,621 INFO Connection check task start + +2025-09-24 05:33:34,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:34,621 INFO Out dated connection ,size=0 + +2025-09-24 05:33:34,621 INFO Connection check task end + +2025-09-24 05:33:36,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:37,623 INFO Connection check task start + +2025-09-24 05:33:37,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:37,624 INFO Out dated connection ,size=0 + +2025-09-24 05:33:37,624 INFO Connection check task end + +2025-09-24 05:33:39,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:40,626 INFO Connection check task start + +2025-09-24 05:33:40,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:40,626 INFO Out dated connection ,size=0 + +2025-09-24 05:33:40,626 INFO Connection check task end + +2025-09-24 05:33:42,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:43,628 INFO Connection check task start + +2025-09-24 05:33:43,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:43,628 INFO Out dated connection ,size=0 + +2025-09-24 05:33:43,629 INFO Connection check task end + +2025-09-24 05:33:45,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:46,629 INFO Connection check task start + +2025-09-24 05:33:46,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:46,629 INFO Out dated connection ,size=0 + +2025-09-24 05:33:46,629 INFO Connection check task end + +2025-09-24 05:33:49,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:49,631 INFO Connection check task start + +2025-09-24 05:33:49,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:49,632 INFO Out dated connection ,size=0 + +2025-09-24 05:33:49,632 INFO Connection check task end + +2025-09-24 05:33:52,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:52,633 INFO Connection check task start + +2025-09-24 05:33:52,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:52,633 INFO Out dated connection ,size=0 + +2025-09-24 05:33:52,633 INFO Connection check task end + +2025-09-24 05:33:55,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:55,634 INFO Connection check task start + +2025-09-24 05:33:55,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:55,634 INFO Out dated connection ,size=0 + +2025-09-24 05:33:55,634 INFO Connection check task end + +2025-09-24 05:33:58,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:33:58,634 INFO Connection check task start + +2025-09-24 05:33:58,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:33:58,635 INFO Out dated connection ,size=0 + +2025-09-24 05:33:58,635 INFO Connection check task end + +2025-09-24 05:34:01,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:01,635 INFO Connection check task start + +2025-09-24 05:34:01,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:01,635 INFO Out dated connection ,size=0 + +2025-09-24 05:34:01,635 INFO Connection check task end + +2025-09-24 05:34:04,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:04,637 INFO Connection check task start + +2025-09-24 05:34:04,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:04,637 INFO Out dated connection ,size=0 + +2025-09-24 05:34:04,637 INFO Connection check task end + +2025-09-24 05:34:07,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:07,637 INFO Connection check task start + +2025-09-24 05:34:07,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:07,638 INFO Out dated connection ,size=0 + +2025-09-24 05:34:07,638 INFO Connection check task end + +2025-09-24 05:34:10,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:10,638 INFO Connection check task start + +2025-09-24 05:34:10,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:10,638 INFO Out dated connection ,size=0 + +2025-09-24 05:34:10,638 INFO Connection check task end + +2025-09-24 05:34:13,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:13,639 INFO Connection check task start + +2025-09-24 05:34:13,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:13,639 INFO Out dated connection ,size=0 + +2025-09-24 05:34:13,639 INFO Connection check task end + +2025-09-24 05:34:16,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:16,641 INFO Connection check task start + +2025-09-24 05:34:16,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:16,642 INFO Out dated connection ,size=0 + +2025-09-24 05:34:16,642 INFO Connection check task end + +2025-09-24 05:34:19,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:19,643 INFO Connection check task start + +2025-09-24 05:34:19,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:19,643 INFO Out dated connection ,size=0 + +2025-09-24 05:34:19,643 INFO Connection check task end + +2025-09-24 05:34:22,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:22,645 INFO Connection check task start + +2025-09-24 05:34:22,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:22,645 INFO Out dated connection ,size=0 + +2025-09-24 05:34:22,645 INFO Connection check task end + +2025-09-24 05:34:25,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:25,646 INFO Connection check task start + +2025-09-24 05:34:25,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:25,646 INFO Out dated connection ,size=0 + +2025-09-24 05:34:25,646 INFO Connection check task end + +2025-09-24 05:34:28,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:28,646 INFO Connection check task start + +2025-09-24 05:34:28,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:28,646 INFO Out dated connection ,size=0 + +2025-09-24 05:34:28,646 INFO Connection check task end + +2025-09-24 05:34:31,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:31,647 INFO Connection check task start + +2025-09-24 05:34:31,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:31,647 INFO Out dated connection ,size=0 + +2025-09-24 05:34:31,647 INFO Connection check task end + +2025-09-24 05:34:34,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:34,648 INFO Connection check task start + +2025-09-24 05:34:34,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:34,648 INFO Out dated connection ,size=0 + +2025-09-24 05:34:34,648 INFO Connection check task end + +2025-09-24 05:34:37,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:37,649 INFO Connection check task start + +2025-09-24 05:34:37,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:37,649 INFO Out dated connection ,size=0 + +2025-09-24 05:34:37,649 INFO Connection check task end + +2025-09-24 05:34:40,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:40,649 INFO Connection check task start + +2025-09-24 05:34:40,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:40,649 INFO Out dated connection ,size=0 + +2025-09-24 05:34:40,649 INFO Connection check task end + +2025-09-24 05:34:43,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:43,650 INFO Connection check task start + +2025-09-24 05:34:43,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:43,650 INFO Out dated connection ,size=0 + +2025-09-24 05:34:43,650 INFO Connection check task end + +2025-09-24 05:34:46,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:46,651 INFO Connection check task start + +2025-09-24 05:34:46,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:46,651 INFO Out dated connection ,size=0 + +2025-09-24 05:34:46,651 INFO Connection check task end + +2025-09-24 05:34:49,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:49,653 INFO Connection check task start + +2025-09-24 05:34:49,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:49,653 INFO Out dated connection ,size=0 + +2025-09-24 05:34:49,654 INFO Connection check task end + +2025-09-24 05:34:52,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:52,654 INFO Connection check task start + +2025-09-24 05:34:52,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:52,654 INFO Out dated connection ,size=0 + +2025-09-24 05:34:52,654 INFO Connection check task end + +2025-09-24 05:34:55,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:55,657 INFO Connection check task start + +2025-09-24 05:34:55,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:55,657 INFO Out dated connection ,size=0 + +2025-09-24 05:34:55,657 INFO Connection check task end + +2025-09-24 05:34:58,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:34:58,657 INFO Connection check task start + +2025-09-24 05:34:58,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:34:58,657 INFO Out dated connection ,size=0 + +2025-09-24 05:34:58,657 INFO Connection check task end + +2025-09-24 05:35:01,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:01,659 INFO Connection check task start + +2025-09-24 05:35:01,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:01,659 INFO Out dated connection ,size=0 + +2025-09-24 05:35:01,659 INFO Connection check task end + +2025-09-24 05:35:04,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:04,660 INFO Connection check task start + +2025-09-24 05:35:04,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:04,660 INFO Out dated connection ,size=0 + +2025-09-24 05:35:04,660 INFO Connection check task end + +2025-09-24 05:35:07,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:07,662 INFO Connection check task start + +2025-09-24 05:35:07,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:07,662 INFO Out dated connection ,size=0 + +2025-09-24 05:35:07,662 INFO Connection check task end + +2025-09-24 05:35:10,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:10,664 INFO Connection check task start + +2025-09-24 05:35:10,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:10,664 INFO Out dated connection ,size=0 + +2025-09-24 05:35:10,665 INFO Connection check task end + +2025-09-24 05:35:13,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:13,665 INFO Connection check task start + +2025-09-24 05:35:13,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:13,665 INFO Out dated connection ,size=0 + +2025-09-24 05:35:13,665 INFO Connection check task end + +2025-09-24 05:35:16,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:16,667 INFO Connection check task start + +2025-09-24 05:35:16,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:16,668 INFO Out dated connection ,size=0 + +2025-09-24 05:35:16,668 INFO Connection check task end + +2025-09-24 05:35:19,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:19,670 INFO Connection check task start + +2025-09-24 05:35:19,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:19,670 INFO Out dated connection ,size=0 + +2025-09-24 05:35:19,670 INFO Connection check task end + +2025-09-24 05:35:22,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:22,672 INFO Connection check task start + +2025-09-24 05:35:22,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:22,672 INFO Out dated connection ,size=0 + +2025-09-24 05:35:22,673 INFO Connection check task end + +2025-09-24 05:35:25,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:25,673 INFO Connection check task start + +2025-09-24 05:35:25,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:25,674 INFO Out dated connection ,size=0 + +2025-09-24 05:35:25,674 INFO Connection check task end + +2025-09-24 05:35:28,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:28,676 INFO Connection check task start + +2025-09-24 05:35:28,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:28,676 INFO Out dated connection ,size=0 + +2025-09-24 05:35:28,676 INFO Connection check task end + +2025-09-24 05:35:31,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:31,678 INFO Connection check task start + +2025-09-24 05:35:31,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:31,678 INFO Out dated connection ,size=0 + +2025-09-24 05:35:31,678 INFO Connection check task end + +2025-09-24 05:35:34,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:34,679 INFO Connection check task start + +2025-09-24 05:35:34,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:34,679 INFO Out dated connection ,size=0 + +2025-09-24 05:35:34,679 INFO Connection check task end + +2025-09-24 05:35:37,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:37,680 INFO Connection check task start + +2025-09-24 05:35:37,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:37,680 INFO Out dated connection ,size=0 + +2025-09-24 05:35:37,680 INFO Connection check task end + +2025-09-24 05:35:40,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:40,680 INFO Connection check task start + +2025-09-24 05:35:40,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:40,680 INFO Out dated connection ,size=0 + +2025-09-24 05:35:40,680 INFO Connection check task end + +2025-09-24 05:35:43,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:43,682 INFO Connection check task start + +2025-09-24 05:35:43,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:43,682 INFO Out dated connection ,size=0 + +2025-09-24 05:35:43,682 INFO Connection check task end + +2025-09-24 05:35:46,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:46,685 INFO Connection check task start + +2025-09-24 05:35:46,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:46,685 INFO Out dated connection ,size=0 + +2025-09-24 05:35:46,685 INFO Connection check task end + +2025-09-24 05:35:49,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:49,687 INFO Connection check task start + +2025-09-24 05:35:49,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:49,687 INFO Out dated connection ,size=0 + +2025-09-24 05:35:49,687 INFO Connection check task end + +2025-09-24 05:35:52,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:52,688 INFO Connection check task start + +2025-09-24 05:35:52,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:52,689 INFO Out dated connection ,size=0 + +2025-09-24 05:35:52,689 INFO Connection check task end + +2025-09-24 05:35:55,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:55,690 INFO Connection check task start + +2025-09-24 05:35:55,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:55,690 INFO Out dated connection ,size=0 + +2025-09-24 05:35:55,690 INFO Connection check task end + +2025-09-24 05:35:58,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:35:58,693 INFO Connection check task start + +2025-09-24 05:35:58,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:35:58,693 INFO Out dated connection ,size=0 + +2025-09-24 05:35:58,693 INFO Connection check task end + +2025-09-24 05:36:01,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:01,695 INFO Connection check task start + +2025-09-24 05:36:01,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:01,695 INFO Out dated connection ,size=0 + +2025-09-24 05:36:01,695 INFO Connection check task end + +2025-09-24 05:36:04,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:04,695 INFO Connection check task start + +2025-09-24 05:36:04,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:04,695 INFO Out dated connection ,size=0 + +2025-09-24 05:36:04,695 INFO Connection check task end + +2025-09-24 05:36:07,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:07,696 INFO Connection check task start + +2025-09-24 05:36:07,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:07,696 INFO Out dated connection ,size=0 + +2025-09-24 05:36:07,696 INFO Connection check task end + +2025-09-24 05:36:10,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:10,698 INFO Connection check task start + +2025-09-24 05:36:10,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:10,698 INFO Out dated connection ,size=0 + +2025-09-24 05:36:10,698 INFO Connection check task end + +2025-09-24 05:36:13,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:13,699 INFO Connection check task start + +2025-09-24 05:36:13,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:13,699 INFO Out dated connection ,size=0 + +2025-09-24 05:36:13,699 INFO Connection check task end + +2025-09-24 05:36:16,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:16,700 INFO Connection check task start + +2025-09-24 05:36:16,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:16,700 INFO Out dated connection ,size=0 + +2025-09-24 05:36:16,700 INFO Connection check task end + +2025-09-24 05:36:19,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:19,702 INFO Connection check task start + +2025-09-24 05:36:19,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:19,713 INFO Out dated connection ,size=0 + +2025-09-24 05:36:19,713 INFO Connection check task end + +2025-09-24 05:36:22,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:22,714 INFO Connection check task start + +2025-09-24 05:36:22,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:22,714 INFO Out dated connection ,size=0 + +2025-09-24 05:36:22,714 INFO Connection check task end + +2025-09-24 05:36:25,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:25,714 INFO Connection check task start + +2025-09-24 05:36:25,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:25,719 INFO Out dated connection ,size=0 + +2025-09-24 05:36:25,719 INFO Connection check task end + +2025-09-24 05:36:28,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:28,720 INFO Connection check task start + +2025-09-24 05:36:28,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:28,720 INFO Out dated connection ,size=0 + +2025-09-24 05:36:28,720 INFO Connection check task end + +2025-09-24 05:36:31,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:31,720 INFO Connection check task start + +2025-09-24 05:36:31,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:31,721 INFO Out dated connection ,size=0 + +2025-09-24 05:36:31,721 INFO Connection check task end + +2025-09-24 05:36:34,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:34,721 INFO Connection check task start + +2025-09-24 05:36:34,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:34,721 INFO Out dated connection ,size=0 + +2025-09-24 05:36:34,721 INFO Connection check task end + +2025-09-24 05:36:37,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:37,723 INFO Connection check task start + +2025-09-24 05:36:37,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:37,723 INFO Out dated connection ,size=0 + +2025-09-24 05:36:37,723 INFO Connection check task end + +2025-09-24 05:36:40,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:40,724 INFO Connection check task start + +2025-09-24 05:36:40,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:40,724 INFO Out dated connection ,size=0 + +2025-09-24 05:36:40,724 INFO Connection check task end + +2025-09-24 05:36:43,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:43,726 INFO Connection check task start + +2025-09-24 05:36:43,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:43,726 INFO Out dated connection ,size=0 + +2025-09-24 05:36:43,726 INFO Connection check task end + +2025-09-24 05:36:46,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:46,726 INFO Connection check task start + +2025-09-24 05:36:46,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:46,727 INFO Out dated connection ,size=0 + +2025-09-24 05:36:46,727 INFO Connection check task end + +2025-09-24 05:36:49,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:49,727 INFO Connection check task start + +2025-09-24 05:36:49,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:49,727 INFO Out dated connection ,size=0 + +2025-09-24 05:36:49,728 INFO Connection check task end + +2025-09-24 05:36:52,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:52,729 INFO Connection check task start + +2025-09-24 05:36:52,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:52,729 INFO Out dated connection ,size=0 + +2025-09-24 05:36:52,729 INFO Connection check task end + +2025-09-24 05:36:55,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:55,729 INFO Connection check task start + +2025-09-24 05:36:55,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:55,729 INFO Out dated connection ,size=0 + +2025-09-24 05:36:55,729 INFO Connection check task end + +2025-09-24 05:36:58,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:36:58,730 INFO Connection check task start + +2025-09-24 05:36:58,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:36:58,730 INFO Out dated connection ,size=0 + +2025-09-24 05:36:58,730 INFO Connection check task end + +2025-09-24 05:37:01,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:01,731 INFO Connection check task start + +2025-09-24 05:37:01,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:01,731 INFO Out dated connection ,size=0 + +2025-09-24 05:37:01,731 INFO Connection check task end + +2025-09-24 05:37:04,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:04,731 INFO Connection check task start + +2025-09-24 05:37:04,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:04,732 INFO Out dated connection ,size=0 + +2025-09-24 05:37:04,732 INFO Connection check task end + +2025-09-24 05:37:07,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:07,733 INFO Connection check task start + +2025-09-24 05:37:07,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:07,733 INFO Out dated connection ,size=0 + +2025-09-24 05:37:07,733 INFO Connection check task end + +2025-09-24 05:37:10,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:10,734 INFO Connection check task start + +2025-09-24 05:37:10,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:10,734 INFO Out dated connection ,size=0 + +2025-09-24 05:37:10,734 INFO Connection check task end + +2025-09-24 05:37:13,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:13,734 INFO Connection check task start + +2025-09-24 05:37:13,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:13,735 INFO Out dated connection ,size=0 + +2025-09-24 05:37:13,735 INFO Connection check task end + +2025-09-24 05:37:16,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:16,735 INFO Connection check task start + +2025-09-24 05:37:16,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:16,735 INFO Out dated connection ,size=0 + +2025-09-24 05:37:16,735 INFO Connection check task end + +2025-09-24 05:37:19,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:19,736 INFO Connection check task start + +2025-09-24 05:37:19,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:19,736 INFO Out dated connection ,size=0 + +2025-09-24 05:37:19,736 INFO Connection check task end + +2025-09-24 05:37:22,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:22,736 INFO Connection check task start + +2025-09-24 05:37:22,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:22,736 INFO Out dated connection ,size=0 + +2025-09-24 05:37:22,736 INFO Connection check task end + +2025-09-24 05:37:25,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:25,738 INFO Connection check task start + +2025-09-24 05:37:25,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:25,739 INFO Out dated connection ,size=0 + +2025-09-24 05:37:25,739 INFO Connection check task end + +2025-09-24 05:37:28,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:28,739 INFO Connection check task start + +2025-09-24 05:37:28,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:28,739 INFO Out dated connection ,size=0 + +2025-09-24 05:37:28,739 INFO Connection check task end + +2025-09-24 05:37:31,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:31,741 INFO Connection check task start + +2025-09-24 05:37:31,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:31,741 INFO Out dated connection ,size=0 + +2025-09-24 05:37:31,741 INFO Connection check task end + +2025-09-24 05:37:34,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:34,742 INFO Connection check task start + +2025-09-24 05:37:34,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:34,742 INFO Out dated connection ,size=0 + +2025-09-24 05:37:34,742 INFO Connection check task end + +2025-09-24 05:37:37,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:37,744 INFO Connection check task start + +2025-09-24 05:37:37,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:37,744 INFO Out dated connection ,size=0 + +2025-09-24 05:37:37,744 INFO Connection check task end + +2025-09-24 05:37:40,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:40,746 INFO Connection check task start + +2025-09-24 05:37:40,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:40,747 INFO Out dated connection ,size=0 + +2025-09-24 05:37:40,747 INFO Connection check task end + +2025-09-24 05:37:43,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:43,748 INFO Connection check task start + +2025-09-24 05:37:43,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:43,748 INFO Out dated connection ,size=0 + +2025-09-24 05:37:43,748 INFO Connection check task end + +2025-09-24 05:37:46,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:46,750 INFO Connection check task start + +2025-09-24 05:37:46,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:46,751 INFO Out dated connection ,size=0 + +2025-09-24 05:37:46,751 INFO Connection check task end + +2025-09-24 05:37:49,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:49,753 INFO Connection check task start + +2025-09-24 05:37:49,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:49,753 INFO Out dated connection ,size=0 + +2025-09-24 05:37:49,753 INFO Connection check task end + +2025-09-24 05:37:52,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:52,753 INFO Connection check task start + +2025-09-24 05:37:52,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:52,754 INFO Out dated connection ,size=0 + +2025-09-24 05:37:52,754 INFO Connection check task end + +2025-09-24 05:37:55,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:55,754 INFO Connection check task start + +2025-09-24 05:37:55,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:55,754 INFO Out dated connection ,size=0 + +2025-09-24 05:37:55,754 INFO Connection check task end + +2025-09-24 05:37:58,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:37:58,755 INFO Connection check task start + +2025-09-24 05:37:58,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:37:58,755 INFO Out dated connection ,size=0 + +2025-09-24 05:37:58,755 INFO Connection check task end + +2025-09-24 05:38:01,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:01,756 INFO Connection check task start + +2025-09-24 05:38:01,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:01,756 INFO Out dated connection ,size=0 + +2025-09-24 05:38:01,756 INFO Connection check task end + +2025-09-24 05:38:04,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:04,757 INFO Connection check task start + +2025-09-24 05:38:04,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:04,757 INFO Out dated connection ,size=0 + +2025-09-24 05:38:04,757 INFO Connection check task end + +2025-09-24 05:38:07,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:07,758 INFO Connection check task start + +2025-09-24 05:38:07,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:07,758 INFO Out dated connection ,size=0 + +2025-09-24 05:38:07,758 INFO Connection check task end + +2025-09-24 05:38:10,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:10,758 INFO Connection check task start + +2025-09-24 05:38:10,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:10,759 INFO Out dated connection ,size=0 + +2025-09-24 05:38:10,759 INFO Connection check task end + +2025-09-24 05:38:13,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:13,761 INFO Connection check task start + +2025-09-24 05:38:13,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:13,761 INFO Out dated connection ,size=0 + +2025-09-24 05:38:13,761 INFO Connection check task end + +2025-09-24 05:38:16,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:16,763 INFO Connection check task start + +2025-09-24 05:38:16,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:16,764 INFO Out dated connection ,size=0 + +2025-09-24 05:38:16,764 INFO Connection check task end + +2025-09-24 05:38:19,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:19,764 INFO Connection check task start + +2025-09-24 05:38:19,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:19,764 INFO Out dated connection ,size=0 + +2025-09-24 05:38:19,764 INFO Connection check task end + +2025-09-24 05:38:22,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:22,766 INFO Connection check task start + +2025-09-24 05:38:22,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:22,766 INFO Out dated connection ,size=0 + +2025-09-24 05:38:22,766 INFO Connection check task end + +2025-09-24 05:38:25,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:25,766 INFO Connection check task start + +2025-09-24 05:38:25,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:25,766 INFO Out dated connection ,size=0 + +2025-09-24 05:38:25,766 INFO Connection check task end + +2025-09-24 05:38:28,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:28,768 INFO Connection check task start + +2025-09-24 05:38:28,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:28,768 INFO Out dated connection ,size=0 + +2025-09-24 05:38:28,768 INFO Connection check task end + +2025-09-24 05:38:31,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:31,770 INFO Connection check task start + +2025-09-24 05:38:31,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:31,771 INFO Out dated connection ,size=0 + +2025-09-24 05:38:31,771 INFO Connection check task end + +2025-09-24 05:38:34,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:34,771 INFO Connection check task start + +2025-09-24 05:38:34,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:34,771 INFO Out dated connection ,size=0 + +2025-09-24 05:38:34,771 INFO Connection check task end + +2025-09-24 05:38:37,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:37,774 INFO Connection check task start + +2025-09-24 05:38:37,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:37,774 INFO Out dated connection ,size=0 + +2025-09-24 05:38:37,774 INFO Connection check task end + +2025-09-24 05:38:40,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:40,775 INFO Connection check task start + +2025-09-24 05:38:40,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:40,775 INFO Out dated connection ,size=0 + +2025-09-24 05:38:40,775 INFO Connection check task end + +2025-09-24 05:38:43,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:43,775 INFO Connection check task start + +2025-09-24 05:38:43,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:43,776 INFO Out dated connection ,size=0 + +2025-09-24 05:38:43,776 INFO Connection check task end + +2025-09-24 05:38:46,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:46,776 INFO Connection check task start + +2025-09-24 05:38:46,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:46,776 INFO Out dated connection ,size=0 + +2025-09-24 05:38:46,776 INFO Connection check task end + +2025-09-24 05:38:49,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:49,778 INFO Connection check task start + +2025-09-24 05:38:49,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:49,778 INFO Out dated connection ,size=0 + +2025-09-24 05:38:49,778 INFO Connection check task end + +2025-09-24 05:38:52,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:52,779 INFO Connection check task start + +2025-09-24 05:38:52,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:52,779 INFO Out dated connection ,size=0 + +2025-09-24 05:38:52,779 INFO Connection check task end + +2025-09-24 05:38:55,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:55,780 INFO Connection check task start + +2025-09-24 05:38:55,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:55,780 INFO Out dated connection ,size=0 + +2025-09-24 05:38:55,780 INFO Connection check task end + +2025-09-24 05:38:58,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:38:58,782 INFO Connection check task start + +2025-09-24 05:38:58,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:38:58,782 INFO Out dated connection ,size=0 + +2025-09-24 05:38:58,782 INFO Connection check task end + +2025-09-24 05:39:01,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:01,783 INFO Connection check task start + +2025-09-24 05:39:01,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:01,783 INFO Out dated connection ,size=0 + +2025-09-24 05:39:01,783 INFO Connection check task end + +2025-09-24 05:39:04,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:04,783 INFO Connection check task start + +2025-09-24 05:39:04,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:04,783 INFO Out dated connection ,size=0 + +2025-09-24 05:39:04,783 INFO Connection check task end + +2025-09-24 05:39:07,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:07,786 INFO Connection check task start + +2025-09-24 05:39:07,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:07,786 INFO Out dated connection ,size=0 + +2025-09-24 05:39:07,786 INFO Connection check task end + +2025-09-24 05:39:10,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:10,788 INFO Connection check task start + +2025-09-24 05:39:10,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:10,788 INFO Out dated connection ,size=0 + +2025-09-24 05:39:10,788 INFO Connection check task end + +2025-09-24 05:39:13,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:13,790 INFO Connection check task start + +2025-09-24 05:39:13,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:13,790 INFO Out dated connection ,size=0 + +2025-09-24 05:39:13,790 INFO Connection check task end + +2025-09-24 05:39:16,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:16,791 INFO Connection check task start + +2025-09-24 05:39:16,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:16,791 INFO Out dated connection ,size=0 + +2025-09-24 05:39:16,791 INFO Connection check task end + +2025-09-24 05:39:19,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:19,791 INFO Connection check task start + +2025-09-24 05:39:19,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:19,791 INFO Out dated connection ,size=0 + +2025-09-24 05:39:19,791 INFO Connection check task end + +2025-09-24 05:39:22,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:22,794 INFO Connection check task start + +2025-09-24 05:39:22,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:22,794 INFO Out dated connection ,size=0 + +2025-09-24 05:39:22,794 INFO Connection check task end + +2025-09-24 05:39:25,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:25,795 INFO Connection check task start + +2025-09-24 05:39:25,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:25,796 INFO Out dated connection ,size=0 + +2025-09-24 05:39:25,796 INFO Connection check task end + +2025-09-24 05:39:28,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:28,797 INFO Connection check task start + +2025-09-24 05:39:28,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:28,797 INFO Out dated connection ,size=0 + +2025-09-24 05:39:28,798 INFO Connection check task end + +2025-09-24 05:39:31,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:31,798 INFO Connection check task start + +2025-09-24 05:39:31,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:31,798 INFO Out dated connection ,size=0 + +2025-09-24 05:39:31,798 INFO Connection check task end + +2025-09-24 05:39:34,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:34,799 INFO Connection check task start + +2025-09-24 05:39:34,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:34,799 INFO Out dated connection ,size=0 + +2025-09-24 05:39:34,799 INFO Connection check task end + +2025-09-24 05:39:37,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:37,800 INFO Connection check task start + +2025-09-24 05:39:37,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:37,800 INFO Out dated connection ,size=0 + +2025-09-24 05:39:37,800 INFO Connection check task end + +2025-09-24 05:39:40,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:40,802 INFO Connection check task start + +2025-09-24 05:39:40,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:40,802 INFO Out dated connection ,size=0 + +2025-09-24 05:39:40,802 INFO Connection check task end + +2025-09-24 05:39:43,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:43,803 INFO Connection check task start + +2025-09-24 05:39:43,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:43,804 INFO Out dated connection ,size=0 + +2025-09-24 05:39:43,804 INFO Connection check task end + +2025-09-24 05:39:46,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:46,805 INFO Connection check task start + +2025-09-24 05:39:46,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:46,805 INFO Out dated connection ,size=0 + +2025-09-24 05:39:46,805 INFO Connection check task end + +2025-09-24 05:39:49,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:49,805 INFO Connection check task start + +2025-09-24 05:39:49,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:49,805 INFO Out dated connection ,size=0 + +2025-09-24 05:39:49,806 INFO Connection check task end + +2025-09-24 05:39:52,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:52,806 INFO Connection check task start + +2025-09-24 05:39:52,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:52,807 INFO Out dated connection ,size=0 + +2025-09-24 05:39:52,807 INFO Connection check task end + +2025-09-24 05:39:55,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:55,807 INFO Connection check task start + +2025-09-24 05:39:55,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:55,807 INFO Out dated connection ,size=0 + +2025-09-24 05:39:55,807 INFO Connection check task end + +2025-09-24 05:39:58,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:39:58,807 INFO Connection check task start + +2025-09-24 05:39:58,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:39:58,808 INFO Out dated connection ,size=0 + +2025-09-24 05:39:58,808 INFO Connection check task end + +2025-09-24 05:40:01,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:01,808 INFO Connection check task start + +2025-09-24 05:40:01,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:01,808 INFO Out dated connection ,size=0 + +2025-09-24 05:40:01,808 INFO Connection check task end + +2025-09-24 05:40:04,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:04,810 INFO Connection check task start + +2025-09-24 05:40:04,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:04,810 INFO Out dated connection ,size=0 + +2025-09-24 05:40:04,810 INFO Connection check task end + +2025-09-24 05:40:07,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:07,811 INFO Connection check task start + +2025-09-24 05:40:07,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:07,811 INFO Out dated connection ,size=0 + +2025-09-24 05:40:07,811 INFO Connection check task end + +2025-09-24 05:40:10,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:10,813 INFO Connection check task start + +2025-09-24 05:40:10,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:10,813 INFO Out dated connection ,size=0 + +2025-09-24 05:40:10,813 INFO Connection check task end + +2025-09-24 05:40:13,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:13,815 INFO Connection check task start + +2025-09-24 05:40:13,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:13,815 INFO Out dated connection ,size=0 + +2025-09-24 05:40:13,815 INFO Connection check task end + +2025-09-24 05:40:16,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:16,815 INFO Connection check task start + +2025-09-24 05:40:16,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:16,815 INFO Out dated connection ,size=0 + +2025-09-24 05:40:16,816 INFO Connection check task end + +2025-09-24 05:40:19,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:19,816 INFO Connection check task start + +2025-09-24 05:40:19,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:19,816 INFO Out dated connection ,size=0 + +2025-09-24 05:40:19,816 INFO Connection check task end + +2025-09-24 05:40:22,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:22,816 INFO Connection check task start + +2025-09-24 05:40:22,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:22,816 INFO Out dated connection ,size=0 + +2025-09-24 05:40:22,816 INFO Connection check task end + +2025-09-24 05:40:25,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:25,819 INFO Connection check task start + +2025-09-24 05:40:25,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:25,819 INFO Out dated connection ,size=0 + +2025-09-24 05:40:25,819 INFO Connection check task end + +2025-09-24 05:40:28,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:28,819 INFO Connection check task start + +2025-09-24 05:40:28,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:28,819 INFO Out dated connection ,size=0 + +2025-09-24 05:40:28,819 INFO Connection check task end + +2025-09-24 05:40:31,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:31,821 INFO Connection check task start + +2025-09-24 05:40:31,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:31,821 INFO Out dated connection ,size=0 + +2025-09-24 05:40:31,821 INFO Connection check task end + +2025-09-24 05:40:34,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:34,823 INFO Connection check task start + +2025-09-24 05:40:34,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:34,823 INFO Out dated connection ,size=0 + +2025-09-24 05:40:34,823 INFO Connection check task end + +2025-09-24 05:40:37,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:37,825 INFO Connection check task start + +2025-09-24 05:40:37,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:37,825 INFO Out dated connection ,size=0 + +2025-09-24 05:40:37,825 INFO Connection check task end + +2025-09-24 05:40:40,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:40,825 INFO Connection check task start + +2025-09-24 05:40:40,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:40,825 INFO Out dated connection ,size=0 + +2025-09-24 05:40:40,825 INFO Connection check task end + +2025-09-24 05:40:43,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:43,827 INFO Connection check task start + +2025-09-24 05:40:43,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:43,827 INFO Out dated connection ,size=0 + +2025-09-24 05:40:43,827 INFO Connection check task end + +2025-09-24 05:40:46,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:46,827 INFO Connection check task start + +2025-09-24 05:40:46,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:46,827 INFO Out dated connection ,size=0 + +2025-09-24 05:40:46,827 INFO Connection check task end + +2025-09-24 05:40:49,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:49,828 INFO Connection check task start + +2025-09-24 05:40:49,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:49,828 INFO Out dated connection ,size=0 + +2025-09-24 05:40:49,828 INFO Connection check task end + +2025-09-24 05:40:52,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:52,828 INFO Connection check task start + +2025-09-24 05:40:52,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:52,828 INFO Out dated connection ,size=0 + +2025-09-24 05:40:52,828 INFO Connection check task end + +2025-09-24 05:40:55,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:55,829 INFO Connection check task start + +2025-09-24 05:40:55,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:55,829 INFO Out dated connection ,size=0 + +2025-09-24 05:40:55,829 INFO Connection check task end + +2025-09-24 05:40:58,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:40:58,831 INFO Connection check task start + +2025-09-24 05:40:58,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:40:58,831 INFO Out dated connection ,size=0 + +2025-09-24 05:40:58,831 INFO Connection check task end + +2025-09-24 05:41:01,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:01,831 INFO Connection check task start + +2025-09-24 05:41:01,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:01,832 INFO Out dated connection ,size=0 + +2025-09-24 05:41:01,832 INFO Connection check task end + +2025-09-24 05:41:04,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:04,832 INFO Connection check task start + +2025-09-24 05:41:04,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:04,832 INFO Out dated connection ,size=0 + +2025-09-24 05:41:04,832 INFO Connection check task end + +2025-09-24 05:41:07,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:07,834 INFO Connection check task start + +2025-09-24 05:41:07,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:07,835 INFO Out dated connection ,size=0 + +2025-09-24 05:41:07,835 INFO Connection check task end + +2025-09-24 05:41:10,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:10,837 INFO Connection check task start + +2025-09-24 05:41:10,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:10,837 INFO Out dated connection ,size=0 + +2025-09-24 05:41:10,837 INFO Connection check task end + +2025-09-24 05:41:13,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:13,838 INFO Connection check task start + +2025-09-24 05:41:13,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:13,838 INFO Out dated connection ,size=0 + +2025-09-24 05:41:13,838 INFO Connection check task end + +2025-09-24 05:41:16,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:16,839 INFO Connection check task start + +2025-09-24 05:41:16,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:16,839 INFO Out dated connection ,size=0 + +2025-09-24 05:41:16,839 INFO Connection check task end + +2025-09-24 05:41:19,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:19,841 INFO Connection check task start + +2025-09-24 05:41:19,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:19,841 INFO Out dated connection ,size=0 + +2025-09-24 05:41:19,841 INFO Connection check task end + +2025-09-24 05:41:22,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:22,843 INFO Connection check task start + +2025-09-24 05:41:22,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:22,843 INFO Out dated connection ,size=0 + +2025-09-24 05:41:22,843 INFO Connection check task end + +2025-09-24 05:41:25,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:25,844 INFO Connection check task start + +2025-09-24 05:41:25,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:25,845 INFO Out dated connection ,size=0 + +2025-09-24 05:41:25,845 INFO Connection check task end + +2025-09-24 05:41:28,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:28,846 INFO Connection check task start + +2025-09-24 05:41:28,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:28,847 INFO Out dated connection ,size=0 + +2025-09-24 05:41:28,847 INFO Connection check task end + +2025-09-24 05:41:31,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:31,848 INFO Connection check task start + +2025-09-24 05:41:31,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:31,848 INFO Out dated connection ,size=0 + +2025-09-24 05:41:31,848 INFO Connection check task end + +2025-09-24 05:41:34,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:34,849 INFO Connection check task start + +2025-09-24 05:41:34,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:34,849 INFO Out dated connection ,size=0 + +2025-09-24 05:41:34,849 INFO Connection check task end + +2025-09-24 05:41:37,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:37,851 INFO Connection check task start + +2025-09-24 05:41:37,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:37,851 INFO Out dated connection ,size=0 + +2025-09-24 05:41:37,851 INFO Connection check task end + +2025-09-24 05:41:40,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:40,853 INFO Connection check task start + +2025-09-24 05:41:40,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:40,853 INFO Out dated connection ,size=0 + +2025-09-24 05:41:40,853 INFO Connection check task end + +2025-09-24 05:41:43,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:43,854 INFO Connection check task start + +2025-09-24 05:41:43,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:43,854 INFO Out dated connection ,size=0 + +2025-09-24 05:41:43,854 INFO Connection check task end + +2025-09-24 05:41:46,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:46,856 INFO Connection check task start + +2025-09-24 05:41:46,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:46,856 INFO Out dated connection ,size=0 + +2025-09-24 05:41:46,856 INFO Connection check task end + +2025-09-24 05:41:49,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:49,857 INFO Connection check task start + +2025-09-24 05:41:49,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:49,857 INFO Out dated connection ,size=0 + +2025-09-24 05:41:49,857 INFO Connection check task end + +2025-09-24 05:41:52,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:52,859 INFO Connection check task start + +2025-09-24 05:41:52,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:52,859 INFO Out dated connection ,size=0 + +2025-09-24 05:41:52,859 INFO Connection check task end + +2025-09-24 05:41:55,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:55,862 INFO Connection check task start + +2025-09-24 05:41:55,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:55,862 INFO Out dated connection ,size=0 + +2025-09-24 05:41:55,862 INFO Connection check task end + +2025-09-24 05:41:58,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:41:58,864 INFO Connection check task start + +2025-09-24 05:41:58,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:41:58,864 INFO Out dated connection ,size=0 + +2025-09-24 05:41:58,864 INFO Connection check task end + +2025-09-24 05:42:01,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:01,866 INFO Connection check task start + +2025-09-24 05:42:01,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:01,866 INFO Out dated connection ,size=0 + +2025-09-24 05:42:01,866 INFO Connection check task end + +2025-09-24 05:42:04,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:04,866 INFO Connection check task start + +2025-09-24 05:42:04,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:04,866 INFO Out dated connection ,size=0 + +2025-09-24 05:42:04,866 INFO Connection check task end + +2025-09-24 05:42:07,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:07,868 INFO Connection check task start + +2025-09-24 05:42:07,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:07,868 INFO Out dated connection ,size=0 + +2025-09-24 05:42:07,868 INFO Connection check task end + +2025-09-24 05:42:10,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:10,868 INFO Connection check task start + +2025-09-24 05:42:10,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:10,869 INFO Out dated connection ,size=0 + +2025-09-24 05:42:10,869 INFO Connection check task end + +2025-09-24 05:42:13,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:13,869 INFO Connection check task start + +2025-09-24 05:42:13,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:13,869 INFO Out dated connection ,size=0 + +2025-09-24 05:42:13,869 INFO Connection check task end + +2025-09-24 05:42:16,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:16,870 INFO Connection check task start + +2025-09-24 05:42:16,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:16,870 INFO Out dated connection ,size=0 + +2025-09-24 05:42:16,870 INFO Connection check task end + +2025-09-24 05:42:19,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:19,870 INFO Connection check task start + +2025-09-24 05:42:19,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:19,871 INFO Out dated connection ,size=0 + +2025-09-24 05:42:19,871 INFO Connection check task end + +2025-09-24 05:42:22,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:22,873 INFO Connection check task start + +2025-09-24 05:42:22,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:22,873 INFO Out dated connection ,size=0 + +2025-09-24 05:42:22,873 INFO Connection check task end + +2025-09-24 05:42:25,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:25,873 INFO Connection check task start + +2025-09-24 05:42:25,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:25,873 INFO Out dated connection ,size=0 + +2025-09-24 05:42:25,873 INFO Connection check task end + +2025-09-24 05:42:28,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:28,874 INFO Connection check task start + +2025-09-24 05:42:28,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:28,874 INFO Out dated connection ,size=0 + +2025-09-24 05:42:28,874 INFO Connection check task end + +2025-09-24 05:42:31,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:31,875 INFO Connection check task start + +2025-09-24 05:42:31,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:31,875 INFO Out dated connection ,size=0 + +2025-09-24 05:42:31,875 INFO Connection check task end + +2025-09-24 05:42:34,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:34,875 INFO Connection check task start + +2025-09-24 05:42:34,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:34,876 INFO Out dated connection ,size=0 + +2025-09-24 05:42:34,876 INFO Connection check task end + +2025-09-24 05:42:37,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:37,878 INFO Connection check task start + +2025-09-24 05:42:37,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:37,878 INFO Out dated connection ,size=0 + +2025-09-24 05:42:37,878 INFO Connection check task end + +2025-09-24 05:42:40,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:40,878 INFO Connection check task start + +2025-09-24 05:42:40,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:40,878 INFO Out dated connection ,size=0 + +2025-09-24 05:42:40,878 INFO Connection check task end + +2025-09-24 05:42:43,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:43,880 INFO Connection check task start + +2025-09-24 05:42:43,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:43,880 INFO Out dated connection ,size=0 + +2025-09-24 05:42:43,880 INFO Connection check task end + +2025-09-24 05:42:46,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:46,880 INFO Connection check task start + +2025-09-24 05:42:46,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:46,880 INFO Out dated connection ,size=0 + +2025-09-24 05:42:46,881 INFO Connection check task end + +2025-09-24 05:42:49,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:49,882 INFO Connection check task start + +2025-09-24 05:42:49,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:49,882 INFO Out dated connection ,size=0 + +2025-09-24 05:42:49,882 INFO Connection check task end + +2025-09-24 05:42:52,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:52,882 INFO Connection check task start + +2025-09-24 05:42:52,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:52,882 INFO Out dated connection ,size=0 + +2025-09-24 05:42:52,882 INFO Connection check task end + +2025-09-24 05:42:55,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:55,884 INFO Connection check task start + +2025-09-24 05:42:55,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:55,884 INFO Out dated connection ,size=0 + +2025-09-24 05:42:55,884 INFO Connection check task end + +2025-09-24 05:42:58,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:42:58,886 INFO Connection check task start + +2025-09-24 05:42:58,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:42:58,886 INFO Out dated connection ,size=0 + +2025-09-24 05:42:58,886 INFO Connection check task end + +2025-09-24 05:43:01,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:01,887 INFO Connection check task start + +2025-09-24 05:43:01,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:01,887 INFO Out dated connection ,size=0 + +2025-09-24 05:43:01,887 INFO Connection check task end + +2025-09-24 05:43:04,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:04,888 INFO Connection check task start + +2025-09-24 05:43:04,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:04,888 INFO Out dated connection ,size=0 + +2025-09-24 05:43:04,888 INFO Connection check task end + +2025-09-24 05:43:07,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:07,890 INFO Connection check task start + +2025-09-24 05:43:07,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:07,890 INFO Out dated connection ,size=0 + +2025-09-24 05:43:07,890 INFO Connection check task end + +2025-09-24 05:43:10,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:10,891 INFO Connection check task start + +2025-09-24 05:43:10,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:10,891 INFO Out dated connection ,size=0 + +2025-09-24 05:43:10,891 INFO Connection check task end + +2025-09-24 05:43:13,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:13,891 INFO Connection check task start + +2025-09-24 05:43:13,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:13,891 INFO Out dated connection ,size=0 + +2025-09-24 05:43:13,891 INFO Connection check task end + +2025-09-24 05:43:16,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:16,892 INFO Connection check task start + +2025-09-24 05:43:16,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:16,892 INFO Out dated connection ,size=0 + +2025-09-24 05:43:16,892 INFO Connection check task end + +2025-09-24 05:43:19,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:19,893 INFO Connection check task start + +2025-09-24 05:43:19,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:19,893 INFO Out dated connection ,size=0 + +2025-09-24 05:43:19,893 INFO Connection check task end + +2025-09-24 05:43:22,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:22,893 INFO Connection check task start + +2025-09-24 05:43:22,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:22,893 INFO Out dated connection ,size=0 + +2025-09-24 05:43:22,893 INFO Connection check task end + +2025-09-24 05:43:25,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:25,893 INFO Connection check task start + +2025-09-24 05:43:25,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:25,893 INFO Out dated connection ,size=0 + +2025-09-24 05:43:25,893 INFO Connection check task end + +2025-09-24 05:43:28,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:28,894 INFO Connection check task start + +2025-09-24 05:43:28,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:28,895 INFO Out dated connection ,size=0 + +2025-09-24 05:43:28,895 INFO Connection check task end + +2025-09-24 05:43:31,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:31,896 INFO Connection check task start + +2025-09-24 05:43:31,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:31,896 INFO Out dated connection ,size=0 + +2025-09-24 05:43:31,896 INFO Connection check task end + +2025-09-24 05:43:34,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:34,897 INFO Connection check task start + +2025-09-24 05:43:34,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:34,898 INFO Out dated connection ,size=0 + +2025-09-24 05:43:34,898 INFO Connection check task end + +2025-09-24 05:43:37,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:37,898 INFO Connection check task start + +2025-09-24 05:43:37,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:37,898 INFO Out dated connection ,size=0 + +2025-09-24 05:43:37,898 INFO Connection check task end + +2025-09-24 05:43:40,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:40,900 INFO Connection check task start + +2025-09-24 05:43:40,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:40,900 INFO Out dated connection ,size=0 + +2025-09-24 05:43:40,900 INFO Connection check task end + +2025-09-24 05:43:43,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:43,902 INFO Connection check task start + +2025-09-24 05:43:43,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:43,902 INFO Out dated connection ,size=0 + +2025-09-24 05:43:43,902 INFO Connection check task end + +2025-09-24 05:43:46,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:46,904 INFO Connection check task start + +2025-09-24 05:43:46,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:46,904 INFO Out dated connection ,size=0 + +2025-09-24 05:43:46,904 INFO Connection check task end + +2025-09-24 05:43:49,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:49,905 INFO Connection check task start + +2025-09-24 05:43:49,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:49,905 INFO Out dated connection ,size=0 + +2025-09-24 05:43:49,905 INFO Connection check task end + +2025-09-24 05:43:52,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:52,907 INFO Connection check task start + +2025-09-24 05:43:52,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:52,907 INFO Out dated connection ,size=0 + +2025-09-24 05:43:52,907 INFO Connection check task end + +2025-09-24 05:43:55,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:55,907 INFO Connection check task start + +2025-09-24 05:43:55,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:55,908 INFO Out dated connection ,size=0 + +2025-09-24 05:43:55,908 INFO Connection check task end + +2025-09-24 05:43:58,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:43:58,908 INFO Connection check task start + +2025-09-24 05:43:58,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:43:58,908 INFO Out dated connection ,size=0 + +2025-09-24 05:43:58,908 INFO Connection check task end + +2025-09-24 05:44:01,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:01,909 INFO Connection check task start + +2025-09-24 05:44:01,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:01,909 INFO Out dated connection ,size=0 + +2025-09-24 05:44:01,909 INFO Connection check task end + +2025-09-24 05:44:04,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:04,910 INFO Connection check task start + +2025-09-24 05:44:04,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:04,910 INFO Out dated connection ,size=0 + +2025-09-24 05:44:04,910 INFO Connection check task end + +2025-09-24 05:44:07,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:07,910 INFO Connection check task start + +2025-09-24 05:44:07,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:07,911 INFO Out dated connection ,size=0 + +2025-09-24 05:44:07,911 INFO Connection check task end + +2025-09-24 05:44:10,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:10,912 INFO Connection check task start + +2025-09-24 05:44:10,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:10,913 INFO Out dated connection ,size=0 + +2025-09-24 05:44:10,913 INFO Connection check task end + +2025-09-24 05:44:13,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:13,913 INFO Connection check task start + +2025-09-24 05:44:13,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:13,913 INFO Out dated connection ,size=0 + +2025-09-24 05:44:13,913 INFO Connection check task end + +2025-09-24 05:44:16,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:16,913 INFO Connection check task start + +2025-09-24 05:44:16,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:16,914 INFO Out dated connection ,size=0 + +2025-09-24 05:44:16,914 INFO Connection check task end + +2025-09-24 05:44:19,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:19,914 INFO Connection check task start + +2025-09-24 05:44:19,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:19,914 INFO Out dated connection ,size=0 + +2025-09-24 05:44:19,914 INFO Connection check task end + +2025-09-24 05:44:22,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:22,916 INFO Connection check task start + +2025-09-24 05:44:22,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:22,916 INFO Out dated connection ,size=0 + +2025-09-24 05:44:22,916 INFO Connection check task end + +2025-09-24 05:44:25,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:25,917 INFO Connection check task start + +2025-09-24 05:44:25,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:25,917 INFO Out dated connection ,size=0 + +2025-09-24 05:44:25,917 INFO Connection check task end + +2025-09-24 05:44:28,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:28,918 INFO Connection check task start + +2025-09-24 05:44:28,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:28,918 INFO Out dated connection ,size=0 + +2025-09-24 05:44:28,918 INFO Connection check task end + +2025-09-24 05:44:31,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:31,919 INFO Connection check task start + +2025-09-24 05:44:31,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:31,919 INFO Out dated connection ,size=0 + +2025-09-24 05:44:31,919 INFO Connection check task end + +2025-09-24 05:44:34,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:34,921 INFO Connection check task start + +2025-09-24 05:44:34,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:34,921 INFO Out dated connection ,size=0 + +2025-09-24 05:44:34,921 INFO Connection check task end + +2025-09-24 05:44:37,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:37,923 INFO Connection check task start + +2025-09-24 05:44:37,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:37,923 INFO Out dated connection ,size=0 + +2025-09-24 05:44:37,923 INFO Connection check task end + +2025-09-24 05:44:40,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:40,925 INFO Connection check task start + +2025-09-24 05:44:40,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:40,925 INFO Out dated connection ,size=0 + +2025-09-24 05:44:40,925 INFO Connection check task end + +2025-09-24 05:44:43,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:43,927 INFO Connection check task start + +2025-09-24 05:44:43,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:43,927 INFO Out dated connection ,size=0 + +2025-09-24 05:44:43,927 INFO Connection check task end + +2025-09-24 05:44:46,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:46,929 INFO Connection check task start + +2025-09-24 05:44:46,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:46,929 INFO Out dated connection ,size=0 + +2025-09-24 05:44:46,929 INFO Connection check task end + +2025-09-24 05:44:49,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:49,931 INFO Connection check task start + +2025-09-24 05:44:49,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:49,932 INFO Out dated connection ,size=0 + +2025-09-24 05:44:49,932 INFO Connection check task end + +2025-09-24 05:44:52,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:52,932 INFO Connection check task start + +2025-09-24 05:44:52,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:52,932 INFO Out dated connection ,size=0 + +2025-09-24 05:44:52,932 INFO Connection check task end + +2025-09-24 05:44:55,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:55,933 INFO Connection check task start + +2025-09-24 05:44:55,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:55,933 INFO Out dated connection ,size=0 + +2025-09-24 05:44:55,933 INFO Connection check task end + +2025-09-24 05:44:58,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:44:58,933 INFO Connection check task start + +2025-09-24 05:44:58,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:44:58,934 INFO Out dated connection ,size=0 + +2025-09-24 05:44:58,934 INFO Connection check task end + +2025-09-24 05:45:01,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:01,936 INFO Connection check task start + +2025-09-24 05:45:01,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:01,936 INFO Out dated connection ,size=0 + +2025-09-24 05:45:01,936 INFO Connection check task end + +2025-09-24 05:45:04,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:04,936 INFO Connection check task start + +2025-09-24 05:45:04,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:04,937 INFO Out dated connection ,size=0 + +2025-09-24 05:45:04,937 INFO Connection check task end + +2025-09-24 05:45:07,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:07,937 INFO Connection check task start + +2025-09-24 05:45:07,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:07,937 INFO Out dated connection ,size=0 + +2025-09-24 05:45:07,937 INFO Connection check task end + +2025-09-24 05:45:10,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:10,937 INFO Connection check task start + +2025-09-24 05:45:10,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:10,937 INFO Out dated connection ,size=0 + +2025-09-24 05:45:10,938 INFO Connection check task end + +2025-09-24 05:45:13,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:13,938 INFO Connection check task start + +2025-09-24 05:45:13,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:13,938 INFO Out dated connection ,size=0 + +2025-09-24 05:45:13,938 INFO Connection check task end + +2025-09-24 05:45:16,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:16,939 INFO Connection check task start + +2025-09-24 05:45:16,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:16,939 INFO Out dated connection ,size=0 + +2025-09-24 05:45:16,939 INFO Connection check task end + +2025-09-24 05:45:19,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:19,939 INFO Connection check task start + +2025-09-24 05:45:19,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:19,939 INFO Out dated connection ,size=0 + +2025-09-24 05:45:19,939 INFO Connection check task end + +2025-09-24 05:45:22,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:22,941 INFO Connection check task start + +2025-09-24 05:45:22,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:22,941 INFO Out dated connection ,size=0 + +2025-09-24 05:45:22,941 INFO Connection check task end + +2025-09-24 05:45:25,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:25,942 INFO Connection check task start + +2025-09-24 05:45:25,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:25,942 INFO Out dated connection ,size=0 + +2025-09-24 05:45:25,942 INFO Connection check task end + +2025-09-24 05:45:28,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:28,945 INFO Connection check task start + +2025-09-24 05:45:28,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:28,945 INFO Out dated connection ,size=0 + +2025-09-24 05:45:28,945 INFO Connection check task end + +2025-09-24 05:45:31,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:31,947 INFO Connection check task start + +2025-09-24 05:45:31,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:31,947 INFO Out dated connection ,size=0 + +2025-09-24 05:45:31,947 INFO Connection check task end + +2025-09-24 05:45:34,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:34,947 INFO Connection check task start + +2025-09-24 05:45:34,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:34,948 INFO Out dated connection ,size=0 + +2025-09-24 05:45:34,948 INFO Connection check task end + +2025-09-24 05:45:37,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:37,948 INFO Connection check task start + +2025-09-24 05:45:37,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:37,948 INFO Out dated connection ,size=0 + +2025-09-24 05:45:37,948 INFO Connection check task end + +2025-09-24 05:45:40,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:40,948 INFO Connection check task start + +2025-09-24 05:45:40,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:40,949 INFO Out dated connection ,size=0 + +2025-09-24 05:45:40,949 INFO Connection check task end + +2025-09-24 05:45:43,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:43,949 INFO Connection check task start + +2025-09-24 05:45:43,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:43,949 INFO Out dated connection ,size=0 + +2025-09-24 05:45:43,950 INFO Connection check task end + +2025-09-24 05:45:46,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:46,950 INFO Connection check task start + +2025-09-24 05:45:46,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:46,950 INFO Out dated connection ,size=0 + +2025-09-24 05:45:46,950 INFO Connection check task end + +2025-09-24 05:45:49,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:49,951 INFO Connection check task start + +2025-09-24 05:45:49,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:49,951 INFO Out dated connection ,size=0 + +2025-09-24 05:45:49,951 INFO Connection check task end + +2025-09-24 05:45:52,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:52,952 INFO Connection check task start + +2025-09-24 05:45:52,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:52,953 INFO Out dated connection ,size=0 + +2025-09-24 05:45:52,953 INFO Connection check task end + +2025-09-24 05:45:55,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:55,953 INFO Connection check task start + +2025-09-24 05:45:55,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:55,953 INFO Out dated connection ,size=0 + +2025-09-24 05:45:55,953 INFO Connection check task end + +2025-09-24 05:45:58,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:45:58,954 INFO Connection check task start + +2025-09-24 05:45:58,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:45:58,954 INFO Out dated connection ,size=0 + +2025-09-24 05:45:58,954 INFO Connection check task end + +2025-09-24 05:46:01,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:01,955 INFO Connection check task start + +2025-09-24 05:46:01,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:01,955 INFO Out dated connection ,size=0 + +2025-09-24 05:46:01,955 INFO Connection check task end + +2025-09-24 05:46:04,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:04,956 INFO Connection check task start + +2025-09-24 05:46:04,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:04,956 INFO Out dated connection ,size=0 + +2025-09-24 05:46:04,956 INFO Connection check task end + +2025-09-24 05:46:07,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:07,957 INFO Connection check task start + +2025-09-24 05:46:07,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:07,957 INFO Out dated connection ,size=0 + +2025-09-24 05:46:07,957 INFO Connection check task end + +2025-09-24 05:46:10,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:10,958 INFO Connection check task start + +2025-09-24 05:46:10,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:10,958 INFO Out dated connection ,size=0 + +2025-09-24 05:46:10,958 INFO Connection check task end + +2025-09-24 05:46:13,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:13,958 INFO Connection check task start + +2025-09-24 05:46:13,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:13,959 INFO Out dated connection ,size=0 + +2025-09-24 05:46:13,959 INFO Connection check task end + +2025-09-24 05:46:16,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:16,959 INFO Connection check task start + +2025-09-24 05:46:16,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:16,959 INFO Out dated connection ,size=0 + +2025-09-24 05:46:16,959 INFO Connection check task end + +2025-09-24 05:46:19,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:19,960 INFO Connection check task start + +2025-09-24 05:46:19,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:19,960 INFO Out dated connection ,size=0 + +2025-09-24 05:46:19,960 INFO Connection check task end + +2025-09-24 05:46:22,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:22,960 INFO Connection check task start + +2025-09-24 05:46:22,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:22,961 INFO Out dated connection ,size=0 + +2025-09-24 05:46:22,961 INFO Connection check task end + +2025-09-24 05:46:25,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:25,961 INFO Connection check task start + +2025-09-24 05:46:25,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:25,961 INFO Out dated connection ,size=0 + +2025-09-24 05:46:25,961 INFO Connection check task end + +2025-09-24 05:46:28,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:28,963 INFO Connection check task start + +2025-09-24 05:46:28,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:28,964 INFO Out dated connection ,size=0 + +2025-09-24 05:46:28,964 INFO Connection check task end + +2025-09-24 05:46:31,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:31,964 INFO Connection check task start + +2025-09-24 05:46:31,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:31,965 INFO Out dated connection ,size=0 + +2025-09-24 05:46:31,965 INFO Connection check task end + +2025-09-24 05:46:34,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:34,966 INFO Connection check task start + +2025-09-24 05:46:34,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:34,967 INFO Out dated connection ,size=0 + +2025-09-24 05:46:34,967 INFO Connection check task end + +2025-09-24 05:46:37,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:37,967 INFO Connection check task start + +2025-09-24 05:46:37,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:37,967 INFO Out dated connection ,size=0 + +2025-09-24 05:46:37,967 INFO Connection check task end + +2025-09-24 05:46:40,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:40,969 INFO Connection check task start + +2025-09-24 05:46:40,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:40,969 INFO Out dated connection ,size=0 + +2025-09-24 05:46:40,969 INFO Connection check task end + +2025-09-24 05:46:43,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:43,972 INFO Connection check task start + +2025-09-24 05:46:43,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:43,972 INFO Out dated connection ,size=0 + +2025-09-24 05:46:43,972 INFO Connection check task end + +2025-09-24 05:46:46,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:46,972 INFO Connection check task start + +2025-09-24 05:46:46,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:46,973 INFO Out dated connection ,size=0 + +2025-09-24 05:46:46,973 INFO Connection check task end + +2025-09-24 05:46:49,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:49,974 INFO Connection check task start + +2025-09-24 05:46:49,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:49,974 INFO Out dated connection ,size=0 + +2025-09-24 05:46:49,974 INFO Connection check task end + +2025-09-24 05:46:52,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:52,975 INFO Connection check task start + +2025-09-24 05:46:52,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:52,976 INFO Out dated connection ,size=0 + +2025-09-24 05:46:52,976 INFO Connection check task end + +2025-09-24 05:46:55,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:55,976 INFO Connection check task start + +2025-09-24 05:46:55,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:55,976 INFO Out dated connection ,size=0 + +2025-09-24 05:46:55,976 INFO Connection check task end + +2025-09-24 05:46:58,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:46:58,978 INFO Connection check task start + +2025-09-24 05:46:58,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:46:58,978 INFO Out dated connection ,size=0 + +2025-09-24 05:46:58,978 INFO Connection check task end + +2025-09-24 05:47:01,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:01,978 INFO Connection check task start + +2025-09-24 05:47:01,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:01,979 INFO Out dated connection ,size=0 + +2025-09-24 05:47:01,979 INFO Connection check task end + +2025-09-24 05:47:04,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:04,979 INFO Connection check task start + +2025-09-24 05:47:04,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:04,979 INFO Out dated connection ,size=0 + +2025-09-24 05:47:04,979 INFO Connection check task end + +2025-09-24 05:47:07,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:07,981 INFO Connection check task start + +2025-09-24 05:47:07,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:07,981 INFO Out dated connection ,size=0 + +2025-09-24 05:47:07,981 INFO Connection check task end + +2025-09-24 05:47:10,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:10,982 INFO Connection check task start + +2025-09-24 05:47:10,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:10,982 INFO Out dated connection ,size=0 + +2025-09-24 05:47:10,982 INFO Connection check task end + +2025-09-24 05:47:13,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:13,983 INFO Connection check task start + +2025-09-24 05:47:13,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:13,983 INFO Out dated connection ,size=0 + +2025-09-24 05:47:13,983 INFO Connection check task end + +2025-09-24 05:47:16,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:16,984 INFO Connection check task start + +2025-09-24 05:47:16,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:16,984 INFO Out dated connection ,size=0 + +2025-09-24 05:47:16,984 INFO Connection check task end + +2025-09-24 05:47:19,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:19,986 INFO Connection check task start + +2025-09-24 05:47:19,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:19,986 INFO Out dated connection ,size=0 + +2025-09-24 05:47:19,986 INFO Connection check task end + +2025-09-24 05:47:22,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:22,987 INFO Connection check task start + +2025-09-24 05:47:22,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:22,987 INFO Out dated connection ,size=0 + +2025-09-24 05:47:22,987 INFO Connection check task end + +2025-09-24 05:47:25,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:25,987 INFO Connection check task start + +2025-09-24 05:47:25,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:25,987 INFO Out dated connection ,size=0 + +2025-09-24 05:47:25,987 INFO Connection check task end + +2025-09-24 05:47:28,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:28,989 INFO Connection check task start + +2025-09-24 05:47:28,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:28,990 INFO Out dated connection ,size=0 + +2025-09-24 05:47:28,990 INFO Connection check task end + +2025-09-24 05:47:31,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:31,990 INFO Connection check task start + +2025-09-24 05:47:31,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:31,990 INFO Out dated connection ,size=0 + +2025-09-24 05:47:31,990 INFO Connection check task end + +2025-09-24 05:47:34,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:34,992 INFO Connection check task start + +2025-09-24 05:47:34,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:34,992 INFO Out dated connection ,size=0 + +2025-09-24 05:47:34,992 INFO Connection check task end + +2025-09-24 05:47:37,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:37,995 INFO Connection check task start + +2025-09-24 05:47:37,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:37,995 INFO Out dated connection ,size=0 + +2025-09-24 05:47:37,995 INFO Connection check task end + +2025-09-24 05:47:40,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:40,995 INFO Connection check task start + +2025-09-24 05:47:40,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:40,995 INFO Out dated connection ,size=0 + +2025-09-24 05:47:40,995 INFO Connection check task end + +2025-09-24 05:47:43,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:43,996 INFO Connection check task start + +2025-09-24 05:47:43,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:43,996 INFO Out dated connection ,size=0 + +2025-09-24 05:47:43,996 INFO Connection check task end + +2025-09-24 05:47:46,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:46,998 INFO Connection check task start + +2025-09-24 05:47:46,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:46,998 INFO Out dated connection ,size=0 + +2025-09-24 05:47:46,998 INFO Connection check task end + +2025-09-24 05:47:49,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:49,999 INFO Connection check task start + +2025-09-24 05:47:49,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:49,999 INFO Out dated connection ,size=0 + +2025-09-24 05:47:49,999 INFO Connection check task end + +2025-09-24 05:47:52,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:52,999 INFO Connection check task start + +2025-09-24 05:47:52,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:52,999 INFO Out dated connection ,size=0 + +2025-09-24 05:47:52,999 INFO Connection check task end + +2025-09-24 05:47:55,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:56,001 INFO Connection check task start + +2025-09-24 05:47:56,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:56,002 INFO Out dated connection ,size=0 + +2025-09-24 05:47:56,002 INFO Connection check task end + +2025-09-24 05:47:58,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:47:59,004 INFO Connection check task start + +2025-09-24 05:47:59,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:47:59,004 INFO Out dated connection ,size=0 + +2025-09-24 05:47:59,004 INFO Connection check task end + +2025-09-24 05:48:01,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:02,006 INFO Connection check task start + +2025-09-24 05:48:02,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:02,007 INFO Out dated connection ,size=0 + +2025-09-24 05:48:02,007 INFO Connection check task end + +2025-09-24 05:48:04,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:05,007 INFO Connection check task start + +2025-09-24 05:48:05,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:05,007 INFO Out dated connection ,size=0 + +2025-09-24 05:48:05,007 INFO Connection check task end + +2025-09-24 05:48:07,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:08,007 INFO Connection check task start + +2025-09-24 05:48:08,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:08,007 INFO Out dated connection ,size=0 + +2025-09-24 05:48:08,008 INFO Connection check task end + +2025-09-24 05:48:10,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:11,008 INFO Connection check task start + +2025-09-24 05:48:11,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:11,008 INFO Out dated connection ,size=0 + +2025-09-24 05:48:11,008 INFO Connection check task end + +2025-09-24 05:48:13,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:14,009 INFO Connection check task start + +2025-09-24 05:48:14,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:14,009 INFO Out dated connection ,size=0 + +2025-09-24 05:48:14,009 INFO Connection check task end + +2025-09-24 05:48:16,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:17,010 INFO Connection check task start + +2025-09-24 05:48:17,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:17,010 INFO Out dated connection ,size=0 + +2025-09-24 05:48:17,010 INFO Connection check task end + +2025-09-24 05:48:19,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:20,011 INFO Connection check task start + +2025-09-24 05:48:20,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:20,011 INFO Out dated connection ,size=0 + +2025-09-24 05:48:20,012 INFO Connection check task end + +2025-09-24 05:48:22,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:23,014 INFO Connection check task start + +2025-09-24 05:48:23,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:23,014 INFO Out dated connection ,size=0 + +2025-09-24 05:48:23,014 INFO Connection check task end + +2025-09-24 05:48:25,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:26,014 INFO Connection check task start + +2025-09-24 05:48:26,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:26,014 INFO Out dated connection ,size=0 + +2025-09-24 05:48:26,015 INFO Connection check task end + +2025-09-24 05:48:28,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:29,015 INFO Connection check task start + +2025-09-24 05:48:29,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:29,015 INFO Out dated connection ,size=0 + +2025-09-24 05:48:29,015 INFO Connection check task end + +2025-09-24 05:48:31,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:32,017 INFO Connection check task start + +2025-09-24 05:48:32,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:32,017 INFO Out dated connection ,size=0 + +2025-09-24 05:48:32,017 INFO Connection check task end + +2025-09-24 05:48:34,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:35,018 INFO Connection check task start + +2025-09-24 05:48:35,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:35,018 INFO Out dated connection ,size=0 + +2025-09-24 05:48:35,018 INFO Connection check task end + +2025-09-24 05:48:37,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:38,018 INFO Connection check task start + +2025-09-24 05:48:38,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:38,019 INFO Out dated connection ,size=0 + +2025-09-24 05:48:38,019 INFO Connection check task end + +2025-09-24 05:48:40,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:41,019 INFO Connection check task start + +2025-09-24 05:48:41,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:41,019 INFO Out dated connection ,size=0 + +2025-09-24 05:48:41,020 INFO Connection check task end + +2025-09-24 05:48:43,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:44,020 INFO Connection check task start + +2025-09-24 05:48:44,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:44,020 INFO Out dated connection ,size=0 + +2025-09-24 05:48:44,020 INFO Connection check task end + +2025-09-24 05:48:46,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:47,021 INFO Connection check task start + +2025-09-24 05:48:47,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:47,021 INFO Out dated connection ,size=0 + +2025-09-24 05:48:47,021 INFO Connection check task end + +2025-09-24 05:48:49,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:50,022 INFO Connection check task start + +2025-09-24 05:48:50,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:50,023 INFO Out dated connection ,size=0 + +2025-09-24 05:48:50,023 INFO Connection check task end + +2025-09-24 05:48:52,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:53,023 INFO Connection check task start + +2025-09-24 05:48:53,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:53,024 INFO Out dated connection ,size=0 + +2025-09-24 05:48:53,024 INFO Connection check task end + +2025-09-24 05:48:55,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:56,025 INFO Connection check task start + +2025-09-24 05:48:56,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:56,025 INFO Out dated connection ,size=0 + +2025-09-24 05:48:56,025 INFO Connection check task end + +2025-09-24 05:48:58,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:48:59,026 INFO Connection check task start + +2025-09-24 05:48:59,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:48:59,026 INFO Out dated connection ,size=0 + +2025-09-24 05:48:59,026 INFO Connection check task end + +2025-09-24 05:49:01,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:02,026 INFO Connection check task start + +2025-09-24 05:49:02,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:02,027 INFO Out dated connection ,size=0 + +2025-09-24 05:49:02,027 INFO Connection check task end + +2025-09-24 05:49:04,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:05,027 INFO Connection check task start + +2025-09-24 05:49:05,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:05,027 INFO Out dated connection ,size=0 + +2025-09-24 05:49:05,028 INFO Connection check task end + +2025-09-24 05:49:07,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:08,028 INFO Connection check task start + +2025-09-24 05:49:08,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:08,028 INFO Out dated connection ,size=0 + +2025-09-24 05:49:08,028 INFO Connection check task end + +2025-09-24 05:49:10,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:11,030 INFO Connection check task start + +2025-09-24 05:49:11,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:11,030 INFO Out dated connection ,size=0 + +2025-09-24 05:49:11,030 INFO Connection check task end + +2025-09-24 05:49:13,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:14,031 INFO Connection check task start + +2025-09-24 05:49:14,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:14,031 INFO Out dated connection ,size=0 + +2025-09-24 05:49:14,031 INFO Connection check task end + +2025-09-24 05:49:16,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:17,031 INFO Connection check task start + +2025-09-24 05:49:17,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:17,032 INFO Out dated connection ,size=0 + +2025-09-24 05:49:17,032 INFO Connection check task end + +2025-09-24 05:49:19,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:20,032 INFO Connection check task start + +2025-09-24 05:49:20,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:20,032 INFO Out dated connection ,size=0 + +2025-09-24 05:49:20,032 INFO Connection check task end + +2025-09-24 05:49:22,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:23,032 INFO Connection check task start + +2025-09-24 05:49:23,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:23,033 INFO Out dated connection ,size=0 + +2025-09-24 05:49:23,033 INFO Connection check task end + +2025-09-24 05:49:25,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:26,033 INFO Connection check task start + +2025-09-24 05:49:26,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:26,033 INFO Out dated connection ,size=0 + +2025-09-24 05:49:26,033 INFO Connection check task end + +2025-09-24 05:49:28,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:29,034 INFO Connection check task start + +2025-09-24 05:49:29,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:29,034 INFO Out dated connection ,size=0 + +2025-09-24 05:49:29,034 INFO Connection check task end + +2025-09-24 05:49:31,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:32,035 INFO Connection check task start + +2025-09-24 05:49:32,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:32,035 INFO Out dated connection ,size=0 + +2025-09-24 05:49:32,035 INFO Connection check task end + +2025-09-24 05:49:34,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:35,036 INFO Connection check task start + +2025-09-24 05:49:35,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:35,036 INFO Out dated connection ,size=0 + +2025-09-24 05:49:35,036 INFO Connection check task end + +2025-09-24 05:49:37,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:38,037 INFO Connection check task start + +2025-09-24 05:49:38,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:38,037 INFO Out dated connection ,size=0 + +2025-09-24 05:49:38,037 INFO Connection check task end + +2025-09-24 05:49:40,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:41,039 INFO Connection check task start + +2025-09-24 05:49:41,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:41,039 INFO Out dated connection ,size=0 + +2025-09-24 05:49:41,039 INFO Connection check task end + +2025-09-24 05:49:43,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:44,040 INFO Connection check task start + +2025-09-24 05:49:44,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:44,040 INFO Out dated connection ,size=0 + +2025-09-24 05:49:44,040 INFO Connection check task end + +2025-09-24 05:49:46,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:47,041 INFO Connection check task start + +2025-09-24 05:49:47,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:47,041 INFO Out dated connection ,size=0 + +2025-09-24 05:49:47,041 INFO Connection check task end + +2025-09-24 05:49:49,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:50,041 INFO Connection check task start + +2025-09-24 05:49:50,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:50,062 INFO Out dated connection ,size=0 + +2025-09-24 05:49:50,062 INFO Connection check task end + +2025-09-24 05:49:52,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:53,064 INFO Connection check task start + +2025-09-24 05:49:53,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:53,064 INFO Out dated connection ,size=0 + +2025-09-24 05:49:53,064 INFO Connection check task end + +2025-09-24 05:49:55,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:56,064 INFO Connection check task start + +2025-09-24 05:49:56,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:56,064 INFO Out dated connection ,size=0 + +2025-09-24 05:49:56,064 INFO Connection check task end + +2025-09-24 05:49:58,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:49:59,065 INFO Connection check task start + +2025-09-24 05:49:59,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:49:59,065 INFO Out dated connection ,size=0 + +2025-09-24 05:49:59,065 INFO Connection check task end + +2025-09-24 05:50:01,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:02,066 INFO Connection check task start + +2025-09-24 05:50:02,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:02,067 INFO Out dated connection ,size=0 + +2025-09-24 05:50:02,067 INFO Connection check task end + +2025-09-24 05:50:04,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:05,067 INFO Connection check task start + +2025-09-24 05:50:05,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:05,067 INFO Out dated connection ,size=0 + +2025-09-24 05:50:05,067 INFO Connection check task end + +2025-09-24 05:50:07,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:08,069 INFO Connection check task start + +2025-09-24 05:50:08,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:08,069 INFO Out dated connection ,size=0 + +2025-09-24 05:50:08,069 INFO Connection check task end + +2025-09-24 05:50:10,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:11,069 INFO Connection check task start + +2025-09-24 05:50:11,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:11,069 INFO Out dated connection ,size=0 + +2025-09-24 05:50:11,069 INFO Connection check task end + +2025-09-24 05:50:13,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:14,070 INFO Connection check task start + +2025-09-24 05:50:14,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:14,070 INFO Out dated connection ,size=0 + +2025-09-24 05:50:14,070 INFO Connection check task end + +2025-09-24 05:50:16,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:17,072 INFO Connection check task start + +2025-09-24 05:50:17,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:17,072 INFO Out dated connection ,size=0 + +2025-09-24 05:50:17,072 INFO Connection check task end + +2025-09-24 05:50:19,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:20,073 INFO Connection check task start + +2025-09-24 05:50:20,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:20,073 INFO Out dated connection ,size=0 + +2025-09-24 05:50:20,073 INFO Connection check task end + +2025-09-24 05:50:22,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:23,073 INFO Connection check task start + +2025-09-24 05:50:23,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:23,073 INFO Out dated connection ,size=0 + +2025-09-24 05:50:23,074 INFO Connection check task end + +2025-09-24 05:50:25,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:26,076 INFO Connection check task start + +2025-09-24 05:50:26,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:26,076 INFO Out dated connection ,size=0 + +2025-09-24 05:50:26,076 INFO Connection check task end + +2025-09-24 05:50:28,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:29,076 INFO Connection check task start + +2025-09-24 05:50:29,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:29,076 INFO Out dated connection ,size=0 + +2025-09-24 05:50:29,076 INFO Connection check task end + +2025-09-24 05:50:31,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:32,078 INFO Connection check task start + +2025-09-24 05:50:32,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:32,078 INFO Out dated connection ,size=0 + +2025-09-24 05:50:32,078 INFO Connection check task end + +2025-09-24 05:50:34,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:35,080 INFO Connection check task start + +2025-09-24 05:50:35,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:35,080 INFO Out dated connection ,size=0 + +2025-09-24 05:50:35,080 INFO Connection check task end + +2025-09-24 05:50:37,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:38,080 INFO Connection check task start + +2025-09-24 05:50:38,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:38,081 INFO Out dated connection ,size=0 + +2025-09-24 05:50:38,081 INFO Connection check task end + +2025-09-24 05:50:40,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:41,082 INFO Connection check task start + +2025-09-24 05:50:41,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:41,082 INFO Out dated connection ,size=0 + +2025-09-24 05:50:41,082 INFO Connection check task end + +2025-09-24 05:50:43,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:44,084 INFO Connection check task start + +2025-09-24 05:50:44,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:44,084 INFO Out dated connection ,size=0 + +2025-09-24 05:50:44,085 INFO Connection check task end + +2025-09-24 05:50:46,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:47,086 INFO Connection check task start + +2025-09-24 05:50:47,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:47,086 INFO Out dated connection ,size=0 + +2025-09-24 05:50:47,086 INFO Connection check task end + +2025-09-24 05:50:49,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:50,088 INFO Connection check task start + +2025-09-24 05:50:50,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:50,088 INFO Out dated connection ,size=0 + +2025-09-24 05:50:50,088 INFO Connection check task end + +2025-09-24 05:50:52,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:53,089 INFO Connection check task start + +2025-09-24 05:50:53,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:53,089 INFO Out dated connection ,size=0 + +2025-09-24 05:50:53,089 INFO Connection check task end + +2025-09-24 05:50:55,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:56,091 INFO Connection check task start + +2025-09-24 05:50:56,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:56,091 INFO Out dated connection ,size=0 + +2025-09-24 05:50:56,091 INFO Connection check task end + +2025-09-24 05:50:58,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:50:59,092 INFO Connection check task start + +2025-09-24 05:50:59,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:50:59,092 INFO Out dated connection ,size=0 + +2025-09-24 05:50:59,092 INFO Connection check task end + +2025-09-24 05:51:01,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:02,093 INFO Connection check task start + +2025-09-24 05:51:02,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:02,093 INFO Out dated connection ,size=0 + +2025-09-24 05:51:02,093 INFO Connection check task end + +2025-09-24 05:51:04,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:05,093 INFO Connection check task start + +2025-09-24 05:51:05,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:05,093 INFO Out dated connection ,size=0 + +2025-09-24 05:51:05,093 INFO Connection check task end + +2025-09-24 05:51:07,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:08,094 INFO Connection check task start + +2025-09-24 05:51:08,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:08,094 INFO Out dated connection ,size=0 + +2025-09-24 05:51:08,095 INFO Connection check task end + +2025-09-24 05:51:10,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:11,095 INFO Connection check task start + +2025-09-24 05:51:11,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:11,095 INFO Out dated connection ,size=0 + +2025-09-24 05:51:11,095 INFO Connection check task end + +2025-09-24 05:51:13,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:14,097 INFO Connection check task start + +2025-09-24 05:51:14,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:14,097 INFO Out dated connection ,size=0 + +2025-09-24 05:51:14,097 INFO Connection check task end + +2025-09-24 05:51:16,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:17,099 INFO Connection check task start + +2025-09-24 05:51:17,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:17,100 INFO Out dated connection ,size=0 + +2025-09-24 05:51:17,100 INFO Connection check task end + +2025-09-24 05:51:19,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:20,101 INFO Connection check task start + +2025-09-24 05:51:20,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:20,101 INFO Out dated connection ,size=0 + +2025-09-24 05:51:20,101 INFO Connection check task end + +2025-09-24 05:51:22,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:23,101 INFO Connection check task start + +2025-09-24 05:51:23,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:23,101 INFO Out dated connection ,size=0 + +2025-09-24 05:51:23,101 INFO Connection check task end + +2025-09-24 05:51:25,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:26,102 INFO Connection check task start + +2025-09-24 05:51:26,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:26,102 INFO Out dated connection ,size=0 + +2025-09-24 05:51:26,102 INFO Connection check task end + +2025-09-24 05:51:28,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:29,104 INFO Connection check task start + +2025-09-24 05:51:29,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:29,104 INFO Out dated connection ,size=0 + +2025-09-24 05:51:29,104 INFO Connection check task end + +2025-09-24 05:51:31,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:32,105 INFO Connection check task start + +2025-09-24 05:51:32,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:32,105 INFO Out dated connection ,size=0 + +2025-09-24 05:51:32,105 INFO Connection check task end + +2025-09-24 05:51:34,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:35,105 INFO Connection check task start + +2025-09-24 05:51:35,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:35,105 INFO Out dated connection ,size=0 + +2025-09-24 05:51:35,105 INFO Connection check task end + +2025-09-24 05:51:37,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:38,106 INFO Connection check task start + +2025-09-24 05:51:38,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:38,106 INFO Out dated connection ,size=0 + +2025-09-24 05:51:38,106 INFO Connection check task end + +2025-09-24 05:51:40,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:41,106 INFO Connection check task start + +2025-09-24 05:51:41,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:41,106 INFO Out dated connection ,size=0 + +2025-09-24 05:51:41,106 INFO Connection check task end + +2025-09-24 05:51:43,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:44,107 INFO Connection check task start + +2025-09-24 05:51:44,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:44,107 INFO Out dated connection ,size=0 + +2025-09-24 05:51:44,107 INFO Connection check task end + +2025-09-24 05:51:46,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:47,107 INFO Connection check task start + +2025-09-24 05:51:47,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:47,107 INFO Out dated connection ,size=0 + +2025-09-24 05:51:47,108 INFO Connection check task end + +2025-09-24 05:51:49,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:50,110 INFO Connection check task start + +2025-09-24 05:51:50,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:50,110 INFO Out dated connection ,size=0 + +2025-09-24 05:51:50,110 INFO Connection check task end + +2025-09-24 05:51:52,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:53,112 INFO Connection check task start + +2025-09-24 05:51:53,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:53,112 INFO Out dated connection ,size=0 + +2025-09-24 05:51:53,112 INFO Connection check task end + +2025-09-24 05:51:55,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:56,112 INFO Connection check task start + +2025-09-24 05:51:56,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:56,112 INFO Out dated connection ,size=0 + +2025-09-24 05:51:56,112 INFO Connection check task end + +2025-09-24 05:51:58,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:51:59,114 INFO Connection check task start + +2025-09-24 05:51:59,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:51:59,115 INFO Out dated connection ,size=0 + +2025-09-24 05:51:59,115 INFO Connection check task end + +2025-09-24 05:52:01,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:02,115 INFO Connection check task start + +2025-09-24 05:52:02,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:02,115 INFO Out dated connection ,size=0 + +2025-09-24 05:52:02,115 INFO Connection check task end + +2025-09-24 05:52:04,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:05,117 INFO Connection check task start + +2025-09-24 05:52:05,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:05,117 INFO Out dated connection ,size=0 + +2025-09-24 05:52:05,117 INFO Connection check task end + +2025-09-24 05:52:07,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:08,119 INFO Connection check task start + +2025-09-24 05:52:08,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:08,119 INFO Out dated connection ,size=0 + +2025-09-24 05:52:08,119 INFO Connection check task end + +2025-09-24 05:52:10,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:11,121 INFO Connection check task start + +2025-09-24 05:52:11,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:11,121 INFO Out dated connection ,size=0 + +2025-09-24 05:52:11,121 INFO Connection check task end + +2025-09-24 05:52:13,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:14,121 INFO Connection check task start + +2025-09-24 05:52:14,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:14,121 INFO Out dated connection ,size=0 + +2025-09-24 05:52:14,122 INFO Connection check task end + +2025-09-24 05:52:16,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:17,122 INFO Connection check task start + +2025-09-24 05:52:17,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:17,123 INFO Out dated connection ,size=0 + +2025-09-24 05:52:17,123 INFO Connection check task end + +2025-09-24 05:52:19,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:20,123 INFO Connection check task start + +2025-09-24 05:52:20,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:20,123 INFO Out dated connection ,size=0 + +2025-09-24 05:52:20,123 INFO Connection check task end + +2025-09-24 05:52:22,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:23,125 INFO Connection check task start + +2025-09-24 05:52:23,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:23,125 INFO Out dated connection ,size=0 + +2025-09-24 05:52:23,125 INFO Connection check task end + +2025-09-24 05:52:25,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:26,126 INFO Connection check task start + +2025-09-24 05:52:26,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:26,126 INFO Out dated connection ,size=0 + +2025-09-24 05:52:26,126 INFO Connection check task end + +2025-09-24 05:52:28,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:29,127 INFO Connection check task start + +2025-09-24 05:52:29,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:29,128 INFO Out dated connection ,size=0 + +2025-09-24 05:52:29,128 INFO Connection check task end + +2025-09-24 05:52:31,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:32,129 INFO Connection check task start + +2025-09-24 05:52:32,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:32,130 INFO Out dated connection ,size=0 + +2025-09-24 05:52:32,130 INFO Connection check task end + +2025-09-24 05:52:34,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:35,130 INFO Connection check task start + +2025-09-24 05:52:35,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:35,130 INFO Out dated connection ,size=0 + +2025-09-24 05:52:35,130 INFO Connection check task end + +2025-09-24 05:52:37,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:38,131 INFO Connection check task start + +2025-09-24 05:52:38,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:38,131 INFO Out dated connection ,size=0 + +2025-09-24 05:52:38,131 INFO Connection check task end + +2025-09-24 05:52:40,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:41,133 INFO Connection check task start + +2025-09-24 05:52:41,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:41,133 INFO Out dated connection ,size=0 + +2025-09-24 05:52:41,133 INFO Connection check task end + +2025-09-24 05:52:43,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:44,134 INFO Connection check task start + +2025-09-24 05:52:44,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:44,134 INFO Out dated connection ,size=0 + +2025-09-24 05:52:44,134 INFO Connection check task end + +2025-09-24 05:52:46,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:47,134 INFO Connection check task start + +2025-09-24 05:52:47,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:47,135 INFO Out dated connection ,size=0 + +2025-09-24 05:52:47,135 INFO Connection check task end + +2025-09-24 05:52:49,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:50,135 INFO Connection check task start + +2025-09-24 05:52:50,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:50,135 INFO Out dated connection ,size=0 + +2025-09-24 05:52:50,135 INFO Connection check task end + +2025-09-24 05:52:52,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:53,136 INFO Connection check task start + +2025-09-24 05:52:53,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:53,137 INFO Out dated connection ,size=0 + +2025-09-24 05:52:53,137 INFO Connection check task end + +2025-09-24 05:52:55,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:56,137 INFO Connection check task start + +2025-09-24 05:52:56,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:56,137 INFO Out dated connection ,size=0 + +2025-09-24 05:52:56,137 INFO Connection check task end + +2025-09-24 05:52:58,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:52:59,139 INFO Connection check task start + +2025-09-24 05:52:59,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:52:59,139 INFO Out dated connection ,size=0 + +2025-09-24 05:52:59,139 INFO Connection check task end + +2025-09-24 05:53:01,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:02,140 INFO Connection check task start + +2025-09-24 05:53:02,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:02,140 INFO Out dated connection ,size=0 + +2025-09-24 05:53:02,140 INFO Connection check task end + +2025-09-24 05:53:04,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:05,141 INFO Connection check task start + +2025-09-24 05:53:05,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:05,141 INFO Out dated connection ,size=0 + +2025-09-24 05:53:05,141 INFO Connection check task end + +2025-09-24 05:53:07,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:08,142 INFO Connection check task start + +2025-09-24 05:53:08,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:08,142 INFO Out dated connection ,size=0 + +2025-09-24 05:53:08,142 INFO Connection check task end + +2025-09-24 05:53:10,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:11,143 INFO Connection check task start + +2025-09-24 05:53:11,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:11,144 INFO Out dated connection ,size=0 + +2025-09-24 05:53:11,144 INFO Connection check task end + +2025-09-24 05:53:13,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:14,144 INFO Connection check task start + +2025-09-24 05:53:14,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:14,144 INFO Out dated connection ,size=0 + +2025-09-24 05:53:14,144 INFO Connection check task end + +2025-09-24 05:53:16,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:17,145 INFO Connection check task start + +2025-09-24 05:53:17,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:17,145 INFO Out dated connection ,size=0 + +2025-09-24 05:53:17,145 INFO Connection check task end + +2025-09-24 05:53:19,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:20,146 INFO Connection check task start + +2025-09-24 05:53:20,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:20,147 INFO Out dated connection ,size=0 + +2025-09-24 05:53:20,147 INFO Connection check task end + +2025-09-24 05:53:22,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:23,147 INFO Connection check task start + +2025-09-24 05:53:23,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:23,147 INFO Out dated connection ,size=0 + +2025-09-24 05:53:23,147 INFO Connection check task end + +2025-09-24 05:53:25,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:26,147 INFO Connection check task start + +2025-09-24 05:53:26,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:26,148 INFO Out dated connection ,size=0 + +2025-09-24 05:53:26,148 INFO Connection check task end + +2025-09-24 05:53:28,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:29,148 INFO Connection check task start + +2025-09-24 05:53:29,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:29,148 INFO Out dated connection ,size=0 + +2025-09-24 05:53:29,149 INFO Connection check task end + +2025-09-24 05:53:31,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:32,150 INFO Connection check task start + +2025-09-24 05:53:32,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:32,150 INFO Out dated connection ,size=0 + +2025-09-24 05:53:32,150 INFO Connection check task end + +2025-09-24 05:53:34,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:35,152 INFO Connection check task start + +2025-09-24 05:53:35,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:35,152 INFO Out dated connection ,size=0 + +2025-09-24 05:53:35,152 INFO Connection check task end + +2025-09-24 05:53:37,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:38,153 INFO Connection check task start + +2025-09-24 05:53:38,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:38,153 INFO Out dated connection ,size=0 + +2025-09-24 05:53:38,153 INFO Connection check task end + +2025-09-24 05:53:40,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:41,153 INFO Connection check task start + +2025-09-24 05:53:41,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:41,153 INFO Out dated connection ,size=0 + +2025-09-24 05:53:41,153 INFO Connection check task end + +2025-09-24 05:53:43,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:44,153 INFO Connection check task start + +2025-09-24 05:53:44,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:44,153 INFO Out dated connection ,size=0 + +2025-09-24 05:53:44,154 INFO Connection check task end + +2025-09-24 05:53:46,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:47,155 INFO Connection check task start + +2025-09-24 05:53:47,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:47,155 INFO Out dated connection ,size=0 + +2025-09-24 05:53:47,155 INFO Connection check task end + +2025-09-24 05:53:49,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:50,156 INFO Connection check task start + +2025-09-24 05:53:50,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:50,156 INFO Out dated connection ,size=0 + +2025-09-24 05:53:50,156 INFO Connection check task end + +2025-09-24 05:53:52,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:53,156 INFO Connection check task start + +2025-09-24 05:53:53,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:53,156 INFO Out dated connection ,size=0 + +2025-09-24 05:53:53,156 INFO Connection check task end + +2025-09-24 05:53:55,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:56,157 INFO Connection check task start + +2025-09-24 05:53:56,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:56,157 INFO Out dated connection ,size=0 + +2025-09-24 05:53:56,157 INFO Connection check task end + +2025-09-24 05:53:58,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:53:59,157 INFO Connection check task start + +2025-09-24 05:53:59,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:53:59,158 INFO Out dated connection ,size=0 + +2025-09-24 05:53:59,158 INFO Connection check task end + +2025-09-24 05:54:01,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:02,159 INFO Connection check task start + +2025-09-24 05:54:02,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:02,159 INFO Out dated connection ,size=0 + +2025-09-24 05:54:02,159 INFO Connection check task end + +2025-09-24 05:54:04,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:05,159 INFO Connection check task start + +2025-09-24 05:54:05,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:05,159 INFO Out dated connection ,size=0 + +2025-09-24 05:54:05,159 INFO Connection check task end + +2025-09-24 05:54:07,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:08,160 INFO Connection check task start + +2025-09-24 05:54:08,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:08,160 INFO Out dated connection ,size=0 + +2025-09-24 05:54:08,160 INFO Connection check task end + +2025-09-24 05:54:10,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:11,161 INFO Connection check task start + +2025-09-24 05:54:11,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:11,161 INFO Out dated connection ,size=0 + +2025-09-24 05:54:11,161 INFO Connection check task end + +2025-09-24 05:54:13,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:14,162 INFO Connection check task start + +2025-09-24 05:54:14,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:14,162 INFO Out dated connection ,size=0 + +2025-09-24 05:54:14,162 INFO Connection check task end + +2025-09-24 05:54:16,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:17,163 INFO Connection check task start + +2025-09-24 05:54:17,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:17,163 INFO Out dated connection ,size=0 + +2025-09-24 05:54:17,163 INFO Connection check task end + +2025-09-24 05:54:19,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:20,165 INFO Connection check task start + +2025-09-24 05:54:20,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:20,165 INFO Out dated connection ,size=0 + +2025-09-24 05:54:20,165 INFO Connection check task end + +2025-09-24 05:54:22,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:23,166 INFO Connection check task start + +2025-09-24 05:54:23,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:23,166 INFO Out dated connection ,size=0 + +2025-09-24 05:54:23,166 INFO Connection check task end + +2025-09-24 05:54:25,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:26,168 INFO Connection check task start + +2025-09-24 05:54:26,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:26,168 INFO Out dated connection ,size=0 + +2025-09-24 05:54:26,168 INFO Connection check task end + +2025-09-24 05:54:28,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:29,168 INFO Connection check task start + +2025-09-24 05:54:29,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:29,168 INFO Out dated connection ,size=0 + +2025-09-24 05:54:29,168 INFO Connection check task end + +2025-09-24 05:54:31,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:32,171 INFO Connection check task start + +2025-09-24 05:54:32,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:32,171 INFO Out dated connection ,size=0 + +2025-09-24 05:54:32,171 INFO Connection check task end + +2025-09-24 05:54:34,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:35,171 INFO Connection check task start + +2025-09-24 05:54:35,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:35,172 INFO Out dated connection ,size=0 + +2025-09-24 05:54:35,172 INFO Connection check task end + +2025-09-24 05:54:37,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:38,172 INFO Connection check task start + +2025-09-24 05:54:38,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:38,172 INFO Out dated connection ,size=0 + +2025-09-24 05:54:38,172 INFO Connection check task end + +2025-09-24 05:54:40,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:41,174 INFO Connection check task start + +2025-09-24 05:54:41,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:41,175 INFO Out dated connection ,size=0 + +2025-09-24 05:54:41,175 INFO Connection check task end + +2025-09-24 05:54:43,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:44,175 INFO Connection check task start + +2025-09-24 05:54:44,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:44,175 INFO Out dated connection ,size=0 + +2025-09-24 05:54:44,175 INFO Connection check task end + +2025-09-24 05:54:46,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:47,176 INFO Connection check task start + +2025-09-24 05:54:47,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:47,176 INFO Out dated connection ,size=0 + +2025-09-24 05:54:47,176 INFO Connection check task end + +2025-09-24 05:54:49,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:50,176 INFO Connection check task start + +2025-09-24 05:54:50,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:50,176 INFO Out dated connection ,size=0 + +2025-09-24 05:54:50,176 INFO Connection check task end + +2025-09-24 05:54:52,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:53,177 INFO Connection check task start + +2025-09-24 05:54:53,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:53,177 INFO Out dated connection ,size=0 + +2025-09-24 05:54:53,177 INFO Connection check task end + +2025-09-24 05:54:55,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:56,179 INFO Connection check task start + +2025-09-24 05:54:56,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:56,179 INFO Out dated connection ,size=0 + +2025-09-24 05:54:56,179 INFO Connection check task end + +2025-09-24 05:54:58,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:54:59,179 INFO Connection check task start + +2025-09-24 05:54:59,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:54:59,179 INFO Out dated connection ,size=0 + +2025-09-24 05:54:59,179 INFO Connection check task end + +2025-09-24 05:55:01,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:02,179 INFO Connection check task start + +2025-09-24 05:55:02,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:02,180 INFO Out dated connection ,size=0 + +2025-09-24 05:55:02,180 INFO Connection check task end + +2025-09-24 05:55:04,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:05,182 INFO Connection check task start + +2025-09-24 05:55:05,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:05,182 INFO Out dated connection ,size=0 + +2025-09-24 05:55:05,182 INFO Connection check task end + +2025-09-24 05:55:07,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:08,182 INFO Connection check task start + +2025-09-24 05:55:08,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:08,182 INFO Out dated connection ,size=0 + +2025-09-24 05:55:08,182 INFO Connection check task end + +2025-09-24 05:55:10,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:11,184 INFO Connection check task start + +2025-09-24 05:55:11,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:11,184 INFO Out dated connection ,size=0 + +2025-09-24 05:55:11,184 INFO Connection check task end + +2025-09-24 05:55:13,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:14,185 INFO Connection check task start + +2025-09-24 05:55:14,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:14,185 INFO Out dated connection ,size=0 + +2025-09-24 05:55:14,186 INFO Connection check task end + +2025-09-24 05:55:16,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:17,187 INFO Connection check task start + +2025-09-24 05:55:17,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:17,187 INFO Out dated connection ,size=0 + +2025-09-24 05:55:17,188 INFO Connection check task end + +2025-09-24 05:55:19,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:20,188 INFO Connection check task start + +2025-09-24 05:55:20,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:20,188 INFO Out dated connection ,size=0 + +2025-09-24 05:55:20,188 INFO Connection check task end + +2025-09-24 05:55:22,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:23,188 INFO Connection check task start + +2025-09-24 05:55:23,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:23,189 INFO Out dated connection ,size=0 + +2025-09-24 05:55:23,189 INFO Connection check task end + +2025-09-24 05:55:25,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:26,190 INFO Connection check task start + +2025-09-24 05:55:26,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:26,191 INFO Out dated connection ,size=0 + +2025-09-24 05:55:26,191 INFO Connection check task end + +2025-09-24 05:55:28,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:29,191 INFO Connection check task start + +2025-09-24 05:55:29,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:29,191 INFO Out dated connection ,size=0 + +2025-09-24 05:55:29,191 INFO Connection check task end + +2025-09-24 05:55:31,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:32,191 INFO Connection check task start + +2025-09-24 05:55:32,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:32,192 INFO Out dated connection ,size=0 + +2025-09-24 05:55:32,192 INFO Connection check task end + +2025-09-24 05:55:34,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:35,192 INFO Connection check task start + +2025-09-24 05:55:35,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:35,192 INFO Out dated connection ,size=0 + +2025-09-24 05:55:35,192 INFO Connection check task end + +2025-09-24 05:55:37,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:38,192 INFO Connection check task start + +2025-09-24 05:55:38,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:38,193 INFO Out dated connection ,size=0 + +2025-09-24 05:55:38,193 INFO Connection check task end + +2025-09-24 05:55:40,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:41,194 INFO Connection check task start + +2025-09-24 05:55:41,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:41,194 INFO Out dated connection ,size=0 + +2025-09-24 05:55:41,194 INFO Connection check task end + +2025-09-24 05:55:43,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:44,194 INFO Connection check task start + +2025-09-24 05:55:44,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:44,195 INFO Out dated connection ,size=0 + +2025-09-24 05:55:44,195 INFO Connection check task end + +2025-09-24 05:55:46,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:47,197 INFO Connection check task start + +2025-09-24 05:55:47,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:47,197 INFO Out dated connection ,size=0 + +2025-09-24 05:55:47,197 INFO Connection check task end + +2025-09-24 05:55:49,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:50,197 INFO Connection check task start + +2025-09-24 05:55:50,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:50,197 INFO Out dated connection ,size=0 + +2025-09-24 05:55:50,197 INFO Connection check task end + +2025-09-24 05:55:52,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:53,198 INFO Connection check task start + +2025-09-24 05:55:53,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:53,198 INFO Out dated connection ,size=0 + +2025-09-24 05:55:53,198 INFO Connection check task end + +2025-09-24 05:55:55,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:56,199 INFO Connection check task start + +2025-09-24 05:55:56,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:56,199 INFO Out dated connection ,size=0 + +2025-09-24 05:55:56,199 INFO Connection check task end + +2025-09-24 05:55:58,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:55:59,200 INFO Connection check task start + +2025-09-24 05:55:59,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:55:59,200 INFO Out dated connection ,size=0 + +2025-09-24 05:55:59,200 INFO Connection check task end + +2025-09-24 05:56:01,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:02,200 INFO Connection check task start + +2025-09-24 05:56:02,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:02,200 INFO Out dated connection ,size=0 + +2025-09-24 05:56:02,201 INFO Connection check task end + +2025-09-24 05:56:04,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:05,203 INFO Connection check task start + +2025-09-24 05:56:05,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:05,203 INFO Out dated connection ,size=0 + +2025-09-24 05:56:05,203 INFO Connection check task end + +2025-09-24 05:56:07,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:08,203 INFO Connection check task start + +2025-09-24 05:56:08,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:08,203 INFO Out dated connection ,size=0 + +2025-09-24 05:56:08,204 INFO Connection check task end + +2025-09-24 05:56:10,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:11,204 INFO Connection check task start + +2025-09-24 05:56:11,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:11,204 INFO Out dated connection ,size=0 + +2025-09-24 05:56:11,204 INFO Connection check task end + +2025-09-24 05:56:13,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:14,205 INFO Connection check task start + +2025-09-24 05:56:14,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:14,205 INFO Out dated connection ,size=0 + +2025-09-24 05:56:14,205 INFO Connection check task end + +2025-09-24 05:56:16,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:17,207 INFO Connection check task start + +2025-09-24 05:56:17,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:17,207 INFO Out dated connection ,size=0 + +2025-09-24 05:56:17,207 INFO Connection check task end + +2025-09-24 05:56:19,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:20,209 INFO Connection check task start + +2025-09-24 05:56:20,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:20,209 INFO Out dated connection ,size=0 + +2025-09-24 05:56:20,209 INFO Connection check task end + +2025-09-24 05:56:22,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:23,209 INFO Connection check task start + +2025-09-24 05:56:23,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:23,210 INFO Out dated connection ,size=0 + +2025-09-24 05:56:23,210 INFO Connection check task end + +2025-09-24 05:56:25,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:26,210 INFO Connection check task start + +2025-09-24 05:56:26,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:26,210 INFO Out dated connection ,size=0 + +2025-09-24 05:56:26,210 INFO Connection check task end + +2025-09-24 05:56:28,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:29,212 INFO Connection check task start + +2025-09-24 05:56:29,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:29,212 INFO Out dated connection ,size=0 + +2025-09-24 05:56:29,212 INFO Connection check task end + +2025-09-24 05:56:31,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:32,214 INFO Connection check task start + +2025-09-24 05:56:32,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:32,214 INFO Out dated connection ,size=0 + +2025-09-24 05:56:32,214 INFO Connection check task end + +2025-09-24 05:56:34,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:35,214 INFO Connection check task start + +2025-09-24 05:56:35,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:35,215 INFO Out dated connection ,size=0 + +2025-09-24 05:56:35,215 INFO Connection check task end + +2025-09-24 05:56:37,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:38,215 INFO Connection check task start + +2025-09-24 05:56:38,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:38,215 INFO Out dated connection ,size=0 + +2025-09-24 05:56:38,215 INFO Connection check task end + +2025-09-24 05:56:40,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:41,216 INFO Connection check task start + +2025-09-24 05:56:41,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:41,216 INFO Out dated connection ,size=0 + +2025-09-24 05:56:41,216 INFO Connection check task end + +2025-09-24 05:56:43,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:44,218 INFO Connection check task start + +2025-09-24 05:56:44,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:44,218 INFO Out dated connection ,size=0 + +2025-09-24 05:56:44,218 INFO Connection check task end + +2025-09-24 05:56:46,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:47,220 INFO Connection check task start + +2025-09-24 05:56:47,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:47,220 INFO Out dated connection ,size=0 + +2025-09-24 05:56:47,220 INFO Connection check task end + +2025-09-24 05:56:49,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:50,222 INFO Connection check task start + +2025-09-24 05:56:50,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:50,222 INFO Out dated connection ,size=0 + +2025-09-24 05:56:50,222 INFO Connection check task end + +2025-09-24 05:56:52,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:53,224 INFO Connection check task start + +2025-09-24 05:56:53,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:53,224 INFO Out dated connection ,size=0 + +2025-09-24 05:56:53,224 INFO Connection check task end + +2025-09-24 05:56:55,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:56,225 INFO Connection check task start + +2025-09-24 05:56:56,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:56,225 INFO Out dated connection ,size=0 + +2025-09-24 05:56:56,225 INFO Connection check task end + +2025-09-24 05:56:58,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:56:59,226 INFO Connection check task start + +2025-09-24 05:56:59,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:56:59,226 INFO Out dated connection ,size=0 + +2025-09-24 05:56:59,226 INFO Connection check task end + +2025-09-24 05:57:01,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:02,227 INFO Connection check task start + +2025-09-24 05:57:02,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:02,227 INFO Out dated connection ,size=0 + +2025-09-24 05:57:02,227 INFO Connection check task end + +2025-09-24 05:57:04,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:05,229 INFO Connection check task start + +2025-09-24 05:57:05,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:05,229 INFO Out dated connection ,size=0 + +2025-09-24 05:57:05,229 INFO Connection check task end + +2025-09-24 05:57:07,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:08,229 INFO Connection check task start + +2025-09-24 05:57:08,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:08,229 INFO Out dated connection ,size=0 + +2025-09-24 05:57:08,229 INFO Connection check task end + +2025-09-24 05:57:10,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:11,231 INFO Connection check task start + +2025-09-24 05:57:11,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:11,231 INFO Out dated connection ,size=0 + +2025-09-24 05:57:11,231 INFO Connection check task end + +2025-09-24 05:57:13,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:14,233 INFO Connection check task start + +2025-09-24 05:57:14,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:14,233 INFO Out dated connection ,size=0 + +2025-09-24 05:57:14,233 INFO Connection check task end + +2025-09-24 05:57:16,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:17,234 INFO Connection check task start + +2025-09-24 05:57:17,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:17,234 INFO Out dated connection ,size=0 + +2025-09-24 05:57:17,235 INFO Connection check task end + +2025-09-24 05:57:19,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:20,237 INFO Connection check task start + +2025-09-24 05:57:20,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:20,237 INFO Out dated connection ,size=0 + +2025-09-24 05:57:20,237 INFO Connection check task end + +2025-09-24 05:57:22,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:23,237 INFO Connection check task start + +2025-09-24 05:57:23,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:23,237 INFO Out dated connection ,size=0 + +2025-09-24 05:57:23,237 INFO Connection check task end + +2025-09-24 05:57:25,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:26,239 INFO Connection check task start + +2025-09-24 05:57:26,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:26,239 INFO Out dated connection ,size=0 + +2025-09-24 05:57:26,240 INFO Connection check task end + +2025-09-24 05:57:28,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:29,243 INFO Connection check task start + +2025-09-24 05:57:29,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:29,243 INFO Out dated connection ,size=0 + +2025-09-24 05:57:29,243 INFO Connection check task end + +2025-09-24 05:57:31,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:32,243 INFO Connection check task start + +2025-09-24 05:57:32,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:32,243 INFO Out dated connection ,size=0 + +2025-09-24 05:57:32,243 INFO Connection check task end + +2025-09-24 05:57:34,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:35,244 INFO Connection check task start + +2025-09-24 05:57:35,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:35,244 INFO Out dated connection ,size=0 + +2025-09-24 05:57:35,244 INFO Connection check task end + +2025-09-24 05:57:37,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:38,244 INFO Connection check task start + +2025-09-24 05:57:38,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:38,245 INFO Out dated connection ,size=0 + +2025-09-24 05:57:38,245 INFO Connection check task end + +2025-09-24 05:57:40,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:41,245 INFO Connection check task start + +2025-09-24 05:57:41,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:41,245 INFO Out dated connection ,size=0 + +2025-09-24 05:57:41,245 INFO Connection check task end + +2025-09-24 05:57:43,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:44,245 INFO Connection check task start + +2025-09-24 05:57:44,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:44,246 INFO Out dated connection ,size=0 + +2025-09-24 05:57:44,246 INFO Connection check task end + +2025-09-24 05:57:46,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:47,247 INFO Connection check task start + +2025-09-24 05:57:47,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:47,247 INFO Out dated connection ,size=0 + +2025-09-24 05:57:47,247 INFO Connection check task end + +2025-09-24 05:57:49,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:50,249 INFO Connection check task start + +2025-09-24 05:57:50,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:50,249 INFO Out dated connection ,size=0 + +2025-09-24 05:57:50,249 INFO Connection check task end + +2025-09-24 05:57:52,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:53,249 INFO Connection check task start + +2025-09-24 05:57:53,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:53,249 INFO Out dated connection ,size=0 + +2025-09-24 05:57:53,250 INFO Connection check task end + +2025-09-24 05:57:55,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:56,251 INFO Connection check task start + +2025-09-24 05:57:56,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:56,251 INFO Out dated connection ,size=0 + +2025-09-24 05:57:56,251 INFO Connection check task end + +2025-09-24 05:57:58,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:57:59,251 INFO Connection check task start + +2025-09-24 05:57:59,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:57:59,252 INFO Out dated connection ,size=0 + +2025-09-24 05:57:59,252 INFO Connection check task end + +2025-09-24 05:58:01,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:02,252 INFO Connection check task start + +2025-09-24 05:58:02,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:02,252 INFO Out dated connection ,size=0 + +2025-09-24 05:58:02,252 INFO Connection check task end + +2025-09-24 05:58:04,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:05,253 INFO Connection check task start + +2025-09-24 05:58:05,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:05,253 INFO Out dated connection ,size=0 + +2025-09-24 05:58:05,253 INFO Connection check task end + +2025-09-24 05:58:07,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:08,253 INFO Connection check task start + +2025-09-24 05:58:08,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:08,253 INFO Out dated connection ,size=0 + +2025-09-24 05:58:08,253 INFO Connection check task end + +2025-09-24 05:58:10,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:11,254 INFO Connection check task start + +2025-09-24 05:58:11,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:11,254 INFO Out dated connection ,size=0 + +2025-09-24 05:58:11,254 INFO Connection check task end + +2025-09-24 05:58:13,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:14,255 INFO Connection check task start + +2025-09-24 05:58:14,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:14,255 INFO Out dated connection ,size=0 + +2025-09-24 05:58:14,255 INFO Connection check task end + +2025-09-24 05:58:16,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:17,256 INFO Connection check task start + +2025-09-24 05:58:17,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:17,256 INFO Out dated connection ,size=0 + +2025-09-24 05:58:17,256 INFO Connection check task end + +2025-09-24 05:58:19,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:20,256 INFO Connection check task start + +2025-09-24 05:58:20,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:20,257 INFO Out dated connection ,size=0 + +2025-09-24 05:58:20,257 INFO Connection check task end + +2025-09-24 05:58:22,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:23,257 INFO Connection check task start + +2025-09-24 05:58:23,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:23,257 INFO Out dated connection ,size=0 + +2025-09-24 05:58:23,257 INFO Connection check task end + +2025-09-24 05:58:25,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:26,257 INFO Connection check task start + +2025-09-24 05:58:26,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:26,258 INFO Out dated connection ,size=0 + +2025-09-24 05:58:26,258 INFO Connection check task end + +2025-09-24 05:58:28,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:29,258 INFO Connection check task start + +2025-09-24 05:58:29,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:29,258 INFO Out dated connection ,size=0 + +2025-09-24 05:58:29,258 INFO Connection check task end + +2025-09-24 05:58:31,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:32,259 INFO Connection check task start + +2025-09-24 05:58:32,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:32,259 INFO Out dated connection ,size=0 + +2025-09-24 05:58:32,259 INFO Connection check task end + +2025-09-24 05:58:34,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:35,259 INFO Connection check task start + +2025-09-24 05:58:35,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:35,259 INFO Out dated connection ,size=0 + +2025-09-24 05:58:35,259 INFO Connection check task end + +2025-09-24 05:58:37,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:38,259 INFO Connection check task start + +2025-09-24 05:58:38,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:38,259 INFO Out dated connection ,size=0 + +2025-09-24 05:58:38,259 INFO Connection check task end + +2025-09-24 05:58:40,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:41,260 INFO Connection check task start + +2025-09-24 05:58:41,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:41,260 INFO Out dated connection ,size=0 + +2025-09-24 05:58:41,260 INFO Connection check task end + +2025-09-24 05:58:43,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:44,262 INFO Connection check task start + +2025-09-24 05:58:44,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:44,262 INFO Out dated connection ,size=0 + +2025-09-24 05:58:44,262 INFO Connection check task end + +2025-09-24 05:58:46,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:47,262 INFO Connection check task start + +2025-09-24 05:58:47,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:47,262 INFO Out dated connection ,size=0 + +2025-09-24 05:58:47,263 INFO Connection check task end + +2025-09-24 05:58:49,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:50,263 INFO Connection check task start + +2025-09-24 05:58:50,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:50,263 INFO Out dated connection ,size=0 + +2025-09-24 05:58:50,263 INFO Connection check task end + +2025-09-24 05:58:52,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:53,264 INFO Connection check task start + +2025-09-24 05:58:53,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:53,264 INFO Out dated connection ,size=0 + +2025-09-24 05:58:53,264 INFO Connection check task end + +2025-09-24 05:58:55,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:56,264 INFO Connection check task start + +2025-09-24 05:58:56,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:56,264 INFO Out dated connection ,size=0 + +2025-09-24 05:58:56,264 INFO Connection check task end + +2025-09-24 05:58:58,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:58:59,265 INFO Connection check task start + +2025-09-24 05:58:59,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:58:59,265 INFO Out dated connection ,size=0 + +2025-09-24 05:58:59,265 INFO Connection check task end + +2025-09-24 05:59:01,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:02,265 INFO Connection check task start + +2025-09-24 05:59:02,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:02,265 INFO Out dated connection ,size=0 + +2025-09-24 05:59:02,265 INFO Connection check task end + +2025-09-24 05:59:04,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:05,266 INFO Connection check task start + +2025-09-24 05:59:05,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:05,266 INFO Out dated connection ,size=0 + +2025-09-24 05:59:05,266 INFO Connection check task end + +2025-09-24 05:59:07,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:08,266 INFO Connection check task start + +2025-09-24 05:59:08,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:08,266 INFO Out dated connection ,size=0 + +2025-09-24 05:59:08,266 INFO Connection check task end + +2025-09-24 05:59:10,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:11,267 INFO Connection check task start + +2025-09-24 05:59:11,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:11,267 INFO Out dated connection ,size=0 + +2025-09-24 05:59:11,267 INFO Connection check task end + +2025-09-24 05:59:13,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:14,269 INFO Connection check task start + +2025-09-24 05:59:14,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:14,269 INFO Out dated connection ,size=0 + +2025-09-24 05:59:14,270 INFO Connection check task end + +2025-09-24 05:59:16,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:17,270 INFO Connection check task start + +2025-09-24 05:59:17,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:17,270 INFO Out dated connection ,size=0 + +2025-09-24 05:59:17,270 INFO Connection check task end + +2025-09-24 05:59:19,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:20,270 INFO Connection check task start + +2025-09-24 05:59:20,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:20,270 INFO Out dated connection ,size=0 + +2025-09-24 05:59:20,271 INFO Connection check task end + +2025-09-24 05:59:22,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:23,271 INFO Connection check task start + +2025-09-24 05:59:23,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:23,271 INFO Out dated connection ,size=0 + +2025-09-24 05:59:23,271 INFO Connection check task end + +2025-09-24 05:59:25,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:26,272 INFO Connection check task start + +2025-09-24 05:59:26,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:26,272 INFO Out dated connection ,size=0 + +2025-09-24 05:59:26,272 INFO Connection check task end + +2025-09-24 05:59:28,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:29,272 INFO Connection check task start + +2025-09-24 05:59:29,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:29,272 INFO Out dated connection ,size=0 + +2025-09-24 05:59:29,272 INFO Connection check task end + +2025-09-24 05:59:31,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:32,274 INFO Connection check task start + +2025-09-24 05:59:32,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:32,274 INFO Out dated connection ,size=0 + +2025-09-24 05:59:32,274 INFO Connection check task end + +2025-09-24 05:59:34,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:35,275 INFO Connection check task start + +2025-09-24 05:59:35,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:35,275 INFO Out dated connection ,size=0 + +2025-09-24 05:59:35,275 INFO Connection check task end + +2025-09-24 05:59:37,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:38,276 INFO Connection check task start + +2025-09-24 05:59:38,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:38,276 INFO Out dated connection ,size=0 + +2025-09-24 05:59:38,276 INFO Connection check task end + +2025-09-24 05:59:40,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:41,276 INFO Connection check task start + +2025-09-24 05:59:41,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:41,276 INFO Out dated connection ,size=0 + +2025-09-24 05:59:41,276 INFO Connection check task end + +2025-09-24 05:59:43,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:44,277 INFO Connection check task start + +2025-09-24 05:59:44,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:44,277 INFO Out dated connection ,size=0 + +2025-09-24 05:59:44,277 INFO Connection check task end + +2025-09-24 05:59:46,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:47,277 INFO Connection check task start + +2025-09-24 05:59:47,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:47,277 INFO Out dated connection ,size=0 + +2025-09-24 05:59:47,277 INFO Connection check task end + +2025-09-24 05:59:49,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:50,278 INFO Connection check task start + +2025-09-24 05:59:50,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:50,278 INFO Out dated connection ,size=0 + +2025-09-24 05:59:50,278 INFO Connection check task end + +2025-09-24 05:59:52,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:53,278 INFO Connection check task start + +2025-09-24 05:59:53,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:53,279 INFO Out dated connection ,size=0 + +2025-09-24 05:59:53,279 INFO Connection check task end + +2025-09-24 05:59:55,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:56,279 INFO Connection check task start + +2025-09-24 05:59:56,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:56,279 INFO Out dated connection ,size=0 + +2025-09-24 05:59:56,279 INFO Connection check task end + +2025-09-24 05:59:58,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 05:59:59,280 INFO Connection check task start + +2025-09-24 05:59:59,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 05:59:59,280 INFO Out dated connection ,size=0 + +2025-09-24 05:59:59,280 INFO Connection check task end + +2025-09-24 06:00:01,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:02,280 INFO Connection check task start + +2025-09-24 06:00:02,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:02,280 INFO Out dated connection ,size=0 + +2025-09-24 06:00:02,280 INFO Connection check task end + +2025-09-24 06:00:04,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:05,280 INFO Connection check task start + +2025-09-24 06:00:05,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:05,281 INFO Out dated connection ,size=0 + +2025-09-24 06:00:05,281 INFO Connection check task end + +2025-09-24 06:00:07,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:08,281 INFO Connection check task start + +2025-09-24 06:00:08,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:08,281 INFO Out dated connection ,size=0 + +2025-09-24 06:00:08,281 INFO Connection check task end + +2025-09-24 06:00:10,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:11,281 INFO Connection check task start + +2025-09-24 06:00:11,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:11,281 INFO Out dated connection ,size=0 + +2025-09-24 06:00:11,281 INFO Connection check task end + +2025-09-24 06:00:13,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:14,282 INFO Connection check task start + +2025-09-24 06:00:14,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:14,282 INFO Out dated connection ,size=0 + +2025-09-24 06:00:14,282 INFO Connection check task end + +2025-09-24 06:00:16,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:17,282 INFO Connection check task start + +2025-09-24 06:00:17,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:17,282 INFO Out dated connection ,size=0 + +2025-09-24 06:00:17,282 INFO Connection check task end + +2025-09-24 06:00:19,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:20,283 INFO Connection check task start + +2025-09-24 06:00:20,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:20,283 INFO Out dated connection ,size=0 + +2025-09-24 06:00:20,283 INFO Connection check task end + +2025-09-24 06:00:22,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:23,283 INFO Connection check task start + +2025-09-24 06:00:23,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:23,283 INFO Out dated connection ,size=0 + +2025-09-24 06:00:23,283 INFO Connection check task end + +2025-09-24 06:00:25,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:26,283 INFO Connection check task start + +2025-09-24 06:00:26,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:26,283 INFO Out dated connection ,size=0 + +2025-09-24 06:00:26,283 INFO Connection check task end + +2025-09-24 06:00:28,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:29,284 INFO Connection check task start + +2025-09-24 06:00:29,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:29,284 INFO Out dated connection ,size=0 + +2025-09-24 06:00:29,284 INFO Connection check task end + +2025-09-24 06:00:31,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:32,284 INFO Connection check task start + +2025-09-24 06:00:32,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:32,284 INFO Out dated connection ,size=0 + +2025-09-24 06:00:32,284 INFO Connection check task end + +2025-09-24 06:00:34,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:35,286 INFO Connection check task start + +2025-09-24 06:00:35,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:35,286 INFO Out dated connection ,size=0 + +2025-09-24 06:00:35,286 INFO Connection check task end + +2025-09-24 06:00:37,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:38,287 INFO Connection check task start + +2025-09-24 06:00:38,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:38,287 INFO Out dated connection ,size=0 + +2025-09-24 06:00:38,287 INFO Connection check task end + +2025-09-24 06:00:40,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:41,287 INFO Connection check task start + +2025-09-24 06:00:41,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:41,287 INFO Out dated connection ,size=0 + +2025-09-24 06:00:41,287 INFO Connection check task end + +2025-09-24 06:00:43,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:44,287 INFO Connection check task start + +2025-09-24 06:00:44,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:44,288 INFO Out dated connection ,size=0 + +2025-09-24 06:00:44,288 INFO Connection check task end + +2025-09-24 06:00:46,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:47,288 INFO Connection check task start + +2025-09-24 06:00:47,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:47,288 INFO Out dated connection ,size=0 + +2025-09-24 06:00:47,288 INFO Connection check task end + +2025-09-24 06:00:49,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:50,289 INFO Connection check task start + +2025-09-24 06:00:50,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:50,289 INFO Out dated connection ,size=0 + +2025-09-24 06:00:50,289 INFO Connection check task end + +2025-09-24 06:00:52,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:53,289 INFO Connection check task start + +2025-09-24 06:00:53,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:53,289 INFO Out dated connection ,size=0 + +2025-09-24 06:00:53,289 INFO Connection check task end + +2025-09-24 06:00:55,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:56,289 INFO Connection check task start + +2025-09-24 06:00:56,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:56,290 INFO Out dated connection ,size=0 + +2025-09-24 06:00:56,290 INFO Connection check task end + +2025-09-24 06:00:58,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:00:59,290 INFO Connection check task start + +2025-09-24 06:00:59,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:00:59,290 INFO Out dated connection ,size=0 + +2025-09-24 06:00:59,290 INFO Connection check task end + +2025-09-24 06:01:01,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:02,291 INFO Connection check task start + +2025-09-24 06:01:02,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:02,291 INFO Out dated connection ,size=0 + +2025-09-24 06:01:02,291 INFO Connection check task end + +2025-09-24 06:01:04,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:05,291 INFO Connection check task start + +2025-09-24 06:01:05,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:05,291 INFO Out dated connection ,size=0 + +2025-09-24 06:01:05,291 INFO Connection check task end + +2025-09-24 06:01:07,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:08,292 INFO Connection check task start + +2025-09-24 06:01:08,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:08,292 INFO Out dated connection ,size=0 + +2025-09-24 06:01:08,292 INFO Connection check task end + +2025-09-24 06:01:10,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:11,292 INFO Connection check task start + +2025-09-24 06:01:11,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:11,292 INFO Out dated connection ,size=0 + +2025-09-24 06:01:11,292 INFO Connection check task end + +2025-09-24 06:01:13,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:14,292 INFO Connection check task start + +2025-09-24 06:01:14,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:14,293 INFO Out dated connection ,size=0 + +2025-09-24 06:01:14,293 INFO Connection check task end + +2025-09-24 06:01:16,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:17,293 INFO Connection check task start + +2025-09-24 06:01:17,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:17,293 INFO Out dated connection ,size=0 + +2025-09-24 06:01:17,293 INFO Connection check task end + +2025-09-24 06:01:19,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:20,293 INFO Connection check task start + +2025-09-24 06:01:20,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:20,294 INFO Out dated connection ,size=0 + +2025-09-24 06:01:20,294 INFO Connection check task end + +2025-09-24 06:01:22,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:23,295 INFO Connection check task start + +2025-09-24 06:01:23,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:23,295 INFO Out dated connection ,size=0 + +2025-09-24 06:01:23,295 INFO Connection check task end + +2025-09-24 06:01:25,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:26,295 INFO Connection check task start + +2025-09-24 06:01:26,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:26,296 INFO Out dated connection ,size=0 + +2025-09-24 06:01:26,296 INFO Connection check task end + +2025-09-24 06:01:28,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:29,296 INFO Connection check task start + +2025-09-24 06:01:29,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:29,296 INFO Out dated connection ,size=0 + +2025-09-24 06:01:29,296 INFO Connection check task end + +2025-09-24 06:01:31,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:32,296 INFO Connection check task start + +2025-09-24 06:01:32,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:32,296 INFO Out dated connection ,size=0 + +2025-09-24 06:01:32,297 INFO Connection check task end + +2025-09-24 06:01:34,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:35,297 INFO Connection check task start + +2025-09-24 06:01:35,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:35,297 INFO Out dated connection ,size=0 + +2025-09-24 06:01:35,297 INFO Connection check task end + +2025-09-24 06:01:37,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:38,298 INFO Connection check task start + +2025-09-24 06:01:38,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:38,298 INFO Out dated connection ,size=0 + +2025-09-24 06:01:38,298 INFO Connection check task end + +2025-09-24 06:01:40,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:41,298 INFO Connection check task start + +2025-09-24 06:01:41,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:41,298 INFO Out dated connection ,size=0 + +2025-09-24 06:01:41,298 INFO Connection check task end + +2025-09-24 06:01:43,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:44,298 INFO Connection check task start + +2025-09-24 06:01:44,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:44,299 INFO Out dated connection ,size=0 + +2025-09-24 06:01:44,299 INFO Connection check task end + +2025-09-24 06:01:46,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:47,300 INFO Connection check task start + +2025-09-24 06:01:47,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:47,300 INFO Out dated connection ,size=0 + +2025-09-24 06:01:47,300 INFO Connection check task end + +2025-09-24 06:01:49,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:50,301 INFO Connection check task start + +2025-09-24 06:01:50,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:50,301 INFO Out dated connection ,size=0 + +2025-09-24 06:01:50,301 INFO Connection check task end + +2025-09-24 06:01:52,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:53,302 INFO Connection check task start + +2025-09-24 06:01:53,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:53,302 INFO Out dated connection ,size=0 + +2025-09-24 06:01:53,302 INFO Connection check task end + +2025-09-24 06:01:55,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:56,302 INFO Connection check task start + +2025-09-24 06:01:56,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:56,302 INFO Out dated connection ,size=0 + +2025-09-24 06:01:56,302 INFO Connection check task end + +2025-09-24 06:01:58,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:01:59,302 INFO Connection check task start + +2025-09-24 06:01:59,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:01:59,303 INFO Out dated connection ,size=0 + +2025-09-24 06:01:59,303 INFO Connection check task end + +2025-09-24 06:02:01,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:02,304 INFO Connection check task start + +2025-09-24 06:02:02,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:02,304 INFO Out dated connection ,size=0 + +2025-09-24 06:02:02,304 INFO Connection check task end + +2025-09-24 06:02:04,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:05,306 INFO Connection check task start + +2025-09-24 06:02:05,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:05,306 INFO Out dated connection ,size=0 + +2025-09-24 06:02:05,306 INFO Connection check task end + +2025-09-24 06:02:07,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:08,308 INFO Connection check task start + +2025-09-24 06:02:08,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:08,308 INFO Out dated connection ,size=0 + +2025-09-24 06:02:08,308 INFO Connection check task end + +2025-09-24 06:02:10,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:11,309 INFO Connection check task start + +2025-09-24 06:02:11,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:11,309 INFO Out dated connection ,size=0 + +2025-09-24 06:02:11,309 INFO Connection check task end + +2025-09-24 06:02:13,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:14,310 INFO Connection check task start + +2025-09-24 06:02:14,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:14,310 INFO Out dated connection ,size=0 + +2025-09-24 06:02:14,310 INFO Connection check task end + +2025-09-24 06:02:16,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:17,310 INFO Connection check task start + +2025-09-24 06:02:17,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:17,310 INFO Out dated connection ,size=0 + +2025-09-24 06:02:17,310 INFO Connection check task end + +2025-09-24 06:02:19,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:20,310 INFO Connection check task start + +2025-09-24 06:02:20,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:20,311 INFO Out dated connection ,size=0 + +2025-09-24 06:02:20,311 INFO Connection check task end + +2025-09-24 06:02:22,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:23,311 INFO Connection check task start + +2025-09-24 06:02:23,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:23,311 INFO Out dated connection ,size=0 + +2025-09-24 06:02:23,311 INFO Connection check task end + +2025-09-24 06:02:25,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:26,312 INFO Connection check task start + +2025-09-24 06:02:26,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:26,312 INFO Out dated connection ,size=0 + +2025-09-24 06:02:26,312 INFO Connection check task end + +2025-09-24 06:02:28,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:29,313 INFO Connection check task start + +2025-09-24 06:02:29,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:29,313 INFO Out dated connection ,size=0 + +2025-09-24 06:02:29,313 INFO Connection check task end + +2025-09-24 06:02:31,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:32,315 INFO Connection check task start + +2025-09-24 06:02:32,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:32,315 INFO Out dated connection ,size=0 + +2025-09-24 06:02:32,315 INFO Connection check task end + +2025-09-24 06:02:34,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:35,316 INFO Connection check task start + +2025-09-24 06:02:35,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:35,316 INFO Out dated connection ,size=0 + +2025-09-24 06:02:35,316 INFO Connection check task end + +2025-09-24 06:02:37,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:38,318 INFO Connection check task start + +2025-09-24 06:02:38,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:38,318 INFO Out dated connection ,size=0 + +2025-09-24 06:02:38,318 INFO Connection check task end + +2025-09-24 06:02:40,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:41,320 INFO Connection check task start + +2025-09-24 06:02:41,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:41,320 INFO Out dated connection ,size=0 + +2025-09-24 06:02:41,320 INFO Connection check task end + +2025-09-24 06:02:43,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:44,321 INFO Connection check task start + +2025-09-24 06:02:44,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:44,322 INFO Out dated connection ,size=0 + +2025-09-24 06:02:44,322 INFO Connection check task end + +2025-09-24 06:02:46,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:47,324 INFO Connection check task start + +2025-09-24 06:02:47,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:47,324 INFO Out dated connection ,size=0 + +2025-09-24 06:02:47,324 INFO Connection check task end + +2025-09-24 06:02:49,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:50,325 INFO Connection check task start + +2025-09-24 06:02:50,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:50,326 INFO Out dated connection ,size=0 + +2025-09-24 06:02:50,326 INFO Connection check task end + +2025-09-24 06:02:52,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:53,328 INFO Connection check task start + +2025-09-24 06:02:53,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:53,328 INFO Out dated connection ,size=0 + +2025-09-24 06:02:53,328 INFO Connection check task end + +2025-09-24 06:02:55,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:56,329 INFO Connection check task start + +2025-09-24 06:02:56,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:56,329 INFO Out dated connection ,size=0 + +2025-09-24 06:02:56,329 INFO Connection check task end + +2025-09-24 06:02:58,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:02:59,331 INFO Connection check task start + +2025-09-24 06:02:59,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:02:59,332 INFO Out dated connection ,size=0 + +2025-09-24 06:02:59,332 INFO Connection check task end + +2025-09-24 06:03:01,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:02,332 INFO Connection check task start + +2025-09-24 06:03:02,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:02,332 INFO Out dated connection ,size=0 + +2025-09-24 06:03:02,332 INFO Connection check task end + +2025-09-24 06:03:04,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:05,332 INFO Connection check task start + +2025-09-24 06:03:05,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:05,333 INFO Out dated connection ,size=0 + +2025-09-24 06:03:05,333 INFO Connection check task end + +2025-09-24 06:03:07,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:08,335 INFO Connection check task start + +2025-09-24 06:03:08,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:08,335 INFO Out dated connection ,size=0 + +2025-09-24 06:03:08,335 INFO Connection check task end + +2025-09-24 06:03:10,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:11,337 INFO Connection check task start + +2025-09-24 06:03:11,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:11,338 INFO Out dated connection ,size=0 + +2025-09-24 06:03:11,338 INFO Connection check task end + +2025-09-24 06:03:13,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:14,340 INFO Connection check task start + +2025-09-24 06:03:14,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:14,340 INFO Out dated connection ,size=0 + +2025-09-24 06:03:14,340 INFO Connection check task end + +2025-09-24 06:03:16,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:17,342 INFO Connection check task start + +2025-09-24 06:03:17,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:17,342 INFO Out dated connection ,size=0 + +2025-09-24 06:03:17,342 INFO Connection check task end + +2025-09-24 06:03:19,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:20,344 INFO Connection check task start + +2025-09-24 06:03:20,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:20,344 INFO Out dated connection ,size=0 + +2025-09-24 06:03:20,344 INFO Connection check task end + +2025-09-24 06:03:22,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:23,346 INFO Connection check task start + +2025-09-24 06:03:23,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:23,346 INFO Out dated connection ,size=0 + +2025-09-24 06:03:23,346 INFO Connection check task end + +2025-09-24 06:03:25,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:26,347 INFO Connection check task start + +2025-09-24 06:03:26,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:26,347 INFO Out dated connection ,size=0 + +2025-09-24 06:03:26,347 INFO Connection check task end + +2025-09-24 06:03:28,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:29,349 INFO Connection check task start + +2025-09-24 06:03:29,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:29,349 INFO Out dated connection ,size=0 + +2025-09-24 06:03:29,349 INFO Connection check task end + +2025-09-24 06:03:31,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:32,350 INFO Connection check task start + +2025-09-24 06:03:32,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:32,350 INFO Out dated connection ,size=0 + +2025-09-24 06:03:32,350 INFO Connection check task end + +2025-09-24 06:03:34,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:35,351 INFO Connection check task start + +2025-09-24 06:03:35,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:35,351 INFO Out dated connection ,size=0 + +2025-09-24 06:03:35,351 INFO Connection check task end + +2025-09-24 06:03:37,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:38,351 INFO Connection check task start + +2025-09-24 06:03:38,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:38,351 INFO Out dated connection ,size=0 + +2025-09-24 06:03:38,351 INFO Connection check task end + +2025-09-24 06:03:40,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:41,353 INFO Connection check task start + +2025-09-24 06:03:41,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:41,353 INFO Out dated connection ,size=0 + +2025-09-24 06:03:41,353 INFO Connection check task end + +2025-09-24 06:03:43,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:44,355 INFO Connection check task start + +2025-09-24 06:03:44,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:44,355 INFO Out dated connection ,size=0 + +2025-09-24 06:03:44,355 INFO Connection check task end + +2025-09-24 06:03:46,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:47,356 INFO Connection check task start + +2025-09-24 06:03:47,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:47,357 INFO Out dated connection ,size=0 + +2025-09-24 06:03:47,357 INFO Connection check task end + +2025-09-24 06:03:49,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:50,357 INFO Connection check task start + +2025-09-24 06:03:50,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:50,357 INFO Out dated connection ,size=0 + +2025-09-24 06:03:50,357 INFO Connection check task end + +2025-09-24 06:03:52,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:53,358 INFO Connection check task start + +2025-09-24 06:03:53,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:53,358 INFO Out dated connection ,size=0 + +2025-09-24 06:03:53,358 INFO Connection check task end + +2025-09-24 06:03:55,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:56,359 INFO Connection check task start + +2025-09-24 06:03:56,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:56,359 INFO Out dated connection ,size=0 + +2025-09-24 06:03:56,359 INFO Connection check task end + +2025-09-24 06:03:58,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:03:59,359 INFO Connection check task start + +2025-09-24 06:03:59,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:03:59,359 INFO Out dated connection ,size=0 + +2025-09-24 06:03:59,360 INFO Connection check task end + +2025-09-24 06:04:01,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:02,362 INFO Connection check task start + +2025-09-24 06:04:02,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:02,362 INFO Out dated connection ,size=0 + +2025-09-24 06:04:02,362 INFO Connection check task end + +2025-09-24 06:04:04,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:05,363 INFO Connection check task start + +2025-09-24 06:04:05,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:05,363 INFO Out dated connection ,size=0 + +2025-09-24 06:04:05,363 INFO Connection check task end + +2025-09-24 06:04:07,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:08,364 INFO Connection check task start + +2025-09-24 06:04:08,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:08,364 INFO Out dated connection ,size=0 + +2025-09-24 06:04:08,364 INFO Connection check task end + +2025-09-24 06:04:10,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:11,364 INFO Connection check task start + +2025-09-24 06:04:11,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:11,364 INFO Out dated connection ,size=0 + +2025-09-24 06:04:11,364 INFO Connection check task end + +2025-09-24 06:04:13,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:14,365 INFO Connection check task start + +2025-09-24 06:04:14,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:14,365 INFO Out dated connection ,size=0 + +2025-09-24 06:04:14,366 INFO Connection check task end + +2025-09-24 06:04:16,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:17,367 INFO Connection check task start + +2025-09-24 06:04:17,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:17,367 INFO Out dated connection ,size=0 + +2025-09-24 06:04:17,368 INFO Connection check task end + +2025-09-24 06:04:19,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:20,369 INFO Connection check task start + +2025-09-24 06:04:20,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:20,369 INFO Out dated connection ,size=0 + +2025-09-24 06:04:20,369 INFO Connection check task end + +2025-09-24 06:04:22,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:23,369 INFO Connection check task start + +2025-09-24 06:04:23,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:23,370 INFO Out dated connection ,size=0 + +2025-09-24 06:04:23,370 INFO Connection check task end + +2025-09-24 06:04:25,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:26,372 INFO Connection check task start + +2025-09-24 06:04:26,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:26,372 INFO Out dated connection ,size=0 + +2025-09-24 06:04:26,372 INFO Connection check task end + +2025-09-24 06:04:28,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:29,374 INFO Connection check task start + +2025-09-24 06:04:29,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:29,374 INFO Out dated connection ,size=0 + +2025-09-24 06:04:29,374 INFO Connection check task end + +2025-09-24 06:04:31,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:32,374 INFO Connection check task start + +2025-09-24 06:04:32,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:32,375 INFO Out dated connection ,size=0 + +2025-09-24 06:04:32,375 INFO Connection check task end + +2025-09-24 06:04:34,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:35,375 INFO Connection check task start + +2025-09-24 06:04:35,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:35,375 INFO Out dated connection ,size=0 + +2025-09-24 06:04:35,375 INFO Connection check task end + +2025-09-24 06:04:37,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:38,375 INFO Connection check task start + +2025-09-24 06:04:38,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:38,375 INFO Out dated connection ,size=0 + +2025-09-24 06:04:38,375 INFO Connection check task end + +2025-09-24 06:04:40,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:41,378 INFO Connection check task start + +2025-09-24 06:04:41,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:41,378 INFO Out dated connection ,size=0 + +2025-09-24 06:04:41,378 INFO Connection check task end + +2025-09-24 06:04:43,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:44,378 INFO Connection check task start + +2025-09-24 06:04:44,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:44,378 INFO Out dated connection ,size=0 + +2025-09-24 06:04:44,378 INFO Connection check task end + +2025-09-24 06:04:46,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:47,379 INFO Connection check task start + +2025-09-24 06:04:47,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:47,379 INFO Out dated connection ,size=0 + +2025-09-24 06:04:47,379 INFO Connection check task end + +2025-09-24 06:04:49,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:50,380 INFO Connection check task start + +2025-09-24 06:04:50,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:50,380 INFO Out dated connection ,size=0 + +2025-09-24 06:04:50,380 INFO Connection check task end + +2025-09-24 06:04:52,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:53,380 INFO Connection check task start + +2025-09-24 06:04:53,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:53,380 INFO Out dated connection ,size=0 + +2025-09-24 06:04:53,380 INFO Connection check task end + +2025-09-24 06:04:55,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:56,381 INFO Connection check task start + +2025-09-24 06:04:56,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:56,381 INFO Out dated connection ,size=0 + +2025-09-24 06:04:56,381 INFO Connection check task end + +2025-09-24 06:04:58,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:04:59,381 INFO Connection check task start + +2025-09-24 06:04:59,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:04:59,381 INFO Out dated connection ,size=0 + +2025-09-24 06:04:59,381 INFO Connection check task end + +2025-09-24 06:05:01,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:02,383 INFO Connection check task start + +2025-09-24 06:05:02,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:02,383 INFO Out dated connection ,size=0 + +2025-09-24 06:05:02,383 INFO Connection check task end + +2025-09-24 06:05:04,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:05,383 INFO Connection check task start + +2025-09-24 06:05:05,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:05,384 INFO Out dated connection ,size=0 + +2025-09-24 06:05:05,384 INFO Connection check task end + +2025-09-24 06:05:07,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:08,384 INFO Connection check task start + +2025-09-24 06:05:08,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:08,384 INFO Out dated connection ,size=0 + +2025-09-24 06:05:08,384 INFO Connection check task end + +2025-09-24 06:05:10,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:11,385 INFO Connection check task start + +2025-09-24 06:05:11,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:11,385 INFO Out dated connection ,size=0 + +2025-09-24 06:05:11,385 INFO Connection check task end + +2025-09-24 06:05:13,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:14,387 INFO Connection check task start + +2025-09-24 06:05:14,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:14,387 INFO Out dated connection ,size=0 + +2025-09-24 06:05:14,388 INFO Connection check task end + +2025-09-24 06:05:16,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:17,389 INFO Connection check task start + +2025-09-24 06:05:17,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:17,389 INFO Out dated connection ,size=0 + +2025-09-24 06:05:17,389 INFO Connection check task end + +2025-09-24 06:05:19,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:20,389 INFO Connection check task start + +2025-09-24 06:05:20,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:20,390 INFO Out dated connection ,size=0 + +2025-09-24 06:05:20,390 INFO Connection check task end + +2025-09-24 06:05:22,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:23,390 INFO Connection check task start + +2025-09-24 06:05:23,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:23,391 INFO Out dated connection ,size=0 + +2025-09-24 06:05:23,391 INFO Connection check task end + +2025-09-24 06:05:25,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:26,391 INFO Connection check task start + +2025-09-24 06:05:26,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:26,391 INFO Out dated connection ,size=0 + +2025-09-24 06:05:26,391 INFO Connection check task end + +2025-09-24 06:05:28,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:29,391 INFO Connection check task start + +2025-09-24 06:05:29,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:29,391 INFO Out dated connection ,size=0 + +2025-09-24 06:05:29,391 INFO Connection check task end + +2025-09-24 06:05:31,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:32,392 INFO Connection check task start + +2025-09-24 06:05:32,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:32,393 INFO Out dated connection ,size=0 + +2025-09-24 06:05:32,393 INFO Connection check task end + +2025-09-24 06:05:34,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:35,393 INFO Connection check task start + +2025-09-24 06:05:35,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:35,393 INFO Out dated connection ,size=0 + +2025-09-24 06:05:35,393 INFO Connection check task end + +2025-09-24 06:05:37,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:38,394 INFO Connection check task start + +2025-09-24 06:05:38,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:38,395 INFO Out dated connection ,size=0 + +2025-09-24 06:05:38,395 INFO Connection check task end + +2025-09-24 06:05:40,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:41,395 INFO Connection check task start + +2025-09-24 06:05:41,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:41,395 INFO Out dated connection ,size=0 + +2025-09-24 06:05:41,395 INFO Connection check task end + +2025-09-24 06:05:43,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:44,396 INFO Connection check task start + +2025-09-24 06:05:44,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:44,396 INFO Out dated connection ,size=0 + +2025-09-24 06:05:44,396 INFO Connection check task end + +2025-09-24 06:05:46,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:47,398 INFO Connection check task start + +2025-09-24 06:05:47,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:47,398 INFO Out dated connection ,size=0 + +2025-09-24 06:05:47,398 INFO Connection check task end + +2025-09-24 06:05:49,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:50,398 INFO Connection check task start + +2025-09-24 06:05:50,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:50,399 INFO Out dated connection ,size=0 + +2025-09-24 06:05:50,399 INFO Connection check task end + +2025-09-24 06:05:52,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:53,400 INFO Connection check task start + +2025-09-24 06:05:53,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:53,400 INFO Out dated connection ,size=0 + +2025-09-24 06:05:53,400 INFO Connection check task end + +2025-09-24 06:05:55,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:56,401 INFO Connection check task start + +2025-09-24 06:05:56,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:56,401 INFO Out dated connection ,size=0 + +2025-09-24 06:05:56,401 INFO Connection check task end + +2025-09-24 06:05:58,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:05:59,402 INFO Connection check task start + +2025-09-24 06:05:59,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:05:59,402 INFO Out dated connection ,size=0 + +2025-09-24 06:05:59,402 INFO Connection check task end + +2025-09-24 06:06:01,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:02,402 INFO Connection check task start + +2025-09-24 06:06:02,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:02,402 INFO Out dated connection ,size=0 + +2025-09-24 06:06:02,402 INFO Connection check task end + +2025-09-24 06:06:04,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:05,403 INFO Connection check task start + +2025-09-24 06:06:05,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:05,403 INFO Out dated connection ,size=0 + +2025-09-24 06:06:05,403 INFO Connection check task end + +2025-09-24 06:06:07,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:08,405 INFO Connection check task start + +2025-09-24 06:06:08,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:08,405 INFO Out dated connection ,size=0 + +2025-09-24 06:06:08,405 INFO Connection check task end + +2025-09-24 06:06:10,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:11,405 INFO Connection check task start + +2025-09-24 06:06:11,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:11,406 INFO Out dated connection ,size=0 + +2025-09-24 06:06:11,406 INFO Connection check task end + +2025-09-24 06:06:13,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:14,406 INFO Connection check task start + +2025-09-24 06:06:14,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:14,406 INFO Out dated connection ,size=0 + +2025-09-24 06:06:14,406 INFO Connection check task end + +2025-09-24 06:06:16,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:17,408 INFO Connection check task start + +2025-09-24 06:06:17,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:17,408 INFO Out dated connection ,size=0 + +2025-09-24 06:06:17,408 INFO Connection check task end + +2025-09-24 06:06:19,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:20,410 INFO Connection check task start + +2025-09-24 06:06:20,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:20,411 INFO Out dated connection ,size=0 + +2025-09-24 06:06:20,411 INFO Connection check task end + +2025-09-24 06:06:22,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:23,413 INFO Connection check task start + +2025-09-24 06:06:23,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:23,413 INFO Out dated connection ,size=0 + +2025-09-24 06:06:23,413 INFO Connection check task end + +2025-09-24 06:06:25,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:26,414 INFO Connection check task start + +2025-09-24 06:06:26,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:26,414 INFO Out dated connection ,size=0 + +2025-09-24 06:06:26,414 INFO Connection check task end + +2025-09-24 06:06:28,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:29,414 INFO Connection check task start + +2025-09-24 06:06:29,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:29,414 INFO Out dated connection ,size=0 + +2025-09-24 06:06:29,414 INFO Connection check task end + +2025-09-24 06:06:31,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:32,415 INFO Connection check task start + +2025-09-24 06:06:32,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:32,415 INFO Out dated connection ,size=0 + +2025-09-24 06:06:32,415 INFO Connection check task end + +2025-09-24 06:06:34,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:35,416 INFO Connection check task start + +2025-09-24 06:06:35,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:35,417 INFO Out dated connection ,size=0 + +2025-09-24 06:06:35,417 INFO Connection check task end + +2025-09-24 06:06:37,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:38,417 INFO Connection check task start + +2025-09-24 06:06:38,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:38,417 INFO Out dated connection ,size=0 + +2025-09-24 06:06:38,417 INFO Connection check task end + +2025-09-24 06:06:40,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:41,418 INFO Connection check task start + +2025-09-24 06:06:41,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:41,418 INFO Out dated connection ,size=0 + +2025-09-24 06:06:41,419 INFO Connection check task end + +2025-09-24 06:06:43,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:44,421 INFO Connection check task start + +2025-09-24 06:06:44,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:44,421 INFO Out dated connection ,size=0 + +2025-09-24 06:06:44,421 INFO Connection check task end + +2025-09-24 06:06:46,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:47,423 INFO Connection check task start + +2025-09-24 06:06:47,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:47,423 INFO Out dated connection ,size=0 + +2025-09-24 06:06:47,423 INFO Connection check task end + +2025-09-24 06:06:49,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:50,423 INFO Connection check task start + +2025-09-24 06:06:50,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:50,423 INFO Out dated connection ,size=0 + +2025-09-24 06:06:50,423 INFO Connection check task end + +2025-09-24 06:06:52,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:53,424 INFO Connection check task start + +2025-09-24 06:06:53,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:53,424 INFO Out dated connection ,size=0 + +2025-09-24 06:06:53,424 INFO Connection check task end + +2025-09-24 06:06:55,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:56,425 INFO Connection check task start + +2025-09-24 06:06:56,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:56,425 INFO Out dated connection ,size=0 + +2025-09-24 06:06:56,425 INFO Connection check task end + +2025-09-24 06:06:58,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:06:59,425 INFO Connection check task start + +2025-09-24 06:06:59,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:06:59,426 INFO Out dated connection ,size=0 + +2025-09-24 06:06:59,426 INFO Connection check task end + +2025-09-24 06:07:01,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:02,428 INFO Connection check task start + +2025-09-24 06:07:02,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:02,428 INFO Out dated connection ,size=0 + +2025-09-24 06:07:02,428 INFO Connection check task end + +2025-09-24 06:07:04,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:05,430 INFO Connection check task start + +2025-09-24 06:07:05,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:05,430 INFO Out dated connection ,size=0 + +2025-09-24 06:07:05,430 INFO Connection check task end + +2025-09-24 06:07:07,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:08,433 INFO Connection check task start + +2025-09-24 06:07:08,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:08,434 INFO Out dated connection ,size=0 + +2025-09-24 06:07:08,434 INFO Connection check task end + +2025-09-24 06:07:10,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:11,434 INFO Connection check task start + +2025-09-24 06:07:11,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:11,434 INFO Out dated connection ,size=0 + +2025-09-24 06:07:11,434 INFO Connection check task end + +2025-09-24 06:07:13,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:14,435 INFO Connection check task start + +2025-09-24 06:07:14,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:14,435 INFO Out dated connection ,size=0 + +2025-09-24 06:07:14,435 INFO Connection check task end + +2025-09-24 06:07:16,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:17,435 INFO Connection check task start + +2025-09-24 06:07:17,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:17,436 INFO Out dated connection ,size=0 + +2025-09-24 06:07:17,436 INFO Connection check task end + +2025-09-24 06:07:19,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:20,436 INFO Connection check task start + +2025-09-24 06:07:20,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:20,437 INFO Out dated connection ,size=0 + +2025-09-24 06:07:20,437 INFO Connection check task end + +2025-09-24 06:07:22,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:23,437 INFO Connection check task start + +2025-09-24 06:07:23,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:23,437 INFO Out dated connection ,size=0 + +2025-09-24 06:07:23,437 INFO Connection check task end + +2025-09-24 06:07:25,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:26,439 INFO Connection check task start + +2025-09-24 06:07:26,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:26,439 INFO Out dated connection ,size=0 + +2025-09-24 06:07:26,439 INFO Connection check task end + +2025-09-24 06:07:28,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:29,440 INFO Connection check task start + +2025-09-24 06:07:29,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:29,441 INFO Out dated connection ,size=0 + +2025-09-24 06:07:29,441 INFO Connection check task end + +2025-09-24 06:07:31,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:32,442 INFO Connection check task start + +2025-09-24 06:07:32,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:32,442 INFO Out dated connection ,size=0 + +2025-09-24 06:07:32,442 INFO Connection check task end + +2025-09-24 06:07:34,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:35,443 INFO Connection check task start + +2025-09-24 06:07:35,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:35,444 INFO Out dated connection ,size=0 + +2025-09-24 06:07:35,444 INFO Connection check task end + +2025-09-24 06:07:37,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:38,444 INFO Connection check task start + +2025-09-24 06:07:38,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:38,444 INFO Out dated connection ,size=0 + +2025-09-24 06:07:38,444 INFO Connection check task end + +2025-09-24 06:07:40,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:41,445 INFO Connection check task start + +2025-09-24 06:07:41,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:41,445 INFO Out dated connection ,size=0 + +2025-09-24 06:07:41,445 INFO Connection check task end + +2025-09-24 06:07:43,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:44,447 INFO Connection check task start + +2025-09-24 06:07:44,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:44,447 INFO Out dated connection ,size=0 + +2025-09-24 06:07:44,447 INFO Connection check task end + +2025-09-24 06:07:46,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:47,449 INFO Connection check task start + +2025-09-24 06:07:47,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:47,449 INFO Out dated connection ,size=0 + +2025-09-24 06:07:47,449 INFO Connection check task end + +2025-09-24 06:07:49,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:50,450 INFO Connection check task start + +2025-09-24 06:07:50,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:50,450 INFO Out dated connection ,size=0 + +2025-09-24 06:07:50,450 INFO Connection check task end + +2025-09-24 06:07:52,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:53,452 INFO Connection check task start + +2025-09-24 06:07:53,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:53,452 INFO Out dated connection ,size=0 + +2025-09-24 06:07:53,452 INFO Connection check task end + +2025-09-24 06:07:55,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:56,452 INFO Connection check task start + +2025-09-24 06:07:56,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:56,453 INFO Out dated connection ,size=0 + +2025-09-24 06:07:56,453 INFO Connection check task end + +2025-09-24 06:07:58,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:07:59,454 INFO Connection check task start + +2025-09-24 06:07:59,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:07:59,454 INFO Out dated connection ,size=0 + +2025-09-24 06:07:59,454 INFO Connection check task end + +2025-09-24 06:08:01,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:02,454 INFO Connection check task start + +2025-09-24 06:08:02,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:02,454 INFO Out dated connection ,size=0 + +2025-09-24 06:08:02,454 INFO Connection check task end + +2025-09-24 06:08:04,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:05,456 INFO Connection check task start + +2025-09-24 06:08:05,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:05,456 INFO Out dated connection ,size=0 + +2025-09-24 06:08:05,456 INFO Connection check task end + +2025-09-24 06:08:07,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:08,458 INFO Connection check task start + +2025-09-24 06:08:08,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:08,458 INFO Out dated connection ,size=0 + +2025-09-24 06:08:08,458 INFO Connection check task end + +2025-09-24 06:08:10,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:11,460 INFO Connection check task start + +2025-09-24 06:08:11,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:11,460 INFO Out dated connection ,size=0 + +2025-09-24 06:08:11,460 INFO Connection check task end + +2025-09-24 06:08:13,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:14,462 INFO Connection check task start + +2025-09-24 06:08:14,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:14,462 INFO Out dated connection ,size=0 + +2025-09-24 06:08:14,462 INFO Connection check task end + +2025-09-24 06:08:16,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:17,462 INFO Connection check task start + +2025-09-24 06:08:17,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:17,463 INFO Out dated connection ,size=0 + +2025-09-24 06:08:17,463 INFO Connection check task end + +2025-09-24 06:08:19,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:20,463 INFO Connection check task start + +2025-09-24 06:08:20,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:20,463 INFO Out dated connection ,size=0 + +2025-09-24 06:08:20,463 INFO Connection check task end + +2025-09-24 06:08:22,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:23,463 INFO Connection check task start + +2025-09-24 06:08:23,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:23,463 INFO Out dated connection ,size=0 + +2025-09-24 06:08:23,464 INFO Connection check task end + +2025-09-24 06:08:25,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:26,464 INFO Connection check task start + +2025-09-24 06:08:26,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:26,464 INFO Out dated connection ,size=0 + +2025-09-24 06:08:26,464 INFO Connection check task end + +2025-09-24 06:08:28,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:29,465 INFO Connection check task start + +2025-09-24 06:08:29,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:29,466 INFO Out dated connection ,size=0 + +2025-09-24 06:08:29,466 INFO Connection check task end + +2025-09-24 06:08:31,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:32,466 INFO Connection check task start + +2025-09-24 06:08:32,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:32,466 INFO Out dated connection ,size=0 + +2025-09-24 06:08:32,466 INFO Connection check task end + +2025-09-24 06:08:34,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:35,469 INFO Connection check task start + +2025-09-24 06:08:35,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:35,469 INFO Out dated connection ,size=0 + +2025-09-24 06:08:35,469 INFO Connection check task end + +2025-09-24 06:08:37,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:38,471 INFO Connection check task start + +2025-09-24 06:08:38,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:38,471 INFO Out dated connection ,size=0 + +2025-09-24 06:08:38,471 INFO Connection check task end + +2025-09-24 06:08:40,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:41,473 INFO Connection check task start + +2025-09-24 06:08:41,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:41,473 INFO Out dated connection ,size=0 + +2025-09-24 06:08:41,473 INFO Connection check task end + +2025-09-24 06:08:43,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:44,474 INFO Connection check task start + +2025-09-24 06:08:44,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:44,474 INFO Out dated connection ,size=0 + +2025-09-24 06:08:44,474 INFO Connection check task end + +2025-09-24 06:08:46,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:47,476 INFO Connection check task start + +2025-09-24 06:08:47,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:47,476 INFO Out dated connection ,size=0 + +2025-09-24 06:08:47,476 INFO Connection check task end + +2025-09-24 06:08:49,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:50,477 INFO Connection check task start + +2025-09-24 06:08:50,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:50,477 INFO Out dated connection ,size=0 + +2025-09-24 06:08:50,477 INFO Connection check task end + +2025-09-24 06:08:52,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:53,479 INFO Connection check task start + +2025-09-24 06:08:53,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:53,479 INFO Out dated connection ,size=0 + +2025-09-24 06:08:53,479 INFO Connection check task end + +2025-09-24 06:08:55,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:56,479 INFO Connection check task start + +2025-09-24 06:08:56,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:56,479 INFO Out dated connection ,size=0 + +2025-09-24 06:08:56,479 INFO Connection check task end + +2025-09-24 06:08:58,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:08:59,482 INFO Connection check task start + +2025-09-24 06:08:59,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:08:59,482 INFO Out dated connection ,size=0 + +2025-09-24 06:08:59,482 INFO Connection check task end + +2025-09-24 06:09:01,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:02,483 INFO Connection check task start + +2025-09-24 06:09:02,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:02,483 INFO Out dated connection ,size=0 + +2025-09-24 06:09:02,483 INFO Connection check task end + +2025-09-24 06:09:04,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:05,486 INFO Connection check task start + +2025-09-24 06:09:05,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:05,486 INFO Out dated connection ,size=0 + +2025-09-24 06:09:05,486 INFO Connection check task end + +2025-09-24 06:09:07,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:08,486 INFO Connection check task start + +2025-09-24 06:09:08,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:08,486 INFO Out dated connection ,size=0 + +2025-09-24 06:09:08,486 INFO Connection check task end + +2025-09-24 06:09:10,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:11,487 INFO Connection check task start + +2025-09-24 06:09:11,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:11,487 INFO Out dated connection ,size=0 + +2025-09-24 06:09:11,487 INFO Connection check task end + +2025-09-24 06:09:13,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:14,487 INFO Connection check task start + +2025-09-24 06:09:14,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:14,488 INFO Out dated connection ,size=0 + +2025-09-24 06:09:14,488 INFO Connection check task end + +2025-09-24 06:09:16,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:17,488 INFO Connection check task start + +2025-09-24 06:09:17,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:17,488 INFO Out dated connection ,size=0 + +2025-09-24 06:09:17,488 INFO Connection check task end + +2025-09-24 06:09:19,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:20,488 INFO Connection check task start + +2025-09-24 06:09:20,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:20,489 INFO Out dated connection ,size=0 + +2025-09-24 06:09:20,489 INFO Connection check task end + +2025-09-24 06:09:22,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:23,490 INFO Connection check task start + +2025-09-24 06:09:23,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:23,490 INFO Out dated connection ,size=0 + +2025-09-24 06:09:23,490 INFO Connection check task end + +2025-09-24 06:09:25,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:26,491 INFO Connection check task start + +2025-09-24 06:09:26,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:26,491 INFO Out dated connection ,size=0 + +2025-09-24 06:09:26,491 INFO Connection check task end + +2025-09-24 06:09:28,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:29,492 INFO Connection check task start + +2025-09-24 06:09:29,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:29,492 INFO Out dated connection ,size=0 + +2025-09-24 06:09:29,492 INFO Connection check task end + +2025-09-24 06:09:31,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:32,492 INFO Connection check task start + +2025-09-24 06:09:32,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:32,492 INFO Out dated connection ,size=0 + +2025-09-24 06:09:32,492 INFO Connection check task end + +2025-09-24 06:09:34,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:35,493 INFO Connection check task start + +2025-09-24 06:09:35,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:35,493 INFO Out dated connection ,size=0 + +2025-09-24 06:09:35,493 INFO Connection check task end + +2025-09-24 06:09:37,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:38,494 INFO Connection check task start + +2025-09-24 06:09:38,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:38,494 INFO Out dated connection ,size=0 + +2025-09-24 06:09:38,494 INFO Connection check task end + +2025-09-24 06:09:40,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:41,494 INFO Connection check task start + +2025-09-24 06:09:41,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:41,495 INFO Out dated connection ,size=0 + +2025-09-24 06:09:41,495 INFO Connection check task end + +2025-09-24 06:09:43,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:44,496 INFO Connection check task start + +2025-09-24 06:09:44,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:44,497 INFO Out dated connection ,size=0 + +2025-09-24 06:09:44,497 INFO Connection check task end + +2025-09-24 06:09:46,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:47,497 INFO Connection check task start + +2025-09-24 06:09:47,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:47,497 INFO Out dated connection ,size=0 + +2025-09-24 06:09:47,497 INFO Connection check task end + +2025-09-24 06:09:49,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:50,498 INFO Connection check task start + +2025-09-24 06:09:50,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:50,498 INFO Out dated connection ,size=0 + +2025-09-24 06:09:50,498 INFO Connection check task end + +2025-09-24 06:09:52,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:53,498 INFO Connection check task start + +2025-09-24 06:09:53,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:53,498 INFO Out dated connection ,size=0 + +2025-09-24 06:09:53,498 INFO Connection check task end + +2025-09-24 06:09:55,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:56,500 INFO Connection check task start + +2025-09-24 06:09:56,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:56,500 INFO Out dated connection ,size=0 + +2025-09-24 06:09:56,500 INFO Connection check task end + +2025-09-24 06:09:58,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:09:59,500 INFO Connection check task start + +2025-09-24 06:09:59,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:09:59,500 INFO Out dated connection ,size=0 + +2025-09-24 06:09:59,501 INFO Connection check task end + +2025-09-24 06:10:01,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:02,503 INFO Connection check task start + +2025-09-24 06:10:02,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:02,503 INFO Out dated connection ,size=0 + +2025-09-24 06:10:02,503 INFO Connection check task end + +2025-09-24 06:10:04,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:05,503 INFO Connection check task start + +2025-09-24 06:10:05,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:05,503 INFO Out dated connection ,size=0 + +2025-09-24 06:10:05,504 INFO Connection check task end + +2025-09-24 06:10:07,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:08,504 INFO Connection check task start + +2025-09-24 06:10:08,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:08,505 INFO Out dated connection ,size=0 + +2025-09-24 06:10:08,505 INFO Connection check task end + +2025-09-24 06:10:10,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:11,505 INFO Connection check task start + +2025-09-24 06:10:11,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:11,505 INFO Out dated connection ,size=0 + +2025-09-24 06:10:11,505 INFO Connection check task end + +2025-09-24 06:10:13,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:14,507 INFO Connection check task start + +2025-09-24 06:10:14,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:14,507 INFO Out dated connection ,size=0 + +2025-09-24 06:10:14,507 INFO Connection check task end + +2025-09-24 06:10:16,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:17,508 INFO Connection check task start + +2025-09-24 06:10:17,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:17,509 INFO Out dated connection ,size=0 + +2025-09-24 06:10:17,509 INFO Connection check task end + +2025-09-24 06:10:19,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:20,510 INFO Connection check task start + +2025-09-24 06:10:20,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:20,511 INFO Out dated connection ,size=0 + +2025-09-24 06:10:20,511 INFO Connection check task end + +2025-09-24 06:10:22,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:23,512 INFO Connection check task start + +2025-09-24 06:10:23,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:23,512 INFO Out dated connection ,size=0 + +2025-09-24 06:10:23,512 INFO Connection check task end + +2025-09-24 06:10:25,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:26,514 INFO Connection check task start + +2025-09-24 06:10:26,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:26,514 INFO Out dated connection ,size=0 + +2025-09-24 06:10:26,514 INFO Connection check task end + +2025-09-24 06:10:28,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:29,514 INFO Connection check task start + +2025-09-24 06:10:29,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:29,515 INFO Out dated connection ,size=0 + +2025-09-24 06:10:29,515 INFO Connection check task end + +2025-09-24 06:10:31,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:32,515 INFO Connection check task start + +2025-09-24 06:10:32,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:32,515 INFO Out dated connection ,size=0 + +2025-09-24 06:10:32,515 INFO Connection check task end + +2025-09-24 06:10:34,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:35,517 INFO Connection check task start + +2025-09-24 06:10:35,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:35,517 INFO Out dated connection ,size=0 + +2025-09-24 06:10:35,517 INFO Connection check task end + +2025-09-24 06:10:37,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:38,519 INFO Connection check task start + +2025-09-24 06:10:38,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:38,520 INFO Out dated connection ,size=0 + +2025-09-24 06:10:38,520 INFO Connection check task end + +2025-09-24 06:10:40,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:41,522 INFO Connection check task start + +2025-09-24 06:10:41,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:41,522 INFO Out dated connection ,size=0 + +2025-09-24 06:10:41,522 INFO Connection check task end + +2025-09-24 06:10:43,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:44,523 INFO Connection check task start + +2025-09-24 06:10:44,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:44,523 INFO Out dated connection ,size=0 + +2025-09-24 06:10:44,523 INFO Connection check task end + +2025-09-24 06:10:46,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:47,525 INFO Connection check task start + +2025-09-24 06:10:47,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:47,525 INFO Out dated connection ,size=0 + +2025-09-24 06:10:47,525 INFO Connection check task end + +2025-09-24 06:10:49,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:50,525 INFO Connection check task start + +2025-09-24 06:10:50,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:50,525 INFO Out dated connection ,size=0 + +2025-09-24 06:10:50,526 INFO Connection check task end + +2025-09-24 06:10:52,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:53,527 INFO Connection check task start + +2025-09-24 06:10:53,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:53,527 INFO Out dated connection ,size=0 + +2025-09-24 06:10:53,528 INFO Connection check task end + +2025-09-24 06:10:55,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:56,528 INFO Connection check task start + +2025-09-24 06:10:56,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:56,529 INFO Out dated connection ,size=0 + +2025-09-24 06:10:56,529 INFO Connection check task end + +2025-09-24 06:10:58,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:10:59,530 INFO Connection check task start + +2025-09-24 06:10:59,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:10:59,530 INFO Out dated connection ,size=0 + +2025-09-24 06:10:59,530 INFO Connection check task end + +2025-09-24 06:11:01,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:02,530 INFO Connection check task start + +2025-09-24 06:11:02,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:02,530 INFO Out dated connection ,size=0 + +2025-09-24 06:11:02,530 INFO Connection check task end + +2025-09-24 06:11:04,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:05,530 INFO Connection check task start + +2025-09-24 06:11:05,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:05,531 INFO Out dated connection ,size=0 + +2025-09-24 06:11:05,531 INFO Connection check task end + +2025-09-24 06:11:07,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:08,531 INFO Connection check task start + +2025-09-24 06:11:08,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:08,531 INFO Out dated connection ,size=0 + +2025-09-24 06:11:08,531 INFO Connection check task end + +2025-09-24 06:11:10,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:11,531 INFO Connection check task start + +2025-09-24 06:11:11,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:11,531 INFO Out dated connection ,size=0 + +2025-09-24 06:11:11,531 INFO Connection check task end + +2025-09-24 06:11:13,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:14,533 INFO Connection check task start + +2025-09-24 06:11:14,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:14,534 INFO Out dated connection ,size=0 + +2025-09-24 06:11:14,534 INFO Connection check task end + +2025-09-24 06:11:16,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:17,536 INFO Connection check task start + +2025-09-24 06:11:17,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:17,536 INFO Out dated connection ,size=0 + +2025-09-24 06:11:17,536 INFO Connection check task end + +2025-09-24 06:11:19,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:20,537 INFO Connection check task start + +2025-09-24 06:11:20,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:20,537 INFO Out dated connection ,size=0 + +2025-09-24 06:11:20,537 INFO Connection check task end + +2025-09-24 06:11:22,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:23,539 INFO Connection check task start + +2025-09-24 06:11:23,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:23,539 INFO Out dated connection ,size=0 + +2025-09-24 06:11:23,539 INFO Connection check task end + +2025-09-24 06:11:25,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:26,539 INFO Connection check task start + +2025-09-24 06:11:26,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:26,540 INFO Out dated connection ,size=0 + +2025-09-24 06:11:26,540 INFO Connection check task end + +2025-09-24 06:11:28,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:29,716 INFO Connection check task start + +2025-09-24 06:11:29,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:29,716 INFO Out dated connection ,size=0 + +2025-09-24 06:11:29,716 INFO Connection check task end + +2025-09-24 06:11:31,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:32,716 INFO Connection check task start + +2025-09-24 06:11:32,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:32,717 INFO Out dated connection ,size=0 + +2025-09-24 06:11:32,717 INFO Connection check task end + +2025-09-24 06:11:34,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:35,719 INFO Connection check task start + +2025-09-24 06:11:35,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:35,719 INFO Out dated connection ,size=0 + +2025-09-24 06:11:35,719 INFO Connection check task end + +2025-09-24 06:11:37,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:38,719 INFO Connection check task start + +2025-09-24 06:11:38,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:38,719 INFO Out dated connection ,size=0 + +2025-09-24 06:11:38,720 INFO Connection check task end + +2025-09-24 06:11:40,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:41,721 INFO Connection check task start + +2025-09-24 06:11:41,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:41,722 INFO Out dated connection ,size=0 + +2025-09-24 06:11:41,722 INFO Connection check task end + +2025-09-24 06:11:43,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:44,722 INFO Connection check task start + +2025-09-24 06:11:44,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:44,722 INFO Out dated connection ,size=0 + +2025-09-24 06:11:44,722 INFO Connection check task end + +2025-09-24 06:11:46,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:47,722 INFO Connection check task start + +2025-09-24 06:11:47,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:47,723 INFO Out dated connection ,size=0 + +2025-09-24 06:11:47,723 INFO Connection check task end + +2025-09-24 06:11:49,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:50,725 INFO Connection check task start + +2025-09-24 06:11:50,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:50,725 INFO Out dated connection ,size=0 + +2025-09-24 06:11:50,725 INFO Connection check task end + +2025-09-24 06:11:52,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:53,726 INFO Connection check task start + +2025-09-24 06:11:53,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:53,726 INFO Out dated connection ,size=0 + +2025-09-24 06:11:53,726 INFO Connection check task end + +2025-09-24 06:11:55,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:56,728 INFO Connection check task start + +2025-09-24 06:11:56,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:56,728 INFO Out dated connection ,size=0 + +2025-09-24 06:11:56,728 INFO Connection check task end + +2025-09-24 06:11:58,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:11:59,729 INFO Connection check task start + +2025-09-24 06:11:59,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:11:59,729 INFO Out dated connection ,size=0 + +2025-09-24 06:11:59,729 INFO Connection check task end + +2025-09-24 06:12:01,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:02,729 INFO Connection check task start + +2025-09-24 06:12:02,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:02,730 INFO Out dated connection ,size=0 + +2025-09-24 06:12:02,730 INFO Connection check task end + +2025-09-24 06:12:04,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:05,730 INFO Connection check task start + +2025-09-24 06:12:05,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:05,730 INFO Out dated connection ,size=0 + +2025-09-24 06:12:05,730 INFO Connection check task end + +2025-09-24 06:12:07,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:08,731 INFO Connection check task start + +2025-09-24 06:12:08,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:08,731 INFO Out dated connection ,size=0 + +2025-09-24 06:12:08,731 INFO Connection check task end + +2025-09-24 06:12:10,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:11,732 INFO Connection check task start + +2025-09-24 06:12:11,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:11,732 INFO Out dated connection ,size=0 + +2025-09-24 06:12:11,732 INFO Connection check task end + +2025-09-24 06:12:13,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:14,733 INFO Connection check task start + +2025-09-24 06:12:14,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:14,733 INFO Out dated connection ,size=0 + +2025-09-24 06:12:14,733 INFO Connection check task end + +2025-09-24 06:12:16,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:17,735 INFO Connection check task start + +2025-09-24 06:12:17,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:17,736 INFO Out dated connection ,size=0 + +2025-09-24 06:12:17,736 INFO Connection check task end + +2025-09-24 06:12:19,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:20,736 INFO Connection check task start + +2025-09-24 06:12:20,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:20,736 INFO Out dated connection ,size=0 + +2025-09-24 06:12:20,736 INFO Connection check task end + +2025-09-24 06:12:22,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:23,736 INFO Connection check task start + +2025-09-24 06:12:23,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:23,737 INFO Out dated connection ,size=0 + +2025-09-24 06:12:23,737 INFO Connection check task end + +2025-09-24 06:12:25,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:26,739 INFO Connection check task start + +2025-09-24 06:12:26,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:26,739 INFO Out dated connection ,size=0 + +2025-09-24 06:12:26,739 INFO Connection check task end + +2025-09-24 06:12:28,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:29,739 INFO Connection check task start + +2025-09-24 06:12:29,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:29,739 INFO Out dated connection ,size=0 + +2025-09-24 06:12:29,739 INFO Connection check task end + +2025-09-24 06:12:31,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:32,741 INFO Connection check task start + +2025-09-24 06:12:32,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:32,742 INFO Out dated connection ,size=0 + +2025-09-24 06:12:32,742 INFO Connection check task end + +2025-09-24 06:12:34,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:35,742 INFO Connection check task start + +2025-09-24 06:12:35,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:35,742 INFO Out dated connection ,size=0 + +2025-09-24 06:12:35,742 INFO Connection check task end + +2025-09-24 06:12:37,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:38,742 INFO Connection check task start + +2025-09-24 06:12:38,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:38,743 INFO Out dated connection ,size=0 + +2025-09-24 06:12:38,743 INFO Connection check task end + +2025-09-24 06:12:40,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:41,743 INFO Connection check task start + +2025-09-24 06:12:41,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:41,743 INFO Out dated connection ,size=0 + +2025-09-24 06:12:41,743 INFO Connection check task end + +2025-09-24 06:12:43,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:44,744 INFO Connection check task start + +2025-09-24 06:12:44,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:44,744 INFO Out dated connection ,size=0 + +2025-09-24 06:12:44,744 INFO Connection check task end + +2025-09-24 06:12:46,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:47,746 INFO Connection check task start + +2025-09-24 06:12:47,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:47,746 INFO Out dated connection ,size=0 + +2025-09-24 06:12:47,746 INFO Connection check task end + +2025-09-24 06:12:49,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:50,747 INFO Connection check task start + +2025-09-24 06:12:50,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:50,747 INFO Out dated connection ,size=0 + +2025-09-24 06:12:50,747 INFO Connection check task end + +2025-09-24 06:12:52,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:53,747 INFO Connection check task start + +2025-09-24 06:12:53,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:53,747 INFO Out dated connection ,size=0 + +2025-09-24 06:12:53,748 INFO Connection check task end + +2025-09-24 06:12:55,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:56,749 INFO Connection check task start + +2025-09-24 06:12:56,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:56,749 INFO Out dated connection ,size=0 + +2025-09-24 06:12:56,749 INFO Connection check task end + +2025-09-24 06:12:58,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:12:59,751 INFO Connection check task start + +2025-09-24 06:12:59,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:12:59,752 INFO Out dated connection ,size=0 + +2025-09-24 06:12:59,752 INFO Connection check task end + +2025-09-24 06:13:01,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:02,752 INFO Connection check task start + +2025-09-24 06:13:02,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:02,752 INFO Out dated connection ,size=0 + +2025-09-24 06:13:02,753 INFO Connection check task end + +2025-09-24 06:13:04,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:05,753 INFO Connection check task start + +2025-09-24 06:13:05,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:05,753 INFO Out dated connection ,size=0 + +2025-09-24 06:13:05,753 INFO Connection check task end + +2025-09-24 06:13:07,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:08,754 INFO Connection check task start + +2025-09-24 06:13:08,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:08,754 INFO Out dated connection ,size=0 + +2025-09-24 06:13:08,754 INFO Connection check task end + +2025-09-24 06:13:10,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:11,754 INFO Connection check task start + +2025-09-24 06:13:11,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:11,754 INFO Out dated connection ,size=0 + +2025-09-24 06:13:11,754 INFO Connection check task end + +2025-09-24 06:13:13,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:14,757 INFO Connection check task start + +2025-09-24 06:13:14,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:14,757 INFO Out dated connection ,size=0 + +2025-09-24 06:13:14,757 INFO Connection check task end + +2025-09-24 06:13:16,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:17,757 INFO Connection check task start + +2025-09-24 06:13:17,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:17,757 INFO Out dated connection ,size=0 + +2025-09-24 06:13:17,757 INFO Connection check task end + +2025-09-24 06:13:19,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:20,757 INFO Connection check task start + +2025-09-24 06:13:20,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:20,758 INFO Out dated connection ,size=0 + +2025-09-24 06:13:20,758 INFO Connection check task end + +2025-09-24 06:13:22,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:23,758 INFO Connection check task start + +2025-09-24 06:13:23,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:23,758 INFO Out dated connection ,size=0 + +2025-09-24 06:13:23,758 INFO Connection check task end + +2025-09-24 06:13:25,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:26,759 INFO Connection check task start + +2025-09-24 06:13:26,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:26,759 INFO Out dated connection ,size=0 + +2025-09-24 06:13:26,759 INFO Connection check task end + +2025-09-24 06:13:28,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:29,761 INFO Connection check task start + +2025-09-24 06:13:29,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:29,761 INFO Out dated connection ,size=0 + +2025-09-24 06:13:29,761 INFO Connection check task end + +2025-09-24 06:13:31,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:32,761 INFO Connection check task start + +2025-09-24 06:13:32,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:32,761 INFO Out dated connection ,size=0 + +2025-09-24 06:13:32,761 INFO Connection check task end + +2025-09-24 06:13:34,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:35,762 INFO Connection check task start + +2025-09-24 06:13:35,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:35,762 INFO Out dated connection ,size=0 + +2025-09-24 06:13:35,762 INFO Connection check task end + +2025-09-24 06:13:37,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:38,764 INFO Connection check task start + +2025-09-24 06:13:38,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:38,764 INFO Out dated connection ,size=0 + +2025-09-24 06:13:38,764 INFO Connection check task end + +2025-09-24 06:13:40,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:41,765 INFO Connection check task start + +2025-09-24 06:13:41,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:41,765 INFO Out dated connection ,size=0 + +2025-09-24 06:13:41,765 INFO Connection check task end + +2025-09-24 06:13:43,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:44,766 INFO Connection check task start + +2025-09-24 06:13:44,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:44,766 INFO Out dated connection ,size=0 + +2025-09-24 06:13:44,766 INFO Connection check task end + +2025-09-24 06:13:46,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:47,767 INFO Connection check task start + +2025-09-24 06:13:47,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:47,767 INFO Out dated connection ,size=0 + +2025-09-24 06:13:47,767 INFO Connection check task end + +2025-09-24 06:13:49,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:50,767 INFO Connection check task start + +2025-09-24 06:13:50,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:50,767 INFO Out dated connection ,size=0 + +2025-09-24 06:13:50,767 INFO Connection check task end + +2025-09-24 06:13:52,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:53,768 INFO Connection check task start + +2025-09-24 06:13:53,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:53,768 INFO Out dated connection ,size=0 + +2025-09-24 06:13:53,768 INFO Connection check task end + +2025-09-24 06:13:55,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:56,768 INFO Connection check task start + +2025-09-24 06:13:56,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:56,769 INFO Out dated connection ,size=0 + +2025-09-24 06:13:56,769 INFO Connection check task end + +2025-09-24 06:13:58,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:13:59,769 INFO Connection check task start + +2025-09-24 06:13:59,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:13:59,769 INFO Out dated connection ,size=0 + +2025-09-24 06:13:59,769 INFO Connection check task end + +2025-09-24 06:14:01,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:02,771 INFO Connection check task start + +2025-09-24 06:14:02,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:02,771 INFO Out dated connection ,size=0 + +2025-09-24 06:14:02,772 INFO Connection check task end + +2025-09-24 06:14:04,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:05,774 INFO Connection check task start + +2025-09-24 06:14:05,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:05,774 INFO Out dated connection ,size=0 + +2025-09-24 06:14:05,774 INFO Connection check task end + +2025-09-24 06:14:07,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:08,775 INFO Connection check task start + +2025-09-24 06:14:08,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:08,775 INFO Out dated connection ,size=0 + +2025-09-24 06:14:08,775 INFO Connection check task end + +2025-09-24 06:14:10,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:11,778 INFO Connection check task start + +2025-09-24 06:14:11,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:11,778 INFO Out dated connection ,size=0 + +2025-09-24 06:14:11,778 INFO Connection check task end + +2025-09-24 06:14:13,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:14,778 INFO Connection check task start + +2025-09-24 06:14:14,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:14,778 INFO Out dated connection ,size=0 + +2025-09-24 06:14:14,778 INFO Connection check task end + +2025-09-24 06:14:16,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:17,779 INFO Connection check task start + +2025-09-24 06:14:17,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:17,779 INFO Out dated connection ,size=0 + +2025-09-24 06:14:17,779 INFO Connection check task end + +2025-09-24 06:14:19,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:20,779 INFO Connection check task start + +2025-09-24 06:14:20,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:20,780 INFO Out dated connection ,size=0 + +2025-09-24 06:14:20,780 INFO Connection check task end + +2025-09-24 06:14:22,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:23,781 INFO Connection check task start + +2025-09-24 06:14:23,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:23,781 INFO Out dated connection ,size=0 + +2025-09-24 06:14:23,781 INFO Connection check task end + +2025-09-24 06:14:25,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:26,782 INFO Connection check task start + +2025-09-24 06:14:26,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:26,782 INFO Out dated connection ,size=0 + +2025-09-24 06:14:26,782 INFO Connection check task end + +2025-09-24 06:14:28,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:29,784 INFO Connection check task start + +2025-09-24 06:14:29,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:29,784 INFO Out dated connection ,size=0 + +2025-09-24 06:14:29,784 INFO Connection check task end + +2025-09-24 06:14:31,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:32,784 INFO Connection check task start + +2025-09-24 06:14:32,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:32,785 INFO Out dated connection ,size=0 + +2025-09-24 06:14:32,785 INFO Connection check task end + +2025-09-24 06:14:34,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:35,786 INFO Connection check task start + +2025-09-24 06:14:35,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:35,786 INFO Out dated connection ,size=0 + +2025-09-24 06:14:35,786 INFO Connection check task end + +2025-09-24 06:14:37,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:38,786 INFO Connection check task start + +2025-09-24 06:14:38,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:38,787 INFO Out dated connection ,size=0 + +2025-09-24 06:14:38,787 INFO Connection check task end + +2025-09-24 06:14:40,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:41,787 INFO Connection check task start + +2025-09-24 06:14:41,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:41,787 INFO Out dated connection ,size=0 + +2025-09-24 06:14:41,787 INFO Connection check task end + +2025-09-24 06:14:43,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:44,789 INFO Connection check task start + +2025-09-24 06:14:44,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:44,789 INFO Out dated connection ,size=0 + +2025-09-24 06:14:44,789 INFO Connection check task end + +2025-09-24 06:14:46,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:47,791 INFO Connection check task start + +2025-09-24 06:14:47,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:47,792 INFO Out dated connection ,size=0 + +2025-09-24 06:14:47,792 INFO Connection check task end + +2025-09-24 06:14:49,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:50,792 INFO Connection check task start + +2025-09-24 06:14:50,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:50,793 INFO Out dated connection ,size=0 + +2025-09-24 06:14:50,793 INFO Connection check task end + +2025-09-24 06:14:52,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:53,793 INFO Connection check task start + +2025-09-24 06:14:53,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:53,793 INFO Out dated connection ,size=0 + +2025-09-24 06:14:53,793 INFO Connection check task end + +2025-09-24 06:14:55,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:56,795 INFO Connection check task start + +2025-09-24 06:14:56,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:56,795 INFO Out dated connection ,size=0 + +2025-09-24 06:14:56,795 INFO Connection check task end + +2025-09-24 06:14:58,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:14:59,798 INFO Connection check task start + +2025-09-24 06:14:59,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:14:59,798 INFO Out dated connection ,size=0 + +2025-09-24 06:14:59,798 INFO Connection check task end + +2025-09-24 06:15:01,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:02,800 INFO Connection check task start + +2025-09-24 06:15:02,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:02,800 INFO Out dated connection ,size=0 + +2025-09-24 06:15:02,800 INFO Connection check task end + +2025-09-24 06:15:04,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:05,800 INFO Connection check task start + +2025-09-24 06:15:05,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:05,800 INFO Out dated connection ,size=0 + +2025-09-24 06:15:05,800 INFO Connection check task end + +2025-09-24 06:15:07,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:08,802 INFO Connection check task start + +2025-09-24 06:15:08,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:08,802 INFO Out dated connection ,size=0 + +2025-09-24 06:15:08,802 INFO Connection check task end + +2025-09-24 06:15:10,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:11,802 INFO Connection check task start + +2025-09-24 06:15:11,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:11,802 INFO Out dated connection ,size=0 + +2025-09-24 06:15:11,802 INFO Connection check task end + +2025-09-24 06:15:13,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:14,803 INFO Connection check task start + +2025-09-24 06:15:14,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:14,803 INFO Out dated connection ,size=0 + +2025-09-24 06:15:14,803 INFO Connection check task end + +2025-09-24 06:15:16,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:17,804 INFO Connection check task start + +2025-09-24 06:15:17,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:17,804 INFO Out dated connection ,size=0 + +2025-09-24 06:15:17,804 INFO Connection check task end + +2025-09-24 06:15:19,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:20,804 INFO Connection check task start + +2025-09-24 06:15:20,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:20,804 INFO Out dated connection ,size=0 + +2025-09-24 06:15:20,804 INFO Connection check task end + +2025-09-24 06:15:22,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:23,806 INFO Connection check task start + +2025-09-24 06:15:23,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:23,806 INFO Out dated connection ,size=0 + +2025-09-24 06:15:23,806 INFO Connection check task end + +2025-09-24 06:15:25,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:26,807 INFO Connection check task start + +2025-09-24 06:15:26,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:26,807 INFO Out dated connection ,size=0 + +2025-09-24 06:15:26,807 INFO Connection check task end + +2025-09-24 06:15:28,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:29,807 INFO Connection check task start + +2025-09-24 06:15:29,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:29,808 INFO Out dated connection ,size=0 + +2025-09-24 06:15:29,808 INFO Connection check task end + +2025-09-24 06:15:31,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:32,810 INFO Connection check task start + +2025-09-24 06:15:32,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:32,810 INFO Out dated connection ,size=0 + +2025-09-24 06:15:32,810 INFO Connection check task end + +2025-09-24 06:15:34,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:35,812 INFO Connection check task start + +2025-09-24 06:15:35,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:35,812 INFO Out dated connection ,size=0 + +2025-09-24 06:15:35,812 INFO Connection check task end + +2025-09-24 06:15:37,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:38,813 INFO Connection check task start + +2025-09-24 06:15:38,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:38,813 INFO Out dated connection ,size=0 + +2025-09-24 06:15:38,813 INFO Connection check task end + +2025-09-24 06:15:40,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:41,814 INFO Connection check task start + +2025-09-24 06:15:41,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:41,814 INFO Out dated connection ,size=0 + +2025-09-24 06:15:41,814 INFO Connection check task end + +2025-09-24 06:15:43,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:44,815 INFO Connection check task start + +2025-09-24 06:15:44,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:44,815 INFO Out dated connection ,size=0 + +2025-09-24 06:15:44,815 INFO Connection check task end + +2025-09-24 06:15:46,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:47,815 INFO Connection check task start + +2025-09-24 06:15:47,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:47,815 INFO Out dated connection ,size=0 + +2025-09-24 06:15:47,815 INFO Connection check task end + +2025-09-24 06:15:49,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:50,817 INFO Connection check task start + +2025-09-24 06:15:50,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:50,817 INFO Out dated connection ,size=0 + +2025-09-24 06:15:50,817 INFO Connection check task end + +2025-09-24 06:15:52,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:53,818 INFO Connection check task start + +2025-09-24 06:15:53,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:53,818 INFO Out dated connection ,size=0 + +2025-09-24 06:15:53,818 INFO Connection check task end + +2025-09-24 06:15:55,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:56,820 INFO Connection check task start + +2025-09-24 06:15:56,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:56,821 INFO Out dated connection ,size=0 + +2025-09-24 06:15:56,821 INFO Connection check task end + +2025-09-24 06:15:58,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:15:59,821 INFO Connection check task start + +2025-09-24 06:15:59,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:15:59,821 INFO Out dated connection ,size=0 + +2025-09-24 06:15:59,821 INFO Connection check task end + +2025-09-24 06:16:01,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:02,822 INFO Connection check task start + +2025-09-24 06:16:02,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:02,822 INFO Out dated connection ,size=0 + +2025-09-24 06:16:02,822 INFO Connection check task end + +2025-09-24 06:16:04,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:05,822 INFO Connection check task start + +2025-09-24 06:16:05,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:05,822 INFO Out dated connection ,size=0 + +2025-09-24 06:16:05,822 INFO Connection check task end + +2025-09-24 06:16:07,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:08,822 INFO Connection check task start + +2025-09-24 06:16:08,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:08,823 INFO Out dated connection ,size=0 + +2025-09-24 06:16:08,823 INFO Connection check task end + +2025-09-24 06:16:10,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:11,825 INFO Connection check task start + +2025-09-24 06:16:11,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:11,825 INFO Out dated connection ,size=0 + +2025-09-24 06:16:11,825 INFO Connection check task end + +2025-09-24 06:16:13,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:14,825 INFO Connection check task start + +2025-09-24 06:16:14,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:14,825 INFO Out dated connection ,size=0 + +2025-09-24 06:16:14,825 INFO Connection check task end + +2025-09-24 06:16:16,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:17,826 INFO Connection check task start + +2025-09-24 06:16:17,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:17,826 INFO Out dated connection ,size=0 + +2025-09-24 06:16:17,826 INFO Connection check task end + +2025-09-24 06:16:19,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:20,828 INFO Connection check task start + +2025-09-24 06:16:20,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:20,828 INFO Out dated connection ,size=0 + +2025-09-24 06:16:20,828 INFO Connection check task end + +2025-09-24 06:16:22,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:23,828 INFO Connection check task start + +2025-09-24 06:16:23,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:23,828 INFO Out dated connection ,size=0 + +2025-09-24 06:16:23,828 INFO Connection check task end + +2025-09-24 06:16:25,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:26,829 INFO Connection check task start + +2025-09-24 06:16:26,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:26,829 INFO Out dated connection ,size=0 + +2025-09-24 06:16:26,829 INFO Connection check task end + +2025-09-24 06:16:28,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:29,830 INFO Connection check task start + +2025-09-24 06:16:29,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:29,830 INFO Out dated connection ,size=0 + +2025-09-24 06:16:29,830 INFO Connection check task end + +2025-09-24 06:16:31,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:32,830 INFO Connection check task start + +2025-09-24 06:16:32,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:32,830 INFO Out dated connection ,size=0 + +2025-09-24 06:16:32,830 INFO Connection check task end + +2025-09-24 06:16:34,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:35,831 INFO Connection check task start + +2025-09-24 06:16:35,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:35,832 INFO Out dated connection ,size=0 + +2025-09-24 06:16:35,832 INFO Connection check task end + +2025-09-24 06:16:37,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:38,832 INFO Connection check task start + +2025-09-24 06:16:38,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:38,832 INFO Out dated connection ,size=0 + +2025-09-24 06:16:38,832 INFO Connection check task end + +2025-09-24 06:16:40,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:41,834 INFO Connection check task start + +2025-09-24 06:16:41,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:41,834 INFO Out dated connection ,size=0 + +2025-09-24 06:16:41,834 INFO Connection check task end + +2025-09-24 06:16:43,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:44,835 INFO Connection check task start + +2025-09-24 06:16:44,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:44,835 INFO Out dated connection ,size=0 + +2025-09-24 06:16:44,835 INFO Connection check task end + +2025-09-24 06:16:46,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:47,835 INFO Connection check task start + +2025-09-24 06:16:47,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:47,835 INFO Out dated connection ,size=0 + +2025-09-24 06:16:47,835 INFO Connection check task end + +2025-09-24 06:16:49,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:50,836 INFO Connection check task start + +2025-09-24 06:16:50,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:50,836 INFO Out dated connection ,size=0 + +2025-09-24 06:16:50,836 INFO Connection check task end + +2025-09-24 06:16:52,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:53,838 INFO Connection check task start + +2025-09-24 06:16:53,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:53,838 INFO Out dated connection ,size=0 + +2025-09-24 06:16:53,838 INFO Connection check task end + +2025-09-24 06:16:55,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:56,838 INFO Connection check task start + +2025-09-24 06:16:56,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:56,838 INFO Out dated connection ,size=0 + +2025-09-24 06:16:56,839 INFO Connection check task end + +2025-09-24 06:16:58,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:16:59,839 INFO Connection check task start + +2025-09-24 06:16:59,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:16:59,839 INFO Out dated connection ,size=0 + +2025-09-24 06:16:59,839 INFO Connection check task end + +2025-09-24 06:17:01,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:02,840 INFO Connection check task start + +2025-09-24 06:17:02,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:02,841 INFO Out dated connection ,size=0 + +2025-09-24 06:17:02,841 INFO Connection check task end + +2025-09-24 06:17:04,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:05,843 INFO Connection check task start + +2025-09-24 06:17:05,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:05,843 INFO Out dated connection ,size=0 + +2025-09-24 06:17:05,843 INFO Connection check task end + +2025-09-24 06:17:07,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:08,845 INFO Connection check task start + +2025-09-24 06:17:08,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:08,845 INFO Out dated connection ,size=0 + +2025-09-24 06:17:08,845 INFO Connection check task end + +2025-09-24 06:17:10,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:11,846 INFO Connection check task start + +2025-09-24 06:17:11,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:11,846 INFO Out dated connection ,size=0 + +2025-09-24 06:17:11,846 INFO Connection check task end + +2025-09-24 06:17:13,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:14,848 INFO Connection check task start + +2025-09-24 06:17:14,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:14,848 INFO Out dated connection ,size=0 + +2025-09-24 06:17:14,848 INFO Connection check task end + +2025-09-24 06:17:16,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:17,852 INFO Connection check task start + +2025-09-24 06:17:17,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:17,852 INFO Out dated connection ,size=0 + +2025-09-24 06:17:17,852 INFO Connection check task end + +2025-09-24 06:17:19,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:20,852 INFO Connection check task start + +2025-09-24 06:17:20,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:20,852 INFO Out dated connection ,size=0 + +2025-09-24 06:17:20,852 INFO Connection check task end + +2025-09-24 06:17:22,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:23,854 INFO Connection check task start + +2025-09-24 06:17:23,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:23,855 INFO Out dated connection ,size=0 + +2025-09-24 06:17:23,855 INFO Connection check task end + +2025-09-24 06:17:25,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:26,856 INFO Connection check task start + +2025-09-24 06:17:26,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:26,857 INFO Out dated connection ,size=0 + +2025-09-24 06:17:26,857 INFO Connection check task end + +2025-09-24 06:17:28,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:29,857 INFO Connection check task start + +2025-09-24 06:17:29,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:29,857 INFO Out dated connection ,size=0 + +2025-09-24 06:17:29,857 INFO Connection check task end + +2025-09-24 06:17:31,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:32,859 INFO Connection check task start + +2025-09-24 06:17:32,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:32,859 INFO Out dated connection ,size=0 + +2025-09-24 06:17:32,859 INFO Connection check task end + +2025-09-24 06:17:34,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:35,860 INFO Connection check task start + +2025-09-24 06:17:35,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:35,860 INFO Out dated connection ,size=0 + +2025-09-24 06:17:35,860 INFO Connection check task end + +2025-09-24 06:17:38,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:38,862 INFO Connection check task start + +2025-09-24 06:17:38,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:38,863 INFO Out dated connection ,size=0 + +2025-09-24 06:17:38,863 INFO Connection check task end + +2025-09-24 06:17:41,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:41,864 INFO Connection check task start + +2025-09-24 06:17:41,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:41,864 INFO Out dated connection ,size=0 + +2025-09-24 06:17:41,864 INFO Connection check task end + +2025-09-24 06:17:44,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:44,865 INFO Connection check task start + +2025-09-24 06:17:44,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:44,865 INFO Out dated connection ,size=0 + +2025-09-24 06:17:44,865 INFO Connection check task end + +2025-09-24 06:17:47,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:47,866 INFO Connection check task start + +2025-09-24 06:17:47,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:47,866 INFO Out dated connection ,size=0 + +2025-09-24 06:17:47,866 INFO Connection check task end + +2025-09-24 06:17:50,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:50,866 INFO Connection check task start + +2025-09-24 06:17:50,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:50,866 INFO Out dated connection ,size=0 + +2025-09-24 06:17:50,867 INFO Connection check task end + +2025-09-24 06:17:53,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:53,867 INFO Connection check task start + +2025-09-24 06:17:53,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:53,867 INFO Out dated connection ,size=0 + +2025-09-24 06:17:53,867 INFO Connection check task end + +2025-09-24 06:17:56,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:56,869 INFO Connection check task start + +2025-09-24 06:17:56,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:56,869 INFO Out dated connection ,size=0 + +2025-09-24 06:17:56,869 INFO Connection check task end + +2025-09-24 06:17:59,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:17:59,870 INFO Connection check task start + +2025-09-24 06:17:59,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:17:59,870 INFO Out dated connection ,size=0 + +2025-09-24 06:17:59,870 INFO Connection check task end + +2025-09-24 06:18:02,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:02,870 INFO Connection check task start + +2025-09-24 06:18:02,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:02,871 INFO Out dated connection ,size=0 + +2025-09-24 06:18:02,871 INFO Connection check task end + +2025-09-24 06:18:05,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:05,871 INFO Connection check task start + +2025-09-24 06:18:05,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:05,871 INFO Out dated connection ,size=0 + +2025-09-24 06:18:05,871 INFO Connection check task end + +2025-09-24 06:18:08,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:08,872 INFO Connection check task start + +2025-09-24 06:18:08,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:08,872 INFO Out dated connection ,size=0 + +2025-09-24 06:18:08,872 INFO Connection check task end + +2025-09-24 06:18:11,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:11,873 INFO Connection check task start + +2025-09-24 06:18:11,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:11,873 INFO Out dated connection ,size=0 + +2025-09-24 06:18:11,873 INFO Connection check task end + +2025-09-24 06:18:14,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:14,874 INFO Connection check task start + +2025-09-24 06:18:14,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:14,874 INFO Out dated connection ,size=0 + +2025-09-24 06:18:14,874 INFO Connection check task end + +2025-09-24 06:18:17,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:17,875 INFO Connection check task start + +2025-09-24 06:18:17,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:17,875 INFO Out dated connection ,size=0 + +2025-09-24 06:18:17,875 INFO Connection check task end + +2025-09-24 06:18:20,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:20,876 INFO Connection check task start + +2025-09-24 06:18:20,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:20,876 INFO Out dated connection ,size=0 + +2025-09-24 06:18:20,876 INFO Connection check task end + +2025-09-24 06:18:23,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:23,877 INFO Connection check task start + +2025-09-24 06:18:23,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:23,877 INFO Out dated connection ,size=0 + +2025-09-24 06:18:23,877 INFO Connection check task end + +2025-09-24 06:18:26,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:26,878 INFO Connection check task start + +2025-09-24 06:18:26,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:26,878 INFO Out dated connection ,size=0 + +2025-09-24 06:18:26,878 INFO Connection check task end + +2025-09-24 06:18:29,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:29,881 INFO Connection check task start + +2025-09-24 06:18:29,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:29,881 INFO Out dated connection ,size=0 + +2025-09-24 06:18:29,881 INFO Connection check task end + +2025-09-24 06:18:32,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:32,882 INFO Connection check task start + +2025-09-24 06:18:32,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:32,883 INFO Out dated connection ,size=0 + +2025-09-24 06:18:32,883 INFO Connection check task end + +2025-09-24 06:18:35,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:35,885 INFO Connection check task start + +2025-09-24 06:18:35,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:35,885 INFO Out dated connection ,size=0 + +2025-09-24 06:18:35,885 INFO Connection check task end + +2025-09-24 06:18:38,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:38,885 INFO Connection check task start + +2025-09-24 06:18:38,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:38,886 INFO Out dated connection ,size=0 + +2025-09-24 06:18:38,886 INFO Connection check task end + +2025-09-24 06:18:41,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:41,886 INFO Connection check task start + +2025-09-24 06:18:41,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:41,886 INFO Out dated connection ,size=0 + +2025-09-24 06:18:41,886 INFO Connection check task end + +2025-09-24 06:18:44,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:44,888 INFO Connection check task start + +2025-09-24 06:18:44,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:44,888 INFO Out dated connection ,size=0 + +2025-09-24 06:18:44,888 INFO Connection check task end + +2025-09-24 06:18:47,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:47,890 INFO Connection check task start + +2025-09-24 06:18:47,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:47,890 INFO Out dated connection ,size=0 + +2025-09-24 06:18:47,890 INFO Connection check task end + +2025-09-24 06:18:50,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:50,890 INFO Connection check task start + +2025-09-24 06:18:50,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:50,891 INFO Out dated connection ,size=0 + +2025-09-24 06:18:50,891 INFO Connection check task end + +2025-09-24 06:18:53,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:53,892 INFO Connection check task start + +2025-09-24 06:18:53,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:53,892 INFO Out dated connection ,size=0 + +2025-09-24 06:18:53,892 INFO Connection check task end + +2025-09-24 06:18:56,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:56,894 INFO Connection check task start + +2025-09-24 06:18:56,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:56,894 INFO Out dated connection ,size=0 + +2025-09-24 06:18:56,894 INFO Connection check task end + +2025-09-24 06:18:59,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:18:59,894 INFO Connection check task start + +2025-09-24 06:18:59,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:18:59,894 INFO Out dated connection ,size=0 + +2025-09-24 06:18:59,895 INFO Connection check task end + +2025-09-24 06:19:02,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:02,895 INFO Connection check task start + +2025-09-24 06:19:02,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:02,895 INFO Out dated connection ,size=0 + +2025-09-24 06:19:02,895 INFO Connection check task end + +2025-09-24 06:19:05,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:05,897 INFO Connection check task start + +2025-09-24 06:19:05,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:05,897 INFO Out dated connection ,size=0 + +2025-09-24 06:19:05,897 INFO Connection check task end + +2025-09-24 06:19:08,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:08,897 INFO Connection check task start + +2025-09-24 06:19:08,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:08,898 INFO Out dated connection ,size=0 + +2025-09-24 06:19:08,898 INFO Connection check task end + +2025-09-24 06:19:11,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:11,898 INFO Connection check task start + +2025-09-24 06:19:11,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:11,898 INFO Out dated connection ,size=0 + +2025-09-24 06:19:11,898 INFO Connection check task end + +2025-09-24 06:19:14,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:14,899 INFO Connection check task start + +2025-09-24 06:19:14,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:14,899 INFO Out dated connection ,size=0 + +2025-09-24 06:19:14,899 INFO Connection check task end + +2025-09-24 06:19:17,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:17,899 INFO Connection check task start + +2025-09-24 06:19:17,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:17,900 INFO Out dated connection ,size=0 + +2025-09-24 06:19:17,900 INFO Connection check task end + +2025-09-24 06:19:20,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:20,901 INFO Connection check task start + +2025-09-24 06:19:20,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:20,901 INFO Out dated connection ,size=0 + +2025-09-24 06:19:20,901 INFO Connection check task end + +2025-09-24 06:19:23,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:23,902 INFO Connection check task start + +2025-09-24 06:19:23,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:23,902 INFO Out dated connection ,size=0 + +2025-09-24 06:19:23,902 INFO Connection check task end + +2025-09-24 06:19:26,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:26,903 INFO Connection check task start + +2025-09-24 06:19:26,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:26,903 INFO Out dated connection ,size=0 + +2025-09-24 06:19:26,903 INFO Connection check task end + +2025-09-24 06:19:29,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:29,905 INFO Connection check task start + +2025-09-24 06:19:29,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:29,905 INFO Out dated connection ,size=0 + +2025-09-24 06:19:29,905 INFO Connection check task end + +2025-09-24 06:19:32,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:32,907 INFO Connection check task start + +2025-09-24 06:19:32,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:32,908 INFO Out dated connection ,size=0 + +2025-09-24 06:19:32,908 INFO Connection check task end + +2025-09-24 06:19:35,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:35,913 INFO Connection check task start + +2025-09-24 06:19:35,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:35,913 INFO Out dated connection ,size=0 + +2025-09-24 06:19:35,913 INFO Connection check task end + +2025-09-24 06:19:38,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:38,914 INFO Connection check task start + +2025-09-24 06:19:38,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:38,914 INFO Out dated connection ,size=0 + +2025-09-24 06:19:38,914 INFO Connection check task end + +2025-09-24 06:19:41,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:41,916 INFO Connection check task start + +2025-09-24 06:19:41,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:41,916 INFO Out dated connection ,size=0 + +2025-09-24 06:19:41,916 INFO Connection check task end + +2025-09-24 06:19:44,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:44,918 INFO Connection check task start + +2025-09-24 06:19:44,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:44,919 INFO Out dated connection ,size=0 + +2025-09-24 06:19:44,919 INFO Connection check task end + +2025-09-24 06:19:47,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:47,920 INFO Connection check task start + +2025-09-24 06:19:47,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:47,920 INFO Out dated connection ,size=0 + +2025-09-24 06:19:47,920 INFO Connection check task end + +2025-09-24 06:19:50,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:50,922 INFO Connection check task start + +2025-09-24 06:19:50,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:50,922 INFO Out dated connection ,size=0 + +2025-09-24 06:19:50,922 INFO Connection check task end + +2025-09-24 06:19:53,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:53,923 INFO Connection check task start + +2025-09-24 06:19:53,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:53,923 INFO Out dated connection ,size=0 + +2025-09-24 06:19:53,924 INFO Connection check task end + +2025-09-24 06:19:56,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:56,924 INFO Connection check task start + +2025-09-24 06:19:56,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:56,924 INFO Out dated connection ,size=0 + +2025-09-24 06:19:56,924 INFO Connection check task end + +2025-09-24 06:19:59,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:19:59,925 INFO Connection check task start + +2025-09-24 06:19:59,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:19:59,925 INFO Out dated connection ,size=0 + +2025-09-24 06:19:59,925 INFO Connection check task end + +2025-09-24 06:20:02,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:02,927 INFO Connection check task start + +2025-09-24 06:20:02,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:02,927 INFO Out dated connection ,size=0 + +2025-09-24 06:20:02,927 INFO Connection check task end + +2025-09-24 06:20:05,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:05,928 INFO Connection check task start + +2025-09-24 06:20:05,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:05,928 INFO Out dated connection ,size=0 + +2025-09-24 06:20:05,928 INFO Connection check task end + +2025-09-24 06:20:08,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:08,929 INFO Connection check task start + +2025-09-24 06:20:08,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:08,929 INFO Out dated connection ,size=0 + +2025-09-24 06:20:08,929 INFO Connection check task end + +2025-09-24 06:20:11,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:11,929 INFO Connection check task start + +2025-09-24 06:20:11,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:11,930 INFO Out dated connection ,size=0 + +2025-09-24 06:20:11,930 INFO Connection check task end + +2025-09-24 06:20:14,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:14,931 INFO Connection check task start + +2025-09-24 06:20:14,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:14,931 INFO Out dated connection ,size=0 + +2025-09-24 06:20:14,931 INFO Connection check task end + +2025-09-24 06:20:17,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:17,931 INFO Connection check task start + +2025-09-24 06:20:17,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:17,931 INFO Out dated connection ,size=0 + +2025-09-24 06:20:17,932 INFO Connection check task end + +2025-09-24 06:20:20,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:20,934 INFO Connection check task start + +2025-09-24 06:20:20,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:20,940 INFO Out dated connection ,size=0 + +2025-09-24 06:20:20,940 INFO Connection check task end + +2025-09-24 06:20:23,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:23,940 INFO Connection check task start + +2025-09-24 06:20:23,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:23,940 INFO Out dated connection ,size=0 + +2025-09-24 06:20:23,940 INFO Connection check task end + +2025-09-24 06:20:26,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:26,942 INFO Connection check task start + +2025-09-24 06:20:26,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:26,943 INFO Out dated connection ,size=0 + +2025-09-24 06:20:26,943 INFO Connection check task end + +2025-09-24 06:20:29,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:29,943 INFO Connection check task start + +2025-09-24 06:20:29,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:29,943 INFO Out dated connection ,size=0 + +2025-09-24 06:20:29,943 INFO Connection check task end + +2025-09-24 06:20:32,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:32,944 INFO Connection check task start + +2025-09-24 06:20:32,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:32,944 INFO Out dated connection ,size=0 + +2025-09-24 06:20:32,944 INFO Connection check task end + +2025-09-24 06:20:35,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:35,945 INFO Connection check task start + +2025-09-24 06:20:35,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:35,945 INFO Out dated connection ,size=0 + +2025-09-24 06:20:35,945 INFO Connection check task end + +2025-09-24 06:20:38,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:38,947 INFO Connection check task start + +2025-09-24 06:20:38,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:38,947 INFO Out dated connection ,size=0 + +2025-09-24 06:20:38,947 INFO Connection check task end + +2025-09-24 06:20:41,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:41,948 INFO Connection check task start + +2025-09-24 06:20:41,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:41,948 INFO Out dated connection ,size=0 + +2025-09-24 06:20:41,948 INFO Connection check task end + +2025-09-24 06:20:44,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:44,949 INFO Connection check task start + +2025-09-24 06:20:44,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:44,949 INFO Out dated connection ,size=0 + +2025-09-24 06:20:44,949 INFO Connection check task end + +2025-09-24 06:20:47,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:47,949 INFO Connection check task start + +2025-09-24 06:20:47,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:47,950 INFO Out dated connection ,size=0 + +2025-09-24 06:20:47,950 INFO Connection check task end + +2025-09-24 06:20:50,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:50,950 INFO Connection check task start + +2025-09-24 06:20:50,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:50,950 INFO Out dated connection ,size=0 + +2025-09-24 06:20:50,950 INFO Connection check task end + +2025-09-24 06:20:53,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:53,952 INFO Connection check task start + +2025-09-24 06:20:53,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:53,952 INFO Out dated connection ,size=0 + +2025-09-24 06:20:53,952 INFO Connection check task end + +2025-09-24 06:20:56,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:56,952 INFO Connection check task start + +2025-09-24 06:20:56,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:56,953 INFO Out dated connection ,size=0 + +2025-09-24 06:20:56,953 INFO Connection check task end + +2025-09-24 06:20:59,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:20:59,953 INFO Connection check task start + +2025-09-24 06:20:59,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:20:59,953 INFO Out dated connection ,size=0 + +2025-09-24 06:20:59,953 INFO Connection check task end + +2025-09-24 06:21:02,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:02,953 INFO Connection check task start + +2025-09-24 06:21:02,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:02,953 INFO Out dated connection ,size=0 + +2025-09-24 06:21:02,953 INFO Connection check task end + +2025-09-24 06:21:05,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:05,955 INFO Connection check task start + +2025-09-24 06:21:05,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:05,955 INFO Out dated connection ,size=0 + +2025-09-24 06:21:05,955 INFO Connection check task end + +2025-09-24 06:21:08,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:08,956 INFO Connection check task start + +2025-09-24 06:21:08,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:08,956 INFO Out dated connection ,size=0 + +2025-09-24 06:21:08,956 INFO Connection check task end + +2025-09-24 06:21:11,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:11,958 INFO Connection check task start + +2025-09-24 06:21:11,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:11,958 INFO Out dated connection ,size=0 + +2025-09-24 06:21:11,958 INFO Connection check task end + +2025-09-24 06:21:14,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:14,960 INFO Connection check task start + +2025-09-24 06:21:14,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:14,961 INFO Out dated connection ,size=0 + +2025-09-24 06:21:14,961 INFO Connection check task end + +2025-09-24 06:21:17,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:17,962 INFO Connection check task start + +2025-09-24 06:21:17,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:17,962 INFO Out dated connection ,size=0 + +2025-09-24 06:21:17,962 INFO Connection check task end + +2025-09-24 06:21:20,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:20,962 INFO Connection check task start + +2025-09-24 06:21:20,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:20,962 INFO Out dated connection ,size=0 + +2025-09-24 06:21:20,962 INFO Connection check task end + +2025-09-24 06:21:23,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:23,963 INFO Connection check task start + +2025-09-24 06:21:23,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:23,963 INFO Out dated connection ,size=0 + +2025-09-24 06:21:23,964 INFO Connection check task end + +2025-09-24 06:21:26,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:26,964 INFO Connection check task start + +2025-09-24 06:21:26,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:26,965 INFO Out dated connection ,size=0 + +2025-09-24 06:21:26,965 INFO Connection check task end + +2025-09-24 06:21:29,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:29,965 INFO Connection check task start + +2025-09-24 06:21:29,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:29,965 INFO Out dated connection ,size=0 + +2025-09-24 06:21:29,965 INFO Connection check task end + +2025-09-24 06:21:32,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:32,967 INFO Connection check task start + +2025-09-24 06:21:32,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:32,967 INFO Out dated connection ,size=0 + +2025-09-24 06:21:32,967 INFO Connection check task end + +2025-09-24 06:21:35,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:35,969 INFO Connection check task start + +2025-09-24 06:21:35,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:35,969 INFO Out dated connection ,size=0 + +2025-09-24 06:21:35,969 INFO Connection check task end + +2025-09-24 06:21:38,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:38,970 INFO Connection check task start + +2025-09-24 06:21:38,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:38,971 INFO Out dated connection ,size=0 + +2025-09-24 06:21:38,971 INFO Connection check task end + +2025-09-24 06:21:41,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:41,973 INFO Connection check task start + +2025-09-24 06:21:41,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:41,973 INFO Out dated connection ,size=0 + +2025-09-24 06:21:41,973 INFO Connection check task end + +2025-09-24 06:21:44,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:44,975 INFO Connection check task start + +2025-09-24 06:21:44,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:44,975 INFO Out dated connection ,size=0 + +2025-09-24 06:21:44,975 INFO Connection check task end + +2025-09-24 06:21:47,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:47,976 INFO Connection check task start + +2025-09-24 06:21:47,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:47,976 INFO Out dated connection ,size=0 + +2025-09-24 06:21:47,976 INFO Connection check task end + +2025-09-24 06:21:50,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:50,976 INFO Connection check task start + +2025-09-24 06:21:50,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:50,976 INFO Out dated connection ,size=0 + +2025-09-24 06:21:50,977 INFO Connection check task end + +2025-09-24 06:21:53,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:53,977 INFO Connection check task start + +2025-09-24 06:21:53,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:53,977 INFO Out dated connection ,size=0 + +2025-09-24 06:21:53,977 INFO Connection check task end + +2025-09-24 06:21:56,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:56,978 INFO Connection check task start + +2025-09-24 06:21:56,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:56,978 INFO Out dated connection ,size=0 + +2025-09-24 06:21:56,978 INFO Connection check task end + +2025-09-24 06:21:59,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:21:59,980 INFO Connection check task start + +2025-09-24 06:21:59,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:21:59,980 INFO Out dated connection ,size=0 + +2025-09-24 06:21:59,980 INFO Connection check task end + +2025-09-24 06:22:02,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:02,980 INFO Connection check task start + +2025-09-24 06:22:02,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:02,980 INFO Out dated connection ,size=0 + +2025-09-24 06:22:02,980 INFO Connection check task end + +2025-09-24 06:22:05,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:05,982 INFO Connection check task start + +2025-09-24 06:22:05,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:05,982 INFO Out dated connection ,size=0 + +2025-09-24 06:22:05,982 INFO Connection check task end + +2025-09-24 06:22:08,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:08,984 INFO Connection check task start + +2025-09-24 06:22:08,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:08,984 INFO Out dated connection ,size=0 + +2025-09-24 06:22:08,984 INFO Connection check task end + +2025-09-24 06:22:11,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:11,985 INFO Connection check task start + +2025-09-24 06:22:11,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:11,985 INFO Out dated connection ,size=0 + +2025-09-24 06:22:11,985 INFO Connection check task end + +2025-09-24 06:22:14,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:14,985 INFO Connection check task start + +2025-09-24 06:22:14,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:14,985 INFO Out dated connection ,size=0 + +2025-09-24 06:22:14,986 INFO Connection check task end + +2025-09-24 06:22:17,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:17,986 INFO Connection check task start + +2025-09-24 06:22:17,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:17,986 INFO Out dated connection ,size=0 + +2025-09-24 06:22:17,986 INFO Connection check task end + +2025-09-24 06:22:20,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:20,986 INFO Connection check task start + +2025-09-24 06:22:20,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:20,986 INFO Out dated connection ,size=0 + +2025-09-24 06:22:20,986 INFO Connection check task end + +2025-09-24 06:22:23,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:23,988 INFO Connection check task start + +2025-09-24 06:22:23,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:23,988 INFO Out dated connection ,size=0 + +2025-09-24 06:22:23,988 INFO Connection check task end + +2025-09-24 06:22:26,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:26,989 INFO Connection check task start + +2025-09-24 06:22:26,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:26,989 INFO Out dated connection ,size=0 + +2025-09-24 06:22:26,989 INFO Connection check task end + +2025-09-24 06:22:29,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:29,990 INFO Connection check task start + +2025-09-24 06:22:29,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:29,990 INFO Out dated connection ,size=0 + +2025-09-24 06:22:29,990 INFO Connection check task end + +2025-09-24 06:22:32,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:32,991 INFO Connection check task start + +2025-09-24 06:22:32,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:32,991 INFO Out dated connection ,size=0 + +2025-09-24 06:22:32,991 INFO Connection check task end + +2025-09-24 06:22:35,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:35,992 INFO Connection check task start + +2025-09-24 06:22:35,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:35,992 INFO Out dated connection ,size=0 + +2025-09-24 06:22:35,992 INFO Connection check task end + +2025-09-24 06:22:38,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:38,992 INFO Connection check task start + +2025-09-24 06:22:38,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:38,992 INFO Out dated connection ,size=0 + +2025-09-24 06:22:38,992 INFO Connection check task end + +2025-09-24 06:22:41,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:41,993 INFO Connection check task start + +2025-09-24 06:22:41,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:41,993 INFO Out dated connection ,size=0 + +2025-09-24 06:22:41,993 INFO Connection check task end + +2025-09-24 06:22:44,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:44,994 INFO Connection check task start + +2025-09-24 06:22:44,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:44,994 INFO Out dated connection ,size=0 + +2025-09-24 06:22:44,994 INFO Connection check task end + +2025-09-24 06:22:47,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:47,994 INFO Connection check task start + +2025-09-24 06:22:47,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:47,994 INFO Out dated connection ,size=0 + +2025-09-24 06:22:47,994 INFO Connection check task end + +2025-09-24 06:22:50,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:50,995 INFO Connection check task start + +2025-09-24 06:22:50,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:50,998 INFO Out dated connection ,size=0 + +2025-09-24 06:22:50,998 INFO Connection check task end + +2025-09-24 06:22:53,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:54,000 INFO Connection check task start + +2025-09-24 06:22:54,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:54,000 INFO Out dated connection ,size=0 + +2025-09-24 06:22:54,000 INFO Connection check task end + +2025-09-24 06:22:56,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:22:57,000 INFO Connection check task start + +2025-09-24 06:22:57,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:22:57,000 INFO Out dated connection ,size=0 + +2025-09-24 06:22:57,000 INFO Connection check task end + +2025-09-24 06:22:59,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:00,001 INFO Connection check task start + +2025-09-24 06:23:00,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:00,001 INFO Out dated connection ,size=0 + +2025-09-24 06:23:00,001 INFO Connection check task end + +2025-09-24 06:23:02,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:03,001 INFO Connection check task start + +2025-09-24 06:23:03,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:03,001 INFO Out dated connection ,size=0 + +2025-09-24 06:23:03,001 INFO Connection check task end + +2025-09-24 06:23:05,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:06,003 INFO Connection check task start + +2025-09-24 06:23:06,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:06,003 INFO Out dated connection ,size=0 + +2025-09-24 06:23:06,003 INFO Connection check task end + +2025-09-24 06:23:08,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:09,005 INFO Connection check task start + +2025-09-24 06:23:09,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:09,006 INFO Out dated connection ,size=0 + +2025-09-24 06:23:09,006 INFO Connection check task end + +2025-09-24 06:23:11,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:12,006 INFO Connection check task start + +2025-09-24 06:23:12,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:12,006 INFO Out dated connection ,size=0 + +2025-09-24 06:23:12,006 INFO Connection check task end + +2025-09-24 06:23:14,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:15,008 INFO Connection check task start + +2025-09-24 06:23:15,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:15,008 INFO Out dated connection ,size=0 + +2025-09-24 06:23:15,008 INFO Connection check task end + +2025-09-24 06:23:17,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:18,008 INFO Connection check task start + +2025-09-24 06:23:18,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:18,008 INFO Out dated connection ,size=0 + +2025-09-24 06:23:18,008 INFO Connection check task end + +2025-09-24 06:23:20,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:21,010 INFO Connection check task start + +2025-09-24 06:23:21,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:21,010 INFO Out dated connection ,size=0 + +2025-09-24 06:23:21,010 INFO Connection check task end + +2025-09-24 06:23:23,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:24,011 INFO Connection check task start + +2025-09-24 06:23:24,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:24,011 INFO Out dated connection ,size=0 + +2025-09-24 06:23:24,012 INFO Connection check task end + +2025-09-24 06:23:26,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:27,012 INFO Connection check task start + +2025-09-24 06:23:27,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:27,012 INFO Out dated connection ,size=0 + +2025-09-24 06:23:27,012 INFO Connection check task end + +2025-09-24 06:23:29,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:30,013 INFO Connection check task start + +2025-09-24 06:23:30,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:30,013 INFO Out dated connection ,size=0 + +2025-09-24 06:23:30,013 INFO Connection check task end + +2025-09-24 06:23:32,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:33,014 INFO Connection check task start + +2025-09-24 06:23:33,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:33,014 INFO Out dated connection ,size=0 + +2025-09-24 06:23:33,014 INFO Connection check task end + +2025-09-24 06:23:35,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:36,016 INFO Connection check task start + +2025-09-24 06:23:36,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:36,016 INFO Out dated connection ,size=0 + +2025-09-24 06:23:36,016 INFO Connection check task end + +2025-09-24 06:23:38,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:39,017 INFO Connection check task start + +2025-09-24 06:23:39,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:39,017 INFO Out dated connection ,size=0 + +2025-09-24 06:23:39,017 INFO Connection check task end + +2025-09-24 06:23:41,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:42,017 INFO Connection check task start + +2025-09-24 06:23:42,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:42,017 INFO Out dated connection ,size=0 + +2025-09-24 06:23:42,017 INFO Connection check task end + +2025-09-24 06:23:44,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:45,018 INFO Connection check task start + +2025-09-24 06:23:45,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:45,018 INFO Out dated connection ,size=0 + +2025-09-24 06:23:45,018 INFO Connection check task end + +2025-09-24 06:23:47,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:48,019 INFO Connection check task start + +2025-09-24 06:23:48,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:48,019 INFO Out dated connection ,size=0 + +2025-09-24 06:23:48,019 INFO Connection check task end + +2025-09-24 06:23:50,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:51,021 INFO Connection check task start + +2025-09-24 06:23:51,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:51,021 INFO Out dated connection ,size=0 + +2025-09-24 06:23:51,021 INFO Connection check task end + +2025-09-24 06:23:53,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:54,021 INFO Connection check task start + +2025-09-24 06:23:54,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:54,021 INFO Out dated connection ,size=0 + +2025-09-24 06:23:54,021 INFO Connection check task end + +2025-09-24 06:23:56,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:23:57,023 INFO Connection check task start + +2025-09-24 06:23:57,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:23:57,023 INFO Out dated connection ,size=0 + +2025-09-24 06:23:57,023 INFO Connection check task end + +2025-09-24 06:23:59,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:00,023 INFO Connection check task start + +2025-09-24 06:24:00,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:00,024 INFO Out dated connection ,size=0 + +2025-09-24 06:24:00,024 INFO Connection check task end + +2025-09-24 06:24:02,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:03,025 INFO Connection check task start + +2025-09-24 06:24:03,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:03,025 INFO Out dated connection ,size=0 + +2025-09-24 06:24:03,025 INFO Connection check task end + +2025-09-24 06:24:05,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:06,025 INFO Connection check task start + +2025-09-24 06:24:06,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:06,025 INFO Out dated connection ,size=0 + +2025-09-24 06:24:06,025 INFO Connection check task end + +2025-09-24 06:24:08,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:09,027 INFO Connection check task start + +2025-09-24 06:24:09,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:09,027 INFO Out dated connection ,size=0 + +2025-09-24 06:24:09,027 INFO Connection check task end + +2025-09-24 06:24:11,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:12,029 INFO Connection check task start + +2025-09-24 06:24:12,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:12,030 INFO Out dated connection ,size=0 + +2025-09-24 06:24:12,030 INFO Connection check task end + +2025-09-24 06:24:14,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:15,030 INFO Connection check task start + +2025-09-24 06:24:15,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:15,030 INFO Out dated connection ,size=0 + +2025-09-24 06:24:15,030 INFO Connection check task end + +2025-09-24 06:24:17,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:18,032 INFO Connection check task start + +2025-09-24 06:24:18,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:18,032 INFO Out dated connection ,size=0 + +2025-09-24 06:24:18,032 INFO Connection check task end + +2025-09-24 06:24:20,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:21,032 INFO Connection check task start + +2025-09-24 06:24:21,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:21,033 INFO Out dated connection ,size=0 + +2025-09-24 06:24:21,033 INFO Connection check task end + +2025-09-24 06:24:23,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:24,034 INFO Connection check task start + +2025-09-24 06:24:24,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:24,034 INFO Out dated connection ,size=0 + +2025-09-24 06:24:24,034 INFO Connection check task end + +2025-09-24 06:24:26,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:27,035 INFO Connection check task start + +2025-09-24 06:24:27,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:27,035 INFO Out dated connection ,size=0 + +2025-09-24 06:24:27,035 INFO Connection check task end + +2025-09-24 06:24:29,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:30,036 INFO Connection check task start + +2025-09-24 06:24:30,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:30,036 INFO Out dated connection ,size=0 + +2025-09-24 06:24:30,036 INFO Connection check task end + +2025-09-24 06:24:32,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:33,038 INFO Connection check task start + +2025-09-24 06:24:33,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:33,038 INFO Out dated connection ,size=0 + +2025-09-24 06:24:33,038 INFO Connection check task end + +2025-09-24 06:24:35,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:36,039 INFO Connection check task start + +2025-09-24 06:24:36,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:36,039 INFO Out dated connection ,size=0 + +2025-09-24 06:24:36,039 INFO Connection check task end + +2025-09-24 06:24:38,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:39,039 INFO Connection check task start + +2025-09-24 06:24:39,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:39,039 INFO Out dated connection ,size=0 + +2025-09-24 06:24:39,039 INFO Connection check task end + +2025-09-24 06:24:41,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:42,040 INFO Connection check task start + +2025-09-24 06:24:42,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:42,040 INFO Out dated connection ,size=0 + +2025-09-24 06:24:42,040 INFO Connection check task end + +2025-09-24 06:24:44,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:45,041 INFO Connection check task start + +2025-09-24 06:24:45,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:45,041 INFO Out dated connection ,size=0 + +2025-09-24 06:24:45,041 INFO Connection check task end + +2025-09-24 06:24:47,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:48,042 INFO Connection check task start + +2025-09-24 06:24:48,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:48,042 INFO Out dated connection ,size=0 + +2025-09-24 06:24:48,042 INFO Connection check task end + +2025-09-24 06:24:50,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:51,044 INFO Connection check task start + +2025-09-24 06:24:51,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:51,044 INFO Out dated connection ,size=0 + +2025-09-24 06:24:51,044 INFO Connection check task end + +2025-09-24 06:24:53,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:54,046 INFO Connection check task start + +2025-09-24 06:24:54,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:54,047 INFO Out dated connection ,size=0 + +2025-09-24 06:24:54,047 INFO Connection check task end + +2025-09-24 06:24:56,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:24:57,047 INFO Connection check task start + +2025-09-24 06:24:57,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:24:57,048 INFO Out dated connection ,size=0 + +2025-09-24 06:24:57,048 INFO Connection check task end + +2025-09-24 06:24:59,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:00,048 INFO Connection check task start + +2025-09-24 06:25:00,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:00,048 INFO Out dated connection ,size=0 + +2025-09-24 06:25:00,048 INFO Connection check task end + +2025-09-24 06:25:02,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:03,048 INFO Connection check task start + +2025-09-24 06:25:03,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:03,049 INFO Out dated connection ,size=0 + +2025-09-24 06:25:03,049 INFO Connection check task end + +2025-09-24 06:25:05,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:06,049 INFO Connection check task start + +2025-09-24 06:25:06,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:06,050 INFO Out dated connection ,size=0 + +2025-09-24 06:25:06,050 INFO Connection check task end + +2025-09-24 06:25:08,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:09,052 INFO Connection check task start + +2025-09-24 06:25:09,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:09,052 INFO Out dated connection ,size=0 + +2025-09-24 06:25:09,052 INFO Connection check task end + +2025-09-24 06:25:11,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:12,054 INFO Connection check task start + +2025-09-24 06:25:12,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:12,054 INFO Out dated connection ,size=0 + +2025-09-24 06:25:12,055 INFO Connection check task end + +2025-09-24 06:25:14,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:15,055 INFO Connection check task start + +2025-09-24 06:25:15,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:15,055 INFO Out dated connection ,size=0 + +2025-09-24 06:25:15,055 INFO Connection check task end + +2025-09-24 06:25:17,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:18,055 INFO Connection check task start + +2025-09-24 06:25:18,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:18,055 INFO Out dated connection ,size=0 + +2025-09-24 06:25:18,055 INFO Connection check task end + +2025-09-24 06:25:20,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:21,056 INFO Connection check task start + +2025-09-24 06:25:21,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:21,056 INFO Out dated connection ,size=0 + +2025-09-24 06:25:21,056 INFO Connection check task end + +2025-09-24 06:25:23,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:24,056 INFO Connection check task start + +2025-09-24 06:25:24,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:24,056 INFO Out dated connection ,size=0 + +2025-09-24 06:25:24,056 INFO Connection check task end + +2025-09-24 06:25:26,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:27,056 INFO Connection check task start + +2025-09-24 06:25:27,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:27,057 INFO Out dated connection ,size=0 + +2025-09-24 06:25:27,057 INFO Connection check task end + +2025-09-24 06:25:29,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:30,059 INFO Connection check task start + +2025-09-24 06:25:30,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:30,059 INFO Out dated connection ,size=0 + +2025-09-24 06:25:30,059 INFO Connection check task end + +2025-09-24 06:25:32,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:33,061 INFO Connection check task start + +2025-09-24 06:25:33,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:33,061 INFO Out dated connection ,size=0 + +2025-09-24 06:25:33,061 INFO Connection check task end + +2025-09-24 06:25:35,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:36,062 INFO Connection check task start + +2025-09-24 06:25:36,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:36,062 INFO Out dated connection ,size=0 + +2025-09-24 06:25:36,062 INFO Connection check task end + +2025-09-24 06:25:38,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:39,062 INFO Connection check task start + +2025-09-24 06:25:39,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:39,062 INFO Out dated connection ,size=0 + +2025-09-24 06:25:39,062 INFO Connection check task end + +2025-09-24 06:25:41,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:42,065 INFO Connection check task start + +2025-09-24 06:25:42,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:42,065 INFO Out dated connection ,size=0 + +2025-09-24 06:25:42,065 INFO Connection check task end + +2025-09-24 06:25:44,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:45,066 INFO Connection check task start + +2025-09-24 06:25:45,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:45,066 INFO Out dated connection ,size=0 + +2025-09-24 06:25:45,066 INFO Connection check task end + +2025-09-24 06:25:47,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:48,067 INFO Connection check task start + +2025-09-24 06:25:48,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:48,067 INFO Out dated connection ,size=0 + +2025-09-24 06:25:48,067 INFO Connection check task end + +2025-09-24 06:25:50,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:51,067 INFO Connection check task start + +2025-09-24 06:25:51,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:51,067 INFO Out dated connection ,size=0 + +2025-09-24 06:25:51,067 INFO Connection check task end + +2025-09-24 06:25:53,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:54,069 INFO Connection check task start + +2025-09-24 06:25:54,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:54,069 INFO Out dated connection ,size=0 + +2025-09-24 06:25:54,069 INFO Connection check task end + +2025-09-24 06:25:56,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:25:57,069 INFO Connection check task start + +2025-09-24 06:25:57,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:25:57,069 INFO Out dated connection ,size=0 + +2025-09-24 06:25:57,070 INFO Connection check task end + +2025-09-24 06:25:59,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:00,071 INFO Connection check task start + +2025-09-24 06:26:00,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:00,071 INFO Out dated connection ,size=0 + +2025-09-24 06:26:00,071 INFO Connection check task end + +2025-09-24 06:26:02,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:03,072 INFO Connection check task start + +2025-09-24 06:26:03,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:03,072 INFO Out dated connection ,size=0 + +2025-09-24 06:26:03,072 INFO Connection check task end + +2025-09-24 06:26:05,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:06,073 INFO Connection check task start + +2025-09-24 06:26:06,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:06,073 INFO Out dated connection ,size=0 + +2025-09-24 06:26:06,073 INFO Connection check task end + +2025-09-24 06:26:08,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:09,076 INFO Connection check task start + +2025-09-24 06:26:09,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:09,076 INFO Out dated connection ,size=0 + +2025-09-24 06:26:09,076 INFO Connection check task end + +2025-09-24 06:26:11,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:12,077 INFO Connection check task start + +2025-09-24 06:26:12,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:12,077 INFO Out dated connection ,size=0 + +2025-09-24 06:26:12,077 INFO Connection check task end + +2025-09-24 06:26:14,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:15,077 INFO Connection check task start + +2025-09-24 06:26:15,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:15,077 INFO Out dated connection ,size=0 + +2025-09-24 06:26:15,077 INFO Connection check task end + +2025-09-24 06:26:17,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:18,078 INFO Connection check task start + +2025-09-24 06:26:18,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:18,078 INFO Out dated connection ,size=0 + +2025-09-24 06:26:18,078 INFO Connection check task end + +2025-09-24 06:26:20,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:21,078 INFO Connection check task start + +2025-09-24 06:26:21,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:21,078 INFO Out dated connection ,size=0 + +2025-09-24 06:26:21,078 INFO Connection check task end + +2025-09-24 06:26:23,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:24,079 INFO Connection check task start + +2025-09-24 06:26:24,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:24,079 INFO Out dated connection ,size=0 + +2025-09-24 06:26:24,079 INFO Connection check task end + +2025-09-24 06:26:26,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:27,080 INFO Connection check task start + +2025-09-24 06:26:27,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:27,080 INFO Out dated connection ,size=0 + +2025-09-24 06:26:27,080 INFO Connection check task end + +2025-09-24 06:26:29,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:30,081 INFO Connection check task start + +2025-09-24 06:26:30,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:30,081 INFO Out dated connection ,size=0 + +2025-09-24 06:26:30,081 INFO Connection check task end + +2025-09-24 06:26:32,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:33,082 INFO Connection check task start + +2025-09-24 06:26:33,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:33,082 INFO Out dated connection ,size=0 + +2025-09-24 06:26:33,082 INFO Connection check task end + +2025-09-24 06:26:35,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:36,083 INFO Connection check task start + +2025-09-24 06:26:36,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:36,083 INFO Out dated connection ,size=0 + +2025-09-24 06:26:36,083 INFO Connection check task end + +2025-09-24 06:26:38,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:39,085 INFO Connection check task start + +2025-09-24 06:26:39,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:39,085 INFO Out dated connection ,size=0 + +2025-09-24 06:26:39,085 INFO Connection check task end + +2025-09-24 06:26:41,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:42,086 INFO Connection check task start + +2025-09-24 06:26:42,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:42,086 INFO Out dated connection ,size=0 + +2025-09-24 06:26:42,086 INFO Connection check task end + +2025-09-24 06:26:44,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:45,087 INFO Connection check task start + +2025-09-24 06:26:45,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:45,088 INFO Out dated connection ,size=0 + +2025-09-24 06:26:45,088 INFO Connection check task end + +2025-09-24 06:26:47,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:48,088 INFO Connection check task start + +2025-09-24 06:26:48,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:48,088 INFO Out dated connection ,size=0 + +2025-09-24 06:26:48,088 INFO Connection check task end + +2025-09-24 06:26:50,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:51,089 INFO Connection check task start + +2025-09-24 06:26:51,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:51,089 INFO Out dated connection ,size=0 + +2025-09-24 06:26:51,089 INFO Connection check task end + +2025-09-24 06:26:53,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:54,089 INFO Connection check task start + +2025-09-24 06:26:54,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:54,089 INFO Out dated connection ,size=0 + +2025-09-24 06:26:54,089 INFO Connection check task end + +2025-09-24 06:26:56,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:26:57,090 INFO Connection check task start + +2025-09-24 06:26:57,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:26:57,090 INFO Out dated connection ,size=0 + +2025-09-24 06:26:57,090 INFO Connection check task end + +2025-09-24 06:26:59,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:00,090 INFO Connection check task start + +2025-09-24 06:27:00,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:00,090 INFO Out dated connection ,size=0 + +2025-09-24 06:27:00,090 INFO Connection check task end + +2025-09-24 06:27:02,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:03,091 INFO Connection check task start + +2025-09-24 06:27:03,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:03,091 INFO Out dated connection ,size=0 + +2025-09-24 06:27:03,091 INFO Connection check task end + +2025-09-24 06:27:05,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:06,092 INFO Connection check task start + +2025-09-24 06:27:06,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:06,092 INFO Out dated connection ,size=0 + +2025-09-24 06:27:06,092 INFO Connection check task end + +2025-09-24 06:27:08,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:09,094 INFO Connection check task start + +2025-09-24 06:27:09,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:09,094 INFO Out dated connection ,size=0 + +2025-09-24 06:27:09,094 INFO Connection check task end + +2025-09-24 06:27:11,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:12,094 INFO Connection check task start + +2025-09-24 06:27:12,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:12,094 INFO Out dated connection ,size=0 + +2025-09-24 06:27:12,094 INFO Connection check task end + +2025-09-24 06:27:14,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:15,096 INFO Connection check task start + +2025-09-24 06:27:15,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:15,097 INFO Out dated connection ,size=0 + +2025-09-24 06:27:15,097 INFO Connection check task end + +2025-09-24 06:27:17,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:18,097 INFO Connection check task start + +2025-09-24 06:27:18,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:18,097 INFO Out dated connection ,size=0 + +2025-09-24 06:27:18,097 INFO Connection check task end + +2025-09-24 06:27:20,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:21,099 INFO Connection check task start + +2025-09-24 06:27:21,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:21,099 INFO Out dated connection ,size=0 + +2025-09-24 06:27:21,099 INFO Connection check task end + +2025-09-24 06:27:23,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:24,099 INFO Connection check task start + +2025-09-24 06:27:24,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:24,099 INFO Out dated connection ,size=0 + +2025-09-24 06:27:24,100 INFO Connection check task end + +2025-09-24 06:27:26,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:27,102 INFO Connection check task start + +2025-09-24 06:27:27,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:27,102 INFO Out dated connection ,size=0 + +2025-09-24 06:27:27,102 INFO Connection check task end + +2025-09-24 06:27:29,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:30,104 INFO Connection check task start + +2025-09-24 06:27:30,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:30,104 INFO Out dated connection ,size=0 + +2025-09-24 06:27:30,104 INFO Connection check task end + +2025-09-24 06:27:32,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:33,105 INFO Connection check task start + +2025-09-24 06:27:33,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:33,105 INFO Out dated connection ,size=0 + +2025-09-24 06:27:33,105 INFO Connection check task end + +2025-09-24 06:27:35,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:36,107 INFO Connection check task start + +2025-09-24 06:27:36,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:36,107 INFO Out dated connection ,size=0 + +2025-09-24 06:27:36,107 INFO Connection check task end + +2025-09-24 06:27:38,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:39,108 INFO Connection check task start + +2025-09-24 06:27:39,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:39,108 INFO Out dated connection ,size=0 + +2025-09-24 06:27:39,108 INFO Connection check task end + +2025-09-24 06:27:41,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:42,109 INFO Connection check task start + +2025-09-24 06:27:42,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:42,109 INFO Out dated connection ,size=0 + +2025-09-24 06:27:42,109 INFO Connection check task end + +2025-09-24 06:27:44,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:45,111 INFO Connection check task start + +2025-09-24 06:27:45,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:45,112 INFO Out dated connection ,size=0 + +2025-09-24 06:27:45,112 INFO Connection check task end + +2025-09-24 06:27:47,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:48,114 INFO Connection check task start + +2025-09-24 06:27:48,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:48,114 INFO Out dated connection ,size=0 + +2025-09-24 06:27:48,114 INFO Connection check task end + +2025-09-24 06:27:50,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:51,114 INFO Connection check task start + +2025-09-24 06:27:51,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:51,114 INFO Out dated connection ,size=0 + +2025-09-24 06:27:51,114 INFO Connection check task end + +2025-09-24 06:27:53,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:54,116 INFO Connection check task start + +2025-09-24 06:27:54,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:54,116 INFO Out dated connection ,size=0 + +2025-09-24 06:27:54,116 INFO Connection check task end + +2025-09-24 06:27:56,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:27:57,116 INFO Connection check task start + +2025-09-24 06:27:57,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:27:57,116 INFO Out dated connection ,size=0 + +2025-09-24 06:27:57,116 INFO Connection check task end + +2025-09-24 06:27:59,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:00,117 INFO Connection check task start + +2025-09-24 06:28:00,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:00,117 INFO Out dated connection ,size=0 + +2025-09-24 06:28:00,117 INFO Connection check task end + +2025-09-24 06:28:02,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:03,119 INFO Connection check task start + +2025-09-24 06:28:03,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:03,120 INFO Out dated connection ,size=0 + +2025-09-24 06:28:03,120 INFO Connection check task end + +2025-09-24 06:28:05,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:06,120 INFO Connection check task start + +2025-09-24 06:28:06,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:06,120 INFO Out dated connection ,size=0 + +2025-09-24 06:28:06,120 INFO Connection check task end + +2025-09-24 06:28:08,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:09,120 INFO Connection check task start + +2025-09-24 06:28:09,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:09,120 INFO Out dated connection ,size=0 + +2025-09-24 06:28:09,121 INFO Connection check task end + +2025-09-24 06:28:11,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:12,123 INFO Connection check task start + +2025-09-24 06:28:12,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:12,123 INFO Out dated connection ,size=0 + +2025-09-24 06:28:12,123 INFO Connection check task end + +2025-09-24 06:28:14,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:15,123 INFO Connection check task start + +2025-09-24 06:28:15,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:15,123 INFO Out dated connection ,size=0 + +2025-09-24 06:28:15,123 INFO Connection check task end + +2025-09-24 06:28:17,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:18,124 INFO Connection check task start + +2025-09-24 06:28:18,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:18,124 INFO Out dated connection ,size=0 + +2025-09-24 06:28:18,124 INFO Connection check task end + +2025-09-24 06:28:20,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:21,124 INFO Connection check task start + +2025-09-24 06:28:21,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:21,124 INFO Out dated connection ,size=0 + +2025-09-24 06:28:21,124 INFO Connection check task end + +2025-09-24 06:28:23,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:24,125 INFO Connection check task start + +2025-09-24 06:28:24,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:24,125 INFO Out dated connection ,size=0 + +2025-09-24 06:28:24,125 INFO Connection check task end + +2025-09-24 06:28:26,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:27,127 INFO Connection check task start + +2025-09-24 06:28:27,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:27,127 INFO Out dated connection ,size=0 + +2025-09-24 06:28:27,127 INFO Connection check task end + +2025-09-24 06:28:29,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:30,127 INFO Connection check task start + +2025-09-24 06:28:30,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:30,128 INFO Out dated connection ,size=0 + +2025-09-24 06:28:30,128 INFO Connection check task end + +2025-09-24 06:28:32,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:33,129 INFO Connection check task start + +2025-09-24 06:28:33,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:33,130 INFO Out dated connection ,size=0 + +2025-09-24 06:28:33,130 INFO Connection check task end + +2025-09-24 06:28:35,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:36,130 INFO Connection check task start + +2025-09-24 06:28:36,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:36,130 INFO Out dated connection ,size=0 + +2025-09-24 06:28:36,130 INFO Connection check task end + +2025-09-24 06:28:38,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:39,131 INFO Connection check task start + +2025-09-24 06:28:39,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:39,131 INFO Out dated connection ,size=0 + +2025-09-24 06:28:39,131 INFO Connection check task end + +2025-09-24 06:28:41,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:42,133 INFO Connection check task start + +2025-09-24 06:28:42,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:42,133 INFO Out dated connection ,size=0 + +2025-09-24 06:28:42,133 INFO Connection check task end + +2025-09-24 06:28:44,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:45,134 INFO Connection check task start + +2025-09-24 06:28:45,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:45,134 INFO Out dated connection ,size=0 + +2025-09-24 06:28:45,134 INFO Connection check task end + +2025-09-24 06:28:47,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:48,134 INFO Connection check task start + +2025-09-24 06:28:48,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:48,134 INFO Out dated connection ,size=0 + +2025-09-24 06:28:48,134 INFO Connection check task end + +2025-09-24 06:28:50,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:51,136 INFO Connection check task start + +2025-09-24 06:28:51,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:51,136 INFO Out dated connection ,size=0 + +2025-09-24 06:28:51,137 INFO Connection check task end + +2025-09-24 06:28:53,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:54,138 INFO Connection check task start + +2025-09-24 06:28:54,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:54,138 INFO Out dated connection ,size=0 + +2025-09-24 06:28:54,138 INFO Connection check task end + +2025-09-24 06:28:56,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:28:57,140 INFO Connection check task start + +2025-09-24 06:28:57,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:28:57,140 INFO Out dated connection ,size=0 + +2025-09-24 06:28:57,140 INFO Connection check task end + +2025-09-24 06:28:59,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:00,140 INFO Connection check task start + +2025-09-24 06:29:00,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:00,141 INFO Out dated connection ,size=0 + +2025-09-24 06:29:00,141 INFO Connection check task end + +2025-09-24 06:29:02,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:03,142 INFO Connection check task start + +2025-09-24 06:29:03,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:03,142 INFO Out dated connection ,size=0 + +2025-09-24 06:29:03,142 INFO Connection check task end + +2025-09-24 06:29:05,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:06,142 INFO Connection check task start + +2025-09-24 06:29:06,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:06,142 INFO Out dated connection ,size=0 + +2025-09-24 06:29:06,143 INFO Connection check task end + +2025-09-24 06:29:08,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:09,145 INFO Connection check task start + +2025-09-24 06:29:09,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:09,145 INFO Out dated connection ,size=0 + +2025-09-24 06:29:09,145 INFO Connection check task end + +2025-09-24 06:29:11,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:12,145 INFO Connection check task start + +2025-09-24 06:29:12,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:12,145 INFO Out dated connection ,size=0 + +2025-09-24 06:29:12,145 INFO Connection check task end + +2025-09-24 06:29:14,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:15,146 INFO Connection check task start + +2025-09-24 06:29:15,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:15,146 INFO Out dated connection ,size=0 + +2025-09-24 06:29:15,146 INFO Connection check task end + +2025-09-24 06:29:17,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:18,146 INFO Connection check task start + +2025-09-24 06:29:18,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:18,146 INFO Out dated connection ,size=0 + +2025-09-24 06:29:18,146 INFO Connection check task end + +2025-09-24 06:29:20,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:21,146 INFO Connection check task start + +2025-09-24 06:29:21,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:21,146 INFO Out dated connection ,size=0 + +2025-09-24 06:29:21,146 INFO Connection check task end + +2025-09-24 06:29:23,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:24,147 INFO Connection check task start + +2025-09-24 06:29:24,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:24,147 INFO Out dated connection ,size=0 + +2025-09-24 06:29:24,147 INFO Connection check task end + +2025-09-24 06:29:26,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:27,148 INFO Connection check task start + +2025-09-24 06:29:27,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:27,148 INFO Out dated connection ,size=0 + +2025-09-24 06:29:27,148 INFO Connection check task end + +2025-09-24 06:29:29,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:30,148 INFO Connection check task start + +2025-09-24 06:29:30,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:30,148 INFO Out dated connection ,size=0 + +2025-09-24 06:29:30,148 INFO Connection check task end + +2025-09-24 06:29:32,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:33,149 INFO Connection check task start + +2025-09-24 06:29:33,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:33,149 INFO Out dated connection ,size=0 + +2025-09-24 06:29:33,149 INFO Connection check task end + +2025-09-24 06:29:35,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:36,149 INFO Connection check task start + +2025-09-24 06:29:36,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:36,150 INFO Out dated connection ,size=0 + +2025-09-24 06:29:36,150 INFO Connection check task end + +2025-09-24 06:29:38,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:39,152 INFO Connection check task start + +2025-09-24 06:29:39,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:39,152 INFO Out dated connection ,size=0 + +2025-09-24 06:29:39,152 INFO Connection check task end + +2025-09-24 06:29:41,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:42,154 INFO Connection check task start + +2025-09-24 06:29:42,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:42,154 INFO Out dated connection ,size=0 + +2025-09-24 06:29:42,154 INFO Connection check task end + +2025-09-24 06:29:44,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:45,155 INFO Connection check task start + +2025-09-24 06:29:45,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:45,155 INFO Out dated connection ,size=0 + +2025-09-24 06:29:45,155 INFO Connection check task end + +2025-09-24 06:29:47,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:48,155 INFO Connection check task start + +2025-09-24 06:29:48,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:48,155 INFO Out dated connection ,size=0 + +2025-09-24 06:29:48,155 INFO Connection check task end + +2025-09-24 06:29:50,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:51,155 INFO Connection check task start + +2025-09-24 06:29:51,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:51,155 INFO Out dated connection ,size=0 + +2025-09-24 06:29:51,156 INFO Connection check task end + +2025-09-24 06:29:53,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:54,156 INFO Connection check task start + +2025-09-24 06:29:54,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:54,156 INFO Out dated connection ,size=0 + +2025-09-24 06:29:54,156 INFO Connection check task end + +2025-09-24 06:29:56,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:29:57,157 INFO Connection check task start + +2025-09-24 06:29:57,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:29:57,158 INFO Out dated connection ,size=0 + +2025-09-24 06:29:57,158 INFO Connection check task end + +2025-09-24 06:29:59,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:00,159 INFO Connection check task start + +2025-09-24 06:30:00,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:00,159 INFO Out dated connection ,size=0 + +2025-09-24 06:30:00,159 INFO Connection check task end + +2025-09-24 06:30:02,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:03,160 INFO Connection check task start + +2025-09-24 06:30:03,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:03,160 INFO Out dated connection ,size=0 + +2025-09-24 06:30:03,160 INFO Connection check task end + +2025-09-24 06:30:05,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:06,160 INFO Connection check task start + +2025-09-24 06:30:06,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:06,161 INFO Out dated connection ,size=0 + +2025-09-24 06:30:06,161 INFO Connection check task end + +2025-09-24 06:30:08,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:09,161 INFO Connection check task start + +2025-09-24 06:30:09,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:09,161 INFO Out dated connection ,size=0 + +2025-09-24 06:30:09,162 INFO Connection check task end + +2025-09-24 06:30:11,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:12,162 INFO Connection check task start + +2025-09-24 06:30:12,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:12,162 INFO Out dated connection ,size=0 + +2025-09-24 06:30:12,162 INFO Connection check task end + +2025-09-24 06:30:14,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:15,162 INFO Connection check task start + +2025-09-24 06:30:15,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:15,162 INFO Out dated connection ,size=0 + +2025-09-24 06:30:15,162 INFO Connection check task end + +2025-09-24 06:30:17,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:18,162 INFO Connection check task start + +2025-09-24 06:30:18,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:18,162 INFO Out dated connection ,size=0 + +2025-09-24 06:30:18,162 INFO Connection check task end + +2025-09-24 06:30:20,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:21,163 INFO Connection check task start + +2025-09-24 06:30:21,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:21,163 INFO Out dated connection ,size=0 + +2025-09-24 06:30:21,163 INFO Connection check task end + +2025-09-24 06:30:23,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:24,165 INFO Connection check task start + +2025-09-24 06:30:24,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:24,165 INFO Out dated connection ,size=0 + +2025-09-24 06:30:24,165 INFO Connection check task end + +2025-09-24 06:30:26,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:27,167 INFO Connection check task start + +2025-09-24 06:30:27,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:27,167 INFO Out dated connection ,size=0 + +2025-09-24 06:30:27,167 INFO Connection check task end + +2025-09-24 06:30:29,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:30,168 INFO Connection check task start + +2025-09-24 06:30:30,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:30,168 INFO Out dated connection ,size=0 + +2025-09-24 06:30:30,168 INFO Connection check task end + +2025-09-24 06:30:32,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:33,168 INFO Connection check task start + +2025-09-24 06:30:33,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:33,168 INFO Out dated connection ,size=0 + +2025-09-24 06:30:33,168 INFO Connection check task end + +2025-09-24 06:30:35,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:36,170 INFO Connection check task start + +2025-09-24 06:30:36,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:36,170 INFO Out dated connection ,size=0 + +2025-09-24 06:30:36,170 INFO Connection check task end + +2025-09-24 06:30:38,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:39,171 INFO Connection check task start + +2025-09-24 06:30:39,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:39,171 INFO Out dated connection ,size=0 + +2025-09-24 06:30:39,171 INFO Connection check task end + +2025-09-24 06:30:41,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:42,172 INFO Connection check task start + +2025-09-24 06:30:42,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:42,172 INFO Out dated connection ,size=0 + +2025-09-24 06:30:42,172 INFO Connection check task end + +2025-09-24 06:30:44,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:45,174 INFO Connection check task start + +2025-09-24 06:30:45,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:45,175 INFO Out dated connection ,size=0 + +2025-09-24 06:30:45,175 INFO Connection check task end + +2025-09-24 06:30:47,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:48,175 INFO Connection check task start + +2025-09-24 06:30:48,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:48,175 INFO Out dated connection ,size=0 + +2025-09-24 06:30:48,175 INFO Connection check task end + +2025-09-24 06:30:50,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:51,176 INFO Connection check task start + +2025-09-24 06:30:51,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:51,176 INFO Out dated connection ,size=0 + +2025-09-24 06:30:51,176 INFO Connection check task end + +2025-09-24 06:30:53,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:54,176 INFO Connection check task start + +2025-09-24 06:30:54,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:54,177 INFO Out dated connection ,size=0 + +2025-09-24 06:30:54,177 INFO Connection check task end + +2025-09-24 06:30:56,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:30:57,177 INFO Connection check task start + +2025-09-24 06:30:57,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:30:57,177 INFO Out dated connection ,size=0 + +2025-09-24 06:30:57,177 INFO Connection check task end + +2025-09-24 06:30:59,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:00,178 INFO Connection check task start + +2025-09-24 06:31:00,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:00,178 INFO Out dated connection ,size=0 + +2025-09-24 06:31:00,178 INFO Connection check task end + +2025-09-24 06:31:02,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:03,179 INFO Connection check task start + +2025-09-24 06:31:03,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:03,179 INFO Out dated connection ,size=0 + +2025-09-24 06:31:03,179 INFO Connection check task end + +2025-09-24 06:31:05,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:06,180 INFO Connection check task start + +2025-09-24 06:31:06,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:06,180 INFO Out dated connection ,size=0 + +2025-09-24 06:31:06,180 INFO Connection check task end + +2025-09-24 06:31:08,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:09,182 INFO Connection check task start + +2025-09-24 06:31:09,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:09,183 INFO Out dated connection ,size=0 + +2025-09-24 06:31:09,183 INFO Connection check task end + +2025-09-24 06:31:11,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:12,183 INFO Connection check task start + +2025-09-24 06:31:12,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:12,183 INFO Out dated connection ,size=0 + +2025-09-24 06:31:12,183 INFO Connection check task end + +2025-09-24 06:31:14,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:15,183 INFO Connection check task start + +2025-09-24 06:31:15,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:15,183 INFO Out dated connection ,size=0 + +2025-09-24 06:31:15,183 INFO Connection check task end + +2025-09-24 06:31:17,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:18,183 INFO Connection check task start + +2025-09-24 06:31:18,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:18,190 INFO Out dated connection ,size=0 + +2025-09-24 06:31:18,190 INFO Connection check task end + +2025-09-24 06:31:20,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:21,192 INFO Connection check task start + +2025-09-24 06:31:21,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:21,192 INFO Out dated connection ,size=0 + +2025-09-24 06:31:21,192 INFO Connection check task end + +2025-09-24 06:31:23,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:24,193 INFO Connection check task start + +2025-09-24 06:31:24,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:24,193 INFO Out dated connection ,size=0 + +2025-09-24 06:31:24,193 INFO Connection check task end + +2025-09-24 06:31:26,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:27,194 INFO Connection check task start + +2025-09-24 06:31:27,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:27,194 INFO Out dated connection ,size=0 + +2025-09-24 06:31:27,194 INFO Connection check task end + +2025-09-24 06:31:29,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:30,194 INFO Connection check task start + +2025-09-24 06:31:30,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:30,195 INFO Out dated connection ,size=0 + +2025-09-24 06:31:30,195 INFO Connection check task end + +2025-09-24 06:31:32,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:33,195 INFO Connection check task start + +2025-09-24 06:31:33,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:33,195 INFO Out dated connection ,size=0 + +2025-09-24 06:31:33,195 INFO Connection check task end + +2025-09-24 06:31:35,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:36,196 INFO Connection check task start + +2025-09-24 06:31:36,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:36,196 INFO Out dated connection ,size=0 + +2025-09-24 06:31:36,196 INFO Connection check task end + +2025-09-24 06:31:38,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:39,196 INFO Connection check task start + +2025-09-24 06:31:39,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:39,197 INFO Out dated connection ,size=0 + +2025-09-24 06:31:39,197 INFO Connection check task end + +2025-09-24 06:31:41,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:42,197 INFO Connection check task start + +2025-09-24 06:31:42,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:42,197 INFO Out dated connection ,size=0 + +2025-09-24 06:31:42,197 INFO Connection check task end + +2025-09-24 06:31:44,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:45,197 INFO Connection check task start + +2025-09-24 06:31:45,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:45,197 INFO Out dated connection ,size=0 + +2025-09-24 06:31:45,197 INFO Connection check task end + +2025-09-24 06:31:47,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:48,198 INFO Connection check task start + +2025-09-24 06:31:48,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:48,198 INFO Out dated connection ,size=0 + +2025-09-24 06:31:48,198 INFO Connection check task end + +2025-09-24 06:31:50,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:51,198 INFO Connection check task start + +2025-09-24 06:31:51,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:51,198 INFO Out dated connection ,size=0 + +2025-09-24 06:31:51,198 INFO Connection check task end + +2025-09-24 06:31:53,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:54,199 INFO Connection check task start + +2025-09-24 06:31:54,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:54,199 INFO Out dated connection ,size=0 + +2025-09-24 06:31:54,199 INFO Connection check task end + +2025-09-24 06:31:56,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:31:57,200 INFO Connection check task start + +2025-09-24 06:31:57,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:31:57,200 INFO Out dated connection ,size=0 + +2025-09-24 06:31:57,200 INFO Connection check task end + +2025-09-24 06:31:59,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:00,200 INFO Connection check task start + +2025-09-24 06:32:00,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:00,200 INFO Out dated connection ,size=0 + +2025-09-24 06:32:00,200 INFO Connection check task end + +2025-09-24 06:32:02,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:03,200 INFO Connection check task start + +2025-09-24 06:32:03,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:03,200 INFO Out dated connection ,size=0 + +2025-09-24 06:32:03,200 INFO Connection check task end + +2025-09-24 06:32:05,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:06,201 INFO Connection check task start + +2025-09-24 06:32:06,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:06,201 INFO Out dated connection ,size=0 + +2025-09-24 06:32:06,201 INFO Connection check task end + +2025-09-24 06:32:08,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:09,201 INFO Connection check task start + +2025-09-24 06:32:09,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:09,201 INFO Out dated connection ,size=0 + +2025-09-24 06:32:09,201 INFO Connection check task end + +2025-09-24 06:32:11,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:12,203 INFO Connection check task start + +2025-09-24 06:32:12,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:12,203 INFO Out dated connection ,size=0 + +2025-09-24 06:32:12,203 INFO Connection check task end + +2025-09-24 06:32:14,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:15,204 INFO Connection check task start + +2025-09-24 06:32:15,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:15,204 INFO Out dated connection ,size=0 + +2025-09-24 06:32:15,204 INFO Connection check task end + +2025-09-24 06:32:17,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:18,205 INFO Connection check task start + +2025-09-24 06:32:18,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:18,205 INFO Out dated connection ,size=0 + +2025-09-24 06:32:18,205 INFO Connection check task end + +2025-09-24 06:32:20,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:21,205 INFO Connection check task start + +2025-09-24 06:32:21,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:21,205 INFO Out dated connection ,size=0 + +2025-09-24 06:32:21,205 INFO Connection check task end + +2025-09-24 06:32:23,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:24,206 INFO Connection check task start + +2025-09-24 06:32:24,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:24,206 INFO Out dated connection ,size=0 + +2025-09-24 06:32:24,206 INFO Connection check task end + +2025-09-24 06:32:26,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:27,206 INFO Connection check task start + +2025-09-24 06:32:27,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:27,206 INFO Out dated connection ,size=0 + +2025-09-24 06:32:27,206 INFO Connection check task end + +2025-09-24 06:32:29,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:30,206 INFO Connection check task start + +2025-09-24 06:32:30,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:30,206 INFO Out dated connection ,size=0 + +2025-09-24 06:32:30,206 INFO Connection check task end + +2025-09-24 06:32:32,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:33,207 INFO Connection check task start + +2025-09-24 06:32:33,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:33,207 INFO Out dated connection ,size=0 + +2025-09-24 06:32:33,207 INFO Connection check task end + +2025-09-24 06:32:35,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:36,207 INFO Connection check task start + +2025-09-24 06:32:36,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:36,208 INFO Out dated connection ,size=0 + +2025-09-24 06:32:36,208 INFO Connection check task end + +2025-09-24 06:32:38,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:39,208 INFO Connection check task start + +2025-09-24 06:32:39,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:39,208 INFO Out dated connection ,size=0 + +2025-09-24 06:32:39,208 INFO Connection check task end + +2025-09-24 06:32:41,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:42,209 INFO Connection check task start + +2025-09-24 06:32:42,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:42,209 INFO Out dated connection ,size=0 + +2025-09-24 06:32:42,209 INFO Connection check task end + +2025-09-24 06:32:44,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:45,209 INFO Connection check task start + +2025-09-24 06:32:45,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:45,209 INFO Out dated connection ,size=0 + +2025-09-24 06:32:45,209 INFO Connection check task end + +2025-09-24 06:32:47,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:48,210 INFO Connection check task start + +2025-09-24 06:32:48,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:48,210 INFO Out dated connection ,size=0 + +2025-09-24 06:32:48,210 INFO Connection check task end + +2025-09-24 06:32:50,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:51,210 INFO Connection check task start + +2025-09-24 06:32:51,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:51,211 INFO Out dated connection ,size=0 + +2025-09-24 06:32:51,211 INFO Connection check task end + +2025-09-24 06:32:53,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:54,211 INFO Connection check task start + +2025-09-24 06:32:54,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:54,212 INFO Out dated connection ,size=0 + +2025-09-24 06:32:54,212 INFO Connection check task end + +2025-09-24 06:32:56,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:32:57,212 INFO Connection check task start + +2025-09-24 06:32:57,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:32:57,212 INFO Out dated connection ,size=0 + +2025-09-24 06:32:57,212 INFO Connection check task end + +2025-09-24 06:32:59,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:00,213 INFO Connection check task start + +2025-09-24 06:33:00,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:00,213 INFO Out dated connection ,size=0 + +2025-09-24 06:33:00,213 INFO Connection check task end + +2025-09-24 06:33:02,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:03,214 INFO Connection check task start + +2025-09-24 06:33:03,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:03,214 INFO Out dated connection ,size=0 + +2025-09-24 06:33:03,214 INFO Connection check task end + +2025-09-24 06:33:05,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:06,215 INFO Connection check task start + +2025-09-24 06:33:06,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:06,215 INFO Out dated connection ,size=0 + +2025-09-24 06:33:06,215 INFO Connection check task end + +2025-09-24 06:33:08,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:09,216 INFO Connection check task start + +2025-09-24 06:33:09,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:09,216 INFO Out dated connection ,size=0 + +2025-09-24 06:33:09,216 INFO Connection check task end + +2025-09-24 06:33:11,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:12,217 INFO Connection check task start + +2025-09-24 06:33:12,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:12,217 INFO Out dated connection ,size=0 + +2025-09-24 06:33:12,217 INFO Connection check task end + +2025-09-24 06:33:14,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:15,217 INFO Connection check task start + +2025-09-24 06:33:15,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:15,217 INFO Out dated connection ,size=0 + +2025-09-24 06:33:15,217 INFO Connection check task end + +2025-09-24 06:33:17,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:18,219 INFO Connection check task start + +2025-09-24 06:33:18,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:18,220 INFO Out dated connection ,size=0 + +2025-09-24 06:33:18,220 INFO Connection check task end + +2025-09-24 06:33:20,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:21,221 INFO Connection check task start + +2025-09-24 06:33:21,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:21,222 INFO Out dated connection ,size=0 + +2025-09-24 06:33:21,222 INFO Connection check task end + +2025-09-24 06:33:23,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:24,222 INFO Connection check task start + +2025-09-24 06:33:24,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:24,223 INFO Out dated connection ,size=0 + +2025-09-24 06:33:24,223 INFO Connection check task end + +2025-09-24 06:33:26,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:27,223 INFO Connection check task start + +2025-09-24 06:33:27,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:27,223 INFO Out dated connection ,size=0 + +2025-09-24 06:33:27,223 INFO Connection check task end + +2025-09-24 06:33:29,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:30,224 INFO Connection check task start + +2025-09-24 06:33:30,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:30,224 INFO Out dated connection ,size=0 + +2025-09-24 06:33:30,224 INFO Connection check task end + +2025-09-24 06:33:32,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:33,224 INFO Connection check task start + +2025-09-24 06:33:33,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:33,225 INFO Out dated connection ,size=0 + +2025-09-24 06:33:33,225 INFO Connection check task end + +2025-09-24 06:33:35,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:36,225 INFO Connection check task start + +2025-09-24 06:33:36,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:36,225 INFO Out dated connection ,size=0 + +2025-09-24 06:33:36,225 INFO Connection check task end + +2025-09-24 06:33:38,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:39,226 INFO Connection check task start + +2025-09-24 06:33:39,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:39,226 INFO Out dated connection ,size=0 + +2025-09-24 06:33:39,226 INFO Connection check task end + +2025-09-24 06:33:41,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:42,226 INFO Connection check task start + +2025-09-24 06:33:42,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:42,226 INFO Out dated connection ,size=0 + +2025-09-24 06:33:42,227 INFO Connection check task end + +2025-09-24 06:33:44,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:45,227 INFO Connection check task start + +2025-09-24 06:33:45,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:45,227 INFO Out dated connection ,size=0 + +2025-09-24 06:33:45,227 INFO Connection check task end + +2025-09-24 06:33:47,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:48,227 INFO Connection check task start + +2025-09-24 06:33:48,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:48,227 INFO Out dated connection ,size=0 + +2025-09-24 06:33:48,227 INFO Connection check task end + +2025-09-24 06:33:50,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:51,228 INFO Connection check task start + +2025-09-24 06:33:51,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:51,246 INFO Out dated connection ,size=0 + +2025-09-24 06:33:51,246 INFO Connection check task end + +2025-09-24 06:33:53,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:54,247 INFO Connection check task start + +2025-09-24 06:33:54,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:54,247 INFO Out dated connection ,size=0 + +2025-09-24 06:33:54,247 INFO Connection check task end + +2025-09-24 06:33:56,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:33:57,247 INFO Connection check task start + +2025-09-24 06:33:57,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:33:57,248 INFO Out dated connection ,size=0 + +2025-09-24 06:33:57,248 INFO Connection check task end + +2025-09-24 06:33:59,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:00,249 INFO Connection check task start + +2025-09-24 06:34:00,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:00,250 INFO Out dated connection ,size=0 + +2025-09-24 06:34:00,250 INFO Connection check task end + +2025-09-24 06:34:02,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:03,252 INFO Connection check task start + +2025-09-24 06:34:03,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:03,252 INFO Out dated connection ,size=0 + +2025-09-24 06:34:03,252 INFO Connection check task end + +2025-09-24 06:34:05,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:06,252 INFO Connection check task start + +2025-09-24 06:34:06,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:06,252 INFO Out dated connection ,size=0 + +2025-09-24 06:34:06,252 INFO Connection check task end + +2025-09-24 06:34:08,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:09,253 INFO Connection check task start + +2025-09-24 06:34:09,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:09,253 INFO Out dated connection ,size=0 + +2025-09-24 06:34:09,253 INFO Connection check task end + +2025-09-24 06:34:11,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:12,253 INFO Connection check task start + +2025-09-24 06:34:12,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:12,254 INFO Out dated connection ,size=0 + +2025-09-24 06:34:12,254 INFO Connection check task end + +2025-09-24 06:34:14,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:15,255 INFO Connection check task start + +2025-09-24 06:34:15,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:15,255 INFO Out dated connection ,size=0 + +2025-09-24 06:34:15,255 INFO Connection check task end + +2025-09-24 06:34:17,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:18,255 INFO Connection check task start + +2025-09-24 06:34:18,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:18,255 INFO Out dated connection ,size=0 + +2025-09-24 06:34:18,255 INFO Connection check task end + +2025-09-24 06:34:20,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:21,255 INFO Connection check task start + +2025-09-24 06:34:21,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:21,256 INFO Out dated connection ,size=0 + +2025-09-24 06:34:21,256 INFO Connection check task end + +2025-09-24 06:34:23,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:24,256 INFO Connection check task start + +2025-09-24 06:34:24,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:24,256 INFO Out dated connection ,size=0 + +2025-09-24 06:34:24,257 INFO Connection check task end + +2025-09-24 06:34:26,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:27,257 INFO Connection check task start + +2025-09-24 06:34:27,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:27,257 INFO Out dated connection ,size=0 + +2025-09-24 06:34:27,257 INFO Connection check task end + +2025-09-24 06:34:29,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:30,258 INFO Connection check task start + +2025-09-24 06:34:30,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:30,258 INFO Out dated connection ,size=0 + +2025-09-24 06:34:30,258 INFO Connection check task end + +2025-09-24 06:34:32,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:33,259 INFO Connection check task start + +2025-09-24 06:34:33,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:33,259 INFO Out dated connection ,size=0 + +2025-09-24 06:34:33,259 INFO Connection check task end + +2025-09-24 06:34:35,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:36,260 INFO Connection check task start + +2025-09-24 06:34:36,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:36,260 INFO Out dated connection ,size=0 + +2025-09-24 06:34:36,260 INFO Connection check task end + +2025-09-24 06:34:38,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:39,260 INFO Connection check task start + +2025-09-24 06:34:39,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:39,261 INFO Out dated connection ,size=0 + +2025-09-24 06:34:39,261 INFO Connection check task end + +2025-09-24 06:34:41,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:42,261 INFO Connection check task start + +2025-09-24 06:34:42,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:42,261 INFO Out dated connection ,size=0 + +2025-09-24 06:34:42,262 INFO Connection check task end + +2025-09-24 06:34:44,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:45,263 INFO Connection check task start + +2025-09-24 06:34:45,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:45,263 INFO Out dated connection ,size=0 + +2025-09-24 06:34:45,263 INFO Connection check task end + +2025-09-24 06:34:47,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:48,264 INFO Connection check task start + +2025-09-24 06:34:48,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:48,264 INFO Out dated connection ,size=0 + +2025-09-24 06:34:48,265 INFO Connection check task end + +2025-09-24 06:34:50,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:51,265 INFO Connection check task start + +2025-09-24 06:34:51,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:51,265 INFO Out dated connection ,size=0 + +2025-09-24 06:34:51,265 INFO Connection check task end + +2025-09-24 06:34:53,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:54,265 INFO Connection check task start + +2025-09-24 06:34:54,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:54,265 INFO Out dated connection ,size=0 + +2025-09-24 06:34:54,265 INFO Connection check task end + +2025-09-24 06:34:56,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:34:57,266 INFO Connection check task start + +2025-09-24 06:34:57,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:34:57,266 INFO Out dated connection ,size=0 + +2025-09-24 06:34:57,266 INFO Connection check task end + +2025-09-24 06:34:59,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:00,267 INFO Connection check task start + +2025-09-24 06:35:00,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:00,268 INFO Out dated connection ,size=0 + +2025-09-24 06:35:00,268 INFO Connection check task end + +2025-09-24 06:35:02,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:03,269 INFO Connection check task start + +2025-09-24 06:35:03,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:03,270 INFO Out dated connection ,size=0 + +2025-09-24 06:35:03,270 INFO Connection check task end + +2025-09-24 06:35:05,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:06,271 INFO Connection check task start + +2025-09-24 06:35:06,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:06,271 INFO Out dated connection ,size=0 + +2025-09-24 06:35:06,271 INFO Connection check task end + +2025-09-24 06:35:08,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:09,271 INFO Connection check task start + +2025-09-24 06:35:09,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:09,272 INFO Out dated connection ,size=0 + +2025-09-24 06:35:09,272 INFO Connection check task end + +2025-09-24 06:35:11,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:12,274 INFO Connection check task start + +2025-09-24 06:35:12,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:12,274 INFO Out dated connection ,size=0 + +2025-09-24 06:35:12,274 INFO Connection check task end + +2025-09-24 06:35:14,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:15,274 INFO Connection check task start + +2025-09-24 06:35:15,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:15,274 INFO Out dated connection ,size=0 + +2025-09-24 06:35:15,274 INFO Connection check task end + +2025-09-24 06:35:17,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:18,275 INFO Connection check task start + +2025-09-24 06:35:18,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:18,275 INFO Out dated connection ,size=0 + +2025-09-24 06:35:18,275 INFO Connection check task end + +2025-09-24 06:35:20,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:21,275 INFO Connection check task start + +2025-09-24 06:35:21,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:21,276 INFO Out dated connection ,size=0 + +2025-09-24 06:35:21,276 INFO Connection check task end + +2025-09-24 06:35:23,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:24,277 INFO Connection check task start + +2025-09-24 06:35:24,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:24,277 INFO Out dated connection ,size=0 + +2025-09-24 06:35:24,277 INFO Connection check task end + +2025-09-24 06:35:26,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:27,278 INFO Connection check task start + +2025-09-24 06:35:27,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:27,278 INFO Out dated connection ,size=0 + +2025-09-24 06:35:27,278 INFO Connection check task end + +2025-09-24 06:35:29,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:30,279 INFO Connection check task start + +2025-09-24 06:35:30,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:30,279 INFO Out dated connection ,size=0 + +2025-09-24 06:35:30,279 INFO Connection check task end + +2025-09-24 06:35:32,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:33,281 INFO Connection check task start + +2025-09-24 06:35:33,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:33,281 INFO Out dated connection ,size=0 + +2025-09-24 06:35:33,281 INFO Connection check task end + +2025-09-24 06:35:35,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:36,283 INFO Connection check task start + +2025-09-24 06:35:36,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:36,283 INFO Out dated connection ,size=0 + +2025-09-24 06:35:36,283 INFO Connection check task end + +2025-09-24 06:35:38,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:39,284 INFO Connection check task start + +2025-09-24 06:35:39,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:39,284 INFO Out dated connection ,size=0 + +2025-09-24 06:35:39,284 INFO Connection check task end + +2025-09-24 06:35:41,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:42,285 INFO Connection check task start + +2025-09-24 06:35:42,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:42,285 INFO Out dated connection ,size=0 + +2025-09-24 06:35:42,285 INFO Connection check task end + +2025-09-24 06:35:44,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:45,287 INFO Connection check task start + +2025-09-24 06:35:45,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:45,287 INFO Out dated connection ,size=0 + +2025-09-24 06:35:45,287 INFO Connection check task end + +2025-09-24 06:35:47,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:48,287 INFO Connection check task start + +2025-09-24 06:35:48,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:48,297 INFO Out dated connection ,size=0 + +2025-09-24 06:35:48,297 INFO Connection check task end + +2025-09-24 06:35:50,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:51,298 INFO Connection check task start + +2025-09-24 06:35:51,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:51,299 INFO Out dated connection ,size=0 + +2025-09-24 06:35:51,299 INFO Connection check task end + +2025-09-24 06:35:53,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:54,301 INFO Connection check task start + +2025-09-24 06:35:54,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:54,301 INFO Out dated connection ,size=0 + +2025-09-24 06:35:54,301 INFO Connection check task end + +2025-09-24 06:35:56,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:35:57,301 INFO Connection check task start + +2025-09-24 06:35:57,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:35:57,302 INFO Out dated connection ,size=0 + +2025-09-24 06:35:57,302 INFO Connection check task end + +2025-09-24 06:35:59,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:00,302 INFO Connection check task start + +2025-09-24 06:36:00,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:00,303 INFO Out dated connection ,size=0 + +2025-09-24 06:36:00,303 INFO Connection check task end + +2025-09-24 06:36:02,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:03,304 INFO Connection check task start + +2025-09-24 06:36:03,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:03,304 INFO Out dated connection ,size=0 + +2025-09-24 06:36:03,304 INFO Connection check task end + +2025-09-24 06:36:05,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:06,307 INFO Connection check task start + +2025-09-24 06:36:06,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:06,307 INFO Out dated connection ,size=0 + +2025-09-24 06:36:06,307 INFO Connection check task end + +2025-09-24 06:36:08,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:09,308 INFO Connection check task start + +2025-09-24 06:36:09,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:09,308 INFO Out dated connection ,size=0 + +2025-09-24 06:36:09,308 INFO Connection check task end + +2025-09-24 06:36:11,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:12,311 INFO Connection check task start + +2025-09-24 06:36:12,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:12,311 INFO Out dated connection ,size=0 + +2025-09-24 06:36:12,311 INFO Connection check task end + +2025-09-24 06:36:14,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:15,311 INFO Connection check task start + +2025-09-24 06:36:15,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:15,311 INFO Out dated connection ,size=0 + +2025-09-24 06:36:15,312 INFO Connection check task end + +2025-09-24 06:36:17,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:18,312 INFO Connection check task start + +2025-09-24 06:36:18,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:18,312 INFO Out dated connection ,size=0 + +2025-09-24 06:36:18,312 INFO Connection check task end + +2025-09-24 06:36:20,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:21,312 INFO Connection check task start + +2025-09-24 06:36:21,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:21,312 INFO Out dated connection ,size=0 + +2025-09-24 06:36:21,313 INFO Connection check task end + +2025-09-24 06:36:23,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:24,314 INFO Connection check task start + +2025-09-24 06:36:24,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:24,314 INFO Out dated connection ,size=0 + +2025-09-24 06:36:24,314 INFO Connection check task end + +2025-09-24 06:36:26,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:27,315 INFO Connection check task start + +2025-09-24 06:36:27,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:27,315 INFO Out dated connection ,size=0 + +2025-09-24 06:36:27,315 INFO Connection check task end + +2025-09-24 06:36:29,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:30,316 INFO Connection check task start + +2025-09-24 06:36:30,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:30,317 INFO Out dated connection ,size=0 + +2025-09-24 06:36:30,317 INFO Connection check task end + +2025-09-24 06:36:32,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:33,317 INFO Connection check task start + +2025-09-24 06:36:33,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:33,317 INFO Out dated connection ,size=0 + +2025-09-24 06:36:33,317 INFO Connection check task end + +2025-09-24 06:36:35,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:36,317 INFO Connection check task start + +2025-09-24 06:36:36,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:36,317 INFO Out dated connection ,size=0 + +2025-09-24 06:36:36,317 INFO Connection check task end + +2025-09-24 06:36:38,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:39,319 INFO Connection check task start + +2025-09-24 06:36:39,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:39,319 INFO Out dated connection ,size=0 + +2025-09-24 06:36:39,319 INFO Connection check task end + +2025-09-24 06:36:41,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:42,319 INFO Connection check task start + +2025-09-24 06:36:42,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:42,319 INFO Out dated connection ,size=0 + +2025-09-24 06:36:42,319 INFO Connection check task end + +2025-09-24 06:36:44,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:45,321 INFO Connection check task start + +2025-09-24 06:36:45,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:45,321 INFO Out dated connection ,size=0 + +2025-09-24 06:36:45,321 INFO Connection check task end + +2025-09-24 06:36:47,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:48,322 INFO Connection check task start + +2025-09-24 06:36:48,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:48,322 INFO Out dated connection ,size=0 + +2025-09-24 06:36:48,322 INFO Connection check task end + +2025-09-24 06:36:50,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:51,324 INFO Connection check task start + +2025-09-24 06:36:51,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:51,324 INFO Out dated connection ,size=0 + +2025-09-24 06:36:51,324 INFO Connection check task end + +2025-09-24 06:36:53,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:54,324 INFO Connection check task start + +2025-09-24 06:36:54,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:54,324 INFO Out dated connection ,size=0 + +2025-09-24 06:36:54,324 INFO Connection check task end + +2025-09-24 06:36:56,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:36:57,326 INFO Connection check task start + +2025-09-24 06:36:57,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:36:57,327 INFO Out dated connection ,size=0 + +2025-09-24 06:36:57,327 INFO Connection check task end + +2025-09-24 06:36:59,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:00,328 INFO Connection check task start + +2025-09-24 06:37:00,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:00,328 INFO Out dated connection ,size=0 + +2025-09-24 06:37:00,328 INFO Connection check task end + +2025-09-24 06:37:02,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:03,328 INFO Connection check task start + +2025-09-24 06:37:03,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:03,328 INFO Out dated connection ,size=0 + +2025-09-24 06:37:03,328 INFO Connection check task end + +2025-09-24 06:37:05,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:06,329 INFO Connection check task start + +2025-09-24 06:37:06,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:06,329 INFO Out dated connection ,size=0 + +2025-09-24 06:37:06,329 INFO Connection check task end + +2025-09-24 06:37:08,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:09,330 INFO Connection check task start + +2025-09-24 06:37:09,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:09,330 INFO Out dated connection ,size=0 + +2025-09-24 06:37:09,330 INFO Connection check task end + +2025-09-24 06:37:11,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:12,330 INFO Connection check task start + +2025-09-24 06:37:12,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:12,330 INFO Out dated connection ,size=0 + +2025-09-24 06:37:12,330 INFO Connection check task end + +2025-09-24 06:37:14,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:15,330 INFO Connection check task start + +2025-09-24 06:37:15,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:15,331 INFO Out dated connection ,size=0 + +2025-09-24 06:37:15,331 INFO Connection check task end + +2025-09-24 06:37:17,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:18,331 INFO Connection check task start + +2025-09-24 06:37:18,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:18,331 INFO Out dated connection ,size=0 + +2025-09-24 06:37:18,331 INFO Connection check task end + +2025-09-24 06:37:20,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:21,331 INFO Connection check task start + +2025-09-24 06:37:21,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:21,331 INFO Out dated connection ,size=0 + +2025-09-24 06:37:21,331 INFO Connection check task end + +2025-09-24 06:37:23,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:24,332 INFO Connection check task start + +2025-09-24 06:37:24,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:24,332 INFO Out dated connection ,size=0 + +2025-09-24 06:37:24,332 INFO Connection check task end + +2025-09-24 06:37:26,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:27,333 INFO Connection check task start + +2025-09-24 06:37:27,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:27,333 INFO Out dated connection ,size=0 + +2025-09-24 06:37:27,333 INFO Connection check task end + +2025-09-24 06:37:29,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:30,334 INFO Connection check task start + +2025-09-24 06:37:30,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:30,334 INFO Out dated connection ,size=0 + +2025-09-24 06:37:30,334 INFO Connection check task end + +2025-09-24 06:37:32,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:33,337 INFO Connection check task start + +2025-09-24 06:37:33,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:33,337 INFO Out dated connection ,size=0 + +2025-09-24 06:37:33,337 INFO Connection check task end + +2025-09-24 06:37:35,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:36,337 INFO Connection check task start + +2025-09-24 06:37:36,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:36,337 INFO Out dated connection ,size=0 + +2025-09-24 06:37:36,337 INFO Connection check task end + +2025-09-24 06:37:38,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:39,338 INFO Connection check task start + +2025-09-24 06:37:39,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:39,338 INFO Out dated connection ,size=0 + +2025-09-24 06:37:39,338 INFO Connection check task end + +2025-09-24 06:37:41,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:42,339 INFO Connection check task start + +2025-09-24 06:37:42,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:42,339 INFO Out dated connection ,size=0 + +2025-09-24 06:37:42,339 INFO Connection check task end + +2025-09-24 06:37:44,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:45,341 INFO Connection check task start + +2025-09-24 06:37:45,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:45,341 INFO Out dated connection ,size=0 + +2025-09-24 06:37:45,341 INFO Connection check task end + +2025-09-24 06:37:47,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:48,341 INFO Connection check task start + +2025-09-24 06:37:48,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:48,357 INFO Out dated connection ,size=0 + +2025-09-24 06:37:48,357 INFO Connection check task end + +2025-09-24 06:37:50,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:51,357 INFO Connection check task start + +2025-09-24 06:37:51,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:51,357 INFO Out dated connection ,size=0 + +2025-09-24 06:37:51,357 INFO Connection check task end + +2025-09-24 06:37:53,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:54,358 INFO Connection check task start + +2025-09-24 06:37:54,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:54,358 INFO Out dated connection ,size=0 + +2025-09-24 06:37:54,358 INFO Connection check task end + +2025-09-24 06:37:56,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:37:57,358 INFO Connection check task start + +2025-09-24 06:37:57,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:37:57,358 INFO Out dated connection ,size=0 + +2025-09-24 06:37:57,358 INFO Connection check task end + +2025-09-24 06:37:59,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:00,359 INFO Connection check task start + +2025-09-24 06:38:00,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:00,359 INFO Out dated connection ,size=0 + +2025-09-24 06:38:00,359 INFO Connection check task end + +2025-09-24 06:38:02,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:03,361 INFO Connection check task start + +2025-09-24 06:38:03,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:03,361 INFO Out dated connection ,size=0 + +2025-09-24 06:38:03,361 INFO Connection check task end + +2025-09-24 06:38:05,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:06,361 INFO Connection check task start + +2025-09-24 06:38:06,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:06,361 INFO Out dated connection ,size=0 + +2025-09-24 06:38:06,361 INFO Connection check task end + +2025-09-24 06:38:08,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:09,362 INFO Connection check task start + +2025-09-24 06:38:09,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:09,362 INFO Out dated connection ,size=0 + +2025-09-24 06:38:09,362 INFO Connection check task end + +2025-09-24 06:38:11,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:12,364 INFO Connection check task start + +2025-09-24 06:38:12,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:12,364 INFO Out dated connection ,size=0 + +2025-09-24 06:38:12,364 INFO Connection check task end + +2025-09-24 06:38:14,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:15,366 INFO Connection check task start + +2025-09-24 06:38:15,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:15,366 INFO Out dated connection ,size=0 + +2025-09-24 06:38:15,366 INFO Connection check task end + +2025-09-24 06:38:17,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:18,366 INFO Connection check task start + +2025-09-24 06:38:18,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:18,367 INFO Out dated connection ,size=0 + +2025-09-24 06:38:18,367 INFO Connection check task end + +2025-09-24 06:38:20,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:21,367 INFO Connection check task start + +2025-09-24 06:38:21,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:21,368 INFO Out dated connection ,size=0 + +2025-09-24 06:38:21,368 INFO Connection check task end + +2025-09-24 06:38:23,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:24,369 INFO Connection check task start + +2025-09-24 06:38:24,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:24,370 INFO Out dated connection ,size=0 + +2025-09-24 06:38:24,370 INFO Connection check task end + +2025-09-24 06:38:26,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:27,372 INFO Connection check task start + +2025-09-24 06:38:27,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:27,372 INFO Out dated connection ,size=0 + +2025-09-24 06:38:27,372 INFO Connection check task end + +2025-09-24 06:38:29,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:30,372 INFO Connection check task start + +2025-09-24 06:38:30,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:30,373 INFO Out dated connection ,size=0 + +2025-09-24 06:38:30,373 INFO Connection check task end + +2025-09-24 06:38:32,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:33,374 INFO Connection check task start + +2025-09-24 06:38:33,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:33,374 INFO Out dated connection ,size=0 + +2025-09-24 06:38:33,374 INFO Connection check task end + +2025-09-24 06:38:35,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:36,375 INFO Connection check task start + +2025-09-24 06:38:36,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:36,375 INFO Out dated connection ,size=0 + +2025-09-24 06:38:36,375 INFO Connection check task end + +2025-09-24 06:38:38,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:39,377 INFO Connection check task start + +2025-09-24 06:38:39,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:39,377 INFO Out dated connection ,size=0 + +2025-09-24 06:38:39,377 INFO Connection check task end + +2025-09-24 06:38:41,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:42,378 INFO Connection check task start + +2025-09-24 06:38:42,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:42,378 INFO Out dated connection ,size=0 + +2025-09-24 06:38:42,378 INFO Connection check task end + +2025-09-24 06:38:44,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:45,379 INFO Connection check task start + +2025-09-24 06:38:45,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:45,379 INFO Out dated connection ,size=0 + +2025-09-24 06:38:45,379 INFO Connection check task end + +2025-09-24 06:38:47,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:48,380 INFO Connection check task start + +2025-09-24 06:38:48,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:48,380 INFO Out dated connection ,size=0 + +2025-09-24 06:38:48,380 INFO Connection check task end + +2025-09-24 06:38:50,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:51,380 INFO Connection check task start + +2025-09-24 06:38:51,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:51,381 INFO Out dated connection ,size=0 + +2025-09-24 06:38:51,381 INFO Connection check task end + +2025-09-24 06:38:53,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:54,382 INFO Connection check task start + +2025-09-24 06:38:54,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:54,382 INFO Out dated connection ,size=0 + +2025-09-24 06:38:54,382 INFO Connection check task end + +2025-09-24 06:38:56,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:38:57,382 INFO Connection check task start + +2025-09-24 06:38:57,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:38:57,383 INFO Out dated connection ,size=0 + +2025-09-24 06:38:57,383 INFO Connection check task end + +2025-09-24 06:38:59,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:00,385 INFO Connection check task start + +2025-09-24 06:39:00,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:00,385 INFO Out dated connection ,size=0 + +2025-09-24 06:39:00,385 INFO Connection check task end + +2025-09-24 06:39:02,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:03,386 INFO Connection check task start + +2025-09-24 06:39:03,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:03,386 INFO Out dated connection ,size=0 + +2025-09-24 06:39:03,386 INFO Connection check task end + +2025-09-24 06:39:05,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:06,388 INFO Connection check task start + +2025-09-24 06:39:06,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:06,388 INFO Out dated connection ,size=0 + +2025-09-24 06:39:06,389 INFO Connection check task end + +2025-09-24 06:39:08,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:09,390 INFO Connection check task start + +2025-09-24 06:39:09,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:09,390 INFO Out dated connection ,size=0 + +2025-09-24 06:39:09,390 INFO Connection check task end + +2025-09-24 06:39:11,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:12,391 INFO Connection check task start + +2025-09-24 06:39:12,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:12,391 INFO Out dated connection ,size=0 + +2025-09-24 06:39:12,392 INFO Connection check task end + +2025-09-24 06:39:14,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:15,392 INFO Connection check task start + +2025-09-24 06:39:15,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:15,392 INFO Out dated connection ,size=0 + +2025-09-24 06:39:15,392 INFO Connection check task end + +2025-09-24 06:39:17,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:18,392 INFO Connection check task start + +2025-09-24 06:39:18,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:18,392 INFO Out dated connection ,size=0 + +2025-09-24 06:39:18,392 INFO Connection check task end + +2025-09-24 06:39:20,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:21,393 INFO Connection check task start + +2025-09-24 06:39:21,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:21,393 INFO Out dated connection ,size=0 + +2025-09-24 06:39:21,393 INFO Connection check task end + +2025-09-24 06:39:23,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:24,393 INFO Connection check task start + +2025-09-24 06:39:24,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:24,393 INFO Out dated connection ,size=0 + +2025-09-24 06:39:24,394 INFO Connection check task end + +2025-09-24 06:39:26,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:27,395 INFO Connection check task start + +2025-09-24 06:39:27,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:27,395 INFO Out dated connection ,size=0 + +2025-09-24 06:39:27,395 INFO Connection check task end + +2025-09-24 06:39:29,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:30,395 INFO Connection check task start + +2025-09-24 06:39:30,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:30,395 INFO Out dated connection ,size=0 + +2025-09-24 06:39:30,395 INFO Connection check task end + +2025-09-24 06:39:32,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:33,396 INFO Connection check task start + +2025-09-24 06:39:33,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:33,396 INFO Out dated connection ,size=0 + +2025-09-24 06:39:33,396 INFO Connection check task end + +2025-09-24 06:39:35,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:36,398 INFO Connection check task start + +2025-09-24 06:39:36,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:36,398 INFO Out dated connection ,size=0 + +2025-09-24 06:39:36,398 INFO Connection check task end + +2025-09-24 06:39:38,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:39,398 INFO Connection check task start + +2025-09-24 06:39:39,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:39,398 INFO Out dated connection ,size=0 + +2025-09-24 06:39:39,398 INFO Connection check task end + +2025-09-24 06:39:41,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:42,401 INFO Connection check task start + +2025-09-24 06:39:42,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:42,401 INFO Out dated connection ,size=0 + +2025-09-24 06:39:42,401 INFO Connection check task end + +2025-09-24 06:39:44,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:45,402 INFO Connection check task start + +2025-09-24 06:39:45,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:45,402 INFO Out dated connection ,size=0 + +2025-09-24 06:39:45,402 INFO Connection check task end + +2025-09-24 06:39:47,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:48,403 INFO Connection check task start + +2025-09-24 06:39:48,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:48,403 INFO Out dated connection ,size=0 + +2025-09-24 06:39:48,403 INFO Connection check task end + +2025-09-24 06:39:50,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:51,405 INFO Connection check task start + +2025-09-24 06:39:51,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:51,406 INFO Out dated connection ,size=0 + +2025-09-24 06:39:51,406 INFO Connection check task end + +2025-09-24 06:39:53,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:54,406 INFO Connection check task start + +2025-09-24 06:39:54,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:54,406 INFO Out dated connection ,size=0 + +2025-09-24 06:39:54,407 INFO Connection check task end + +2025-09-24 06:39:56,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:39:57,407 INFO Connection check task start + +2025-09-24 06:39:57,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:39:57,407 INFO Out dated connection ,size=0 + +2025-09-24 06:39:57,407 INFO Connection check task end + +2025-09-24 06:39:59,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:00,409 INFO Connection check task start + +2025-09-24 06:40:00,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:00,410 INFO Out dated connection ,size=0 + +2025-09-24 06:40:00,410 INFO Connection check task end + +2025-09-24 06:40:02,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:03,411 INFO Connection check task start + +2025-09-24 06:40:03,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:03,411 INFO Out dated connection ,size=0 + +2025-09-24 06:40:03,411 INFO Connection check task end + +2025-09-24 06:40:05,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:06,413 INFO Connection check task start + +2025-09-24 06:40:06,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:06,413 INFO Out dated connection ,size=0 + +2025-09-24 06:40:06,413 INFO Connection check task end + +2025-09-24 06:40:08,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:09,415 INFO Connection check task start + +2025-09-24 06:40:09,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:09,415 INFO Out dated connection ,size=0 + +2025-09-24 06:40:09,415 INFO Connection check task end + +2025-09-24 06:40:11,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:12,416 INFO Connection check task start + +2025-09-24 06:40:12,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:12,416 INFO Out dated connection ,size=0 + +2025-09-24 06:40:12,416 INFO Connection check task end + +2025-09-24 06:40:14,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:15,416 INFO Connection check task start + +2025-09-24 06:40:15,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:15,417 INFO Out dated connection ,size=0 + +2025-09-24 06:40:15,417 INFO Connection check task end + +2025-09-24 06:40:17,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:18,418 INFO Connection check task start + +2025-09-24 06:40:18,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:18,418 INFO Out dated connection ,size=0 + +2025-09-24 06:40:18,418 INFO Connection check task end + +2025-09-24 06:40:20,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:21,420 INFO Connection check task start + +2025-09-24 06:40:21,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:21,420 INFO Out dated connection ,size=0 + +2025-09-24 06:40:21,420 INFO Connection check task end + +2025-09-24 06:40:23,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:24,421 INFO Connection check task start + +2025-09-24 06:40:24,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:24,421 INFO Out dated connection ,size=0 + +2025-09-24 06:40:24,421 INFO Connection check task end + +2025-09-24 06:40:26,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:27,422 INFO Connection check task start + +2025-09-24 06:40:27,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:27,422 INFO Out dated connection ,size=0 + +2025-09-24 06:40:27,422 INFO Connection check task end + +2025-09-24 06:40:29,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:30,422 INFO Connection check task start + +2025-09-24 06:40:30,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:30,422 INFO Out dated connection ,size=0 + +2025-09-24 06:40:30,422 INFO Connection check task end + +2025-09-24 06:40:32,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:33,424 INFO Connection check task start + +2025-09-24 06:40:33,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:33,425 INFO Out dated connection ,size=0 + +2025-09-24 06:40:33,425 INFO Connection check task end + +2025-09-24 06:40:35,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:36,427 INFO Connection check task start + +2025-09-24 06:40:36,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:36,427 INFO Out dated connection ,size=0 + +2025-09-24 06:40:36,427 INFO Connection check task end + +2025-09-24 06:40:38,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:39,428 INFO Connection check task start + +2025-09-24 06:40:39,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:39,428 INFO Out dated connection ,size=0 + +2025-09-24 06:40:39,428 INFO Connection check task end + +2025-09-24 06:40:41,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:42,430 INFO Connection check task start + +2025-09-24 06:40:42,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:42,430 INFO Out dated connection ,size=0 + +2025-09-24 06:40:42,430 INFO Connection check task end + +2025-09-24 06:40:44,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:45,431 INFO Connection check task start + +2025-09-24 06:40:45,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:45,431 INFO Out dated connection ,size=0 + +2025-09-24 06:40:45,431 INFO Connection check task end + +2025-09-24 06:40:47,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:48,431 INFO Connection check task start + +2025-09-24 06:40:48,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:48,432 INFO Out dated connection ,size=0 + +2025-09-24 06:40:48,432 INFO Connection check task end + +2025-09-24 06:40:50,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:51,432 INFO Connection check task start + +2025-09-24 06:40:51,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:51,432 INFO Out dated connection ,size=0 + +2025-09-24 06:40:51,432 INFO Connection check task end + +2025-09-24 06:40:53,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:54,434 INFO Connection check task start + +2025-09-24 06:40:54,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:54,434 INFO Out dated connection ,size=0 + +2025-09-24 06:40:54,434 INFO Connection check task end + +2025-09-24 06:40:56,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:40:57,436 INFO Connection check task start + +2025-09-24 06:40:57,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:40:57,436 INFO Out dated connection ,size=0 + +2025-09-24 06:40:57,436 INFO Connection check task end + +2025-09-24 06:40:59,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:00,436 INFO Connection check task start + +2025-09-24 06:41:00,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:00,437 INFO Out dated connection ,size=0 + +2025-09-24 06:41:00,437 INFO Connection check task end + +2025-09-24 06:41:02,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:03,437 INFO Connection check task start + +2025-09-24 06:41:03,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:03,437 INFO Out dated connection ,size=0 + +2025-09-24 06:41:03,438 INFO Connection check task end + +2025-09-24 06:41:05,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:06,438 INFO Connection check task start + +2025-09-24 06:41:06,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:06,438 INFO Out dated connection ,size=0 + +2025-09-24 06:41:06,438 INFO Connection check task end + +2025-09-24 06:41:08,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:09,438 INFO Connection check task start + +2025-09-24 06:41:09,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:09,438 INFO Out dated connection ,size=0 + +2025-09-24 06:41:09,438 INFO Connection check task end + +2025-09-24 06:41:11,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:12,439 INFO Connection check task start + +2025-09-24 06:41:12,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:12,439 INFO Out dated connection ,size=0 + +2025-09-24 06:41:12,439 INFO Connection check task end + +2025-09-24 06:41:14,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:15,441 INFO Connection check task start + +2025-09-24 06:41:15,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:15,441 INFO Out dated connection ,size=0 + +2025-09-24 06:41:15,441 INFO Connection check task end + +2025-09-24 06:41:17,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:18,442 INFO Connection check task start + +2025-09-24 06:41:18,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:18,442 INFO Out dated connection ,size=0 + +2025-09-24 06:41:18,442 INFO Connection check task end + +2025-09-24 06:41:20,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:21,443 INFO Connection check task start + +2025-09-24 06:41:21,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:21,443 INFO Out dated connection ,size=0 + +2025-09-24 06:41:21,443 INFO Connection check task end + +2025-09-24 06:41:23,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:24,444 INFO Connection check task start + +2025-09-24 06:41:24,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:24,444 INFO Out dated connection ,size=0 + +2025-09-24 06:41:24,444 INFO Connection check task end + +2025-09-24 06:41:26,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:27,445 INFO Connection check task start + +2025-09-24 06:41:27,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:27,445 INFO Out dated connection ,size=0 + +2025-09-24 06:41:27,445 INFO Connection check task end + +2025-09-24 06:41:29,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:30,447 INFO Connection check task start + +2025-09-24 06:41:30,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:30,447 INFO Out dated connection ,size=0 + +2025-09-24 06:41:30,447 INFO Connection check task end + +2025-09-24 06:41:32,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:33,447 INFO Connection check task start + +2025-09-24 06:41:33,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:33,448 INFO Out dated connection ,size=0 + +2025-09-24 06:41:33,448 INFO Connection check task end + +2025-09-24 06:41:35,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:36,448 INFO Connection check task start + +2025-09-24 06:41:36,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:36,448 INFO Out dated connection ,size=0 + +2025-09-24 06:41:36,448 INFO Connection check task end + +2025-09-24 06:41:38,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:39,449 INFO Connection check task start + +2025-09-24 06:41:39,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:39,449 INFO Out dated connection ,size=0 + +2025-09-24 06:41:39,449 INFO Connection check task end + +2025-09-24 06:41:41,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:42,449 INFO Connection check task start + +2025-09-24 06:41:42,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:42,449 INFO Out dated connection ,size=0 + +2025-09-24 06:41:42,449 INFO Connection check task end + +2025-09-24 06:41:44,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:45,450 INFO Connection check task start + +2025-09-24 06:41:45,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:45,450 INFO Out dated connection ,size=0 + +2025-09-24 06:41:45,450 INFO Connection check task end + +2025-09-24 06:41:47,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:48,451 INFO Connection check task start + +2025-09-24 06:41:48,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:48,451 INFO Out dated connection ,size=0 + +2025-09-24 06:41:48,451 INFO Connection check task end + +2025-09-24 06:41:50,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:51,453 INFO Connection check task start + +2025-09-24 06:41:51,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:51,454 INFO Out dated connection ,size=0 + +2025-09-24 06:41:51,454 INFO Connection check task end + +2025-09-24 06:41:53,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:54,454 INFO Connection check task start + +2025-09-24 06:41:54,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:54,454 INFO Out dated connection ,size=0 + +2025-09-24 06:41:54,454 INFO Connection check task end + +2025-09-24 06:41:56,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:41:57,455 INFO Connection check task start + +2025-09-24 06:41:57,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:41:57,455 INFO Out dated connection ,size=0 + +2025-09-24 06:41:57,455 INFO Connection check task end + +2025-09-24 06:41:59,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:00,457 INFO Connection check task start + +2025-09-24 06:42:00,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:00,457 INFO Out dated connection ,size=0 + +2025-09-24 06:42:00,457 INFO Connection check task end + +2025-09-24 06:42:02,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:03,457 INFO Connection check task start + +2025-09-24 06:42:03,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:03,458 INFO Out dated connection ,size=0 + +2025-09-24 06:42:03,458 INFO Connection check task end + +2025-09-24 06:42:05,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:06,458 INFO Connection check task start + +2025-09-24 06:42:06,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:06,458 INFO Out dated connection ,size=0 + +2025-09-24 06:42:06,458 INFO Connection check task end + +2025-09-24 06:42:08,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:09,458 INFO Connection check task start + +2025-09-24 06:42:09,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:09,459 INFO Out dated connection ,size=0 + +2025-09-24 06:42:09,459 INFO Connection check task end + +2025-09-24 06:42:11,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:12,459 INFO Connection check task start + +2025-09-24 06:42:12,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:12,459 INFO Out dated connection ,size=0 + +2025-09-24 06:42:12,459 INFO Connection check task end + +2025-09-24 06:42:14,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:15,460 INFO Connection check task start + +2025-09-24 06:42:15,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:15,460 INFO Out dated connection ,size=0 + +2025-09-24 06:42:15,460 INFO Connection check task end + +2025-09-24 06:42:17,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:18,461 INFO Connection check task start + +2025-09-24 06:42:18,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:18,461 INFO Out dated connection ,size=0 + +2025-09-24 06:42:18,461 INFO Connection check task end + +2025-09-24 06:42:20,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:21,462 INFO Connection check task start + +2025-09-24 06:42:21,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:21,463 INFO Out dated connection ,size=0 + +2025-09-24 06:42:21,463 INFO Connection check task end + +2025-09-24 06:42:23,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:24,463 INFO Connection check task start + +2025-09-24 06:42:24,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:24,463 INFO Out dated connection ,size=0 + +2025-09-24 06:42:24,464 INFO Connection check task end + +2025-09-24 06:42:26,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:27,465 INFO Connection check task start + +2025-09-24 06:42:27,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:27,465 INFO Out dated connection ,size=0 + +2025-09-24 06:42:27,465 INFO Connection check task end + +2025-09-24 06:42:29,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:30,467 INFO Connection check task start + +2025-09-24 06:42:30,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:30,467 INFO Out dated connection ,size=0 + +2025-09-24 06:42:30,467 INFO Connection check task end + +2025-09-24 06:42:32,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:33,468 INFO Connection check task start + +2025-09-24 06:42:33,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:33,468 INFO Out dated connection ,size=0 + +2025-09-24 06:42:33,469 INFO Connection check task end + +2025-09-24 06:42:35,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:36,470 INFO Connection check task start + +2025-09-24 06:42:36,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:36,471 INFO Out dated connection ,size=0 + +2025-09-24 06:42:36,471 INFO Connection check task end + +2025-09-24 06:42:38,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:39,471 INFO Connection check task start + +2025-09-24 06:42:39,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:39,472 INFO Out dated connection ,size=0 + +2025-09-24 06:42:39,472 INFO Connection check task end + +2025-09-24 06:42:41,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:42,472 INFO Connection check task start + +2025-09-24 06:42:42,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:42,472 INFO Out dated connection ,size=0 + +2025-09-24 06:42:42,472 INFO Connection check task end + +2025-09-24 06:42:44,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:45,472 INFO Connection check task start + +2025-09-24 06:42:45,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:45,472 INFO Out dated connection ,size=0 + +2025-09-24 06:42:45,472 INFO Connection check task end + +2025-09-24 06:42:47,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:48,473 INFO Connection check task start + +2025-09-24 06:42:48,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:48,473 INFO Out dated connection ,size=0 + +2025-09-24 06:42:48,473 INFO Connection check task end + +2025-09-24 06:42:50,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:51,474 INFO Connection check task start + +2025-09-24 06:42:51,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:51,474 INFO Out dated connection ,size=0 + +2025-09-24 06:42:51,474 INFO Connection check task end + +2025-09-24 06:42:53,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:54,475 INFO Connection check task start + +2025-09-24 06:42:54,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:54,476 INFO Out dated connection ,size=0 + +2025-09-24 06:42:54,476 INFO Connection check task end + +2025-09-24 06:42:56,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:42:57,478 INFO Connection check task start + +2025-09-24 06:42:57,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:42:57,478 INFO Out dated connection ,size=0 + +2025-09-24 06:42:57,478 INFO Connection check task end + +2025-09-24 06:42:59,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:00,479 INFO Connection check task start + +2025-09-24 06:43:00,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:00,479 INFO Out dated connection ,size=0 + +2025-09-24 06:43:00,479 INFO Connection check task end + +2025-09-24 06:43:02,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:03,480 INFO Connection check task start + +2025-09-24 06:43:03,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:03,481 INFO Out dated connection ,size=0 + +2025-09-24 06:43:03,481 INFO Connection check task end + +2025-09-24 06:43:05,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:06,483 INFO Connection check task start + +2025-09-24 06:43:06,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:06,483 INFO Out dated connection ,size=0 + +2025-09-24 06:43:06,483 INFO Connection check task end + +2025-09-24 06:43:08,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:09,484 INFO Connection check task start + +2025-09-24 06:43:09,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:09,485 INFO Out dated connection ,size=0 + +2025-09-24 06:43:09,485 INFO Connection check task end + +2025-09-24 06:43:11,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:12,485 INFO Connection check task start + +2025-09-24 06:43:12,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:12,485 INFO Out dated connection ,size=0 + +2025-09-24 06:43:12,485 INFO Connection check task end + +2025-09-24 06:43:14,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:15,487 INFO Connection check task start + +2025-09-24 06:43:15,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:15,488 INFO Out dated connection ,size=0 + +2025-09-24 06:43:15,488 INFO Connection check task end + +2025-09-24 06:43:17,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:18,488 INFO Connection check task start + +2025-09-24 06:43:18,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:18,488 INFO Out dated connection ,size=0 + +2025-09-24 06:43:18,488 INFO Connection check task end + +2025-09-24 06:43:20,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:21,489 INFO Connection check task start + +2025-09-24 06:43:21,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:21,490 INFO Out dated connection ,size=0 + +2025-09-24 06:43:21,490 INFO Connection check task end + +2025-09-24 06:43:23,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:24,491 INFO Connection check task start + +2025-09-24 06:43:24,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:24,491 INFO Out dated connection ,size=0 + +2025-09-24 06:43:24,491 INFO Connection check task end + +2025-09-24 06:43:26,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:27,492 INFO Connection check task start + +2025-09-24 06:43:27,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:27,493 INFO Out dated connection ,size=0 + +2025-09-24 06:43:27,493 INFO Connection check task end + +2025-09-24 06:43:29,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:30,494 INFO Connection check task start + +2025-09-24 06:43:30,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:30,495 INFO Out dated connection ,size=0 + +2025-09-24 06:43:30,495 INFO Connection check task end + +2025-09-24 06:43:32,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:33,495 INFO Connection check task start + +2025-09-24 06:43:33,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:33,495 INFO Out dated connection ,size=0 + +2025-09-24 06:43:33,495 INFO Connection check task end + +2025-09-24 06:43:35,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:36,496 INFO Connection check task start + +2025-09-24 06:43:36,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:36,496 INFO Out dated connection ,size=0 + +2025-09-24 06:43:36,496 INFO Connection check task end + +2025-09-24 06:43:38,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:39,497 INFO Connection check task start + +2025-09-24 06:43:39,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:39,497 INFO Out dated connection ,size=0 + +2025-09-24 06:43:39,497 INFO Connection check task end + +2025-09-24 06:43:41,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:42,497 INFO Connection check task start + +2025-09-24 06:43:42,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:42,497 INFO Out dated connection ,size=0 + +2025-09-24 06:43:42,497 INFO Connection check task end + +2025-09-24 06:43:44,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:45,498 INFO Connection check task start + +2025-09-24 06:43:45,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:45,498 INFO Out dated connection ,size=0 + +2025-09-24 06:43:45,498 INFO Connection check task end + +2025-09-24 06:43:47,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:48,499 INFO Connection check task start + +2025-09-24 06:43:48,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:48,499 INFO Out dated connection ,size=0 + +2025-09-24 06:43:48,499 INFO Connection check task end + +2025-09-24 06:43:50,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:51,500 INFO Connection check task start + +2025-09-24 06:43:51,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:51,500 INFO Out dated connection ,size=0 + +2025-09-24 06:43:51,500 INFO Connection check task end + +2025-09-24 06:43:53,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:54,501 INFO Connection check task start + +2025-09-24 06:43:54,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:54,518 INFO Out dated connection ,size=0 + +2025-09-24 06:43:54,518 INFO Connection check task end + +2025-09-24 06:43:56,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:43:57,519 INFO Connection check task start + +2025-09-24 06:43:57,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:43:57,519 INFO Out dated connection ,size=0 + +2025-09-24 06:43:57,519 INFO Connection check task end + +2025-09-24 06:43:59,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:00,520 INFO Connection check task start + +2025-09-24 06:44:00,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:00,520 INFO Out dated connection ,size=0 + +2025-09-24 06:44:00,520 INFO Connection check task end + +2025-09-24 06:44:02,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:03,521 INFO Connection check task start + +2025-09-24 06:44:03,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:03,521 INFO Out dated connection ,size=0 + +2025-09-24 06:44:03,521 INFO Connection check task end + +2025-09-24 06:44:05,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:06,521 INFO Connection check task start + +2025-09-24 06:44:06,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:06,521 INFO Out dated connection ,size=0 + +2025-09-24 06:44:06,521 INFO Connection check task end + +2025-09-24 06:44:08,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:09,523 INFO Connection check task start + +2025-09-24 06:44:09,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:09,523 INFO Out dated connection ,size=0 + +2025-09-24 06:44:09,524 INFO Connection check task end + +2025-09-24 06:44:11,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:12,524 INFO Connection check task start + +2025-09-24 06:44:12,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:12,524 INFO Out dated connection ,size=0 + +2025-09-24 06:44:12,524 INFO Connection check task end + +2025-09-24 06:44:14,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:15,525 INFO Connection check task start + +2025-09-24 06:44:15,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:15,525 INFO Out dated connection ,size=0 + +2025-09-24 06:44:15,525 INFO Connection check task end + +2025-09-24 06:44:17,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:18,525 INFO Connection check task start + +2025-09-24 06:44:18,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:18,526 INFO Out dated connection ,size=0 + +2025-09-24 06:44:18,526 INFO Connection check task end + +2025-09-24 06:44:20,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:21,532 INFO Connection check task start + +2025-09-24 06:44:21,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:21,532 INFO Out dated connection ,size=0 + +2025-09-24 06:44:21,532 INFO Connection check task end + +2025-09-24 06:44:23,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:24,534 INFO Connection check task start + +2025-09-24 06:44:24,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:24,535 INFO Out dated connection ,size=0 + +2025-09-24 06:44:24,535 INFO Connection check task end + +2025-09-24 06:44:26,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:27,536 INFO Connection check task start + +2025-09-24 06:44:27,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:27,536 INFO Out dated connection ,size=0 + +2025-09-24 06:44:27,536 INFO Connection check task end + +2025-09-24 06:44:29,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:30,536 INFO Connection check task start + +2025-09-24 06:44:30,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:30,537 INFO Out dated connection ,size=0 + +2025-09-24 06:44:30,537 INFO Connection check task end + +2025-09-24 06:44:32,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:33,538 INFO Connection check task start + +2025-09-24 06:44:33,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:33,538 INFO Out dated connection ,size=0 + +2025-09-24 06:44:33,538 INFO Connection check task end + +2025-09-24 06:44:35,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:36,539 INFO Connection check task start + +2025-09-24 06:44:36,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:36,539 INFO Out dated connection ,size=0 + +2025-09-24 06:44:36,539 INFO Connection check task end + +2025-09-24 06:44:38,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:39,541 INFO Connection check task start + +2025-09-24 06:44:39,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:39,541 INFO Out dated connection ,size=0 + +2025-09-24 06:44:39,541 INFO Connection check task end + +2025-09-24 06:44:41,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:42,542 INFO Connection check task start + +2025-09-24 06:44:42,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:42,542 INFO Out dated connection ,size=0 + +2025-09-24 06:44:42,542 INFO Connection check task end + +2025-09-24 06:44:44,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:45,543 INFO Connection check task start + +2025-09-24 06:44:45,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:45,543 INFO Out dated connection ,size=0 + +2025-09-24 06:44:45,544 INFO Connection check task end + +2025-09-24 06:44:47,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:48,544 INFO Connection check task start + +2025-09-24 06:44:48,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:48,544 INFO Out dated connection ,size=0 + +2025-09-24 06:44:48,544 INFO Connection check task end + +2025-09-24 06:44:50,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:51,546 INFO Connection check task start + +2025-09-24 06:44:51,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:51,546 INFO Out dated connection ,size=0 + +2025-09-24 06:44:51,546 INFO Connection check task end + +2025-09-24 06:44:53,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:54,547 INFO Connection check task start + +2025-09-24 06:44:54,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:54,547 INFO Out dated connection ,size=0 + +2025-09-24 06:44:54,547 INFO Connection check task end + +2025-09-24 06:44:56,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:44:57,549 INFO Connection check task start + +2025-09-24 06:44:57,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:44:57,550 INFO Out dated connection ,size=0 + +2025-09-24 06:44:57,550 INFO Connection check task end + +2025-09-24 06:44:59,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:00,550 INFO Connection check task start + +2025-09-24 06:45:00,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:00,550 INFO Out dated connection ,size=0 + +2025-09-24 06:45:00,550 INFO Connection check task end + +2025-09-24 06:45:02,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:03,550 INFO Connection check task start + +2025-09-24 06:45:03,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:03,551 INFO Out dated connection ,size=0 + +2025-09-24 06:45:03,551 INFO Connection check task end + +2025-09-24 06:45:05,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:06,551 INFO Connection check task start + +2025-09-24 06:45:06,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:06,551 INFO Out dated connection ,size=0 + +2025-09-24 06:45:06,551 INFO Connection check task end + +2025-09-24 06:45:08,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:09,552 INFO Connection check task start + +2025-09-24 06:45:09,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:09,552 INFO Out dated connection ,size=0 + +2025-09-24 06:45:09,552 INFO Connection check task end + +2025-09-24 06:45:11,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:12,554 INFO Connection check task start + +2025-09-24 06:45:12,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:12,554 INFO Out dated connection ,size=0 + +2025-09-24 06:45:12,554 INFO Connection check task end + +2025-09-24 06:45:14,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:15,556 INFO Connection check task start + +2025-09-24 06:45:15,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:15,556 INFO Out dated connection ,size=0 + +2025-09-24 06:45:15,556 INFO Connection check task end + +2025-09-24 06:45:17,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:18,557 INFO Connection check task start + +2025-09-24 06:45:18,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:18,557 INFO Out dated connection ,size=0 + +2025-09-24 06:45:18,557 INFO Connection check task end + +2025-09-24 06:45:20,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:21,557 INFO Connection check task start + +2025-09-24 06:45:21,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:21,558 INFO Out dated connection ,size=0 + +2025-09-24 06:45:21,558 INFO Connection check task end + +2025-09-24 06:45:23,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:24,560 INFO Connection check task start + +2025-09-24 06:45:24,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:24,560 INFO Out dated connection ,size=0 + +2025-09-24 06:45:24,560 INFO Connection check task end + +2025-09-24 06:45:26,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:27,562 INFO Connection check task start + +2025-09-24 06:45:27,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:27,562 INFO Out dated connection ,size=0 + +2025-09-24 06:45:27,562 INFO Connection check task end + +2025-09-24 06:45:29,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:30,562 INFO Connection check task start + +2025-09-24 06:45:30,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:30,563 INFO Out dated connection ,size=0 + +2025-09-24 06:45:30,563 INFO Connection check task end + +2025-09-24 06:45:32,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:33,563 INFO Connection check task start + +2025-09-24 06:45:33,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:33,563 INFO Out dated connection ,size=0 + +2025-09-24 06:45:33,563 INFO Connection check task end + +2025-09-24 06:45:35,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:36,564 INFO Connection check task start + +2025-09-24 06:45:36,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:36,565 INFO Out dated connection ,size=0 + +2025-09-24 06:45:36,565 INFO Connection check task end + +2025-09-24 06:45:38,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:39,566 INFO Connection check task start + +2025-09-24 06:45:39,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:39,566 INFO Out dated connection ,size=0 + +2025-09-24 06:45:39,566 INFO Connection check task end + +2025-09-24 06:45:41,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:42,567 INFO Connection check task start + +2025-09-24 06:45:42,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:42,567 INFO Out dated connection ,size=0 + +2025-09-24 06:45:42,567 INFO Connection check task end + +2025-09-24 06:45:44,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:45,569 INFO Connection check task start + +2025-09-24 06:45:45,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:45,570 INFO Out dated connection ,size=0 + +2025-09-24 06:45:45,570 INFO Connection check task end + +2025-09-24 06:45:47,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:48,571 INFO Connection check task start + +2025-09-24 06:45:48,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:48,572 INFO Out dated connection ,size=0 + +2025-09-24 06:45:48,572 INFO Connection check task end + +2025-09-24 06:45:50,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:51,572 INFO Connection check task start + +2025-09-24 06:45:51,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:51,572 INFO Out dated connection ,size=0 + +2025-09-24 06:45:51,572 INFO Connection check task end + +2025-09-24 06:45:53,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:54,574 INFO Connection check task start + +2025-09-24 06:45:54,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:54,574 INFO Out dated connection ,size=0 + +2025-09-24 06:45:54,574 INFO Connection check task end + +2025-09-24 06:45:56,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:45:57,574 INFO Connection check task start + +2025-09-24 06:45:57,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:45:57,575 INFO Out dated connection ,size=0 + +2025-09-24 06:45:57,575 INFO Connection check task end + +2025-09-24 06:45:59,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:00,577 INFO Connection check task start + +2025-09-24 06:46:00,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:00,577 INFO Out dated connection ,size=0 + +2025-09-24 06:46:00,577 INFO Connection check task end + +2025-09-24 06:46:02,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:03,578 INFO Connection check task start + +2025-09-24 06:46:03,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:03,578 INFO Out dated connection ,size=0 + +2025-09-24 06:46:03,578 INFO Connection check task end + +2025-09-24 06:46:05,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:06,579 INFO Connection check task start + +2025-09-24 06:46:06,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:06,579 INFO Out dated connection ,size=0 + +2025-09-24 06:46:06,579 INFO Connection check task end + +2025-09-24 06:46:08,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:09,581 INFO Connection check task start + +2025-09-24 06:46:09,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:09,581 INFO Out dated connection ,size=0 + +2025-09-24 06:46:09,581 INFO Connection check task end + +2025-09-24 06:46:11,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:12,581 INFO Connection check task start + +2025-09-24 06:46:12,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:12,582 INFO Out dated connection ,size=0 + +2025-09-24 06:46:12,582 INFO Connection check task end + +2025-09-24 06:46:14,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:15,582 INFO Connection check task start + +2025-09-24 06:46:15,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:15,582 INFO Out dated connection ,size=0 + +2025-09-24 06:46:15,582 INFO Connection check task end + +2025-09-24 06:46:17,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:18,582 INFO Connection check task start + +2025-09-24 06:46:18,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:18,582 INFO Out dated connection ,size=0 + +2025-09-24 06:46:18,582 INFO Connection check task end + +2025-09-24 06:46:20,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:21,583 INFO Connection check task start + +2025-09-24 06:46:21,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:21,583 INFO Out dated connection ,size=0 + +2025-09-24 06:46:21,583 INFO Connection check task end + +2025-09-24 06:46:23,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:24,584 INFO Connection check task start + +2025-09-24 06:46:24,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:24,584 INFO Out dated connection ,size=0 + +2025-09-24 06:46:24,584 INFO Connection check task end + +2025-09-24 06:46:26,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:27,584 INFO Connection check task start + +2025-09-24 06:46:27,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:27,584 INFO Out dated connection ,size=0 + +2025-09-24 06:46:27,584 INFO Connection check task end + +2025-09-24 06:46:29,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:30,585 INFO Connection check task start + +2025-09-24 06:46:30,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:30,585 INFO Out dated connection ,size=0 + +2025-09-24 06:46:30,585 INFO Connection check task end + +2025-09-24 06:46:32,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:33,585 INFO Connection check task start + +2025-09-24 06:46:33,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:33,586 INFO Out dated connection ,size=0 + +2025-09-24 06:46:33,586 INFO Connection check task end + +2025-09-24 06:46:35,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:36,587 INFO Connection check task start + +2025-09-24 06:46:36,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:36,587 INFO Out dated connection ,size=0 + +2025-09-24 06:46:36,588 INFO Connection check task end + +2025-09-24 06:46:38,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:39,588 INFO Connection check task start + +2025-09-24 06:46:39,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:39,588 INFO Out dated connection ,size=0 + +2025-09-24 06:46:39,588 INFO Connection check task end + +2025-09-24 06:46:41,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:42,590 INFO Connection check task start + +2025-09-24 06:46:42,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:42,591 INFO Out dated connection ,size=0 + +2025-09-24 06:46:42,591 INFO Connection check task end + +2025-09-24 06:46:44,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:45,591 INFO Connection check task start + +2025-09-24 06:46:45,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:45,591 INFO Out dated connection ,size=0 + +2025-09-24 06:46:45,591 INFO Connection check task end + +2025-09-24 06:46:47,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:48,592 INFO Connection check task start + +2025-09-24 06:46:48,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:48,592 INFO Out dated connection ,size=0 + +2025-09-24 06:46:48,592 INFO Connection check task end + +2025-09-24 06:46:50,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:51,593 INFO Connection check task start + +2025-09-24 06:46:51,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:51,593 INFO Out dated connection ,size=0 + +2025-09-24 06:46:51,593 INFO Connection check task end + +2025-09-24 06:46:53,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:54,594 INFO Connection check task start + +2025-09-24 06:46:54,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:54,594 INFO Out dated connection ,size=0 + +2025-09-24 06:46:54,594 INFO Connection check task end + +2025-09-24 06:46:56,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:46:57,596 INFO Connection check task start + +2025-09-24 06:46:57,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:46:57,596 INFO Out dated connection ,size=0 + +2025-09-24 06:46:57,596 INFO Connection check task end + +2025-09-24 06:46:59,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:00,598 INFO Connection check task start + +2025-09-24 06:47:00,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:00,598 INFO Out dated connection ,size=0 + +2025-09-24 06:47:00,598 INFO Connection check task end + +2025-09-24 06:47:02,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:03,600 INFO Connection check task start + +2025-09-24 06:47:03,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:03,600 INFO Out dated connection ,size=0 + +2025-09-24 06:47:03,600 INFO Connection check task end + +2025-09-24 06:47:05,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:06,602 INFO Connection check task start + +2025-09-24 06:47:06,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:06,602 INFO Out dated connection ,size=0 + +2025-09-24 06:47:06,603 INFO Connection check task end + +2025-09-24 06:47:08,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:09,603 INFO Connection check task start + +2025-09-24 06:47:09,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:09,603 INFO Out dated connection ,size=0 + +2025-09-24 06:47:09,603 INFO Connection check task end + +2025-09-24 06:47:11,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:12,605 INFO Connection check task start + +2025-09-24 06:47:12,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:12,605 INFO Out dated connection ,size=0 + +2025-09-24 06:47:12,605 INFO Connection check task end + +2025-09-24 06:47:14,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:15,605 INFO Connection check task start + +2025-09-24 06:47:15,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:15,606 INFO Out dated connection ,size=0 + +2025-09-24 06:47:15,606 INFO Connection check task end + +2025-09-24 06:47:17,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:18,606 INFO Connection check task start + +2025-09-24 06:47:18,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:18,606 INFO Out dated connection ,size=0 + +2025-09-24 06:47:18,606 INFO Connection check task end + +2025-09-24 06:47:20,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:21,608 INFO Connection check task start + +2025-09-24 06:47:21,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:21,608 INFO Out dated connection ,size=0 + +2025-09-24 06:47:21,608 INFO Connection check task end + +2025-09-24 06:47:23,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:24,610 INFO Connection check task start + +2025-09-24 06:47:24,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:24,610 INFO Out dated connection ,size=0 + +2025-09-24 06:47:24,610 INFO Connection check task end + +2025-09-24 06:47:26,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:27,610 INFO Connection check task start + +2025-09-24 06:47:27,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:27,611 INFO Out dated connection ,size=0 + +2025-09-24 06:47:27,611 INFO Connection check task end + +2025-09-24 06:47:29,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:30,611 INFO Connection check task start + +2025-09-24 06:47:30,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:30,611 INFO Out dated connection ,size=0 + +2025-09-24 06:47:30,611 INFO Connection check task end + +2025-09-24 06:47:32,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:33,612 INFO Connection check task start + +2025-09-24 06:47:33,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:33,612 INFO Out dated connection ,size=0 + +2025-09-24 06:47:33,612 INFO Connection check task end + +2025-09-24 06:47:35,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:36,614 INFO Connection check task start + +2025-09-24 06:47:36,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:36,615 INFO Out dated connection ,size=0 + +2025-09-24 06:47:36,615 INFO Connection check task end + +2025-09-24 06:47:38,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:39,616 INFO Connection check task start + +2025-09-24 06:47:39,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:39,617 INFO Out dated connection ,size=0 + +2025-09-24 06:47:39,617 INFO Connection check task end + +2025-09-24 06:47:41,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:42,617 INFO Connection check task start + +2025-09-24 06:47:42,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:42,617 INFO Out dated connection ,size=0 + +2025-09-24 06:47:42,617 INFO Connection check task end + +2025-09-24 06:47:44,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:45,618 INFO Connection check task start + +2025-09-24 06:47:45,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:45,618 INFO Out dated connection ,size=0 + +2025-09-24 06:47:45,618 INFO Connection check task end + +2025-09-24 06:47:47,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:48,618 INFO Connection check task start + +2025-09-24 06:47:48,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:48,618 INFO Out dated connection ,size=0 + +2025-09-24 06:47:48,618 INFO Connection check task end + +2025-09-24 06:47:50,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:51,618 INFO Connection check task start + +2025-09-24 06:47:51,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:51,619 INFO Out dated connection ,size=0 + +2025-09-24 06:47:51,619 INFO Connection check task end + +2025-09-24 06:47:53,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:54,621 INFO Connection check task start + +2025-09-24 06:47:54,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:54,621 INFO Out dated connection ,size=0 + +2025-09-24 06:47:54,621 INFO Connection check task end + +2025-09-24 06:47:56,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:47:57,622 INFO Connection check task start + +2025-09-24 06:47:57,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:47:57,622 INFO Out dated connection ,size=0 + +2025-09-24 06:47:57,622 INFO Connection check task end + +2025-09-24 06:47:59,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:00,623 INFO Connection check task start + +2025-09-24 06:48:00,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:00,623 INFO Out dated connection ,size=0 + +2025-09-24 06:48:00,623 INFO Connection check task end + +2025-09-24 06:48:02,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:03,623 INFO Connection check task start + +2025-09-24 06:48:03,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:03,624 INFO Out dated connection ,size=0 + +2025-09-24 06:48:03,624 INFO Connection check task end + +2025-09-24 06:48:05,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:06,624 INFO Connection check task start + +2025-09-24 06:48:06,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:06,624 INFO Out dated connection ,size=0 + +2025-09-24 06:48:06,624 INFO Connection check task end + +2025-09-24 06:48:08,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:09,624 INFO Connection check task start + +2025-09-24 06:48:09,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:09,625 INFO Out dated connection ,size=0 + +2025-09-24 06:48:09,625 INFO Connection check task end + +2025-09-24 06:48:11,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:12,625 INFO Connection check task start + +2025-09-24 06:48:12,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:12,625 INFO Out dated connection ,size=0 + +2025-09-24 06:48:12,625 INFO Connection check task end + +2025-09-24 06:48:14,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:15,627 INFO Connection check task start + +2025-09-24 06:48:15,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:15,628 INFO Out dated connection ,size=0 + +2025-09-24 06:48:15,628 INFO Connection check task end + +2025-09-24 06:48:17,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:18,630 INFO Connection check task start + +2025-09-24 06:48:18,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:18,630 INFO Out dated connection ,size=0 + +2025-09-24 06:48:18,630 INFO Connection check task end + +2025-09-24 06:48:20,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:21,630 INFO Connection check task start + +2025-09-24 06:48:21,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:21,631 INFO Out dated connection ,size=0 + +2025-09-24 06:48:21,631 INFO Connection check task end + +2025-09-24 06:48:23,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:24,632 INFO Connection check task start + +2025-09-24 06:48:24,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:24,633 INFO Out dated connection ,size=0 + +2025-09-24 06:48:24,633 INFO Connection check task end + +2025-09-24 06:48:26,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:27,633 INFO Connection check task start + +2025-09-24 06:48:27,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:27,633 INFO Out dated connection ,size=0 + +2025-09-24 06:48:27,633 INFO Connection check task end + +2025-09-24 06:48:29,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:30,634 INFO Connection check task start + +2025-09-24 06:48:30,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:30,634 INFO Out dated connection ,size=0 + +2025-09-24 06:48:30,634 INFO Connection check task end + +2025-09-24 06:48:32,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:33,635 INFO Connection check task start + +2025-09-24 06:48:33,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:33,635 INFO Out dated connection ,size=0 + +2025-09-24 06:48:33,635 INFO Connection check task end + +2025-09-24 06:48:35,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:36,635 INFO Connection check task start + +2025-09-24 06:48:36,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:36,635 INFO Out dated connection ,size=0 + +2025-09-24 06:48:36,635 INFO Connection check task end + +2025-09-24 06:48:38,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:39,637 INFO Connection check task start + +2025-09-24 06:48:39,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:39,638 INFO Out dated connection ,size=0 + +2025-09-24 06:48:39,638 INFO Connection check task end + +2025-09-24 06:48:41,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:42,639 INFO Connection check task start + +2025-09-24 06:48:42,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:42,639 INFO Out dated connection ,size=0 + +2025-09-24 06:48:42,639 INFO Connection check task end + +2025-09-24 06:48:44,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:45,640 INFO Connection check task start + +2025-09-24 06:48:45,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:45,640 INFO Out dated connection ,size=0 + +2025-09-24 06:48:45,640 INFO Connection check task end + +2025-09-24 06:48:47,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:48,642 INFO Connection check task start + +2025-09-24 06:48:48,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:48,643 INFO Out dated connection ,size=0 + +2025-09-24 06:48:48,643 INFO Connection check task end + +2025-09-24 06:48:50,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:51,643 INFO Connection check task start + +2025-09-24 06:48:51,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:51,643 INFO Out dated connection ,size=0 + +2025-09-24 06:48:51,643 INFO Connection check task end + +2025-09-24 06:48:53,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:54,645 INFO Connection check task start + +2025-09-24 06:48:54,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:54,645 INFO Out dated connection ,size=0 + +2025-09-24 06:48:54,645 INFO Connection check task end + +2025-09-24 06:48:56,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:48:57,646 INFO Connection check task start + +2025-09-24 06:48:57,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:48:57,646 INFO Out dated connection ,size=0 + +2025-09-24 06:48:57,646 INFO Connection check task end + +2025-09-24 06:48:59,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:00,647 INFO Connection check task start + +2025-09-24 06:49:00,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:00,647 INFO Out dated connection ,size=0 + +2025-09-24 06:49:00,647 INFO Connection check task end + +2025-09-24 06:49:02,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:03,648 INFO Connection check task start + +2025-09-24 06:49:03,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:03,648 INFO Out dated connection ,size=0 + +2025-09-24 06:49:03,648 INFO Connection check task end + +2025-09-24 06:49:05,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:06,649 INFO Connection check task start + +2025-09-24 06:49:06,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:06,661 INFO Out dated connection ,size=0 + +2025-09-24 06:49:06,661 INFO Connection check task end + +2025-09-24 06:49:08,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:09,663 INFO Connection check task start + +2025-09-24 06:49:09,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:09,663 INFO Out dated connection ,size=0 + +2025-09-24 06:49:09,663 INFO Connection check task end + +2025-09-24 06:49:11,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:12,664 INFO Connection check task start + +2025-09-24 06:49:12,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:12,664 INFO Out dated connection ,size=0 + +2025-09-24 06:49:12,664 INFO Connection check task end + +2025-09-24 06:49:14,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:15,666 INFO Connection check task start + +2025-09-24 06:49:15,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:15,666 INFO Out dated connection ,size=0 + +2025-09-24 06:49:15,666 INFO Connection check task end + +2025-09-24 06:49:17,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:18,666 INFO Connection check task start + +2025-09-24 06:49:18,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:18,666 INFO Out dated connection ,size=0 + +2025-09-24 06:49:18,667 INFO Connection check task end + +2025-09-24 06:49:20,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:21,667 INFO Connection check task start + +2025-09-24 06:49:21,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:21,667 INFO Out dated connection ,size=0 + +2025-09-24 06:49:21,667 INFO Connection check task end + +2025-09-24 06:49:23,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:24,668 INFO Connection check task start + +2025-09-24 06:49:24,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:24,668 INFO Out dated connection ,size=0 + +2025-09-24 06:49:24,668 INFO Connection check task end + +2025-09-24 06:49:26,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:27,668 INFO Connection check task start + +2025-09-24 06:49:27,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:27,669 INFO Out dated connection ,size=0 + +2025-09-24 06:49:27,669 INFO Connection check task end + +2025-09-24 06:49:29,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:30,669 INFO Connection check task start + +2025-09-24 06:49:30,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:30,670 INFO Out dated connection ,size=0 + +2025-09-24 06:49:30,670 INFO Connection check task end + +2025-09-24 06:49:32,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:33,672 INFO Connection check task start + +2025-09-24 06:49:33,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:33,672 INFO Out dated connection ,size=0 + +2025-09-24 06:49:33,672 INFO Connection check task end + +2025-09-24 06:49:35,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:36,672 INFO Connection check task start + +2025-09-24 06:49:36,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:36,672 INFO Out dated connection ,size=0 + +2025-09-24 06:49:36,672 INFO Connection check task end + +2025-09-24 06:49:38,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:39,674 INFO Connection check task start + +2025-09-24 06:49:39,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:39,675 INFO Out dated connection ,size=0 + +2025-09-24 06:49:39,675 INFO Connection check task end + +2025-09-24 06:49:41,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:42,675 INFO Connection check task start + +2025-09-24 06:49:42,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:42,675 INFO Out dated connection ,size=0 + +2025-09-24 06:49:42,675 INFO Connection check task end + +2025-09-24 06:49:44,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:45,677 INFO Connection check task start + +2025-09-24 06:49:45,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:45,677 INFO Out dated connection ,size=0 + +2025-09-24 06:49:45,677 INFO Connection check task end + +2025-09-24 06:49:47,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:48,679 INFO Connection check task start + +2025-09-24 06:49:48,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:48,679 INFO Out dated connection ,size=0 + +2025-09-24 06:49:48,679 INFO Connection check task end + +2025-09-24 06:49:50,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:51,680 INFO Connection check task start + +2025-09-24 06:49:51,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:51,680 INFO Out dated connection ,size=0 + +2025-09-24 06:49:51,680 INFO Connection check task end + +2025-09-24 06:49:53,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:54,681 INFO Connection check task start + +2025-09-24 06:49:54,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:54,681 INFO Out dated connection ,size=0 + +2025-09-24 06:49:54,681 INFO Connection check task end + +2025-09-24 06:49:56,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:49:57,681 INFO Connection check task start + +2025-09-24 06:49:57,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:49:57,681 INFO Out dated connection ,size=0 + +2025-09-24 06:49:57,681 INFO Connection check task end + +2025-09-24 06:49:59,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:00,683 INFO Connection check task start + +2025-09-24 06:50:00,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:00,684 INFO Out dated connection ,size=0 + +2025-09-24 06:50:00,684 INFO Connection check task end + +2025-09-24 06:50:02,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:03,684 INFO Connection check task start + +2025-09-24 06:50:03,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:03,684 INFO Out dated connection ,size=0 + +2025-09-24 06:50:03,684 INFO Connection check task end + +2025-09-24 06:50:05,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:06,684 INFO Connection check task start + +2025-09-24 06:50:06,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:06,685 INFO Out dated connection ,size=0 + +2025-09-24 06:50:06,685 INFO Connection check task end + +2025-09-24 06:50:08,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:09,687 INFO Connection check task start + +2025-09-24 06:50:09,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:09,687 INFO Out dated connection ,size=0 + +2025-09-24 06:50:09,687 INFO Connection check task end + +2025-09-24 06:50:11,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:12,687 INFO Connection check task start + +2025-09-24 06:50:12,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:12,687 INFO Out dated connection ,size=0 + +2025-09-24 06:50:12,687 INFO Connection check task end + +2025-09-24 06:50:14,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:15,687 INFO Connection check task start + +2025-09-24 06:50:15,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:15,687 INFO Out dated connection ,size=0 + +2025-09-24 06:50:15,687 INFO Connection check task end + +2025-09-24 06:50:17,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:18,689 INFO Connection check task start + +2025-09-24 06:50:18,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:18,689 INFO Out dated connection ,size=0 + +2025-09-24 06:50:18,689 INFO Connection check task end + +2025-09-24 06:50:20,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:21,691 INFO Connection check task start + +2025-09-24 06:50:21,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:21,692 INFO Out dated connection ,size=0 + +2025-09-24 06:50:21,692 INFO Connection check task end + +2025-09-24 06:50:23,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:24,693 INFO Connection check task start + +2025-09-24 06:50:24,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:24,693 INFO Out dated connection ,size=0 + +2025-09-24 06:50:24,693 INFO Connection check task end + +2025-09-24 06:50:26,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:27,695 INFO Connection check task start + +2025-09-24 06:50:27,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:27,696 INFO Out dated connection ,size=0 + +2025-09-24 06:50:27,696 INFO Connection check task end + +2025-09-24 06:50:29,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:30,696 INFO Connection check task start + +2025-09-24 06:50:30,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:30,696 INFO Out dated connection ,size=0 + +2025-09-24 06:50:30,696 INFO Connection check task end + +2025-09-24 06:50:32,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:33,698 INFO Connection check task start + +2025-09-24 06:50:33,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:33,698 INFO Out dated connection ,size=0 + +2025-09-24 06:50:33,698 INFO Connection check task end + +2025-09-24 06:50:35,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:36,700 INFO Connection check task start + +2025-09-24 06:50:36,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:36,701 INFO Out dated connection ,size=0 + +2025-09-24 06:50:36,701 INFO Connection check task end + +2025-09-24 06:50:38,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:39,703 INFO Connection check task start + +2025-09-24 06:50:39,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:39,703 INFO Out dated connection ,size=0 + +2025-09-24 06:50:39,703 INFO Connection check task end + +2025-09-24 06:50:41,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:42,704 INFO Connection check task start + +2025-09-24 06:50:42,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:42,704 INFO Out dated connection ,size=0 + +2025-09-24 06:50:42,704 INFO Connection check task end + +2025-09-24 06:50:44,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:45,706 INFO Connection check task start + +2025-09-24 06:50:45,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:45,706 INFO Out dated connection ,size=0 + +2025-09-24 06:50:45,706 INFO Connection check task end + +2025-09-24 06:50:47,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:48,706 INFO Connection check task start + +2025-09-24 06:50:48,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:48,706 INFO Out dated connection ,size=0 + +2025-09-24 06:50:48,706 INFO Connection check task end + +2025-09-24 06:50:50,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:51,708 INFO Connection check task start + +2025-09-24 06:50:51,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:51,708 INFO Out dated connection ,size=0 + +2025-09-24 06:50:51,708 INFO Connection check task end + +2025-09-24 06:50:53,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:54,709 INFO Connection check task start + +2025-09-24 06:50:54,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:54,709 INFO Out dated connection ,size=0 + +2025-09-24 06:50:54,709 INFO Connection check task end + +2025-09-24 06:50:56,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:50:57,709 INFO Connection check task start + +2025-09-24 06:50:57,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:50:57,710 INFO Out dated connection ,size=0 + +2025-09-24 06:50:57,710 INFO Connection check task end + +2025-09-24 06:50:59,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:00,711 INFO Connection check task start + +2025-09-24 06:51:00,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:00,711 INFO Out dated connection ,size=0 + +2025-09-24 06:51:00,711 INFO Connection check task end + +2025-09-24 06:51:02,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:03,713 INFO Connection check task start + +2025-09-24 06:51:03,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:03,714 INFO Out dated connection ,size=0 + +2025-09-24 06:51:03,714 INFO Connection check task end + +2025-09-24 06:51:05,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:06,715 INFO Connection check task start + +2025-09-24 06:51:06,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:06,715 INFO Out dated connection ,size=0 + +2025-09-24 06:51:06,715 INFO Connection check task end + +2025-09-24 06:51:08,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:09,716 INFO Connection check task start + +2025-09-24 06:51:09,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:09,716 INFO Out dated connection ,size=0 + +2025-09-24 06:51:09,716 INFO Connection check task end + +2025-09-24 06:51:11,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:12,717 INFO Connection check task start + +2025-09-24 06:51:12,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:12,717 INFO Out dated connection ,size=0 + +2025-09-24 06:51:12,717 INFO Connection check task end + +2025-09-24 06:51:14,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:15,717 INFO Connection check task start + +2025-09-24 06:51:15,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:15,717 INFO Out dated connection ,size=0 + +2025-09-24 06:51:15,717 INFO Connection check task end + +2025-09-24 06:51:17,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:18,718 INFO Connection check task start + +2025-09-24 06:51:18,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:18,718 INFO Out dated connection ,size=0 + +2025-09-24 06:51:18,718 INFO Connection check task end + +2025-09-24 06:51:20,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:21,719 INFO Connection check task start + +2025-09-24 06:51:21,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:21,719 INFO Out dated connection ,size=0 + +2025-09-24 06:51:21,720 INFO Connection check task end + +2025-09-24 06:51:23,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:24,722 INFO Connection check task start + +2025-09-24 06:51:24,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:24,722 INFO Out dated connection ,size=0 + +2025-09-24 06:51:24,722 INFO Connection check task end + +2025-09-24 06:51:26,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:27,724 INFO Connection check task start + +2025-09-24 06:51:27,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:27,724 INFO Out dated connection ,size=0 + +2025-09-24 06:51:27,724 INFO Connection check task end + +2025-09-24 06:51:29,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:30,725 INFO Connection check task start + +2025-09-24 06:51:30,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:30,725 INFO Out dated connection ,size=0 + +2025-09-24 06:51:30,725 INFO Connection check task end + +2025-09-24 06:51:32,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:33,725 INFO Connection check task start + +2025-09-24 06:51:33,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:33,725 INFO Out dated connection ,size=0 + +2025-09-24 06:51:33,725 INFO Connection check task end + +2025-09-24 06:51:35,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:36,726 INFO Connection check task start + +2025-09-24 06:51:36,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:36,727 INFO Out dated connection ,size=0 + +2025-09-24 06:51:36,727 INFO Connection check task end + +2025-09-24 06:51:38,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:39,728 INFO Connection check task start + +2025-09-24 06:51:39,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:39,729 INFO Out dated connection ,size=0 + +2025-09-24 06:51:39,729 INFO Connection check task end + +2025-09-24 06:51:41,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:42,730 INFO Connection check task start + +2025-09-24 06:51:42,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:42,730 INFO Out dated connection ,size=0 + +2025-09-24 06:51:42,730 INFO Connection check task end + +2025-09-24 06:51:44,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:45,730 INFO Connection check task start + +2025-09-24 06:51:45,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:45,730 INFO Out dated connection ,size=0 + +2025-09-24 06:51:45,730 INFO Connection check task end + +2025-09-24 06:51:47,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:48,731 INFO Connection check task start + +2025-09-24 06:51:48,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:48,731 INFO Out dated connection ,size=0 + +2025-09-24 06:51:48,731 INFO Connection check task end + +2025-09-24 06:51:50,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:51,732 INFO Connection check task start + +2025-09-24 06:51:51,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:51,732 INFO Out dated connection ,size=0 + +2025-09-24 06:51:51,732 INFO Connection check task end + +2025-09-24 06:51:53,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:54,732 INFO Connection check task start + +2025-09-24 06:51:54,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:54,733 INFO Out dated connection ,size=0 + +2025-09-24 06:51:54,733 INFO Connection check task end + +2025-09-24 06:51:56,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:51:57,733 INFO Connection check task start + +2025-09-24 06:51:57,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:51:57,733 INFO Out dated connection ,size=0 + +2025-09-24 06:51:57,733 INFO Connection check task end + +2025-09-24 06:51:59,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:00,734 INFO Connection check task start + +2025-09-24 06:52:00,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:00,734 INFO Out dated connection ,size=0 + +2025-09-24 06:52:00,735 INFO Connection check task end + +2025-09-24 06:52:02,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:03,736 INFO Connection check task start + +2025-09-24 06:52:03,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:03,736 INFO Out dated connection ,size=0 + +2025-09-24 06:52:03,736 INFO Connection check task end + +2025-09-24 06:52:05,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:06,736 INFO Connection check task start + +2025-09-24 06:52:06,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:06,737 INFO Out dated connection ,size=0 + +2025-09-24 06:52:06,737 INFO Connection check task end + +2025-09-24 06:52:08,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:09,738 INFO Connection check task start + +2025-09-24 06:52:09,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:09,738 INFO Out dated connection ,size=0 + +2025-09-24 06:52:09,738 INFO Connection check task end + +2025-09-24 06:52:11,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:12,739 INFO Connection check task start + +2025-09-24 06:52:12,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:12,740 INFO Out dated connection ,size=0 + +2025-09-24 06:52:12,740 INFO Connection check task end + +2025-09-24 06:52:14,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:15,741 INFO Connection check task start + +2025-09-24 06:52:15,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:15,741 INFO Out dated connection ,size=0 + +2025-09-24 06:52:15,741 INFO Connection check task end + +2025-09-24 06:52:17,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:18,742 INFO Connection check task start + +2025-09-24 06:52:18,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:18,742 INFO Out dated connection ,size=0 + +2025-09-24 06:52:18,742 INFO Connection check task end + +2025-09-24 06:52:20,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:21,742 INFO Connection check task start + +2025-09-24 06:52:21,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:21,742 INFO Out dated connection ,size=0 + +2025-09-24 06:52:21,742 INFO Connection check task end + +2025-09-24 06:52:23,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:24,743 INFO Connection check task start + +2025-09-24 06:52:24,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:24,743 INFO Out dated connection ,size=0 + +2025-09-24 06:52:24,743 INFO Connection check task end + +2025-09-24 06:52:26,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:27,743 INFO Connection check task start + +2025-09-24 06:52:27,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:27,743 INFO Out dated connection ,size=0 + +2025-09-24 06:52:27,743 INFO Connection check task end + +2025-09-24 06:52:29,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:30,745 INFO Connection check task start + +2025-09-24 06:52:30,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:30,745 INFO Out dated connection ,size=0 + +2025-09-24 06:52:30,745 INFO Connection check task end + +2025-09-24 06:52:32,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:33,746 INFO Connection check task start + +2025-09-24 06:52:33,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:33,746 INFO Out dated connection ,size=0 + +2025-09-24 06:52:33,746 INFO Connection check task end + +2025-09-24 06:52:35,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:36,747 INFO Connection check task start + +2025-09-24 06:52:36,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:36,747 INFO Out dated connection ,size=0 + +2025-09-24 06:52:36,747 INFO Connection check task end + +2025-09-24 06:52:38,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:39,749 INFO Connection check task start + +2025-09-24 06:52:39,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:39,750 INFO Out dated connection ,size=0 + +2025-09-24 06:52:39,750 INFO Connection check task end + +2025-09-24 06:52:41,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:42,750 INFO Connection check task start + +2025-09-24 06:52:42,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:42,750 INFO Out dated connection ,size=0 + +2025-09-24 06:52:42,750 INFO Connection check task end + +2025-09-24 06:52:44,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:45,750 INFO Connection check task start + +2025-09-24 06:52:45,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:45,751 INFO Out dated connection ,size=0 + +2025-09-24 06:52:45,751 INFO Connection check task end + +2025-09-24 06:52:47,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:48,751 INFO Connection check task start + +2025-09-24 06:52:48,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:48,751 INFO Out dated connection ,size=0 + +2025-09-24 06:52:48,751 INFO Connection check task end + +2025-09-24 06:52:50,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:51,753 INFO Connection check task start + +2025-09-24 06:52:51,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:51,753 INFO Out dated connection ,size=0 + +2025-09-24 06:52:51,753 INFO Connection check task end + +2025-09-24 06:52:53,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:54,755 INFO Connection check task start + +2025-09-24 06:52:54,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:54,756 INFO Out dated connection ,size=0 + +2025-09-24 06:52:54,756 INFO Connection check task end + +2025-09-24 06:52:56,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:52:57,756 INFO Connection check task start + +2025-09-24 06:52:57,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:52:57,756 INFO Out dated connection ,size=0 + +2025-09-24 06:52:57,756 INFO Connection check task end + +2025-09-24 06:52:59,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:00,757 INFO Connection check task start + +2025-09-24 06:53:00,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:00,758 INFO Out dated connection ,size=0 + +2025-09-24 06:53:00,758 INFO Connection check task end + +2025-09-24 06:53:02,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:03,760 INFO Connection check task start + +2025-09-24 06:53:03,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:03,760 INFO Out dated connection ,size=0 + +2025-09-24 06:53:03,760 INFO Connection check task end + +2025-09-24 06:53:05,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:06,762 INFO Connection check task start + +2025-09-24 06:53:06,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:06,762 INFO Out dated connection ,size=0 + +2025-09-24 06:53:06,762 INFO Connection check task end + +2025-09-24 06:53:08,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:09,763 INFO Connection check task start + +2025-09-24 06:53:09,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:09,763 INFO Out dated connection ,size=0 + +2025-09-24 06:53:09,763 INFO Connection check task end + +2025-09-24 06:53:11,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:12,763 INFO Connection check task start + +2025-09-24 06:53:12,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:12,763 INFO Out dated connection ,size=0 + +2025-09-24 06:53:12,763 INFO Connection check task end + +2025-09-24 06:53:14,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:15,765 INFO Connection check task start + +2025-09-24 06:53:15,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:15,766 INFO Out dated connection ,size=0 + +2025-09-24 06:53:15,766 INFO Connection check task end + +2025-09-24 06:53:17,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:18,766 INFO Connection check task start + +2025-09-24 06:53:18,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:18,766 INFO Out dated connection ,size=0 + +2025-09-24 06:53:18,766 INFO Connection check task end + +2025-09-24 06:53:20,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:21,766 INFO Connection check task start + +2025-09-24 06:53:21,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:21,766 INFO Out dated connection ,size=0 + +2025-09-24 06:53:21,766 INFO Connection check task end + +2025-09-24 06:53:23,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:24,769 INFO Connection check task start + +2025-09-24 06:53:24,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:24,769 INFO Out dated connection ,size=0 + +2025-09-24 06:53:24,769 INFO Connection check task end + +2025-09-24 06:53:26,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:27,771 INFO Connection check task start + +2025-09-24 06:53:27,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:27,771 INFO Out dated connection ,size=0 + +2025-09-24 06:53:27,771 INFO Connection check task end + +2025-09-24 06:53:29,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:30,773 INFO Connection check task start + +2025-09-24 06:53:30,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:30,774 INFO Out dated connection ,size=0 + +2025-09-24 06:53:30,774 INFO Connection check task end + +2025-09-24 06:53:32,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:33,774 INFO Connection check task start + +2025-09-24 06:53:33,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:33,774 INFO Out dated connection ,size=0 + +2025-09-24 06:53:33,774 INFO Connection check task end + +2025-09-24 06:53:35,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:36,774 INFO Connection check task start + +2025-09-24 06:53:36,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:36,775 INFO Out dated connection ,size=0 + +2025-09-24 06:53:36,775 INFO Connection check task end + +2025-09-24 06:53:38,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:39,775 INFO Connection check task start + +2025-09-24 06:53:39,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:39,775 INFO Out dated connection ,size=0 + +2025-09-24 06:53:39,775 INFO Connection check task end + +2025-09-24 06:53:41,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:42,776 INFO Connection check task start + +2025-09-24 06:53:42,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:42,776 INFO Out dated connection ,size=0 + +2025-09-24 06:53:42,776 INFO Connection check task end + +2025-09-24 06:53:44,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:45,777 INFO Connection check task start + +2025-09-24 06:53:45,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:45,777 INFO Out dated connection ,size=0 + +2025-09-24 06:53:45,777 INFO Connection check task end + +2025-09-24 06:53:47,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:48,777 INFO Connection check task start + +2025-09-24 06:53:48,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:48,778 INFO Out dated connection ,size=0 + +2025-09-24 06:53:48,778 INFO Connection check task end + +2025-09-24 06:53:50,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:51,778 INFO Connection check task start + +2025-09-24 06:53:51,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:51,778 INFO Out dated connection ,size=0 + +2025-09-24 06:53:51,778 INFO Connection check task end + +2025-09-24 06:53:53,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:54,778 INFO Connection check task start + +2025-09-24 06:53:54,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:54,779 INFO Out dated connection ,size=0 + +2025-09-24 06:53:54,779 INFO Connection check task end + +2025-09-24 06:53:56,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:53:57,780 INFO Connection check task start + +2025-09-24 06:53:57,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:53:57,780 INFO Out dated connection ,size=0 + +2025-09-24 06:53:57,780 INFO Connection check task end + +2025-09-24 06:53:59,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:00,781 INFO Connection check task start + +2025-09-24 06:54:00,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:00,781 INFO Out dated connection ,size=0 + +2025-09-24 06:54:00,781 INFO Connection check task end + +2025-09-24 06:54:02,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:03,782 INFO Connection check task start + +2025-09-24 06:54:03,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:03,782 INFO Out dated connection ,size=0 + +2025-09-24 06:54:03,782 INFO Connection check task end + +2025-09-24 06:54:05,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:06,784 INFO Connection check task start + +2025-09-24 06:54:06,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:06,784 INFO Out dated connection ,size=0 + +2025-09-24 06:54:06,784 INFO Connection check task end + +2025-09-24 06:54:08,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:09,785 INFO Connection check task start + +2025-09-24 06:54:09,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:09,785 INFO Out dated connection ,size=0 + +2025-09-24 06:54:09,785 INFO Connection check task end + +2025-09-24 06:54:11,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:12,787 INFO Connection check task start + +2025-09-24 06:54:12,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:12,787 INFO Out dated connection ,size=0 + +2025-09-24 06:54:12,787 INFO Connection check task end + +2025-09-24 06:54:14,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:15,787 INFO Connection check task start + +2025-09-24 06:54:15,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:15,788 INFO Out dated connection ,size=0 + +2025-09-24 06:54:15,788 INFO Connection check task end + +2025-09-24 06:54:17,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:18,788 INFO Connection check task start + +2025-09-24 06:54:18,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:18,788 INFO Out dated connection ,size=0 + +2025-09-24 06:54:18,788 INFO Connection check task end + +2025-09-24 06:54:20,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:21,788 INFO Connection check task start + +2025-09-24 06:54:21,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:21,789 INFO Out dated connection ,size=0 + +2025-09-24 06:54:21,789 INFO Connection check task end + +2025-09-24 06:54:23,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:24,791 INFO Connection check task start + +2025-09-24 06:54:24,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:24,791 INFO Out dated connection ,size=0 + +2025-09-24 06:54:24,791 INFO Connection check task end + +2025-09-24 06:54:26,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:27,792 INFO Connection check task start + +2025-09-24 06:54:27,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:27,792 INFO Out dated connection ,size=0 + +2025-09-24 06:54:27,792 INFO Connection check task end + +2025-09-24 06:54:29,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:30,794 INFO Connection check task start + +2025-09-24 06:54:30,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:30,795 INFO Out dated connection ,size=0 + +2025-09-24 06:54:30,795 INFO Connection check task end + +2025-09-24 06:54:32,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:33,796 INFO Connection check task start + +2025-09-24 06:54:33,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:33,796 INFO Out dated connection ,size=0 + +2025-09-24 06:54:33,796 INFO Connection check task end + +2025-09-24 06:54:35,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:36,798 INFO Connection check task start + +2025-09-24 06:54:36,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:36,798 INFO Out dated connection ,size=0 + +2025-09-24 06:54:36,799 INFO Connection check task end + +2025-09-24 06:54:38,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:39,799 INFO Connection check task start + +2025-09-24 06:54:39,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:39,799 INFO Out dated connection ,size=0 + +2025-09-24 06:54:39,799 INFO Connection check task end + +2025-09-24 06:54:41,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:42,801 INFO Connection check task start + +2025-09-24 06:54:42,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:42,801 INFO Out dated connection ,size=0 + +2025-09-24 06:54:42,801 INFO Connection check task end + +2025-09-24 06:54:44,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:45,802 INFO Connection check task start + +2025-09-24 06:54:45,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:45,802 INFO Out dated connection ,size=0 + +2025-09-24 06:54:45,802 INFO Connection check task end + +2025-09-24 06:54:47,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:48,803 INFO Connection check task start + +2025-09-24 06:54:48,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:48,803 INFO Out dated connection ,size=0 + +2025-09-24 06:54:48,803 INFO Connection check task end + +2025-09-24 06:54:50,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:51,805 INFO Connection check task start + +2025-09-24 06:54:51,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:51,805 INFO Out dated connection ,size=0 + +2025-09-24 06:54:51,805 INFO Connection check task end + +2025-09-24 06:54:53,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:54,805 INFO Connection check task start + +2025-09-24 06:54:54,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:54,805 INFO Out dated connection ,size=0 + +2025-09-24 06:54:54,805 INFO Connection check task end + +2025-09-24 06:54:56,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:54:57,806 INFO Connection check task start + +2025-09-24 06:54:57,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:54:57,806 INFO Out dated connection ,size=0 + +2025-09-24 06:54:57,806 INFO Connection check task end + +2025-09-24 06:54:59,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:00,808 INFO Connection check task start + +2025-09-24 06:55:00,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:00,808 INFO Out dated connection ,size=0 + +2025-09-24 06:55:00,808 INFO Connection check task end + +2025-09-24 06:55:02,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:03,809 INFO Connection check task start + +2025-09-24 06:55:03,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:03,809 INFO Out dated connection ,size=0 + +2025-09-24 06:55:03,809 INFO Connection check task end + +2025-09-24 06:55:05,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:06,811 INFO Connection check task start + +2025-09-24 06:55:06,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:06,811 INFO Out dated connection ,size=0 + +2025-09-24 06:55:06,811 INFO Connection check task end + +2025-09-24 06:55:08,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:09,811 INFO Connection check task start + +2025-09-24 06:55:09,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:09,811 INFO Out dated connection ,size=0 + +2025-09-24 06:55:09,811 INFO Connection check task end + +2025-09-24 06:55:11,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:12,812 INFO Connection check task start + +2025-09-24 06:55:12,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:12,813 INFO Out dated connection ,size=0 + +2025-09-24 06:55:12,813 INFO Connection check task end + +2025-09-24 06:55:14,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:15,813 INFO Connection check task start + +2025-09-24 06:55:15,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:15,813 INFO Out dated connection ,size=0 + +2025-09-24 06:55:15,813 INFO Connection check task end + +2025-09-24 06:55:17,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:18,813 INFO Connection check task start + +2025-09-24 06:55:18,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:18,814 INFO Out dated connection ,size=0 + +2025-09-24 06:55:18,814 INFO Connection check task end + +2025-09-24 06:55:20,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:21,816 INFO Connection check task start + +2025-09-24 06:55:21,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:21,816 INFO Out dated connection ,size=0 + +2025-09-24 06:55:21,816 INFO Connection check task end + +2025-09-24 06:55:23,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:24,817 INFO Connection check task start + +2025-09-24 06:55:24,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:24,817 INFO Out dated connection ,size=0 + +2025-09-24 06:55:24,817 INFO Connection check task end + +2025-09-24 06:55:26,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:27,818 INFO Connection check task start + +2025-09-24 06:55:27,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:27,818 INFO Out dated connection ,size=0 + +2025-09-24 06:55:27,818 INFO Connection check task end + +2025-09-24 06:55:29,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:30,821 INFO Connection check task start + +2025-09-24 06:55:30,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:30,821 INFO Out dated connection ,size=0 + +2025-09-24 06:55:30,821 INFO Connection check task end + +2025-09-24 06:55:32,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:33,822 INFO Connection check task start + +2025-09-24 06:55:33,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:33,822 INFO Out dated connection ,size=0 + +2025-09-24 06:55:33,822 INFO Connection check task end + +2025-09-24 06:55:35,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:36,822 INFO Connection check task start + +2025-09-24 06:55:36,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:36,823 INFO Out dated connection ,size=0 + +2025-09-24 06:55:36,823 INFO Connection check task end + +2025-09-24 06:55:38,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:39,823 INFO Connection check task start + +2025-09-24 06:55:39,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:39,823 INFO Out dated connection ,size=0 + +2025-09-24 06:55:39,823 INFO Connection check task end + +2025-09-24 06:55:41,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:42,825 INFO Connection check task start + +2025-09-24 06:55:42,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:42,826 INFO Out dated connection ,size=0 + +2025-09-24 06:55:42,826 INFO Connection check task end + +2025-09-24 06:55:44,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:45,827 INFO Connection check task start + +2025-09-24 06:55:45,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:45,828 INFO Out dated connection ,size=0 + +2025-09-24 06:55:45,828 INFO Connection check task end + +2025-09-24 06:55:47,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:48,829 INFO Connection check task start + +2025-09-24 06:55:48,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:48,829 INFO Out dated connection ,size=0 + +2025-09-24 06:55:48,829 INFO Connection check task end + +2025-09-24 06:55:50,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:51,830 INFO Connection check task start + +2025-09-24 06:55:51,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:51,830 INFO Out dated connection ,size=0 + +2025-09-24 06:55:51,830 INFO Connection check task end + +2025-09-24 06:55:53,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:54,831 INFO Connection check task start + +2025-09-24 06:55:54,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:54,831 INFO Out dated connection ,size=0 + +2025-09-24 06:55:54,832 INFO Connection check task end + +2025-09-24 06:55:56,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:55:57,833 INFO Connection check task start + +2025-09-24 06:55:57,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:55:57,833 INFO Out dated connection ,size=0 + +2025-09-24 06:55:57,833 INFO Connection check task end + +2025-09-24 06:55:59,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:00,835 INFO Connection check task start + +2025-09-24 06:56:00,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:00,835 INFO Out dated connection ,size=0 + +2025-09-24 06:56:00,835 INFO Connection check task end + +2025-09-24 06:56:02,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:03,836 INFO Connection check task start + +2025-09-24 06:56:03,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:03,836 INFO Out dated connection ,size=0 + +2025-09-24 06:56:03,836 INFO Connection check task end + +2025-09-24 06:56:05,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:06,836 INFO Connection check task start + +2025-09-24 06:56:06,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:06,836 INFO Out dated connection ,size=0 + +2025-09-24 06:56:06,836 INFO Connection check task end + +2025-09-24 06:56:08,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:09,838 INFO Connection check task start + +2025-09-24 06:56:09,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:09,838 INFO Out dated connection ,size=0 + +2025-09-24 06:56:09,839 INFO Connection check task end + +2025-09-24 06:56:11,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:12,839 INFO Connection check task start + +2025-09-24 06:56:12,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:12,839 INFO Out dated connection ,size=0 + +2025-09-24 06:56:12,839 INFO Connection check task end + +2025-09-24 06:56:14,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:15,841 INFO Connection check task start + +2025-09-24 06:56:15,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:15,841 INFO Out dated connection ,size=0 + +2025-09-24 06:56:15,842 INFO Connection check task end + +2025-09-24 06:56:17,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:18,843 INFO Connection check task start + +2025-09-24 06:56:18,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:18,843 INFO Out dated connection ,size=0 + +2025-09-24 06:56:18,843 INFO Connection check task end + +2025-09-24 06:56:20,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:21,844 INFO Connection check task start + +2025-09-24 06:56:21,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:21,844 INFO Out dated connection ,size=0 + +2025-09-24 06:56:21,844 INFO Connection check task end + +2025-09-24 06:56:23,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:24,845 INFO Connection check task start + +2025-09-24 06:56:24,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:24,846 INFO Out dated connection ,size=0 + +2025-09-24 06:56:24,846 INFO Connection check task end + +2025-09-24 06:56:26,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:27,846 INFO Connection check task start + +2025-09-24 06:56:27,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:27,846 INFO Out dated connection ,size=0 + +2025-09-24 06:56:27,846 INFO Connection check task end + +2025-09-24 06:56:29,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:30,848 INFO Connection check task start + +2025-09-24 06:56:30,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:30,848 INFO Out dated connection ,size=0 + +2025-09-24 06:56:30,848 INFO Connection check task end + +2025-09-24 06:56:32,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:33,848 INFO Connection check task start + +2025-09-24 06:56:33,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:33,848 INFO Out dated connection ,size=0 + +2025-09-24 06:56:33,848 INFO Connection check task end + +2025-09-24 06:56:35,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:36,850 INFO Connection check task start + +2025-09-24 06:56:36,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:36,850 INFO Out dated connection ,size=0 + +2025-09-24 06:56:36,850 INFO Connection check task end + +2025-09-24 06:56:38,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:39,851 INFO Connection check task start + +2025-09-24 06:56:39,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:39,852 INFO Out dated connection ,size=0 + +2025-09-24 06:56:39,852 INFO Connection check task end + +2025-09-24 06:56:41,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:42,853 INFO Connection check task start + +2025-09-24 06:56:42,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:42,854 INFO Out dated connection ,size=0 + +2025-09-24 06:56:42,854 INFO Connection check task end + +2025-09-24 06:56:44,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:45,855 INFO Connection check task start + +2025-09-24 06:56:45,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:45,855 INFO Out dated connection ,size=0 + +2025-09-24 06:56:45,855 INFO Connection check task end + +2025-09-24 06:56:47,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:48,855 INFO Connection check task start + +2025-09-24 06:56:48,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:48,855 INFO Out dated connection ,size=0 + +2025-09-24 06:56:48,856 INFO Connection check task end + +2025-09-24 06:56:50,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:51,856 INFO Connection check task start + +2025-09-24 06:56:51,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:51,856 INFO Out dated connection ,size=0 + +2025-09-24 06:56:51,857 INFO Connection check task end + +2025-09-24 06:56:53,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:54,857 INFO Connection check task start + +2025-09-24 06:56:54,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:54,857 INFO Out dated connection ,size=0 + +2025-09-24 06:56:54,857 INFO Connection check task end + +2025-09-24 06:56:56,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:56:57,859 INFO Connection check task start + +2025-09-24 06:56:57,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:56:57,859 INFO Out dated connection ,size=0 + +2025-09-24 06:56:57,860 INFO Connection check task end + +2025-09-24 06:56:59,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:00,861 INFO Connection check task start + +2025-09-24 06:57:00,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:00,861 INFO Out dated connection ,size=0 + +2025-09-24 06:57:00,861 INFO Connection check task end + +2025-09-24 06:57:02,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:03,863 INFO Connection check task start + +2025-09-24 06:57:03,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:03,863 INFO Out dated connection ,size=0 + +2025-09-24 06:57:03,863 INFO Connection check task end + +2025-09-24 06:57:05,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:06,865 INFO Connection check task start + +2025-09-24 06:57:06,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:06,865 INFO Out dated connection ,size=0 + +2025-09-24 06:57:06,865 INFO Connection check task end + +2025-09-24 06:57:08,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:09,867 INFO Connection check task start + +2025-09-24 06:57:09,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:09,868 INFO Out dated connection ,size=0 + +2025-09-24 06:57:09,868 INFO Connection check task end + +2025-09-24 06:57:11,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:12,870 INFO Connection check task start + +2025-09-24 06:57:12,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:12,870 INFO Out dated connection ,size=0 + +2025-09-24 06:57:12,870 INFO Connection check task end + +2025-09-24 06:57:14,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:15,870 INFO Connection check task start + +2025-09-24 06:57:15,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:15,870 INFO Out dated connection ,size=0 + +2025-09-24 06:57:15,870 INFO Connection check task end + +2025-09-24 06:57:17,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:18,871 INFO Connection check task start + +2025-09-24 06:57:18,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:18,871 INFO Out dated connection ,size=0 + +2025-09-24 06:57:18,871 INFO Connection check task end + +2025-09-24 06:57:20,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:21,872 INFO Connection check task start + +2025-09-24 06:57:21,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:21,872 INFO Out dated connection ,size=0 + +2025-09-24 06:57:21,872 INFO Connection check task end + +2025-09-24 06:57:23,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:24,872 INFO Connection check task start + +2025-09-24 06:57:24,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:24,872 INFO Out dated connection ,size=0 + +2025-09-24 06:57:24,872 INFO Connection check task end + +2025-09-24 06:57:26,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:27,873 INFO Connection check task start + +2025-09-24 06:57:27,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:27,873 INFO Out dated connection ,size=0 + +2025-09-24 06:57:27,873 INFO Connection check task end + +2025-09-24 06:57:29,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:30,874 INFO Connection check task start + +2025-09-24 06:57:30,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:30,874 INFO Out dated connection ,size=0 + +2025-09-24 06:57:30,874 INFO Connection check task end + +2025-09-24 06:57:32,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:33,876 INFO Connection check task start + +2025-09-24 06:57:33,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:33,876 INFO Out dated connection ,size=0 + +2025-09-24 06:57:33,876 INFO Connection check task end + +2025-09-24 06:57:35,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:36,877 INFO Connection check task start + +2025-09-24 06:57:36,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:36,877 INFO Out dated connection ,size=0 + +2025-09-24 06:57:36,877 INFO Connection check task end + +2025-09-24 06:57:38,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:39,879 INFO Connection check task start + +2025-09-24 06:57:39,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:39,879 INFO Out dated connection ,size=0 + +2025-09-24 06:57:39,879 INFO Connection check task end + +2025-09-24 06:57:41,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:42,880 INFO Connection check task start + +2025-09-24 06:57:42,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:42,880 INFO Out dated connection ,size=0 + +2025-09-24 06:57:42,880 INFO Connection check task end + +2025-09-24 06:57:44,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:45,880 INFO Connection check task start + +2025-09-24 06:57:45,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:45,881 INFO Out dated connection ,size=0 + +2025-09-24 06:57:45,881 INFO Connection check task end + +2025-09-24 06:57:47,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:48,881 INFO Connection check task start + +2025-09-24 06:57:48,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:48,881 INFO Out dated connection ,size=0 + +2025-09-24 06:57:48,881 INFO Connection check task end + +2025-09-24 06:57:50,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:51,883 INFO Connection check task start + +2025-09-24 06:57:51,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:51,883 INFO Out dated connection ,size=0 + +2025-09-24 06:57:51,883 INFO Connection check task end + +2025-09-24 06:57:53,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:54,883 INFO Connection check task start + +2025-09-24 06:57:54,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:54,884 INFO Out dated connection ,size=0 + +2025-09-24 06:57:54,884 INFO Connection check task end + +2025-09-24 06:57:56,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:57:57,884 INFO Connection check task start + +2025-09-24 06:57:57,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:57:57,884 INFO Out dated connection ,size=0 + +2025-09-24 06:57:57,884 INFO Connection check task end + +2025-09-24 06:57:59,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:00,884 INFO Connection check task start + +2025-09-24 06:58:00,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:00,884 INFO Out dated connection ,size=0 + +2025-09-24 06:58:00,884 INFO Connection check task end + +2025-09-24 06:58:02,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:03,885 INFO Connection check task start + +2025-09-24 06:58:03,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:03,885 INFO Out dated connection ,size=0 + +2025-09-24 06:58:03,885 INFO Connection check task end + +2025-09-24 06:58:05,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:06,886 INFO Connection check task start + +2025-09-24 06:58:06,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:06,886 INFO Out dated connection ,size=0 + +2025-09-24 06:58:06,886 INFO Connection check task end + +2025-09-24 06:58:08,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:09,888 INFO Connection check task start + +2025-09-24 06:58:09,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:09,888 INFO Out dated connection ,size=0 + +2025-09-24 06:58:09,888 INFO Connection check task end + +2025-09-24 06:58:11,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:12,888 INFO Connection check task start + +2025-09-24 06:58:12,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:12,888 INFO Out dated connection ,size=0 + +2025-09-24 06:58:12,888 INFO Connection check task end + +2025-09-24 06:58:14,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:15,889 INFO Connection check task start + +2025-09-24 06:58:15,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:15,890 INFO Out dated connection ,size=0 + +2025-09-24 06:58:15,890 INFO Connection check task end + +2025-09-24 06:58:17,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:18,892 INFO Connection check task start + +2025-09-24 06:58:18,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:18,892 INFO Out dated connection ,size=0 + +2025-09-24 06:58:18,892 INFO Connection check task end + +2025-09-24 06:58:20,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:21,894 INFO Connection check task start + +2025-09-24 06:58:21,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:21,894 INFO Out dated connection ,size=0 + +2025-09-24 06:58:21,894 INFO Connection check task end + +2025-09-24 06:58:23,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:24,894 INFO Connection check task start + +2025-09-24 06:58:24,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:24,894 INFO Out dated connection ,size=0 + +2025-09-24 06:58:24,894 INFO Connection check task end + +2025-09-24 06:58:26,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:27,895 INFO Connection check task start + +2025-09-24 06:58:27,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:27,895 INFO Out dated connection ,size=0 + +2025-09-24 06:58:27,895 INFO Connection check task end + +2025-09-24 06:58:29,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:30,895 INFO Connection check task start + +2025-09-24 06:58:30,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:30,895 INFO Out dated connection ,size=0 + +2025-09-24 06:58:30,896 INFO Connection check task end + +2025-09-24 06:58:32,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:33,898 INFO Connection check task start + +2025-09-24 06:58:33,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:33,898 INFO Out dated connection ,size=0 + +2025-09-24 06:58:33,898 INFO Connection check task end + +2025-09-24 06:58:35,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:36,898 INFO Connection check task start + +2025-09-24 06:58:36,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:36,898 INFO Out dated connection ,size=0 + +2025-09-24 06:58:36,898 INFO Connection check task end + +2025-09-24 06:58:38,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:39,899 INFO Connection check task start + +2025-09-24 06:58:39,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:39,899 INFO Out dated connection ,size=0 + +2025-09-24 06:58:39,899 INFO Connection check task end + +2025-09-24 06:58:41,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:42,900 INFO Connection check task start + +2025-09-24 06:58:42,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:42,900 INFO Out dated connection ,size=0 + +2025-09-24 06:58:42,900 INFO Connection check task end + +2025-09-24 06:58:44,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:45,901 INFO Connection check task start + +2025-09-24 06:58:45,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:45,901 INFO Out dated connection ,size=0 + +2025-09-24 06:58:45,901 INFO Connection check task end + +2025-09-24 06:58:47,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:48,901 INFO Connection check task start + +2025-09-24 06:58:48,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:48,902 INFO Out dated connection ,size=0 + +2025-09-24 06:58:48,902 INFO Connection check task end + +2025-09-24 06:58:50,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:51,903 INFO Connection check task start + +2025-09-24 06:58:51,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:51,903 INFO Out dated connection ,size=0 + +2025-09-24 06:58:51,903 INFO Connection check task end + +2025-09-24 06:58:53,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:54,903 INFO Connection check task start + +2025-09-24 06:58:54,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:54,903 INFO Out dated connection ,size=0 + +2025-09-24 06:58:54,903 INFO Connection check task end + +2025-09-24 06:58:56,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:58:57,905 INFO Connection check task start + +2025-09-24 06:58:57,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:58:57,906 INFO Out dated connection ,size=0 + +2025-09-24 06:58:57,906 INFO Connection check task end + +2025-09-24 06:58:59,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:00,906 INFO Connection check task start + +2025-09-24 06:59:00,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:00,906 INFO Out dated connection ,size=0 + +2025-09-24 06:59:00,906 INFO Connection check task end + +2025-09-24 06:59:02,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:03,906 INFO Connection check task start + +2025-09-24 06:59:03,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:03,906 INFO Out dated connection ,size=0 + +2025-09-24 06:59:03,906 INFO Connection check task end + +2025-09-24 06:59:05,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:06,907 INFO Connection check task start + +2025-09-24 06:59:06,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:06,907 INFO Out dated connection ,size=0 + +2025-09-24 06:59:06,907 INFO Connection check task end + +2025-09-24 06:59:08,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:09,908 INFO Connection check task start + +2025-09-24 06:59:09,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:09,908 INFO Out dated connection ,size=0 + +2025-09-24 06:59:09,908 INFO Connection check task end + +2025-09-24 06:59:11,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:12,909 INFO Connection check task start + +2025-09-24 06:59:12,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:12,909 INFO Out dated connection ,size=0 + +2025-09-24 06:59:12,909 INFO Connection check task end + +2025-09-24 06:59:14,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:15,911 INFO Connection check task start + +2025-09-24 06:59:15,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:15,911 INFO Out dated connection ,size=0 + +2025-09-24 06:59:15,911 INFO Connection check task end + +2025-09-24 06:59:17,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:18,913 INFO Connection check task start + +2025-09-24 06:59:18,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:18,913 INFO Out dated connection ,size=0 + +2025-09-24 06:59:18,913 INFO Connection check task end + +2025-09-24 06:59:20,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:21,914 INFO Connection check task start + +2025-09-24 06:59:21,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:21,914 INFO Out dated connection ,size=0 + +2025-09-24 06:59:21,914 INFO Connection check task end + +2025-09-24 06:59:23,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:24,915 INFO Connection check task start + +2025-09-24 06:59:24,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:24,915 INFO Out dated connection ,size=0 + +2025-09-24 06:59:24,915 INFO Connection check task end + +2025-09-24 06:59:26,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:27,917 INFO Connection check task start + +2025-09-24 06:59:27,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:27,917 INFO Out dated connection ,size=0 + +2025-09-24 06:59:27,917 INFO Connection check task end + +2025-09-24 06:59:29,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:30,918 INFO Connection check task start + +2025-09-24 06:59:30,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:30,918 INFO Out dated connection ,size=0 + +2025-09-24 06:59:30,918 INFO Connection check task end + +2025-09-24 06:59:32,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:33,920 INFO Connection check task start + +2025-09-24 06:59:33,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:33,920 INFO Out dated connection ,size=0 + +2025-09-24 06:59:33,920 INFO Connection check task end + +2025-09-24 06:59:35,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:36,922 INFO Connection check task start + +2025-09-24 06:59:36,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:36,922 INFO Out dated connection ,size=0 + +2025-09-24 06:59:36,922 INFO Connection check task end + +2025-09-24 06:59:38,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:39,922 INFO Connection check task start + +2025-09-24 06:59:39,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:39,922 INFO Out dated connection ,size=0 + +2025-09-24 06:59:39,922 INFO Connection check task end + +2025-09-24 06:59:41,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:42,923 INFO Connection check task start + +2025-09-24 06:59:42,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:42,923 INFO Out dated connection ,size=0 + +2025-09-24 06:59:42,923 INFO Connection check task end + +2025-09-24 06:59:44,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:45,924 INFO Connection check task start + +2025-09-24 06:59:45,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:45,924 INFO Out dated connection ,size=0 + +2025-09-24 06:59:45,924 INFO Connection check task end + +2025-09-24 06:59:47,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:48,925 INFO Connection check task start + +2025-09-24 06:59:48,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:48,925 INFO Out dated connection ,size=0 + +2025-09-24 06:59:48,925 INFO Connection check task end + +2025-09-24 06:59:50,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:51,925 INFO Connection check task start + +2025-09-24 06:59:51,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:51,926 INFO Out dated connection ,size=0 + +2025-09-24 06:59:51,926 INFO Connection check task end + +2025-09-24 06:59:53,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:54,926 INFO Connection check task start + +2025-09-24 06:59:54,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:54,926 INFO Out dated connection ,size=0 + +2025-09-24 06:59:54,926 INFO Connection check task end + +2025-09-24 06:59:56,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 06:59:57,927 INFO Connection check task start + +2025-09-24 06:59:57,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 06:59:57,927 INFO Out dated connection ,size=0 + +2025-09-24 06:59:57,927 INFO Connection check task end + +2025-09-24 06:59:59,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:00,927 INFO Connection check task start + +2025-09-24 07:00:00,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:00,927 INFO Out dated connection ,size=0 + +2025-09-24 07:00:00,927 INFO Connection check task end + +2025-09-24 07:00:02,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:03,929 INFO Connection check task start + +2025-09-24 07:00:03,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:03,929 INFO Out dated connection ,size=0 + +2025-09-24 07:00:03,929 INFO Connection check task end + +2025-09-24 07:00:05,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:06,931 INFO Connection check task start + +2025-09-24 07:00:06,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:06,931 INFO Out dated connection ,size=0 + +2025-09-24 07:00:06,931 INFO Connection check task end + +2025-09-24 07:00:08,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:09,931 INFO Connection check task start + +2025-09-24 07:00:09,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:09,932 INFO Out dated connection ,size=0 + +2025-09-24 07:00:09,932 INFO Connection check task end + +2025-09-24 07:00:11,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:12,933 INFO Connection check task start + +2025-09-24 07:00:12,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:12,933 INFO Out dated connection ,size=0 + +2025-09-24 07:00:12,933 INFO Connection check task end + +2025-09-24 07:00:14,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:15,935 INFO Connection check task start + +2025-09-24 07:00:15,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:15,936 INFO Out dated connection ,size=0 + +2025-09-24 07:00:15,936 INFO Connection check task end + +2025-09-24 07:00:17,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:18,936 INFO Connection check task start + +2025-09-24 07:00:18,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:18,936 INFO Out dated connection ,size=0 + +2025-09-24 07:00:18,936 INFO Connection check task end + +2025-09-24 07:00:20,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:21,937 INFO Connection check task start + +2025-09-24 07:00:21,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:21,937 INFO Out dated connection ,size=0 + +2025-09-24 07:00:21,937 INFO Connection check task end + +2025-09-24 07:00:23,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:24,939 INFO Connection check task start + +2025-09-24 07:00:24,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:24,939 INFO Out dated connection ,size=0 + +2025-09-24 07:00:24,939 INFO Connection check task end + +2025-09-24 07:00:26,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:27,939 INFO Connection check task start + +2025-09-24 07:00:27,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:27,939 INFO Out dated connection ,size=0 + +2025-09-24 07:00:27,940 INFO Connection check task end + +2025-09-24 07:00:29,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:30,940 INFO Connection check task start + +2025-09-24 07:00:30,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:30,940 INFO Out dated connection ,size=0 + +2025-09-24 07:00:30,940 INFO Connection check task end + +2025-09-24 07:00:32,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:33,941 INFO Connection check task start + +2025-09-24 07:00:33,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:33,941 INFO Out dated connection ,size=0 + +2025-09-24 07:00:33,941 INFO Connection check task end + +2025-09-24 07:00:35,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:36,942 INFO Connection check task start + +2025-09-24 07:00:36,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:36,942 INFO Out dated connection ,size=0 + +2025-09-24 07:00:36,942 INFO Connection check task end + +2025-09-24 07:00:38,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:39,942 INFO Connection check task start + +2025-09-24 07:00:39,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:39,943 INFO Out dated connection ,size=0 + +2025-09-24 07:00:39,943 INFO Connection check task end + +2025-09-24 07:00:41,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:42,943 INFO Connection check task start + +2025-09-24 07:00:42,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:42,943 INFO Out dated connection ,size=0 + +2025-09-24 07:00:42,943 INFO Connection check task end + +2025-09-24 07:00:44,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:45,943 INFO Connection check task start + +2025-09-24 07:00:45,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:45,944 INFO Out dated connection ,size=0 + +2025-09-24 07:00:45,944 INFO Connection check task end + +2025-09-24 07:00:47,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:48,944 INFO Connection check task start + +2025-09-24 07:00:48,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:48,944 INFO Out dated connection ,size=0 + +2025-09-24 07:00:48,944 INFO Connection check task end + +2025-09-24 07:00:50,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:51,946 INFO Connection check task start + +2025-09-24 07:00:51,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:51,946 INFO Out dated connection ,size=0 + +2025-09-24 07:00:51,946 INFO Connection check task end + +2025-09-24 07:00:53,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:54,947 INFO Connection check task start + +2025-09-24 07:00:54,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:54,947 INFO Out dated connection ,size=0 + +2025-09-24 07:00:54,947 INFO Connection check task end + +2025-09-24 07:00:56,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:00:57,947 INFO Connection check task start + +2025-09-24 07:00:57,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:00:57,948 INFO Out dated connection ,size=0 + +2025-09-24 07:00:57,948 INFO Connection check task end + +2025-09-24 07:00:59,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:00,948 INFO Connection check task start + +2025-09-24 07:01:00,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:00,948 INFO Out dated connection ,size=0 + +2025-09-24 07:01:00,948 INFO Connection check task end + +2025-09-24 07:01:02,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:03,948 INFO Connection check task start + +2025-09-24 07:01:03,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:03,949 INFO Out dated connection ,size=0 + +2025-09-24 07:01:03,949 INFO Connection check task end + +2025-09-24 07:01:05,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:06,950 INFO Connection check task start + +2025-09-24 07:01:06,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:06,950 INFO Out dated connection ,size=0 + +2025-09-24 07:01:06,950 INFO Connection check task end + +2025-09-24 07:01:09,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:09,951 INFO Connection check task start + +2025-09-24 07:01:09,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:09,951 INFO Out dated connection ,size=0 + +2025-09-24 07:01:09,951 INFO Connection check task end + +2025-09-24 07:01:12,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:12,951 INFO Connection check task start + +2025-09-24 07:01:12,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:12,951 INFO Out dated connection ,size=0 + +2025-09-24 07:01:12,951 INFO Connection check task end + +2025-09-24 07:01:15,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:15,952 INFO Connection check task start + +2025-09-24 07:01:15,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:15,952 INFO Out dated connection ,size=0 + +2025-09-24 07:01:15,952 INFO Connection check task end + +2025-09-24 07:01:18,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:18,952 INFO Connection check task start + +2025-09-24 07:01:18,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:18,953 INFO Out dated connection ,size=0 + +2025-09-24 07:01:18,953 INFO Connection check task end + +2025-09-24 07:01:21,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:21,953 INFO Connection check task start + +2025-09-24 07:01:21,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:21,954 INFO Out dated connection ,size=0 + +2025-09-24 07:01:21,954 INFO Connection check task end + +2025-09-24 07:01:24,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:24,954 INFO Connection check task start + +2025-09-24 07:01:24,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:24,954 INFO Out dated connection ,size=0 + +2025-09-24 07:01:24,954 INFO Connection check task end + +2025-09-24 07:01:27,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:27,955 INFO Connection check task start + +2025-09-24 07:01:27,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:27,955 INFO Out dated connection ,size=0 + +2025-09-24 07:01:27,955 INFO Connection check task end + +2025-09-24 07:01:30,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:30,955 INFO Connection check task start + +2025-09-24 07:01:30,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:30,955 INFO Out dated connection ,size=0 + +2025-09-24 07:01:30,956 INFO Connection check task end + +2025-09-24 07:01:33,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:33,957 INFO Connection check task start + +2025-09-24 07:01:33,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:33,957 INFO Out dated connection ,size=0 + +2025-09-24 07:01:33,957 INFO Connection check task end + +2025-09-24 07:01:36,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:36,958 INFO Connection check task start + +2025-09-24 07:01:36,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:36,959 INFO Out dated connection ,size=0 + +2025-09-24 07:01:36,959 INFO Connection check task end + +2025-09-24 07:01:39,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:39,959 INFO Connection check task start + +2025-09-24 07:01:39,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:39,959 INFO Out dated connection ,size=0 + +2025-09-24 07:01:39,959 INFO Connection check task end + +2025-09-24 07:01:42,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:42,959 INFO Connection check task start + +2025-09-24 07:01:42,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:42,960 INFO Out dated connection ,size=0 + +2025-09-24 07:01:42,960 INFO Connection check task end + +2025-09-24 07:01:45,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:45,961 INFO Connection check task start + +2025-09-24 07:01:45,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:45,961 INFO Out dated connection ,size=0 + +2025-09-24 07:01:45,961 INFO Connection check task end + +2025-09-24 07:01:48,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:48,961 INFO Connection check task start + +2025-09-24 07:01:48,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:48,961 INFO Out dated connection ,size=0 + +2025-09-24 07:01:48,961 INFO Connection check task end + +2025-09-24 07:01:51,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:51,963 INFO Connection check task start + +2025-09-24 07:01:51,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:51,963 INFO Out dated connection ,size=0 + +2025-09-24 07:01:51,963 INFO Connection check task end + +2025-09-24 07:01:54,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:54,964 INFO Connection check task start + +2025-09-24 07:01:54,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:54,964 INFO Out dated connection ,size=0 + +2025-09-24 07:01:54,964 INFO Connection check task end + +2025-09-24 07:01:57,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:01:57,964 INFO Connection check task start + +2025-09-24 07:01:57,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:01:57,964 INFO Out dated connection ,size=0 + +2025-09-24 07:01:57,964 INFO Connection check task end + +2025-09-24 07:02:00,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:00,965 INFO Connection check task start + +2025-09-24 07:02:00,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:00,965 INFO Out dated connection ,size=0 + +2025-09-24 07:02:00,965 INFO Connection check task end + +2025-09-24 07:02:03,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:03,966 INFO Connection check task start + +2025-09-24 07:02:03,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:03,967 INFO Out dated connection ,size=0 + +2025-09-24 07:02:03,967 INFO Connection check task end + +2025-09-24 07:02:06,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:06,969 INFO Connection check task start + +2025-09-24 07:02:06,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:06,969 INFO Out dated connection ,size=0 + +2025-09-24 07:02:06,969 INFO Connection check task end + +2025-09-24 07:02:09,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:09,970 INFO Connection check task start + +2025-09-24 07:02:09,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:09,970 INFO Out dated connection ,size=0 + +2025-09-24 07:02:09,970 INFO Connection check task end + +2025-09-24 07:02:12,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:12,970 INFO Connection check task start + +2025-09-24 07:02:12,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:12,970 INFO Out dated connection ,size=0 + +2025-09-24 07:02:12,970 INFO Connection check task end + +2025-09-24 07:02:15,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:15,971 INFO Connection check task start + +2025-09-24 07:02:15,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:15,971 INFO Out dated connection ,size=0 + +2025-09-24 07:02:15,971 INFO Connection check task end + +2025-09-24 07:02:18,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:18,972 INFO Connection check task start + +2025-09-24 07:02:18,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:18,972 INFO Out dated connection ,size=0 + +2025-09-24 07:02:18,972 INFO Connection check task end + +2025-09-24 07:02:21,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:21,972 INFO Connection check task start + +2025-09-24 07:02:21,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:21,973 INFO Out dated connection ,size=0 + +2025-09-24 07:02:21,973 INFO Connection check task end + +2025-09-24 07:02:24,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:24,974 INFO Connection check task start + +2025-09-24 07:02:24,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:24,974 INFO Out dated connection ,size=0 + +2025-09-24 07:02:24,974 INFO Connection check task end + +2025-09-24 07:02:27,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:27,976 INFO Connection check task start + +2025-09-24 07:02:27,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:27,976 INFO Out dated connection ,size=0 + +2025-09-24 07:02:27,976 INFO Connection check task end + +2025-09-24 07:02:30,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:30,978 INFO Connection check task start + +2025-09-24 07:02:30,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:30,978 INFO Out dated connection ,size=0 + +2025-09-24 07:02:30,978 INFO Connection check task end + +2025-09-24 07:02:33,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:33,978 INFO Connection check task start + +2025-09-24 07:02:33,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:33,979 INFO Out dated connection ,size=0 + +2025-09-24 07:02:33,979 INFO Connection check task end + +2025-09-24 07:02:36,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:36,979 INFO Connection check task start + +2025-09-24 07:02:36,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:36,979 INFO Out dated connection ,size=0 + +2025-09-24 07:02:36,979 INFO Connection check task end + +2025-09-24 07:02:39,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:39,979 INFO Connection check task start + +2025-09-24 07:02:39,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:39,980 INFO Out dated connection ,size=0 + +2025-09-24 07:02:39,980 INFO Connection check task end + +2025-09-24 07:02:42,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:42,980 INFO Connection check task start + +2025-09-24 07:02:42,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:42,980 INFO Out dated connection ,size=0 + +2025-09-24 07:02:42,980 INFO Connection check task end + +2025-09-24 07:02:45,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:45,982 INFO Connection check task start + +2025-09-24 07:02:45,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:45,982 INFO Out dated connection ,size=0 + +2025-09-24 07:02:45,982 INFO Connection check task end + +2025-09-24 07:02:48,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:48,984 INFO Connection check task start + +2025-09-24 07:02:48,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:48,984 INFO Out dated connection ,size=0 + +2025-09-24 07:02:48,984 INFO Connection check task end + +2025-09-24 07:02:51,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:51,985 INFO Connection check task start + +2025-09-24 07:02:51,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:51,985 INFO Out dated connection ,size=0 + +2025-09-24 07:02:51,985 INFO Connection check task end + +2025-09-24 07:02:54,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:54,985 INFO Connection check task start + +2025-09-24 07:02:54,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:54,985 INFO Out dated connection ,size=0 + +2025-09-24 07:02:54,985 INFO Connection check task end + +2025-09-24 07:02:57,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:02:57,986 INFO Connection check task start + +2025-09-24 07:02:57,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:02:57,986 INFO Out dated connection ,size=0 + +2025-09-24 07:02:57,986 INFO Connection check task end + +2025-09-24 07:03:00,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:00,987 INFO Connection check task start + +2025-09-24 07:03:00,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:00,987 INFO Out dated connection ,size=0 + +2025-09-24 07:03:00,987 INFO Connection check task end + +2025-09-24 07:03:03,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:03,989 INFO Connection check task start + +2025-09-24 07:03:03,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:03,989 INFO Out dated connection ,size=0 + +2025-09-24 07:03:03,989 INFO Connection check task end + +2025-09-24 07:03:06,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:06,990 INFO Connection check task start + +2025-09-24 07:03:06,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:06,990 INFO Out dated connection ,size=0 + +2025-09-24 07:03:06,990 INFO Connection check task end + +2025-09-24 07:03:09,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:09,990 INFO Connection check task start + +2025-09-24 07:03:09,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:09,990 INFO Out dated connection ,size=0 + +2025-09-24 07:03:09,990 INFO Connection check task end + +2025-09-24 07:03:12,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:12,991 INFO Connection check task start + +2025-09-24 07:03:12,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:12,991 INFO Out dated connection ,size=0 + +2025-09-24 07:03:12,991 INFO Connection check task end + +2025-09-24 07:03:15,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:15,991 INFO Connection check task start + +2025-09-24 07:03:15,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:15,991 INFO Out dated connection ,size=0 + +2025-09-24 07:03:15,992 INFO Connection check task end + +2025-09-24 07:03:18,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:18,992 INFO Connection check task start + +2025-09-24 07:03:18,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:18,992 INFO Out dated connection ,size=0 + +2025-09-24 07:03:18,992 INFO Connection check task end + +2025-09-24 07:03:21,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:21,993 INFO Connection check task start + +2025-09-24 07:03:21,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:21,993 INFO Out dated connection ,size=0 + +2025-09-24 07:03:21,993 INFO Connection check task end + +2025-09-24 07:03:24,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:24,993 INFO Connection check task start + +2025-09-24 07:03:24,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:24,993 INFO Out dated connection ,size=0 + +2025-09-24 07:03:24,993 INFO Connection check task end + +2025-09-24 07:03:27,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:27,994 INFO Connection check task start + +2025-09-24 07:03:27,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:27,995 INFO Out dated connection ,size=0 + +2025-09-24 07:03:27,995 INFO Connection check task end + +2025-09-24 07:03:30,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:30,995 INFO Connection check task start + +2025-09-24 07:03:30,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:30,995 INFO Out dated connection ,size=0 + +2025-09-24 07:03:30,995 INFO Connection check task end + +2025-09-24 07:03:33,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:33,995 INFO Connection check task start + +2025-09-24 07:03:33,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:33,996 INFO Out dated connection ,size=0 + +2025-09-24 07:03:33,996 INFO Connection check task end + +2025-09-24 07:03:36,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:36,996 INFO Connection check task start + +2025-09-24 07:03:36,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:36,996 INFO Out dated connection ,size=0 + +2025-09-24 07:03:36,996 INFO Connection check task end + +2025-09-24 07:03:39,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:39,997 INFO Connection check task start + +2025-09-24 07:03:39,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:39,997 INFO Out dated connection ,size=0 + +2025-09-24 07:03:39,997 INFO Connection check task end + +2025-09-24 07:03:42,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:42,999 INFO Connection check task start + +2025-09-24 07:03:42,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:42,999 INFO Out dated connection ,size=0 + +2025-09-24 07:03:43,000 INFO Connection check task end + +2025-09-24 07:03:45,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:46,000 INFO Connection check task start + +2025-09-24 07:03:46,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:46,000 INFO Out dated connection ,size=0 + +2025-09-24 07:03:46,000 INFO Connection check task end + +2025-09-24 07:03:48,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:49,001 INFO Connection check task start + +2025-09-24 07:03:49,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:49,001 INFO Out dated connection ,size=0 + +2025-09-24 07:03:49,001 INFO Connection check task end + +2025-09-24 07:03:51,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:52,002 INFO Connection check task start + +2025-09-24 07:03:52,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:52,002 INFO Out dated connection ,size=0 + +2025-09-24 07:03:52,002 INFO Connection check task end + +2025-09-24 07:03:54,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:55,002 INFO Connection check task start + +2025-09-24 07:03:55,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:55,003 INFO Out dated connection ,size=0 + +2025-09-24 07:03:55,003 INFO Connection check task end + +2025-09-24 07:03:57,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:03:58,003 INFO Connection check task start + +2025-09-24 07:03:58,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:03:58,003 INFO Out dated connection ,size=0 + +2025-09-24 07:03:58,003 INFO Connection check task end + +2025-09-24 07:04:00,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:01,004 INFO Connection check task start + +2025-09-24 07:04:01,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:01,004 INFO Out dated connection ,size=0 + +2025-09-24 07:04:01,004 INFO Connection check task end + +2025-09-24 07:04:03,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:04,004 INFO Connection check task start + +2025-09-24 07:04:04,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:04,005 INFO Out dated connection ,size=0 + +2025-09-24 07:04:04,005 INFO Connection check task end + +2025-09-24 07:04:06,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:07,007 INFO Connection check task start + +2025-09-24 07:04:07,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:07,007 INFO Out dated connection ,size=0 + +2025-09-24 07:04:07,007 INFO Connection check task end + +2025-09-24 07:04:09,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:10,008 INFO Connection check task start + +2025-09-24 07:04:10,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:10,008 INFO Out dated connection ,size=0 + +2025-09-24 07:04:10,008 INFO Connection check task end + +2025-09-24 07:04:12,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:13,010 INFO Connection check task start + +2025-09-24 07:04:13,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:13,010 INFO Out dated connection ,size=0 + +2025-09-24 07:04:13,010 INFO Connection check task end + +2025-09-24 07:04:15,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:16,011 INFO Connection check task start + +2025-09-24 07:04:16,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:16,011 INFO Out dated connection ,size=0 + +2025-09-24 07:04:16,011 INFO Connection check task end + +2025-09-24 07:04:18,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:19,011 INFO Connection check task start + +2025-09-24 07:04:19,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:19,011 INFO Out dated connection ,size=0 + +2025-09-24 07:04:19,011 INFO Connection check task end + +2025-09-24 07:04:21,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:22,012 INFO Connection check task start + +2025-09-24 07:04:22,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:22,012 INFO Out dated connection ,size=0 + +2025-09-24 07:04:22,012 INFO Connection check task end + +2025-09-24 07:04:24,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:25,013 INFO Connection check task start + +2025-09-24 07:04:25,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:25,013 INFO Out dated connection ,size=0 + +2025-09-24 07:04:25,013 INFO Connection check task end + +2025-09-24 07:04:27,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:28,015 INFO Connection check task start + +2025-09-24 07:04:28,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:28,015 INFO Out dated connection ,size=0 + +2025-09-24 07:04:28,015 INFO Connection check task end + +2025-09-24 07:04:30,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:31,015 INFO Connection check task start + +2025-09-24 07:04:31,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:31,016 INFO Out dated connection ,size=0 + +2025-09-24 07:04:31,016 INFO Connection check task end + +2025-09-24 07:04:33,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:34,016 INFO Connection check task start + +2025-09-24 07:04:34,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:34,016 INFO Out dated connection ,size=0 + +2025-09-24 07:04:34,016 INFO Connection check task end + +2025-09-24 07:04:36,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:37,017 INFO Connection check task start + +2025-09-24 07:04:37,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:37,017 INFO Out dated connection ,size=0 + +2025-09-24 07:04:37,017 INFO Connection check task end + +2025-09-24 07:04:39,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:40,019 INFO Connection check task start + +2025-09-24 07:04:40,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:40,019 INFO Out dated connection ,size=0 + +2025-09-24 07:04:40,019 INFO Connection check task end + +2025-09-24 07:04:42,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:43,019 INFO Connection check task start + +2025-09-24 07:04:43,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:43,020 INFO Out dated connection ,size=0 + +2025-09-24 07:04:43,020 INFO Connection check task end + +2025-09-24 07:04:45,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:46,021 INFO Connection check task start + +2025-09-24 07:04:46,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:46,021 INFO Out dated connection ,size=0 + +2025-09-24 07:04:46,021 INFO Connection check task end + +2025-09-24 07:04:48,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:49,022 INFO Connection check task start + +2025-09-24 07:04:49,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:49,022 INFO Out dated connection ,size=0 + +2025-09-24 07:04:49,022 INFO Connection check task end + +2025-09-24 07:04:51,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:52,023 INFO Connection check task start + +2025-09-24 07:04:52,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:52,023 INFO Out dated connection ,size=0 + +2025-09-24 07:04:52,023 INFO Connection check task end + +2025-09-24 07:04:54,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:55,023 INFO Connection check task start + +2025-09-24 07:04:55,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:55,023 INFO Out dated connection ,size=0 + +2025-09-24 07:04:55,023 INFO Connection check task end + +2025-09-24 07:04:57,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:04:58,025 INFO Connection check task start + +2025-09-24 07:04:58,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:04:58,026 INFO Out dated connection ,size=0 + +2025-09-24 07:04:58,026 INFO Connection check task end + +2025-09-24 07:05:00,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:01,028 INFO Connection check task start + +2025-09-24 07:05:01,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:01,028 INFO Out dated connection ,size=0 + +2025-09-24 07:05:01,028 INFO Connection check task end + +2025-09-24 07:05:03,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:04,028 INFO Connection check task start + +2025-09-24 07:05:04,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:04,028 INFO Out dated connection ,size=0 + +2025-09-24 07:05:04,028 INFO Connection check task end + +2025-09-24 07:05:06,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:07,031 INFO Connection check task start + +2025-09-24 07:05:07,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:07,031 INFO Out dated connection ,size=0 + +2025-09-24 07:05:07,031 INFO Connection check task end + +2025-09-24 07:05:09,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:10,032 INFO Connection check task start + +2025-09-24 07:05:10,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:10,032 INFO Out dated connection ,size=0 + +2025-09-24 07:05:10,032 INFO Connection check task end + +2025-09-24 07:05:12,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:13,032 INFO Connection check task start + +2025-09-24 07:05:13,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:13,033 INFO Out dated connection ,size=0 + +2025-09-24 07:05:13,033 INFO Connection check task end + +2025-09-24 07:05:15,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:16,033 INFO Connection check task start + +2025-09-24 07:05:16,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:16,033 INFO Out dated connection ,size=0 + +2025-09-24 07:05:16,033 INFO Connection check task end + +2025-09-24 07:05:18,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:19,035 INFO Connection check task start + +2025-09-24 07:05:19,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:19,035 INFO Out dated connection ,size=0 + +2025-09-24 07:05:19,035 INFO Connection check task end + +2025-09-24 07:05:21,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:22,035 INFO Connection check task start + +2025-09-24 07:05:22,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:22,036 INFO Out dated connection ,size=0 + +2025-09-24 07:05:22,036 INFO Connection check task end + +2025-09-24 07:05:24,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:25,036 INFO Connection check task start + +2025-09-24 07:05:25,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:25,036 INFO Out dated connection ,size=0 + +2025-09-24 07:05:25,036 INFO Connection check task end + +2025-09-24 07:05:27,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:28,038 INFO Connection check task start + +2025-09-24 07:05:28,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:28,038 INFO Out dated connection ,size=0 + +2025-09-24 07:05:28,038 INFO Connection check task end + +2025-09-24 07:05:30,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:31,040 INFO Connection check task start + +2025-09-24 07:05:31,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:31,041 INFO Out dated connection ,size=0 + +2025-09-24 07:05:31,041 INFO Connection check task end + +2025-09-24 07:05:33,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:34,041 INFO Connection check task start + +2025-09-24 07:05:34,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:34,041 INFO Out dated connection ,size=0 + +2025-09-24 07:05:34,041 INFO Connection check task end + +2025-09-24 07:05:36,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:37,041 INFO Connection check task start + +2025-09-24 07:05:37,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:37,041 INFO Out dated connection ,size=0 + +2025-09-24 07:05:37,041 INFO Connection check task end + +2025-09-24 07:05:39,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:40,042 INFO Connection check task start + +2025-09-24 07:05:40,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:40,042 INFO Out dated connection ,size=0 + +2025-09-24 07:05:40,042 INFO Connection check task end + +2025-09-24 07:05:42,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:43,043 INFO Connection check task start + +2025-09-24 07:05:43,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:43,043 INFO Out dated connection ,size=0 + +2025-09-24 07:05:43,043 INFO Connection check task end + +2025-09-24 07:05:45,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:46,044 INFO Connection check task start + +2025-09-24 07:05:46,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:46,044 INFO Out dated connection ,size=0 + +2025-09-24 07:05:46,044 INFO Connection check task end + +2025-09-24 07:05:48,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:49,045 INFO Connection check task start + +2025-09-24 07:05:49,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:49,045 INFO Out dated connection ,size=0 + +2025-09-24 07:05:49,045 INFO Connection check task end + +2025-09-24 07:05:51,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:52,046 INFO Connection check task start + +2025-09-24 07:05:52,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:52,047 INFO Out dated connection ,size=0 + +2025-09-24 07:05:52,047 INFO Connection check task end + +2025-09-24 07:05:54,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:55,048 INFO Connection check task start + +2025-09-24 07:05:55,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:55,048 INFO Out dated connection ,size=0 + +2025-09-24 07:05:55,048 INFO Connection check task end + +2025-09-24 07:05:57,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:05:58,049 INFO Connection check task start + +2025-09-24 07:05:58,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:05:58,049 INFO Out dated connection ,size=0 + +2025-09-24 07:05:58,049 INFO Connection check task end + +2025-09-24 07:06:00,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:01,051 INFO Connection check task start + +2025-09-24 07:06:01,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:01,051 INFO Out dated connection ,size=0 + +2025-09-24 07:06:01,051 INFO Connection check task end + +2025-09-24 07:06:03,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:04,054 INFO Connection check task start + +2025-09-24 07:06:04,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:04,054 INFO Out dated connection ,size=0 + +2025-09-24 07:06:04,054 INFO Connection check task end + +2025-09-24 07:06:06,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:07,054 INFO Connection check task start + +2025-09-24 07:06:07,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:07,054 INFO Out dated connection ,size=0 + +2025-09-24 07:06:07,054 INFO Connection check task end + +2025-09-24 07:06:09,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:10,055 INFO Connection check task start + +2025-09-24 07:06:10,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:10,055 INFO Out dated connection ,size=0 + +2025-09-24 07:06:10,055 INFO Connection check task end + +2025-09-24 07:06:12,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:13,056 INFO Connection check task start + +2025-09-24 07:06:13,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:13,056 INFO Out dated connection ,size=0 + +2025-09-24 07:06:13,056 INFO Connection check task end + +2025-09-24 07:06:15,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:16,058 INFO Connection check task start + +2025-09-24 07:06:16,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:16,058 INFO Out dated connection ,size=0 + +2025-09-24 07:06:16,058 INFO Connection check task end + +2025-09-24 07:06:18,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:19,061 INFO Connection check task start + +2025-09-24 07:06:19,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:19,061 INFO Out dated connection ,size=0 + +2025-09-24 07:06:19,061 INFO Connection check task end + +2025-09-24 07:06:21,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:22,063 INFO Connection check task start + +2025-09-24 07:06:22,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:22,063 INFO Out dated connection ,size=0 + +2025-09-24 07:06:22,063 INFO Connection check task end + +2025-09-24 07:06:24,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:25,064 INFO Connection check task start + +2025-09-24 07:06:25,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:25,064 INFO Out dated connection ,size=0 + +2025-09-24 07:06:25,064 INFO Connection check task end + +2025-09-24 07:06:27,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:28,066 INFO Connection check task start + +2025-09-24 07:06:28,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:28,067 INFO Out dated connection ,size=0 + +2025-09-24 07:06:28,067 INFO Connection check task end + +2025-09-24 07:06:30,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:31,067 INFO Connection check task start + +2025-09-24 07:06:31,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:31,067 INFO Out dated connection ,size=0 + +2025-09-24 07:06:31,067 INFO Connection check task end + +2025-09-24 07:06:33,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:34,068 INFO Connection check task start + +2025-09-24 07:06:34,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:34,068 INFO Out dated connection ,size=0 + +2025-09-24 07:06:34,068 INFO Connection check task end + +2025-09-24 07:06:36,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:37,069 INFO Connection check task start + +2025-09-24 07:06:37,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:37,069 INFO Out dated connection ,size=0 + +2025-09-24 07:06:37,069 INFO Connection check task end + +2025-09-24 07:06:39,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:40,071 INFO Connection check task start + +2025-09-24 07:06:40,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:40,072 INFO Out dated connection ,size=0 + +2025-09-24 07:06:40,072 INFO Connection check task end + +2025-09-24 07:06:42,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:43,072 INFO Connection check task start + +2025-09-24 07:06:43,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:43,072 INFO Out dated connection ,size=0 + +2025-09-24 07:06:43,072 INFO Connection check task end + +2025-09-24 07:06:45,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:46,074 INFO Connection check task start + +2025-09-24 07:06:46,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:46,074 INFO Out dated connection ,size=0 + +2025-09-24 07:06:46,074 INFO Connection check task end + +2025-09-24 07:06:48,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:49,076 INFO Connection check task start + +2025-09-24 07:06:49,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:49,076 INFO Out dated connection ,size=0 + +2025-09-24 07:06:49,076 INFO Connection check task end + +2025-09-24 07:06:51,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:52,077 INFO Connection check task start + +2025-09-24 07:06:52,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:52,077 INFO Out dated connection ,size=0 + +2025-09-24 07:06:52,077 INFO Connection check task end + +2025-09-24 07:06:54,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:55,077 INFO Connection check task start + +2025-09-24 07:06:55,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:55,078 INFO Out dated connection ,size=0 + +2025-09-24 07:06:55,078 INFO Connection check task end + +2025-09-24 07:06:57,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:06:58,080 INFO Connection check task start + +2025-09-24 07:06:58,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:06:58,080 INFO Out dated connection ,size=0 + +2025-09-24 07:06:58,080 INFO Connection check task end + +2025-09-24 07:07:00,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:01,082 INFO Connection check task start + +2025-09-24 07:07:01,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:01,082 INFO Out dated connection ,size=0 + +2025-09-24 07:07:01,083 INFO Connection check task end + +2025-09-24 07:07:03,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:04,085 INFO Connection check task start + +2025-09-24 07:07:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:04,085 INFO Out dated connection ,size=0 + +2025-09-24 07:07:04,085 INFO Connection check task end + +2025-09-24 07:07:06,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:07,087 INFO Connection check task start + +2025-09-24 07:07:07,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:07,087 INFO Out dated connection ,size=0 + +2025-09-24 07:07:07,087 INFO Connection check task end + +2025-09-24 07:07:09,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:10,088 INFO Connection check task start + +2025-09-24 07:07:10,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:10,088 INFO Out dated connection ,size=0 + +2025-09-24 07:07:10,088 INFO Connection check task end + +2025-09-24 07:07:12,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:13,089 INFO Connection check task start + +2025-09-24 07:07:13,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:13,089 INFO Out dated connection ,size=0 + +2025-09-24 07:07:13,089 INFO Connection check task end + +2025-09-24 07:07:15,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:16,090 INFO Connection check task start + +2025-09-24 07:07:16,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:16,090 INFO Out dated connection ,size=0 + +2025-09-24 07:07:16,090 INFO Connection check task end + +2025-09-24 07:07:18,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:19,090 INFO Connection check task start + +2025-09-24 07:07:19,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:19,090 INFO Out dated connection ,size=0 + +2025-09-24 07:07:19,090 INFO Connection check task end + +2025-09-24 07:07:21,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:22,091 INFO Connection check task start + +2025-09-24 07:07:22,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:22,091 INFO Out dated connection ,size=0 + +2025-09-24 07:07:22,091 INFO Connection check task end + +2025-09-24 07:07:24,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:25,093 INFO Connection check task start + +2025-09-24 07:07:25,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:25,093 INFO Out dated connection ,size=0 + +2025-09-24 07:07:25,094 INFO Connection check task end + +2025-09-24 07:07:27,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:28,094 INFO Connection check task start + +2025-09-24 07:07:28,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:28,094 INFO Out dated connection ,size=0 + +2025-09-24 07:07:28,094 INFO Connection check task end + +2025-09-24 07:07:30,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:31,095 INFO Connection check task start + +2025-09-24 07:07:31,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:31,096 INFO Out dated connection ,size=0 + +2025-09-24 07:07:31,096 INFO Connection check task end + +2025-09-24 07:07:33,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:34,096 INFO Connection check task start + +2025-09-24 07:07:34,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:34,097 INFO Out dated connection ,size=0 + +2025-09-24 07:07:34,097 INFO Connection check task end + +2025-09-24 07:07:36,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:37,099 INFO Connection check task start + +2025-09-24 07:07:37,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:37,099 INFO Out dated connection ,size=0 + +2025-09-24 07:07:37,099 INFO Connection check task end + +2025-09-24 07:07:39,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:40,100 INFO Connection check task start + +2025-09-24 07:07:40,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:40,100 INFO Out dated connection ,size=0 + +2025-09-24 07:07:40,100 INFO Connection check task end + +2025-09-24 07:07:42,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:43,101 INFO Connection check task start + +2025-09-24 07:07:43,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:43,101 INFO Out dated connection ,size=0 + +2025-09-24 07:07:43,101 INFO Connection check task end + +2025-09-24 07:07:45,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:46,102 INFO Connection check task start + +2025-09-24 07:07:46,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:46,102 INFO Out dated connection ,size=0 + +2025-09-24 07:07:46,102 INFO Connection check task end + +2025-09-24 07:07:48,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:49,103 INFO Connection check task start + +2025-09-24 07:07:49,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:49,103 INFO Out dated connection ,size=0 + +2025-09-24 07:07:49,103 INFO Connection check task end + +2025-09-24 07:07:51,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:52,105 INFO Connection check task start + +2025-09-24 07:07:52,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:52,105 INFO Out dated connection ,size=0 + +2025-09-24 07:07:52,105 INFO Connection check task end + +2025-09-24 07:07:54,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:55,108 INFO Connection check task start + +2025-09-24 07:07:55,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:55,108 INFO Out dated connection ,size=0 + +2025-09-24 07:07:55,108 INFO Connection check task end + +2025-09-24 07:07:57,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:07:58,108 INFO Connection check task start + +2025-09-24 07:07:58,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:07:58,108 INFO Out dated connection ,size=0 + +2025-09-24 07:07:58,108 INFO Connection check task end + +2025-09-24 07:08:00,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:01,109 INFO Connection check task start + +2025-09-24 07:08:01,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:01,109 INFO Out dated connection ,size=0 + +2025-09-24 07:08:01,109 INFO Connection check task end + +2025-09-24 07:08:03,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:04,111 INFO Connection check task start + +2025-09-24 07:08:04,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:04,111 INFO Out dated connection ,size=0 + +2025-09-24 07:08:04,111 INFO Connection check task end + +2025-09-24 07:08:06,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:07,113 INFO Connection check task start + +2025-09-24 07:08:07,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:07,113 INFO Out dated connection ,size=0 + +2025-09-24 07:08:07,113 INFO Connection check task end + +2025-09-24 07:08:09,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:10,113 INFO Connection check task start + +2025-09-24 07:08:10,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:10,113 INFO Out dated connection ,size=0 + +2025-09-24 07:08:10,113 INFO Connection check task end + +2025-09-24 07:08:12,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:13,114 INFO Connection check task start + +2025-09-24 07:08:13,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:13,114 INFO Out dated connection ,size=0 + +2025-09-24 07:08:13,114 INFO Connection check task end + +2025-09-24 07:08:15,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:16,116 INFO Connection check task start + +2025-09-24 07:08:16,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:16,116 INFO Out dated connection ,size=0 + +2025-09-24 07:08:16,116 INFO Connection check task end + +2025-09-24 07:08:18,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:19,118 INFO Connection check task start + +2025-09-24 07:08:19,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:19,118 INFO Out dated connection ,size=0 + +2025-09-24 07:08:19,118 INFO Connection check task end + +2025-09-24 07:08:21,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:22,118 INFO Connection check task start + +2025-09-24 07:08:22,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:22,118 INFO Out dated connection ,size=0 + +2025-09-24 07:08:22,118 INFO Connection check task end + +2025-09-24 07:08:24,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:25,118 INFO Connection check task start + +2025-09-24 07:08:25,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:25,119 INFO Out dated connection ,size=0 + +2025-09-24 07:08:25,119 INFO Connection check task end + +2025-09-24 07:08:27,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:28,120 INFO Connection check task start + +2025-09-24 07:08:28,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:28,120 INFO Out dated connection ,size=0 + +2025-09-24 07:08:28,120 INFO Connection check task end + +2025-09-24 07:08:30,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:31,122 INFO Connection check task start + +2025-09-24 07:08:31,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:31,122 INFO Out dated connection ,size=0 + +2025-09-24 07:08:31,122 INFO Connection check task end + +2025-09-24 07:08:33,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:34,125 INFO Connection check task start + +2025-09-24 07:08:34,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:34,125 INFO Out dated connection ,size=0 + +2025-09-24 07:08:34,125 INFO Connection check task end + +2025-09-24 07:08:36,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:37,125 INFO Connection check task start + +2025-09-24 07:08:37,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:37,125 INFO Out dated connection ,size=0 + +2025-09-24 07:08:37,125 INFO Connection check task end + +2025-09-24 07:08:39,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:40,127 INFO Connection check task start + +2025-09-24 07:08:40,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:40,127 INFO Out dated connection ,size=0 + +2025-09-24 07:08:40,127 INFO Connection check task end + +2025-09-24 07:08:42,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:43,128 INFO Connection check task start + +2025-09-24 07:08:43,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:43,128 INFO Out dated connection ,size=0 + +2025-09-24 07:08:43,128 INFO Connection check task end + +2025-09-24 07:08:45,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:46,129 INFO Connection check task start + +2025-09-24 07:08:46,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:46,129 INFO Out dated connection ,size=0 + +2025-09-24 07:08:46,129 INFO Connection check task end + +2025-09-24 07:08:48,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:49,129 INFO Connection check task start + +2025-09-24 07:08:49,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:49,129 INFO Out dated connection ,size=0 + +2025-09-24 07:08:49,129 INFO Connection check task end + +2025-09-24 07:08:51,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:52,130 INFO Connection check task start + +2025-09-24 07:08:52,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:52,130 INFO Out dated connection ,size=0 + +2025-09-24 07:08:52,130 INFO Connection check task end + +2025-09-24 07:08:54,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:55,131 INFO Connection check task start + +2025-09-24 07:08:55,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:55,131 INFO Out dated connection ,size=0 + +2025-09-24 07:08:55,131 INFO Connection check task end + +2025-09-24 07:08:57,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:08:58,132 INFO Connection check task start + +2025-09-24 07:08:58,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:08:58,132 INFO Out dated connection ,size=0 + +2025-09-24 07:08:58,132 INFO Connection check task end + +2025-09-24 07:09:00,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:01,133 INFO Connection check task start + +2025-09-24 07:09:01,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:01,133 INFO Out dated connection ,size=0 + +2025-09-24 07:09:01,133 INFO Connection check task end + +2025-09-24 07:09:03,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:04,133 INFO Connection check task start + +2025-09-24 07:09:04,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:04,134 INFO Out dated connection ,size=0 + +2025-09-24 07:09:04,134 INFO Connection check task end + +2025-09-24 07:09:06,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:07,136 INFO Connection check task start + +2025-09-24 07:09:07,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:07,136 INFO Out dated connection ,size=0 + +2025-09-24 07:09:07,136 INFO Connection check task end + +2025-09-24 07:09:09,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:10,137 INFO Connection check task start + +2025-09-24 07:09:10,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:10,137 INFO Out dated connection ,size=0 + +2025-09-24 07:09:10,137 INFO Connection check task end + +2025-09-24 07:09:12,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:13,139 INFO Connection check task start + +2025-09-24 07:09:13,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:13,139 INFO Out dated connection ,size=0 + +2025-09-24 07:09:13,139 INFO Connection check task end + +2025-09-24 07:09:15,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:16,141 INFO Connection check task start + +2025-09-24 07:09:16,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:16,141 INFO Out dated connection ,size=0 + +2025-09-24 07:09:16,141 INFO Connection check task end + +2025-09-24 07:09:18,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:19,141 INFO Connection check task start + +2025-09-24 07:09:19,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:19,141 INFO Out dated connection ,size=0 + +2025-09-24 07:09:19,141 INFO Connection check task end + +2025-09-24 07:09:21,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:22,142 INFO Connection check task start + +2025-09-24 07:09:22,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:22,142 INFO Out dated connection ,size=0 + +2025-09-24 07:09:22,142 INFO Connection check task end + +2025-09-24 07:09:24,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:25,144 INFO Connection check task start + +2025-09-24 07:09:25,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:25,144 INFO Out dated connection ,size=0 + +2025-09-24 07:09:25,144 INFO Connection check task end + +2025-09-24 07:09:27,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:28,144 INFO Connection check task start + +2025-09-24 07:09:28,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:28,144 INFO Out dated connection ,size=0 + +2025-09-24 07:09:28,144 INFO Connection check task end + +2025-09-24 07:09:30,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:31,146 INFO Connection check task start + +2025-09-24 07:09:31,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:31,146 INFO Out dated connection ,size=0 + +2025-09-24 07:09:31,147 INFO Connection check task end + +2025-09-24 07:09:33,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:34,148 INFO Connection check task start + +2025-09-24 07:09:34,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:34,148 INFO Out dated connection ,size=0 + +2025-09-24 07:09:34,149 INFO Connection check task end + +2025-09-24 07:09:36,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:37,150 INFO Connection check task start + +2025-09-24 07:09:37,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:37,150 INFO Out dated connection ,size=0 + +2025-09-24 07:09:37,150 INFO Connection check task end + +2025-09-24 07:09:39,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:40,151 INFO Connection check task start + +2025-09-24 07:09:40,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:40,151 INFO Out dated connection ,size=0 + +2025-09-24 07:09:40,151 INFO Connection check task end + +2025-09-24 07:09:42,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:43,151 INFO Connection check task start + +2025-09-24 07:09:43,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:43,152 INFO Out dated connection ,size=0 + +2025-09-24 07:09:43,152 INFO Connection check task end + +2025-09-24 07:09:45,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:46,153 INFO Connection check task start + +2025-09-24 07:09:46,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:46,153 INFO Out dated connection ,size=0 + +2025-09-24 07:09:46,153 INFO Connection check task end + +2025-09-24 07:09:48,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:49,153 INFO Connection check task start + +2025-09-24 07:09:49,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:49,154 INFO Out dated connection ,size=0 + +2025-09-24 07:09:49,154 INFO Connection check task end + +2025-09-24 07:09:51,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:52,154 INFO Connection check task start + +2025-09-24 07:09:52,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:52,154 INFO Out dated connection ,size=0 + +2025-09-24 07:09:52,154 INFO Connection check task end + +2025-09-24 07:09:54,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:55,156 INFO Connection check task start + +2025-09-24 07:09:55,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:55,156 INFO Out dated connection ,size=0 + +2025-09-24 07:09:55,156 INFO Connection check task end + +2025-09-24 07:09:57,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:09:58,156 INFO Connection check task start + +2025-09-24 07:09:58,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:09:58,157 INFO Out dated connection ,size=0 + +2025-09-24 07:09:58,157 INFO Connection check task end + +2025-09-24 07:10:00,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:01,158 INFO Connection check task start + +2025-09-24 07:10:01,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:01,158 INFO Out dated connection ,size=0 + +2025-09-24 07:10:01,158 INFO Connection check task end + +2025-09-24 07:10:03,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:04,158 INFO Connection check task start + +2025-09-24 07:10:04,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:04,159 INFO Out dated connection ,size=0 + +2025-09-24 07:10:04,159 INFO Connection check task end + +2025-09-24 07:10:06,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:07,159 INFO Connection check task start + +2025-09-24 07:10:07,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:07,159 INFO Out dated connection ,size=0 + +2025-09-24 07:10:07,159 INFO Connection check task end + +2025-09-24 07:10:09,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:10,159 INFO Connection check task start + +2025-09-24 07:10:10,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:10,159 INFO Out dated connection ,size=0 + +2025-09-24 07:10:10,159 INFO Connection check task end + +2025-09-24 07:10:12,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:13,161 INFO Connection check task start + +2025-09-24 07:10:13,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:13,161 INFO Out dated connection ,size=0 + +2025-09-24 07:10:13,161 INFO Connection check task end + +2025-09-24 07:10:15,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:16,161 INFO Connection check task start + +2025-09-24 07:10:16,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:16,161 INFO Out dated connection ,size=0 + +2025-09-24 07:10:16,161 INFO Connection check task end + +2025-09-24 07:10:18,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:19,162 INFO Connection check task start + +2025-09-24 07:10:19,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:19,162 INFO Out dated connection ,size=0 + +2025-09-24 07:10:19,162 INFO Connection check task end + +2025-09-24 07:10:21,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:22,163 INFO Connection check task start + +2025-09-24 07:10:22,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:22,163 INFO Out dated connection ,size=0 + +2025-09-24 07:10:22,163 INFO Connection check task end + +2025-09-24 07:10:24,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:25,163 INFO Connection check task start + +2025-09-24 07:10:25,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:25,163 INFO Out dated connection ,size=0 + +2025-09-24 07:10:25,163 INFO Connection check task end + +2025-09-24 07:10:27,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:28,164 INFO Connection check task start + +2025-09-24 07:10:28,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:28,164 INFO Out dated connection ,size=0 + +2025-09-24 07:10:28,164 INFO Connection check task end + +2025-09-24 07:10:30,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:31,164 INFO Connection check task start + +2025-09-24 07:10:31,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:31,164 INFO Out dated connection ,size=0 + +2025-09-24 07:10:31,164 INFO Connection check task end + +2025-09-24 07:10:33,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:34,165 INFO Connection check task start + +2025-09-24 07:10:34,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:34,165 INFO Out dated connection ,size=0 + +2025-09-24 07:10:34,165 INFO Connection check task end + +2025-09-24 07:10:36,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:37,166 INFO Connection check task start + +2025-09-24 07:10:37,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:37,166 INFO Out dated connection ,size=0 + +2025-09-24 07:10:37,166 INFO Connection check task end + +2025-09-24 07:10:39,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:40,166 INFO Connection check task start + +2025-09-24 07:10:40,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:40,167 INFO Out dated connection ,size=0 + +2025-09-24 07:10:40,167 INFO Connection check task end + +2025-09-24 07:10:42,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:43,167 INFO Connection check task start + +2025-09-24 07:10:43,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:43,167 INFO Out dated connection ,size=0 + +2025-09-24 07:10:43,167 INFO Connection check task end + +2025-09-24 07:10:45,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:46,169 INFO Connection check task start + +2025-09-24 07:10:46,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:46,169 INFO Out dated connection ,size=0 + +2025-09-24 07:10:46,169 INFO Connection check task end + +2025-09-24 07:10:48,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:49,170 INFO Connection check task start + +2025-09-24 07:10:49,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:49,170 INFO Out dated connection ,size=0 + +2025-09-24 07:10:49,170 INFO Connection check task end + +2025-09-24 07:10:51,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:52,172 INFO Connection check task start + +2025-09-24 07:10:52,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:52,172 INFO Out dated connection ,size=0 + +2025-09-24 07:10:52,172 INFO Connection check task end + +2025-09-24 07:10:54,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:55,174 INFO Connection check task start + +2025-09-24 07:10:55,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:55,174 INFO Out dated connection ,size=0 + +2025-09-24 07:10:55,174 INFO Connection check task end + +2025-09-24 07:10:57,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:10:58,175 INFO Connection check task start + +2025-09-24 07:10:58,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:10:58,175 INFO Out dated connection ,size=0 + +2025-09-24 07:10:58,175 INFO Connection check task end + +2025-09-24 07:11:00,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:01,177 INFO Connection check task start + +2025-09-24 07:11:01,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:01,177 INFO Out dated connection ,size=0 + +2025-09-24 07:11:01,177 INFO Connection check task end + +2025-09-24 07:11:03,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:04,179 INFO Connection check task start + +2025-09-24 07:11:04,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:04,179 INFO Out dated connection ,size=0 + +2025-09-24 07:11:04,179 INFO Connection check task end + +2025-09-24 07:11:06,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:07,179 INFO Connection check task start + +2025-09-24 07:11:07,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:07,179 INFO Out dated connection ,size=0 + +2025-09-24 07:11:07,179 INFO Connection check task end + +2025-09-24 07:11:09,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:10,181 INFO Connection check task start + +2025-09-24 07:11:10,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:10,181 INFO Out dated connection ,size=0 + +2025-09-24 07:11:10,182 INFO Connection check task end + +2025-09-24 07:11:12,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:13,182 INFO Connection check task start + +2025-09-24 07:11:13,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:13,183 INFO Out dated connection ,size=0 + +2025-09-24 07:11:13,183 INFO Connection check task end + +2025-09-24 07:11:15,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:16,183 INFO Connection check task start + +2025-09-24 07:11:16,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:16,183 INFO Out dated connection ,size=0 + +2025-09-24 07:11:16,183 INFO Connection check task end + +2025-09-24 07:11:18,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:19,185 INFO Connection check task start + +2025-09-24 07:11:19,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:19,185 INFO Out dated connection ,size=0 + +2025-09-24 07:11:19,185 INFO Connection check task end + +2025-09-24 07:11:21,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:22,186 INFO Connection check task start + +2025-09-24 07:11:22,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:22,186 INFO Out dated connection ,size=0 + +2025-09-24 07:11:22,186 INFO Connection check task end + +2025-09-24 07:11:24,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:25,188 INFO Connection check task start + +2025-09-24 07:11:25,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:25,188 INFO Out dated connection ,size=0 + +2025-09-24 07:11:25,188 INFO Connection check task end + +2025-09-24 07:11:27,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:28,190 INFO Connection check task start + +2025-09-24 07:11:28,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:28,190 INFO Out dated connection ,size=0 + +2025-09-24 07:11:28,190 INFO Connection check task end + +2025-09-24 07:11:30,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:31,191 INFO Connection check task start + +2025-09-24 07:11:31,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:31,192 INFO Out dated connection ,size=0 + +2025-09-24 07:11:31,192 INFO Connection check task end + +2025-09-24 07:11:33,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:34,194 INFO Connection check task start + +2025-09-24 07:11:34,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:34,194 INFO Out dated connection ,size=0 + +2025-09-24 07:11:34,194 INFO Connection check task end + +2025-09-24 07:11:36,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:37,195 INFO Connection check task start + +2025-09-24 07:11:37,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:37,195 INFO Out dated connection ,size=0 + +2025-09-24 07:11:37,195 INFO Connection check task end + +2025-09-24 07:11:39,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:40,195 INFO Connection check task start + +2025-09-24 07:11:40,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:40,195 INFO Out dated connection ,size=0 + +2025-09-24 07:11:40,195 INFO Connection check task end + +2025-09-24 07:11:42,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:43,195 INFO Connection check task start + +2025-09-24 07:11:43,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:43,195 INFO Out dated connection ,size=0 + +2025-09-24 07:11:43,195 INFO Connection check task end + +2025-09-24 07:11:45,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:46,197 INFO Connection check task start + +2025-09-24 07:11:46,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:46,198 INFO Out dated connection ,size=0 + +2025-09-24 07:11:46,198 INFO Connection check task end + +2025-09-24 07:11:48,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:49,198 INFO Connection check task start + +2025-09-24 07:11:49,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:49,198 INFO Out dated connection ,size=0 + +2025-09-24 07:11:49,198 INFO Connection check task end + +2025-09-24 07:11:51,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:52,200 INFO Connection check task start + +2025-09-24 07:11:52,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:52,201 INFO Out dated connection ,size=0 + +2025-09-24 07:11:52,201 INFO Connection check task end + +2025-09-24 07:11:54,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:55,203 INFO Connection check task start + +2025-09-24 07:11:55,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:55,203 INFO Out dated connection ,size=0 + +2025-09-24 07:11:55,203 INFO Connection check task end + +2025-09-24 07:11:57,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:11:58,203 INFO Connection check task start + +2025-09-24 07:11:58,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:11:58,203 INFO Out dated connection ,size=0 + +2025-09-24 07:11:58,203 INFO Connection check task end + +2025-09-24 07:12:00,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:01,204 INFO Connection check task start + +2025-09-24 07:12:01,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:01,204 INFO Out dated connection ,size=0 + +2025-09-24 07:12:01,204 INFO Connection check task end + +2025-09-24 07:12:03,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:04,205 INFO Connection check task start + +2025-09-24 07:12:04,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:04,212 INFO Out dated connection ,size=0 + +2025-09-24 07:12:04,212 INFO Connection check task end + +2025-09-24 07:12:06,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:07,213 INFO Connection check task start + +2025-09-24 07:12:07,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:07,213 INFO Out dated connection ,size=0 + +2025-09-24 07:12:07,213 INFO Connection check task end + +2025-09-24 07:12:09,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:10,214 INFO Connection check task start + +2025-09-24 07:12:10,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:10,214 INFO Out dated connection ,size=0 + +2025-09-24 07:12:10,214 INFO Connection check task end + +2025-09-24 07:12:12,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:13,216 INFO Connection check task start + +2025-09-24 07:12:13,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:13,216 INFO Out dated connection ,size=0 + +2025-09-24 07:12:13,216 INFO Connection check task end + +2025-09-24 07:12:15,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:16,217 INFO Connection check task start + +2025-09-24 07:12:16,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:16,217 INFO Out dated connection ,size=0 + +2025-09-24 07:12:16,217 INFO Connection check task end + +2025-09-24 07:12:18,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:19,217 INFO Connection check task start + +2025-09-24 07:12:19,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:19,217 INFO Out dated connection ,size=0 + +2025-09-24 07:12:19,218 INFO Connection check task end + +2025-09-24 07:12:21,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:22,218 INFO Connection check task start + +2025-09-24 07:12:22,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:22,218 INFO Out dated connection ,size=0 + +2025-09-24 07:12:22,218 INFO Connection check task end + +2025-09-24 07:12:24,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:25,220 INFO Connection check task start + +2025-09-24 07:12:25,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:25,220 INFO Out dated connection ,size=0 + +2025-09-24 07:12:25,220 INFO Connection check task end + +2025-09-24 07:12:27,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:28,221 INFO Connection check task start + +2025-09-24 07:12:28,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:28,221 INFO Out dated connection ,size=0 + +2025-09-24 07:12:28,221 INFO Connection check task end + +2025-09-24 07:12:30,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:31,221 INFO Connection check task start + +2025-09-24 07:12:31,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:31,222 INFO Out dated connection ,size=0 + +2025-09-24 07:12:31,222 INFO Connection check task end + +2025-09-24 07:12:33,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:34,222 INFO Connection check task start + +2025-09-24 07:12:34,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:34,222 INFO Out dated connection ,size=0 + +2025-09-24 07:12:34,222 INFO Connection check task end + +2025-09-24 07:12:36,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:37,223 INFO Connection check task start + +2025-09-24 07:12:37,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:37,223 INFO Out dated connection ,size=0 + +2025-09-24 07:12:37,223 INFO Connection check task end + +2025-09-24 07:12:39,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:40,224 INFO Connection check task start + +2025-09-24 07:12:40,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:40,224 INFO Out dated connection ,size=0 + +2025-09-24 07:12:40,224 INFO Connection check task end + +2025-09-24 07:12:42,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:43,226 INFO Connection check task start + +2025-09-24 07:12:43,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:43,226 INFO Out dated connection ,size=0 + +2025-09-24 07:12:43,226 INFO Connection check task end + +2025-09-24 07:12:45,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:46,228 INFO Connection check task start + +2025-09-24 07:12:46,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:46,228 INFO Out dated connection ,size=0 + +2025-09-24 07:12:46,229 INFO Connection check task end + +2025-09-24 07:12:48,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:49,231 INFO Connection check task start + +2025-09-24 07:12:49,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:49,231 INFO Out dated connection ,size=0 + +2025-09-24 07:12:49,231 INFO Connection check task end + +2025-09-24 07:12:51,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:52,231 INFO Connection check task start + +2025-09-24 07:12:52,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:52,231 INFO Out dated connection ,size=0 + +2025-09-24 07:12:52,231 INFO Connection check task end + +2025-09-24 07:12:54,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:55,232 INFO Connection check task start + +2025-09-24 07:12:55,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:55,233 INFO Out dated connection ,size=0 + +2025-09-24 07:12:55,233 INFO Connection check task end + +2025-09-24 07:12:57,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:12:58,233 INFO Connection check task start + +2025-09-24 07:12:58,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:12:58,233 INFO Out dated connection ,size=0 + +2025-09-24 07:12:58,233 INFO Connection check task end + +2025-09-24 07:13:00,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:01,234 INFO Connection check task start + +2025-09-24 07:13:01,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:01,234 INFO Out dated connection ,size=0 + +2025-09-24 07:13:01,234 INFO Connection check task end + +2025-09-24 07:13:03,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:04,235 INFO Connection check task start + +2025-09-24 07:13:04,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:04,235 INFO Out dated connection ,size=0 + +2025-09-24 07:13:04,235 INFO Connection check task end + +2025-09-24 07:13:06,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:07,235 INFO Connection check task start + +2025-09-24 07:13:07,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:07,235 INFO Out dated connection ,size=0 + +2025-09-24 07:13:07,235 INFO Connection check task end + +2025-09-24 07:13:09,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:10,237 INFO Connection check task start + +2025-09-24 07:13:10,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:10,237 INFO Out dated connection ,size=0 + +2025-09-24 07:13:10,237 INFO Connection check task end + +2025-09-24 07:13:12,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:13,239 INFO Connection check task start + +2025-09-24 07:13:13,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:13,240 INFO Out dated connection ,size=0 + +2025-09-24 07:13:13,240 INFO Connection check task end + +2025-09-24 07:13:15,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:16,242 INFO Connection check task start + +2025-09-24 07:13:16,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:16,242 INFO Out dated connection ,size=0 + +2025-09-24 07:13:16,242 INFO Connection check task end + +2025-09-24 07:13:18,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:19,243 INFO Connection check task start + +2025-09-24 07:13:19,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:19,243 INFO Out dated connection ,size=0 + +2025-09-24 07:13:19,243 INFO Connection check task end + +2025-09-24 07:13:21,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:22,244 INFO Connection check task start + +2025-09-24 07:13:22,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:22,244 INFO Out dated connection ,size=0 + +2025-09-24 07:13:22,244 INFO Connection check task end + +2025-09-24 07:13:24,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:25,244 INFO Connection check task start + +2025-09-24 07:13:25,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:25,245 INFO Out dated connection ,size=0 + +2025-09-24 07:13:25,245 INFO Connection check task end + +2025-09-24 07:13:27,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:28,245 INFO Connection check task start + +2025-09-24 07:13:28,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:28,245 INFO Out dated connection ,size=0 + +2025-09-24 07:13:28,245 INFO Connection check task end + +2025-09-24 07:13:30,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:31,245 INFO Connection check task start + +2025-09-24 07:13:31,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:31,245 INFO Out dated connection ,size=0 + +2025-09-24 07:13:31,245 INFO Connection check task end + +2025-09-24 07:13:33,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:34,246 INFO Connection check task start + +2025-09-24 07:13:34,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:34,247 INFO Out dated connection ,size=0 + +2025-09-24 07:13:34,247 INFO Connection check task end + +2025-09-24 07:13:36,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:37,249 INFO Connection check task start + +2025-09-24 07:13:37,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:37,249 INFO Out dated connection ,size=0 + +2025-09-24 07:13:37,249 INFO Connection check task end + +2025-09-24 07:13:39,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:40,251 INFO Connection check task start + +2025-09-24 07:13:40,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:40,251 INFO Out dated connection ,size=0 + +2025-09-24 07:13:40,251 INFO Connection check task end + +2025-09-24 07:13:42,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:43,254 INFO Connection check task start + +2025-09-24 07:13:43,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:43,254 INFO Out dated connection ,size=0 + +2025-09-24 07:13:43,254 INFO Connection check task end + +2025-09-24 07:13:45,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:46,256 INFO Connection check task start + +2025-09-24 07:13:46,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:46,256 INFO Out dated connection ,size=0 + +2025-09-24 07:13:46,256 INFO Connection check task end + +2025-09-24 07:13:48,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:49,257 INFO Connection check task start + +2025-09-24 07:13:49,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:49,257 INFO Out dated connection ,size=0 + +2025-09-24 07:13:49,257 INFO Connection check task end + +2025-09-24 07:13:51,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:52,259 INFO Connection check task start + +2025-09-24 07:13:52,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:52,259 INFO Out dated connection ,size=0 + +2025-09-24 07:13:52,259 INFO Connection check task end + +2025-09-24 07:13:54,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:55,260 INFO Connection check task start + +2025-09-24 07:13:55,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:55,260 INFO Out dated connection ,size=0 + +2025-09-24 07:13:55,260 INFO Connection check task end + +2025-09-24 07:13:57,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:13:58,261 INFO Connection check task start + +2025-09-24 07:13:58,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:13:58,261 INFO Out dated connection ,size=0 + +2025-09-24 07:13:58,261 INFO Connection check task end + +2025-09-24 07:14:00,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:01,261 INFO Connection check task start + +2025-09-24 07:14:01,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:01,262 INFO Out dated connection ,size=0 + +2025-09-24 07:14:01,262 INFO Connection check task end + +2025-09-24 07:14:03,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:04,262 INFO Connection check task start + +2025-09-24 07:14:04,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:04,262 INFO Out dated connection ,size=0 + +2025-09-24 07:14:04,262 INFO Connection check task end + +2025-09-24 07:14:06,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:07,263 INFO Connection check task start + +2025-09-24 07:14:07,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:07,263 INFO Out dated connection ,size=0 + +2025-09-24 07:14:07,263 INFO Connection check task end + +2025-09-24 07:14:09,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:10,264 INFO Connection check task start + +2025-09-24 07:14:10,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:10,265 INFO Out dated connection ,size=0 + +2025-09-24 07:14:10,265 INFO Connection check task end + +2025-09-24 07:14:12,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:13,265 INFO Connection check task start + +2025-09-24 07:14:13,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:13,265 INFO Out dated connection ,size=0 + +2025-09-24 07:14:13,265 INFO Connection check task end + +2025-09-24 07:14:15,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:16,267 INFO Connection check task start + +2025-09-24 07:14:16,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:16,267 INFO Out dated connection ,size=0 + +2025-09-24 07:14:16,267 INFO Connection check task end + +2025-09-24 07:14:18,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:19,270 INFO Connection check task start + +2025-09-24 07:14:19,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:19,274 INFO Out dated connection ,size=0 + +2025-09-24 07:14:19,274 INFO Connection check task end + +2025-09-24 07:14:21,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:22,276 INFO Connection check task start + +2025-09-24 07:14:22,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:22,276 INFO Out dated connection ,size=0 + +2025-09-24 07:14:22,276 INFO Connection check task end + +2025-09-24 07:14:24,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:25,277 INFO Connection check task start + +2025-09-24 07:14:25,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:25,277 INFO Out dated connection ,size=0 + +2025-09-24 07:14:25,277 INFO Connection check task end + +2025-09-24 07:14:27,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:28,278 INFO Connection check task start + +2025-09-24 07:14:28,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:28,278 INFO Out dated connection ,size=0 + +2025-09-24 07:14:28,278 INFO Connection check task end + +2025-09-24 07:14:30,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:31,279 INFO Connection check task start + +2025-09-24 07:14:31,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:31,279 INFO Out dated connection ,size=0 + +2025-09-24 07:14:31,279 INFO Connection check task end + +2025-09-24 07:14:33,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:34,280 INFO Connection check task start + +2025-09-24 07:14:34,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:34,280 INFO Out dated connection ,size=0 + +2025-09-24 07:14:34,280 INFO Connection check task end + +2025-09-24 07:14:36,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:37,281 INFO Connection check task start + +2025-09-24 07:14:37,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:37,281 INFO Out dated connection ,size=0 + +2025-09-24 07:14:37,281 INFO Connection check task end + +2025-09-24 07:14:39,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:40,282 INFO Connection check task start + +2025-09-24 07:14:40,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:40,282 INFO Out dated connection ,size=0 + +2025-09-24 07:14:40,282 INFO Connection check task end + +2025-09-24 07:14:42,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:43,282 INFO Connection check task start + +2025-09-24 07:14:43,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:43,283 INFO Out dated connection ,size=0 + +2025-09-24 07:14:43,283 INFO Connection check task end + +2025-09-24 07:14:45,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:46,283 INFO Connection check task start + +2025-09-24 07:14:46,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:46,283 INFO Out dated connection ,size=0 + +2025-09-24 07:14:46,283 INFO Connection check task end + +2025-09-24 07:14:48,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:49,284 INFO Connection check task start + +2025-09-24 07:14:49,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:49,284 INFO Out dated connection ,size=0 + +2025-09-24 07:14:49,284 INFO Connection check task end + +2025-09-24 07:14:51,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:52,284 INFO Connection check task start + +2025-09-24 07:14:52,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:52,284 INFO Out dated connection ,size=0 + +2025-09-24 07:14:52,284 INFO Connection check task end + +2025-09-24 07:14:54,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:55,286 INFO Connection check task start + +2025-09-24 07:14:55,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:55,286 INFO Out dated connection ,size=0 + +2025-09-24 07:14:55,286 INFO Connection check task end + +2025-09-24 07:14:57,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:14:58,287 INFO Connection check task start + +2025-09-24 07:14:58,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:14:58,287 INFO Out dated connection ,size=0 + +2025-09-24 07:14:58,287 INFO Connection check task end + +2025-09-24 07:15:00,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:01,289 INFO Connection check task start + +2025-09-24 07:15:01,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:01,289 INFO Out dated connection ,size=0 + +2025-09-24 07:15:01,289 INFO Connection check task end + +2025-09-24 07:15:03,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:04,289 INFO Connection check task start + +2025-09-24 07:15:04,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:04,290 INFO Out dated connection ,size=0 + +2025-09-24 07:15:04,290 INFO Connection check task end + +2025-09-24 07:15:06,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:07,290 INFO Connection check task start + +2025-09-24 07:15:07,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:07,290 INFO Out dated connection ,size=0 + +2025-09-24 07:15:07,290 INFO Connection check task end + +2025-09-24 07:15:09,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:10,290 INFO Connection check task start + +2025-09-24 07:15:10,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:10,290 INFO Out dated connection ,size=0 + +2025-09-24 07:15:10,290 INFO Connection check task end + +2025-09-24 07:15:12,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:13,291 INFO Connection check task start + +2025-09-24 07:15:13,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:13,291 INFO Out dated connection ,size=0 + +2025-09-24 07:15:13,291 INFO Connection check task end + +2025-09-24 07:15:15,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:16,291 INFO Connection check task start + +2025-09-24 07:15:16,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:16,291 INFO Out dated connection ,size=0 + +2025-09-24 07:15:16,291 INFO Connection check task end + +2025-09-24 07:15:18,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:19,292 INFO Connection check task start + +2025-09-24 07:15:19,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:19,292 INFO Out dated connection ,size=0 + +2025-09-24 07:15:19,292 INFO Connection check task end + +2025-09-24 07:15:21,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:22,297 INFO Connection check task start + +2025-09-24 07:15:22,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:22,297 INFO Out dated connection ,size=0 + +2025-09-24 07:15:22,297 INFO Connection check task end + +2025-09-24 07:15:24,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:25,297 INFO Connection check task start + +2025-09-24 07:15:25,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:25,298 INFO Out dated connection ,size=0 + +2025-09-24 07:15:25,298 INFO Connection check task end + +2025-09-24 07:15:27,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:28,298 INFO Connection check task start + +2025-09-24 07:15:28,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:28,298 INFO Out dated connection ,size=0 + +2025-09-24 07:15:28,298 INFO Connection check task end + +2025-09-24 07:15:30,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:31,298 INFO Connection check task start + +2025-09-24 07:15:31,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:31,298 INFO Out dated connection ,size=0 + +2025-09-24 07:15:31,298 INFO Connection check task end + +2025-09-24 07:15:33,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:34,299 INFO Connection check task start + +2025-09-24 07:15:34,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:34,299 INFO Out dated connection ,size=0 + +2025-09-24 07:15:34,299 INFO Connection check task end + +2025-09-24 07:15:36,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:37,299 INFO Connection check task start + +2025-09-24 07:15:37,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:37,299 INFO Out dated connection ,size=0 + +2025-09-24 07:15:37,299 INFO Connection check task end + +2025-09-24 07:15:39,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:40,300 INFO Connection check task start + +2025-09-24 07:15:40,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:40,300 INFO Out dated connection ,size=0 + +2025-09-24 07:15:40,300 INFO Connection check task end + +2025-09-24 07:15:42,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:43,300 INFO Connection check task start + +2025-09-24 07:15:43,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:43,300 INFO Out dated connection ,size=0 + +2025-09-24 07:15:43,300 INFO Connection check task end + +2025-09-24 07:15:45,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:46,301 INFO Connection check task start + +2025-09-24 07:15:46,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:46,302 INFO Out dated connection ,size=0 + +2025-09-24 07:15:46,302 INFO Connection check task end + +2025-09-24 07:15:48,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:49,302 INFO Connection check task start + +2025-09-24 07:15:49,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:49,302 INFO Out dated connection ,size=0 + +2025-09-24 07:15:49,302 INFO Connection check task end + +2025-09-24 07:15:51,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:52,302 INFO Connection check task start + +2025-09-24 07:15:52,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:52,303 INFO Out dated connection ,size=0 + +2025-09-24 07:15:52,303 INFO Connection check task end + +2025-09-24 07:15:54,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:55,303 INFO Connection check task start + +2025-09-24 07:15:55,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:55,303 INFO Out dated connection ,size=0 + +2025-09-24 07:15:55,303 INFO Connection check task end + +2025-09-24 07:15:57,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:15:58,304 INFO Connection check task start + +2025-09-24 07:15:58,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:15:58,304 INFO Out dated connection ,size=0 + +2025-09-24 07:15:58,304 INFO Connection check task end + +2025-09-24 07:16:00,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:01,304 INFO Connection check task start + +2025-09-24 07:16:01,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:01,304 INFO Out dated connection ,size=0 + +2025-09-24 07:16:01,304 INFO Connection check task end + +2025-09-24 07:16:03,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:04,305 INFO Connection check task start + +2025-09-24 07:16:04,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:04,305 INFO Out dated connection ,size=0 + +2025-09-24 07:16:04,305 INFO Connection check task end + +2025-09-24 07:16:06,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:07,305 INFO Connection check task start + +2025-09-24 07:16:07,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:07,305 INFO Out dated connection ,size=0 + +2025-09-24 07:16:07,305 INFO Connection check task end + +2025-09-24 07:16:09,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:10,305 INFO Connection check task start + +2025-09-24 07:16:10,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:10,305 INFO Out dated connection ,size=0 + +2025-09-24 07:16:10,305 INFO Connection check task end + +2025-09-24 07:16:12,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:13,306 INFO Connection check task start + +2025-09-24 07:16:13,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:13,306 INFO Out dated connection ,size=0 + +2025-09-24 07:16:13,306 INFO Connection check task end + +2025-09-24 07:16:15,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:16,306 INFO Connection check task start + +2025-09-24 07:16:16,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:16,306 INFO Out dated connection ,size=0 + +2025-09-24 07:16:16,307 INFO Connection check task end + +2025-09-24 07:16:18,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:19,307 INFO Connection check task start + +2025-09-24 07:16:19,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:19,325 INFO Out dated connection ,size=0 + +2025-09-24 07:16:19,325 INFO Connection check task end + +2025-09-24 07:16:21,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:22,325 INFO Connection check task start + +2025-09-24 07:16:22,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:22,326 INFO Out dated connection ,size=0 + +2025-09-24 07:16:22,326 INFO Connection check task end + +2025-09-24 07:16:24,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:25,326 INFO Connection check task start + +2025-09-24 07:16:25,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:25,326 INFO Out dated connection ,size=0 + +2025-09-24 07:16:25,326 INFO Connection check task end + +2025-09-24 07:16:27,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:28,326 INFO Connection check task start + +2025-09-24 07:16:28,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:28,326 INFO Out dated connection ,size=0 + +2025-09-24 07:16:28,326 INFO Connection check task end + +2025-09-24 07:16:30,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:31,327 INFO Connection check task start + +2025-09-24 07:16:31,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:31,327 INFO Out dated connection ,size=0 + +2025-09-24 07:16:31,327 INFO Connection check task end + +2025-09-24 07:16:33,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:34,327 INFO Connection check task start + +2025-09-24 07:16:34,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:34,327 INFO Out dated connection ,size=0 + +2025-09-24 07:16:34,327 INFO Connection check task end + +2025-09-24 07:16:36,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:37,327 INFO Connection check task start + +2025-09-24 07:16:37,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:37,328 INFO Out dated connection ,size=0 + +2025-09-24 07:16:37,328 INFO Connection check task end + +2025-09-24 07:16:39,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:40,328 INFO Connection check task start + +2025-09-24 07:16:40,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:40,328 INFO Out dated connection ,size=0 + +2025-09-24 07:16:40,328 INFO Connection check task end + +2025-09-24 07:16:42,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:43,329 INFO Connection check task start + +2025-09-24 07:16:43,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:43,329 INFO Out dated connection ,size=0 + +2025-09-24 07:16:43,329 INFO Connection check task end + +2025-09-24 07:16:45,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:46,329 INFO Connection check task start + +2025-09-24 07:16:46,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:46,329 INFO Out dated connection ,size=0 + +2025-09-24 07:16:46,329 INFO Connection check task end + +2025-09-24 07:16:48,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:49,330 INFO Connection check task start + +2025-09-24 07:16:49,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:49,330 INFO Out dated connection ,size=0 + +2025-09-24 07:16:49,330 INFO Connection check task end + +2025-09-24 07:16:51,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:52,331 INFO Connection check task start + +2025-09-24 07:16:52,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:52,331 INFO Out dated connection ,size=0 + +2025-09-24 07:16:52,331 INFO Connection check task end + +2025-09-24 07:16:54,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:55,331 INFO Connection check task start + +2025-09-24 07:16:55,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:55,331 INFO Out dated connection ,size=0 + +2025-09-24 07:16:55,331 INFO Connection check task end + +2025-09-24 07:16:57,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:16:58,331 INFO Connection check task start + +2025-09-24 07:16:58,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:16:58,332 INFO Out dated connection ,size=0 + +2025-09-24 07:16:58,332 INFO Connection check task end + +2025-09-24 07:17:00,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:01,334 INFO Connection check task start + +2025-09-24 07:17:01,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:01,334 INFO Out dated connection ,size=0 + +2025-09-24 07:17:01,334 INFO Connection check task end + +2025-09-24 07:17:03,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:04,335 INFO Connection check task start + +2025-09-24 07:17:04,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:04,335 INFO Out dated connection ,size=0 + +2025-09-24 07:17:04,335 INFO Connection check task end + +2025-09-24 07:17:06,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:07,337 INFO Connection check task start + +2025-09-24 07:17:07,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:07,337 INFO Out dated connection ,size=0 + +2025-09-24 07:17:07,337 INFO Connection check task end + +2025-09-24 07:17:09,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:10,339 INFO Connection check task start + +2025-09-24 07:17:10,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:10,339 INFO Out dated connection ,size=0 + +2025-09-24 07:17:10,339 INFO Connection check task end + +2025-09-24 07:17:12,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:13,341 INFO Connection check task start + +2025-09-24 07:17:13,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:13,341 INFO Out dated connection ,size=0 + +2025-09-24 07:17:13,341 INFO Connection check task end + +2025-09-24 07:17:15,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:16,343 INFO Connection check task start + +2025-09-24 07:17:16,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:16,343 INFO Out dated connection ,size=0 + +2025-09-24 07:17:16,343 INFO Connection check task end + +2025-09-24 07:17:18,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:19,343 INFO Connection check task start + +2025-09-24 07:17:19,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:19,344 INFO Out dated connection ,size=0 + +2025-09-24 07:17:19,344 INFO Connection check task end + +2025-09-24 07:17:21,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:22,344 INFO Connection check task start + +2025-09-24 07:17:22,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:22,344 INFO Out dated connection ,size=0 + +2025-09-24 07:17:22,344 INFO Connection check task end + +2025-09-24 07:17:24,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:25,345 INFO Connection check task start + +2025-09-24 07:17:25,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:25,345 INFO Out dated connection ,size=0 + +2025-09-24 07:17:25,345 INFO Connection check task end + +2025-09-24 07:17:27,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:28,346 INFO Connection check task start + +2025-09-24 07:17:28,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:28,346 INFO Out dated connection ,size=0 + +2025-09-24 07:17:28,346 INFO Connection check task end + +2025-09-24 07:17:30,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:31,348 INFO Connection check task start + +2025-09-24 07:17:31,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:31,348 INFO Out dated connection ,size=0 + +2025-09-24 07:17:31,348 INFO Connection check task end + +2025-09-24 07:17:33,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:34,348 INFO Connection check task start + +2025-09-24 07:17:34,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:34,348 INFO Out dated connection ,size=0 + +2025-09-24 07:17:34,348 INFO Connection check task end + +2025-09-24 07:17:36,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:37,349 INFO Connection check task start + +2025-09-24 07:17:37,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:37,349 INFO Out dated connection ,size=0 + +2025-09-24 07:17:37,349 INFO Connection check task end + +2025-09-24 07:17:39,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:40,351 INFO Connection check task start + +2025-09-24 07:17:40,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:40,351 INFO Out dated connection ,size=0 + +2025-09-24 07:17:40,351 INFO Connection check task end + +2025-09-24 07:17:42,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:43,351 INFO Connection check task start + +2025-09-24 07:17:43,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:43,351 INFO Out dated connection ,size=0 + +2025-09-24 07:17:43,351 INFO Connection check task end + +2025-09-24 07:17:45,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:46,353 INFO Connection check task start + +2025-09-24 07:17:46,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:46,353 INFO Out dated connection ,size=0 + +2025-09-24 07:17:46,353 INFO Connection check task end + +2025-09-24 07:17:48,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:49,354 INFO Connection check task start + +2025-09-24 07:17:49,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:49,354 INFO Out dated connection ,size=0 + +2025-09-24 07:17:49,354 INFO Connection check task end + +2025-09-24 07:17:51,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:52,354 INFO Connection check task start + +2025-09-24 07:17:52,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:52,354 INFO Out dated connection ,size=0 + +2025-09-24 07:17:52,354 INFO Connection check task end + +2025-09-24 07:17:54,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:55,354 INFO Connection check task start + +2025-09-24 07:17:55,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:55,355 INFO Out dated connection ,size=0 + +2025-09-24 07:17:55,355 INFO Connection check task end + +2025-09-24 07:17:57,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:17:58,355 INFO Connection check task start + +2025-09-24 07:17:58,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:17:58,355 INFO Out dated connection ,size=0 + +2025-09-24 07:17:58,355 INFO Connection check task end + +2025-09-24 07:18:00,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:01,355 INFO Connection check task start + +2025-09-24 07:18:01,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:01,355 INFO Out dated connection ,size=0 + +2025-09-24 07:18:01,356 INFO Connection check task end + +2025-09-24 07:18:03,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:04,357 INFO Connection check task start + +2025-09-24 07:18:04,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:04,358 INFO Out dated connection ,size=0 + +2025-09-24 07:18:04,358 INFO Connection check task end + +2025-09-24 07:18:06,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:07,358 INFO Connection check task start + +2025-09-24 07:18:07,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:07,358 INFO Out dated connection ,size=0 + +2025-09-24 07:18:07,358 INFO Connection check task end + +2025-09-24 07:18:09,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:10,359 INFO Connection check task start + +2025-09-24 07:18:10,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:10,359 INFO Out dated connection ,size=0 + +2025-09-24 07:18:10,359 INFO Connection check task end + +2025-09-24 07:18:12,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:13,361 INFO Connection check task start + +2025-09-24 07:18:13,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:13,361 INFO Out dated connection ,size=0 + +2025-09-24 07:18:13,361 INFO Connection check task end + +2025-09-24 07:18:15,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:16,363 INFO Connection check task start + +2025-09-24 07:18:16,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:16,363 INFO Out dated connection ,size=0 + +2025-09-24 07:18:16,363 INFO Connection check task end + +2025-09-24 07:18:18,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:19,365 INFO Connection check task start + +2025-09-24 07:18:19,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:19,365 INFO Out dated connection ,size=0 + +2025-09-24 07:18:19,365 INFO Connection check task end + +2025-09-24 07:18:21,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:22,366 INFO Connection check task start + +2025-09-24 07:18:22,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:22,366 INFO Out dated connection ,size=0 + +2025-09-24 07:18:22,366 INFO Connection check task end + +2025-09-24 07:18:24,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:25,368 INFO Connection check task start + +2025-09-24 07:18:25,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:25,369 INFO Out dated connection ,size=0 + +2025-09-24 07:18:25,369 INFO Connection check task end + +2025-09-24 07:18:27,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:28,369 INFO Connection check task start + +2025-09-24 07:18:28,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:28,369 INFO Out dated connection ,size=0 + +2025-09-24 07:18:28,369 INFO Connection check task end + +2025-09-24 07:18:30,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:31,371 INFO Connection check task start + +2025-09-24 07:18:31,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:31,372 INFO Out dated connection ,size=0 + +2025-09-24 07:18:31,372 INFO Connection check task end + +2025-09-24 07:18:33,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:34,373 INFO Connection check task start + +2025-09-24 07:18:34,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:34,373 INFO Out dated connection ,size=0 + +2025-09-24 07:18:34,373 INFO Connection check task end + +2025-09-24 07:18:36,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:37,375 INFO Connection check task start + +2025-09-24 07:18:37,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:37,375 INFO Out dated connection ,size=0 + +2025-09-24 07:18:37,375 INFO Connection check task end + +2025-09-24 07:18:39,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:40,377 INFO Connection check task start + +2025-09-24 07:18:40,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:40,377 INFO Out dated connection ,size=0 + +2025-09-24 07:18:40,377 INFO Connection check task end + +2025-09-24 07:18:42,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:43,379 INFO Connection check task start + +2025-09-24 07:18:43,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:43,380 INFO Out dated connection ,size=0 + +2025-09-24 07:18:43,380 INFO Connection check task end + +2025-09-24 07:18:45,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:46,380 INFO Connection check task start + +2025-09-24 07:18:46,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:46,380 INFO Out dated connection ,size=0 + +2025-09-24 07:18:46,380 INFO Connection check task end + +2025-09-24 07:18:48,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:49,381 INFO Connection check task start + +2025-09-24 07:18:49,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:49,381 INFO Out dated connection ,size=0 + +2025-09-24 07:18:49,381 INFO Connection check task end + +2025-09-24 07:18:51,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:52,383 INFO Connection check task start + +2025-09-24 07:18:52,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:52,383 INFO Out dated connection ,size=0 + +2025-09-24 07:18:52,383 INFO Connection check task end + +2025-09-24 07:18:54,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:55,384 INFO Connection check task start + +2025-09-24 07:18:55,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:55,384 INFO Out dated connection ,size=0 + +2025-09-24 07:18:55,384 INFO Connection check task end + +2025-09-24 07:18:57,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:18:58,386 INFO Connection check task start + +2025-09-24 07:18:58,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:18:58,387 INFO Out dated connection ,size=0 + +2025-09-24 07:18:58,387 INFO Connection check task end + +2025-09-24 07:19:00,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:01,389 INFO Connection check task start + +2025-09-24 07:19:01,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:01,389 INFO Out dated connection ,size=0 + +2025-09-24 07:19:01,389 INFO Connection check task end + +2025-09-24 07:19:03,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:04,389 INFO Connection check task start + +2025-09-24 07:19:04,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:04,389 INFO Out dated connection ,size=0 + +2025-09-24 07:19:04,389 INFO Connection check task end + +2025-09-24 07:19:06,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:07,391 INFO Connection check task start + +2025-09-24 07:19:07,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:07,391 INFO Out dated connection ,size=0 + +2025-09-24 07:19:07,391 INFO Connection check task end + +2025-09-24 07:19:09,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:10,393 INFO Connection check task start + +2025-09-24 07:19:10,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:10,394 INFO Out dated connection ,size=0 + +2025-09-24 07:19:10,394 INFO Connection check task end + +2025-09-24 07:19:12,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:13,395 INFO Connection check task start + +2025-09-24 07:19:13,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:13,395 INFO Out dated connection ,size=0 + +2025-09-24 07:19:13,395 INFO Connection check task end + +2025-09-24 07:19:15,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:16,397 INFO Connection check task start + +2025-09-24 07:19:16,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:16,397 INFO Out dated connection ,size=0 + +2025-09-24 07:19:16,398 INFO Connection check task end + +2025-09-24 07:19:18,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:19,398 INFO Connection check task start + +2025-09-24 07:19:19,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:19,398 INFO Out dated connection ,size=0 + +2025-09-24 07:19:19,398 INFO Connection check task end + +2025-09-24 07:19:21,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:22,398 INFO Connection check task start + +2025-09-24 07:19:22,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:22,399 INFO Out dated connection ,size=0 + +2025-09-24 07:19:22,399 INFO Connection check task end + +2025-09-24 07:19:24,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:25,399 INFO Connection check task start + +2025-09-24 07:19:25,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:25,399 INFO Out dated connection ,size=0 + +2025-09-24 07:19:25,399 INFO Connection check task end + +2025-09-24 07:19:27,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:28,400 INFO Connection check task start + +2025-09-24 07:19:28,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:28,400 INFO Out dated connection ,size=0 + +2025-09-24 07:19:28,400 INFO Connection check task end + +2025-09-24 07:19:30,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:31,400 INFO Connection check task start + +2025-09-24 07:19:31,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:31,400 INFO Out dated connection ,size=0 + +2025-09-24 07:19:31,400 INFO Connection check task end + +2025-09-24 07:19:33,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:34,402 INFO Connection check task start + +2025-09-24 07:19:34,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:34,402 INFO Out dated connection ,size=0 + +2025-09-24 07:19:34,403 INFO Connection check task end + +2025-09-24 07:19:36,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:37,403 INFO Connection check task start + +2025-09-24 07:19:37,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:37,403 INFO Out dated connection ,size=0 + +2025-09-24 07:19:37,403 INFO Connection check task end + +2025-09-24 07:19:39,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:40,405 INFO Connection check task start + +2025-09-24 07:19:40,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:40,405 INFO Out dated connection ,size=0 + +2025-09-24 07:19:40,405 INFO Connection check task end + +2025-09-24 07:19:42,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:43,406 INFO Connection check task start + +2025-09-24 07:19:43,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:43,406 INFO Out dated connection ,size=0 + +2025-09-24 07:19:43,406 INFO Connection check task end + +2025-09-24 07:19:45,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:46,408 INFO Connection check task start + +2025-09-24 07:19:46,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:46,408 INFO Out dated connection ,size=0 + +2025-09-24 07:19:46,408 INFO Connection check task end + +2025-09-24 07:19:48,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:49,409 INFO Connection check task start + +2025-09-24 07:19:49,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:49,409 INFO Out dated connection ,size=0 + +2025-09-24 07:19:49,409 INFO Connection check task end + +2025-09-24 07:19:51,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:52,410 INFO Connection check task start + +2025-09-24 07:19:52,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:52,410 INFO Out dated connection ,size=0 + +2025-09-24 07:19:52,410 INFO Connection check task end + +2025-09-24 07:19:54,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:55,411 INFO Connection check task start + +2025-09-24 07:19:55,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:55,411 INFO Out dated connection ,size=0 + +2025-09-24 07:19:55,411 INFO Connection check task end + +2025-09-24 07:19:57,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:19:58,411 INFO Connection check task start + +2025-09-24 07:19:58,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:19:58,412 INFO Out dated connection ,size=0 + +2025-09-24 07:19:58,412 INFO Connection check task end + +2025-09-24 07:20:00,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:01,414 INFO Connection check task start + +2025-09-24 07:20:01,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:01,415 INFO Out dated connection ,size=0 + +2025-09-24 07:20:01,415 INFO Connection check task end + +2025-09-24 07:20:03,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:04,415 INFO Connection check task start + +2025-09-24 07:20:04,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:04,415 INFO Out dated connection ,size=0 + +2025-09-24 07:20:04,415 INFO Connection check task end + +2025-09-24 07:20:06,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:07,416 INFO Connection check task start + +2025-09-24 07:20:07,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:07,416 INFO Out dated connection ,size=0 + +2025-09-24 07:20:07,416 INFO Connection check task end + +2025-09-24 07:20:09,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:10,417 INFO Connection check task start + +2025-09-24 07:20:10,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:10,417 INFO Out dated connection ,size=0 + +2025-09-24 07:20:10,417 INFO Connection check task end + +2025-09-24 07:20:12,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:13,417 INFO Connection check task start + +2025-09-24 07:20:13,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:13,417 INFO Out dated connection ,size=0 + +2025-09-24 07:20:13,417 INFO Connection check task end + +2025-09-24 07:20:15,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:16,420 INFO Connection check task start + +2025-09-24 07:20:16,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:16,420 INFO Out dated connection ,size=0 + +2025-09-24 07:20:16,420 INFO Connection check task end + +2025-09-24 07:20:18,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:19,421 INFO Connection check task start + +2025-09-24 07:20:19,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:19,422 INFO Out dated connection ,size=0 + +2025-09-24 07:20:19,422 INFO Connection check task end + +2025-09-24 07:20:21,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:22,422 INFO Connection check task start + +2025-09-24 07:20:22,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:22,422 INFO Out dated connection ,size=0 + +2025-09-24 07:20:22,422 INFO Connection check task end + +2025-09-24 07:20:24,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:25,423 INFO Connection check task start + +2025-09-24 07:20:25,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:25,423 INFO Out dated connection ,size=0 + +2025-09-24 07:20:25,423 INFO Connection check task end + +2025-09-24 07:20:27,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:28,423 INFO Connection check task start + +2025-09-24 07:20:28,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:28,423 INFO Out dated connection ,size=0 + +2025-09-24 07:20:28,423 INFO Connection check task end + +2025-09-24 07:20:30,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:31,424 INFO Connection check task start + +2025-09-24 07:20:31,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:31,424 INFO Out dated connection ,size=0 + +2025-09-24 07:20:31,424 INFO Connection check task end + +2025-09-24 07:20:33,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:34,426 INFO Connection check task start + +2025-09-24 07:20:34,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:34,426 INFO Out dated connection ,size=0 + +2025-09-24 07:20:34,426 INFO Connection check task end + +2025-09-24 07:20:36,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:37,427 INFO Connection check task start + +2025-09-24 07:20:37,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:37,427 INFO Out dated connection ,size=0 + +2025-09-24 07:20:37,427 INFO Connection check task end + +2025-09-24 07:20:39,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:40,428 INFO Connection check task start + +2025-09-24 07:20:40,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:40,428 INFO Out dated connection ,size=0 + +2025-09-24 07:20:40,428 INFO Connection check task end + +2025-09-24 07:20:42,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:43,430 INFO Connection check task start + +2025-09-24 07:20:43,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:43,431 INFO Out dated connection ,size=0 + +2025-09-24 07:20:43,431 INFO Connection check task end + +2025-09-24 07:20:45,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:46,431 INFO Connection check task start + +2025-09-24 07:20:46,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:46,432 INFO Out dated connection ,size=0 + +2025-09-24 07:20:46,432 INFO Connection check task end + +2025-09-24 07:20:48,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:49,433 INFO Connection check task start + +2025-09-24 07:20:49,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:49,434 INFO Out dated connection ,size=0 + +2025-09-24 07:20:49,434 INFO Connection check task end + +2025-09-24 07:20:51,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:52,434 INFO Connection check task start + +2025-09-24 07:20:52,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:52,434 INFO Out dated connection ,size=0 + +2025-09-24 07:20:52,434 INFO Connection check task end + +2025-09-24 07:20:54,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:55,436 INFO Connection check task start + +2025-09-24 07:20:55,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:55,437 INFO Out dated connection ,size=0 + +2025-09-24 07:20:55,437 INFO Connection check task end + +2025-09-24 07:20:57,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:20:58,437 INFO Connection check task start + +2025-09-24 07:20:58,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:20:58,437 INFO Out dated connection ,size=0 + +2025-09-24 07:20:58,437 INFO Connection check task end + +2025-09-24 07:21:00,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:01,438 INFO Connection check task start + +2025-09-24 07:21:01,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:01,438 INFO Out dated connection ,size=0 + +2025-09-24 07:21:01,438 INFO Connection check task end + +2025-09-24 07:21:03,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:04,439 INFO Connection check task start + +2025-09-24 07:21:04,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:04,439 INFO Out dated connection ,size=0 + +2025-09-24 07:21:04,439 INFO Connection check task end + +2025-09-24 07:21:06,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:07,441 INFO Connection check task start + +2025-09-24 07:21:07,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:07,441 INFO Out dated connection ,size=0 + +2025-09-24 07:21:07,441 INFO Connection check task end + +2025-09-24 07:21:09,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:10,442 INFO Connection check task start + +2025-09-24 07:21:10,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:10,442 INFO Out dated connection ,size=0 + +2025-09-24 07:21:10,442 INFO Connection check task end + +2025-09-24 07:21:12,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:13,443 INFO Connection check task start + +2025-09-24 07:21:13,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:13,443 INFO Out dated connection ,size=0 + +2025-09-24 07:21:13,443 INFO Connection check task end + +2025-09-24 07:21:15,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:16,445 INFO Connection check task start + +2025-09-24 07:21:16,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:16,446 INFO Out dated connection ,size=0 + +2025-09-24 07:21:16,446 INFO Connection check task end + +2025-09-24 07:21:18,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:19,446 INFO Connection check task start + +2025-09-24 07:21:19,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:19,446 INFO Out dated connection ,size=0 + +2025-09-24 07:21:19,446 INFO Connection check task end + +2025-09-24 07:21:21,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:22,447 INFO Connection check task start + +2025-09-24 07:21:22,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:22,447 INFO Out dated connection ,size=0 + +2025-09-24 07:21:22,447 INFO Connection check task end + +2025-09-24 07:21:24,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:25,448 INFO Connection check task start + +2025-09-24 07:21:25,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:25,448 INFO Out dated connection ,size=0 + +2025-09-24 07:21:25,448 INFO Connection check task end + +2025-09-24 07:21:27,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:28,450 INFO Connection check task start + +2025-09-24 07:21:28,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:28,450 INFO Out dated connection ,size=0 + +2025-09-24 07:21:28,450 INFO Connection check task end + +2025-09-24 07:21:30,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:31,451 INFO Connection check task start + +2025-09-24 07:21:31,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:31,451 INFO Out dated connection ,size=0 + +2025-09-24 07:21:31,451 INFO Connection check task end + +2025-09-24 07:21:33,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:34,454 INFO Connection check task start + +2025-09-24 07:21:34,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:34,454 INFO Out dated connection ,size=0 + +2025-09-24 07:21:34,454 INFO Connection check task end + +2025-09-24 07:21:36,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:37,455 INFO Connection check task start + +2025-09-24 07:21:37,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:37,455 INFO Out dated connection ,size=0 + +2025-09-24 07:21:37,455 INFO Connection check task end + +2025-09-24 07:21:39,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:40,457 INFO Connection check task start + +2025-09-24 07:21:40,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:40,457 INFO Out dated connection ,size=0 + +2025-09-24 07:21:40,457 INFO Connection check task end + +2025-09-24 07:21:42,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:43,459 INFO Connection check task start + +2025-09-24 07:21:43,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:43,459 INFO Out dated connection ,size=0 + +2025-09-24 07:21:43,459 INFO Connection check task end + +2025-09-24 07:21:45,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:46,460 INFO Connection check task start + +2025-09-24 07:21:46,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:46,460 INFO Out dated connection ,size=0 + +2025-09-24 07:21:46,460 INFO Connection check task end + +2025-09-24 07:21:48,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:49,460 INFO Connection check task start + +2025-09-24 07:21:49,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:49,460 INFO Out dated connection ,size=0 + +2025-09-24 07:21:49,460 INFO Connection check task end + +2025-09-24 07:21:51,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:52,461 INFO Connection check task start + +2025-09-24 07:21:52,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:52,461 INFO Out dated connection ,size=0 + +2025-09-24 07:21:52,461 INFO Connection check task end + +2025-09-24 07:21:54,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:55,464 INFO Connection check task start + +2025-09-24 07:21:55,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:55,464 INFO Out dated connection ,size=0 + +2025-09-24 07:21:55,464 INFO Connection check task end + +2025-09-24 07:21:57,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:21:58,465 INFO Connection check task start + +2025-09-24 07:21:58,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:21:58,466 INFO Out dated connection ,size=0 + +2025-09-24 07:21:58,466 INFO Connection check task end + +2025-09-24 07:22:00,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:01,466 INFO Connection check task start + +2025-09-24 07:22:01,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:01,466 INFO Out dated connection ,size=0 + +2025-09-24 07:22:01,466 INFO Connection check task end + +2025-09-24 07:22:03,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:04,468 INFO Connection check task start + +2025-09-24 07:22:04,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:04,469 INFO Out dated connection ,size=0 + +2025-09-24 07:22:04,469 INFO Connection check task end + +2025-09-24 07:22:06,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:07,471 INFO Connection check task start + +2025-09-24 07:22:07,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:07,471 INFO Out dated connection ,size=0 + +2025-09-24 07:22:07,471 INFO Connection check task end + +2025-09-24 07:22:09,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:10,471 INFO Connection check task start + +2025-09-24 07:22:10,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:10,472 INFO Out dated connection ,size=0 + +2025-09-24 07:22:10,472 INFO Connection check task end + +2025-09-24 07:22:12,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:13,474 INFO Connection check task start + +2025-09-24 07:22:13,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:13,474 INFO Out dated connection ,size=0 + +2025-09-24 07:22:13,474 INFO Connection check task end + +2025-09-24 07:22:15,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:16,474 INFO Connection check task start + +2025-09-24 07:22:16,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:16,475 INFO Out dated connection ,size=0 + +2025-09-24 07:22:16,475 INFO Connection check task end + +2025-09-24 07:22:18,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:19,480 INFO Connection check task start + +2025-09-24 07:22:19,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:19,480 INFO Out dated connection ,size=0 + +2025-09-24 07:22:19,480 INFO Connection check task end + +2025-09-24 07:22:21,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:22,482 INFO Connection check task start + +2025-09-24 07:22:22,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:22,482 INFO Out dated connection ,size=0 + +2025-09-24 07:22:22,482 INFO Connection check task end + +2025-09-24 07:22:24,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:25,483 INFO Connection check task start + +2025-09-24 07:22:25,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:25,483 INFO Out dated connection ,size=0 + +2025-09-24 07:22:25,483 INFO Connection check task end + +2025-09-24 07:22:27,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:28,485 INFO Connection check task start + +2025-09-24 07:22:28,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:28,485 INFO Out dated connection ,size=0 + +2025-09-24 07:22:28,485 INFO Connection check task end + +2025-09-24 07:22:30,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:31,487 INFO Connection check task start + +2025-09-24 07:22:31,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:31,488 INFO Out dated connection ,size=0 + +2025-09-24 07:22:31,488 INFO Connection check task end + +2025-09-24 07:22:33,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:34,488 INFO Connection check task start + +2025-09-24 07:22:34,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:34,488 INFO Out dated connection ,size=0 + +2025-09-24 07:22:34,488 INFO Connection check task end + +2025-09-24 07:22:36,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:37,490 INFO Connection check task start + +2025-09-24 07:22:37,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:37,490 INFO Out dated connection ,size=0 + +2025-09-24 07:22:37,490 INFO Connection check task end + +2025-09-24 07:22:39,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:40,490 INFO Connection check task start + +2025-09-24 07:22:40,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:40,490 INFO Out dated connection ,size=0 + +2025-09-24 07:22:40,490 INFO Connection check task end + +2025-09-24 07:22:42,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:43,491 INFO Connection check task start + +2025-09-24 07:22:43,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:43,491 INFO Out dated connection ,size=0 + +2025-09-24 07:22:43,491 INFO Connection check task end + +2025-09-24 07:22:45,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:46,492 INFO Connection check task start + +2025-09-24 07:22:46,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:46,492 INFO Out dated connection ,size=0 + +2025-09-24 07:22:46,493 INFO Connection check task end + +2025-09-24 07:22:48,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:49,493 INFO Connection check task start + +2025-09-24 07:22:49,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:49,493 INFO Out dated connection ,size=0 + +2025-09-24 07:22:49,493 INFO Connection check task end + +2025-09-24 07:22:51,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:52,493 INFO Connection check task start + +2025-09-24 07:22:52,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:52,494 INFO Out dated connection ,size=0 + +2025-09-24 07:22:52,494 INFO Connection check task end + +2025-09-24 07:22:54,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:55,494 INFO Connection check task start + +2025-09-24 07:22:55,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:55,494 INFO Out dated connection ,size=0 + +2025-09-24 07:22:55,494 INFO Connection check task end + +2025-09-24 07:22:57,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:22:58,496 INFO Connection check task start + +2025-09-24 07:22:58,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:22:58,497 INFO Out dated connection ,size=0 + +2025-09-24 07:22:58,497 INFO Connection check task end + +2025-09-24 07:23:00,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:01,497 INFO Connection check task start + +2025-09-24 07:23:01,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:01,498 INFO Out dated connection ,size=0 + +2025-09-24 07:23:01,498 INFO Connection check task end + +2025-09-24 07:23:03,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:04,499 INFO Connection check task start + +2025-09-24 07:23:04,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:04,499 INFO Out dated connection ,size=0 + +2025-09-24 07:23:04,499 INFO Connection check task end + +2025-09-24 07:23:06,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:07,501 INFO Connection check task start + +2025-09-24 07:23:07,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:07,501 INFO Out dated connection ,size=0 + +2025-09-24 07:23:07,501 INFO Connection check task end + +2025-09-24 07:23:09,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:10,501 INFO Connection check task start + +2025-09-24 07:23:10,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:10,501 INFO Out dated connection ,size=0 + +2025-09-24 07:23:10,502 INFO Connection check task end + +2025-09-24 07:23:12,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:13,502 INFO Connection check task start + +2025-09-24 07:23:13,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:13,502 INFO Out dated connection ,size=0 + +2025-09-24 07:23:13,502 INFO Connection check task end + +2025-09-24 07:23:15,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:16,503 INFO Connection check task start + +2025-09-24 07:23:16,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:16,503 INFO Out dated connection ,size=0 + +2025-09-24 07:23:16,503 INFO Connection check task end + +2025-09-24 07:23:18,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:19,503 INFO Connection check task start + +2025-09-24 07:23:19,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:19,503 INFO Out dated connection ,size=0 + +2025-09-24 07:23:19,503 INFO Connection check task end + +2025-09-24 07:23:21,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:22,505 INFO Connection check task start + +2025-09-24 07:23:22,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:22,505 INFO Out dated connection ,size=0 + +2025-09-24 07:23:22,505 INFO Connection check task end + +2025-09-24 07:23:24,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:25,506 INFO Connection check task start + +2025-09-24 07:23:25,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:25,506 INFO Out dated connection ,size=0 + +2025-09-24 07:23:25,506 INFO Connection check task end + +2025-09-24 07:23:27,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:28,507 INFO Connection check task start + +2025-09-24 07:23:28,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:28,507 INFO Out dated connection ,size=0 + +2025-09-24 07:23:28,508 INFO Connection check task end + +2025-09-24 07:23:30,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:31,508 INFO Connection check task start + +2025-09-24 07:23:31,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:31,508 INFO Out dated connection ,size=0 + +2025-09-24 07:23:31,508 INFO Connection check task end + +2025-09-24 07:23:33,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:34,509 INFO Connection check task start + +2025-09-24 07:23:34,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:34,509 INFO Out dated connection ,size=0 + +2025-09-24 07:23:34,509 INFO Connection check task end + +2025-09-24 07:23:36,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:37,509 INFO Connection check task start + +2025-09-24 07:23:37,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:37,509 INFO Out dated connection ,size=0 + +2025-09-24 07:23:37,509 INFO Connection check task end + +2025-09-24 07:23:39,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:40,510 INFO Connection check task start + +2025-09-24 07:23:40,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:40,510 INFO Out dated connection ,size=0 + +2025-09-24 07:23:40,510 INFO Connection check task end + +2025-09-24 07:23:42,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:43,511 INFO Connection check task start + +2025-09-24 07:23:43,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:43,511 INFO Out dated connection ,size=0 + +2025-09-24 07:23:43,511 INFO Connection check task end + +2025-09-24 07:23:45,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:46,512 INFO Connection check task start + +2025-09-24 07:23:46,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:46,512 INFO Out dated connection ,size=0 + +2025-09-24 07:23:46,512 INFO Connection check task end + +2025-09-24 07:23:48,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:49,512 INFO Connection check task start + +2025-09-24 07:23:49,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:49,512 INFO Out dated connection ,size=0 + +2025-09-24 07:23:49,512 INFO Connection check task end + +2025-09-24 07:23:51,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:52,513 INFO Connection check task start + +2025-09-24 07:23:52,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:52,514 INFO Out dated connection ,size=0 + +2025-09-24 07:23:52,514 INFO Connection check task end + +2025-09-24 07:23:54,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:55,514 INFO Connection check task start + +2025-09-24 07:23:55,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:55,514 INFO Out dated connection ,size=0 + +2025-09-24 07:23:55,514 INFO Connection check task end + +2025-09-24 07:23:57,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:23:58,514 INFO Connection check task start + +2025-09-24 07:23:58,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:23:58,515 INFO Out dated connection ,size=0 + +2025-09-24 07:23:58,515 INFO Connection check task end + +2025-09-24 07:24:00,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:01,515 INFO Connection check task start + +2025-09-24 07:24:01,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:01,515 INFO Out dated connection ,size=0 + +2025-09-24 07:24:01,515 INFO Connection check task end + +2025-09-24 07:24:03,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:04,516 INFO Connection check task start + +2025-09-24 07:24:04,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:04,516 INFO Out dated connection ,size=0 + +2025-09-24 07:24:04,516 INFO Connection check task end + +2025-09-24 07:24:06,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:07,516 INFO Connection check task start + +2025-09-24 07:24:07,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:07,517 INFO Out dated connection ,size=0 + +2025-09-24 07:24:07,517 INFO Connection check task end + +2025-09-24 07:24:09,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:10,517 INFO Connection check task start + +2025-09-24 07:24:10,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:10,517 INFO Out dated connection ,size=0 + +2025-09-24 07:24:10,517 INFO Connection check task end + +2025-09-24 07:24:12,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:13,519 INFO Connection check task start + +2025-09-24 07:24:13,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:13,519 INFO Out dated connection ,size=0 + +2025-09-24 07:24:13,519 INFO Connection check task end + +2025-09-24 07:24:15,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:16,519 INFO Connection check task start + +2025-09-24 07:24:16,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:16,520 INFO Out dated connection ,size=0 + +2025-09-24 07:24:16,520 INFO Connection check task end + +2025-09-24 07:24:18,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:19,520 INFO Connection check task start + +2025-09-24 07:24:19,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:19,521 INFO Out dated connection ,size=0 + +2025-09-24 07:24:19,521 INFO Connection check task end + +2025-09-24 07:24:21,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:22,521 INFO Connection check task start + +2025-09-24 07:24:22,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:22,521 INFO Out dated connection ,size=0 + +2025-09-24 07:24:22,521 INFO Connection check task end + +2025-09-24 07:24:24,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:25,522 INFO Connection check task start + +2025-09-24 07:24:25,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:25,522 INFO Out dated connection ,size=0 + +2025-09-24 07:24:25,522 INFO Connection check task end + +2025-09-24 07:24:27,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:28,522 INFO Connection check task start + +2025-09-24 07:24:28,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:28,522 INFO Out dated connection ,size=0 + +2025-09-24 07:24:28,522 INFO Connection check task end + +2025-09-24 07:24:30,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:31,524 INFO Connection check task start + +2025-09-24 07:24:31,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:31,524 INFO Out dated connection ,size=0 + +2025-09-24 07:24:31,524 INFO Connection check task end + +2025-09-24 07:24:33,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:34,524 INFO Connection check task start + +2025-09-24 07:24:34,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:34,525 INFO Out dated connection ,size=0 + +2025-09-24 07:24:34,525 INFO Connection check task end + +2025-09-24 07:24:36,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:37,525 INFO Connection check task start + +2025-09-24 07:24:37,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:37,525 INFO Out dated connection ,size=0 + +2025-09-24 07:24:37,525 INFO Connection check task end + +2025-09-24 07:24:39,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:40,525 INFO Connection check task start + +2025-09-24 07:24:40,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:40,526 INFO Out dated connection ,size=0 + +2025-09-24 07:24:40,526 INFO Connection check task end + +2025-09-24 07:24:42,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:43,526 INFO Connection check task start + +2025-09-24 07:24:43,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:43,526 INFO Out dated connection ,size=0 + +2025-09-24 07:24:43,526 INFO Connection check task end + +2025-09-24 07:24:45,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:46,527 INFO Connection check task start + +2025-09-24 07:24:46,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:46,528 INFO Out dated connection ,size=0 + +2025-09-24 07:24:46,528 INFO Connection check task end + +2025-09-24 07:24:48,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:49,528 INFO Connection check task start + +2025-09-24 07:24:49,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:49,529 INFO Out dated connection ,size=0 + +2025-09-24 07:24:49,529 INFO Connection check task end + +2025-09-24 07:24:51,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:52,531 INFO Connection check task start + +2025-09-24 07:24:52,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:52,531 INFO Out dated connection ,size=0 + +2025-09-24 07:24:52,531 INFO Connection check task end + +2025-09-24 07:24:54,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:55,531 INFO Connection check task start + +2025-09-24 07:24:55,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:55,532 INFO Out dated connection ,size=0 + +2025-09-24 07:24:55,532 INFO Connection check task end + +2025-09-24 07:24:57,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:24:58,534 INFO Connection check task start + +2025-09-24 07:24:58,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:24:58,534 INFO Out dated connection ,size=0 + +2025-09-24 07:24:58,534 INFO Connection check task end + +2025-09-24 07:25:00,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:01,534 INFO Connection check task start + +2025-09-24 07:25:01,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:01,534 INFO Out dated connection ,size=0 + +2025-09-24 07:25:01,534 INFO Connection check task end + +2025-09-24 07:25:03,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:04,535 INFO Connection check task start + +2025-09-24 07:25:04,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:04,535 INFO Out dated connection ,size=0 + +2025-09-24 07:25:04,535 INFO Connection check task end + +2025-09-24 07:25:06,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:07,535 INFO Connection check task start + +2025-09-24 07:25:07,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:07,535 INFO Out dated connection ,size=0 + +2025-09-24 07:25:07,536 INFO Connection check task end + +2025-09-24 07:25:09,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:10,537 INFO Connection check task start + +2025-09-24 07:25:10,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:10,537 INFO Out dated connection ,size=0 + +2025-09-24 07:25:10,537 INFO Connection check task end + +2025-09-24 07:25:12,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:13,537 INFO Connection check task start + +2025-09-24 07:25:13,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:13,537 INFO Out dated connection ,size=0 + +2025-09-24 07:25:13,537 INFO Connection check task end + +2025-09-24 07:25:15,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:16,538 INFO Connection check task start + +2025-09-24 07:25:16,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:16,538 INFO Out dated connection ,size=0 + +2025-09-24 07:25:16,538 INFO Connection check task end + +2025-09-24 07:25:18,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:19,538 INFO Connection check task start + +2025-09-24 07:25:19,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:19,538 INFO Out dated connection ,size=0 + +2025-09-24 07:25:19,538 INFO Connection check task end + +2025-09-24 07:25:21,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:22,540 INFO Connection check task start + +2025-09-24 07:25:22,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:22,540 INFO Out dated connection ,size=0 + +2025-09-24 07:25:22,540 INFO Connection check task end + +2025-09-24 07:25:24,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:25,542 INFO Connection check task start + +2025-09-24 07:25:25,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:25,542 INFO Out dated connection ,size=0 + +2025-09-24 07:25:25,542 INFO Connection check task end + +2025-09-24 07:25:27,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:28,542 INFO Connection check task start + +2025-09-24 07:25:28,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:28,542 INFO Out dated connection ,size=0 + +2025-09-24 07:25:28,542 INFO Connection check task end + +2025-09-24 07:25:30,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:31,543 INFO Connection check task start + +2025-09-24 07:25:31,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:31,543 INFO Out dated connection ,size=0 + +2025-09-24 07:25:31,543 INFO Connection check task end + +2025-09-24 07:25:33,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:34,544 INFO Connection check task start + +2025-09-24 07:25:34,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:34,545 INFO Out dated connection ,size=0 + +2025-09-24 07:25:34,545 INFO Connection check task end + +2025-09-24 07:25:36,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:37,545 INFO Connection check task start + +2025-09-24 07:25:37,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:37,545 INFO Out dated connection ,size=0 + +2025-09-24 07:25:37,545 INFO Connection check task end + +2025-09-24 07:25:39,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:40,546 INFO Connection check task start + +2025-09-24 07:25:40,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:40,547 INFO Out dated connection ,size=0 + +2025-09-24 07:25:40,547 INFO Connection check task end + +2025-09-24 07:25:42,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:43,548 INFO Connection check task start + +2025-09-24 07:25:43,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:43,548 INFO Out dated connection ,size=0 + +2025-09-24 07:25:43,548 INFO Connection check task end + +2025-09-24 07:25:45,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:46,549 INFO Connection check task start + +2025-09-24 07:25:46,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:46,550 INFO Out dated connection ,size=0 + +2025-09-24 07:25:46,550 INFO Connection check task end + +2025-09-24 07:25:48,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:49,550 INFO Connection check task start + +2025-09-24 07:25:49,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:49,551 INFO Out dated connection ,size=0 + +2025-09-24 07:25:49,551 INFO Connection check task end + +2025-09-24 07:25:51,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:52,551 INFO Connection check task start + +2025-09-24 07:25:52,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:52,551 INFO Out dated connection ,size=0 + +2025-09-24 07:25:52,551 INFO Connection check task end + +2025-09-24 07:25:54,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:55,552 INFO Connection check task start + +2025-09-24 07:25:55,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:55,552 INFO Out dated connection ,size=0 + +2025-09-24 07:25:55,552 INFO Connection check task end + +2025-09-24 07:25:57,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:25:58,554 INFO Connection check task start + +2025-09-24 07:25:58,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:25:58,555 INFO Out dated connection ,size=0 + +2025-09-24 07:25:58,555 INFO Connection check task end + +2025-09-24 07:26:00,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:01,555 INFO Connection check task start + +2025-09-24 07:26:01,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:01,555 INFO Out dated connection ,size=0 + +2025-09-24 07:26:01,555 INFO Connection check task end + +2025-09-24 07:26:03,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:04,557 INFO Connection check task start + +2025-09-24 07:26:04,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:04,557 INFO Out dated connection ,size=0 + +2025-09-24 07:26:04,557 INFO Connection check task end + +2025-09-24 07:26:06,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:07,559 INFO Connection check task start + +2025-09-24 07:26:07,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:07,559 INFO Out dated connection ,size=0 + +2025-09-24 07:26:07,560 INFO Connection check task end + +2025-09-24 07:26:09,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:10,560 INFO Connection check task start + +2025-09-24 07:26:10,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:10,560 INFO Out dated connection ,size=0 + +2025-09-24 07:26:10,560 INFO Connection check task end + +2025-09-24 07:26:12,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:13,562 INFO Connection check task start + +2025-09-24 07:26:13,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:13,562 INFO Out dated connection ,size=0 + +2025-09-24 07:26:13,562 INFO Connection check task end + +2025-09-24 07:26:15,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:16,565 INFO Connection check task start + +2025-09-24 07:26:16,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:16,565 INFO Out dated connection ,size=0 + +2025-09-24 07:26:16,565 INFO Connection check task end + +2025-09-24 07:26:18,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:19,565 INFO Connection check task start + +2025-09-24 07:26:19,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:19,565 INFO Out dated connection ,size=0 + +2025-09-24 07:26:19,565 INFO Connection check task end + +2025-09-24 07:26:21,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:22,566 INFO Connection check task start + +2025-09-24 07:26:22,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:22,566 INFO Out dated connection ,size=0 + +2025-09-24 07:26:22,566 INFO Connection check task end + +2025-09-24 07:26:24,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:25,567 INFO Connection check task start + +2025-09-24 07:26:25,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:25,568 INFO Out dated connection ,size=0 + +2025-09-24 07:26:25,568 INFO Connection check task end + +2025-09-24 07:26:27,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:28,570 INFO Connection check task start + +2025-09-24 07:26:28,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:28,570 INFO Out dated connection ,size=0 + +2025-09-24 07:26:28,570 INFO Connection check task end + +2025-09-24 07:26:30,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:31,571 INFO Connection check task start + +2025-09-24 07:26:31,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:31,571 INFO Out dated connection ,size=0 + +2025-09-24 07:26:31,571 INFO Connection check task end + +2025-09-24 07:26:33,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:34,574 INFO Connection check task start + +2025-09-24 07:26:34,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:34,574 INFO Out dated connection ,size=0 + +2025-09-24 07:26:34,574 INFO Connection check task end + +2025-09-24 07:26:36,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:37,576 INFO Connection check task start + +2025-09-24 07:26:37,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:37,576 INFO Out dated connection ,size=0 + +2025-09-24 07:26:37,576 INFO Connection check task end + +2025-09-24 07:26:39,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:40,578 INFO Connection check task start + +2025-09-24 07:26:40,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:40,578 INFO Out dated connection ,size=0 + +2025-09-24 07:26:40,578 INFO Connection check task end + +2025-09-24 07:26:42,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:43,579 INFO Connection check task start + +2025-09-24 07:26:43,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:43,579 INFO Out dated connection ,size=0 + +2025-09-24 07:26:43,579 INFO Connection check task end + +2025-09-24 07:26:45,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:46,580 INFO Connection check task start + +2025-09-24 07:26:46,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:46,580 INFO Out dated connection ,size=0 + +2025-09-24 07:26:46,580 INFO Connection check task end + +2025-09-24 07:26:48,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:49,580 INFO Connection check task start + +2025-09-24 07:26:49,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:49,580 INFO Out dated connection ,size=0 + +2025-09-24 07:26:49,580 INFO Connection check task end + +2025-09-24 07:26:51,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:52,583 INFO Connection check task start + +2025-09-24 07:26:52,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:52,583 INFO Out dated connection ,size=0 + +2025-09-24 07:26:52,583 INFO Connection check task end + +2025-09-24 07:26:54,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:55,584 INFO Connection check task start + +2025-09-24 07:26:55,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:55,584 INFO Out dated connection ,size=0 + +2025-09-24 07:26:55,584 INFO Connection check task end + +2025-09-24 07:26:57,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:26:58,586 INFO Connection check task start + +2025-09-24 07:26:58,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:26:58,586 INFO Out dated connection ,size=0 + +2025-09-24 07:26:58,586 INFO Connection check task end + +2025-09-24 07:27:00,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:01,587 INFO Connection check task start + +2025-09-24 07:27:01,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:01,587 INFO Out dated connection ,size=0 + +2025-09-24 07:27:01,587 INFO Connection check task end + +2025-09-24 07:27:03,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:04,588 INFO Connection check task start + +2025-09-24 07:27:04,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:04,588 INFO Out dated connection ,size=0 + +2025-09-24 07:27:04,588 INFO Connection check task end + +2025-09-24 07:27:06,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:07,590 INFO Connection check task start + +2025-09-24 07:27:07,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:07,590 INFO Out dated connection ,size=0 + +2025-09-24 07:27:07,590 INFO Connection check task end + +2025-09-24 07:27:09,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:10,591 INFO Connection check task start + +2025-09-24 07:27:10,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:10,592 INFO Out dated connection ,size=0 + +2025-09-24 07:27:10,592 INFO Connection check task end + +2025-09-24 07:27:12,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:13,592 INFO Connection check task start + +2025-09-24 07:27:13,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:13,592 INFO Out dated connection ,size=0 + +2025-09-24 07:27:13,592 INFO Connection check task end + +2025-09-24 07:27:15,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:16,593 INFO Connection check task start + +2025-09-24 07:27:16,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:16,593 INFO Out dated connection ,size=0 + +2025-09-24 07:27:16,593 INFO Connection check task end + +2025-09-24 07:27:18,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:19,594 INFO Connection check task start + +2025-09-24 07:27:19,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:19,594 INFO Out dated connection ,size=0 + +2025-09-24 07:27:19,595 INFO Connection check task end + +2025-09-24 07:27:21,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:22,597 INFO Connection check task start + +2025-09-24 07:27:22,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:22,597 INFO Out dated connection ,size=0 + +2025-09-24 07:27:22,597 INFO Connection check task end + +2025-09-24 07:27:24,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:25,598 INFO Connection check task start + +2025-09-24 07:27:25,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:25,598 INFO Out dated connection ,size=0 + +2025-09-24 07:27:25,598 INFO Connection check task end + +2025-09-24 07:27:27,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:28,600 INFO Connection check task start + +2025-09-24 07:27:28,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:28,600 INFO Out dated connection ,size=0 + +2025-09-24 07:27:28,600 INFO Connection check task end + +2025-09-24 07:27:30,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:31,601 INFO Connection check task start + +2025-09-24 07:27:31,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:31,601 INFO Out dated connection ,size=0 + +2025-09-24 07:27:31,601 INFO Connection check task end + +2025-09-24 07:27:33,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:34,603 INFO Connection check task start + +2025-09-24 07:27:34,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:34,603 INFO Out dated connection ,size=0 + +2025-09-24 07:27:34,603 INFO Connection check task end + +2025-09-24 07:27:36,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:37,604 INFO Connection check task start + +2025-09-24 07:27:37,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:37,605 INFO Out dated connection ,size=0 + +2025-09-24 07:27:37,605 INFO Connection check task end + +2025-09-24 07:27:39,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:40,606 INFO Connection check task start + +2025-09-24 07:27:40,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:40,606 INFO Out dated connection ,size=0 + +2025-09-24 07:27:40,606 INFO Connection check task end + +2025-09-24 07:27:42,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:43,607 INFO Connection check task start + +2025-09-24 07:27:43,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:43,607 INFO Out dated connection ,size=0 + +2025-09-24 07:27:43,607 INFO Connection check task end + +2025-09-24 07:27:45,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:46,608 INFO Connection check task start + +2025-09-24 07:27:46,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:46,608 INFO Out dated connection ,size=0 + +2025-09-24 07:27:46,608 INFO Connection check task end + +2025-09-24 07:27:48,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:49,609 INFO Connection check task start + +2025-09-24 07:27:49,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:49,609 INFO Out dated connection ,size=0 + +2025-09-24 07:27:49,609 INFO Connection check task end + +2025-09-24 07:27:51,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:52,609 INFO Connection check task start + +2025-09-24 07:27:52,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:52,609 INFO Out dated connection ,size=0 + +2025-09-24 07:27:52,609 INFO Connection check task end + +2025-09-24 07:27:54,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:55,610 INFO Connection check task start + +2025-09-24 07:27:55,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:55,610 INFO Out dated connection ,size=0 + +2025-09-24 07:27:55,610 INFO Connection check task end + +2025-09-24 07:27:57,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:27:58,612 INFO Connection check task start + +2025-09-24 07:27:58,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:27:58,612 INFO Out dated connection ,size=0 + +2025-09-24 07:27:58,612 INFO Connection check task end + +2025-09-24 07:28:00,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:01,612 INFO Connection check task start + +2025-09-24 07:28:01,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:01,612 INFO Out dated connection ,size=0 + +2025-09-24 07:28:01,612 INFO Connection check task end + +2025-09-24 07:28:03,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:04,613 INFO Connection check task start + +2025-09-24 07:28:04,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:04,613 INFO Out dated connection ,size=0 + +2025-09-24 07:28:04,613 INFO Connection check task end + +2025-09-24 07:28:06,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:07,615 INFO Connection check task start + +2025-09-24 07:28:07,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:07,615 INFO Out dated connection ,size=0 + +2025-09-24 07:28:07,615 INFO Connection check task end + +2025-09-24 07:28:09,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:10,617 INFO Connection check task start + +2025-09-24 07:28:10,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:10,617 INFO Out dated connection ,size=0 + +2025-09-24 07:28:10,617 INFO Connection check task end + +2025-09-24 07:28:12,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:13,617 INFO Connection check task start + +2025-09-24 07:28:13,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:13,617 INFO Out dated connection ,size=0 + +2025-09-24 07:28:13,617 INFO Connection check task end + +2025-09-24 07:28:15,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:16,619 INFO Connection check task start + +2025-09-24 07:28:16,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:16,619 INFO Out dated connection ,size=0 + +2025-09-24 07:28:16,619 INFO Connection check task end + +2025-09-24 07:28:18,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:19,620 INFO Connection check task start + +2025-09-24 07:28:19,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:19,620 INFO Out dated connection ,size=0 + +2025-09-24 07:28:19,620 INFO Connection check task end + +2025-09-24 07:28:21,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:22,622 INFO Connection check task start + +2025-09-24 07:28:22,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:22,622 INFO Out dated connection ,size=0 + +2025-09-24 07:28:22,622 INFO Connection check task end + +2025-09-24 07:28:24,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:25,623 INFO Connection check task start + +2025-09-24 07:28:25,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:25,623 INFO Out dated connection ,size=0 + +2025-09-24 07:28:25,623 INFO Connection check task end + +2025-09-24 07:28:27,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:28,625 INFO Connection check task start + +2025-09-24 07:28:28,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:28,626 INFO Out dated connection ,size=0 + +2025-09-24 07:28:28,626 INFO Connection check task end + +2025-09-24 07:28:30,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:31,626 INFO Connection check task start + +2025-09-24 07:28:31,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:31,626 INFO Out dated connection ,size=0 + +2025-09-24 07:28:31,626 INFO Connection check task end + +2025-09-24 07:28:33,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:34,628 INFO Connection check task start + +2025-09-24 07:28:34,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:34,628 INFO Out dated connection ,size=0 + +2025-09-24 07:28:34,628 INFO Connection check task end + +2025-09-24 07:28:36,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:37,629 INFO Connection check task start + +2025-09-24 07:28:37,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:37,629 INFO Out dated connection ,size=0 + +2025-09-24 07:28:37,629 INFO Connection check task end + +2025-09-24 07:28:39,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:40,629 INFO Connection check task start + +2025-09-24 07:28:40,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:40,629 INFO Out dated connection ,size=0 + +2025-09-24 07:28:40,630 INFO Connection check task end + +2025-09-24 07:28:42,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:43,630 INFO Connection check task start + +2025-09-24 07:28:43,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:43,630 INFO Out dated connection ,size=0 + +2025-09-24 07:28:43,630 INFO Connection check task end + +2025-09-24 07:28:45,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:46,633 INFO Connection check task start + +2025-09-24 07:28:46,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:46,633 INFO Out dated connection ,size=0 + +2025-09-24 07:28:46,633 INFO Connection check task end + +2025-09-24 07:28:48,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:49,634 INFO Connection check task start + +2025-09-24 07:28:49,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:49,634 INFO Out dated connection ,size=0 + +2025-09-24 07:28:49,634 INFO Connection check task end + +2025-09-24 07:28:51,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:52,636 INFO Connection check task start + +2025-09-24 07:28:52,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:52,636 INFO Out dated connection ,size=0 + +2025-09-24 07:28:52,636 INFO Connection check task end + +2025-09-24 07:28:54,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:55,637 INFO Connection check task start + +2025-09-24 07:28:55,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:55,638 INFO Out dated connection ,size=0 + +2025-09-24 07:28:55,638 INFO Connection check task end + +2025-09-24 07:28:57,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:28:58,638 INFO Connection check task start + +2025-09-24 07:28:58,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:28:58,638 INFO Out dated connection ,size=0 + +2025-09-24 07:28:58,638 INFO Connection check task end + +2025-09-24 07:29:00,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:01,638 INFO Connection check task start + +2025-09-24 07:29:01,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:01,639 INFO Out dated connection ,size=0 + +2025-09-24 07:29:01,639 INFO Connection check task end + +2025-09-24 07:29:03,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:04,639 INFO Connection check task start + +2025-09-24 07:29:04,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:04,639 INFO Out dated connection ,size=0 + +2025-09-24 07:29:04,639 INFO Connection check task end + +2025-09-24 07:29:06,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:07,640 INFO Connection check task start + +2025-09-24 07:29:07,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:07,640 INFO Out dated connection ,size=0 + +2025-09-24 07:29:07,640 INFO Connection check task end + +2025-09-24 07:29:09,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:10,641 INFO Connection check task start + +2025-09-24 07:29:10,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:10,641 INFO Out dated connection ,size=0 + +2025-09-24 07:29:10,641 INFO Connection check task end + +2025-09-24 07:29:12,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:13,642 INFO Connection check task start + +2025-09-24 07:29:13,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:13,642 INFO Out dated connection ,size=0 + +2025-09-24 07:29:13,642 INFO Connection check task end + +2025-09-24 07:29:15,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:16,642 INFO Connection check task start + +2025-09-24 07:29:16,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:16,642 INFO Out dated connection ,size=0 + +2025-09-24 07:29:16,642 INFO Connection check task end + +2025-09-24 07:29:18,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:19,642 INFO Connection check task start + +2025-09-24 07:29:19,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:19,642 INFO Out dated connection ,size=0 + +2025-09-24 07:29:19,642 INFO Connection check task end + +2025-09-24 07:29:21,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:22,645 INFO Connection check task start + +2025-09-24 07:29:22,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:22,645 INFO Out dated connection ,size=0 + +2025-09-24 07:29:22,645 INFO Connection check task end + +2025-09-24 07:29:24,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:25,645 INFO Connection check task start + +2025-09-24 07:29:25,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:25,645 INFO Out dated connection ,size=0 + +2025-09-24 07:29:25,645 INFO Connection check task end + +2025-09-24 07:29:27,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:28,647 INFO Connection check task start + +2025-09-24 07:29:28,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:28,647 INFO Out dated connection ,size=0 + +2025-09-24 07:29:28,647 INFO Connection check task end + +2025-09-24 07:29:30,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:31,649 INFO Connection check task start + +2025-09-24 07:29:31,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:31,649 INFO Out dated connection ,size=0 + +2025-09-24 07:29:31,649 INFO Connection check task end + +2025-09-24 07:29:33,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:34,649 INFO Connection check task start + +2025-09-24 07:29:34,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:34,649 INFO Out dated connection ,size=0 + +2025-09-24 07:29:34,650 INFO Connection check task end + +2025-09-24 07:29:36,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:37,651 INFO Connection check task start + +2025-09-24 07:29:37,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:37,651 INFO Out dated connection ,size=0 + +2025-09-24 07:29:37,652 INFO Connection check task end + +2025-09-24 07:29:39,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:40,654 INFO Connection check task start + +2025-09-24 07:29:40,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:40,654 INFO Out dated connection ,size=0 + +2025-09-24 07:29:40,654 INFO Connection check task end + +2025-09-24 07:29:42,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:43,655 INFO Connection check task start + +2025-09-24 07:29:43,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:43,655 INFO Out dated connection ,size=0 + +2025-09-24 07:29:43,655 INFO Connection check task end + +2025-09-24 07:29:45,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:46,655 INFO Connection check task start + +2025-09-24 07:29:46,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:46,655 INFO Out dated connection ,size=0 + +2025-09-24 07:29:46,655 INFO Connection check task end + +2025-09-24 07:29:48,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:49,656 INFO Connection check task start + +2025-09-24 07:29:49,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:49,656 INFO Out dated connection ,size=0 + +2025-09-24 07:29:49,656 INFO Connection check task end + +2025-09-24 07:29:51,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:52,656 INFO Connection check task start + +2025-09-24 07:29:52,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:52,657 INFO Out dated connection ,size=0 + +2025-09-24 07:29:52,657 INFO Connection check task end + +2025-09-24 07:29:54,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:55,657 INFO Connection check task start + +2025-09-24 07:29:55,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:55,658 INFO Out dated connection ,size=0 + +2025-09-24 07:29:55,658 INFO Connection check task end + +2025-09-24 07:29:57,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:29:58,658 INFO Connection check task start + +2025-09-24 07:29:58,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:29:58,658 INFO Out dated connection ,size=0 + +2025-09-24 07:29:58,658 INFO Connection check task end + +2025-09-24 07:30:00,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:01,658 INFO Connection check task start + +2025-09-24 07:30:01,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:01,659 INFO Out dated connection ,size=0 + +2025-09-24 07:30:01,659 INFO Connection check task end + +2025-09-24 07:30:03,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:04,661 INFO Connection check task start + +2025-09-24 07:30:04,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:04,661 INFO Out dated connection ,size=0 + +2025-09-24 07:30:04,661 INFO Connection check task end + +2025-09-24 07:30:06,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:07,661 INFO Connection check task start + +2025-09-24 07:30:07,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:07,662 INFO Out dated connection ,size=0 + +2025-09-24 07:30:07,662 INFO Connection check task end + +2025-09-24 07:30:09,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:10,664 INFO Connection check task start + +2025-09-24 07:30:10,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:10,664 INFO Out dated connection ,size=0 + +2025-09-24 07:30:10,664 INFO Connection check task end + +2025-09-24 07:30:12,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:13,664 INFO Connection check task start + +2025-09-24 07:30:13,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:13,664 INFO Out dated connection ,size=0 + +2025-09-24 07:30:13,664 INFO Connection check task end + +2025-09-24 07:30:15,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:16,665 INFO Connection check task start + +2025-09-24 07:30:16,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:16,665 INFO Out dated connection ,size=0 + +2025-09-24 07:30:16,665 INFO Connection check task end + +2025-09-24 07:30:18,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:19,669 INFO Connection check task start + +2025-09-24 07:30:19,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:19,670 INFO Out dated connection ,size=0 + +2025-09-24 07:30:19,670 INFO Connection check task end + +2025-09-24 07:30:21,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:22,670 INFO Connection check task start + +2025-09-24 07:30:22,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:22,670 INFO Out dated connection ,size=0 + +2025-09-24 07:30:22,670 INFO Connection check task end + +2025-09-24 07:30:24,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:25,672 INFO Connection check task start + +2025-09-24 07:30:25,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:25,672 INFO Out dated connection ,size=0 + +2025-09-24 07:30:25,672 INFO Connection check task end + +2025-09-24 07:30:27,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:28,673 INFO Connection check task start + +2025-09-24 07:30:28,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:28,673 INFO Out dated connection ,size=0 + +2025-09-24 07:30:28,673 INFO Connection check task end + +2025-09-24 07:30:30,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:31,674 INFO Connection check task start + +2025-09-24 07:30:31,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:31,675 INFO Out dated connection ,size=0 + +2025-09-24 07:30:31,675 INFO Connection check task end + +2025-09-24 07:30:33,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:34,675 INFO Connection check task start + +2025-09-24 07:30:34,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:34,675 INFO Out dated connection ,size=0 + +2025-09-24 07:30:34,675 INFO Connection check task end + +2025-09-24 07:30:36,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:37,676 INFO Connection check task start + +2025-09-24 07:30:37,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:37,677 INFO Out dated connection ,size=0 + +2025-09-24 07:30:37,677 INFO Connection check task end + +2025-09-24 07:30:39,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:40,677 INFO Connection check task start + +2025-09-24 07:30:40,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:40,677 INFO Out dated connection ,size=0 + +2025-09-24 07:30:40,677 INFO Connection check task end + +2025-09-24 07:30:42,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:43,678 INFO Connection check task start + +2025-09-24 07:30:43,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:43,678 INFO Out dated connection ,size=0 + +2025-09-24 07:30:43,678 INFO Connection check task end + +2025-09-24 07:30:45,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:46,678 INFO Connection check task start + +2025-09-24 07:30:46,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:46,679 INFO Out dated connection ,size=0 + +2025-09-24 07:30:46,679 INFO Connection check task end + +2025-09-24 07:30:48,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:49,679 INFO Connection check task start + +2025-09-24 07:30:49,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:49,679 INFO Out dated connection ,size=0 + +2025-09-24 07:30:49,679 INFO Connection check task end + +2025-09-24 07:30:51,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:52,681 INFO Connection check task start + +2025-09-24 07:30:52,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:52,681 INFO Out dated connection ,size=0 + +2025-09-24 07:30:52,681 INFO Connection check task end + +2025-09-24 07:30:54,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:55,682 INFO Connection check task start + +2025-09-24 07:30:55,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:55,682 INFO Out dated connection ,size=0 + +2025-09-24 07:30:55,682 INFO Connection check task end + +2025-09-24 07:30:57,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:30:58,684 INFO Connection check task start + +2025-09-24 07:30:58,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:30:58,684 INFO Out dated connection ,size=0 + +2025-09-24 07:30:58,684 INFO Connection check task end + +2025-09-24 07:31:00,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:01,685 INFO Connection check task start + +2025-09-24 07:31:01,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:01,685 INFO Out dated connection ,size=0 + +2025-09-24 07:31:01,685 INFO Connection check task end + +2025-09-24 07:31:03,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:04,685 INFO Connection check task start + +2025-09-24 07:31:04,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:04,685 INFO Out dated connection ,size=0 + +2025-09-24 07:31:04,686 INFO Connection check task end + +2025-09-24 07:31:06,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:07,686 INFO Connection check task start + +2025-09-24 07:31:07,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:07,686 INFO Out dated connection ,size=0 + +2025-09-24 07:31:07,686 INFO Connection check task end + +2025-09-24 07:31:09,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:10,688 INFO Connection check task start + +2025-09-24 07:31:10,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:10,688 INFO Out dated connection ,size=0 + +2025-09-24 07:31:10,688 INFO Connection check task end + +2025-09-24 07:31:12,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:13,689 INFO Connection check task start + +2025-09-24 07:31:13,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:13,689 INFO Out dated connection ,size=0 + +2025-09-24 07:31:13,689 INFO Connection check task end + +2025-09-24 07:31:15,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:16,691 INFO Connection check task start + +2025-09-24 07:31:16,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:16,691 INFO Out dated connection ,size=0 + +2025-09-24 07:31:16,691 INFO Connection check task end + +2025-09-24 07:31:18,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:19,691 INFO Connection check task start + +2025-09-24 07:31:19,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:19,692 INFO Out dated connection ,size=0 + +2025-09-24 07:31:19,692 INFO Connection check task end + +2025-09-24 07:31:21,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:22,692 INFO Connection check task start + +2025-09-24 07:31:22,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:22,692 INFO Out dated connection ,size=0 + +2025-09-24 07:31:22,692 INFO Connection check task end + +2025-09-24 07:31:24,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:25,693 INFO Connection check task start + +2025-09-24 07:31:25,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:25,694 INFO Out dated connection ,size=0 + +2025-09-24 07:31:25,694 INFO Connection check task end + +2025-09-24 07:31:27,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:28,694 INFO Connection check task start + +2025-09-24 07:31:28,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:28,694 INFO Out dated connection ,size=0 + +2025-09-24 07:31:28,694 INFO Connection check task end + +2025-09-24 07:31:30,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:31,694 INFO Connection check task start + +2025-09-24 07:31:31,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:31,695 INFO Out dated connection ,size=0 + +2025-09-24 07:31:31,695 INFO Connection check task end + +2025-09-24 07:31:33,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:34,696 INFO Connection check task start + +2025-09-24 07:31:34,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:34,696 INFO Out dated connection ,size=0 + +2025-09-24 07:31:34,696 INFO Connection check task end + +2025-09-24 07:31:36,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:37,697 INFO Connection check task start + +2025-09-24 07:31:37,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:37,697 INFO Out dated connection ,size=0 + +2025-09-24 07:31:37,697 INFO Connection check task end + +2025-09-24 07:31:39,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:40,697 INFO Connection check task start + +2025-09-24 07:31:40,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:40,698 INFO Out dated connection ,size=0 + +2025-09-24 07:31:40,698 INFO Connection check task end + +2025-09-24 07:31:42,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:43,700 INFO Connection check task start + +2025-09-24 07:31:43,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:43,700 INFO Out dated connection ,size=0 + +2025-09-24 07:31:43,700 INFO Connection check task end + +2025-09-24 07:31:45,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:46,701 INFO Connection check task start + +2025-09-24 07:31:46,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:46,702 INFO Out dated connection ,size=0 + +2025-09-24 07:31:46,702 INFO Connection check task end + +2025-09-24 07:31:48,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:49,703 INFO Connection check task start + +2025-09-24 07:31:49,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:49,703 INFO Out dated connection ,size=0 + +2025-09-24 07:31:49,703 INFO Connection check task end + +2025-09-24 07:31:51,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:52,705 INFO Connection check task start + +2025-09-24 07:31:52,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:52,705 INFO Out dated connection ,size=0 + +2025-09-24 07:31:52,705 INFO Connection check task end + +2025-09-24 07:31:54,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:55,706 INFO Connection check task start + +2025-09-24 07:31:55,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:55,706 INFO Out dated connection ,size=0 + +2025-09-24 07:31:55,706 INFO Connection check task end + +2025-09-24 07:31:57,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:31:58,706 INFO Connection check task start + +2025-09-24 07:31:58,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:31:58,707 INFO Out dated connection ,size=0 + +2025-09-24 07:31:58,707 INFO Connection check task end + +2025-09-24 07:32:00,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:01,707 INFO Connection check task start + +2025-09-24 07:32:01,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:01,707 INFO Out dated connection ,size=0 + +2025-09-24 07:32:01,707 INFO Connection check task end + +2025-09-24 07:32:03,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:04,708 INFO Connection check task start + +2025-09-24 07:32:04,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:04,708 INFO Out dated connection ,size=0 + +2025-09-24 07:32:04,708 INFO Connection check task end + +2025-09-24 07:32:06,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:07,709 INFO Connection check task start + +2025-09-24 07:32:07,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:07,709 INFO Out dated connection ,size=0 + +2025-09-24 07:32:07,709 INFO Connection check task end + +2025-09-24 07:32:09,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:10,709 INFO Connection check task start + +2025-09-24 07:32:10,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:10,709 INFO Out dated connection ,size=0 + +2025-09-24 07:32:10,709 INFO Connection check task end + +2025-09-24 07:32:12,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:13,710 INFO Connection check task start + +2025-09-24 07:32:13,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:13,710 INFO Out dated connection ,size=0 + +2025-09-24 07:32:13,710 INFO Connection check task end + +2025-09-24 07:32:15,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:16,711 INFO Connection check task start + +2025-09-24 07:32:16,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:16,711 INFO Out dated connection ,size=0 + +2025-09-24 07:32:16,711 INFO Connection check task end + +2025-09-24 07:32:18,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:19,711 INFO Connection check task start + +2025-09-24 07:32:19,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:19,711 INFO Out dated connection ,size=0 + +2025-09-24 07:32:19,711 INFO Connection check task end + +2025-09-24 07:32:21,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:22,713 INFO Connection check task start + +2025-09-24 07:32:22,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:22,714 INFO Out dated connection ,size=0 + +2025-09-24 07:32:22,714 INFO Connection check task end + +2025-09-24 07:32:24,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:25,716 INFO Connection check task start + +2025-09-24 07:32:25,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:25,716 INFO Out dated connection ,size=0 + +2025-09-24 07:32:25,716 INFO Connection check task end + +2025-09-24 07:32:27,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:28,717 INFO Connection check task start + +2025-09-24 07:32:28,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:28,717 INFO Out dated connection ,size=0 + +2025-09-24 07:32:28,717 INFO Connection check task end + +2025-09-24 07:32:30,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:31,719 INFO Connection check task start + +2025-09-24 07:32:31,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:31,719 INFO Out dated connection ,size=0 + +2025-09-24 07:32:31,719 INFO Connection check task end + +2025-09-24 07:32:33,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:34,719 INFO Connection check task start + +2025-09-24 07:32:34,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:34,719 INFO Out dated connection ,size=0 + +2025-09-24 07:32:34,719 INFO Connection check task end + +2025-09-24 07:32:36,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:37,721 INFO Connection check task start + +2025-09-24 07:32:37,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:37,721 INFO Out dated connection ,size=0 + +2025-09-24 07:32:37,721 INFO Connection check task end + +2025-09-24 07:32:39,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:40,723 INFO Connection check task start + +2025-09-24 07:32:40,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:40,723 INFO Out dated connection ,size=0 + +2025-09-24 07:32:40,723 INFO Connection check task end + +2025-09-24 07:32:42,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:43,723 INFO Connection check task start + +2025-09-24 07:32:43,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:43,724 INFO Out dated connection ,size=0 + +2025-09-24 07:32:43,724 INFO Connection check task end + +2025-09-24 07:32:45,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:46,724 INFO Connection check task start + +2025-09-24 07:32:46,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:46,724 INFO Out dated connection ,size=0 + +2025-09-24 07:32:46,724 INFO Connection check task end + +2025-09-24 07:32:48,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:49,726 INFO Connection check task start + +2025-09-24 07:32:49,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:49,726 INFO Out dated connection ,size=0 + +2025-09-24 07:32:49,726 INFO Connection check task end + +2025-09-24 07:32:51,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:52,728 INFO Connection check task start + +2025-09-24 07:32:52,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:52,728 INFO Out dated connection ,size=0 + +2025-09-24 07:32:52,728 INFO Connection check task end + +2025-09-24 07:32:54,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:55,729 INFO Connection check task start + +2025-09-24 07:32:55,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:55,729 INFO Out dated connection ,size=0 + +2025-09-24 07:32:55,729 INFO Connection check task end + +2025-09-24 07:32:57,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:32:58,730 INFO Connection check task start + +2025-09-24 07:32:58,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:32:58,730 INFO Out dated connection ,size=0 + +2025-09-24 07:32:58,730 INFO Connection check task end + +2025-09-24 07:33:00,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:01,731 INFO Connection check task start + +2025-09-24 07:33:01,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:01,731 INFO Out dated connection ,size=0 + +2025-09-24 07:33:01,731 INFO Connection check task end + +2025-09-24 07:33:03,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:04,732 INFO Connection check task start + +2025-09-24 07:33:04,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:04,732 INFO Out dated connection ,size=0 + +2025-09-24 07:33:04,732 INFO Connection check task end + +2025-09-24 07:33:06,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:07,734 INFO Connection check task start + +2025-09-24 07:33:07,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:07,735 INFO Out dated connection ,size=0 + +2025-09-24 07:33:07,735 INFO Connection check task end + +2025-09-24 07:33:09,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:10,735 INFO Connection check task start + +2025-09-24 07:33:10,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:10,735 INFO Out dated connection ,size=0 + +2025-09-24 07:33:10,735 INFO Connection check task end + +2025-09-24 07:33:12,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:13,737 INFO Connection check task start + +2025-09-24 07:33:13,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:13,738 INFO Out dated connection ,size=0 + +2025-09-24 07:33:13,738 INFO Connection check task end + +2025-09-24 07:33:15,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:16,740 INFO Connection check task start + +2025-09-24 07:33:16,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:16,740 INFO Out dated connection ,size=0 + +2025-09-24 07:33:16,740 INFO Connection check task end + +2025-09-24 07:33:18,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:19,740 INFO Connection check task start + +2025-09-24 07:33:19,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:19,740 INFO Out dated connection ,size=0 + +2025-09-24 07:33:19,740 INFO Connection check task end + +2025-09-24 07:33:21,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:22,742 INFO Connection check task start + +2025-09-24 07:33:22,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:22,742 INFO Out dated connection ,size=0 + +2025-09-24 07:33:22,742 INFO Connection check task end + +2025-09-24 07:33:24,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:25,743 INFO Connection check task start + +2025-09-24 07:33:25,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:25,743 INFO Out dated connection ,size=0 + +2025-09-24 07:33:25,743 INFO Connection check task end + +2025-09-24 07:33:27,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:28,744 INFO Connection check task start + +2025-09-24 07:33:28,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:28,744 INFO Out dated connection ,size=0 + +2025-09-24 07:33:28,744 INFO Connection check task end + +2025-09-24 07:33:30,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:31,746 INFO Connection check task start + +2025-09-24 07:33:31,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:31,746 INFO Out dated connection ,size=0 + +2025-09-24 07:33:31,747 INFO Connection check task end + +2025-09-24 07:33:33,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:34,749 INFO Connection check task start + +2025-09-24 07:33:34,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:34,749 INFO Out dated connection ,size=0 + +2025-09-24 07:33:34,749 INFO Connection check task end + +2025-09-24 07:33:36,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:37,749 INFO Connection check task start + +2025-09-24 07:33:37,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:37,750 INFO Out dated connection ,size=0 + +2025-09-24 07:33:37,750 INFO Connection check task end + +2025-09-24 07:33:39,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:40,750 INFO Connection check task start + +2025-09-24 07:33:40,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:40,750 INFO Out dated connection ,size=0 + +2025-09-24 07:33:40,750 INFO Connection check task end + +2025-09-24 07:33:42,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:43,751 INFO Connection check task start + +2025-09-24 07:33:43,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:43,751 INFO Out dated connection ,size=0 + +2025-09-24 07:33:43,751 INFO Connection check task end + +2025-09-24 07:33:45,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:46,751 INFO Connection check task start + +2025-09-24 07:33:46,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:46,751 INFO Out dated connection ,size=0 + +2025-09-24 07:33:46,751 INFO Connection check task end + +2025-09-24 07:33:48,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:49,752 INFO Connection check task start + +2025-09-24 07:33:49,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:49,752 INFO Out dated connection ,size=0 + +2025-09-24 07:33:49,752 INFO Connection check task end + +2025-09-24 07:33:51,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:52,753 INFO Connection check task start + +2025-09-24 07:33:52,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:52,753 INFO Out dated connection ,size=0 + +2025-09-24 07:33:52,753 INFO Connection check task end + +2025-09-24 07:33:54,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:55,755 INFO Connection check task start + +2025-09-24 07:33:55,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:55,755 INFO Out dated connection ,size=0 + +2025-09-24 07:33:55,755 INFO Connection check task end + +2025-09-24 07:33:57,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:33:58,755 INFO Connection check task start + +2025-09-24 07:33:58,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:33:58,755 INFO Out dated connection ,size=0 + +2025-09-24 07:33:58,755 INFO Connection check task end + +2025-09-24 07:34:00,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:01,755 INFO Connection check task start + +2025-09-24 07:34:01,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:01,756 INFO Out dated connection ,size=0 + +2025-09-24 07:34:01,756 INFO Connection check task end + +2025-09-24 07:34:03,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:04,756 INFO Connection check task start + +2025-09-24 07:34:04,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:04,756 INFO Out dated connection ,size=0 + +2025-09-24 07:34:04,756 INFO Connection check task end + +2025-09-24 07:34:06,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:07,757 INFO Connection check task start + +2025-09-24 07:34:07,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:07,757 INFO Out dated connection ,size=0 + +2025-09-24 07:34:07,757 INFO Connection check task end + +2025-09-24 07:34:09,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:10,759 INFO Connection check task start + +2025-09-24 07:34:10,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:10,759 INFO Out dated connection ,size=0 + +2025-09-24 07:34:10,759 INFO Connection check task end + +2025-09-24 07:34:12,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:13,760 INFO Connection check task start + +2025-09-24 07:34:13,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:13,761 INFO Out dated connection ,size=0 + +2025-09-24 07:34:13,761 INFO Connection check task end + +2025-09-24 07:34:15,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:16,761 INFO Connection check task start + +2025-09-24 07:34:16,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:16,761 INFO Out dated connection ,size=0 + +2025-09-24 07:34:16,761 INFO Connection check task end + +2025-09-24 07:34:18,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:19,762 INFO Connection check task start + +2025-09-24 07:34:19,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:19,762 INFO Out dated connection ,size=0 + +2025-09-24 07:34:19,762 INFO Connection check task end + +2025-09-24 07:34:21,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:22,762 INFO Connection check task start + +2025-09-24 07:34:22,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:22,763 INFO Out dated connection ,size=0 + +2025-09-24 07:34:22,763 INFO Connection check task end + +2025-09-24 07:34:24,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:25,765 INFO Connection check task start + +2025-09-24 07:34:25,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:25,765 INFO Out dated connection ,size=0 + +2025-09-24 07:34:25,765 INFO Connection check task end + +2025-09-24 07:34:27,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:28,766 INFO Connection check task start + +2025-09-24 07:34:28,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:28,766 INFO Out dated connection ,size=0 + +2025-09-24 07:34:28,766 INFO Connection check task end + +2025-09-24 07:34:30,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:31,766 INFO Connection check task start + +2025-09-24 07:34:31,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:31,767 INFO Out dated connection ,size=0 + +2025-09-24 07:34:31,767 INFO Connection check task end + +2025-09-24 07:34:33,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:34,767 INFO Connection check task start + +2025-09-24 07:34:34,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:34,767 INFO Out dated connection ,size=0 + +2025-09-24 07:34:34,767 INFO Connection check task end + +2025-09-24 07:34:36,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:37,768 INFO Connection check task start + +2025-09-24 07:34:37,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:37,768 INFO Out dated connection ,size=0 + +2025-09-24 07:34:37,768 INFO Connection check task end + +2025-09-24 07:34:39,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:40,769 INFO Connection check task start + +2025-09-24 07:34:40,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:40,769 INFO Out dated connection ,size=0 + +2025-09-24 07:34:40,769 INFO Connection check task end + +2025-09-24 07:34:42,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:43,771 INFO Connection check task start + +2025-09-24 07:34:43,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:43,771 INFO Out dated connection ,size=0 + +2025-09-24 07:34:43,771 INFO Connection check task end + +2025-09-24 07:34:45,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:46,772 INFO Connection check task start + +2025-09-24 07:34:46,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:46,772 INFO Out dated connection ,size=0 + +2025-09-24 07:34:46,772 INFO Connection check task end + +2025-09-24 07:34:48,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:49,774 INFO Connection check task start + +2025-09-24 07:34:49,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:49,774 INFO Out dated connection ,size=0 + +2025-09-24 07:34:49,774 INFO Connection check task end + +2025-09-24 07:34:51,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:52,775 INFO Connection check task start + +2025-09-24 07:34:52,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:52,775 INFO Out dated connection ,size=0 + +2025-09-24 07:34:52,775 INFO Connection check task end + +2025-09-24 07:34:54,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:55,775 INFO Connection check task start + +2025-09-24 07:34:55,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:55,775 INFO Out dated connection ,size=0 + +2025-09-24 07:34:55,775 INFO Connection check task end + +2025-09-24 07:34:57,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:34:58,778 INFO Connection check task start + +2025-09-24 07:34:58,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:34:58,778 INFO Out dated connection ,size=0 + +2025-09-24 07:34:58,778 INFO Connection check task end + +2025-09-24 07:35:00,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:01,779 INFO Connection check task start + +2025-09-24 07:35:01,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:01,779 INFO Out dated connection ,size=0 + +2025-09-24 07:35:01,779 INFO Connection check task end + +2025-09-24 07:35:03,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:04,780 INFO Connection check task start + +2025-09-24 07:35:04,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:04,780 INFO Out dated connection ,size=0 + +2025-09-24 07:35:04,780 INFO Connection check task end + +2025-09-24 07:35:06,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:07,780 INFO Connection check task start + +2025-09-24 07:35:07,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:07,781 INFO Out dated connection ,size=0 + +2025-09-24 07:35:07,781 INFO Connection check task end + +2025-09-24 07:35:09,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:10,782 INFO Connection check task start + +2025-09-24 07:35:10,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:10,783 INFO Out dated connection ,size=0 + +2025-09-24 07:35:10,783 INFO Connection check task end + +2025-09-24 07:35:12,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:13,785 INFO Connection check task start + +2025-09-24 07:35:13,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:13,785 INFO Out dated connection ,size=0 + +2025-09-24 07:35:13,785 INFO Connection check task end + +2025-09-24 07:35:15,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:16,787 INFO Connection check task start + +2025-09-24 07:35:16,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:16,787 INFO Out dated connection ,size=0 + +2025-09-24 07:35:16,788 INFO Connection check task end + +2025-09-24 07:35:18,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:19,789 INFO Connection check task start + +2025-09-24 07:35:19,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:19,789 INFO Out dated connection ,size=0 + +2025-09-24 07:35:19,789 INFO Connection check task end + +2025-09-24 07:35:21,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:22,791 INFO Connection check task start + +2025-09-24 07:35:22,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:22,791 INFO Out dated connection ,size=0 + +2025-09-24 07:35:22,791 INFO Connection check task end + +2025-09-24 07:35:24,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:25,791 INFO Connection check task start + +2025-09-24 07:35:25,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:25,792 INFO Out dated connection ,size=0 + +2025-09-24 07:35:25,792 INFO Connection check task end + +2025-09-24 07:35:27,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:28,794 INFO Connection check task start + +2025-09-24 07:35:28,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:28,794 INFO Out dated connection ,size=0 + +2025-09-24 07:35:28,794 INFO Connection check task end + +2025-09-24 07:35:30,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:31,796 INFO Connection check task start + +2025-09-24 07:35:31,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:31,796 INFO Out dated connection ,size=0 + +2025-09-24 07:35:31,796 INFO Connection check task end + +2025-09-24 07:35:33,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:34,796 INFO Connection check task start + +2025-09-24 07:35:34,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:34,796 INFO Out dated connection ,size=0 + +2025-09-24 07:35:34,796 INFO Connection check task end + +2025-09-24 07:35:36,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:37,797 INFO Connection check task start + +2025-09-24 07:35:37,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:37,797 INFO Out dated connection ,size=0 + +2025-09-24 07:35:37,797 INFO Connection check task end + +2025-09-24 07:35:39,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:40,799 INFO Connection check task start + +2025-09-24 07:35:40,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:40,799 INFO Out dated connection ,size=0 + +2025-09-24 07:35:40,799 INFO Connection check task end + +2025-09-24 07:35:42,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:43,801 INFO Connection check task start + +2025-09-24 07:35:43,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:43,801 INFO Out dated connection ,size=0 + +2025-09-24 07:35:43,801 INFO Connection check task end + +2025-09-24 07:35:45,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:46,802 INFO Connection check task start + +2025-09-24 07:35:46,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:46,802 INFO Out dated connection ,size=0 + +2025-09-24 07:35:46,802 INFO Connection check task end + +2025-09-24 07:35:48,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:49,802 INFO Connection check task start + +2025-09-24 07:35:49,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:49,803 INFO Out dated connection ,size=0 + +2025-09-24 07:35:49,803 INFO Connection check task end + +2025-09-24 07:35:51,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:52,803 INFO Connection check task start + +2025-09-24 07:35:52,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:52,803 INFO Out dated connection ,size=0 + +2025-09-24 07:35:52,803 INFO Connection check task end + +2025-09-24 07:35:54,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:55,804 INFO Connection check task start + +2025-09-24 07:35:55,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:55,804 INFO Out dated connection ,size=0 + +2025-09-24 07:35:55,804 INFO Connection check task end + +2025-09-24 07:35:57,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:35:58,806 INFO Connection check task start + +2025-09-24 07:35:58,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:35:58,806 INFO Out dated connection ,size=0 + +2025-09-24 07:35:58,806 INFO Connection check task end + +2025-09-24 07:36:00,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:01,806 INFO Connection check task start + +2025-09-24 07:36:01,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:01,807 INFO Out dated connection ,size=0 + +2025-09-24 07:36:01,807 INFO Connection check task end + +2025-09-24 07:36:03,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:04,807 INFO Connection check task start + +2025-09-24 07:36:04,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:04,808 INFO Out dated connection ,size=0 + +2025-09-24 07:36:04,808 INFO Connection check task end + +2025-09-24 07:36:06,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:07,809 INFO Connection check task start + +2025-09-24 07:36:07,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:07,810 INFO Out dated connection ,size=0 + +2025-09-24 07:36:07,810 INFO Connection check task end + +2025-09-24 07:36:09,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:10,810 INFO Connection check task start + +2025-09-24 07:36:10,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:10,810 INFO Out dated connection ,size=0 + +2025-09-24 07:36:10,811 INFO Connection check task end + +2025-09-24 07:36:12,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:13,812 INFO Connection check task start + +2025-09-24 07:36:13,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:13,812 INFO Out dated connection ,size=0 + +2025-09-24 07:36:13,812 INFO Connection check task end + +2025-09-24 07:36:15,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:16,814 INFO Connection check task start + +2025-09-24 07:36:16,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:16,814 INFO Out dated connection ,size=0 + +2025-09-24 07:36:16,814 INFO Connection check task end + +2025-09-24 07:36:18,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:19,815 INFO Connection check task start + +2025-09-24 07:36:19,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:19,815 INFO Out dated connection ,size=0 + +2025-09-24 07:36:19,815 INFO Connection check task end + +2025-09-24 07:36:21,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:22,816 INFO Connection check task start + +2025-09-24 07:36:22,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:22,816 INFO Out dated connection ,size=0 + +2025-09-24 07:36:22,816 INFO Connection check task end + +2025-09-24 07:36:24,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:25,817 INFO Connection check task start + +2025-09-24 07:36:25,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:25,817 INFO Out dated connection ,size=0 + +2025-09-24 07:36:25,817 INFO Connection check task end + +2025-09-24 07:36:27,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:28,818 INFO Connection check task start + +2025-09-24 07:36:28,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:28,818 INFO Out dated connection ,size=0 + +2025-09-24 07:36:28,818 INFO Connection check task end + +2025-09-24 07:36:30,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:31,818 INFO Connection check task start + +2025-09-24 07:36:31,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:31,819 INFO Out dated connection ,size=0 + +2025-09-24 07:36:31,819 INFO Connection check task end + +2025-09-24 07:36:33,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:34,820 INFO Connection check task start + +2025-09-24 07:36:34,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:34,820 INFO Out dated connection ,size=0 + +2025-09-24 07:36:34,820 INFO Connection check task end + +2025-09-24 07:36:36,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:37,821 INFO Connection check task start + +2025-09-24 07:36:37,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:37,821 INFO Out dated connection ,size=0 + +2025-09-24 07:36:37,821 INFO Connection check task end + +2025-09-24 07:36:39,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:40,821 INFO Connection check task start + +2025-09-24 07:36:40,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:40,821 INFO Out dated connection ,size=0 + +2025-09-24 07:36:40,822 INFO Connection check task end + +2025-09-24 07:36:42,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:43,824 INFO Connection check task start + +2025-09-24 07:36:43,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:43,824 INFO Out dated connection ,size=0 + +2025-09-24 07:36:43,824 INFO Connection check task end + +2025-09-24 07:36:45,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:46,826 INFO Connection check task start + +2025-09-24 07:36:46,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:46,826 INFO Out dated connection ,size=0 + +2025-09-24 07:36:46,826 INFO Connection check task end + +2025-09-24 07:36:48,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:49,827 INFO Connection check task start + +2025-09-24 07:36:49,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:49,835 INFO Out dated connection ,size=0 + +2025-09-24 07:36:49,835 INFO Connection check task end + +2025-09-24 07:36:51,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:52,835 INFO Connection check task start + +2025-09-24 07:36:52,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:52,835 INFO Out dated connection ,size=0 + +2025-09-24 07:36:52,835 INFO Connection check task end + +2025-09-24 07:36:54,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:55,837 INFO Connection check task start + +2025-09-24 07:36:55,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:55,837 INFO Out dated connection ,size=0 + +2025-09-24 07:36:55,837 INFO Connection check task end + +2025-09-24 07:36:57,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:36:58,839 INFO Connection check task start + +2025-09-24 07:36:58,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:36:58,839 INFO Out dated connection ,size=0 + +2025-09-24 07:36:58,839 INFO Connection check task end + +2025-09-24 07:37:00,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:01,842 INFO Connection check task start + +2025-09-24 07:37:01,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:01,842 INFO Out dated connection ,size=0 + +2025-09-24 07:37:01,842 INFO Connection check task end + +2025-09-24 07:37:03,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:04,843 INFO Connection check task start + +2025-09-24 07:37:04,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:04,843 INFO Out dated connection ,size=0 + +2025-09-24 07:37:04,843 INFO Connection check task end + +2025-09-24 07:37:06,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:07,844 INFO Connection check task start + +2025-09-24 07:37:07,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:07,844 INFO Out dated connection ,size=0 + +2025-09-24 07:37:07,845 INFO Connection check task end + +2025-09-24 07:37:09,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:10,846 INFO Connection check task start + +2025-09-24 07:37:10,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:10,846 INFO Out dated connection ,size=0 + +2025-09-24 07:37:10,846 INFO Connection check task end + +2025-09-24 07:37:12,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:13,849 INFO Connection check task start + +2025-09-24 07:37:13,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:13,849 INFO Out dated connection ,size=0 + +2025-09-24 07:37:13,849 INFO Connection check task end + +2025-09-24 07:37:15,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:16,851 INFO Connection check task start + +2025-09-24 07:37:16,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:16,852 INFO Out dated connection ,size=0 + +2025-09-24 07:37:16,852 INFO Connection check task end + +2025-09-24 07:37:18,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:19,852 INFO Connection check task start + +2025-09-24 07:37:19,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:19,852 INFO Out dated connection ,size=0 + +2025-09-24 07:37:19,852 INFO Connection check task end + +2025-09-24 07:37:21,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:22,853 INFO Connection check task start + +2025-09-24 07:37:22,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:22,854 INFO Out dated connection ,size=0 + +2025-09-24 07:37:22,854 INFO Connection check task end + +2025-09-24 07:37:24,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:25,855 INFO Connection check task start + +2025-09-24 07:37:25,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:25,856 INFO Out dated connection ,size=0 + +2025-09-24 07:37:25,856 INFO Connection check task end + +2025-09-24 07:37:27,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:28,857 INFO Connection check task start + +2025-09-24 07:37:28,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:28,857 INFO Out dated connection ,size=0 + +2025-09-24 07:37:28,857 INFO Connection check task end + +2025-09-24 07:37:30,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:31,859 INFO Connection check task start + +2025-09-24 07:37:31,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:31,859 INFO Out dated connection ,size=0 + +2025-09-24 07:37:31,859 INFO Connection check task end + +2025-09-24 07:37:33,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:34,860 INFO Connection check task start + +2025-09-24 07:37:34,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:34,860 INFO Out dated connection ,size=0 + +2025-09-24 07:37:34,860 INFO Connection check task end + +2025-09-24 07:37:36,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:37,861 INFO Connection check task start + +2025-09-24 07:37:37,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:37,861 INFO Out dated connection ,size=0 + +2025-09-24 07:37:37,861 INFO Connection check task end + +2025-09-24 07:37:39,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:40,864 INFO Connection check task start + +2025-09-24 07:37:40,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:40,864 INFO Out dated connection ,size=0 + +2025-09-24 07:37:40,864 INFO Connection check task end + +2025-09-24 07:37:42,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:43,865 INFO Connection check task start + +2025-09-24 07:37:43,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:43,865 INFO Out dated connection ,size=0 + +2025-09-24 07:37:43,865 INFO Connection check task end + +2025-09-24 07:37:45,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:46,866 INFO Connection check task start + +2025-09-24 07:37:46,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:46,866 INFO Out dated connection ,size=0 + +2025-09-24 07:37:46,867 INFO Connection check task end + +2025-09-24 07:37:48,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:49,867 INFO Connection check task start + +2025-09-24 07:37:49,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:49,867 INFO Out dated connection ,size=0 + +2025-09-24 07:37:49,867 INFO Connection check task end + +2025-09-24 07:37:51,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:52,869 INFO Connection check task start + +2025-09-24 07:37:52,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:52,869 INFO Out dated connection ,size=0 + +2025-09-24 07:37:52,869 INFO Connection check task end + +2025-09-24 07:37:54,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:55,871 INFO Connection check task start + +2025-09-24 07:37:55,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:55,871 INFO Out dated connection ,size=0 + +2025-09-24 07:37:55,872 INFO Connection check task end + +2025-09-24 07:37:57,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:37:58,874 INFO Connection check task start + +2025-09-24 07:37:58,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:37:58,874 INFO Out dated connection ,size=0 + +2025-09-24 07:37:58,874 INFO Connection check task end + +2025-09-24 07:38:00,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:01,875 INFO Connection check task start + +2025-09-24 07:38:01,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:01,875 INFO Out dated connection ,size=0 + +2025-09-24 07:38:01,875 INFO Connection check task end + +2025-09-24 07:38:03,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:04,876 INFO Connection check task start + +2025-09-24 07:38:04,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:04,877 INFO Out dated connection ,size=0 + +2025-09-24 07:38:04,877 INFO Connection check task end + +2025-09-24 07:38:06,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:07,879 INFO Connection check task start + +2025-09-24 07:38:07,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:07,880 INFO Out dated connection ,size=0 + +2025-09-24 07:38:07,880 INFO Connection check task end + +2025-09-24 07:38:09,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:10,882 INFO Connection check task start + +2025-09-24 07:38:10,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:10,882 INFO Out dated connection ,size=0 + +2025-09-24 07:38:10,882 INFO Connection check task end + +2025-09-24 07:38:12,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:13,884 INFO Connection check task start + +2025-09-24 07:38:13,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:13,885 INFO Out dated connection ,size=0 + +2025-09-24 07:38:13,885 INFO Connection check task end + +2025-09-24 07:38:15,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:16,887 INFO Connection check task start + +2025-09-24 07:38:16,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:16,887 INFO Out dated connection ,size=0 + +2025-09-24 07:38:16,887 INFO Connection check task end + +2025-09-24 07:38:18,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:19,887 INFO Connection check task start + +2025-09-24 07:38:19,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:19,887 INFO Out dated connection ,size=0 + +2025-09-24 07:38:19,887 INFO Connection check task end + +2025-09-24 07:38:21,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:22,889 INFO Connection check task start + +2025-09-24 07:38:22,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:22,889 INFO Out dated connection ,size=0 + +2025-09-24 07:38:22,889 INFO Connection check task end + +2025-09-24 07:38:24,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:25,890 INFO Connection check task start + +2025-09-24 07:38:25,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:25,890 INFO Out dated connection ,size=0 + +2025-09-24 07:38:25,890 INFO Connection check task end + +2025-09-24 07:38:27,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:28,891 INFO Connection check task start + +2025-09-24 07:38:28,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:28,891 INFO Out dated connection ,size=0 + +2025-09-24 07:38:28,891 INFO Connection check task end + +2025-09-24 07:38:30,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:31,891 INFO Connection check task start + +2025-09-24 07:38:31,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:31,891 INFO Out dated connection ,size=0 + +2025-09-24 07:38:31,891 INFO Connection check task end + +2025-09-24 07:38:33,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:34,894 INFO Connection check task start + +2025-09-24 07:38:34,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:34,894 INFO Out dated connection ,size=0 + +2025-09-24 07:38:34,894 INFO Connection check task end + +2025-09-24 07:38:36,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:37,896 INFO Connection check task start + +2025-09-24 07:38:37,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:37,897 INFO Out dated connection ,size=0 + +2025-09-24 07:38:37,897 INFO Connection check task end + +2025-09-24 07:38:39,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:40,898 INFO Connection check task start + +2025-09-24 07:38:40,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:40,898 INFO Out dated connection ,size=0 + +2025-09-24 07:38:40,898 INFO Connection check task end + +2025-09-24 07:38:42,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:43,901 INFO Connection check task start + +2025-09-24 07:38:43,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:43,901 INFO Out dated connection ,size=0 + +2025-09-24 07:38:43,901 INFO Connection check task end + +2025-09-24 07:38:45,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:46,903 INFO Connection check task start + +2025-09-24 07:38:46,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:46,904 INFO Out dated connection ,size=0 + +2025-09-24 07:38:46,904 INFO Connection check task end + +2025-09-24 07:38:48,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:49,904 INFO Connection check task start + +2025-09-24 07:38:49,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:49,904 INFO Out dated connection ,size=0 + +2025-09-24 07:38:49,904 INFO Connection check task end + +2025-09-24 07:38:51,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:52,906 INFO Connection check task start + +2025-09-24 07:38:52,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:52,906 INFO Out dated connection ,size=0 + +2025-09-24 07:38:52,906 INFO Connection check task end + +2025-09-24 07:38:54,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:55,906 INFO Connection check task start + +2025-09-24 07:38:55,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:55,906 INFO Out dated connection ,size=0 + +2025-09-24 07:38:55,906 INFO Connection check task end + +2025-09-24 07:38:57,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:38:58,907 INFO Connection check task start + +2025-09-24 07:38:58,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:38:58,907 INFO Out dated connection ,size=0 + +2025-09-24 07:38:58,907 INFO Connection check task end + +2025-09-24 07:39:00,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:01,909 INFO Connection check task start + +2025-09-24 07:39:01,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:01,909 INFO Out dated connection ,size=0 + +2025-09-24 07:39:01,909 INFO Connection check task end + +2025-09-24 07:39:03,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:04,909 INFO Connection check task start + +2025-09-24 07:39:04,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:04,909 INFO Out dated connection ,size=0 + +2025-09-24 07:39:04,909 INFO Connection check task end + +2025-09-24 07:39:06,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:07,911 INFO Connection check task start + +2025-09-24 07:39:07,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:07,911 INFO Out dated connection ,size=0 + +2025-09-24 07:39:07,911 INFO Connection check task end + +2025-09-24 07:39:09,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:10,913 INFO Connection check task start + +2025-09-24 07:39:10,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:10,913 INFO Out dated connection ,size=0 + +2025-09-24 07:39:10,913 INFO Connection check task end + +2025-09-24 07:39:12,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:13,914 INFO Connection check task start + +2025-09-24 07:39:13,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:13,914 INFO Out dated connection ,size=0 + +2025-09-24 07:39:13,914 INFO Connection check task end + +2025-09-24 07:39:15,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:16,915 INFO Connection check task start + +2025-09-24 07:39:16,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:16,915 INFO Out dated connection ,size=0 + +2025-09-24 07:39:16,915 INFO Connection check task end + +2025-09-24 07:39:18,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:19,915 INFO Connection check task start + +2025-09-24 07:39:19,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:19,915 INFO Out dated connection ,size=0 + +2025-09-24 07:39:19,915 INFO Connection check task end + +2025-09-24 07:39:21,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:22,918 INFO Connection check task start + +2025-09-24 07:39:22,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:22,918 INFO Out dated connection ,size=0 + +2025-09-24 07:39:22,918 INFO Connection check task end + +2025-09-24 07:39:24,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:25,920 INFO Connection check task start + +2025-09-24 07:39:25,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:25,920 INFO Out dated connection ,size=0 + +2025-09-24 07:39:25,920 INFO Connection check task end + +2025-09-24 07:39:27,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:28,922 INFO Connection check task start + +2025-09-24 07:39:28,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:28,922 INFO Out dated connection ,size=0 + +2025-09-24 07:39:28,922 INFO Connection check task end + +2025-09-24 07:39:30,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:31,922 INFO Connection check task start + +2025-09-24 07:39:31,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:31,922 INFO Out dated connection ,size=0 + +2025-09-24 07:39:31,923 INFO Connection check task end + +2025-09-24 07:39:33,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:34,923 INFO Connection check task start + +2025-09-24 07:39:34,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:34,923 INFO Out dated connection ,size=0 + +2025-09-24 07:39:34,923 INFO Connection check task end + +2025-09-24 07:39:36,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:37,924 INFO Connection check task start + +2025-09-24 07:39:37,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:37,924 INFO Out dated connection ,size=0 + +2025-09-24 07:39:37,924 INFO Connection check task end + +2025-09-24 07:39:39,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:40,926 INFO Connection check task start + +2025-09-24 07:39:40,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:40,926 INFO Out dated connection ,size=0 + +2025-09-24 07:39:40,926 INFO Connection check task end + +2025-09-24 07:39:42,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:43,928 INFO Connection check task start + +2025-09-24 07:39:43,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:43,928 INFO Out dated connection ,size=0 + +2025-09-24 07:39:43,928 INFO Connection check task end + +2025-09-24 07:39:45,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:46,930 INFO Connection check task start + +2025-09-24 07:39:46,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:46,930 INFO Out dated connection ,size=0 + +2025-09-24 07:39:46,930 INFO Connection check task end + +2025-09-24 07:39:48,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:49,932 INFO Connection check task start + +2025-09-24 07:39:49,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:49,932 INFO Out dated connection ,size=0 + +2025-09-24 07:39:49,932 INFO Connection check task end + +2025-09-24 07:39:51,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:52,933 INFO Connection check task start + +2025-09-24 07:39:52,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:52,933 INFO Out dated connection ,size=0 + +2025-09-24 07:39:52,933 INFO Connection check task end + +2025-09-24 07:39:54,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:55,934 INFO Connection check task start + +2025-09-24 07:39:55,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:55,934 INFO Out dated connection ,size=0 + +2025-09-24 07:39:55,934 INFO Connection check task end + +2025-09-24 07:39:57,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:39:58,936 INFO Connection check task start + +2025-09-24 07:39:58,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:39:58,936 INFO Out dated connection ,size=0 + +2025-09-24 07:39:58,936 INFO Connection check task end + +2025-09-24 07:40:00,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:01,938 INFO Connection check task start + +2025-09-24 07:40:01,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:01,939 INFO Out dated connection ,size=0 + +2025-09-24 07:40:01,939 INFO Connection check task end + +2025-09-24 07:40:03,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:04,939 INFO Connection check task start + +2025-09-24 07:40:04,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:04,939 INFO Out dated connection ,size=0 + +2025-09-24 07:40:04,939 INFO Connection check task end + +2025-09-24 07:40:06,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:07,941 INFO Connection check task start + +2025-09-24 07:40:07,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:07,941 INFO Out dated connection ,size=0 + +2025-09-24 07:40:07,941 INFO Connection check task end + +2025-09-24 07:40:09,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:10,943 INFO Connection check task start + +2025-09-24 07:40:10,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:10,944 INFO Out dated connection ,size=0 + +2025-09-24 07:40:10,944 INFO Connection check task end + +2025-09-24 07:40:12,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:13,944 INFO Connection check task start + +2025-09-24 07:40:13,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:13,944 INFO Out dated connection ,size=0 + +2025-09-24 07:40:13,944 INFO Connection check task end + +2025-09-24 07:40:15,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:16,947 INFO Connection check task start + +2025-09-24 07:40:16,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:16,947 INFO Out dated connection ,size=0 + +2025-09-24 07:40:16,947 INFO Connection check task end + +2025-09-24 07:40:18,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:19,949 INFO Connection check task start + +2025-09-24 07:40:19,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:19,949 INFO Out dated connection ,size=0 + +2025-09-24 07:40:19,949 INFO Connection check task end + +2025-09-24 07:40:21,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:22,950 INFO Connection check task start + +2025-09-24 07:40:22,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:22,951 INFO Out dated connection ,size=0 + +2025-09-24 07:40:22,951 INFO Connection check task end + +2025-09-24 07:40:24,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:25,953 INFO Connection check task start + +2025-09-24 07:40:25,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:25,953 INFO Out dated connection ,size=0 + +2025-09-24 07:40:25,953 INFO Connection check task end + +2025-09-24 07:40:27,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:28,954 INFO Connection check task start + +2025-09-24 07:40:28,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:28,954 INFO Out dated connection ,size=0 + +2025-09-24 07:40:28,954 INFO Connection check task end + +2025-09-24 07:40:30,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:31,956 INFO Connection check task start + +2025-09-24 07:40:31,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:31,957 INFO Out dated connection ,size=0 + +2025-09-24 07:40:31,957 INFO Connection check task end + +2025-09-24 07:40:33,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:34,957 INFO Connection check task start + +2025-09-24 07:40:34,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:34,957 INFO Out dated connection ,size=0 + +2025-09-24 07:40:34,957 INFO Connection check task end + +2025-09-24 07:40:36,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:37,959 INFO Connection check task start + +2025-09-24 07:40:37,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:37,959 INFO Out dated connection ,size=0 + +2025-09-24 07:40:37,959 INFO Connection check task end + +2025-09-24 07:40:39,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:40,960 INFO Connection check task start + +2025-09-24 07:40:40,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:40,960 INFO Out dated connection ,size=0 + +2025-09-24 07:40:40,960 INFO Connection check task end + +2025-09-24 07:40:42,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:43,961 INFO Connection check task start + +2025-09-24 07:40:43,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:43,961 INFO Out dated connection ,size=0 + +2025-09-24 07:40:43,961 INFO Connection check task end + +2025-09-24 07:40:45,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:46,963 INFO Connection check task start + +2025-09-24 07:40:46,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:46,963 INFO Out dated connection ,size=0 + +2025-09-24 07:40:46,963 INFO Connection check task end + +2025-09-24 07:40:48,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:49,964 INFO Connection check task start + +2025-09-24 07:40:49,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:49,977 INFO Out dated connection ,size=0 + +2025-09-24 07:40:49,977 INFO Connection check task end + +2025-09-24 07:40:51,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:52,978 INFO Connection check task start + +2025-09-24 07:40:52,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:52,978 INFO Out dated connection ,size=0 + +2025-09-24 07:40:52,978 INFO Connection check task end + +2025-09-24 07:40:54,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:55,979 INFO Connection check task start + +2025-09-24 07:40:55,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:55,979 INFO Out dated connection ,size=0 + +2025-09-24 07:40:55,979 INFO Connection check task end + +2025-09-24 07:40:57,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:40:58,981 INFO Connection check task start + +2025-09-24 07:40:58,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:40:58,981 INFO Out dated connection ,size=0 + +2025-09-24 07:40:58,981 INFO Connection check task end + +2025-09-24 07:41:00,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:01,983 INFO Connection check task start + +2025-09-24 07:41:01,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:01,983 INFO Out dated connection ,size=0 + +2025-09-24 07:41:01,983 INFO Connection check task end + +2025-09-24 07:41:03,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:04,983 INFO Connection check task start + +2025-09-24 07:41:04,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:04,984 INFO Out dated connection ,size=0 + +2025-09-24 07:41:04,984 INFO Connection check task end + +2025-09-24 07:41:06,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:07,984 INFO Connection check task start + +2025-09-24 07:41:07,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:07,985 INFO Out dated connection ,size=0 + +2025-09-24 07:41:07,985 INFO Connection check task end + +2025-09-24 07:41:09,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:10,986 INFO Connection check task start + +2025-09-24 07:41:10,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:10,986 INFO Out dated connection ,size=0 + +2025-09-24 07:41:10,986 INFO Connection check task end + +2025-09-24 07:41:12,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:13,988 INFO Connection check task start + +2025-09-24 07:41:13,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:13,988 INFO Out dated connection ,size=0 + +2025-09-24 07:41:13,988 INFO Connection check task end + +2025-09-24 07:41:15,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:16,989 INFO Connection check task start + +2025-09-24 07:41:16,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:16,990 INFO Out dated connection ,size=0 + +2025-09-24 07:41:16,990 INFO Connection check task end + +2025-09-24 07:41:18,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:19,992 INFO Connection check task start + +2025-09-24 07:41:19,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:19,992 INFO Out dated connection ,size=0 + +2025-09-24 07:41:19,992 INFO Connection check task end + +2025-09-24 07:41:21,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:22,993 INFO Connection check task start + +2025-09-24 07:41:22,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:22,993 INFO Out dated connection ,size=0 + +2025-09-24 07:41:22,993 INFO Connection check task end + +2025-09-24 07:41:24,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:25,993 INFO Connection check task start + +2025-09-24 07:41:25,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:25,993 INFO Out dated connection ,size=0 + +2025-09-24 07:41:25,993 INFO Connection check task end + +2025-09-24 07:41:27,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:28,995 INFO Connection check task start + +2025-09-24 07:41:28,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:28,995 INFO Out dated connection ,size=0 + +2025-09-24 07:41:28,995 INFO Connection check task end + +2025-09-24 07:41:30,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:31,997 INFO Connection check task start + +2025-09-24 07:41:31,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:31,997 INFO Out dated connection ,size=0 + +2025-09-24 07:41:31,997 INFO Connection check task end + +2025-09-24 07:41:33,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:34,997 INFO Connection check task start + +2025-09-24 07:41:34,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:34,998 INFO Out dated connection ,size=0 + +2025-09-24 07:41:34,998 INFO Connection check task end + +2025-09-24 07:41:36,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:37,999 INFO Connection check task start + +2025-09-24 07:41:37,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:37,999 INFO Out dated connection ,size=0 + +2025-09-24 07:41:37,999 INFO Connection check task end + +2025-09-24 07:41:39,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:41,000 INFO Connection check task start + +2025-09-24 07:41:41,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:41,000 INFO Out dated connection ,size=0 + +2025-09-24 07:41:41,000 INFO Connection check task end + +2025-09-24 07:41:42,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:44,000 INFO Connection check task start + +2025-09-24 07:41:44,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:44,000 INFO Out dated connection ,size=0 + +2025-09-24 07:41:44,001 INFO Connection check task end + +2025-09-24 07:41:45,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:47,003 INFO Connection check task start + +2025-09-24 07:41:47,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:47,003 INFO Out dated connection ,size=0 + +2025-09-24 07:41:47,003 INFO Connection check task end + +2025-09-24 07:41:48,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:50,003 INFO Connection check task start + +2025-09-24 07:41:50,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:50,004 INFO Out dated connection ,size=0 + +2025-09-24 07:41:50,004 INFO Connection check task end + +2025-09-24 07:41:51,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:53,004 INFO Connection check task start + +2025-09-24 07:41:53,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:53,004 INFO Out dated connection ,size=0 + +2025-09-24 07:41:53,004 INFO Connection check task end + +2025-09-24 07:41:54,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:56,005 INFO Connection check task start + +2025-09-24 07:41:56,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:56,005 INFO Out dated connection ,size=0 + +2025-09-24 07:41:56,005 INFO Connection check task end + +2025-09-24 07:41:57,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:41:59,005 INFO Connection check task start + +2025-09-24 07:41:59,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:41:59,005 INFO Out dated connection ,size=0 + +2025-09-24 07:41:59,005 INFO Connection check task end + +2025-09-24 07:42:00,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:02,006 INFO Connection check task start + +2025-09-24 07:42:02,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:02,006 INFO Out dated connection ,size=0 + +2025-09-24 07:42:02,007 INFO Connection check task end + +2025-09-24 07:42:03,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:05,008 INFO Connection check task start + +2025-09-24 07:42:05,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:05,009 INFO Out dated connection ,size=0 + +2025-09-24 07:42:05,009 INFO Connection check task end + +2025-09-24 07:42:06,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:08,010 INFO Connection check task start + +2025-09-24 07:42:08,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:08,011 INFO Out dated connection ,size=0 + +2025-09-24 07:42:08,011 INFO Connection check task end + +2025-09-24 07:42:09,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:11,013 INFO Connection check task start + +2025-09-24 07:42:11,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:11,013 INFO Out dated connection ,size=0 + +2025-09-24 07:42:11,013 INFO Connection check task end + +2025-09-24 07:42:12,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:14,015 INFO Connection check task start + +2025-09-24 07:42:14,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:14,015 INFO Out dated connection ,size=0 + +2025-09-24 07:42:14,015 INFO Connection check task end + +2025-09-24 07:42:15,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:17,018 INFO Connection check task start + +2025-09-24 07:42:17,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:17,018 INFO Out dated connection ,size=0 + +2025-09-24 07:42:17,018 INFO Connection check task end + +2025-09-24 07:42:18,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:20,018 INFO Connection check task start + +2025-09-24 07:42:20,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:20,018 INFO Out dated connection ,size=0 + +2025-09-24 07:42:20,018 INFO Connection check task end + +2025-09-24 07:42:21,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:23,018 INFO Connection check task start + +2025-09-24 07:42:23,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:23,019 INFO Out dated connection ,size=0 + +2025-09-24 07:42:23,019 INFO Connection check task end + +2025-09-24 07:42:24,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:26,021 INFO Connection check task start + +2025-09-24 07:42:26,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:26,021 INFO Out dated connection ,size=0 + +2025-09-24 07:42:26,021 INFO Connection check task end + +2025-09-24 07:42:27,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:29,022 INFO Connection check task start + +2025-09-24 07:42:29,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:29,022 INFO Out dated connection ,size=0 + +2025-09-24 07:42:29,022 INFO Connection check task end + +2025-09-24 07:42:30,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:32,023 INFO Connection check task start + +2025-09-24 07:42:32,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:32,023 INFO Out dated connection ,size=0 + +2025-09-24 07:42:32,023 INFO Connection check task end + +2025-09-24 07:42:33,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:35,024 INFO Connection check task start + +2025-09-24 07:42:35,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:35,024 INFO Out dated connection ,size=0 + +2025-09-24 07:42:35,024 INFO Connection check task end + +2025-09-24 07:42:36,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:38,025 INFO Connection check task start + +2025-09-24 07:42:38,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:38,025 INFO Out dated connection ,size=0 + +2025-09-24 07:42:38,025 INFO Connection check task end + +2025-09-24 07:42:39,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:41,026 INFO Connection check task start + +2025-09-24 07:42:41,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:41,026 INFO Out dated connection ,size=0 + +2025-09-24 07:42:41,026 INFO Connection check task end + +2025-09-24 07:42:42,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:44,028 INFO Connection check task start + +2025-09-24 07:42:44,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:44,028 INFO Out dated connection ,size=0 + +2025-09-24 07:42:44,028 INFO Connection check task end + +2025-09-24 07:42:45,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:47,028 INFO Connection check task start + +2025-09-24 07:42:47,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:47,029 INFO Out dated connection ,size=0 + +2025-09-24 07:42:47,029 INFO Connection check task end + +2025-09-24 07:42:48,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:50,030 INFO Connection check task start + +2025-09-24 07:42:50,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:50,030 INFO Out dated connection ,size=0 + +2025-09-24 07:42:50,030 INFO Connection check task end + +2025-09-24 07:42:51,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:53,031 INFO Connection check task start + +2025-09-24 07:42:53,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:53,032 INFO Out dated connection ,size=0 + +2025-09-24 07:42:53,032 INFO Connection check task end + +2025-09-24 07:42:54,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:56,032 INFO Connection check task start + +2025-09-24 07:42:56,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:56,032 INFO Out dated connection ,size=0 + +2025-09-24 07:42:56,032 INFO Connection check task end + +2025-09-24 07:42:57,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:42:59,032 INFO Connection check task start + +2025-09-24 07:42:59,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:42:59,032 INFO Out dated connection ,size=0 + +2025-09-24 07:42:59,033 INFO Connection check task end + +2025-09-24 07:43:01,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:02,033 INFO Connection check task start + +2025-09-24 07:43:02,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:02,033 INFO Out dated connection ,size=0 + +2025-09-24 07:43:02,033 INFO Connection check task end + +2025-09-24 07:43:04,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:05,035 INFO Connection check task start + +2025-09-24 07:43:05,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:05,036 INFO Out dated connection ,size=0 + +2025-09-24 07:43:05,036 INFO Connection check task end + +2025-09-24 07:43:07,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:08,036 INFO Connection check task start + +2025-09-24 07:43:08,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:08,036 INFO Out dated connection ,size=0 + +2025-09-24 07:43:08,036 INFO Connection check task end + +2025-09-24 07:43:10,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:11,037 INFO Connection check task start + +2025-09-24 07:43:11,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:11,037 INFO Out dated connection ,size=0 + +2025-09-24 07:43:11,038 INFO Connection check task end + +2025-09-24 07:43:13,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:14,038 INFO Connection check task start + +2025-09-24 07:43:14,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:14,038 INFO Out dated connection ,size=0 + +2025-09-24 07:43:14,038 INFO Connection check task end + +2025-09-24 07:43:16,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:17,039 INFO Connection check task start + +2025-09-24 07:43:17,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:17,039 INFO Out dated connection ,size=0 + +2025-09-24 07:43:17,039 INFO Connection check task end + +2025-09-24 07:43:19,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:20,039 INFO Connection check task start + +2025-09-24 07:43:20,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:20,040 INFO Out dated connection ,size=0 + +2025-09-24 07:43:20,040 INFO Connection check task end + +2025-09-24 07:43:22,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:23,040 INFO Connection check task start + +2025-09-24 07:43:23,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:23,042 INFO Out dated connection ,size=0 + +2025-09-24 07:43:23,042 INFO Connection check task end + +2025-09-24 07:43:25,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:26,042 INFO Connection check task start + +2025-09-24 07:43:26,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:26,042 INFO Out dated connection ,size=0 + +2025-09-24 07:43:26,042 INFO Connection check task end + +2025-09-24 07:43:28,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:29,043 INFO Connection check task start + +2025-09-24 07:43:29,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:29,043 INFO Out dated connection ,size=0 + +2025-09-24 07:43:29,043 INFO Connection check task end + +2025-09-24 07:43:31,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:32,043 INFO Connection check task start + +2025-09-24 07:43:32,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:32,043 INFO Out dated connection ,size=0 + +2025-09-24 07:43:32,043 INFO Connection check task end + +2025-09-24 07:43:34,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:35,044 INFO Connection check task start + +2025-09-24 07:43:35,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:35,044 INFO Out dated connection ,size=0 + +2025-09-24 07:43:35,044 INFO Connection check task end + +2025-09-24 07:43:37,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:38,044 INFO Connection check task start + +2025-09-24 07:43:38,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:38,044 INFO Out dated connection ,size=0 + +2025-09-24 07:43:38,044 INFO Connection check task end + +2025-09-24 07:43:40,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:41,046 INFO Connection check task start + +2025-09-24 07:43:41,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:41,046 INFO Out dated connection ,size=0 + +2025-09-24 07:43:41,046 INFO Connection check task end + +2025-09-24 07:43:43,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:44,049 INFO Connection check task start + +2025-09-24 07:43:44,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:44,049 INFO Out dated connection ,size=0 + +2025-09-24 07:43:44,049 INFO Connection check task end + +2025-09-24 07:43:46,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:47,051 INFO Connection check task start + +2025-09-24 07:43:47,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:47,051 INFO Out dated connection ,size=0 + +2025-09-24 07:43:47,051 INFO Connection check task end + +2025-09-24 07:43:49,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:50,053 INFO Connection check task start + +2025-09-24 07:43:50,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:50,068 INFO Out dated connection ,size=0 + +2025-09-24 07:43:50,068 INFO Connection check task end + +2025-09-24 07:43:52,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:53,069 INFO Connection check task start + +2025-09-24 07:43:53,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:53,069 INFO Out dated connection ,size=0 + +2025-09-24 07:43:53,069 INFO Connection check task end + +2025-09-24 07:43:55,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:56,071 INFO Connection check task start + +2025-09-24 07:43:56,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:56,071 INFO Out dated connection ,size=0 + +2025-09-24 07:43:56,071 INFO Connection check task end + +2025-09-24 07:43:58,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:43:59,073 INFO Connection check task start + +2025-09-24 07:43:59,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:43:59,073 INFO Out dated connection ,size=0 + +2025-09-24 07:43:59,073 INFO Connection check task end + +2025-09-24 07:44:01,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:02,073 INFO Connection check task start + +2025-09-24 07:44:02,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:02,073 INFO Out dated connection ,size=0 + +2025-09-24 07:44:02,073 INFO Connection check task end + +2025-09-24 07:44:04,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:05,074 INFO Connection check task start + +2025-09-24 07:44:05,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:05,074 INFO Out dated connection ,size=0 + +2025-09-24 07:44:05,074 INFO Connection check task end + +2025-09-24 07:44:07,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:08,076 INFO Connection check task start + +2025-09-24 07:44:08,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:08,076 INFO Out dated connection ,size=0 + +2025-09-24 07:44:08,076 INFO Connection check task end + +2025-09-24 07:44:10,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:11,076 INFO Connection check task start + +2025-09-24 07:44:11,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:11,076 INFO Out dated connection ,size=0 + +2025-09-24 07:44:11,076 INFO Connection check task end + +2025-09-24 07:44:13,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:14,078 INFO Connection check task start + +2025-09-24 07:44:14,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:14,078 INFO Out dated connection ,size=0 + +2025-09-24 07:44:14,078 INFO Connection check task end + +2025-09-24 07:44:16,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:17,080 INFO Connection check task start + +2025-09-24 07:44:17,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:17,080 INFO Out dated connection ,size=0 + +2025-09-24 07:44:17,080 INFO Connection check task end + +2025-09-24 07:44:19,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:20,082 INFO Connection check task start + +2025-09-24 07:44:20,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:20,082 INFO Out dated connection ,size=0 + +2025-09-24 07:44:20,082 INFO Connection check task end + +2025-09-24 07:44:22,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:23,083 INFO Connection check task start + +2025-09-24 07:44:23,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:23,083 INFO Out dated connection ,size=0 + +2025-09-24 07:44:23,084 INFO Connection check task end + +2025-09-24 07:44:25,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:26,084 INFO Connection check task start + +2025-09-24 07:44:26,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:26,084 INFO Out dated connection ,size=0 + +2025-09-24 07:44:26,084 INFO Connection check task end + +2025-09-24 07:44:28,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:29,085 INFO Connection check task start + +2025-09-24 07:44:29,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:29,085 INFO Out dated connection ,size=0 + +2025-09-24 07:44:29,085 INFO Connection check task end + +2025-09-24 07:44:31,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:32,086 INFO Connection check task start + +2025-09-24 07:44:32,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:32,086 INFO Out dated connection ,size=0 + +2025-09-24 07:44:32,086 INFO Connection check task end + +2025-09-24 07:44:34,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:35,086 INFO Connection check task start + +2025-09-24 07:44:35,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:35,087 INFO Out dated connection ,size=0 + +2025-09-24 07:44:35,087 INFO Connection check task end + +2025-09-24 07:44:37,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:38,087 INFO Connection check task start + +2025-09-24 07:44:38,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:38,087 INFO Out dated connection ,size=0 + +2025-09-24 07:44:38,087 INFO Connection check task end + +2025-09-24 07:44:40,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:41,088 INFO Connection check task start + +2025-09-24 07:44:41,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:41,088 INFO Out dated connection ,size=0 + +2025-09-24 07:44:41,088 INFO Connection check task end + +2025-09-24 07:44:43,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:44,088 INFO Connection check task start + +2025-09-24 07:44:44,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:44,089 INFO Out dated connection ,size=0 + +2025-09-24 07:44:44,089 INFO Connection check task end + +2025-09-24 07:44:46,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:47,089 INFO Connection check task start + +2025-09-24 07:44:47,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:47,089 INFO Out dated connection ,size=0 + +2025-09-24 07:44:47,089 INFO Connection check task end + +2025-09-24 07:44:49,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:50,091 INFO Connection check task start + +2025-09-24 07:44:50,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:50,091 INFO Out dated connection ,size=0 + +2025-09-24 07:44:50,091 INFO Connection check task end + +2025-09-24 07:44:52,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:53,092 INFO Connection check task start + +2025-09-24 07:44:53,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:53,093 INFO Out dated connection ,size=0 + +2025-09-24 07:44:53,093 INFO Connection check task end + +2025-09-24 07:44:55,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:56,094 INFO Connection check task start + +2025-09-24 07:44:56,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:56,094 INFO Out dated connection ,size=0 + +2025-09-24 07:44:56,094 INFO Connection check task end + +2025-09-24 07:44:58,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:44:59,094 INFO Connection check task start + +2025-09-24 07:44:59,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:44:59,094 INFO Out dated connection ,size=0 + +2025-09-24 07:44:59,094 INFO Connection check task end + +2025-09-24 07:45:01,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:02,096 INFO Connection check task start + +2025-09-24 07:45:02,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:02,097 INFO Out dated connection ,size=0 + +2025-09-24 07:45:02,097 INFO Connection check task end + +2025-09-24 07:45:04,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:05,097 INFO Connection check task start + +2025-09-24 07:45:05,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:05,098 INFO Out dated connection ,size=0 + +2025-09-24 07:45:05,098 INFO Connection check task end + +2025-09-24 07:45:07,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:08,100 INFO Connection check task start + +2025-09-24 07:45:08,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:08,100 INFO Out dated connection ,size=0 + +2025-09-24 07:45:08,100 INFO Connection check task end + +2025-09-24 07:45:10,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:11,101 INFO Connection check task start + +2025-09-24 07:45:11,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:11,102 INFO Out dated connection ,size=0 + +2025-09-24 07:45:11,102 INFO Connection check task end + +2025-09-24 07:45:13,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:14,103 INFO Connection check task start + +2025-09-24 07:45:14,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:14,104 INFO Out dated connection ,size=0 + +2025-09-24 07:45:14,104 INFO Connection check task end + +2025-09-24 07:45:16,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:17,105 INFO Connection check task start + +2025-09-24 07:45:17,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:17,105 INFO Out dated connection ,size=0 + +2025-09-24 07:45:17,105 INFO Connection check task end + +2025-09-24 07:45:19,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:20,106 INFO Connection check task start + +2025-09-24 07:45:20,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:20,106 INFO Out dated connection ,size=0 + +2025-09-24 07:45:20,106 INFO Connection check task end + +2025-09-24 07:45:22,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:23,108 INFO Connection check task start + +2025-09-24 07:45:23,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:23,108 INFO Out dated connection ,size=0 + +2025-09-24 07:45:23,108 INFO Connection check task end + +2025-09-24 07:45:25,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:26,108 INFO Connection check task start + +2025-09-24 07:45:26,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:26,108 INFO Out dated connection ,size=0 + +2025-09-24 07:45:26,108 INFO Connection check task end + +2025-09-24 07:45:28,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:29,111 INFO Connection check task start + +2025-09-24 07:45:29,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:29,111 INFO Out dated connection ,size=0 + +2025-09-24 07:45:29,111 INFO Connection check task end + +2025-09-24 07:45:31,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:32,111 INFO Connection check task start + +2025-09-24 07:45:32,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:32,111 INFO Out dated connection ,size=0 + +2025-09-24 07:45:32,111 INFO Connection check task end + +2025-09-24 07:45:34,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:35,112 INFO Connection check task start + +2025-09-24 07:45:35,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:35,112 INFO Out dated connection ,size=0 + +2025-09-24 07:45:35,112 INFO Connection check task end + +2025-09-24 07:45:37,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:38,113 INFO Connection check task start + +2025-09-24 07:45:38,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:38,113 INFO Out dated connection ,size=0 + +2025-09-24 07:45:38,114 INFO Connection check task end + +2025-09-24 07:45:40,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:41,114 INFO Connection check task start + +2025-09-24 07:45:41,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:41,114 INFO Out dated connection ,size=0 + +2025-09-24 07:45:41,114 INFO Connection check task end + +2025-09-24 07:45:43,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:44,115 INFO Connection check task start + +2025-09-24 07:45:44,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:44,115 INFO Out dated connection ,size=0 + +2025-09-24 07:45:44,115 INFO Connection check task end + +2025-09-24 07:45:46,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:47,117 INFO Connection check task start + +2025-09-24 07:45:47,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:47,118 INFO Out dated connection ,size=0 + +2025-09-24 07:45:47,118 INFO Connection check task end + +2025-09-24 07:45:49,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:50,120 INFO Connection check task start + +2025-09-24 07:45:50,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:50,120 INFO Out dated connection ,size=0 + +2025-09-24 07:45:50,120 INFO Connection check task end + +2025-09-24 07:45:52,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:53,122 INFO Connection check task start + +2025-09-24 07:45:53,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:53,122 INFO Out dated connection ,size=0 + +2025-09-24 07:45:53,122 INFO Connection check task end + +2025-09-24 07:45:55,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:56,123 INFO Connection check task start + +2025-09-24 07:45:56,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:56,123 INFO Out dated connection ,size=0 + +2025-09-24 07:45:56,123 INFO Connection check task end + +2025-09-24 07:45:58,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:45:59,125 INFO Connection check task start + +2025-09-24 07:45:59,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:45:59,125 INFO Out dated connection ,size=0 + +2025-09-24 07:45:59,125 INFO Connection check task end + +2025-09-24 07:46:01,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:02,126 INFO Connection check task start + +2025-09-24 07:46:02,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:02,127 INFO Out dated connection ,size=0 + +2025-09-24 07:46:02,127 INFO Connection check task end + +2025-09-24 07:46:04,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:05,129 INFO Connection check task start + +2025-09-24 07:46:05,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:05,129 INFO Out dated connection ,size=0 + +2025-09-24 07:46:05,129 INFO Connection check task end + +2025-09-24 07:46:07,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:08,131 INFO Connection check task start + +2025-09-24 07:46:08,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:08,131 INFO Out dated connection ,size=0 + +2025-09-24 07:46:08,131 INFO Connection check task end + +2025-09-24 07:46:10,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:11,132 INFO Connection check task start + +2025-09-24 07:46:11,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:11,132 INFO Out dated connection ,size=0 + +2025-09-24 07:46:11,132 INFO Connection check task end + +2025-09-24 07:46:13,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:14,132 INFO Connection check task start + +2025-09-24 07:46:14,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:14,132 INFO Out dated connection ,size=0 + +2025-09-24 07:46:14,133 INFO Connection check task end + +2025-09-24 07:46:16,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:17,133 INFO Connection check task start + +2025-09-24 07:46:17,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:17,133 INFO Out dated connection ,size=0 + +2025-09-24 07:46:17,133 INFO Connection check task end + +2025-09-24 07:46:19,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:20,134 INFO Connection check task start + +2025-09-24 07:46:20,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:20,134 INFO Out dated connection ,size=0 + +2025-09-24 07:46:20,134 INFO Connection check task end + +2025-09-24 07:46:22,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:23,134 INFO Connection check task start + +2025-09-24 07:46:23,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:23,134 INFO Out dated connection ,size=0 + +2025-09-24 07:46:23,134 INFO Connection check task end + +2025-09-24 07:46:25,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:26,135 INFO Connection check task start + +2025-09-24 07:46:26,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:26,135 INFO Out dated connection ,size=0 + +2025-09-24 07:46:26,135 INFO Connection check task end + +2025-09-24 07:46:28,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:29,135 INFO Connection check task start + +2025-09-24 07:46:29,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:29,135 INFO Out dated connection ,size=0 + +2025-09-24 07:46:29,136 INFO Connection check task end + +2025-09-24 07:46:31,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:32,136 INFO Connection check task start + +2025-09-24 07:46:32,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:32,136 INFO Out dated connection ,size=0 + +2025-09-24 07:46:32,136 INFO Connection check task end + +2025-09-24 07:46:34,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:35,137 INFO Connection check task start + +2025-09-24 07:46:35,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:35,137 INFO Out dated connection ,size=0 + +2025-09-24 07:46:35,137 INFO Connection check task end + +2025-09-24 07:46:37,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:38,137 INFO Connection check task start + +2025-09-24 07:46:38,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:38,138 INFO Out dated connection ,size=0 + +2025-09-24 07:46:38,138 INFO Connection check task end + +2025-09-24 07:46:40,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:41,138 INFO Connection check task start + +2025-09-24 07:46:41,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:41,138 INFO Out dated connection ,size=0 + +2025-09-24 07:46:41,138 INFO Connection check task end + +2025-09-24 07:46:43,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:44,139 INFO Connection check task start + +2025-09-24 07:46:44,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:44,139 INFO Out dated connection ,size=0 + +2025-09-24 07:46:44,139 INFO Connection check task end + +2025-09-24 07:46:46,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:47,140 INFO Connection check task start + +2025-09-24 07:46:47,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:47,140 INFO Out dated connection ,size=0 + +2025-09-24 07:46:47,140 INFO Connection check task end + +2025-09-24 07:46:49,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:50,140 INFO Connection check task start + +2025-09-24 07:46:50,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:50,140 INFO Out dated connection ,size=0 + +2025-09-24 07:46:50,141 INFO Connection check task end + +2025-09-24 07:46:52,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:53,142 INFO Connection check task start + +2025-09-24 07:46:53,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:53,143 INFO Out dated connection ,size=0 + +2025-09-24 07:46:53,143 INFO Connection check task end + +2025-09-24 07:46:55,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:56,143 INFO Connection check task start + +2025-09-24 07:46:56,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:56,143 INFO Out dated connection ,size=0 + +2025-09-24 07:46:56,143 INFO Connection check task end + +2025-09-24 07:46:58,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:46:59,144 INFO Connection check task start + +2025-09-24 07:46:59,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:46:59,144 INFO Out dated connection ,size=0 + +2025-09-24 07:46:59,144 INFO Connection check task end + +2025-09-24 07:47:01,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:02,144 INFO Connection check task start + +2025-09-24 07:47:02,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:02,144 INFO Out dated connection ,size=0 + +2025-09-24 07:47:02,144 INFO Connection check task end + +2025-09-24 07:47:04,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:05,145 INFO Connection check task start + +2025-09-24 07:47:05,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:05,145 INFO Out dated connection ,size=0 + +2025-09-24 07:47:05,145 INFO Connection check task end + +2025-09-24 07:47:07,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:08,145 INFO Connection check task start + +2025-09-24 07:47:08,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:08,145 INFO Out dated connection ,size=0 + +2025-09-24 07:47:08,145 INFO Connection check task end + +2025-09-24 07:47:10,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:11,146 INFO Connection check task start + +2025-09-24 07:47:11,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:11,146 INFO Out dated connection ,size=0 + +2025-09-24 07:47:11,146 INFO Connection check task end + +2025-09-24 07:47:13,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:14,146 INFO Connection check task start + +2025-09-24 07:47:14,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:14,146 INFO Out dated connection ,size=0 + +2025-09-24 07:47:14,146 INFO Connection check task end + +2025-09-24 07:47:16,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:17,147 INFO Connection check task start + +2025-09-24 07:47:17,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:17,147 INFO Out dated connection ,size=0 + +2025-09-24 07:47:17,147 INFO Connection check task end + +2025-09-24 07:47:19,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:20,148 INFO Connection check task start + +2025-09-24 07:47:20,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:20,148 INFO Out dated connection ,size=0 + +2025-09-24 07:47:20,148 INFO Connection check task end + +2025-09-24 07:47:22,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:23,148 INFO Connection check task start + +2025-09-24 07:47:23,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:23,149 INFO Out dated connection ,size=0 + +2025-09-24 07:47:23,149 INFO Connection check task end + +2025-09-24 07:47:25,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:26,150 INFO Connection check task start + +2025-09-24 07:47:26,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:26,150 INFO Out dated connection ,size=0 + +2025-09-24 07:47:26,150 INFO Connection check task end + +2025-09-24 07:47:28,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:29,152 INFO Connection check task start + +2025-09-24 07:47:29,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:29,152 INFO Out dated connection ,size=0 + +2025-09-24 07:47:29,153 INFO Connection check task end + +2025-09-24 07:47:31,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:32,155 INFO Connection check task start + +2025-09-24 07:47:32,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:32,155 INFO Out dated connection ,size=0 + +2025-09-24 07:47:32,155 INFO Connection check task end + +2025-09-24 07:47:34,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:35,155 INFO Connection check task start + +2025-09-24 07:47:35,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:35,155 INFO Out dated connection ,size=0 + +2025-09-24 07:47:35,155 INFO Connection check task end + +2025-09-24 07:47:37,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:38,157 INFO Connection check task start + +2025-09-24 07:47:38,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:38,158 INFO Out dated connection ,size=0 + +2025-09-24 07:47:38,158 INFO Connection check task end + +2025-09-24 07:47:40,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:41,159 INFO Connection check task start + +2025-09-24 07:47:41,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:41,159 INFO Out dated connection ,size=0 + +2025-09-24 07:47:41,159 INFO Connection check task end + +2025-09-24 07:47:43,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:44,159 INFO Connection check task start + +2025-09-24 07:47:44,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:44,160 INFO Out dated connection ,size=0 + +2025-09-24 07:47:44,160 INFO Connection check task end + +2025-09-24 07:47:46,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:47,161 INFO Connection check task start + +2025-09-24 07:47:47,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:47,162 INFO Out dated connection ,size=0 + +2025-09-24 07:47:47,162 INFO Connection check task end + +2025-09-24 07:47:49,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:50,164 INFO Connection check task start + +2025-09-24 07:47:50,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:50,164 INFO Out dated connection ,size=0 + +2025-09-24 07:47:50,164 INFO Connection check task end + +2025-09-24 07:47:52,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:53,166 INFO Connection check task start + +2025-09-24 07:47:53,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:53,166 INFO Out dated connection ,size=0 + +2025-09-24 07:47:53,166 INFO Connection check task end + +2025-09-24 07:47:55,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:56,166 INFO Connection check task start + +2025-09-24 07:47:56,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:56,167 INFO Out dated connection ,size=0 + +2025-09-24 07:47:56,167 INFO Connection check task end + +2025-09-24 07:47:58,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:47:59,168 INFO Connection check task start + +2025-09-24 07:47:59,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:47:59,168 INFO Out dated connection ,size=0 + +2025-09-24 07:47:59,168 INFO Connection check task end + +2025-09-24 07:48:01,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:02,170 INFO Connection check task start + +2025-09-24 07:48:02,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:02,170 INFO Out dated connection ,size=0 + +2025-09-24 07:48:02,170 INFO Connection check task end + +2025-09-24 07:48:04,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:05,171 INFO Connection check task start + +2025-09-24 07:48:05,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:05,171 INFO Out dated connection ,size=0 + +2025-09-24 07:48:05,171 INFO Connection check task end + +2025-09-24 07:48:07,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:08,173 INFO Connection check task start + +2025-09-24 07:48:08,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:08,173 INFO Out dated connection ,size=0 + +2025-09-24 07:48:08,173 INFO Connection check task end + +2025-09-24 07:48:10,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:11,173 INFO Connection check task start + +2025-09-24 07:48:11,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:11,173 INFO Out dated connection ,size=0 + +2025-09-24 07:48:11,173 INFO Connection check task end + +2025-09-24 07:48:13,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:14,173 INFO Connection check task start + +2025-09-24 07:48:14,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:14,174 INFO Out dated connection ,size=0 + +2025-09-24 07:48:14,174 INFO Connection check task end + +2025-09-24 07:48:16,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:17,176 INFO Connection check task start + +2025-09-24 07:48:17,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:17,176 INFO Out dated connection ,size=0 + +2025-09-24 07:48:17,176 INFO Connection check task end + +2025-09-24 07:48:19,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:20,176 INFO Connection check task start + +2025-09-24 07:48:20,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:20,176 INFO Out dated connection ,size=0 + +2025-09-24 07:48:20,176 INFO Connection check task end + +2025-09-24 07:48:22,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:23,177 INFO Connection check task start + +2025-09-24 07:48:23,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:23,177 INFO Out dated connection ,size=0 + +2025-09-24 07:48:23,177 INFO Connection check task end + +2025-09-24 07:48:25,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:26,178 INFO Connection check task start + +2025-09-24 07:48:26,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:26,178 INFO Out dated connection ,size=0 + +2025-09-24 07:48:26,178 INFO Connection check task end + +2025-09-24 07:48:28,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:29,180 INFO Connection check task start + +2025-09-24 07:48:29,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:29,180 INFO Out dated connection ,size=0 + +2025-09-24 07:48:29,180 INFO Connection check task end + +2025-09-24 07:48:31,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:32,181 INFO Connection check task start + +2025-09-24 07:48:32,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:32,181 INFO Out dated connection ,size=0 + +2025-09-24 07:48:32,181 INFO Connection check task end + +2025-09-24 07:48:34,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:35,182 INFO Connection check task start + +2025-09-24 07:48:35,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:35,182 INFO Out dated connection ,size=0 + +2025-09-24 07:48:35,182 INFO Connection check task end + +2025-09-24 07:48:37,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:38,184 INFO Connection check task start + +2025-09-24 07:48:38,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:38,184 INFO Out dated connection ,size=0 + +2025-09-24 07:48:38,184 INFO Connection check task end + +2025-09-24 07:48:40,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:41,185 INFO Connection check task start + +2025-09-24 07:48:41,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:41,185 INFO Out dated connection ,size=0 + +2025-09-24 07:48:41,185 INFO Connection check task end + +2025-09-24 07:48:43,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:44,186 INFO Connection check task start + +2025-09-24 07:48:44,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:44,186 INFO Out dated connection ,size=0 + +2025-09-24 07:48:44,186 INFO Connection check task end + +2025-09-24 07:48:46,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:47,186 INFO Connection check task start + +2025-09-24 07:48:47,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:47,187 INFO Out dated connection ,size=0 + +2025-09-24 07:48:47,187 INFO Connection check task end + +2025-09-24 07:48:49,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:50,189 INFO Connection check task start + +2025-09-24 07:48:50,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:50,189 INFO Out dated connection ,size=0 + +2025-09-24 07:48:50,189 INFO Connection check task end + +2025-09-24 07:48:52,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:53,189 INFO Connection check task start + +2025-09-24 07:48:53,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:53,189 INFO Out dated connection ,size=0 + +2025-09-24 07:48:53,189 INFO Connection check task end + +2025-09-24 07:48:55,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:56,190 INFO Connection check task start + +2025-09-24 07:48:56,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:56,190 INFO Out dated connection ,size=0 + +2025-09-24 07:48:56,190 INFO Connection check task end + +2025-09-24 07:48:58,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:48:59,192 INFO Connection check task start + +2025-09-24 07:48:59,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:48:59,192 INFO Out dated connection ,size=0 + +2025-09-24 07:48:59,192 INFO Connection check task end + +2025-09-24 07:49:01,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:02,192 INFO Connection check task start + +2025-09-24 07:49:02,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:02,193 INFO Out dated connection ,size=0 + +2025-09-24 07:49:02,193 INFO Connection check task end + +2025-09-24 07:49:04,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:05,193 INFO Connection check task start + +2025-09-24 07:49:05,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:05,193 INFO Out dated connection ,size=0 + +2025-09-24 07:49:05,193 INFO Connection check task end + +2025-09-24 07:49:07,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:08,195 INFO Connection check task start + +2025-09-24 07:49:08,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:08,196 INFO Out dated connection ,size=0 + +2025-09-24 07:49:08,196 INFO Connection check task end + +2025-09-24 07:49:10,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:11,196 INFO Connection check task start + +2025-09-24 07:49:11,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:11,196 INFO Out dated connection ,size=0 + +2025-09-24 07:49:11,196 INFO Connection check task end + +2025-09-24 07:49:13,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:14,197 INFO Connection check task start + +2025-09-24 07:49:14,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:14,197 INFO Out dated connection ,size=0 + +2025-09-24 07:49:14,197 INFO Connection check task end + +2025-09-24 07:49:16,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:17,199 INFO Connection check task start + +2025-09-24 07:49:17,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:17,199 INFO Out dated connection ,size=0 + +2025-09-24 07:49:17,199 INFO Connection check task end + +2025-09-24 07:49:19,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:20,200 INFO Connection check task start + +2025-09-24 07:49:20,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:20,219 INFO Out dated connection ,size=0 + +2025-09-24 07:49:20,219 INFO Connection check task end + +2025-09-24 07:49:22,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:23,220 INFO Connection check task start + +2025-09-24 07:49:23,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:23,220 INFO Out dated connection ,size=0 + +2025-09-24 07:49:23,220 INFO Connection check task end + +2025-09-24 07:49:25,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:26,221 INFO Connection check task start + +2025-09-24 07:49:26,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:26,221 INFO Out dated connection ,size=0 + +2025-09-24 07:49:26,222 INFO Connection check task end + +2025-09-24 07:49:28,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:29,224 INFO Connection check task start + +2025-09-24 07:49:29,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:29,224 INFO Out dated connection ,size=0 + +2025-09-24 07:49:29,224 INFO Connection check task end + +2025-09-24 07:49:31,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:32,225 INFO Connection check task start + +2025-09-24 07:49:32,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:32,225 INFO Out dated connection ,size=0 + +2025-09-24 07:49:32,225 INFO Connection check task end + +2025-09-24 07:49:34,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:35,225 INFO Connection check task start + +2025-09-24 07:49:35,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:35,225 INFO Out dated connection ,size=0 + +2025-09-24 07:49:35,225 INFO Connection check task end + +2025-09-24 07:49:37,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:38,227 INFO Connection check task start + +2025-09-24 07:49:38,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:38,227 INFO Out dated connection ,size=0 + +2025-09-24 07:49:38,227 INFO Connection check task end + +2025-09-24 07:49:40,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:41,228 INFO Connection check task start + +2025-09-24 07:49:41,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:41,228 INFO Out dated connection ,size=0 + +2025-09-24 07:49:41,228 INFO Connection check task end + +2025-09-24 07:49:43,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:44,230 INFO Connection check task start + +2025-09-24 07:49:44,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:44,230 INFO Out dated connection ,size=0 + +2025-09-24 07:49:44,230 INFO Connection check task end + +2025-09-24 07:49:46,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:47,230 INFO Connection check task start + +2025-09-24 07:49:47,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:47,231 INFO Out dated connection ,size=0 + +2025-09-24 07:49:47,231 INFO Connection check task end + +2025-09-24 07:49:49,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:50,233 INFO Connection check task start + +2025-09-24 07:49:50,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:50,233 INFO Out dated connection ,size=0 + +2025-09-24 07:49:50,233 INFO Connection check task end + +2025-09-24 07:49:52,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:53,233 INFO Connection check task start + +2025-09-24 07:49:53,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:53,233 INFO Out dated connection ,size=0 + +2025-09-24 07:49:53,233 INFO Connection check task end + +2025-09-24 07:49:55,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:56,235 INFO Connection check task start + +2025-09-24 07:49:56,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:56,236 INFO Out dated connection ,size=0 + +2025-09-24 07:49:56,236 INFO Connection check task end + +2025-09-24 07:49:58,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:49:59,236 INFO Connection check task start + +2025-09-24 07:49:59,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:49:59,236 INFO Out dated connection ,size=0 + +2025-09-24 07:49:59,237 INFO Connection check task end + +2025-09-24 07:50:01,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:02,237 INFO Connection check task start + +2025-09-24 07:50:02,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:02,237 INFO Out dated connection ,size=0 + +2025-09-24 07:50:02,237 INFO Connection check task end + +2025-09-24 07:50:04,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:05,237 INFO Connection check task start + +2025-09-24 07:50:05,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:05,237 INFO Out dated connection ,size=0 + +2025-09-24 07:50:05,237 INFO Connection check task end + +2025-09-24 07:50:07,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:08,239 INFO Connection check task start + +2025-09-24 07:50:08,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:08,239 INFO Out dated connection ,size=0 + +2025-09-24 07:50:08,239 INFO Connection check task end + +2025-09-24 07:50:10,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:11,239 INFO Connection check task start + +2025-09-24 07:50:11,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:11,240 INFO Out dated connection ,size=0 + +2025-09-24 07:50:11,240 INFO Connection check task end + +2025-09-24 07:50:13,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:14,240 INFO Connection check task start + +2025-09-24 07:50:14,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:14,240 INFO Out dated connection ,size=0 + +2025-09-24 07:50:14,240 INFO Connection check task end + +2025-09-24 07:50:16,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:17,242 INFO Connection check task start + +2025-09-24 07:50:17,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:17,242 INFO Out dated connection ,size=0 + +2025-09-24 07:50:17,242 INFO Connection check task end + +2025-09-24 07:50:19,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:20,244 INFO Connection check task start + +2025-09-24 07:50:20,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:20,244 INFO Out dated connection ,size=0 + +2025-09-24 07:50:20,245 INFO Connection check task end + +2025-09-24 07:50:22,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:23,246 INFO Connection check task start + +2025-09-24 07:50:23,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:23,246 INFO Out dated connection ,size=0 + +2025-09-24 07:50:23,246 INFO Connection check task end + +2025-09-24 07:50:25,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:26,247 INFO Connection check task start + +2025-09-24 07:50:26,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:26,247 INFO Out dated connection ,size=0 + +2025-09-24 07:50:26,247 INFO Connection check task end + +2025-09-24 07:50:28,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:29,248 INFO Connection check task start + +2025-09-24 07:50:29,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:29,248 INFO Out dated connection ,size=0 + +2025-09-24 07:50:29,248 INFO Connection check task end + +2025-09-24 07:50:31,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:32,250 INFO Connection check task start + +2025-09-24 07:50:32,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:32,251 INFO Out dated connection ,size=0 + +2025-09-24 07:50:32,251 INFO Connection check task end + +2025-09-24 07:50:34,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:35,252 INFO Connection check task start + +2025-09-24 07:50:35,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:35,252 INFO Out dated connection ,size=0 + +2025-09-24 07:50:35,252 INFO Connection check task end + +2025-09-24 07:50:37,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:38,253 INFO Connection check task start + +2025-09-24 07:50:38,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:38,253 INFO Out dated connection ,size=0 + +2025-09-24 07:50:38,253 INFO Connection check task end + +2025-09-24 07:50:40,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:41,254 INFO Connection check task start + +2025-09-24 07:50:41,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:41,254 INFO Out dated connection ,size=0 + +2025-09-24 07:50:41,254 INFO Connection check task end + +2025-09-24 07:50:43,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:44,254 INFO Connection check task start + +2025-09-24 07:50:44,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:44,254 INFO Out dated connection ,size=0 + +2025-09-24 07:50:44,254 INFO Connection check task end + +2025-09-24 07:50:46,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:47,255 INFO Connection check task start + +2025-09-24 07:50:47,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:47,255 INFO Out dated connection ,size=0 + +2025-09-24 07:50:47,255 INFO Connection check task end + +2025-09-24 07:50:49,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:50,257 INFO Connection check task start + +2025-09-24 07:50:50,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:50,258 INFO Out dated connection ,size=0 + +2025-09-24 07:50:50,258 INFO Connection check task end + +2025-09-24 07:50:52,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:53,260 INFO Connection check task start + +2025-09-24 07:50:53,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:53,260 INFO Out dated connection ,size=0 + +2025-09-24 07:50:53,260 INFO Connection check task end + +2025-09-24 07:50:55,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:56,262 INFO Connection check task start + +2025-09-24 07:50:56,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:56,262 INFO Out dated connection ,size=0 + +2025-09-24 07:50:56,262 INFO Connection check task end + +2025-09-24 07:50:58,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:50:59,262 INFO Connection check task start + +2025-09-24 07:50:59,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:50:59,262 INFO Out dated connection ,size=0 + +2025-09-24 07:50:59,263 INFO Connection check task end + +2025-09-24 07:51:01,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:02,263 INFO Connection check task start + +2025-09-24 07:51:02,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:02,263 INFO Out dated connection ,size=0 + +2025-09-24 07:51:02,263 INFO Connection check task end + +2025-09-24 07:51:04,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:05,265 INFO Connection check task start + +2025-09-24 07:51:05,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:05,265 INFO Out dated connection ,size=0 + +2025-09-24 07:51:05,265 INFO Connection check task end + +2025-09-24 07:51:07,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:08,267 INFO Connection check task start + +2025-09-24 07:51:08,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:08,267 INFO Out dated connection ,size=0 + +2025-09-24 07:51:08,267 INFO Connection check task end + +2025-09-24 07:51:10,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:11,267 INFO Connection check task start + +2025-09-24 07:51:11,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:11,267 INFO Out dated connection ,size=0 + +2025-09-24 07:51:11,267 INFO Connection check task end + +2025-09-24 07:51:13,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:14,268 INFO Connection check task start + +2025-09-24 07:51:14,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:14,268 INFO Out dated connection ,size=0 + +2025-09-24 07:51:14,268 INFO Connection check task end + +2025-09-24 07:51:16,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:17,269 INFO Connection check task start + +2025-09-24 07:51:17,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:17,269 INFO Out dated connection ,size=0 + +2025-09-24 07:51:17,269 INFO Connection check task end + +2025-09-24 07:51:19,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:20,269 INFO Connection check task start + +2025-09-24 07:51:20,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:20,269 INFO Out dated connection ,size=0 + +2025-09-24 07:51:20,269 INFO Connection check task end + +2025-09-24 07:51:22,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:23,271 INFO Connection check task start + +2025-09-24 07:51:23,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:23,271 INFO Out dated connection ,size=0 + +2025-09-24 07:51:23,271 INFO Connection check task end + +2025-09-24 07:51:25,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:26,271 INFO Connection check task start + +2025-09-24 07:51:26,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:26,272 INFO Out dated connection ,size=0 + +2025-09-24 07:51:26,272 INFO Connection check task end + +2025-09-24 07:51:28,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:29,275 INFO Connection check task start + +2025-09-24 07:51:29,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:29,275 INFO Out dated connection ,size=0 + +2025-09-24 07:51:29,275 INFO Connection check task end + +2025-09-24 07:51:31,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:32,277 INFO Connection check task start + +2025-09-24 07:51:32,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:32,277 INFO Out dated connection ,size=0 + +2025-09-24 07:51:32,277 INFO Connection check task end + +2025-09-24 07:51:34,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:35,279 INFO Connection check task start + +2025-09-24 07:51:35,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:35,279 INFO Out dated connection ,size=0 + +2025-09-24 07:51:35,279 INFO Connection check task end + +2025-09-24 07:51:37,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:38,279 INFO Connection check task start + +2025-09-24 07:51:38,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:38,279 INFO Out dated connection ,size=0 + +2025-09-24 07:51:38,279 INFO Connection check task end + +2025-09-24 07:51:40,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:41,281 INFO Connection check task start + +2025-09-24 07:51:41,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:41,281 INFO Out dated connection ,size=0 + +2025-09-24 07:51:41,281 INFO Connection check task end + +2025-09-24 07:51:43,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:44,283 INFO Connection check task start + +2025-09-24 07:51:44,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:44,284 INFO Out dated connection ,size=0 + +2025-09-24 07:51:44,284 INFO Connection check task end + +2025-09-24 07:51:46,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:47,284 INFO Connection check task start + +2025-09-24 07:51:47,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:47,284 INFO Out dated connection ,size=0 + +2025-09-24 07:51:47,284 INFO Connection check task end + +2025-09-24 07:51:49,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:50,286 INFO Connection check task start + +2025-09-24 07:51:50,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:50,286 INFO Out dated connection ,size=0 + +2025-09-24 07:51:50,286 INFO Connection check task end + +2025-09-24 07:51:52,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:53,288 INFO Connection check task start + +2025-09-24 07:51:53,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:53,288 INFO Out dated connection ,size=0 + +2025-09-24 07:51:53,288 INFO Connection check task end + +2025-09-24 07:51:55,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:56,288 INFO Connection check task start + +2025-09-24 07:51:56,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:56,288 INFO Out dated connection ,size=0 + +2025-09-24 07:51:56,288 INFO Connection check task end + +2025-09-24 07:51:58,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:51:59,289 INFO Connection check task start + +2025-09-24 07:51:59,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:51:59,289 INFO Out dated connection ,size=0 + +2025-09-24 07:51:59,289 INFO Connection check task end + +2025-09-24 07:52:01,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:02,291 INFO Connection check task start + +2025-09-24 07:52:02,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:02,291 INFO Out dated connection ,size=0 + +2025-09-24 07:52:02,291 INFO Connection check task end + +2025-09-24 07:52:04,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:05,293 INFO Connection check task start + +2025-09-24 07:52:05,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:05,293 INFO Out dated connection ,size=0 + +2025-09-24 07:52:05,293 INFO Connection check task end + +2025-09-24 07:52:07,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:08,294 INFO Connection check task start + +2025-09-24 07:52:08,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:08,294 INFO Out dated connection ,size=0 + +2025-09-24 07:52:08,294 INFO Connection check task end + +2025-09-24 07:52:10,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:11,295 INFO Connection check task start + +2025-09-24 07:52:11,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:11,295 INFO Out dated connection ,size=0 + +2025-09-24 07:52:11,295 INFO Connection check task end + +2025-09-24 07:52:13,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:14,297 INFO Connection check task start + +2025-09-24 07:52:14,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:14,297 INFO Out dated connection ,size=0 + +2025-09-24 07:52:14,297 INFO Connection check task end + +2025-09-24 07:52:16,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:17,298 INFO Connection check task start + +2025-09-24 07:52:17,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:17,298 INFO Out dated connection ,size=0 + +2025-09-24 07:52:17,298 INFO Connection check task end + +2025-09-24 07:52:19,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:20,300 INFO Connection check task start + +2025-09-24 07:52:20,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:20,300 INFO Out dated connection ,size=0 + +2025-09-24 07:52:20,300 INFO Connection check task end + +2025-09-24 07:52:22,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:23,301 INFO Connection check task start + +2025-09-24 07:52:23,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:23,302 INFO Out dated connection ,size=0 + +2025-09-24 07:52:23,302 INFO Connection check task end + +2025-09-24 07:52:25,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:26,302 INFO Connection check task start + +2025-09-24 07:52:26,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:26,303 INFO Out dated connection ,size=0 + +2025-09-24 07:52:26,303 INFO Connection check task end + +2025-09-24 07:52:28,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:29,303 INFO Connection check task start + +2025-09-24 07:52:29,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:29,303 INFO Out dated connection ,size=0 + +2025-09-24 07:52:29,303 INFO Connection check task end + +2025-09-24 07:52:31,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:32,305 INFO Connection check task start + +2025-09-24 07:52:32,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:32,305 INFO Out dated connection ,size=0 + +2025-09-24 07:52:32,305 INFO Connection check task end + +2025-09-24 07:52:34,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:35,305 INFO Connection check task start + +2025-09-24 07:52:35,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:35,305 INFO Out dated connection ,size=0 + +2025-09-24 07:52:35,305 INFO Connection check task end + +2025-09-24 07:52:37,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:38,305 INFO Connection check task start + +2025-09-24 07:52:38,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:38,306 INFO Out dated connection ,size=0 + +2025-09-24 07:52:38,306 INFO Connection check task end + +2025-09-24 07:52:40,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:41,306 INFO Connection check task start + +2025-09-24 07:52:41,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:41,306 INFO Out dated connection ,size=0 + +2025-09-24 07:52:41,306 INFO Connection check task end + +2025-09-24 07:52:43,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:44,307 INFO Connection check task start + +2025-09-24 07:52:44,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:44,307 INFO Out dated connection ,size=0 + +2025-09-24 07:52:44,307 INFO Connection check task end + +2025-09-24 07:52:46,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:47,308 INFO Connection check task start + +2025-09-24 07:52:47,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:47,308 INFO Out dated connection ,size=0 + +2025-09-24 07:52:47,308 INFO Connection check task end + +2025-09-24 07:52:49,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:50,310 INFO Connection check task start + +2025-09-24 07:52:50,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:50,310 INFO Out dated connection ,size=0 + +2025-09-24 07:52:50,310 INFO Connection check task end + +2025-09-24 07:52:52,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:53,312 INFO Connection check task start + +2025-09-24 07:52:53,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:53,312 INFO Out dated connection ,size=0 + +2025-09-24 07:52:53,312 INFO Connection check task end + +2025-09-24 07:52:55,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:56,312 INFO Connection check task start + +2025-09-24 07:52:56,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:56,312 INFO Out dated connection ,size=0 + +2025-09-24 07:52:56,312 INFO Connection check task end + +2025-09-24 07:52:58,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:52:59,314 INFO Connection check task start + +2025-09-24 07:52:59,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:52:59,315 INFO Out dated connection ,size=0 + +2025-09-24 07:52:59,315 INFO Connection check task end + +2025-09-24 07:53:01,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:02,316 INFO Connection check task start + +2025-09-24 07:53:02,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:02,316 INFO Out dated connection ,size=0 + +2025-09-24 07:53:02,317 INFO Connection check task end + +2025-09-24 07:53:04,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:05,318 INFO Connection check task start + +2025-09-24 07:53:05,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:05,318 INFO Out dated connection ,size=0 + +2025-09-24 07:53:05,318 INFO Connection check task end + +2025-09-24 07:53:07,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:08,319 INFO Connection check task start + +2025-09-24 07:53:08,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:08,319 INFO Out dated connection ,size=0 + +2025-09-24 07:53:08,319 INFO Connection check task end + +2025-09-24 07:53:10,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:11,320 INFO Connection check task start + +2025-09-24 07:53:11,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:11,320 INFO Out dated connection ,size=0 + +2025-09-24 07:53:11,320 INFO Connection check task end + +2025-09-24 07:53:13,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:14,321 INFO Connection check task start + +2025-09-24 07:53:14,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:14,321 INFO Out dated connection ,size=0 + +2025-09-24 07:53:14,321 INFO Connection check task end + +2025-09-24 07:53:16,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:17,322 INFO Connection check task start + +2025-09-24 07:53:17,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:17,322 INFO Out dated connection ,size=0 + +2025-09-24 07:53:17,322 INFO Connection check task end + +2025-09-24 07:53:19,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:20,322 INFO Connection check task start + +2025-09-24 07:53:20,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:20,322 INFO Out dated connection ,size=0 + +2025-09-24 07:53:20,322 INFO Connection check task end + +2025-09-24 07:53:22,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:23,323 INFO Connection check task start + +2025-09-24 07:53:23,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:23,323 INFO Out dated connection ,size=0 + +2025-09-24 07:53:23,323 INFO Connection check task end + +2025-09-24 07:53:25,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:26,323 INFO Connection check task start + +2025-09-24 07:53:26,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:26,323 INFO Out dated connection ,size=0 + +2025-09-24 07:53:26,323 INFO Connection check task end + +2025-09-24 07:53:28,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:29,324 INFO Connection check task start + +2025-09-24 07:53:29,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:29,324 INFO Out dated connection ,size=0 + +2025-09-24 07:53:29,324 INFO Connection check task end + +2025-09-24 07:53:31,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:32,326 INFO Connection check task start + +2025-09-24 07:53:32,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:32,326 INFO Out dated connection ,size=0 + +2025-09-24 07:53:32,326 INFO Connection check task end + +2025-09-24 07:53:34,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:35,328 INFO Connection check task start + +2025-09-24 07:53:35,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:35,328 INFO Out dated connection ,size=0 + +2025-09-24 07:53:35,328 INFO Connection check task end + +2025-09-24 07:53:37,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:38,329 INFO Connection check task start + +2025-09-24 07:53:38,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:38,329 INFO Out dated connection ,size=0 + +2025-09-24 07:53:38,329 INFO Connection check task end + +2025-09-24 07:53:40,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:41,330 INFO Connection check task start + +2025-09-24 07:53:41,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:41,330 INFO Out dated connection ,size=0 + +2025-09-24 07:53:41,330 INFO Connection check task end + +2025-09-24 07:53:43,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:44,330 INFO Connection check task start + +2025-09-24 07:53:44,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:44,331 INFO Out dated connection ,size=0 + +2025-09-24 07:53:44,331 INFO Connection check task end + +2025-09-24 07:53:46,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:47,331 INFO Connection check task start + +2025-09-24 07:53:47,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:47,331 INFO Out dated connection ,size=0 + +2025-09-24 07:53:47,331 INFO Connection check task end + +2025-09-24 07:53:49,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:50,332 INFO Connection check task start + +2025-09-24 07:53:50,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:50,333 INFO Out dated connection ,size=0 + +2025-09-24 07:53:50,333 INFO Connection check task end + +2025-09-24 07:53:52,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:53,333 INFO Connection check task start + +2025-09-24 07:53:53,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:53,333 INFO Out dated connection ,size=0 + +2025-09-24 07:53:53,333 INFO Connection check task end + +2025-09-24 07:53:55,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:56,334 INFO Connection check task start + +2025-09-24 07:53:56,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:56,334 INFO Out dated connection ,size=0 + +2025-09-24 07:53:56,334 INFO Connection check task end + +2025-09-24 07:53:58,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:53:59,334 INFO Connection check task start + +2025-09-24 07:53:59,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:53:59,334 INFO Out dated connection ,size=0 + +2025-09-24 07:53:59,334 INFO Connection check task end + +2025-09-24 07:54:01,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:02,335 INFO Connection check task start + +2025-09-24 07:54:02,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:02,335 INFO Out dated connection ,size=0 + +2025-09-24 07:54:02,335 INFO Connection check task end + +2025-09-24 07:54:04,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:05,336 INFO Connection check task start + +2025-09-24 07:54:05,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:05,336 INFO Out dated connection ,size=0 + +2025-09-24 07:54:05,336 INFO Connection check task end + +2025-09-24 07:54:07,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:08,337 INFO Connection check task start + +2025-09-24 07:54:08,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:08,337 INFO Out dated connection ,size=0 + +2025-09-24 07:54:08,337 INFO Connection check task end + +2025-09-24 07:54:10,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:11,339 INFO Connection check task start + +2025-09-24 07:54:11,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:11,339 INFO Out dated connection ,size=0 + +2025-09-24 07:54:11,339 INFO Connection check task end + +2025-09-24 07:54:13,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:14,342 INFO Connection check task start + +2025-09-24 07:54:14,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:14,342 INFO Out dated connection ,size=0 + +2025-09-24 07:54:14,342 INFO Connection check task end + +2025-09-24 07:54:16,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:17,342 INFO Connection check task start + +2025-09-24 07:54:17,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:17,342 INFO Out dated connection ,size=0 + +2025-09-24 07:54:17,342 INFO Connection check task end + +2025-09-24 07:54:19,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:20,344 INFO Connection check task start + +2025-09-24 07:54:20,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:20,344 INFO Out dated connection ,size=0 + +2025-09-24 07:54:20,344 INFO Connection check task end + +2025-09-24 07:54:22,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:23,345 INFO Connection check task start + +2025-09-24 07:54:23,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:23,345 INFO Out dated connection ,size=0 + +2025-09-24 07:54:23,345 INFO Connection check task end + +2025-09-24 07:54:25,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:26,346 INFO Connection check task start + +2025-09-24 07:54:26,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:26,347 INFO Out dated connection ,size=0 + +2025-09-24 07:54:26,347 INFO Connection check task end + +2025-09-24 07:54:28,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:29,347 INFO Connection check task start + +2025-09-24 07:54:29,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:29,347 INFO Out dated connection ,size=0 + +2025-09-24 07:54:29,347 INFO Connection check task end + +2025-09-24 07:54:31,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:32,348 INFO Connection check task start + +2025-09-24 07:54:32,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:32,348 INFO Out dated connection ,size=0 + +2025-09-24 07:54:32,348 INFO Connection check task end + +2025-09-24 07:54:34,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:35,350 INFO Connection check task start + +2025-09-24 07:54:35,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:35,351 INFO Out dated connection ,size=0 + +2025-09-24 07:54:35,351 INFO Connection check task end + +2025-09-24 07:54:37,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:38,352 INFO Connection check task start + +2025-09-24 07:54:38,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:38,352 INFO Out dated connection ,size=0 + +2025-09-24 07:54:38,352 INFO Connection check task end + +2025-09-24 07:54:40,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:41,353 INFO Connection check task start + +2025-09-24 07:54:41,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:41,354 INFO Out dated connection ,size=0 + +2025-09-24 07:54:41,354 INFO Connection check task end + +2025-09-24 07:54:43,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:44,356 INFO Connection check task start + +2025-09-24 07:54:44,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:44,356 INFO Out dated connection ,size=0 + +2025-09-24 07:54:44,356 INFO Connection check task end + +2025-09-24 07:54:46,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:47,356 INFO Connection check task start + +2025-09-24 07:54:47,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:47,356 INFO Out dated connection ,size=0 + +2025-09-24 07:54:47,356 INFO Connection check task end + +2025-09-24 07:54:49,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:50,357 INFO Connection check task start + +2025-09-24 07:54:50,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:50,357 INFO Out dated connection ,size=0 + +2025-09-24 07:54:50,357 INFO Connection check task end + +2025-09-24 07:54:52,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:53,357 INFO Connection check task start + +2025-09-24 07:54:53,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:53,358 INFO Out dated connection ,size=0 + +2025-09-24 07:54:53,358 INFO Connection check task end + +2025-09-24 07:54:55,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:56,358 INFO Connection check task start + +2025-09-24 07:54:56,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:56,358 INFO Out dated connection ,size=0 + +2025-09-24 07:54:56,358 INFO Connection check task end + +2025-09-24 07:54:58,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:54:59,359 INFO Connection check task start + +2025-09-24 07:54:59,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:54:59,359 INFO Out dated connection ,size=0 + +2025-09-24 07:54:59,359 INFO Connection check task end + +2025-09-24 07:55:01,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:02,360 INFO Connection check task start + +2025-09-24 07:55:02,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:02,360 INFO Out dated connection ,size=0 + +2025-09-24 07:55:02,360 INFO Connection check task end + +2025-09-24 07:55:04,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:05,362 INFO Connection check task start + +2025-09-24 07:55:05,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:05,362 INFO Out dated connection ,size=0 + +2025-09-24 07:55:05,362 INFO Connection check task end + +2025-09-24 07:55:07,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:08,364 INFO Connection check task start + +2025-09-24 07:55:08,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:08,364 INFO Out dated connection ,size=0 + +2025-09-24 07:55:08,364 INFO Connection check task end + +2025-09-24 07:55:10,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:11,365 INFO Connection check task start + +2025-09-24 07:55:11,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:11,365 INFO Out dated connection ,size=0 + +2025-09-24 07:55:11,365 INFO Connection check task end + +2025-09-24 07:55:13,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:14,366 INFO Connection check task start + +2025-09-24 07:55:14,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:14,366 INFO Out dated connection ,size=0 + +2025-09-24 07:55:14,366 INFO Connection check task end + +2025-09-24 07:55:16,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:17,366 INFO Connection check task start + +2025-09-24 07:55:17,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:17,366 INFO Out dated connection ,size=0 + +2025-09-24 07:55:17,366 INFO Connection check task end + +2025-09-24 07:55:19,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:20,368 INFO Connection check task start + +2025-09-24 07:55:20,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:20,369 INFO Out dated connection ,size=0 + +2025-09-24 07:55:20,369 INFO Connection check task end + +2025-09-24 07:55:22,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:23,369 INFO Connection check task start + +2025-09-24 07:55:23,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:23,369 INFO Out dated connection ,size=0 + +2025-09-24 07:55:23,369 INFO Connection check task end + +2025-09-24 07:55:25,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:26,371 INFO Connection check task start + +2025-09-24 07:55:26,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:26,371 INFO Out dated connection ,size=0 + +2025-09-24 07:55:26,371 INFO Connection check task end + +2025-09-24 07:55:28,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:29,372 INFO Connection check task start + +2025-09-24 07:55:29,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:29,372 INFO Out dated connection ,size=0 + +2025-09-24 07:55:29,372 INFO Connection check task end + +2025-09-24 07:55:31,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:32,372 INFO Connection check task start + +2025-09-24 07:55:32,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:32,372 INFO Out dated connection ,size=0 + +2025-09-24 07:55:32,372 INFO Connection check task end + +2025-09-24 07:55:34,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:35,373 INFO Connection check task start + +2025-09-24 07:55:35,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:35,373 INFO Out dated connection ,size=0 + +2025-09-24 07:55:35,373 INFO Connection check task end + +2025-09-24 07:55:37,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:38,373 INFO Connection check task start + +2025-09-24 07:55:38,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:38,373 INFO Out dated connection ,size=0 + +2025-09-24 07:55:38,374 INFO Connection check task end + +2025-09-24 07:55:40,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:41,374 INFO Connection check task start + +2025-09-24 07:55:41,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:41,374 INFO Out dated connection ,size=0 + +2025-09-24 07:55:41,374 INFO Connection check task end + +2025-09-24 07:55:43,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:44,376 INFO Connection check task start + +2025-09-24 07:55:44,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:44,376 INFO Out dated connection ,size=0 + +2025-09-24 07:55:44,376 INFO Connection check task end + +2025-09-24 07:55:46,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:47,378 INFO Connection check task start + +2025-09-24 07:55:47,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:47,378 INFO Out dated connection ,size=0 + +2025-09-24 07:55:47,378 INFO Connection check task end + +2025-09-24 07:55:49,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:50,378 INFO Connection check task start + +2025-09-24 07:55:50,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:50,379 INFO Out dated connection ,size=0 + +2025-09-24 07:55:50,379 INFO Connection check task end + +2025-09-24 07:55:52,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:53,381 INFO Connection check task start + +2025-09-24 07:55:53,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:53,381 INFO Out dated connection ,size=0 + +2025-09-24 07:55:53,381 INFO Connection check task end + +2025-09-24 07:55:55,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:56,381 INFO Connection check task start + +2025-09-24 07:55:56,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:56,382 INFO Out dated connection ,size=0 + +2025-09-24 07:55:56,382 INFO Connection check task end + +2025-09-24 07:55:58,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:55:59,382 INFO Connection check task start + +2025-09-24 07:55:59,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:55:59,382 INFO Out dated connection ,size=0 + +2025-09-24 07:55:59,382 INFO Connection check task end + +2025-09-24 07:56:01,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:02,382 INFO Connection check task start + +2025-09-24 07:56:02,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:02,382 INFO Out dated connection ,size=0 + +2025-09-24 07:56:02,382 INFO Connection check task end + +2025-09-24 07:56:04,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:05,383 INFO Connection check task start + +2025-09-24 07:56:05,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:05,383 INFO Out dated connection ,size=0 + +2025-09-24 07:56:05,383 INFO Connection check task end + +2025-09-24 07:56:07,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:08,384 INFO Connection check task start + +2025-09-24 07:56:08,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:08,384 INFO Out dated connection ,size=0 + +2025-09-24 07:56:08,384 INFO Connection check task end + +2025-09-24 07:56:10,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:11,385 INFO Connection check task start + +2025-09-24 07:56:11,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:11,385 INFO Out dated connection ,size=0 + +2025-09-24 07:56:11,385 INFO Connection check task end + +2025-09-24 07:56:13,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:14,385 INFO Connection check task start + +2025-09-24 07:56:14,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:14,385 INFO Out dated connection ,size=0 + +2025-09-24 07:56:14,385 INFO Connection check task end + +2025-09-24 07:56:16,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:17,386 INFO Connection check task start + +2025-09-24 07:56:17,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:17,387 INFO Out dated connection ,size=0 + +2025-09-24 07:56:17,387 INFO Connection check task end + +2025-09-24 07:56:19,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:20,388 INFO Connection check task start + +2025-09-24 07:56:20,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:20,388 INFO Out dated connection ,size=0 + +2025-09-24 07:56:20,388 INFO Connection check task end + +2025-09-24 07:56:22,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:23,390 INFO Connection check task start + +2025-09-24 07:56:23,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:23,390 INFO Out dated connection ,size=0 + +2025-09-24 07:56:23,390 INFO Connection check task end + +2025-09-24 07:56:25,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:26,391 INFO Connection check task start + +2025-09-24 07:56:26,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:26,391 INFO Out dated connection ,size=0 + +2025-09-24 07:56:26,391 INFO Connection check task end + +2025-09-24 07:56:28,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:29,392 INFO Connection check task start + +2025-09-24 07:56:29,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:29,392 INFO Out dated connection ,size=0 + +2025-09-24 07:56:29,392 INFO Connection check task end + +2025-09-24 07:56:31,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:32,392 INFO Connection check task start + +2025-09-24 07:56:32,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:32,393 INFO Out dated connection ,size=0 + +2025-09-24 07:56:32,393 INFO Connection check task end + +2025-09-24 07:56:34,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:35,393 INFO Connection check task start + +2025-09-24 07:56:35,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:35,393 INFO Out dated connection ,size=0 + +2025-09-24 07:56:35,393 INFO Connection check task end + +2025-09-24 07:56:37,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:38,395 INFO Connection check task start + +2025-09-24 07:56:38,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:38,395 INFO Out dated connection ,size=0 + +2025-09-24 07:56:38,395 INFO Connection check task end + +2025-09-24 07:56:40,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:41,396 INFO Connection check task start + +2025-09-24 07:56:41,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:41,396 INFO Out dated connection ,size=0 + +2025-09-24 07:56:41,396 INFO Connection check task end + +2025-09-24 07:56:43,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:44,398 INFO Connection check task start + +2025-09-24 07:56:44,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:44,398 INFO Out dated connection ,size=0 + +2025-09-24 07:56:44,398 INFO Connection check task end + +2025-09-24 07:56:46,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:47,400 INFO Connection check task start + +2025-09-24 07:56:47,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:47,401 INFO Out dated connection ,size=0 + +2025-09-24 07:56:47,401 INFO Connection check task end + +2025-09-24 07:56:49,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:50,401 INFO Connection check task start + +2025-09-24 07:56:50,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:50,401 INFO Out dated connection ,size=0 + +2025-09-24 07:56:50,401 INFO Connection check task end + +2025-09-24 07:56:52,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:53,403 INFO Connection check task start + +2025-09-24 07:56:53,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:53,404 INFO Out dated connection ,size=0 + +2025-09-24 07:56:53,404 INFO Connection check task end + +2025-09-24 07:56:55,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:56,405 INFO Connection check task start + +2025-09-24 07:56:56,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:56,405 INFO Out dated connection ,size=0 + +2025-09-24 07:56:56,405 INFO Connection check task end + +2025-09-24 07:56:58,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:56:59,406 INFO Connection check task start + +2025-09-24 07:56:59,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:56:59,406 INFO Out dated connection ,size=0 + +2025-09-24 07:56:59,406 INFO Connection check task end + +2025-09-24 07:57:01,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:02,407 INFO Connection check task start + +2025-09-24 07:57:02,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:02,407 INFO Out dated connection ,size=0 + +2025-09-24 07:57:02,407 INFO Connection check task end + +2025-09-24 07:57:04,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:05,407 INFO Connection check task start + +2025-09-24 07:57:05,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:05,407 INFO Out dated connection ,size=0 + +2025-09-24 07:57:05,407 INFO Connection check task end + +2025-09-24 07:57:07,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:08,409 INFO Connection check task start + +2025-09-24 07:57:08,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:08,409 INFO Out dated connection ,size=0 + +2025-09-24 07:57:08,409 INFO Connection check task end + +2025-09-24 07:57:10,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:11,410 INFO Connection check task start + +2025-09-24 07:57:11,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:11,410 INFO Out dated connection ,size=0 + +2025-09-24 07:57:11,410 INFO Connection check task end + +2025-09-24 07:57:13,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:14,412 INFO Connection check task start + +2025-09-24 07:57:14,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:14,412 INFO Out dated connection ,size=0 + +2025-09-24 07:57:14,413 INFO Connection check task end + +2025-09-24 07:57:16,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:17,413 INFO Connection check task start + +2025-09-24 07:57:17,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:17,413 INFO Out dated connection ,size=0 + +2025-09-24 07:57:17,413 INFO Connection check task end + +2025-09-24 07:57:19,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:20,414 INFO Connection check task start + +2025-09-24 07:57:20,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:20,414 INFO Out dated connection ,size=0 + +2025-09-24 07:57:20,414 INFO Connection check task end + +2025-09-24 07:57:22,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:23,415 INFO Connection check task start + +2025-09-24 07:57:23,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:23,415 INFO Out dated connection ,size=0 + +2025-09-24 07:57:23,415 INFO Connection check task end + +2025-09-24 07:57:25,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:26,416 INFO Connection check task start + +2025-09-24 07:57:26,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:26,416 INFO Out dated connection ,size=0 + +2025-09-24 07:57:26,416 INFO Connection check task end + +2025-09-24 07:57:28,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:29,416 INFO Connection check task start + +2025-09-24 07:57:29,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:29,416 INFO Out dated connection ,size=0 + +2025-09-24 07:57:29,416 INFO Connection check task end + +2025-09-24 07:57:31,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:32,417 INFO Connection check task start + +2025-09-24 07:57:32,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:32,417 INFO Out dated connection ,size=0 + +2025-09-24 07:57:32,417 INFO Connection check task end + +2025-09-24 07:57:34,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:35,419 INFO Connection check task start + +2025-09-24 07:57:35,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:35,419 INFO Out dated connection ,size=0 + +2025-09-24 07:57:35,419 INFO Connection check task end + +2025-09-24 07:57:37,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:38,420 INFO Connection check task start + +2025-09-24 07:57:38,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:38,421 INFO Out dated connection ,size=0 + +2025-09-24 07:57:38,421 INFO Connection check task end + +2025-09-24 07:57:40,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:41,423 INFO Connection check task start + +2025-09-24 07:57:41,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:41,423 INFO Out dated connection ,size=0 + +2025-09-24 07:57:41,423 INFO Connection check task end + +2025-09-24 07:57:43,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:44,424 INFO Connection check task start + +2025-09-24 07:57:44,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:44,424 INFO Out dated connection ,size=0 + +2025-09-24 07:57:44,424 INFO Connection check task end + +2025-09-24 07:57:46,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:47,425 INFO Connection check task start + +2025-09-24 07:57:47,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:47,425 INFO Out dated connection ,size=0 + +2025-09-24 07:57:47,425 INFO Connection check task end + +2025-09-24 07:57:49,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:50,425 INFO Connection check task start + +2025-09-24 07:57:50,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:50,426 INFO Out dated connection ,size=0 + +2025-09-24 07:57:50,426 INFO Connection check task end + +2025-09-24 07:57:52,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:53,426 INFO Connection check task start + +2025-09-24 07:57:53,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:53,426 INFO Out dated connection ,size=0 + +2025-09-24 07:57:53,426 INFO Connection check task end + +2025-09-24 07:57:55,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:56,426 INFO Connection check task start + +2025-09-24 07:57:56,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:56,426 INFO Out dated connection ,size=0 + +2025-09-24 07:57:56,426 INFO Connection check task end + +2025-09-24 07:57:58,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:57:59,427 INFO Connection check task start + +2025-09-24 07:57:59,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:57:59,427 INFO Out dated connection ,size=0 + +2025-09-24 07:57:59,427 INFO Connection check task end + +2025-09-24 07:58:01,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:02,427 INFO Connection check task start + +2025-09-24 07:58:02,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:02,427 INFO Out dated connection ,size=0 + +2025-09-24 07:58:02,427 INFO Connection check task end + +2025-09-24 07:58:04,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:05,428 INFO Connection check task start + +2025-09-24 07:58:05,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:05,428 INFO Out dated connection ,size=0 + +2025-09-24 07:58:05,428 INFO Connection check task end + +2025-09-24 07:58:07,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:08,428 INFO Connection check task start + +2025-09-24 07:58:08,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:08,428 INFO Out dated connection ,size=0 + +2025-09-24 07:58:08,428 INFO Connection check task end + +2025-09-24 07:58:10,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:11,429 INFO Connection check task start + +2025-09-24 07:58:11,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:11,429 INFO Out dated connection ,size=0 + +2025-09-24 07:58:11,429 INFO Connection check task end + +2025-09-24 07:58:13,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:14,429 INFO Connection check task start + +2025-09-24 07:58:14,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:14,429 INFO Out dated connection ,size=0 + +2025-09-24 07:58:14,430 INFO Connection check task end + +2025-09-24 07:58:16,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:17,430 INFO Connection check task start + +2025-09-24 07:58:17,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:17,430 INFO Out dated connection ,size=0 + +2025-09-24 07:58:17,430 INFO Connection check task end + +2025-09-24 07:58:19,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:20,430 INFO Connection check task start + +2025-09-24 07:58:20,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:20,430 INFO Out dated connection ,size=0 + +2025-09-24 07:58:20,430 INFO Connection check task end + +2025-09-24 07:58:22,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:23,431 INFO Connection check task start + +2025-09-24 07:58:23,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:23,431 INFO Out dated connection ,size=0 + +2025-09-24 07:58:23,431 INFO Connection check task end + +2025-09-24 07:58:25,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:26,431 INFO Connection check task start + +2025-09-24 07:58:26,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:26,431 INFO Out dated connection ,size=0 + +2025-09-24 07:58:26,431 INFO Connection check task end + +2025-09-24 07:58:28,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:29,432 INFO Connection check task start + +2025-09-24 07:58:29,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:29,432 INFO Out dated connection ,size=0 + +2025-09-24 07:58:29,432 INFO Connection check task end + +2025-09-24 07:58:31,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:32,432 INFO Connection check task start + +2025-09-24 07:58:32,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:32,432 INFO Out dated connection ,size=0 + +2025-09-24 07:58:32,432 INFO Connection check task end + +2025-09-24 07:58:34,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:35,433 INFO Connection check task start + +2025-09-24 07:58:35,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:35,433 INFO Out dated connection ,size=0 + +2025-09-24 07:58:35,433 INFO Connection check task end + +2025-09-24 07:58:37,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:38,433 INFO Connection check task start + +2025-09-24 07:58:38,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:38,434 INFO Out dated connection ,size=0 + +2025-09-24 07:58:38,434 INFO Connection check task end + +2025-09-24 07:58:40,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:41,434 INFO Connection check task start + +2025-09-24 07:58:41,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:41,434 INFO Out dated connection ,size=0 + +2025-09-24 07:58:41,434 INFO Connection check task end + +2025-09-24 07:58:43,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:44,434 INFO Connection check task start + +2025-09-24 07:58:44,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:44,435 INFO Out dated connection ,size=0 + +2025-09-24 07:58:44,435 INFO Connection check task end + +2025-09-24 07:58:46,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:47,436 INFO Connection check task start + +2025-09-24 07:58:47,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:47,436 INFO Out dated connection ,size=0 + +2025-09-24 07:58:47,436 INFO Connection check task end + +2025-09-24 07:58:49,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:50,437 INFO Connection check task start + +2025-09-24 07:58:50,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:50,437 INFO Out dated connection ,size=0 + +2025-09-24 07:58:50,437 INFO Connection check task end + +2025-09-24 07:58:52,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:53,438 INFO Connection check task start + +2025-09-24 07:58:53,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:53,438 INFO Out dated connection ,size=0 + +2025-09-24 07:58:53,438 INFO Connection check task end + +2025-09-24 07:58:55,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:56,438 INFO Connection check task start + +2025-09-24 07:58:56,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:56,438 INFO Out dated connection ,size=0 + +2025-09-24 07:58:56,439 INFO Connection check task end + +2025-09-24 07:58:58,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:58:59,439 INFO Connection check task start + +2025-09-24 07:58:59,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:58:59,439 INFO Out dated connection ,size=0 + +2025-09-24 07:58:59,439 INFO Connection check task end + +2025-09-24 07:59:01,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:02,439 INFO Connection check task start + +2025-09-24 07:59:02,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:02,440 INFO Out dated connection ,size=0 + +2025-09-24 07:59:02,440 INFO Connection check task end + +2025-09-24 07:59:04,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:05,440 INFO Connection check task start + +2025-09-24 07:59:05,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:05,440 INFO Out dated connection ,size=0 + +2025-09-24 07:59:05,440 INFO Connection check task end + +2025-09-24 07:59:07,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:08,442 INFO Connection check task start + +2025-09-24 07:59:08,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:08,442 INFO Out dated connection ,size=0 + +2025-09-24 07:59:08,442 INFO Connection check task end + +2025-09-24 07:59:10,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:11,443 INFO Connection check task start + +2025-09-24 07:59:11,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:11,443 INFO Out dated connection ,size=0 + +2025-09-24 07:59:11,443 INFO Connection check task end + +2025-09-24 07:59:13,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:14,443 INFO Connection check task start + +2025-09-24 07:59:14,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:14,443 INFO Out dated connection ,size=0 + +2025-09-24 07:59:14,443 INFO Connection check task end + +2025-09-24 07:59:16,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:17,443 INFO Connection check task start + +2025-09-24 07:59:17,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:17,444 INFO Out dated connection ,size=0 + +2025-09-24 07:59:17,444 INFO Connection check task end + +2025-09-24 07:59:19,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:20,444 INFO Connection check task start + +2025-09-24 07:59:20,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:20,444 INFO Out dated connection ,size=0 + +2025-09-24 07:59:20,444 INFO Connection check task end + +2025-09-24 07:59:22,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:23,444 INFO Connection check task start + +2025-09-24 07:59:23,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:23,444 INFO Out dated connection ,size=0 + +2025-09-24 07:59:23,445 INFO Connection check task end + +2025-09-24 07:59:25,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:26,445 INFO Connection check task start + +2025-09-24 07:59:26,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:26,445 INFO Out dated connection ,size=0 + +2025-09-24 07:59:26,445 INFO Connection check task end + +2025-09-24 07:59:28,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:29,445 INFO Connection check task start + +2025-09-24 07:59:29,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:29,445 INFO Out dated connection ,size=0 + +2025-09-24 07:59:29,445 INFO Connection check task end + +2025-09-24 07:59:31,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:32,446 INFO Connection check task start + +2025-09-24 07:59:32,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:32,446 INFO Out dated connection ,size=0 + +2025-09-24 07:59:32,446 INFO Connection check task end + +2025-09-24 07:59:34,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:35,446 INFO Connection check task start + +2025-09-24 07:59:35,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:35,446 INFO Out dated connection ,size=0 + +2025-09-24 07:59:35,446 INFO Connection check task end + +2025-09-24 07:59:37,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:38,447 INFO Connection check task start + +2025-09-24 07:59:38,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:38,447 INFO Out dated connection ,size=0 + +2025-09-24 07:59:38,447 INFO Connection check task end + +2025-09-24 07:59:40,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:41,447 INFO Connection check task start + +2025-09-24 07:59:41,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:41,447 INFO Out dated connection ,size=0 + +2025-09-24 07:59:41,447 INFO Connection check task end + +2025-09-24 07:59:43,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:44,447 INFO Connection check task start + +2025-09-24 07:59:44,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:44,447 INFO Out dated connection ,size=0 + +2025-09-24 07:59:44,447 INFO Connection check task end + +2025-09-24 07:59:46,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:47,448 INFO Connection check task start + +2025-09-24 07:59:47,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:47,448 INFO Out dated connection ,size=0 + +2025-09-24 07:59:47,448 INFO Connection check task end + +2025-09-24 07:59:49,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:50,448 INFO Connection check task start + +2025-09-24 07:59:50,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:50,448 INFO Out dated connection ,size=0 + +2025-09-24 07:59:50,448 INFO Connection check task end + +2025-09-24 07:59:52,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:53,449 INFO Connection check task start + +2025-09-24 07:59:53,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:53,449 INFO Out dated connection ,size=0 + +2025-09-24 07:59:53,449 INFO Connection check task end + +2025-09-24 07:59:55,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:56,449 INFO Connection check task start + +2025-09-24 07:59:56,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:56,449 INFO Out dated connection ,size=0 + +2025-09-24 07:59:56,449 INFO Connection check task end + +2025-09-24 07:59:58,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 07:59:59,451 INFO Connection check task start + +2025-09-24 07:59:59,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 07:59:59,451 INFO Out dated connection ,size=0 + +2025-09-24 07:59:59,451 INFO Connection check task end + +2025-09-24 08:00:01,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:02,452 INFO Connection check task start + +2025-09-24 08:00:02,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:02,453 INFO Out dated connection ,size=0 + +2025-09-24 08:00:02,453 INFO Connection check task end + +2025-09-24 08:00:04,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:05,453 INFO Connection check task start + +2025-09-24 08:00:05,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:05,453 INFO Out dated connection ,size=0 + +2025-09-24 08:00:05,453 INFO Connection check task end + +2025-09-24 08:00:07,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:08,453 INFO Connection check task start + +2025-09-24 08:00:08,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:08,454 INFO Out dated connection ,size=0 + +2025-09-24 08:00:08,454 INFO Connection check task end + +2025-09-24 08:00:10,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:11,454 INFO Connection check task start + +2025-09-24 08:00:11,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:11,454 INFO Out dated connection ,size=0 + +2025-09-24 08:00:11,454 INFO Connection check task end + +2025-09-24 08:00:13,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:14,454 INFO Connection check task start + +2025-09-24 08:00:14,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:14,455 INFO Out dated connection ,size=0 + +2025-09-24 08:00:14,455 INFO Connection check task end + +2025-09-24 08:00:16,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:17,457 INFO Connection check task start + +2025-09-24 08:00:17,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:17,457 INFO Out dated connection ,size=0 + +2025-09-24 08:00:17,457 INFO Connection check task end + +2025-09-24 08:00:19,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:20,458 INFO Connection check task start + +2025-09-24 08:00:20,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:20,458 INFO Out dated connection ,size=0 + +2025-09-24 08:00:20,458 INFO Connection check task end + +2025-09-24 08:00:22,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:23,458 INFO Connection check task start + +2025-09-24 08:00:23,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:23,458 INFO Out dated connection ,size=0 + +2025-09-24 08:00:23,458 INFO Connection check task end + +2025-09-24 08:00:25,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:26,460 INFO Connection check task start + +2025-09-24 08:00:26,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:26,460 INFO Out dated connection ,size=0 + +2025-09-24 08:00:26,460 INFO Connection check task end + +2025-09-24 08:00:28,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:29,460 INFO Connection check task start + +2025-09-24 08:00:29,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:29,461 INFO Out dated connection ,size=0 + +2025-09-24 08:00:29,461 INFO Connection check task end + +2025-09-24 08:00:31,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:32,463 INFO Connection check task start + +2025-09-24 08:00:32,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:32,463 INFO Out dated connection ,size=0 + +2025-09-24 08:00:32,463 INFO Connection check task end + +2025-09-24 08:00:34,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:35,463 INFO Connection check task start + +2025-09-24 08:00:35,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:35,463 INFO Out dated connection ,size=0 + +2025-09-24 08:00:35,463 INFO Connection check task end + +2025-09-24 08:00:37,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:38,464 INFO Connection check task start + +2025-09-24 08:00:38,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:38,464 INFO Out dated connection ,size=0 + +2025-09-24 08:00:38,464 INFO Connection check task end + +2025-09-24 08:00:40,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:41,465 INFO Connection check task start + +2025-09-24 08:00:41,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:41,465 INFO Out dated connection ,size=0 + +2025-09-24 08:00:41,465 INFO Connection check task end + +2025-09-24 08:00:43,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:44,467 INFO Connection check task start + +2025-09-24 08:00:44,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:44,467 INFO Out dated connection ,size=0 + +2025-09-24 08:00:44,467 INFO Connection check task end + +2025-09-24 08:00:46,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:47,468 INFO Connection check task start + +2025-09-24 08:00:47,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:47,468 INFO Out dated connection ,size=0 + +2025-09-24 08:00:47,468 INFO Connection check task end + +2025-09-24 08:00:49,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:50,469 INFO Connection check task start + +2025-09-24 08:00:50,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:50,469 INFO Out dated connection ,size=0 + +2025-09-24 08:00:50,470 INFO Connection check task end + +2025-09-24 08:00:52,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:53,470 INFO Connection check task start + +2025-09-24 08:00:53,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:53,470 INFO Out dated connection ,size=0 + +2025-09-24 08:00:53,470 INFO Connection check task end + +2025-09-24 08:00:55,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:56,471 INFO Connection check task start + +2025-09-24 08:00:56,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:56,471 INFO Out dated connection ,size=0 + +2025-09-24 08:00:56,471 INFO Connection check task end + +2025-09-24 08:00:58,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:00:59,471 INFO Connection check task start + +2025-09-24 08:00:59,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:00:59,472 INFO Out dated connection ,size=0 + +2025-09-24 08:00:59,472 INFO Connection check task end + +2025-09-24 08:01:01,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:02,473 INFO Connection check task start + +2025-09-24 08:01:02,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:02,473 INFO Out dated connection ,size=0 + +2025-09-24 08:01:02,473 INFO Connection check task end + +2025-09-24 08:01:04,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:05,475 INFO Connection check task start + +2025-09-24 08:01:05,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:05,475 INFO Out dated connection ,size=0 + +2025-09-24 08:01:05,476 INFO Connection check task end + +2025-09-24 08:01:07,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:08,476 INFO Connection check task start + +2025-09-24 08:01:08,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:08,476 INFO Out dated connection ,size=0 + +2025-09-24 08:01:08,476 INFO Connection check task end + +2025-09-24 08:01:10,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:11,478 INFO Connection check task start + +2025-09-24 08:01:11,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:11,478 INFO Out dated connection ,size=0 + +2025-09-24 08:01:11,478 INFO Connection check task end + +2025-09-24 08:01:13,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:14,479 INFO Connection check task start + +2025-09-24 08:01:14,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:14,479 INFO Out dated connection ,size=0 + +2025-09-24 08:01:14,479 INFO Connection check task end + +2025-09-24 08:01:16,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:17,480 INFO Connection check task start + +2025-09-24 08:01:17,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:17,480 INFO Out dated connection ,size=0 + +2025-09-24 08:01:17,480 INFO Connection check task end + +2025-09-24 08:01:19,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:20,481 INFO Connection check task start + +2025-09-24 08:01:20,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:20,481 INFO Out dated connection ,size=0 + +2025-09-24 08:01:20,481 INFO Connection check task end + +2025-09-24 08:01:22,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:23,482 INFO Connection check task start + +2025-09-24 08:01:23,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:23,482 INFO Out dated connection ,size=0 + +2025-09-24 08:01:23,482 INFO Connection check task end + +2025-09-24 08:01:25,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:26,482 INFO Connection check task start + +2025-09-24 08:01:26,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:26,483 INFO Out dated connection ,size=0 + +2025-09-24 08:01:26,483 INFO Connection check task end + +2025-09-24 08:01:28,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:29,483 INFO Connection check task start + +2025-09-24 08:01:29,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:29,483 INFO Out dated connection ,size=0 + +2025-09-24 08:01:29,483 INFO Connection check task end + +2025-09-24 08:01:31,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:32,484 INFO Connection check task start + +2025-09-24 08:01:32,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:32,484 INFO Out dated connection ,size=0 + +2025-09-24 08:01:32,485 INFO Connection check task end + +2025-09-24 08:01:34,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:35,486 INFO Connection check task start + +2025-09-24 08:01:35,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:35,486 INFO Out dated connection ,size=0 + +2025-09-24 08:01:35,486 INFO Connection check task end + +2025-09-24 08:01:37,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:38,487 INFO Connection check task start + +2025-09-24 08:01:38,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:38,487 INFO Out dated connection ,size=0 + +2025-09-24 08:01:38,487 INFO Connection check task end + +2025-09-24 08:01:40,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:41,489 INFO Connection check task start + +2025-09-24 08:01:41,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:41,489 INFO Out dated connection ,size=0 + +2025-09-24 08:01:41,489 INFO Connection check task end + +2025-09-24 08:01:43,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:44,491 INFO Connection check task start + +2025-09-24 08:01:44,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:44,491 INFO Out dated connection ,size=0 + +2025-09-24 08:01:44,491 INFO Connection check task end + +2025-09-24 08:01:46,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:47,492 INFO Connection check task start + +2025-09-24 08:01:47,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:47,492 INFO Out dated connection ,size=0 + +2025-09-24 08:01:47,492 INFO Connection check task end + +2025-09-24 08:01:49,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:50,493 INFO Connection check task start + +2025-09-24 08:01:50,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:50,493 INFO Out dated connection ,size=0 + +2025-09-24 08:01:50,493 INFO Connection check task end + +2025-09-24 08:01:52,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:53,495 INFO Connection check task start + +2025-09-24 08:01:53,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:53,495 INFO Out dated connection ,size=0 + +2025-09-24 08:01:53,495 INFO Connection check task end + +2025-09-24 08:01:55,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:56,496 INFO Connection check task start + +2025-09-24 08:01:56,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:56,496 INFO Out dated connection ,size=0 + +2025-09-24 08:01:56,496 INFO Connection check task end + +2025-09-24 08:01:58,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:01:59,498 INFO Connection check task start + +2025-09-24 08:01:59,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:01:59,498 INFO Out dated connection ,size=0 + +2025-09-24 08:01:59,498 INFO Connection check task end + +2025-09-24 08:02:01,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:02,500 INFO Connection check task start + +2025-09-24 08:02:02,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:02,500 INFO Out dated connection ,size=0 + +2025-09-24 08:02:02,500 INFO Connection check task end + +2025-09-24 08:02:04,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:05,501 INFO Connection check task start + +2025-09-24 08:02:05,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:05,501 INFO Out dated connection ,size=0 + +2025-09-24 08:02:05,501 INFO Connection check task end + +2025-09-24 08:02:07,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:08,503 INFO Connection check task start + +2025-09-24 08:02:08,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:08,504 INFO Out dated connection ,size=0 + +2025-09-24 08:02:08,504 INFO Connection check task end + +2025-09-24 08:02:10,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:11,504 INFO Connection check task start + +2025-09-24 08:02:11,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:11,504 INFO Out dated connection ,size=0 + +2025-09-24 08:02:11,504 INFO Connection check task end + +2025-09-24 08:02:13,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:14,506 INFO Connection check task start + +2025-09-24 08:02:14,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:14,506 INFO Out dated connection ,size=0 + +2025-09-24 08:02:14,506 INFO Connection check task end + +2025-09-24 08:02:16,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:17,508 INFO Connection check task start + +2025-09-24 08:02:17,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:17,508 INFO Out dated connection ,size=0 + +2025-09-24 08:02:17,508 INFO Connection check task end + +2025-09-24 08:02:19,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:20,509 INFO Connection check task start + +2025-09-24 08:02:20,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:20,509 INFO Out dated connection ,size=0 + +2025-09-24 08:02:20,509 INFO Connection check task end + +2025-09-24 08:02:22,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:23,510 INFO Connection check task start + +2025-09-24 08:02:23,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:23,510 INFO Out dated connection ,size=0 + +2025-09-24 08:02:23,510 INFO Connection check task end + +2025-09-24 08:02:25,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:26,512 INFO Connection check task start + +2025-09-24 08:02:26,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:26,512 INFO Out dated connection ,size=0 + +2025-09-24 08:02:26,512 INFO Connection check task end + +2025-09-24 08:02:28,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:29,512 INFO Connection check task start + +2025-09-24 08:02:29,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:29,512 INFO Out dated connection ,size=0 + +2025-09-24 08:02:29,512 INFO Connection check task end + +2025-09-24 08:02:31,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:32,512 INFO Connection check task start + +2025-09-24 08:02:32,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:32,512 INFO Out dated connection ,size=0 + +2025-09-24 08:02:32,512 INFO Connection check task end + +2025-09-24 08:02:34,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:35,514 INFO Connection check task start + +2025-09-24 08:02:35,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:35,515 INFO Out dated connection ,size=0 + +2025-09-24 08:02:35,515 INFO Connection check task end + +2025-09-24 08:02:37,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:38,515 INFO Connection check task start + +2025-09-24 08:02:38,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:38,515 INFO Out dated connection ,size=0 + +2025-09-24 08:02:38,515 INFO Connection check task end + +2025-09-24 08:02:40,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:41,515 INFO Connection check task start + +2025-09-24 08:02:41,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:41,516 INFO Out dated connection ,size=0 + +2025-09-24 08:02:41,516 INFO Connection check task end + +2025-09-24 08:02:43,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:44,516 INFO Connection check task start + +2025-09-24 08:02:44,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:44,516 INFO Out dated connection ,size=0 + +2025-09-24 08:02:44,516 INFO Connection check task end + +2025-09-24 08:02:46,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:47,517 INFO Connection check task start + +2025-09-24 08:02:47,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:47,517 INFO Out dated connection ,size=0 + +2025-09-24 08:02:47,517 INFO Connection check task end + +2025-09-24 08:02:49,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:50,517 INFO Connection check task start + +2025-09-24 08:02:50,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:50,517 INFO Out dated connection ,size=0 + +2025-09-24 08:02:50,517 INFO Connection check task end + +2025-09-24 08:02:52,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:53,519 INFO Connection check task start + +2025-09-24 08:02:53,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:53,520 INFO Out dated connection ,size=0 + +2025-09-24 08:02:53,520 INFO Connection check task end + +2025-09-24 08:02:55,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:56,520 INFO Connection check task start + +2025-09-24 08:02:56,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:56,520 INFO Out dated connection ,size=0 + +2025-09-24 08:02:56,520 INFO Connection check task end + +2025-09-24 08:02:58,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:02:59,521 INFO Connection check task start + +2025-09-24 08:02:59,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:02:59,521 INFO Out dated connection ,size=0 + +2025-09-24 08:02:59,521 INFO Connection check task end + +2025-09-24 08:03:01,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:02,523 INFO Connection check task start + +2025-09-24 08:03:02,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:02,523 INFO Out dated connection ,size=0 + +2025-09-24 08:03:02,523 INFO Connection check task end + +2025-09-24 08:03:04,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:05,523 INFO Connection check task start + +2025-09-24 08:03:05,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:05,523 INFO Out dated connection ,size=0 + +2025-09-24 08:03:05,524 INFO Connection check task end + +2025-09-24 08:03:07,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:08,526 INFO Connection check task start + +2025-09-24 08:03:08,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:08,526 INFO Out dated connection ,size=0 + +2025-09-24 08:03:08,526 INFO Connection check task end + +2025-09-24 08:03:10,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:11,526 INFO Connection check task start + +2025-09-24 08:03:11,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:11,526 INFO Out dated connection ,size=0 + +2025-09-24 08:03:11,526 INFO Connection check task end + +2025-09-24 08:03:13,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:14,528 INFO Connection check task start + +2025-09-24 08:03:14,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:14,528 INFO Out dated connection ,size=0 + +2025-09-24 08:03:14,528 INFO Connection check task end + +2025-09-24 08:03:16,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:17,529 INFO Connection check task start + +2025-09-24 08:03:17,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:17,529 INFO Out dated connection ,size=0 + +2025-09-24 08:03:17,529 INFO Connection check task end + +2025-09-24 08:03:19,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:20,530 INFO Connection check task start + +2025-09-24 08:03:20,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:20,530 INFO Out dated connection ,size=0 + +2025-09-24 08:03:20,530 INFO Connection check task end + +2025-09-24 08:03:22,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:23,531 INFO Connection check task start + +2025-09-24 08:03:23,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:23,531 INFO Out dated connection ,size=0 + +2025-09-24 08:03:23,531 INFO Connection check task end + +2025-09-24 08:03:25,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:26,533 INFO Connection check task start + +2025-09-24 08:03:26,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:26,533 INFO Out dated connection ,size=0 + +2025-09-24 08:03:26,533 INFO Connection check task end + +2025-09-24 08:03:28,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:29,536 INFO Connection check task start + +2025-09-24 08:03:29,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:29,536 INFO Out dated connection ,size=0 + +2025-09-24 08:03:29,536 INFO Connection check task end + +2025-09-24 08:03:31,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:32,536 INFO Connection check task start + +2025-09-24 08:03:32,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:32,536 INFO Out dated connection ,size=0 + +2025-09-24 08:03:32,536 INFO Connection check task end + +2025-09-24 08:03:34,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:35,537 INFO Connection check task start + +2025-09-24 08:03:35,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:35,537 INFO Out dated connection ,size=0 + +2025-09-24 08:03:35,537 INFO Connection check task end + +2025-09-24 08:03:37,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:38,537 INFO Connection check task start + +2025-09-24 08:03:38,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:38,538 INFO Out dated connection ,size=0 + +2025-09-24 08:03:38,538 INFO Connection check task end + +2025-09-24 08:03:40,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:41,538 INFO Connection check task start + +2025-09-24 08:03:41,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:41,538 INFO Out dated connection ,size=0 + +2025-09-24 08:03:41,538 INFO Connection check task end + +2025-09-24 08:03:43,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:44,539 INFO Connection check task start + +2025-09-24 08:03:44,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:44,539 INFO Out dated connection ,size=0 + +2025-09-24 08:03:44,539 INFO Connection check task end + +2025-09-24 08:03:46,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:47,541 INFO Connection check task start + +2025-09-24 08:03:47,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:47,541 INFO Out dated connection ,size=0 + +2025-09-24 08:03:47,541 INFO Connection check task end + +2025-09-24 08:03:49,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:50,542 INFO Connection check task start + +2025-09-24 08:03:50,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:50,542 INFO Out dated connection ,size=0 + +2025-09-24 08:03:50,542 INFO Connection check task end + +2025-09-24 08:03:52,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:53,542 INFO Connection check task start + +2025-09-24 08:03:53,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:53,543 INFO Out dated connection ,size=0 + +2025-09-24 08:03:53,543 INFO Connection check task end + +2025-09-24 08:03:55,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:56,545 INFO Connection check task start + +2025-09-24 08:03:56,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:56,545 INFO Out dated connection ,size=0 + +2025-09-24 08:03:56,545 INFO Connection check task end + +2025-09-24 08:03:58,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:03:59,545 INFO Connection check task start + +2025-09-24 08:03:59,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:03:59,546 INFO Out dated connection ,size=0 + +2025-09-24 08:03:59,546 INFO Connection check task end + +2025-09-24 08:04:01,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:02,547 INFO Connection check task start + +2025-09-24 08:04:02,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:02,547 INFO Out dated connection ,size=0 + +2025-09-24 08:04:02,547 INFO Connection check task end + +2025-09-24 08:04:04,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:05,548 INFO Connection check task start + +2025-09-24 08:04:05,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:05,548 INFO Out dated connection ,size=0 + +2025-09-24 08:04:05,548 INFO Connection check task end + +2025-09-24 08:04:07,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:08,550 INFO Connection check task start + +2025-09-24 08:04:08,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:08,551 INFO Out dated connection ,size=0 + +2025-09-24 08:04:08,551 INFO Connection check task end + +2025-09-24 08:04:10,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:11,553 INFO Connection check task start + +2025-09-24 08:04:11,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:11,553 INFO Out dated connection ,size=0 + +2025-09-24 08:04:11,553 INFO Connection check task end + +2025-09-24 08:04:13,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:14,553 INFO Connection check task start + +2025-09-24 08:04:14,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:14,554 INFO Out dated connection ,size=0 + +2025-09-24 08:04:14,554 INFO Connection check task end + +2025-09-24 08:04:16,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:17,554 INFO Connection check task start + +2025-09-24 08:04:17,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:17,554 INFO Out dated connection ,size=0 + +2025-09-24 08:04:17,554 INFO Connection check task end + +2025-09-24 08:04:19,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:20,555 INFO Connection check task start + +2025-09-24 08:04:20,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:20,555 INFO Out dated connection ,size=0 + +2025-09-24 08:04:20,555 INFO Connection check task end + +2025-09-24 08:04:22,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:23,555 INFO Connection check task start + +2025-09-24 08:04:23,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:23,556 INFO Out dated connection ,size=0 + +2025-09-24 08:04:23,556 INFO Connection check task end + +2025-09-24 08:04:25,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:26,556 INFO Connection check task start + +2025-09-24 08:04:26,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:26,557 INFO Out dated connection ,size=0 + +2025-09-24 08:04:26,557 INFO Connection check task end + +2025-09-24 08:04:28,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:29,557 INFO Connection check task start + +2025-09-24 08:04:29,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:29,557 INFO Out dated connection ,size=0 + +2025-09-24 08:04:29,557 INFO Connection check task end + +2025-09-24 08:04:31,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:32,559 INFO Connection check task start + +2025-09-24 08:04:32,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:32,559 INFO Out dated connection ,size=0 + +2025-09-24 08:04:32,559 INFO Connection check task end + +2025-09-24 08:04:34,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:35,560 INFO Connection check task start + +2025-09-24 08:04:35,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:35,560 INFO Out dated connection ,size=0 + +2025-09-24 08:04:35,561 INFO Connection check task end + +2025-09-24 08:04:37,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:38,563 INFO Connection check task start + +2025-09-24 08:04:38,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:38,563 INFO Out dated connection ,size=0 + +2025-09-24 08:04:38,563 INFO Connection check task end + +2025-09-24 08:04:40,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:41,563 INFO Connection check task start + +2025-09-24 08:04:41,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:41,564 INFO Out dated connection ,size=0 + +2025-09-24 08:04:41,564 INFO Connection check task end + +2025-09-24 08:04:43,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:44,565 INFO Connection check task start + +2025-09-24 08:04:44,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:44,565 INFO Out dated connection ,size=0 + +2025-09-24 08:04:44,565 INFO Connection check task end + +2025-09-24 08:04:46,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:47,566 INFO Connection check task start + +2025-09-24 08:04:47,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:47,566 INFO Out dated connection ,size=0 + +2025-09-24 08:04:47,566 INFO Connection check task end + +2025-09-24 08:04:49,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:50,568 INFO Connection check task start + +2025-09-24 08:04:50,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:50,568 INFO Out dated connection ,size=0 + +2025-09-24 08:04:50,568 INFO Connection check task end + +2025-09-24 08:04:52,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:53,568 INFO Connection check task start + +2025-09-24 08:04:53,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:53,569 INFO Out dated connection ,size=0 + +2025-09-24 08:04:53,569 INFO Connection check task end + +2025-09-24 08:04:55,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:56,571 INFO Connection check task start + +2025-09-24 08:04:56,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:56,571 INFO Out dated connection ,size=0 + +2025-09-24 08:04:56,571 INFO Connection check task end + +2025-09-24 08:04:58,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:04:59,572 INFO Connection check task start + +2025-09-24 08:04:59,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:04:59,572 INFO Out dated connection ,size=0 + +2025-09-24 08:04:59,572 INFO Connection check task end + +2025-09-24 08:05:01,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:02,573 INFO Connection check task start + +2025-09-24 08:05:02,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:02,573 INFO Out dated connection ,size=0 + +2025-09-24 08:05:02,573 INFO Connection check task end + +2025-09-24 08:05:04,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:05,574 INFO Connection check task start + +2025-09-24 08:05:05,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:05,574 INFO Out dated connection ,size=0 + +2025-09-24 08:05:05,574 INFO Connection check task end + +2025-09-24 08:05:07,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:08,576 INFO Connection check task start + +2025-09-24 08:05:08,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:08,576 INFO Out dated connection ,size=0 + +2025-09-24 08:05:08,576 INFO Connection check task end + +2025-09-24 08:05:10,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:11,576 INFO Connection check task start + +2025-09-24 08:05:11,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:11,576 INFO Out dated connection ,size=0 + +2025-09-24 08:05:11,576 INFO Connection check task end + +2025-09-24 08:05:13,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:14,577 INFO Connection check task start + +2025-09-24 08:05:14,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:14,577 INFO Out dated connection ,size=0 + +2025-09-24 08:05:14,577 INFO Connection check task end + +2025-09-24 08:05:16,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:17,578 INFO Connection check task start + +2025-09-24 08:05:17,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:17,578 INFO Out dated connection ,size=0 + +2025-09-24 08:05:17,578 INFO Connection check task end + +2025-09-24 08:05:19,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:20,579 INFO Connection check task start + +2025-09-24 08:05:20,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:20,579 INFO Out dated connection ,size=0 + +2025-09-24 08:05:20,579 INFO Connection check task end + +2025-09-24 08:05:22,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:23,581 INFO Connection check task start + +2025-09-24 08:05:23,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:23,581 INFO Out dated connection ,size=0 + +2025-09-24 08:05:23,581 INFO Connection check task end + +2025-09-24 08:05:25,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:26,582 INFO Connection check task start + +2025-09-24 08:05:26,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:26,582 INFO Out dated connection ,size=0 + +2025-09-24 08:05:26,582 INFO Connection check task end + +2025-09-24 08:05:28,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:29,584 INFO Connection check task start + +2025-09-24 08:05:29,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:29,584 INFO Out dated connection ,size=0 + +2025-09-24 08:05:29,584 INFO Connection check task end + +2025-09-24 08:05:31,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:32,586 INFO Connection check task start + +2025-09-24 08:05:32,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:32,586 INFO Out dated connection ,size=0 + +2025-09-24 08:05:32,586 INFO Connection check task end + +2025-09-24 08:05:34,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:35,589 INFO Connection check task start + +2025-09-24 08:05:35,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:35,589 INFO Out dated connection ,size=0 + +2025-09-24 08:05:35,589 INFO Connection check task end + +2025-09-24 08:05:37,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:38,589 INFO Connection check task start + +2025-09-24 08:05:38,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:38,590 INFO Out dated connection ,size=0 + +2025-09-24 08:05:38,590 INFO Connection check task end + +2025-09-24 08:05:40,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:41,590 INFO Connection check task start + +2025-09-24 08:05:41,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:41,590 INFO Out dated connection ,size=0 + +2025-09-24 08:05:41,590 INFO Connection check task end + +2025-09-24 08:05:43,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:44,591 INFO Connection check task start + +2025-09-24 08:05:44,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:44,591 INFO Out dated connection ,size=0 + +2025-09-24 08:05:44,591 INFO Connection check task end + +2025-09-24 08:05:46,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:47,592 INFO Connection check task start + +2025-09-24 08:05:47,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:47,592 INFO Out dated connection ,size=0 + +2025-09-24 08:05:47,592 INFO Connection check task end + +2025-09-24 08:05:49,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:50,592 INFO Connection check task start + +2025-09-24 08:05:50,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:50,592 INFO Out dated connection ,size=0 + +2025-09-24 08:05:50,592 INFO Connection check task end + +2025-09-24 08:05:52,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:53,594 INFO Connection check task start + +2025-09-24 08:05:53,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:53,594 INFO Out dated connection ,size=0 + +2025-09-24 08:05:53,594 INFO Connection check task end + +2025-09-24 08:05:55,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:56,596 INFO Connection check task start + +2025-09-24 08:05:56,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:56,596 INFO Out dated connection ,size=0 + +2025-09-24 08:05:56,596 INFO Connection check task end + +2025-09-24 08:05:58,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:05:59,596 INFO Connection check task start + +2025-09-24 08:05:59,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:05:59,596 INFO Out dated connection ,size=0 + +2025-09-24 08:05:59,596 INFO Connection check task end + +2025-09-24 08:06:01,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:02,597 INFO Connection check task start + +2025-09-24 08:06:02,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:02,597 INFO Out dated connection ,size=0 + +2025-09-24 08:06:02,598 INFO Connection check task end + +2025-09-24 08:06:04,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:05,600 INFO Connection check task start + +2025-09-24 08:06:05,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:05,600 INFO Out dated connection ,size=0 + +2025-09-24 08:06:05,600 INFO Connection check task end + +2025-09-24 08:06:07,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:08,600 INFO Connection check task start + +2025-09-24 08:06:08,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:08,600 INFO Out dated connection ,size=0 + +2025-09-24 08:06:08,601 INFO Connection check task end + +2025-09-24 08:06:10,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:11,603 INFO Connection check task start + +2025-09-24 08:06:11,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:11,603 INFO Out dated connection ,size=0 + +2025-09-24 08:06:11,603 INFO Connection check task end + +2025-09-24 08:06:13,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:14,603 INFO Connection check task start + +2025-09-24 08:06:14,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:14,603 INFO Out dated connection ,size=0 + +2025-09-24 08:06:14,603 INFO Connection check task end + +2025-09-24 08:06:16,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:17,606 INFO Connection check task start + +2025-09-24 08:06:17,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:17,606 INFO Out dated connection ,size=0 + +2025-09-24 08:06:17,606 INFO Connection check task end + +2025-09-24 08:06:19,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:20,606 INFO Connection check task start + +2025-09-24 08:06:20,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:20,606 INFO Out dated connection ,size=0 + +2025-09-24 08:06:20,606 INFO Connection check task end + +2025-09-24 08:06:22,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:23,607 INFO Connection check task start + +2025-09-24 08:06:23,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:23,607 INFO Out dated connection ,size=0 + +2025-09-24 08:06:23,607 INFO Connection check task end + +2025-09-24 08:06:25,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:26,607 INFO Connection check task start + +2025-09-24 08:06:26,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:26,607 INFO Out dated connection ,size=0 + +2025-09-24 08:06:26,607 INFO Connection check task end + +2025-09-24 08:06:28,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:29,608 INFO Connection check task start + +2025-09-24 08:06:29,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:29,608 INFO Out dated connection ,size=0 + +2025-09-24 08:06:29,608 INFO Connection check task end + +2025-09-24 08:06:31,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:32,610 INFO Connection check task start + +2025-09-24 08:06:32,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:32,610 INFO Out dated connection ,size=0 + +2025-09-24 08:06:32,610 INFO Connection check task end + +2025-09-24 08:06:34,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:35,612 INFO Connection check task start + +2025-09-24 08:06:35,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:35,612 INFO Out dated connection ,size=0 + +2025-09-24 08:06:35,612 INFO Connection check task end + +2025-09-24 08:06:37,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:38,614 INFO Connection check task start + +2025-09-24 08:06:38,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:38,614 INFO Out dated connection ,size=0 + +2025-09-24 08:06:38,614 INFO Connection check task end + +2025-09-24 08:06:40,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:41,616 INFO Connection check task start + +2025-09-24 08:06:41,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:41,617 INFO Out dated connection ,size=0 + +2025-09-24 08:06:41,617 INFO Connection check task end + +2025-09-24 08:06:43,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:44,617 INFO Connection check task start + +2025-09-24 08:06:44,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:44,617 INFO Out dated connection ,size=0 + +2025-09-24 08:06:44,617 INFO Connection check task end + +2025-09-24 08:06:46,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:47,618 INFO Connection check task start + +2025-09-24 08:06:47,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:47,619 INFO Out dated connection ,size=0 + +2025-09-24 08:06:47,619 INFO Connection check task end + +2025-09-24 08:06:49,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:50,621 INFO Connection check task start + +2025-09-24 08:06:50,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:50,621 INFO Out dated connection ,size=0 + +2025-09-24 08:06:50,621 INFO Connection check task end + +2025-09-24 08:06:52,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:53,621 INFO Connection check task start + +2025-09-24 08:06:53,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:53,621 INFO Out dated connection ,size=0 + +2025-09-24 08:06:53,621 INFO Connection check task end + +2025-09-24 08:06:55,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:56,622 INFO Connection check task start + +2025-09-24 08:06:56,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:56,622 INFO Out dated connection ,size=0 + +2025-09-24 08:06:56,622 INFO Connection check task end + +2025-09-24 08:06:58,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:06:59,623 INFO Connection check task start + +2025-09-24 08:06:59,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:06:59,623 INFO Out dated connection ,size=0 + +2025-09-24 08:06:59,623 INFO Connection check task end + +2025-09-24 08:07:01,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:02,623 INFO Connection check task start + +2025-09-24 08:07:02,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:02,624 INFO Out dated connection ,size=0 + +2025-09-24 08:07:02,624 INFO Connection check task end + +2025-09-24 08:07:04,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:05,626 INFO Connection check task start + +2025-09-24 08:07:05,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:05,626 INFO Out dated connection ,size=0 + +2025-09-24 08:07:05,626 INFO Connection check task end + +2025-09-24 08:07:07,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:08,626 INFO Connection check task start + +2025-09-24 08:07:08,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:08,626 INFO Out dated connection ,size=0 + +2025-09-24 08:07:08,626 INFO Connection check task end + +2025-09-24 08:07:10,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:11,628 INFO Connection check task start + +2025-09-24 08:07:11,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:11,629 INFO Out dated connection ,size=0 + +2025-09-24 08:07:11,629 INFO Connection check task end + +2025-09-24 08:07:13,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:14,630 INFO Connection check task start + +2025-09-24 08:07:14,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:14,630 INFO Out dated connection ,size=0 + +2025-09-24 08:07:14,630 INFO Connection check task end + +2025-09-24 08:07:16,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:17,632 INFO Connection check task start + +2025-09-24 08:07:17,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:17,632 INFO Out dated connection ,size=0 + +2025-09-24 08:07:17,632 INFO Connection check task end + +2025-09-24 08:07:19,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:20,634 INFO Connection check task start + +2025-09-24 08:07:20,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:20,634 INFO Out dated connection ,size=0 + +2025-09-24 08:07:20,634 INFO Connection check task end + +2025-09-24 08:07:22,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:23,636 INFO Connection check task start + +2025-09-24 08:07:23,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:23,637 INFO Out dated connection ,size=0 + +2025-09-24 08:07:23,637 INFO Connection check task end + +2025-09-24 08:07:25,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:26,637 INFO Connection check task start + +2025-09-24 08:07:26,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:26,637 INFO Out dated connection ,size=0 + +2025-09-24 08:07:26,637 INFO Connection check task end + +2025-09-24 08:07:28,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:29,637 INFO Connection check task start + +2025-09-24 08:07:29,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:29,637 INFO Out dated connection ,size=0 + +2025-09-24 08:07:29,637 INFO Connection check task end + +2025-09-24 08:07:31,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:32,638 INFO Connection check task start + +2025-09-24 08:07:32,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:32,638 INFO Out dated connection ,size=0 + +2025-09-24 08:07:32,638 INFO Connection check task end + +2025-09-24 08:07:34,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:35,638 INFO Connection check task start + +2025-09-24 08:07:35,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:35,639 INFO Out dated connection ,size=0 + +2025-09-24 08:07:35,639 INFO Connection check task end + +2025-09-24 08:07:37,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:38,639 INFO Connection check task start + +2025-09-24 08:07:38,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:38,640 INFO Out dated connection ,size=0 + +2025-09-24 08:07:38,640 INFO Connection check task end + +2025-09-24 08:07:40,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:41,640 INFO Connection check task start + +2025-09-24 08:07:41,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:41,641 INFO Out dated connection ,size=0 + +2025-09-24 08:07:41,641 INFO Connection check task end + +2025-09-24 08:07:43,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:44,641 INFO Connection check task start + +2025-09-24 08:07:44,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:44,641 INFO Out dated connection ,size=0 + +2025-09-24 08:07:44,641 INFO Connection check task end + +2025-09-24 08:07:46,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:47,643 INFO Connection check task start + +2025-09-24 08:07:47,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:47,643 INFO Out dated connection ,size=0 + +2025-09-24 08:07:47,643 INFO Connection check task end + +2025-09-24 08:07:49,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:50,645 INFO Connection check task start + +2025-09-24 08:07:50,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:50,645 INFO Out dated connection ,size=0 + +2025-09-24 08:07:50,645 INFO Connection check task end + +2025-09-24 08:07:52,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:53,645 INFO Connection check task start + +2025-09-24 08:07:53,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:53,645 INFO Out dated connection ,size=0 + +2025-09-24 08:07:53,646 INFO Connection check task end + +2025-09-24 08:07:55,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:56,646 INFO Connection check task start + +2025-09-24 08:07:56,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:56,646 INFO Out dated connection ,size=0 + +2025-09-24 08:07:56,646 INFO Connection check task end + +2025-09-24 08:07:58,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:07:59,648 INFO Connection check task start + +2025-09-24 08:07:59,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:07:59,648 INFO Out dated connection ,size=0 + +2025-09-24 08:07:59,648 INFO Connection check task end + +2025-09-24 08:08:01,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:02,648 INFO Connection check task start + +2025-09-24 08:08:02,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:02,649 INFO Out dated connection ,size=0 + +2025-09-24 08:08:02,649 INFO Connection check task end + +2025-09-24 08:08:04,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:05,651 INFO Connection check task start + +2025-09-24 08:08:05,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:05,651 INFO Out dated connection ,size=0 + +2025-09-24 08:08:05,651 INFO Connection check task end + +2025-09-24 08:08:07,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:08,652 INFO Connection check task start + +2025-09-24 08:08:08,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:08,652 INFO Out dated connection ,size=0 + +2025-09-24 08:08:08,652 INFO Connection check task end + +2025-09-24 08:08:10,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:11,655 INFO Connection check task start + +2025-09-24 08:08:11,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:11,655 INFO Out dated connection ,size=0 + +2025-09-24 08:08:11,655 INFO Connection check task end + +2025-09-24 08:08:13,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:14,657 INFO Connection check task start + +2025-09-24 08:08:14,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:14,657 INFO Out dated connection ,size=0 + +2025-09-24 08:08:14,657 INFO Connection check task end + +2025-09-24 08:08:16,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:17,658 INFO Connection check task start + +2025-09-24 08:08:17,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:17,658 INFO Out dated connection ,size=0 + +2025-09-24 08:08:17,658 INFO Connection check task end + +2025-09-24 08:08:19,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:20,659 INFO Connection check task start + +2025-09-24 08:08:20,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:20,659 INFO Out dated connection ,size=0 + +2025-09-24 08:08:20,659 INFO Connection check task end + +2025-09-24 08:08:22,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:23,659 INFO Connection check task start + +2025-09-24 08:08:23,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:23,659 INFO Out dated connection ,size=0 + +2025-09-24 08:08:23,660 INFO Connection check task end + +2025-09-24 08:08:25,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:26,660 INFO Connection check task start + +2025-09-24 08:08:26,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:26,660 INFO Out dated connection ,size=0 + +2025-09-24 08:08:26,660 INFO Connection check task end + +2025-09-24 08:08:28,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:29,662 INFO Connection check task start + +2025-09-24 08:08:29,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:29,663 INFO Out dated connection ,size=0 + +2025-09-24 08:08:29,663 INFO Connection check task end + +2025-09-24 08:08:31,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:32,663 INFO Connection check task start + +2025-09-24 08:08:32,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:32,663 INFO Out dated connection ,size=0 + +2025-09-24 08:08:32,663 INFO Connection check task end + +2025-09-24 08:08:34,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:35,665 INFO Connection check task start + +2025-09-24 08:08:35,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:35,665 INFO Out dated connection ,size=0 + +2025-09-24 08:08:35,665 INFO Connection check task end + +2025-09-24 08:08:37,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:38,665 INFO Connection check task start + +2025-09-24 08:08:38,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:38,665 INFO Out dated connection ,size=0 + +2025-09-24 08:08:38,665 INFO Connection check task end + +2025-09-24 08:08:40,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:41,667 INFO Connection check task start + +2025-09-24 08:08:41,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:41,667 INFO Out dated connection ,size=0 + +2025-09-24 08:08:41,667 INFO Connection check task end + +2025-09-24 08:08:43,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:44,670 INFO Connection check task start + +2025-09-24 08:08:44,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:44,670 INFO Out dated connection ,size=0 + +2025-09-24 08:08:44,670 INFO Connection check task end + +2025-09-24 08:08:46,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:47,671 INFO Connection check task start + +2025-09-24 08:08:47,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:47,671 INFO Out dated connection ,size=0 + +2025-09-24 08:08:47,671 INFO Connection check task end + +2025-09-24 08:08:49,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:50,672 INFO Connection check task start + +2025-09-24 08:08:50,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:50,672 INFO Out dated connection ,size=0 + +2025-09-24 08:08:50,672 INFO Connection check task end + +2025-09-24 08:08:52,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:53,672 INFO Connection check task start + +2025-09-24 08:08:53,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:53,673 INFO Out dated connection ,size=0 + +2025-09-24 08:08:53,673 INFO Connection check task end + +2025-09-24 08:08:55,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:56,675 INFO Connection check task start + +2025-09-24 08:08:56,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:56,675 INFO Out dated connection ,size=0 + +2025-09-24 08:08:56,675 INFO Connection check task end + +2025-09-24 08:08:58,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:08:59,677 INFO Connection check task start + +2025-09-24 08:08:59,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:08:59,677 INFO Out dated connection ,size=0 + +2025-09-24 08:08:59,677 INFO Connection check task end + +2025-09-24 08:09:01,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:02,678 INFO Connection check task start + +2025-09-24 08:09:02,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:02,678 INFO Out dated connection ,size=0 + +2025-09-24 08:09:02,678 INFO Connection check task end + +2025-09-24 08:09:04,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:05,679 INFO Connection check task start + +2025-09-24 08:09:05,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:05,680 INFO Out dated connection ,size=0 + +2025-09-24 08:09:05,680 INFO Connection check task end + +2025-09-24 08:09:07,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:08,680 INFO Connection check task start + +2025-09-24 08:09:08,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:08,680 INFO Out dated connection ,size=0 + +2025-09-24 08:09:08,680 INFO Connection check task end + +2025-09-24 08:09:10,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:11,681 INFO Connection check task start + +2025-09-24 08:09:11,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:11,681 INFO Out dated connection ,size=0 + +2025-09-24 08:09:11,681 INFO Connection check task end + +2025-09-24 08:09:13,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:14,681 INFO Connection check task start + +2025-09-24 08:09:14,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:14,681 INFO Out dated connection ,size=0 + +2025-09-24 08:09:14,681 INFO Connection check task end + +2025-09-24 08:09:16,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:17,683 INFO Connection check task start + +2025-09-24 08:09:17,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:17,683 INFO Out dated connection ,size=0 + +2025-09-24 08:09:17,683 INFO Connection check task end + +2025-09-24 08:09:19,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:20,683 INFO Connection check task start + +2025-09-24 08:09:20,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:20,683 INFO Out dated connection ,size=0 + +2025-09-24 08:09:20,683 INFO Connection check task end + +2025-09-24 08:09:22,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:23,684 INFO Connection check task start + +2025-09-24 08:09:23,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:23,684 INFO Out dated connection ,size=0 + +2025-09-24 08:09:23,684 INFO Connection check task end + +2025-09-24 08:09:25,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:26,684 INFO Connection check task start + +2025-09-24 08:09:26,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:26,685 INFO Out dated connection ,size=0 + +2025-09-24 08:09:26,685 INFO Connection check task end + +2025-09-24 08:09:28,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:29,687 INFO Connection check task start + +2025-09-24 08:09:29,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:29,687 INFO Out dated connection ,size=0 + +2025-09-24 08:09:29,687 INFO Connection check task end + +2025-09-24 08:09:31,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:32,689 INFO Connection check task start + +2025-09-24 08:09:32,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:32,689 INFO Out dated connection ,size=0 + +2025-09-24 08:09:32,689 INFO Connection check task end + +2025-09-24 08:09:34,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:35,691 INFO Connection check task start + +2025-09-24 08:09:35,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:35,691 INFO Out dated connection ,size=0 + +2025-09-24 08:09:35,691 INFO Connection check task end + +2025-09-24 08:09:37,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:38,692 INFO Connection check task start + +2025-09-24 08:09:38,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:38,692 INFO Out dated connection ,size=0 + +2025-09-24 08:09:38,692 INFO Connection check task end + +2025-09-24 08:09:40,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:41,694 INFO Connection check task start + +2025-09-24 08:09:41,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:41,694 INFO Out dated connection ,size=0 + +2025-09-24 08:09:41,694 INFO Connection check task end + +2025-09-24 08:09:43,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:44,694 INFO Connection check task start + +2025-09-24 08:09:44,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:44,695 INFO Out dated connection ,size=0 + +2025-09-24 08:09:44,695 INFO Connection check task end + +2025-09-24 08:09:46,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:47,695 INFO Connection check task start + +2025-09-24 08:09:47,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:47,696 INFO Out dated connection ,size=0 + +2025-09-24 08:09:47,696 INFO Connection check task end + +2025-09-24 08:09:49,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:50,696 INFO Connection check task start + +2025-09-24 08:09:50,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:50,696 INFO Out dated connection ,size=0 + +2025-09-24 08:09:50,696 INFO Connection check task end + +2025-09-24 08:09:52,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:53,698 INFO Connection check task start + +2025-09-24 08:09:53,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:53,698 INFO Out dated connection ,size=0 + +2025-09-24 08:09:53,698 INFO Connection check task end + +2025-09-24 08:09:55,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:56,699 INFO Connection check task start + +2025-09-24 08:09:56,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:56,700 INFO Out dated connection ,size=0 + +2025-09-24 08:09:56,700 INFO Connection check task end + +2025-09-24 08:09:58,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:09:59,700 INFO Connection check task start + +2025-09-24 08:09:59,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:09:59,700 INFO Out dated connection ,size=0 + +2025-09-24 08:09:59,700 INFO Connection check task end + +2025-09-24 08:10:01,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:02,701 INFO Connection check task start + +2025-09-24 08:10:02,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:02,701 INFO Out dated connection ,size=0 + +2025-09-24 08:10:02,701 INFO Connection check task end + +2025-09-24 08:10:04,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:05,703 INFO Connection check task start + +2025-09-24 08:10:05,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:05,704 INFO Out dated connection ,size=0 + +2025-09-24 08:10:05,704 INFO Connection check task end + +2025-09-24 08:10:07,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:08,704 INFO Connection check task start + +2025-09-24 08:10:08,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:08,704 INFO Out dated connection ,size=0 + +2025-09-24 08:10:08,704 INFO Connection check task end + +2025-09-24 08:10:10,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:11,706 INFO Connection check task start + +2025-09-24 08:10:11,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:11,706 INFO Out dated connection ,size=0 + +2025-09-24 08:10:11,706 INFO Connection check task end + +2025-09-24 08:10:13,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:14,707 INFO Connection check task start + +2025-09-24 08:10:14,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:14,707 INFO Out dated connection ,size=0 + +2025-09-24 08:10:14,707 INFO Connection check task end + +2025-09-24 08:10:16,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:17,707 INFO Connection check task start + +2025-09-24 08:10:17,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:17,707 INFO Out dated connection ,size=0 + +2025-09-24 08:10:17,707 INFO Connection check task end + +2025-09-24 08:10:19,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:20,708 INFO Connection check task start + +2025-09-24 08:10:20,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:20,708 INFO Out dated connection ,size=0 + +2025-09-24 08:10:20,709 INFO Connection check task end + +2025-09-24 08:10:22,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:23,709 INFO Connection check task start + +2025-09-24 08:10:23,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:23,709 INFO Out dated connection ,size=0 + +2025-09-24 08:10:23,709 INFO Connection check task end + +2025-09-24 08:10:25,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:26,709 INFO Connection check task start + +2025-09-24 08:10:26,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:26,709 INFO Out dated connection ,size=0 + +2025-09-24 08:10:26,710 INFO Connection check task end + +2025-09-24 08:10:28,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:29,710 INFO Connection check task start + +2025-09-24 08:10:29,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:29,710 INFO Out dated connection ,size=0 + +2025-09-24 08:10:29,710 INFO Connection check task end + +2025-09-24 08:10:31,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:32,710 INFO Connection check task start + +2025-09-24 08:10:32,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:32,711 INFO Out dated connection ,size=0 + +2025-09-24 08:10:32,711 INFO Connection check task end + +2025-09-24 08:10:34,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:35,712 INFO Connection check task start + +2025-09-24 08:10:35,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:35,712 INFO Out dated connection ,size=0 + +2025-09-24 08:10:35,712 INFO Connection check task end + +2025-09-24 08:10:37,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:38,714 INFO Connection check task start + +2025-09-24 08:10:38,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:38,714 INFO Out dated connection ,size=0 + +2025-09-24 08:10:38,714 INFO Connection check task end + +2025-09-24 08:10:40,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:41,716 INFO Connection check task start + +2025-09-24 08:10:41,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:41,717 INFO Out dated connection ,size=0 + +2025-09-24 08:10:41,717 INFO Connection check task end + +2025-09-24 08:10:43,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:44,718 INFO Connection check task start + +2025-09-24 08:10:44,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:44,718 INFO Out dated connection ,size=0 + +2025-09-24 08:10:44,718 INFO Connection check task end + +2025-09-24 08:10:46,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:47,719 INFO Connection check task start + +2025-09-24 08:10:47,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:47,719 INFO Out dated connection ,size=0 + +2025-09-24 08:10:47,719 INFO Connection check task end + +2025-09-24 08:10:49,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:50,722 INFO Connection check task start + +2025-09-24 08:10:50,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:50,722 INFO Out dated connection ,size=0 + +2025-09-24 08:10:50,722 INFO Connection check task end + +2025-09-24 08:10:52,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:53,722 INFO Connection check task start + +2025-09-24 08:10:53,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:53,722 INFO Out dated connection ,size=0 + +2025-09-24 08:10:53,723 INFO Connection check task end + +2025-09-24 08:10:55,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:56,724 INFO Connection check task start + +2025-09-24 08:10:56,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:56,724 INFO Out dated connection ,size=0 + +2025-09-24 08:10:56,724 INFO Connection check task end + +2025-09-24 08:10:58,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:10:59,724 INFO Connection check task start + +2025-09-24 08:10:59,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:10:59,725 INFO Out dated connection ,size=0 + +2025-09-24 08:10:59,725 INFO Connection check task end + +2025-09-24 08:11:01,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:02,725 INFO Connection check task start + +2025-09-24 08:11:02,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:02,725 INFO Out dated connection ,size=0 + +2025-09-24 08:11:02,725 INFO Connection check task end + +2025-09-24 08:11:04,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:05,726 INFO Connection check task start + +2025-09-24 08:11:05,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:05,726 INFO Out dated connection ,size=0 + +2025-09-24 08:11:05,726 INFO Connection check task end + +2025-09-24 08:11:07,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:08,726 INFO Connection check task start + +2025-09-24 08:11:08,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:08,726 INFO Out dated connection ,size=0 + +2025-09-24 08:11:08,727 INFO Connection check task end + +2025-09-24 08:11:10,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:11,728 INFO Connection check task start + +2025-09-24 08:11:11,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:11,728 INFO Out dated connection ,size=0 + +2025-09-24 08:11:11,728 INFO Connection check task end + +2025-09-24 08:11:13,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:14,730 INFO Connection check task start + +2025-09-24 08:11:14,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:14,730 INFO Out dated connection ,size=0 + +2025-09-24 08:11:14,730 INFO Connection check task end + +2025-09-24 08:11:16,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:17,732 INFO Connection check task start + +2025-09-24 08:11:17,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:17,732 INFO Out dated connection ,size=0 + +2025-09-24 08:11:17,733 INFO Connection check task end + +2025-09-24 08:11:19,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:20,734 INFO Connection check task start + +2025-09-24 08:11:20,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:20,734 INFO Out dated connection ,size=0 + +2025-09-24 08:11:20,734 INFO Connection check task end + +2025-09-24 08:11:22,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:23,735 INFO Connection check task start + +2025-09-24 08:11:23,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:23,735 INFO Out dated connection ,size=0 + +2025-09-24 08:11:23,735 INFO Connection check task end + +2025-09-24 08:11:25,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:26,738 INFO Connection check task start + +2025-09-24 08:11:26,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:26,738 INFO Out dated connection ,size=0 + +2025-09-24 08:11:26,738 INFO Connection check task end + +2025-09-24 08:11:28,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:29,738 INFO Connection check task start + +2025-09-24 08:11:29,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:29,739 INFO Out dated connection ,size=0 + +2025-09-24 08:11:29,739 INFO Connection check task end + +2025-09-24 08:11:31,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:32,741 INFO Connection check task start + +2025-09-24 08:11:32,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:32,741 INFO Out dated connection ,size=0 + +2025-09-24 08:11:32,741 INFO Connection check task end + +2025-09-24 08:11:34,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:35,743 INFO Connection check task start + +2025-09-24 08:11:35,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:35,743 INFO Out dated connection ,size=0 + +2025-09-24 08:11:35,743 INFO Connection check task end + +2025-09-24 08:11:37,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:38,745 INFO Connection check task start + +2025-09-24 08:11:38,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:38,745 INFO Out dated connection ,size=0 + +2025-09-24 08:11:38,745 INFO Connection check task end + +2025-09-24 08:11:40,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:41,746 INFO Connection check task start + +2025-09-24 08:11:41,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:41,746 INFO Out dated connection ,size=0 + +2025-09-24 08:11:41,746 INFO Connection check task end + +2025-09-24 08:11:43,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:44,747 INFO Connection check task start + +2025-09-24 08:11:44,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:44,748 INFO Out dated connection ,size=0 + +2025-09-24 08:11:44,748 INFO Connection check task end + +2025-09-24 08:11:46,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:47,749 INFO Connection check task start + +2025-09-24 08:11:47,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:47,750 INFO Out dated connection ,size=0 + +2025-09-24 08:11:47,750 INFO Connection check task end + +2025-09-24 08:11:49,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:50,751 INFO Connection check task start + +2025-09-24 08:11:50,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:50,751 INFO Out dated connection ,size=0 + +2025-09-24 08:11:50,751 INFO Connection check task end + +2025-09-24 08:11:52,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:53,752 INFO Connection check task start + +2025-09-24 08:11:53,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:53,752 INFO Out dated connection ,size=0 + +2025-09-24 08:11:53,752 INFO Connection check task end + +2025-09-24 08:11:55,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:56,752 INFO Connection check task start + +2025-09-24 08:11:56,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:56,752 INFO Out dated connection ,size=0 + +2025-09-24 08:11:56,753 INFO Connection check task end + +2025-09-24 08:11:58,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:11:59,755 INFO Connection check task start + +2025-09-24 08:11:59,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:11:59,755 INFO Out dated connection ,size=0 + +2025-09-24 08:11:59,755 INFO Connection check task end + +2025-09-24 08:12:01,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:02,755 INFO Connection check task start + +2025-09-24 08:12:02,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:02,756 INFO Out dated connection ,size=0 + +2025-09-24 08:12:02,756 INFO Connection check task end + +2025-09-24 08:12:04,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:05,757 INFO Connection check task start + +2025-09-24 08:12:05,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:05,758 INFO Out dated connection ,size=0 + +2025-09-24 08:12:05,758 INFO Connection check task end + +2025-09-24 08:12:07,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:08,759 INFO Connection check task start + +2025-09-24 08:12:08,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:08,759 INFO Out dated connection ,size=0 + +2025-09-24 08:12:08,759 INFO Connection check task end + +2025-09-24 08:12:10,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:11,761 INFO Connection check task start + +2025-09-24 08:12:11,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:11,762 INFO Out dated connection ,size=0 + +2025-09-24 08:12:11,762 INFO Connection check task end + +2025-09-24 08:12:13,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:14,762 INFO Connection check task start + +2025-09-24 08:12:14,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:14,762 INFO Out dated connection ,size=0 + +2025-09-24 08:12:14,762 INFO Connection check task end + +2025-09-24 08:12:16,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:17,764 INFO Connection check task start + +2025-09-24 08:12:17,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:17,764 INFO Out dated connection ,size=0 + +2025-09-24 08:12:17,764 INFO Connection check task end + +2025-09-24 08:12:19,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:20,765 INFO Connection check task start + +2025-09-24 08:12:20,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:20,765 INFO Out dated connection ,size=0 + +2025-09-24 08:12:20,765 INFO Connection check task end + +2025-09-24 08:12:22,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:23,766 INFO Connection check task start + +2025-09-24 08:12:23,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:23,766 INFO Out dated connection ,size=0 + +2025-09-24 08:12:23,766 INFO Connection check task end + +2025-09-24 08:12:25,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:26,766 INFO Connection check task start + +2025-09-24 08:12:26,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:26,767 INFO Out dated connection ,size=0 + +2025-09-24 08:12:26,767 INFO Connection check task end + +2025-09-24 08:12:28,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:29,767 INFO Connection check task start + +2025-09-24 08:12:29,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:29,767 INFO Out dated connection ,size=0 + +2025-09-24 08:12:29,767 INFO Connection check task end + +2025-09-24 08:12:31,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:32,768 INFO Connection check task start + +2025-09-24 08:12:32,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:32,768 INFO Out dated connection ,size=0 + +2025-09-24 08:12:32,768 INFO Connection check task end + +2025-09-24 08:12:34,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:35,770 INFO Connection check task start + +2025-09-24 08:12:35,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:35,770 INFO Out dated connection ,size=0 + +2025-09-24 08:12:35,770 INFO Connection check task end + +2025-09-24 08:12:37,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:38,771 INFO Connection check task start + +2025-09-24 08:12:38,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:38,771 INFO Out dated connection ,size=0 + +2025-09-24 08:12:38,772 INFO Connection check task end + +2025-09-24 08:12:40,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:41,772 INFO Connection check task start + +2025-09-24 08:12:41,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:41,772 INFO Out dated connection ,size=0 + +2025-09-24 08:12:41,772 INFO Connection check task end + +2025-09-24 08:12:43,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:44,774 INFO Connection check task start + +2025-09-24 08:12:44,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:44,774 INFO Out dated connection ,size=0 + +2025-09-24 08:12:44,774 INFO Connection check task end + +2025-09-24 08:12:46,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:47,777 INFO Connection check task start + +2025-09-24 08:12:47,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:47,777 INFO Out dated connection ,size=0 + +2025-09-24 08:12:47,777 INFO Connection check task end + +2025-09-24 08:12:49,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:50,779 INFO Connection check task start + +2025-09-24 08:12:50,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:50,779 INFO Out dated connection ,size=0 + +2025-09-24 08:12:50,779 INFO Connection check task end + +2025-09-24 08:12:52,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:53,779 INFO Connection check task start + +2025-09-24 08:12:53,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:53,780 INFO Out dated connection ,size=0 + +2025-09-24 08:12:53,780 INFO Connection check task end + +2025-09-24 08:12:55,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:56,782 INFO Connection check task start + +2025-09-24 08:12:56,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:56,782 INFO Out dated connection ,size=0 + +2025-09-24 08:12:56,782 INFO Connection check task end + +2025-09-24 08:12:58,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:12:59,783 INFO Connection check task start + +2025-09-24 08:12:59,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:12:59,783 INFO Out dated connection ,size=0 + +2025-09-24 08:12:59,783 INFO Connection check task end + +2025-09-24 08:13:01,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:02,783 INFO Connection check task start + +2025-09-24 08:13:02,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:02,783 INFO Out dated connection ,size=0 + +2025-09-24 08:13:02,783 INFO Connection check task end + +2025-09-24 08:13:04,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:05,783 INFO Connection check task start + +2025-09-24 08:13:05,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:05,784 INFO Out dated connection ,size=0 + +2025-09-24 08:13:05,784 INFO Connection check task end + +2025-09-24 08:13:07,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:08,786 INFO Connection check task start + +2025-09-24 08:13:08,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:08,786 INFO Out dated connection ,size=0 + +2025-09-24 08:13:08,786 INFO Connection check task end + +2025-09-24 08:13:10,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:11,786 INFO Connection check task start + +2025-09-24 08:13:11,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:11,786 INFO Out dated connection ,size=0 + +2025-09-24 08:13:11,786 INFO Connection check task end + +2025-09-24 08:13:13,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:14,788 INFO Connection check task start + +2025-09-24 08:13:14,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:14,788 INFO Out dated connection ,size=0 + +2025-09-24 08:13:14,788 INFO Connection check task end + +2025-09-24 08:13:16,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:17,788 INFO Connection check task start + +2025-09-24 08:13:17,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:17,789 INFO Out dated connection ,size=0 + +2025-09-24 08:13:17,789 INFO Connection check task end + +2025-09-24 08:13:19,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:20,789 INFO Connection check task start + +2025-09-24 08:13:20,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:20,789 INFO Out dated connection ,size=0 + +2025-09-24 08:13:20,789 INFO Connection check task end + +2025-09-24 08:13:22,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:23,790 INFO Connection check task start + +2025-09-24 08:13:23,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:23,790 INFO Out dated connection ,size=0 + +2025-09-24 08:13:23,790 INFO Connection check task end + +2025-09-24 08:13:25,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:26,790 INFO Connection check task start + +2025-09-24 08:13:26,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:26,790 INFO Out dated connection ,size=0 + +2025-09-24 08:13:26,790 INFO Connection check task end + +2025-09-24 08:13:28,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:29,791 INFO Connection check task start + +2025-09-24 08:13:29,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:29,791 INFO Out dated connection ,size=0 + +2025-09-24 08:13:29,791 INFO Connection check task end + +2025-09-24 08:13:31,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:32,792 INFO Connection check task start + +2025-09-24 08:13:32,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:32,793 INFO Out dated connection ,size=0 + +2025-09-24 08:13:32,793 INFO Connection check task end + +2025-09-24 08:13:34,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:35,794 INFO Connection check task start + +2025-09-24 08:13:35,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:35,794 INFO Out dated connection ,size=0 + +2025-09-24 08:13:35,794 INFO Connection check task end + +2025-09-24 08:13:37,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:38,796 INFO Connection check task start + +2025-09-24 08:13:38,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:38,797 INFO Out dated connection ,size=0 + +2025-09-24 08:13:38,797 INFO Connection check task end + +2025-09-24 08:13:40,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:41,797 INFO Connection check task start + +2025-09-24 08:13:41,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:41,797 INFO Out dated connection ,size=0 + +2025-09-24 08:13:41,797 INFO Connection check task end + +2025-09-24 08:13:43,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:44,797 INFO Connection check task start + +2025-09-24 08:13:44,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:44,797 INFO Out dated connection ,size=0 + +2025-09-24 08:13:44,798 INFO Connection check task end + +2025-09-24 08:13:46,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:47,799 INFO Connection check task start + +2025-09-24 08:13:47,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:47,799 INFO Out dated connection ,size=0 + +2025-09-24 08:13:47,799 INFO Connection check task end + +2025-09-24 08:13:49,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:50,799 INFO Connection check task start + +2025-09-24 08:13:50,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:50,799 INFO Out dated connection ,size=0 + +2025-09-24 08:13:50,799 INFO Connection check task end + +2025-09-24 08:13:52,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:53,800 INFO Connection check task start + +2025-09-24 08:13:53,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:53,800 INFO Out dated connection ,size=0 + +2025-09-24 08:13:53,800 INFO Connection check task end + +2025-09-24 08:13:55,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:56,801 INFO Connection check task start + +2025-09-24 08:13:56,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:56,801 INFO Out dated connection ,size=0 + +2025-09-24 08:13:56,801 INFO Connection check task end + +2025-09-24 08:13:58,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:13:59,802 INFO Connection check task start + +2025-09-24 08:13:59,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:13:59,802 INFO Out dated connection ,size=0 + +2025-09-24 08:13:59,802 INFO Connection check task end + +2025-09-24 08:14:01,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:02,802 INFO Connection check task start + +2025-09-24 08:14:02,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:02,803 INFO Out dated connection ,size=0 + +2025-09-24 08:14:02,803 INFO Connection check task end + +2025-09-24 08:14:04,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:05,803 INFO Connection check task start + +2025-09-24 08:14:05,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:05,803 INFO Out dated connection ,size=0 + +2025-09-24 08:14:05,803 INFO Connection check task end + +2025-09-24 08:14:07,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:08,805 INFO Connection check task start + +2025-09-24 08:14:08,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:08,805 INFO Out dated connection ,size=0 + +2025-09-24 08:14:08,805 INFO Connection check task end + +2025-09-24 08:14:10,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:11,805 INFO Connection check task start + +2025-09-24 08:14:11,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:11,806 INFO Out dated connection ,size=0 + +2025-09-24 08:14:11,806 INFO Connection check task end + +2025-09-24 08:14:13,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:14,806 INFO Connection check task start + +2025-09-24 08:14:14,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:14,806 INFO Out dated connection ,size=0 + +2025-09-24 08:14:14,806 INFO Connection check task end + +2025-09-24 08:14:16,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:17,807 INFO Connection check task start + +2025-09-24 08:14:17,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:17,807 INFO Out dated connection ,size=0 + +2025-09-24 08:14:17,807 INFO Connection check task end + +2025-09-24 08:14:19,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:20,810 INFO Connection check task start + +2025-09-24 08:14:20,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:20,810 INFO Out dated connection ,size=0 + +2025-09-24 08:14:20,810 INFO Connection check task end + +2025-09-24 08:14:22,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:23,811 INFO Connection check task start + +2025-09-24 08:14:23,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:23,811 INFO Out dated connection ,size=0 + +2025-09-24 08:14:23,811 INFO Connection check task end + +2025-09-24 08:14:25,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:26,811 INFO Connection check task start + +2025-09-24 08:14:26,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:26,812 INFO Out dated connection ,size=0 + +2025-09-24 08:14:26,812 INFO Connection check task end + +2025-09-24 08:14:28,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:29,814 INFO Connection check task start + +2025-09-24 08:14:29,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:29,814 INFO Out dated connection ,size=0 + +2025-09-24 08:14:29,814 INFO Connection check task end + +2025-09-24 08:14:31,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:32,816 INFO Connection check task start + +2025-09-24 08:14:32,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:32,817 INFO Out dated connection ,size=0 + +2025-09-24 08:14:32,817 INFO Connection check task end + +2025-09-24 08:14:34,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:35,819 INFO Connection check task start + +2025-09-24 08:14:35,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:35,819 INFO Out dated connection ,size=0 + +2025-09-24 08:14:35,819 INFO Connection check task end + +2025-09-24 08:14:37,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:38,821 INFO Connection check task start + +2025-09-24 08:14:38,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:38,821 INFO Out dated connection ,size=0 + +2025-09-24 08:14:38,821 INFO Connection check task end + +2025-09-24 08:14:40,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:41,822 INFO Connection check task start + +2025-09-24 08:14:41,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:41,823 INFO Out dated connection ,size=0 + +2025-09-24 08:14:41,823 INFO Connection check task end + +2025-09-24 08:14:43,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:44,823 INFO Connection check task start + +2025-09-24 08:14:44,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:44,823 INFO Out dated connection ,size=0 + +2025-09-24 08:14:44,823 INFO Connection check task end + +2025-09-24 08:14:46,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:47,825 INFO Connection check task start + +2025-09-24 08:14:47,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:47,825 INFO Out dated connection ,size=0 + +2025-09-24 08:14:47,825 INFO Connection check task end + +2025-09-24 08:14:49,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:50,826 INFO Connection check task start + +2025-09-24 08:14:50,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:50,826 INFO Out dated connection ,size=0 + +2025-09-24 08:14:50,826 INFO Connection check task end + +2025-09-24 08:14:52,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:53,826 INFO Connection check task start + +2025-09-24 08:14:53,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:53,826 INFO Out dated connection ,size=0 + +2025-09-24 08:14:53,826 INFO Connection check task end + +2025-09-24 08:14:55,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:56,827 INFO Connection check task start + +2025-09-24 08:14:56,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:56,827 INFO Out dated connection ,size=0 + +2025-09-24 08:14:56,827 INFO Connection check task end + +2025-09-24 08:14:58,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:14:59,827 INFO Connection check task start + +2025-09-24 08:14:59,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:14:59,827 INFO Out dated connection ,size=0 + +2025-09-24 08:14:59,827 INFO Connection check task end + +2025-09-24 08:15:01,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:02,828 INFO Connection check task start + +2025-09-24 08:15:02,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:02,828 INFO Out dated connection ,size=0 + +2025-09-24 08:15:02,828 INFO Connection check task end + +2025-09-24 08:15:04,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:05,828 INFO Connection check task start + +2025-09-24 08:15:05,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:05,829 INFO Out dated connection ,size=0 + +2025-09-24 08:15:05,829 INFO Connection check task end + +2025-09-24 08:15:07,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:08,829 INFO Connection check task start + +2025-09-24 08:15:08,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:08,829 INFO Out dated connection ,size=0 + +2025-09-24 08:15:08,829 INFO Connection check task end + +2025-09-24 08:15:10,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:11,831 INFO Connection check task start + +2025-09-24 08:15:11,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:11,831 INFO Out dated connection ,size=0 + +2025-09-24 08:15:11,831 INFO Connection check task end + +2025-09-24 08:15:13,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:14,832 INFO Connection check task start + +2025-09-24 08:15:14,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:14,833 INFO Out dated connection ,size=0 + +2025-09-24 08:15:14,833 INFO Connection check task end + +2025-09-24 08:15:16,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:17,834 INFO Connection check task start + +2025-09-24 08:15:17,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:17,834 INFO Out dated connection ,size=0 + +2025-09-24 08:15:17,834 INFO Connection check task end + +2025-09-24 08:15:19,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:20,836 INFO Connection check task start + +2025-09-24 08:15:20,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:20,836 INFO Out dated connection ,size=0 + +2025-09-24 08:15:20,836 INFO Connection check task end + +2025-09-24 08:15:22,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:23,836 INFO Connection check task start + +2025-09-24 08:15:23,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:23,836 INFO Out dated connection ,size=0 + +2025-09-24 08:15:23,837 INFO Connection check task end + +2025-09-24 08:15:25,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:26,837 INFO Connection check task start + +2025-09-24 08:15:26,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:26,837 INFO Out dated connection ,size=0 + +2025-09-24 08:15:26,837 INFO Connection check task end + +2025-09-24 08:15:28,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:29,837 INFO Connection check task start + +2025-09-24 08:15:29,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:29,838 INFO Out dated connection ,size=0 + +2025-09-24 08:15:29,838 INFO Connection check task end + +2025-09-24 08:15:31,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:32,838 INFO Connection check task start + +2025-09-24 08:15:32,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:32,838 INFO Out dated connection ,size=0 + +2025-09-24 08:15:32,838 INFO Connection check task end + +2025-09-24 08:15:34,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:35,838 INFO Connection check task start + +2025-09-24 08:15:35,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:35,839 INFO Out dated connection ,size=0 + +2025-09-24 08:15:35,839 INFO Connection check task end + +2025-09-24 08:15:37,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:38,839 INFO Connection check task start + +2025-09-24 08:15:38,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:38,840 INFO Out dated connection ,size=0 + +2025-09-24 08:15:38,840 INFO Connection check task end + +2025-09-24 08:15:40,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:41,840 INFO Connection check task start + +2025-09-24 08:15:41,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:41,840 INFO Out dated connection ,size=0 + +2025-09-24 08:15:41,840 INFO Connection check task end + +2025-09-24 08:15:43,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:44,842 INFO Connection check task start + +2025-09-24 08:15:44,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:44,843 INFO Out dated connection ,size=0 + +2025-09-24 08:15:44,843 INFO Connection check task end + +2025-09-24 08:15:46,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:47,843 INFO Connection check task start + +2025-09-24 08:15:47,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:47,843 INFO Out dated connection ,size=0 + +2025-09-24 08:15:47,843 INFO Connection check task end + +2025-09-24 08:15:49,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:50,844 INFO Connection check task start + +2025-09-24 08:15:50,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:50,845 INFO Out dated connection ,size=0 + +2025-09-24 08:15:50,845 INFO Connection check task end + +2025-09-24 08:15:52,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:53,846 INFO Connection check task start + +2025-09-24 08:15:53,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:53,847 INFO Out dated connection ,size=0 + +2025-09-24 08:15:53,847 INFO Connection check task end + +2025-09-24 08:15:55,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:56,847 INFO Connection check task start + +2025-09-24 08:15:56,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:56,847 INFO Out dated connection ,size=0 + +2025-09-24 08:15:56,847 INFO Connection check task end + +2025-09-24 08:15:58,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:15:59,848 INFO Connection check task start + +2025-09-24 08:15:59,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:15:59,848 INFO Out dated connection ,size=0 + +2025-09-24 08:15:59,848 INFO Connection check task end + +2025-09-24 08:16:01,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:02,849 INFO Connection check task start + +2025-09-24 08:16:02,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:02,849 INFO Out dated connection ,size=0 + +2025-09-24 08:16:02,849 INFO Connection check task end + +2025-09-24 08:16:04,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:05,851 INFO Connection check task start + +2025-09-24 08:16:05,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:05,851 INFO Out dated connection ,size=0 + +2025-09-24 08:16:05,851 INFO Connection check task end + +2025-09-24 08:16:07,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:08,852 INFO Connection check task start + +2025-09-24 08:16:08,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:08,852 INFO Out dated connection ,size=0 + +2025-09-24 08:16:08,852 INFO Connection check task end + +2025-09-24 08:16:10,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:11,854 INFO Connection check task start + +2025-09-24 08:16:11,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:11,854 INFO Out dated connection ,size=0 + +2025-09-24 08:16:11,855 INFO Connection check task end + +2025-09-24 08:16:13,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:14,855 INFO Connection check task start + +2025-09-24 08:16:14,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:14,855 INFO Out dated connection ,size=0 + +2025-09-24 08:16:14,855 INFO Connection check task end + +2025-09-24 08:16:16,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:17,856 INFO Connection check task start + +2025-09-24 08:16:17,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:17,856 INFO Out dated connection ,size=0 + +2025-09-24 08:16:17,857 INFO Connection check task end + +2025-09-24 08:16:19,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:20,857 INFO Connection check task start + +2025-09-24 08:16:20,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:20,857 INFO Out dated connection ,size=0 + +2025-09-24 08:16:20,857 INFO Connection check task end + +2025-09-24 08:16:22,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:23,859 INFO Connection check task start + +2025-09-24 08:16:23,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:23,859 INFO Out dated connection ,size=0 + +2025-09-24 08:16:23,859 INFO Connection check task end + +2025-09-24 08:16:25,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:26,860 INFO Connection check task start + +2025-09-24 08:16:26,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:26,860 INFO Out dated connection ,size=0 + +2025-09-24 08:16:26,860 INFO Connection check task end + +2025-09-24 08:16:28,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:29,861 INFO Connection check task start + +2025-09-24 08:16:29,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:29,861 INFO Out dated connection ,size=0 + +2025-09-24 08:16:29,861 INFO Connection check task end + +2025-09-24 08:16:31,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:32,862 INFO Connection check task start + +2025-09-24 08:16:32,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:32,862 INFO Out dated connection ,size=0 + +2025-09-24 08:16:32,862 INFO Connection check task end + +2025-09-24 08:16:34,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:35,864 INFO Connection check task start + +2025-09-24 08:16:35,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:35,864 INFO Out dated connection ,size=0 + +2025-09-24 08:16:35,864 INFO Connection check task end + +2025-09-24 08:16:37,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:38,866 INFO Connection check task start + +2025-09-24 08:16:38,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:38,867 INFO Out dated connection ,size=0 + +2025-09-24 08:16:38,867 INFO Connection check task end + +2025-09-24 08:16:40,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:41,868 INFO Connection check task start + +2025-09-24 08:16:41,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:41,868 INFO Out dated connection ,size=0 + +2025-09-24 08:16:41,868 INFO Connection check task end + +2025-09-24 08:16:43,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:44,870 INFO Connection check task start + +2025-09-24 08:16:44,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:44,870 INFO Out dated connection ,size=0 + +2025-09-24 08:16:44,870 INFO Connection check task end + +2025-09-24 08:16:46,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:47,898 INFO Connection check task start + +2025-09-24 08:16:47,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:47,899 INFO Out dated connection ,size=0 + +2025-09-24 08:16:47,899 INFO Connection check task end + +2025-09-24 08:16:49,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:50,900 INFO Connection check task start + +2025-09-24 08:16:50,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:50,900 INFO Out dated connection ,size=0 + +2025-09-24 08:16:50,900 INFO Connection check task end + +2025-09-24 08:16:52,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:53,900 INFO Connection check task start + +2025-09-24 08:16:53,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:53,901 INFO Out dated connection ,size=0 + +2025-09-24 08:16:53,901 INFO Connection check task end + +2025-09-24 08:16:55,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:56,901 INFO Connection check task start + +2025-09-24 08:16:56,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:56,901 INFO Out dated connection ,size=0 + +2025-09-24 08:16:56,901 INFO Connection check task end + +2025-09-24 08:16:58,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:16:59,903 INFO Connection check task start + +2025-09-24 08:16:59,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:16:59,903 INFO Out dated connection ,size=0 + +2025-09-24 08:16:59,903 INFO Connection check task end + +2025-09-24 08:17:01,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:02,905 INFO Connection check task start + +2025-09-24 08:17:02,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:02,905 INFO Out dated connection ,size=0 + +2025-09-24 08:17:02,905 INFO Connection check task end + +2025-09-24 08:17:04,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:05,907 INFO Connection check task start + +2025-09-24 08:17:05,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:05,907 INFO Out dated connection ,size=0 + +2025-09-24 08:17:05,907 INFO Connection check task end + +2025-09-24 08:17:07,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:08,908 INFO Connection check task start + +2025-09-24 08:17:08,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:08,908 INFO Out dated connection ,size=0 + +2025-09-24 08:17:08,908 INFO Connection check task end + +2025-09-24 08:17:10,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:11,911 INFO Connection check task start + +2025-09-24 08:17:11,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:11,911 INFO Out dated connection ,size=0 + +2025-09-24 08:17:11,911 INFO Connection check task end + +2025-09-24 08:17:13,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:14,911 INFO Connection check task start + +2025-09-24 08:17:14,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:14,912 INFO Out dated connection ,size=0 + +2025-09-24 08:17:14,912 INFO Connection check task end + +2025-09-24 08:17:16,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:17,912 INFO Connection check task start + +2025-09-24 08:17:17,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:17,912 INFO Out dated connection ,size=0 + +2025-09-24 08:17:17,912 INFO Connection check task end + +2025-09-24 08:17:19,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:20,914 INFO Connection check task start + +2025-09-24 08:17:20,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:20,914 INFO Out dated connection ,size=0 + +2025-09-24 08:17:20,914 INFO Connection check task end + +2025-09-24 08:17:22,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:23,916 INFO Connection check task start + +2025-09-24 08:17:23,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:23,916 INFO Out dated connection ,size=0 + +2025-09-24 08:17:23,916 INFO Connection check task end + +2025-09-24 08:17:25,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:26,918 INFO Connection check task start + +2025-09-24 08:17:26,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:26,918 INFO Out dated connection ,size=0 + +2025-09-24 08:17:26,918 INFO Connection check task end + +2025-09-24 08:17:28,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:29,919 INFO Connection check task start + +2025-09-24 08:17:29,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:29,919 INFO Out dated connection ,size=0 + +2025-09-24 08:17:29,919 INFO Connection check task end + +2025-09-24 08:17:31,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:32,921 INFO Connection check task start + +2025-09-24 08:17:32,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:32,921 INFO Out dated connection ,size=0 + +2025-09-24 08:17:32,921 INFO Connection check task end + +2025-09-24 08:17:34,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:35,922 INFO Connection check task start + +2025-09-24 08:17:35,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:35,922 INFO Out dated connection ,size=0 + +2025-09-24 08:17:35,922 INFO Connection check task end + +2025-09-24 08:17:37,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:38,924 INFO Connection check task start + +2025-09-24 08:17:38,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:38,924 INFO Out dated connection ,size=0 + +2025-09-24 08:17:38,924 INFO Connection check task end + +2025-09-24 08:17:40,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:41,927 INFO Connection check task start + +2025-09-24 08:17:41,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:41,927 INFO Out dated connection ,size=0 + +2025-09-24 08:17:41,927 INFO Connection check task end + +2025-09-24 08:17:43,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:44,927 INFO Connection check task start + +2025-09-24 08:17:44,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:44,927 INFO Out dated connection ,size=0 + +2025-09-24 08:17:44,927 INFO Connection check task end + +2025-09-24 08:17:46,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:47,930 INFO Connection check task start + +2025-09-24 08:17:47,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:47,930 INFO Out dated connection ,size=0 + +2025-09-24 08:17:47,930 INFO Connection check task end + +2025-09-24 08:17:49,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:50,930 INFO Connection check task start + +2025-09-24 08:17:50,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:50,930 INFO Out dated connection ,size=0 + +2025-09-24 08:17:50,930 INFO Connection check task end + +2025-09-24 08:17:52,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:53,932 INFO Connection check task start + +2025-09-24 08:17:53,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:53,932 INFO Out dated connection ,size=0 + +2025-09-24 08:17:53,932 INFO Connection check task end + +2025-09-24 08:17:55,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:56,933 INFO Connection check task start + +2025-09-24 08:17:56,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:56,933 INFO Out dated connection ,size=0 + +2025-09-24 08:17:56,933 INFO Connection check task end + +2025-09-24 08:17:58,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:17:59,933 INFO Connection check task start + +2025-09-24 08:17:59,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:17:59,933 INFO Out dated connection ,size=0 + +2025-09-24 08:17:59,933 INFO Connection check task end + +2025-09-24 08:18:01,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:02,934 INFO Connection check task start + +2025-09-24 08:18:02,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:02,935 INFO Out dated connection ,size=0 + +2025-09-24 08:18:02,935 INFO Connection check task end + +2025-09-24 08:18:04,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:05,936 INFO Connection check task start + +2025-09-24 08:18:05,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:05,936 INFO Out dated connection ,size=0 + +2025-09-24 08:18:05,936 INFO Connection check task end + +2025-09-24 08:18:07,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:08,937 INFO Connection check task start + +2025-09-24 08:18:08,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:08,937 INFO Out dated connection ,size=0 + +2025-09-24 08:18:08,937 INFO Connection check task end + +2025-09-24 08:18:10,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:11,938 INFO Connection check task start + +2025-09-24 08:18:11,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:11,938 INFO Out dated connection ,size=0 + +2025-09-24 08:18:11,938 INFO Connection check task end + +2025-09-24 08:18:13,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:14,940 INFO Connection check task start + +2025-09-24 08:18:14,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:14,940 INFO Out dated connection ,size=0 + +2025-09-24 08:18:14,940 INFO Connection check task end + +2025-09-24 08:18:16,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:17,940 INFO Connection check task start + +2025-09-24 08:18:17,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:17,941 INFO Out dated connection ,size=0 + +2025-09-24 08:18:17,941 INFO Connection check task end + +2025-09-24 08:18:19,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:20,941 INFO Connection check task start + +2025-09-24 08:18:20,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:20,941 INFO Out dated connection ,size=0 + +2025-09-24 08:18:20,941 INFO Connection check task end + +2025-09-24 08:18:22,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:23,942 INFO Connection check task start + +2025-09-24 08:18:23,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:23,942 INFO Out dated connection ,size=0 + +2025-09-24 08:18:23,942 INFO Connection check task end + +2025-09-24 08:18:25,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:26,944 INFO Connection check task start + +2025-09-24 08:18:26,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:26,944 INFO Out dated connection ,size=0 + +2025-09-24 08:18:26,944 INFO Connection check task end + +2025-09-24 08:18:28,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:29,945 INFO Connection check task start + +2025-09-24 08:18:29,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:29,945 INFO Out dated connection ,size=0 + +2025-09-24 08:18:29,945 INFO Connection check task end + +2025-09-24 08:18:31,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:32,946 INFO Connection check task start + +2025-09-24 08:18:32,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:32,946 INFO Out dated connection ,size=0 + +2025-09-24 08:18:32,946 INFO Connection check task end + +2025-09-24 08:18:34,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:35,946 INFO Connection check task start + +2025-09-24 08:18:35,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:35,947 INFO Out dated connection ,size=0 + +2025-09-24 08:18:35,947 INFO Connection check task end + +2025-09-24 08:18:37,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:38,949 INFO Connection check task start + +2025-09-24 08:18:38,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:38,949 INFO Out dated connection ,size=0 + +2025-09-24 08:18:38,949 INFO Connection check task end + +2025-09-24 08:18:40,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:41,949 INFO Connection check task start + +2025-09-24 08:18:41,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:41,950 INFO Out dated connection ,size=0 + +2025-09-24 08:18:41,950 INFO Connection check task end + +2025-09-24 08:18:43,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:44,952 INFO Connection check task start + +2025-09-24 08:18:44,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:44,952 INFO Out dated connection ,size=0 + +2025-09-24 08:18:44,952 INFO Connection check task end + +2025-09-24 08:18:46,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:47,952 INFO Connection check task start + +2025-09-24 08:18:47,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:47,952 INFO Out dated connection ,size=0 + +2025-09-24 08:18:47,952 INFO Connection check task end + +2025-09-24 08:18:49,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:50,953 INFO Connection check task start + +2025-09-24 08:18:50,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:50,953 INFO Out dated connection ,size=0 + +2025-09-24 08:18:50,953 INFO Connection check task end + +2025-09-24 08:18:52,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:53,955 INFO Connection check task start + +2025-09-24 08:18:53,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:53,956 INFO Out dated connection ,size=0 + +2025-09-24 08:18:53,956 INFO Connection check task end + +2025-09-24 08:18:55,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:56,956 INFO Connection check task start + +2025-09-24 08:18:56,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:56,956 INFO Out dated connection ,size=0 + +2025-09-24 08:18:56,956 INFO Connection check task end + +2025-09-24 08:18:58,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:18:59,958 INFO Connection check task start + +2025-09-24 08:18:59,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:18:59,958 INFO Out dated connection ,size=0 + +2025-09-24 08:18:59,958 INFO Connection check task end + +2025-09-24 08:19:01,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:02,960 INFO Connection check task start + +2025-09-24 08:19:02,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:02,960 INFO Out dated connection ,size=0 + +2025-09-24 08:19:02,960 INFO Connection check task end + +2025-09-24 08:19:04,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:05,962 INFO Connection check task start + +2025-09-24 08:19:05,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:05,962 INFO Out dated connection ,size=0 + +2025-09-24 08:19:05,962 INFO Connection check task end + +2025-09-24 08:19:07,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:08,963 INFO Connection check task start + +2025-09-24 08:19:08,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:08,963 INFO Out dated connection ,size=0 + +2025-09-24 08:19:08,963 INFO Connection check task end + +2025-09-24 08:19:10,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:11,963 INFO Connection check task start + +2025-09-24 08:19:11,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:11,963 INFO Out dated connection ,size=0 + +2025-09-24 08:19:11,964 INFO Connection check task end + +2025-09-24 08:19:13,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:14,964 INFO Connection check task start + +2025-09-24 08:19:14,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:14,964 INFO Out dated connection ,size=0 + +2025-09-24 08:19:14,964 INFO Connection check task end + +2025-09-24 08:19:16,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:17,966 INFO Connection check task start + +2025-09-24 08:19:17,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:17,966 INFO Out dated connection ,size=0 + +2025-09-24 08:19:17,966 INFO Connection check task end + +2025-09-24 08:19:19,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:20,966 INFO Connection check task start + +2025-09-24 08:19:20,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:20,967 INFO Out dated connection ,size=0 + +2025-09-24 08:19:20,967 INFO Connection check task end + +2025-09-24 08:19:22,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:23,969 INFO Connection check task start + +2025-09-24 08:19:23,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:23,969 INFO Out dated connection ,size=0 + +2025-09-24 08:19:23,969 INFO Connection check task end + +2025-09-24 08:19:25,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:26,971 INFO Connection check task start + +2025-09-24 08:19:26,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:26,971 INFO Out dated connection ,size=0 + +2025-09-24 08:19:26,971 INFO Connection check task end + +2025-09-24 08:19:28,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:29,973 INFO Connection check task start + +2025-09-24 08:19:29,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:29,974 INFO Out dated connection ,size=0 + +2025-09-24 08:19:29,974 INFO Connection check task end + +2025-09-24 08:19:31,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:32,976 INFO Connection check task start + +2025-09-24 08:19:32,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:32,976 INFO Out dated connection ,size=0 + +2025-09-24 08:19:32,976 INFO Connection check task end + +2025-09-24 08:19:34,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:35,977 INFO Connection check task start + +2025-09-24 08:19:35,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:35,977 INFO Out dated connection ,size=0 + +2025-09-24 08:19:35,977 INFO Connection check task end + +2025-09-24 08:19:37,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:38,978 INFO Connection check task start + +2025-09-24 08:19:38,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:38,978 INFO Out dated connection ,size=0 + +2025-09-24 08:19:38,978 INFO Connection check task end + +2025-09-24 08:19:40,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:41,978 INFO Connection check task start + +2025-09-24 08:19:41,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:41,978 INFO Out dated connection ,size=0 + +2025-09-24 08:19:41,978 INFO Connection check task end + +2025-09-24 08:19:43,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:44,980 INFO Connection check task start + +2025-09-24 08:19:44,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:44,980 INFO Out dated connection ,size=0 + +2025-09-24 08:19:44,980 INFO Connection check task end + +2025-09-24 08:19:46,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:47,983 INFO Connection check task start + +2025-09-24 08:19:47,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:47,983 INFO Out dated connection ,size=0 + +2025-09-24 08:19:47,983 INFO Connection check task end + +2025-09-24 08:19:49,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:50,983 INFO Connection check task start + +2025-09-24 08:19:50,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:50,983 INFO Out dated connection ,size=0 + +2025-09-24 08:19:50,983 INFO Connection check task end + +2025-09-24 08:19:52,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:53,983 INFO Connection check task start + +2025-09-24 08:19:53,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:53,983 INFO Out dated connection ,size=0 + +2025-09-24 08:19:53,983 INFO Connection check task end + +2025-09-24 08:19:55,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:56,985 INFO Connection check task start + +2025-09-24 08:19:56,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:56,985 INFO Out dated connection ,size=0 + +2025-09-24 08:19:56,985 INFO Connection check task end + +2025-09-24 08:19:58,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:19:59,985 INFO Connection check task start + +2025-09-24 08:19:59,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:19:59,986 INFO Out dated connection ,size=0 + +2025-09-24 08:19:59,986 INFO Connection check task end + +2025-09-24 08:20:01,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:02,986 INFO Connection check task start + +2025-09-24 08:20:02,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:02,986 INFO Out dated connection ,size=0 + +2025-09-24 08:20:02,986 INFO Connection check task end + +2025-09-24 08:20:04,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:05,987 INFO Connection check task start + +2025-09-24 08:20:05,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:05,987 INFO Out dated connection ,size=0 + +2025-09-24 08:20:05,987 INFO Connection check task end + +2025-09-24 08:20:07,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:08,988 INFO Connection check task start + +2025-09-24 08:20:08,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:08,988 INFO Out dated connection ,size=0 + +2025-09-24 08:20:08,988 INFO Connection check task end + +2025-09-24 08:20:10,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:11,988 INFO Connection check task start + +2025-09-24 08:20:11,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:11,988 INFO Out dated connection ,size=0 + +2025-09-24 08:20:11,989 INFO Connection check task end + +2025-09-24 08:20:13,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:14,989 INFO Connection check task start + +2025-09-24 08:20:14,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:14,989 INFO Out dated connection ,size=0 + +2025-09-24 08:20:14,989 INFO Connection check task end + +2025-09-24 08:20:16,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:17,991 INFO Connection check task start + +2025-09-24 08:20:17,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:17,991 INFO Out dated connection ,size=0 + +2025-09-24 08:20:17,991 INFO Connection check task end + +2025-09-24 08:20:19,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:20,993 INFO Connection check task start + +2025-09-24 08:20:20,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:20,993 INFO Out dated connection ,size=0 + +2025-09-24 08:20:20,993 INFO Connection check task end + +2025-09-24 08:20:22,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:23,994 INFO Connection check task start + +2025-09-24 08:20:23,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:23,994 INFO Out dated connection ,size=0 + +2025-09-24 08:20:23,994 INFO Connection check task end + +2025-09-24 08:20:25,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:26,997 INFO Connection check task start + +2025-09-24 08:20:26,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:26,997 INFO Out dated connection ,size=0 + +2025-09-24 08:20:26,997 INFO Connection check task end + +2025-09-24 08:20:28,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:29,998 INFO Connection check task start + +2025-09-24 08:20:29,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:29,998 INFO Out dated connection ,size=0 + +2025-09-24 08:20:29,998 INFO Connection check task end + +2025-09-24 08:20:31,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:33,000 INFO Connection check task start + +2025-09-24 08:20:33,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:33,001 INFO Out dated connection ,size=0 + +2025-09-24 08:20:33,001 INFO Connection check task end + +2025-09-24 08:20:34,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:36,002 INFO Connection check task start + +2025-09-24 08:20:36,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:36,002 INFO Out dated connection ,size=0 + +2025-09-24 08:20:36,002 INFO Connection check task end + +2025-09-24 08:20:37,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:39,002 INFO Connection check task start + +2025-09-24 08:20:39,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:39,002 INFO Out dated connection ,size=0 + +2025-09-24 08:20:39,002 INFO Connection check task end + +2025-09-24 08:20:40,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:42,003 INFO Connection check task start + +2025-09-24 08:20:42,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:42,004 INFO Out dated connection ,size=0 + +2025-09-24 08:20:42,004 INFO Connection check task end + +2025-09-24 08:20:43,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:45,006 INFO Connection check task start + +2025-09-24 08:20:45,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:45,006 INFO Out dated connection ,size=0 + +2025-09-24 08:20:45,006 INFO Connection check task end + +2025-09-24 08:20:46,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:48,007 INFO Connection check task start + +2025-09-24 08:20:48,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:48,007 INFO Out dated connection ,size=0 + +2025-09-24 08:20:48,007 INFO Connection check task end + +2025-09-24 08:20:49,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:51,010 INFO Connection check task start + +2025-09-24 08:20:51,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:51,010 INFO Out dated connection ,size=0 + +2025-09-24 08:20:51,010 INFO Connection check task end + +2025-09-24 08:20:52,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:54,012 INFO Connection check task start + +2025-09-24 08:20:54,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:54,012 INFO Out dated connection ,size=0 + +2025-09-24 08:20:54,012 INFO Connection check task end + +2025-09-24 08:20:55,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:20:57,014 INFO Connection check task start + +2025-09-24 08:20:57,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:20:57,014 INFO Out dated connection ,size=0 + +2025-09-24 08:20:57,014 INFO Connection check task end + +2025-09-24 08:20:58,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:00,014 INFO Connection check task start + +2025-09-24 08:21:00,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:00,015 INFO Out dated connection ,size=0 + +2025-09-24 08:21:00,015 INFO Connection check task end + +2025-09-24 08:21:01,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:03,017 INFO Connection check task start + +2025-09-24 08:21:03,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:03,017 INFO Out dated connection ,size=0 + +2025-09-24 08:21:03,017 INFO Connection check task end + +2025-09-24 08:21:04,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:06,018 INFO Connection check task start + +2025-09-24 08:21:06,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:06,019 INFO Out dated connection ,size=0 + +2025-09-24 08:21:06,019 INFO Connection check task end + +2025-09-24 08:21:07,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:09,020 INFO Connection check task start + +2025-09-24 08:21:09,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:09,020 INFO Out dated connection ,size=0 + +2025-09-24 08:21:09,020 INFO Connection check task end + +2025-09-24 08:21:10,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:12,021 INFO Connection check task start + +2025-09-24 08:21:12,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:12,021 INFO Out dated connection ,size=0 + +2025-09-24 08:21:12,021 INFO Connection check task end + +2025-09-24 08:21:13,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:15,022 INFO Connection check task start + +2025-09-24 08:21:15,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:15,022 INFO Out dated connection ,size=0 + +2025-09-24 08:21:15,022 INFO Connection check task end + +2025-09-24 08:21:16,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:18,022 INFO Connection check task start + +2025-09-24 08:21:18,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:18,023 INFO Out dated connection ,size=0 + +2025-09-24 08:21:18,023 INFO Connection check task end + +2025-09-24 08:21:19,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:21,023 INFO Connection check task start + +2025-09-24 08:21:21,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:21,023 INFO Out dated connection ,size=0 + +2025-09-24 08:21:21,023 INFO Connection check task end + +2025-09-24 08:21:22,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:24,025 INFO Connection check task start + +2025-09-24 08:21:24,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:24,025 INFO Out dated connection ,size=0 + +2025-09-24 08:21:24,025 INFO Connection check task end + +2025-09-24 08:21:25,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:27,026 INFO Connection check task start + +2025-09-24 08:21:27,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:27,026 INFO Out dated connection ,size=0 + +2025-09-24 08:21:27,026 INFO Connection check task end + +2025-09-24 08:21:28,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:30,028 INFO Connection check task start + +2025-09-24 08:21:30,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:30,028 INFO Out dated connection ,size=0 + +2025-09-24 08:21:30,028 INFO Connection check task end + +2025-09-24 08:21:31,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:33,031 INFO Connection check task start + +2025-09-24 08:21:33,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:33,031 INFO Out dated connection ,size=0 + +2025-09-24 08:21:33,031 INFO Connection check task end + +2025-09-24 08:21:34,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:36,033 INFO Connection check task start + +2025-09-24 08:21:36,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:36,033 INFO Out dated connection ,size=0 + +2025-09-24 08:21:36,033 INFO Connection check task end + +2025-09-24 08:21:37,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:39,034 INFO Connection check task start + +2025-09-24 08:21:39,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:39,034 INFO Out dated connection ,size=0 + +2025-09-24 08:21:39,034 INFO Connection check task end + +2025-09-24 08:21:40,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:42,036 INFO Connection check task start + +2025-09-24 08:21:42,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:42,036 INFO Out dated connection ,size=0 + +2025-09-24 08:21:42,036 INFO Connection check task end + +2025-09-24 08:21:43,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:45,038 INFO Connection check task start + +2025-09-24 08:21:45,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:45,038 INFO Out dated connection ,size=0 + +2025-09-24 08:21:45,039 INFO Connection check task end + +2025-09-24 08:21:46,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:48,040 INFO Connection check task start + +2025-09-24 08:21:48,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:48,040 INFO Out dated connection ,size=0 + +2025-09-24 08:21:48,040 INFO Connection check task end + +2025-09-24 08:21:49,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:51,042 INFO Connection check task start + +2025-09-24 08:21:51,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:51,042 INFO Out dated connection ,size=0 + +2025-09-24 08:21:51,042 INFO Connection check task end + +2025-09-24 08:21:52,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:54,044 INFO Connection check task start + +2025-09-24 08:21:54,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:54,044 INFO Out dated connection ,size=0 + +2025-09-24 08:21:54,044 INFO Connection check task end + +2025-09-24 08:21:55,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:21:57,045 INFO Connection check task start + +2025-09-24 08:21:57,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:21:57,045 INFO Out dated connection ,size=0 + +2025-09-24 08:21:57,045 INFO Connection check task end + +2025-09-24 08:21:58,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:00,046 INFO Connection check task start + +2025-09-24 08:22:00,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:00,046 INFO Out dated connection ,size=0 + +2025-09-24 08:22:00,046 INFO Connection check task end + +2025-09-24 08:22:01,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:03,048 INFO Connection check task start + +2025-09-24 08:22:03,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:03,048 INFO Out dated connection ,size=0 + +2025-09-24 08:22:03,048 INFO Connection check task end + +2025-09-24 08:22:04,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:06,049 INFO Connection check task start + +2025-09-24 08:22:06,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:06,049 INFO Out dated connection ,size=0 + +2025-09-24 08:22:06,049 INFO Connection check task end + +2025-09-24 08:22:07,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:09,049 INFO Connection check task start + +2025-09-24 08:22:09,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:09,049 INFO Out dated connection ,size=0 + +2025-09-24 08:22:09,049 INFO Connection check task end + +2025-09-24 08:22:10,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:12,051 INFO Connection check task start + +2025-09-24 08:22:12,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:12,052 INFO Out dated connection ,size=0 + +2025-09-24 08:22:12,052 INFO Connection check task end + +2025-09-24 08:22:13,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:15,052 INFO Connection check task start + +2025-09-24 08:22:15,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:15,052 INFO Out dated connection ,size=0 + +2025-09-24 08:22:15,052 INFO Connection check task end + +2025-09-24 08:22:16,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:18,053 INFO Connection check task start + +2025-09-24 08:22:18,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:18,053 INFO Out dated connection ,size=0 + +2025-09-24 08:22:18,053 INFO Connection check task end + +2025-09-24 08:22:19,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:21,054 INFO Connection check task start + +2025-09-24 08:22:21,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:21,054 INFO Out dated connection ,size=0 + +2025-09-24 08:22:21,054 INFO Connection check task end + +2025-09-24 08:22:22,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:24,055 INFO Connection check task start + +2025-09-24 08:22:24,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:24,056 INFO Out dated connection ,size=0 + +2025-09-24 08:22:24,056 INFO Connection check task end + +2025-09-24 08:22:25,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:27,058 INFO Connection check task start + +2025-09-24 08:22:27,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:27,058 INFO Out dated connection ,size=0 + +2025-09-24 08:22:27,058 INFO Connection check task end + +2025-09-24 08:22:28,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:30,058 INFO Connection check task start + +2025-09-24 08:22:30,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:30,058 INFO Out dated connection ,size=0 + +2025-09-24 08:22:30,058 INFO Connection check task end + +2025-09-24 08:22:31,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:33,058 INFO Connection check task start + +2025-09-24 08:22:33,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:33,059 INFO Out dated connection ,size=0 + +2025-09-24 08:22:33,059 INFO Connection check task end + +2025-09-24 08:22:34,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:36,062 INFO Connection check task start + +2025-09-24 08:22:36,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:36,062 INFO Out dated connection ,size=0 + +2025-09-24 08:22:36,062 INFO Connection check task end + +2025-09-24 08:22:37,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:39,064 INFO Connection check task start + +2025-09-24 08:22:39,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:39,065 INFO Out dated connection ,size=0 + +2025-09-24 08:22:39,065 INFO Connection check task end + +2025-09-24 08:22:40,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:42,067 INFO Connection check task start + +2025-09-24 08:22:42,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:42,067 INFO Out dated connection ,size=0 + +2025-09-24 08:22:42,067 INFO Connection check task end + +2025-09-24 08:22:43,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:45,069 INFO Connection check task start + +2025-09-24 08:22:45,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:45,069 INFO Out dated connection ,size=0 + +2025-09-24 08:22:45,069 INFO Connection check task end + +2025-09-24 08:22:46,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:48,070 INFO Connection check task start + +2025-09-24 08:22:48,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:48,070 INFO Out dated connection ,size=0 + +2025-09-24 08:22:48,070 INFO Connection check task end + +2025-09-24 08:22:49,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:51,070 INFO Connection check task start + +2025-09-24 08:22:51,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:51,071 INFO Out dated connection ,size=0 + +2025-09-24 08:22:51,071 INFO Connection check task end + +2025-09-24 08:22:52,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:54,073 INFO Connection check task start + +2025-09-24 08:22:54,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:54,073 INFO Out dated connection ,size=0 + +2025-09-24 08:22:54,073 INFO Connection check task end + +2025-09-24 08:22:55,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:22:57,073 INFO Connection check task start + +2025-09-24 08:22:57,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:22:57,073 INFO Out dated connection ,size=0 + +2025-09-24 08:22:57,073 INFO Connection check task end + +2025-09-24 08:22:58,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:00,074 INFO Connection check task start + +2025-09-24 08:23:00,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:00,074 INFO Out dated connection ,size=0 + +2025-09-24 08:23:00,074 INFO Connection check task end + +2025-09-24 08:23:01,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:03,075 INFO Connection check task start + +2025-09-24 08:23:03,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:03,075 INFO Out dated connection ,size=0 + +2025-09-24 08:23:03,075 INFO Connection check task end + +2025-09-24 08:23:04,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:06,077 INFO Connection check task start + +2025-09-24 08:23:06,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:06,077 INFO Out dated connection ,size=0 + +2025-09-24 08:23:06,077 INFO Connection check task end + +2025-09-24 08:23:07,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:09,077 INFO Connection check task start + +2025-09-24 08:23:09,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:09,077 INFO Out dated connection ,size=0 + +2025-09-24 08:23:09,077 INFO Connection check task end + +2025-09-24 08:23:10,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:12,077 INFO Connection check task start + +2025-09-24 08:23:12,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:12,078 INFO Out dated connection ,size=0 + +2025-09-24 08:23:12,078 INFO Connection check task end + +2025-09-24 08:23:13,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:15,080 INFO Connection check task start + +2025-09-24 08:23:15,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:15,080 INFO Out dated connection ,size=0 + +2025-09-24 08:23:15,080 INFO Connection check task end + +2025-09-24 08:23:16,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:18,080 INFO Connection check task start + +2025-09-24 08:23:18,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:18,081 INFO Out dated connection ,size=0 + +2025-09-24 08:23:18,081 INFO Connection check task end + +2025-09-24 08:23:19,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:21,081 INFO Connection check task start + +2025-09-24 08:23:21,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:21,081 INFO Out dated connection ,size=0 + +2025-09-24 08:23:21,081 INFO Connection check task end + +2025-09-24 08:23:22,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:24,083 INFO Connection check task start + +2025-09-24 08:23:24,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:24,083 INFO Out dated connection ,size=0 + +2025-09-24 08:23:24,083 INFO Connection check task end + +2025-09-24 08:23:25,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:27,084 INFO Connection check task start + +2025-09-24 08:23:27,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:27,084 INFO Out dated connection ,size=0 + +2025-09-24 08:23:27,084 INFO Connection check task end + +2025-09-24 08:23:28,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:30,084 INFO Connection check task start + +2025-09-24 08:23:30,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:30,084 INFO Out dated connection ,size=0 + +2025-09-24 08:23:30,084 INFO Connection check task end + +2025-09-24 08:23:31,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:33,085 INFO Connection check task start + +2025-09-24 08:23:33,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:33,085 INFO Out dated connection ,size=0 + +2025-09-24 08:23:33,085 INFO Connection check task end + +2025-09-24 08:23:34,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:36,086 INFO Connection check task start + +2025-09-24 08:23:36,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:36,086 INFO Out dated connection ,size=0 + +2025-09-24 08:23:36,086 INFO Connection check task end + +2025-09-24 08:23:37,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:39,087 INFO Connection check task start + +2025-09-24 08:23:39,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:39,087 INFO Out dated connection ,size=0 + +2025-09-24 08:23:39,087 INFO Connection check task end + +2025-09-24 08:23:40,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:42,088 INFO Connection check task start + +2025-09-24 08:23:42,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:42,088 INFO Out dated connection ,size=0 + +2025-09-24 08:23:42,088 INFO Connection check task end + +2025-09-24 08:23:43,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:45,088 INFO Connection check task start + +2025-09-24 08:23:45,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:45,088 INFO Out dated connection ,size=0 + +2025-09-24 08:23:45,088 INFO Connection check task end + +2025-09-24 08:23:46,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:48,089 INFO Connection check task start + +2025-09-24 08:23:48,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:48,089 INFO Out dated connection ,size=0 + +2025-09-24 08:23:48,089 INFO Connection check task end + +2025-09-24 08:23:49,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:51,091 INFO Connection check task start + +2025-09-24 08:23:51,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:51,091 INFO Out dated connection ,size=0 + +2025-09-24 08:23:51,091 INFO Connection check task end + +2025-09-24 08:23:52,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:54,093 INFO Connection check task start + +2025-09-24 08:23:54,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:54,093 INFO Out dated connection ,size=0 + +2025-09-24 08:23:54,093 INFO Connection check task end + +2025-09-24 08:23:55,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:23:57,095 INFO Connection check task start + +2025-09-24 08:23:57,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:23:57,095 INFO Out dated connection ,size=0 + +2025-09-24 08:23:57,095 INFO Connection check task end + +2025-09-24 08:23:58,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:00,096 INFO Connection check task start + +2025-09-24 08:24:00,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:00,097 INFO Out dated connection ,size=0 + +2025-09-24 08:24:00,097 INFO Connection check task end + +2025-09-24 08:24:01,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:03,097 INFO Connection check task start + +2025-09-24 08:24:03,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:03,097 INFO Out dated connection ,size=0 + +2025-09-24 08:24:03,097 INFO Connection check task end + +2025-09-24 08:24:04,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:06,099 INFO Connection check task start + +2025-09-24 08:24:06,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:06,099 INFO Out dated connection ,size=0 + +2025-09-24 08:24:06,099 INFO Connection check task end + +2025-09-24 08:24:07,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:09,100 INFO Connection check task start + +2025-09-24 08:24:09,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:09,100 INFO Out dated connection ,size=0 + +2025-09-24 08:24:09,100 INFO Connection check task end + +2025-09-24 08:24:10,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:12,100 INFO Connection check task start + +2025-09-24 08:24:12,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:12,100 INFO Out dated connection ,size=0 + +2025-09-24 08:24:12,100 INFO Connection check task end + +2025-09-24 08:24:13,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:15,102 INFO Connection check task start + +2025-09-24 08:24:15,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:15,103 INFO Out dated connection ,size=0 + +2025-09-24 08:24:15,103 INFO Connection check task end + +2025-09-24 08:24:16,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:18,104 INFO Connection check task start + +2025-09-24 08:24:18,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:18,104 INFO Out dated connection ,size=0 + +2025-09-24 08:24:18,104 INFO Connection check task end + +2025-09-24 08:24:19,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:21,104 INFO Connection check task start + +2025-09-24 08:24:21,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:21,105 INFO Out dated connection ,size=0 + +2025-09-24 08:24:21,105 INFO Connection check task end + +2025-09-24 08:24:22,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:24,105 INFO Connection check task start + +2025-09-24 08:24:24,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:24,105 INFO Out dated connection ,size=0 + +2025-09-24 08:24:24,105 INFO Connection check task end + +2025-09-24 08:24:25,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:27,105 INFO Connection check task start + +2025-09-24 08:24:27,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:27,108 INFO Out dated connection ,size=0 + +2025-09-24 08:24:27,108 INFO Connection check task end + +2025-09-24 08:24:28,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:30,109 INFO Connection check task start + +2025-09-24 08:24:30,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:30,109 INFO Out dated connection ,size=0 + +2025-09-24 08:24:30,109 INFO Connection check task end + +2025-09-24 08:24:31,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:33,110 INFO Connection check task start + +2025-09-24 08:24:33,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:33,110 INFO Out dated connection ,size=0 + +2025-09-24 08:24:33,110 INFO Connection check task end + +2025-09-24 08:24:34,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:36,110 INFO Connection check task start + +2025-09-24 08:24:36,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:36,111 INFO Out dated connection ,size=0 + +2025-09-24 08:24:36,111 INFO Connection check task end + +2025-09-24 08:24:37,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:39,113 INFO Connection check task start + +2025-09-24 08:24:39,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:39,113 INFO Out dated connection ,size=0 + +2025-09-24 08:24:39,113 INFO Connection check task end + +2025-09-24 08:24:40,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:42,113 INFO Connection check task start + +2025-09-24 08:24:42,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:42,114 INFO Out dated connection ,size=0 + +2025-09-24 08:24:42,114 INFO Connection check task end + +2025-09-24 08:24:43,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:45,114 INFO Connection check task start + +2025-09-24 08:24:45,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:45,114 INFO Out dated connection ,size=0 + +2025-09-24 08:24:45,114 INFO Connection check task end + +2025-09-24 08:24:46,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:48,115 INFO Connection check task start + +2025-09-24 08:24:48,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:48,115 INFO Out dated connection ,size=0 + +2025-09-24 08:24:48,115 INFO Connection check task end + +2025-09-24 08:24:49,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:51,115 INFO Connection check task start + +2025-09-24 08:24:51,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:51,135 INFO Out dated connection ,size=0 + +2025-09-24 08:24:51,135 INFO Connection check task end + +2025-09-24 08:24:52,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:54,136 INFO Connection check task start + +2025-09-24 08:24:54,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:54,136 INFO Out dated connection ,size=0 + +2025-09-24 08:24:54,136 INFO Connection check task end + +2025-09-24 08:24:55,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:24:57,136 INFO Connection check task start + +2025-09-24 08:24:57,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:24:57,136 INFO Out dated connection ,size=0 + +2025-09-24 08:24:57,136 INFO Connection check task end + +2025-09-24 08:24:58,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:00,137 INFO Connection check task start + +2025-09-24 08:25:00,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:00,137 INFO Out dated connection ,size=0 + +2025-09-24 08:25:00,137 INFO Connection check task end + +2025-09-24 08:25:01,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:03,137 INFO Connection check task start + +2025-09-24 08:25:03,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:03,138 INFO Out dated connection ,size=0 + +2025-09-24 08:25:03,138 INFO Connection check task end + +2025-09-24 08:25:04,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:06,138 INFO Connection check task start + +2025-09-24 08:25:06,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:06,138 INFO Out dated connection ,size=0 + +2025-09-24 08:25:06,138 INFO Connection check task end + +2025-09-24 08:25:07,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:09,140 INFO Connection check task start + +2025-09-24 08:25:09,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:09,140 INFO Out dated connection ,size=0 + +2025-09-24 08:25:09,140 INFO Connection check task end + +2025-09-24 08:25:10,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:12,141 INFO Connection check task start + +2025-09-24 08:25:12,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:12,141 INFO Out dated connection ,size=0 + +2025-09-24 08:25:12,141 INFO Connection check task end + +2025-09-24 08:25:13,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:15,143 INFO Connection check task start + +2025-09-24 08:25:15,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:15,143 INFO Out dated connection ,size=0 + +2025-09-24 08:25:15,143 INFO Connection check task end + +2025-09-24 08:25:16,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:18,145 INFO Connection check task start + +2025-09-24 08:25:18,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:18,145 INFO Out dated connection ,size=0 + +2025-09-24 08:25:18,145 INFO Connection check task end + +2025-09-24 08:25:19,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:21,146 INFO Connection check task start + +2025-09-24 08:25:21,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:21,146 INFO Out dated connection ,size=0 + +2025-09-24 08:25:21,146 INFO Connection check task end + +2025-09-24 08:25:22,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:24,146 INFO Connection check task start + +2025-09-24 08:25:24,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:24,146 INFO Out dated connection ,size=0 + +2025-09-24 08:25:24,146 INFO Connection check task end + +2025-09-24 08:25:25,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:27,149 INFO Connection check task start + +2025-09-24 08:25:27,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:27,149 INFO Out dated connection ,size=0 + +2025-09-24 08:25:27,149 INFO Connection check task end + +2025-09-24 08:25:28,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:30,149 INFO Connection check task start + +2025-09-24 08:25:30,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:30,150 INFO Out dated connection ,size=0 + +2025-09-24 08:25:30,150 INFO Connection check task end + +2025-09-24 08:25:31,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:33,150 INFO Connection check task start + +2025-09-24 08:25:33,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:33,150 INFO Out dated connection ,size=0 + +2025-09-24 08:25:33,150 INFO Connection check task end + +2025-09-24 08:25:34,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:36,151 INFO Connection check task start + +2025-09-24 08:25:36,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:36,151 INFO Out dated connection ,size=0 + +2025-09-24 08:25:36,151 INFO Connection check task end + +2025-09-24 08:25:37,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:39,153 INFO Connection check task start + +2025-09-24 08:25:39,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:39,154 INFO Out dated connection ,size=0 + +2025-09-24 08:25:39,154 INFO Connection check task end + +2025-09-24 08:25:40,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:42,155 INFO Connection check task start + +2025-09-24 08:25:42,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:42,155 INFO Out dated connection ,size=0 + +2025-09-24 08:25:42,155 INFO Connection check task end + +2025-09-24 08:25:43,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:45,156 INFO Connection check task start + +2025-09-24 08:25:45,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:45,156 INFO Out dated connection ,size=0 + +2025-09-24 08:25:45,156 INFO Connection check task end + +2025-09-24 08:25:46,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:48,158 INFO Connection check task start + +2025-09-24 08:25:48,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:48,158 INFO Out dated connection ,size=0 + +2025-09-24 08:25:48,158 INFO Connection check task end + +2025-09-24 08:25:49,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:51,159 INFO Connection check task start + +2025-09-24 08:25:51,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:51,159 INFO Out dated connection ,size=0 + +2025-09-24 08:25:51,159 INFO Connection check task end + +2025-09-24 08:25:52,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:54,159 INFO Connection check task start + +2025-09-24 08:25:54,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:54,159 INFO Out dated connection ,size=0 + +2025-09-24 08:25:54,159 INFO Connection check task end + +2025-09-24 08:25:55,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:25:57,160 INFO Connection check task start + +2025-09-24 08:25:57,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:25:57,160 INFO Out dated connection ,size=0 + +2025-09-24 08:25:57,160 INFO Connection check task end + +2025-09-24 08:25:58,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:00,161 INFO Connection check task start + +2025-09-24 08:26:00,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:00,161 INFO Out dated connection ,size=0 + +2025-09-24 08:26:00,161 INFO Connection check task end + +2025-09-24 08:26:01,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:03,163 INFO Connection check task start + +2025-09-24 08:26:03,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:03,164 INFO Out dated connection ,size=0 + +2025-09-24 08:26:03,164 INFO Connection check task end + +2025-09-24 08:26:04,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:06,164 INFO Connection check task start + +2025-09-24 08:26:06,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:06,164 INFO Out dated connection ,size=0 + +2025-09-24 08:26:06,164 INFO Connection check task end + +2025-09-24 08:26:07,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:09,165 INFO Connection check task start + +2025-09-24 08:26:09,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:09,165 INFO Out dated connection ,size=0 + +2025-09-24 08:26:09,165 INFO Connection check task end + +2025-09-24 08:26:10,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:12,165 INFO Connection check task start + +2025-09-24 08:26:12,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:12,165 INFO Out dated connection ,size=0 + +2025-09-24 08:26:12,165 INFO Connection check task end + +2025-09-24 08:26:13,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:15,167 INFO Connection check task start + +2025-09-24 08:26:15,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:15,167 INFO Out dated connection ,size=0 + +2025-09-24 08:26:15,167 INFO Connection check task end + +2025-09-24 08:26:16,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:18,168 INFO Connection check task start + +2025-09-24 08:26:18,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:18,168 INFO Out dated connection ,size=0 + +2025-09-24 08:26:18,168 INFO Connection check task end + +2025-09-24 08:26:19,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:21,172 INFO Connection check task start + +2025-09-24 08:26:21,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:21,173 INFO Out dated connection ,size=0 + +2025-09-24 08:26:21,173 INFO Connection check task end + +2025-09-24 08:26:22,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:24,173 INFO Connection check task start + +2025-09-24 08:26:24,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:24,173 INFO Out dated connection ,size=0 + +2025-09-24 08:26:24,173 INFO Connection check task end + +2025-09-24 08:26:25,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:27,175 INFO Connection check task start + +2025-09-24 08:26:27,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:27,175 INFO Out dated connection ,size=0 + +2025-09-24 08:26:27,175 INFO Connection check task end + +2025-09-24 08:26:28,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:30,176 INFO Connection check task start + +2025-09-24 08:26:30,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:30,176 INFO Out dated connection ,size=0 + +2025-09-24 08:26:30,176 INFO Connection check task end + +2025-09-24 08:26:31,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:33,177 INFO Connection check task start + +2025-09-24 08:26:33,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:33,177 INFO Out dated connection ,size=0 + +2025-09-24 08:26:33,177 INFO Connection check task end + +2025-09-24 08:26:34,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:36,178 INFO Connection check task start + +2025-09-24 08:26:36,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:36,178 INFO Out dated connection ,size=0 + +2025-09-24 08:26:36,178 INFO Connection check task end + +2025-09-24 08:26:37,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:39,178 INFO Connection check task start + +2025-09-24 08:26:39,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:39,179 INFO Out dated connection ,size=0 + +2025-09-24 08:26:39,179 INFO Connection check task end + +2025-09-24 08:26:40,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:42,180 INFO Connection check task start + +2025-09-24 08:26:42,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:42,180 INFO Out dated connection ,size=0 + +2025-09-24 08:26:42,180 INFO Connection check task end + +2025-09-24 08:26:43,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:45,180 INFO Connection check task start + +2025-09-24 08:26:45,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:45,180 INFO Out dated connection ,size=0 + +2025-09-24 08:26:45,180 INFO Connection check task end + +2025-09-24 08:26:46,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:48,182 INFO Connection check task start + +2025-09-24 08:26:48,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:48,182 INFO Out dated connection ,size=0 + +2025-09-24 08:26:48,183 INFO Connection check task end + +2025-09-24 08:26:49,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:51,183 INFO Connection check task start + +2025-09-24 08:26:51,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:51,183 INFO Out dated connection ,size=0 + +2025-09-24 08:26:51,183 INFO Connection check task end + +2025-09-24 08:26:52,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:54,183 INFO Connection check task start + +2025-09-24 08:26:54,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:54,184 INFO Out dated connection ,size=0 + +2025-09-24 08:26:54,184 INFO Connection check task end + +2025-09-24 08:26:55,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:26:57,185 INFO Connection check task start + +2025-09-24 08:26:57,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:26:57,185 INFO Out dated connection ,size=0 + +2025-09-24 08:26:57,186 INFO Connection check task end + +2025-09-24 08:26:58,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:00,186 INFO Connection check task start + +2025-09-24 08:27:00,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:00,186 INFO Out dated connection ,size=0 + +2025-09-24 08:27:00,186 INFO Connection check task end + +2025-09-24 08:27:01,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:03,188 INFO Connection check task start + +2025-09-24 08:27:03,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:03,188 INFO Out dated connection ,size=0 + +2025-09-24 08:27:03,188 INFO Connection check task end + +2025-09-24 08:27:04,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:06,189 INFO Connection check task start + +2025-09-24 08:27:06,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:06,189 INFO Out dated connection ,size=0 + +2025-09-24 08:27:06,189 INFO Connection check task end + +2025-09-24 08:27:07,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:09,189 INFO Connection check task start + +2025-09-24 08:27:09,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:09,189 INFO Out dated connection ,size=0 + +2025-09-24 08:27:09,189 INFO Connection check task end + +2025-09-24 08:27:10,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:12,191 INFO Connection check task start + +2025-09-24 08:27:12,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:12,191 INFO Out dated connection ,size=0 + +2025-09-24 08:27:12,191 INFO Connection check task end + +2025-09-24 08:27:13,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:15,192 INFO Connection check task start + +2025-09-24 08:27:15,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:15,192 INFO Out dated connection ,size=0 + +2025-09-24 08:27:15,192 INFO Connection check task end + +2025-09-24 08:27:16,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:18,193 INFO Connection check task start + +2025-09-24 08:27:18,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:18,193 INFO Out dated connection ,size=0 + +2025-09-24 08:27:18,193 INFO Connection check task end + +2025-09-24 08:27:19,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:21,194 INFO Connection check task start + +2025-09-24 08:27:21,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:21,194 INFO Out dated connection ,size=0 + +2025-09-24 08:27:21,194 INFO Connection check task end + +2025-09-24 08:27:22,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:24,196 INFO Connection check task start + +2025-09-24 08:27:24,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:24,196 INFO Out dated connection ,size=0 + +2025-09-24 08:27:24,196 INFO Connection check task end + +2025-09-24 08:27:25,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:27,196 INFO Connection check task start + +2025-09-24 08:27:27,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:27,196 INFO Out dated connection ,size=0 + +2025-09-24 08:27:27,196 INFO Connection check task end + +2025-09-24 08:27:28,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:30,197 INFO Connection check task start + +2025-09-24 08:27:30,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:30,197 INFO Out dated connection ,size=0 + +2025-09-24 08:27:30,197 INFO Connection check task end + +2025-09-24 08:27:31,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:33,198 INFO Connection check task start + +2025-09-24 08:27:33,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:33,198 INFO Out dated connection ,size=0 + +2025-09-24 08:27:33,198 INFO Connection check task end + +2025-09-24 08:27:34,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:36,199 INFO Connection check task start + +2025-09-24 08:27:36,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:36,199 INFO Out dated connection ,size=0 + +2025-09-24 08:27:36,199 INFO Connection check task end + +2025-09-24 08:27:37,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:39,200 INFO Connection check task start + +2025-09-24 08:27:39,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:39,200 INFO Out dated connection ,size=0 + +2025-09-24 08:27:39,200 INFO Connection check task end + +2025-09-24 08:27:40,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:42,200 INFO Connection check task start + +2025-09-24 08:27:42,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:42,201 INFO Out dated connection ,size=0 + +2025-09-24 08:27:42,201 INFO Connection check task end + +2025-09-24 08:27:43,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:45,203 INFO Connection check task start + +2025-09-24 08:27:45,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:45,203 INFO Out dated connection ,size=0 + +2025-09-24 08:27:45,203 INFO Connection check task end + +2025-09-24 08:27:46,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:48,204 INFO Connection check task start + +2025-09-24 08:27:48,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:48,204 INFO Out dated connection ,size=0 + +2025-09-24 08:27:48,204 INFO Connection check task end + +2025-09-24 08:27:49,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:51,205 INFO Connection check task start + +2025-09-24 08:27:51,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:51,205 INFO Out dated connection ,size=0 + +2025-09-24 08:27:51,205 INFO Connection check task end + +2025-09-24 08:27:52,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:54,205 INFO Connection check task start + +2025-09-24 08:27:54,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:54,206 INFO Out dated connection ,size=0 + +2025-09-24 08:27:54,206 INFO Connection check task end + +2025-09-24 08:27:55,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:27:57,206 INFO Connection check task start + +2025-09-24 08:27:57,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:27:57,207 INFO Out dated connection ,size=0 + +2025-09-24 08:27:57,207 INFO Connection check task end + +2025-09-24 08:27:58,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:00,209 INFO Connection check task start + +2025-09-24 08:28:00,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:00,209 INFO Out dated connection ,size=0 + +2025-09-24 08:28:00,209 INFO Connection check task end + +2025-09-24 08:28:01,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:03,211 INFO Connection check task start + +2025-09-24 08:28:03,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:03,211 INFO Out dated connection ,size=0 + +2025-09-24 08:28:03,211 INFO Connection check task end + +2025-09-24 08:28:04,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:06,213 INFO Connection check task start + +2025-09-24 08:28:06,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:06,213 INFO Out dated connection ,size=0 + +2025-09-24 08:28:06,213 INFO Connection check task end + +2025-09-24 08:28:07,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:09,215 INFO Connection check task start + +2025-09-24 08:28:09,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:09,215 INFO Out dated connection ,size=0 + +2025-09-24 08:28:09,215 INFO Connection check task end + +2025-09-24 08:28:10,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:12,217 INFO Connection check task start + +2025-09-24 08:28:12,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:12,217 INFO Out dated connection ,size=0 + +2025-09-24 08:28:12,217 INFO Connection check task end + +2025-09-24 08:28:13,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:15,218 INFO Connection check task start + +2025-09-24 08:28:15,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:15,218 INFO Out dated connection ,size=0 + +2025-09-24 08:28:15,219 INFO Connection check task end + +2025-09-24 08:28:16,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:18,219 INFO Connection check task start + +2025-09-24 08:28:18,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:18,219 INFO Out dated connection ,size=0 + +2025-09-24 08:28:18,219 INFO Connection check task end + +2025-09-24 08:28:19,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:21,221 INFO Connection check task start + +2025-09-24 08:28:21,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:21,221 INFO Out dated connection ,size=0 + +2025-09-24 08:28:21,221 INFO Connection check task end + +2025-09-24 08:28:22,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:24,223 INFO Connection check task start + +2025-09-24 08:28:24,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:24,223 INFO Out dated connection ,size=0 + +2025-09-24 08:28:24,223 INFO Connection check task end + +2025-09-24 08:28:25,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:27,223 INFO Connection check task start + +2025-09-24 08:28:27,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:27,224 INFO Out dated connection ,size=0 + +2025-09-24 08:28:27,224 INFO Connection check task end + +2025-09-24 08:28:28,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:30,224 INFO Connection check task start + +2025-09-24 08:28:30,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:30,224 INFO Out dated connection ,size=0 + +2025-09-24 08:28:30,224 INFO Connection check task end + +2025-09-24 08:28:31,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:33,226 INFO Connection check task start + +2025-09-24 08:28:33,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:33,226 INFO Out dated connection ,size=0 + +2025-09-24 08:28:33,226 INFO Connection check task end + +2025-09-24 08:28:34,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:36,228 INFO Connection check task start + +2025-09-24 08:28:36,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:36,228 INFO Out dated connection ,size=0 + +2025-09-24 08:28:36,228 INFO Connection check task end + +2025-09-24 08:28:37,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:39,228 INFO Connection check task start + +2025-09-24 08:28:39,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:39,228 INFO Out dated connection ,size=0 + +2025-09-24 08:28:39,229 INFO Connection check task end + +2025-09-24 08:28:40,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:42,229 INFO Connection check task start + +2025-09-24 08:28:42,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:42,229 INFO Out dated connection ,size=0 + +2025-09-24 08:28:42,229 INFO Connection check task end + +2025-09-24 08:28:43,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:45,229 INFO Connection check task start + +2025-09-24 08:28:45,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:45,229 INFO Out dated connection ,size=0 + +2025-09-24 08:28:45,230 INFO Connection check task end + +2025-09-24 08:28:46,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:48,230 INFO Connection check task start + +2025-09-24 08:28:48,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:48,230 INFO Out dated connection ,size=0 + +2025-09-24 08:28:48,230 INFO Connection check task end + +2025-09-24 08:28:49,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:51,230 INFO Connection check task start + +2025-09-24 08:28:51,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:51,231 INFO Out dated connection ,size=0 + +2025-09-24 08:28:51,231 INFO Connection check task end + +2025-09-24 08:28:52,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:54,231 INFO Connection check task start + +2025-09-24 08:28:54,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:54,231 INFO Out dated connection ,size=0 + +2025-09-24 08:28:54,231 INFO Connection check task end + +2025-09-24 08:28:56,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:28:57,232 INFO Connection check task start + +2025-09-24 08:28:57,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:28:57,232 INFO Out dated connection ,size=0 + +2025-09-24 08:28:57,232 INFO Connection check task end + +2025-09-24 08:28:59,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:00,232 INFO Connection check task start + +2025-09-24 08:29:00,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:00,232 INFO Out dated connection ,size=0 + +2025-09-24 08:29:00,232 INFO Connection check task end + +2025-09-24 08:29:02,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:03,232 INFO Connection check task start + +2025-09-24 08:29:03,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:03,233 INFO Out dated connection ,size=0 + +2025-09-24 08:29:03,233 INFO Connection check task end + +2025-09-24 08:29:05,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:06,235 INFO Connection check task start + +2025-09-24 08:29:06,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:06,235 INFO Out dated connection ,size=0 + +2025-09-24 08:29:06,235 INFO Connection check task end + +2025-09-24 08:29:08,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:09,237 INFO Connection check task start + +2025-09-24 08:29:09,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:09,237 INFO Out dated connection ,size=0 + +2025-09-24 08:29:09,237 INFO Connection check task end + +2025-09-24 08:29:11,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:12,238 INFO Connection check task start + +2025-09-24 08:29:12,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:12,238 INFO Out dated connection ,size=0 + +2025-09-24 08:29:12,238 INFO Connection check task end + +2025-09-24 08:29:14,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:15,240 INFO Connection check task start + +2025-09-24 08:29:15,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:15,240 INFO Out dated connection ,size=0 + +2025-09-24 08:29:15,240 INFO Connection check task end + +2025-09-24 08:29:17,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:18,241 INFO Connection check task start + +2025-09-24 08:29:18,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:18,241 INFO Out dated connection ,size=0 + +2025-09-24 08:29:18,241 INFO Connection check task end + +2025-09-24 08:29:20,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:21,247 INFO Connection check task start + +2025-09-24 08:29:21,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:21,247 INFO Out dated connection ,size=0 + +2025-09-24 08:29:21,247 INFO Connection check task end + +2025-09-24 08:29:23,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:24,250 INFO Connection check task start + +2025-09-24 08:29:24,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:24,250 INFO Out dated connection ,size=0 + +2025-09-24 08:29:24,250 INFO Connection check task end + +2025-09-24 08:29:26,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:27,250 INFO Connection check task start + +2025-09-24 08:29:27,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:27,250 INFO Out dated connection ,size=0 + +2025-09-24 08:29:27,250 INFO Connection check task end + +2025-09-24 08:29:29,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:30,251 INFO Connection check task start + +2025-09-24 08:29:30,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:30,251 INFO Out dated connection ,size=0 + +2025-09-24 08:29:30,251 INFO Connection check task end + +2025-09-24 08:29:32,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:33,254 INFO Connection check task start + +2025-09-24 08:29:33,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:33,254 INFO Out dated connection ,size=0 + +2025-09-24 08:29:33,254 INFO Connection check task end + +2025-09-24 08:29:35,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:36,256 INFO Connection check task start + +2025-09-24 08:29:36,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:36,256 INFO Out dated connection ,size=0 + +2025-09-24 08:29:36,256 INFO Connection check task end + +2025-09-24 08:29:38,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:39,256 INFO Connection check task start + +2025-09-24 08:29:39,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:39,257 INFO Out dated connection ,size=0 + +2025-09-24 08:29:39,257 INFO Connection check task end + +2025-09-24 08:29:41,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:42,257 INFO Connection check task start + +2025-09-24 08:29:42,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:42,257 INFO Out dated connection ,size=0 + +2025-09-24 08:29:42,257 INFO Connection check task end + +2025-09-24 08:29:44,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:45,259 INFO Connection check task start + +2025-09-24 08:29:45,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:45,259 INFO Out dated connection ,size=0 + +2025-09-24 08:29:45,259 INFO Connection check task end + +2025-09-24 08:29:47,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:48,261 INFO Connection check task start + +2025-09-24 08:29:48,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:48,261 INFO Out dated connection ,size=0 + +2025-09-24 08:29:48,261 INFO Connection check task end + +2025-09-24 08:29:50,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:51,261 INFO Connection check task start + +2025-09-24 08:29:51,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:51,261 INFO Out dated connection ,size=0 + +2025-09-24 08:29:51,261 INFO Connection check task end + +2025-09-24 08:29:53,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:54,262 INFO Connection check task start + +2025-09-24 08:29:54,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:54,262 INFO Out dated connection ,size=0 + +2025-09-24 08:29:54,262 INFO Connection check task end + +2025-09-24 08:29:56,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:29:57,264 INFO Connection check task start + +2025-09-24 08:29:57,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:29:57,264 INFO Out dated connection ,size=0 + +2025-09-24 08:29:57,264 INFO Connection check task end + +2025-09-24 08:29:59,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:00,264 INFO Connection check task start + +2025-09-24 08:30:00,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:00,264 INFO Out dated connection ,size=0 + +2025-09-24 08:30:00,264 INFO Connection check task end + +2025-09-24 08:30:02,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:03,265 INFO Connection check task start + +2025-09-24 08:30:03,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:03,265 INFO Out dated connection ,size=0 + +2025-09-24 08:30:03,265 INFO Connection check task end + +2025-09-24 08:30:05,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:06,265 INFO Connection check task start + +2025-09-24 08:30:06,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:06,265 INFO Out dated connection ,size=0 + +2025-09-24 08:30:06,265 INFO Connection check task end + +2025-09-24 08:30:08,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:09,265 INFO Connection check task start + +2025-09-24 08:30:09,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:09,266 INFO Out dated connection ,size=0 + +2025-09-24 08:30:09,266 INFO Connection check task end + +2025-09-24 08:30:11,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:12,267 INFO Connection check task start + +2025-09-24 08:30:12,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:12,267 INFO Out dated connection ,size=0 + +2025-09-24 08:30:12,268 INFO Connection check task end + +2025-09-24 08:30:14,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:15,268 INFO Connection check task start + +2025-09-24 08:30:15,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:15,268 INFO Out dated connection ,size=0 + +2025-09-24 08:30:15,268 INFO Connection check task end + +2025-09-24 08:30:17,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:18,270 INFO Connection check task start + +2025-09-24 08:30:18,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:18,270 INFO Out dated connection ,size=0 + +2025-09-24 08:30:18,270 INFO Connection check task end + +2025-09-24 08:30:20,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:21,272 INFO Connection check task start + +2025-09-24 08:30:21,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:21,272 INFO Out dated connection ,size=0 + +2025-09-24 08:30:21,272 INFO Connection check task end + +2025-09-24 08:30:23,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:24,272 INFO Connection check task start + +2025-09-24 08:30:24,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:24,272 INFO Out dated connection ,size=0 + +2025-09-24 08:30:24,273 INFO Connection check task end + +2025-09-24 08:30:26,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:27,274 INFO Connection check task start + +2025-09-24 08:30:27,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:27,274 INFO Out dated connection ,size=0 + +2025-09-24 08:30:27,274 INFO Connection check task end + +2025-09-24 08:30:29,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:30,275 INFO Connection check task start + +2025-09-24 08:30:30,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:30,275 INFO Out dated connection ,size=0 + +2025-09-24 08:30:30,275 INFO Connection check task end + +2025-09-24 08:30:32,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:33,276 INFO Connection check task start + +2025-09-24 08:30:33,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:33,276 INFO Out dated connection ,size=0 + +2025-09-24 08:30:33,276 INFO Connection check task end + +2025-09-24 08:30:35,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:36,277 INFO Connection check task start + +2025-09-24 08:30:36,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:36,278 INFO Out dated connection ,size=0 + +2025-09-24 08:30:36,278 INFO Connection check task end + +2025-09-24 08:30:38,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:39,278 INFO Connection check task start + +2025-09-24 08:30:39,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:39,278 INFO Out dated connection ,size=0 + +2025-09-24 08:30:39,278 INFO Connection check task end + +2025-09-24 08:30:41,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:42,280 INFO Connection check task start + +2025-09-24 08:30:42,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:42,281 INFO Out dated connection ,size=0 + +2025-09-24 08:30:42,281 INFO Connection check task end + +2025-09-24 08:30:44,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:45,281 INFO Connection check task start + +2025-09-24 08:30:45,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:45,281 INFO Out dated connection ,size=0 + +2025-09-24 08:30:45,281 INFO Connection check task end + +2025-09-24 08:30:47,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:48,281 INFO Connection check task start + +2025-09-24 08:30:48,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:48,282 INFO Out dated connection ,size=0 + +2025-09-24 08:30:48,282 INFO Connection check task end + +2025-09-24 08:30:50,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:51,284 INFO Connection check task start + +2025-09-24 08:30:51,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:51,284 INFO Out dated connection ,size=0 + +2025-09-24 08:30:51,284 INFO Connection check task end + +2025-09-24 08:30:53,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:54,284 INFO Connection check task start + +2025-09-24 08:30:54,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:54,284 INFO Out dated connection ,size=0 + +2025-09-24 08:30:54,284 INFO Connection check task end + +2025-09-24 08:30:56,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:30:57,286 INFO Connection check task start + +2025-09-24 08:30:57,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:30:57,286 INFO Out dated connection ,size=0 + +2025-09-24 08:30:57,286 INFO Connection check task end + +2025-09-24 08:30:59,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:00,286 INFO Connection check task start + +2025-09-24 08:31:00,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:00,287 INFO Out dated connection ,size=0 + +2025-09-24 08:31:00,287 INFO Connection check task end + +2025-09-24 08:31:02,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:03,287 INFO Connection check task start + +2025-09-24 08:31:03,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:03,287 INFO Out dated connection ,size=0 + +2025-09-24 08:31:03,287 INFO Connection check task end + +2025-09-24 08:31:05,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:06,287 INFO Connection check task start + +2025-09-24 08:31:06,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:06,287 INFO Out dated connection ,size=0 + +2025-09-24 08:31:06,287 INFO Connection check task end + +2025-09-24 08:31:08,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:09,288 INFO Connection check task start + +2025-09-24 08:31:09,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:09,288 INFO Out dated connection ,size=0 + +2025-09-24 08:31:09,288 INFO Connection check task end + +2025-09-24 08:31:11,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:12,290 INFO Connection check task start + +2025-09-24 08:31:12,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:12,291 INFO Out dated connection ,size=0 + +2025-09-24 08:31:12,291 INFO Connection check task end + +2025-09-24 08:31:14,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:15,291 INFO Connection check task start + +2025-09-24 08:31:15,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:15,291 INFO Out dated connection ,size=0 + +2025-09-24 08:31:15,291 INFO Connection check task end + +2025-09-24 08:31:17,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:18,292 INFO Connection check task start + +2025-09-24 08:31:18,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:18,298 INFO Out dated connection ,size=0 + +2025-09-24 08:31:18,298 INFO Connection check task end + +2025-09-24 08:31:20,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:21,298 INFO Connection check task start + +2025-09-24 08:31:21,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:21,298 INFO Out dated connection ,size=0 + +2025-09-24 08:31:21,298 INFO Connection check task end + +2025-09-24 08:31:23,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:24,298 INFO Connection check task start + +2025-09-24 08:31:24,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:24,298 INFO Out dated connection ,size=0 + +2025-09-24 08:31:24,299 INFO Connection check task end + +2025-09-24 08:31:26,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:27,299 INFO Connection check task start + +2025-09-24 08:31:27,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:27,299 INFO Out dated connection ,size=0 + +2025-09-24 08:31:27,300 INFO Connection check task end + +2025-09-24 08:31:29,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:30,301 INFO Connection check task start + +2025-09-24 08:31:30,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:30,301 INFO Out dated connection ,size=0 + +2025-09-24 08:31:30,301 INFO Connection check task end + +2025-09-24 08:31:32,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:33,303 INFO Connection check task start + +2025-09-24 08:31:33,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:33,303 INFO Out dated connection ,size=0 + +2025-09-24 08:31:33,303 INFO Connection check task end + +2025-09-24 08:31:35,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:36,305 INFO Connection check task start + +2025-09-24 08:31:36,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:36,306 INFO Out dated connection ,size=0 + +2025-09-24 08:31:36,306 INFO Connection check task end + +2025-09-24 08:31:38,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:39,308 INFO Connection check task start + +2025-09-24 08:31:39,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:39,308 INFO Out dated connection ,size=0 + +2025-09-24 08:31:39,308 INFO Connection check task end + +2025-09-24 08:31:41,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:42,310 INFO Connection check task start + +2025-09-24 08:31:42,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:42,310 INFO Out dated connection ,size=0 + +2025-09-24 08:31:42,310 INFO Connection check task end + +2025-09-24 08:31:44,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:45,312 INFO Connection check task start + +2025-09-24 08:31:45,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:45,313 INFO Out dated connection ,size=0 + +2025-09-24 08:31:45,313 INFO Connection check task end + +2025-09-24 08:31:47,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:48,313 INFO Connection check task start + +2025-09-24 08:31:48,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:48,313 INFO Out dated connection ,size=0 + +2025-09-24 08:31:48,313 INFO Connection check task end + +2025-09-24 08:31:50,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:51,313 INFO Connection check task start + +2025-09-24 08:31:51,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:51,313 INFO Out dated connection ,size=0 + +2025-09-24 08:31:51,313 INFO Connection check task end + +2025-09-24 08:31:53,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:54,315 INFO Connection check task start + +2025-09-24 08:31:54,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:54,315 INFO Out dated connection ,size=0 + +2025-09-24 08:31:54,315 INFO Connection check task end + +2025-09-24 08:31:56,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:31:57,315 INFO Connection check task start + +2025-09-24 08:31:57,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:31:57,316 INFO Out dated connection ,size=0 + +2025-09-24 08:31:57,316 INFO Connection check task end + +2025-09-24 08:31:59,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:00,316 INFO Connection check task start + +2025-09-24 08:32:00,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:00,316 INFO Out dated connection ,size=0 + +2025-09-24 08:32:00,316 INFO Connection check task end + +2025-09-24 08:32:02,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:03,316 INFO Connection check task start + +2025-09-24 08:32:03,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:03,317 INFO Out dated connection ,size=0 + +2025-09-24 08:32:03,317 INFO Connection check task end + +2025-09-24 08:32:05,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:06,317 INFO Connection check task start + +2025-09-24 08:32:06,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:06,317 INFO Out dated connection ,size=0 + +2025-09-24 08:32:06,317 INFO Connection check task end + +2025-09-24 08:32:08,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:09,318 INFO Connection check task start + +2025-09-24 08:32:09,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:09,318 INFO Out dated connection ,size=0 + +2025-09-24 08:32:09,318 INFO Connection check task end + +2025-09-24 08:32:11,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:12,318 INFO Connection check task start + +2025-09-24 08:32:12,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:12,319 INFO Out dated connection ,size=0 + +2025-09-24 08:32:12,319 INFO Connection check task end + +2025-09-24 08:32:14,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:15,321 INFO Connection check task start + +2025-09-24 08:32:15,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:15,321 INFO Out dated connection ,size=0 + +2025-09-24 08:32:15,321 INFO Connection check task end + +2025-09-24 08:32:17,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:18,321 INFO Connection check task start + +2025-09-24 08:32:18,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:18,321 INFO Out dated connection ,size=0 + +2025-09-24 08:32:18,321 INFO Connection check task end + +2025-09-24 08:32:20,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:21,322 INFO Connection check task start + +2025-09-24 08:32:21,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:21,322 INFO Out dated connection ,size=0 + +2025-09-24 08:32:21,322 INFO Connection check task end + +2025-09-24 08:32:23,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:24,322 INFO Connection check task start + +2025-09-24 08:32:24,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:24,322 INFO Out dated connection ,size=0 + +2025-09-24 08:32:24,322 INFO Connection check task end + +2025-09-24 08:32:26,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:27,323 INFO Connection check task start + +2025-09-24 08:32:27,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:27,323 INFO Out dated connection ,size=0 + +2025-09-24 08:32:27,324 INFO Connection check task end + +2025-09-24 08:32:29,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:30,326 INFO Connection check task start + +2025-09-24 08:32:30,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:30,326 INFO Out dated connection ,size=0 + +2025-09-24 08:32:30,326 INFO Connection check task end + +2025-09-24 08:32:32,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:33,326 INFO Connection check task start + +2025-09-24 08:32:33,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:33,326 INFO Out dated connection ,size=0 + +2025-09-24 08:32:33,326 INFO Connection check task end + +2025-09-24 08:32:35,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:36,327 INFO Connection check task start + +2025-09-24 08:32:36,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:36,327 INFO Out dated connection ,size=0 + +2025-09-24 08:32:36,327 INFO Connection check task end + +2025-09-24 08:32:38,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:39,328 INFO Connection check task start + +2025-09-24 08:32:39,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:39,329 INFO Out dated connection ,size=0 + +2025-09-24 08:32:39,329 INFO Connection check task end + +2025-09-24 08:32:41,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:42,330 INFO Connection check task start + +2025-09-24 08:32:42,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:42,330 INFO Out dated connection ,size=0 + +2025-09-24 08:32:42,330 INFO Connection check task end + +2025-09-24 08:32:44,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:45,331 INFO Connection check task start + +2025-09-24 08:32:45,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:45,331 INFO Out dated connection ,size=0 + +2025-09-24 08:32:45,331 INFO Connection check task end + +2025-09-24 08:32:47,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:48,331 INFO Connection check task start + +2025-09-24 08:32:48,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:48,331 INFO Out dated connection ,size=0 + +2025-09-24 08:32:48,331 INFO Connection check task end + +2025-09-24 08:32:50,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:51,333 INFO Connection check task start + +2025-09-24 08:32:51,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:51,333 INFO Out dated connection ,size=0 + +2025-09-24 08:32:51,333 INFO Connection check task end + +2025-09-24 08:32:53,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:54,333 INFO Connection check task start + +2025-09-24 08:32:54,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:54,333 INFO Out dated connection ,size=0 + +2025-09-24 08:32:54,333 INFO Connection check task end + +2025-09-24 08:32:56,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:32:57,334 INFO Connection check task start + +2025-09-24 08:32:57,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:32:57,334 INFO Out dated connection ,size=0 + +2025-09-24 08:32:57,334 INFO Connection check task end + +2025-09-24 08:32:59,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:00,334 INFO Connection check task start + +2025-09-24 08:33:00,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:00,335 INFO Out dated connection ,size=0 + +2025-09-24 08:33:00,335 INFO Connection check task end + +2025-09-24 08:33:02,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:03,337 INFO Connection check task start + +2025-09-24 08:33:03,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:03,337 INFO Out dated connection ,size=0 + +2025-09-24 08:33:03,337 INFO Connection check task end + +2025-09-24 08:33:05,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:06,339 INFO Connection check task start + +2025-09-24 08:33:06,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:06,339 INFO Out dated connection ,size=0 + +2025-09-24 08:33:06,339 INFO Connection check task end + +2025-09-24 08:33:08,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:09,341 INFO Connection check task start + +2025-09-24 08:33:09,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:09,341 INFO Out dated connection ,size=0 + +2025-09-24 08:33:09,341 INFO Connection check task end + +2025-09-24 08:33:11,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:12,343 INFO Connection check task start + +2025-09-24 08:33:12,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:12,343 INFO Out dated connection ,size=0 + +2025-09-24 08:33:12,343 INFO Connection check task end + +2025-09-24 08:33:14,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:15,344 INFO Connection check task start + +2025-09-24 08:33:15,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:15,344 INFO Out dated connection ,size=0 + +2025-09-24 08:33:15,344 INFO Connection check task end + +2025-09-24 08:33:17,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:18,346 INFO Connection check task start + +2025-09-24 08:33:18,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:18,346 INFO Out dated connection ,size=0 + +2025-09-24 08:33:18,346 INFO Connection check task end + +2025-09-24 08:33:20,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:21,347 INFO Connection check task start + +2025-09-24 08:33:21,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:21,347 INFO Out dated connection ,size=0 + +2025-09-24 08:33:21,347 INFO Connection check task end + +2025-09-24 08:33:23,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:24,347 INFO Connection check task start + +2025-09-24 08:33:24,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:24,347 INFO Out dated connection ,size=0 + +2025-09-24 08:33:24,347 INFO Connection check task end + +2025-09-24 08:33:26,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:27,348 INFO Connection check task start + +2025-09-24 08:33:27,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:27,348 INFO Out dated connection ,size=0 + +2025-09-24 08:33:27,348 INFO Connection check task end + +2025-09-24 08:33:29,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:30,349 INFO Connection check task start + +2025-09-24 08:33:30,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:30,349 INFO Out dated connection ,size=0 + +2025-09-24 08:33:30,349 INFO Connection check task end + +2025-09-24 08:33:32,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:33,349 INFO Connection check task start + +2025-09-24 08:33:33,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:33,350 INFO Out dated connection ,size=0 + +2025-09-24 08:33:33,350 INFO Connection check task end + +2025-09-24 08:33:35,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:36,351 INFO Connection check task start + +2025-09-24 08:33:36,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:36,351 INFO Out dated connection ,size=0 + +2025-09-24 08:33:36,351 INFO Connection check task end + +2025-09-24 08:33:38,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:39,352 INFO Connection check task start + +2025-09-24 08:33:39,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:39,352 INFO Out dated connection ,size=0 + +2025-09-24 08:33:39,352 INFO Connection check task end + +2025-09-24 08:33:41,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:42,353 INFO Connection check task start + +2025-09-24 08:33:42,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:42,353 INFO Out dated connection ,size=0 + +2025-09-24 08:33:42,353 INFO Connection check task end + +2025-09-24 08:33:44,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:45,353 INFO Connection check task start + +2025-09-24 08:33:45,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:45,353 INFO Out dated connection ,size=0 + +2025-09-24 08:33:45,354 INFO Connection check task end + +2025-09-24 08:33:47,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:48,354 INFO Connection check task start + +2025-09-24 08:33:48,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:48,354 INFO Out dated connection ,size=0 + +2025-09-24 08:33:48,354 INFO Connection check task end + +2025-09-24 08:33:50,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:51,356 INFO Connection check task start + +2025-09-24 08:33:51,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:51,356 INFO Out dated connection ,size=0 + +2025-09-24 08:33:51,356 INFO Connection check task end + +2025-09-24 08:33:53,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:54,356 INFO Connection check task start + +2025-09-24 08:33:54,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:54,357 INFO Out dated connection ,size=0 + +2025-09-24 08:33:54,357 INFO Connection check task end + +2025-09-24 08:33:56,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:33:57,359 INFO Connection check task start + +2025-09-24 08:33:57,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:33:57,359 INFO Out dated connection ,size=0 + +2025-09-24 08:33:57,359 INFO Connection check task end + +2025-09-24 08:33:59,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:00,361 INFO Connection check task start + +2025-09-24 08:34:00,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:00,361 INFO Out dated connection ,size=0 + +2025-09-24 08:34:00,361 INFO Connection check task end + +2025-09-24 08:34:02,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:03,362 INFO Connection check task start + +2025-09-24 08:34:03,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:03,362 INFO Out dated connection ,size=0 + +2025-09-24 08:34:03,362 INFO Connection check task end + +2025-09-24 08:34:05,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:06,362 INFO Connection check task start + +2025-09-24 08:34:06,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:06,362 INFO Out dated connection ,size=0 + +2025-09-24 08:34:06,362 INFO Connection check task end + +2025-09-24 08:34:08,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:09,363 INFO Connection check task start + +2025-09-24 08:34:09,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:09,363 INFO Out dated connection ,size=0 + +2025-09-24 08:34:09,363 INFO Connection check task end + +2025-09-24 08:34:11,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:12,364 INFO Connection check task start + +2025-09-24 08:34:12,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:12,364 INFO Out dated connection ,size=0 + +2025-09-24 08:34:12,364 INFO Connection check task end + +2025-09-24 08:34:14,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:15,365 INFO Connection check task start + +2025-09-24 08:34:15,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:15,365 INFO Out dated connection ,size=0 + +2025-09-24 08:34:15,365 INFO Connection check task end + +2025-09-24 08:34:17,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:18,367 INFO Connection check task start + +2025-09-24 08:34:18,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:18,367 INFO Out dated connection ,size=0 + +2025-09-24 08:34:18,367 INFO Connection check task end + +2025-09-24 08:34:20,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:21,367 INFO Connection check task start + +2025-09-24 08:34:21,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:21,367 INFO Out dated connection ,size=0 + +2025-09-24 08:34:21,367 INFO Connection check task end + +2025-09-24 08:34:23,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:24,368 INFO Connection check task start + +2025-09-24 08:34:24,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:24,368 INFO Out dated connection ,size=0 + +2025-09-24 08:34:24,368 INFO Connection check task end + +2025-09-24 08:34:26,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:27,370 INFO Connection check task start + +2025-09-24 08:34:27,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:27,370 INFO Out dated connection ,size=0 + +2025-09-24 08:34:27,370 INFO Connection check task end + +2025-09-24 08:34:29,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:30,372 INFO Connection check task start + +2025-09-24 08:34:30,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:30,372 INFO Out dated connection ,size=0 + +2025-09-24 08:34:30,372 INFO Connection check task end + +2025-09-24 08:34:32,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:33,373 INFO Connection check task start + +2025-09-24 08:34:33,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:33,374 INFO Out dated connection ,size=0 + +2025-09-24 08:34:33,374 INFO Connection check task end + +2025-09-24 08:34:35,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:36,376 INFO Connection check task start + +2025-09-24 08:34:36,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:36,376 INFO Out dated connection ,size=0 + +2025-09-24 08:34:36,376 INFO Connection check task end + +2025-09-24 08:34:38,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:39,376 INFO Connection check task start + +2025-09-24 08:34:39,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:39,376 INFO Out dated connection ,size=0 + +2025-09-24 08:34:39,377 INFO Connection check task end + +2025-09-24 08:34:41,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:42,377 INFO Connection check task start + +2025-09-24 08:34:42,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:42,377 INFO Out dated connection ,size=0 + +2025-09-24 08:34:42,377 INFO Connection check task end + +2025-09-24 08:34:44,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:45,378 INFO Connection check task start + +2025-09-24 08:34:45,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:45,378 INFO Out dated connection ,size=0 + +2025-09-24 08:34:45,378 INFO Connection check task end + +2025-09-24 08:34:47,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:48,379 INFO Connection check task start + +2025-09-24 08:34:48,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:48,379 INFO Out dated connection ,size=0 + +2025-09-24 08:34:48,379 INFO Connection check task end + +2025-09-24 08:34:50,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:51,379 INFO Connection check task start + +2025-09-24 08:34:51,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:51,380 INFO Out dated connection ,size=0 + +2025-09-24 08:34:51,380 INFO Connection check task end + +2025-09-24 08:34:53,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:54,381 INFO Connection check task start + +2025-09-24 08:34:54,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:54,381 INFO Out dated connection ,size=0 + +2025-09-24 08:34:54,381 INFO Connection check task end + +2025-09-24 08:34:56,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:34:57,383 INFO Connection check task start + +2025-09-24 08:34:57,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:34:57,383 INFO Out dated connection ,size=0 + +2025-09-24 08:34:57,383 INFO Connection check task end + +2025-09-24 08:34:59,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:00,384 INFO Connection check task start + +2025-09-24 08:35:00,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:00,384 INFO Out dated connection ,size=0 + +2025-09-24 08:35:00,384 INFO Connection check task end + +2025-09-24 08:35:02,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:03,384 INFO Connection check task start + +2025-09-24 08:35:03,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:03,384 INFO Out dated connection ,size=0 + +2025-09-24 08:35:03,384 INFO Connection check task end + +2025-09-24 08:35:05,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:06,385 INFO Connection check task start + +2025-09-24 08:35:06,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:06,385 INFO Out dated connection ,size=0 + +2025-09-24 08:35:06,385 INFO Connection check task end + +2025-09-24 08:35:08,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:09,385 INFO Connection check task start + +2025-09-24 08:35:09,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:09,385 INFO Out dated connection ,size=0 + +2025-09-24 08:35:09,385 INFO Connection check task end + +2025-09-24 08:35:11,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:12,386 INFO Connection check task start + +2025-09-24 08:35:12,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:12,386 INFO Out dated connection ,size=0 + +2025-09-24 08:35:12,386 INFO Connection check task end + +2025-09-24 08:35:14,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:15,388 INFO Connection check task start + +2025-09-24 08:35:15,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:15,388 INFO Out dated connection ,size=0 + +2025-09-24 08:35:15,388 INFO Connection check task end + +2025-09-24 08:35:17,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:18,388 INFO Connection check task start + +2025-09-24 08:35:18,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:18,389 INFO Out dated connection ,size=0 + +2025-09-24 08:35:18,389 INFO Connection check task end + +2025-09-24 08:35:20,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:21,389 INFO Connection check task start + +2025-09-24 08:35:21,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:21,391 INFO Out dated connection ,size=0 + +2025-09-24 08:35:21,391 INFO Connection check task end + +2025-09-24 08:35:23,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:24,391 INFO Connection check task start + +2025-09-24 08:35:24,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:24,391 INFO Out dated connection ,size=0 + +2025-09-24 08:35:24,391 INFO Connection check task end + +2025-09-24 08:35:26,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:27,392 INFO Connection check task start + +2025-09-24 08:35:27,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:27,392 INFO Out dated connection ,size=0 + +2025-09-24 08:35:27,392 INFO Connection check task end + +2025-09-24 08:35:29,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:30,394 INFO Connection check task start + +2025-09-24 08:35:30,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:30,394 INFO Out dated connection ,size=0 + +2025-09-24 08:35:30,394 INFO Connection check task end + +2025-09-24 08:35:32,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:33,396 INFO Connection check task start + +2025-09-24 08:35:33,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:33,396 INFO Out dated connection ,size=0 + +2025-09-24 08:35:33,396 INFO Connection check task end + +2025-09-24 08:35:35,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:36,396 INFO Connection check task start + +2025-09-24 08:35:36,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:36,397 INFO Out dated connection ,size=0 + +2025-09-24 08:35:36,397 INFO Connection check task end + +2025-09-24 08:35:38,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:39,397 INFO Connection check task start + +2025-09-24 08:35:39,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:39,397 INFO Out dated connection ,size=0 + +2025-09-24 08:35:39,397 INFO Connection check task end + +2025-09-24 08:35:41,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:42,399 INFO Connection check task start + +2025-09-24 08:35:42,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:42,399 INFO Out dated connection ,size=0 + +2025-09-24 08:35:42,399 INFO Connection check task end + +2025-09-24 08:35:44,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:45,400 INFO Connection check task start + +2025-09-24 08:35:45,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:45,400 INFO Out dated connection ,size=0 + +2025-09-24 08:35:45,400 INFO Connection check task end + +2025-09-24 08:35:47,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:48,400 INFO Connection check task start + +2025-09-24 08:35:48,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:48,403 INFO Out dated connection ,size=0 + +2025-09-24 08:35:48,424 INFO Connection check task end + +2025-09-24 08:35:50,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:51,448 INFO Connection check task start + +2025-09-24 08:35:51,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:51,448 INFO Out dated connection ,size=0 + +2025-09-24 08:35:51,448 INFO Connection check task end + +2025-09-24 08:35:53,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:54,449 INFO Connection check task start + +2025-09-24 08:35:54,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:54,449 INFO Out dated connection ,size=0 + +2025-09-24 08:35:54,449 INFO Connection check task end + +2025-09-24 08:35:56,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:35:57,449 INFO Connection check task start + +2025-09-24 08:35:57,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:35:57,449 INFO Out dated connection ,size=0 + +2025-09-24 08:35:57,449 INFO Connection check task end + +2025-09-24 08:35:59,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:00,450 INFO Connection check task start + +2025-09-24 08:36:00,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:00,450 INFO Out dated connection ,size=0 + +2025-09-24 08:36:00,450 INFO Connection check task end + +2025-09-24 08:36:02,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:03,450 INFO Connection check task start + +2025-09-24 08:36:03,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:03,450 INFO Out dated connection ,size=0 + +2025-09-24 08:36:03,450 INFO Connection check task end + +2025-09-24 08:36:05,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:06,453 INFO Connection check task start + +2025-09-24 08:36:06,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:06,453 INFO Out dated connection ,size=0 + +2025-09-24 08:36:06,453 INFO Connection check task end + +2025-09-24 08:36:08,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:09,453 INFO Connection check task start + +2025-09-24 08:36:09,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:09,453 INFO Out dated connection ,size=0 + +2025-09-24 08:36:09,453 INFO Connection check task end + +2025-09-24 08:36:11,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:12,455 INFO Connection check task start + +2025-09-24 08:36:12,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:12,455 INFO Out dated connection ,size=0 + +2025-09-24 08:36:12,456 INFO Connection check task end + +2025-09-24 08:36:14,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:15,456 INFO Connection check task start + +2025-09-24 08:36:15,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:15,456 INFO Out dated connection ,size=0 + +2025-09-24 08:36:15,456 INFO Connection check task end + +2025-09-24 08:36:17,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:18,458 INFO Connection check task start + +2025-09-24 08:36:18,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:18,458 INFO Out dated connection ,size=0 + +2025-09-24 08:36:18,458 INFO Connection check task end + +2025-09-24 08:36:20,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:21,458 INFO Connection check task start + +2025-09-24 08:36:21,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:21,458 INFO Out dated connection ,size=0 + +2025-09-24 08:36:21,458 INFO Connection check task end + +2025-09-24 08:36:23,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:24,459 INFO Connection check task start + +2025-09-24 08:36:24,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:24,459 INFO Out dated connection ,size=0 + +2025-09-24 08:36:24,459 INFO Connection check task end + +2025-09-24 08:36:26,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:27,461 INFO Connection check task start + +2025-09-24 08:36:27,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:27,461 INFO Out dated connection ,size=0 + +2025-09-24 08:36:27,461 INFO Connection check task end + +2025-09-24 08:36:29,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:30,463 INFO Connection check task start + +2025-09-24 08:36:30,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:30,463 INFO Out dated connection ,size=0 + +2025-09-24 08:36:30,463 INFO Connection check task end + +2025-09-24 08:36:32,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:33,463 INFO Connection check task start + +2025-09-24 08:36:33,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:33,463 INFO Out dated connection ,size=0 + +2025-09-24 08:36:33,463 INFO Connection check task end + +2025-09-24 08:36:35,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:36,466 INFO Connection check task start + +2025-09-24 08:36:36,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:36,466 INFO Out dated connection ,size=0 + +2025-09-24 08:36:36,466 INFO Connection check task end + +2025-09-24 08:36:38,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:39,466 INFO Connection check task start + +2025-09-24 08:36:39,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:39,466 INFO Out dated connection ,size=0 + +2025-09-24 08:36:39,466 INFO Connection check task end + +2025-09-24 08:36:41,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:42,467 INFO Connection check task start + +2025-09-24 08:36:42,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:42,467 INFO Out dated connection ,size=0 + +2025-09-24 08:36:42,467 INFO Connection check task end + +2025-09-24 08:36:44,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:45,469 INFO Connection check task start + +2025-09-24 08:36:45,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:45,469 INFO Out dated connection ,size=0 + +2025-09-24 08:36:45,469 INFO Connection check task end + +2025-09-24 08:36:47,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:48,470 INFO Connection check task start + +2025-09-24 08:36:48,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:48,470 INFO Out dated connection ,size=0 + +2025-09-24 08:36:48,470 INFO Connection check task end + +2025-09-24 08:36:50,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:51,470 INFO Connection check task start + +2025-09-24 08:36:51,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:51,470 INFO Out dated connection ,size=0 + +2025-09-24 08:36:51,470 INFO Connection check task end + +2025-09-24 08:36:53,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:54,471 INFO Connection check task start + +2025-09-24 08:36:54,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:54,471 INFO Out dated connection ,size=0 + +2025-09-24 08:36:54,471 INFO Connection check task end + +2025-09-24 08:36:56,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:36:57,472 INFO Connection check task start + +2025-09-24 08:36:57,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:36:57,472 INFO Out dated connection ,size=0 + +2025-09-24 08:36:57,472 INFO Connection check task end + +2025-09-24 08:36:59,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:00,473 INFO Connection check task start + +2025-09-24 08:37:00,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:00,474 INFO Out dated connection ,size=0 + +2025-09-24 08:37:00,474 INFO Connection check task end + +2025-09-24 08:37:02,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:03,474 INFO Connection check task start + +2025-09-24 08:37:03,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:03,474 INFO Out dated connection ,size=0 + +2025-09-24 08:37:03,474 INFO Connection check task end + +2025-09-24 08:37:05,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:06,475 INFO Connection check task start + +2025-09-24 08:37:06,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:06,475 INFO Out dated connection ,size=0 + +2025-09-24 08:37:06,475 INFO Connection check task end + +2025-09-24 08:37:08,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:09,475 INFO Connection check task start + +2025-09-24 08:37:09,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:09,475 INFO Out dated connection ,size=0 + +2025-09-24 08:37:09,475 INFO Connection check task end + +2025-09-24 08:37:11,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:12,476 INFO Connection check task start + +2025-09-24 08:37:12,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:12,476 INFO Out dated connection ,size=0 + +2025-09-24 08:37:12,476 INFO Connection check task end + +2025-09-24 08:37:14,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:15,478 INFO Connection check task start + +2025-09-24 08:37:15,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:15,479 INFO Out dated connection ,size=0 + +2025-09-24 08:37:15,479 INFO Connection check task end + +2025-09-24 08:37:17,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:18,479 INFO Connection check task start + +2025-09-24 08:37:18,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:18,479 INFO Out dated connection ,size=0 + +2025-09-24 08:37:18,479 INFO Connection check task end + +2025-09-24 08:37:20,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:21,479 INFO Connection check task start + +2025-09-24 08:37:21,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:21,479 INFO Out dated connection ,size=0 + +2025-09-24 08:37:21,479 INFO Connection check task end + +2025-09-24 08:37:23,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:24,480 INFO Connection check task start + +2025-09-24 08:37:24,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:24,480 INFO Out dated connection ,size=0 + +2025-09-24 08:37:24,480 INFO Connection check task end + +2025-09-24 08:37:26,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:27,482 INFO Connection check task start + +2025-09-24 08:37:27,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:27,482 INFO Out dated connection ,size=0 + +2025-09-24 08:37:27,482 INFO Connection check task end + +2025-09-24 08:37:29,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:30,482 INFO Connection check task start + +2025-09-24 08:37:30,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:30,482 INFO Out dated connection ,size=0 + +2025-09-24 08:37:30,482 INFO Connection check task end + +2025-09-24 08:37:32,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:33,484 INFO Connection check task start + +2025-09-24 08:37:33,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:33,484 INFO Out dated connection ,size=0 + +2025-09-24 08:37:33,485 INFO Connection check task end + +2025-09-24 08:37:35,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:36,485 INFO Connection check task start + +2025-09-24 08:37:36,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:36,485 INFO Out dated connection ,size=0 + +2025-09-24 08:37:36,485 INFO Connection check task end + +2025-09-24 08:37:38,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:39,487 INFO Connection check task start + +2025-09-24 08:37:39,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:39,487 INFO Out dated connection ,size=0 + +2025-09-24 08:37:39,487 INFO Connection check task end + +2025-09-24 08:37:41,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:42,488 INFO Connection check task start + +2025-09-24 08:37:42,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:42,488 INFO Out dated connection ,size=0 + +2025-09-24 08:37:42,488 INFO Connection check task end + +2025-09-24 08:37:44,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:45,490 INFO Connection check task start + +2025-09-24 08:37:45,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:45,490 INFO Out dated connection ,size=0 + +2025-09-24 08:37:45,490 INFO Connection check task end + +2025-09-24 08:37:47,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:48,492 INFO Connection check task start + +2025-09-24 08:37:48,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:48,492 INFO Out dated connection ,size=0 + +2025-09-24 08:37:48,492 INFO Connection check task end + +2025-09-24 08:37:50,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:51,494 INFO Connection check task start + +2025-09-24 08:37:51,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:51,494 INFO Out dated connection ,size=0 + +2025-09-24 08:37:51,494 INFO Connection check task end + +2025-09-24 08:37:53,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:54,495 INFO Connection check task start + +2025-09-24 08:37:54,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:54,495 INFO Out dated connection ,size=0 + +2025-09-24 08:37:54,495 INFO Connection check task end + +2025-09-24 08:37:56,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:37:57,495 INFO Connection check task start + +2025-09-24 08:37:57,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:37:57,496 INFO Out dated connection ,size=0 + +2025-09-24 08:37:57,496 INFO Connection check task end + +2025-09-24 08:37:59,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:00,496 INFO Connection check task start + +2025-09-24 08:38:00,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:00,496 INFO Out dated connection ,size=0 + +2025-09-24 08:38:00,496 INFO Connection check task end + +2025-09-24 08:38:02,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:03,497 INFO Connection check task start + +2025-09-24 08:38:03,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:03,497 INFO Out dated connection ,size=0 + +2025-09-24 08:38:03,497 INFO Connection check task end + +2025-09-24 08:38:05,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:06,498 INFO Connection check task start + +2025-09-24 08:38:06,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:06,498 INFO Out dated connection ,size=0 + +2025-09-24 08:38:06,498 INFO Connection check task end + +2025-09-24 08:38:08,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:09,499 INFO Connection check task start + +2025-09-24 08:38:09,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:09,499 INFO Out dated connection ,size=0 + +2025-09-24 08:38:09,499 INFO Connection check task end + +2025-09-24 08:38:11,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:12,499 INFO Connection check task start + +2025-09-24 08:38:12,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:12,500 INFO Out dated connection ,size=0 + +2025-09-24 08:38:12,500 INFO Connection check task end + +2025-09-24 08:38:14,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:15,501 INFO Connection check task start + +2025-09-24 08:38:15,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:15,501 INFO Out dated connection ,size=0 + +2025-09-24 08:38:15,501 INFO Connection check task end + +2025-09-24 08:38:17,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:18,501 INFO Connection check task start + +2025-09-24 08:38:18,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:18,502 INFO Out dated connection ,size=0 + +2025-09-24 08:38:18,502 INFO Connection check task end + +2025-09-24 08:38:20,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:21,502 INFO Connection check task start + +2025-09-24 08:38:21,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:21,502 INFO Out dated connection ,size=0 + +2025-09-24 08:38:21,502 INFO Connection check task end + +2025-09-24 08:38:23,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:24,503 INFO Connection check task start + +2025-09-24 08:38:24,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:24,503 INFO Out dated connection ,size=0 + +2025-09-24 08:38:24,504 INFO Connection check task end + +2025-09-24 08:38:26,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:27,504 INFO Connection check task start + +2025-09-24 08:38:27,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:27,504 INFO Out dated connection ,size=0 + +2025-09-24 08:38:27,504 INFO Connection check task end + +2025-09-24 08:38:29,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:30,506 INFO Connection check task start + +2025-09-24 08:38:30,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:30,506 INFO Out dated connection ,size=0 + +2025-09-24 08:38:30,506 INFO Connection check task end + +2025-09-24 08:38:32,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:33,508 INFO Connection check task start + +2025-09-24 08:38:33,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:33,508 INFO Out dated connection ,size=0 + +2025-09-24 08:38:33,508 INFO Connection check task end + +2025-09-24 08:38:35,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:36,508 INFO Connection check task start + +2025-09-24 08:38:36,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:36,508 INFO Out dated connection ,size=0 + +2025-09-24 08:38:36,509 INFO Connection check task end + +2025-09-24 08:38:38,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:39,510 INFO Connection check task start + +2025-09-24 08:38:39,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:39,511 INFO Out dated connection ,size=0 + +2025-09-24 08:38:39,511 INFO Connection check task end + +2025-09-24 08:38:41,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:42,511 INFO Connection check task start + +2025-09-24 08:38:42,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:42,511 INFO Out dated connection ,size=0 + +2025-09-24 08:38:42,511 INFO Connection check task end + +2025-09-24 08:38:44,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:45,513 INFO Connection check task start + +2025-09-24 08:38:45,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:45,514 INFO Out dated connection ,size=0 + +2025-09-24 08:38:45,514 INFO Connection check task end + +2025-09-24 08:38:47,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:48,516 INFO Connection check task start + +2025-09-24 08:38:48,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:48,516 INFO Out dated connection ,size=0 + +2025-09-24 08:38:48,516 INFO Connection check task end + +2025-09-24 08:38:50,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:51,517 INFO Connection check task start + +2025-09-24 08:38:51,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:51,517 INFO Out dated connection ,size=0 + +2025-09-24 08:38:51,517 INFO Connection check task end + +2025-09-24 08:38:53,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:54,517 INFO Connection check task start + +2025-09-24 08:38:54,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:54,517 INFO Out dated connection ,size=0 + +2025-09-24 08:38:54,517 INFO Connection check task end + +2025-09-24 08:38:56,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:38:57,520 INFO Connection check task start + +2025-09-24 08:38:57,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:38:57,520 INFO Out dated connection ,size=0 + +2025-09-24 08:38:57,520 INFO Connection check task end + +2025-09-24 08:38:59,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:00,521 INFO Connection check task start + +2025-09-24 08:39:00,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:00,521 INFO Out dated connection ,size=0 + +2025-09-24 08:39:00,521 INFO Connection check task end + +2025-09-24 08:39:02,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:03,522 INFO Connection check task start + +2025-09-24 08:39:03,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:03,522 INFO Out dated connection ,size=0 + +2025-09-24 08:39:03,522 INFO Connection check task end + +2025-09-24 08:39:05,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:06,523 INFO Connection check task start + +2025-09-24 08:39:06,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:06,523 INFO Out dated connection ,size=0 + +2025-09-24 08:39:06,523 INFO Connection check task end + +2025-09-24 08:39:08,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:09,524 INFO Connection check task start + +2025-09-24 08:39:09,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:09,524 INFO Out dated connection ,size=0 + +2025-09-24 08:39:09,524 INFO Connection check task end + +2025-09-24 08:39:11,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:12,525 INFO Connection check task start + +2025-09-24 08:39:12,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:12,525 INFO Out dated connection ,size=0 + +2025-09-24 08:39:12,525 INFO Connection check task end + +2025-09-24 08:39:14,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:15,526 INFO Connection check task start + +2025-09-24 08:39:15,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:15,526 INFO Out dated connection ,size=0 + +2025-09-24 08:39:15,526 INFO Connection check task end + +2025-09-24 08:39:17,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:18,527 INFO Connection check task start + +2025-09-24 08:39:18,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:18,527 INFO Out dated connection ,size=0 + +2025-09-24 08:39:18,527 INFO Connection check task end + +2025-09-24 08:39:20,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:21,528 INFO Connection check task start + +2025-09-24 08:39:21,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:21,529 INFO Out dated connection ,size=0 + +2025-09-24 08:39:21,529 INFO Connection check task end + +2025-09-24 08:39:23,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:24,529 INFO Connection check task start + +2025-09-24 08:39:24,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:24,529 INFO Out dated connection ,size=0 + +2025-09-24 08:39:24,529 INFO Connection check task end + +2025-09-24 08:39:26,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:27,530 INFO Connection check task start + +2025-09-24 08:39:27,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:27,530 INFO Out dated connection ,size=0 + +2025-09-24 08:39:27,530 INFO Connection check task end + +2025-09-24 08:39:29,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:30,532 INFO Connection check task start + +2025-09-24 08:39:30,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:30,533 INFO Out dated connection ,size=0 + +2025-09-24 08:39:30,533 INFO Connection check task end + +2025-09-24 08:39:32,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:33,535 INFO Connection check task start + +2025-09-24 08:39:33,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:33,535 INFO Out dated connection ,size=0 + +2025-09-24 08:39:33,535 INFO Connection check task end + +2025-09-24 08:39:35,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:36,536 INFO Connection check task start + +2025-09-24 08:39:36,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:36,537 INFO Out dated connection ,size=0 + +2025-09-24 08:39:36,537 INFO Connection check task end + +2025-09-24 08:39:38,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:39,539 INFO Connection check task start + +2025-09-24 08:39:39,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:39,539 INFO Out dated connection ,size=0 + +2025-09-24 08:39:39,539 INFO Connection check task end + +2025-09-24 08:39:41,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:42,540 INFO Connection check task start + +2025-09-24 08:39:42,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:42,540 INFO Out dated connection ,size=0 + +2025-09-24 08:39:42,540 INFO Connection check task end + +2025-09-24 08:39:44,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:45,543 INFO Connection check task start + +2025-09-24 08:39:45,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:45,543 INFO Out dated connection ,size=0 + +2025-09-24 08:39:45,543 INFO Connection check task end + +2025-09-24 08:39:47,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:48,543 INFO Connection check task start + +2025-09-24 08:39:48,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:48,543 INFO Out dated connection ,size=0 + +2025-09-24 08:39:48,543 INFO Connection check task end + +2025-09-24 08:39:50,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:51,545 INFO Connection check task start + +2025-09-24 08:39:51,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:51,545 INFO Out dated connection ,size=0 + +2025-09-24 08:39:51,545 INFO Connection check task end + +2025-09-24 08:39:53,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:54,546 INFO Connection check task start + +2025-09-24 08:39:54,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:54,547 INFO Out dated connection ,size=0 + +2025-09-24 08:39:54,547 INFO Connection check task end + +2025-09-24 08:39:56,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:39:57,549 INFO Connection check task start + +2025-09-24 08:39:57,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:39:57,549 INFO Out dated connection ,size=0 + +2025-09-24 08:39:57,549 INFO Connection check task end + +2025-09-24 08:39:59,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:00,551 INFO Connection check task start + +2025-09-24 08:40:00,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:00,552 INFO Out dated connection ,size=0 + +2025-09-24 08:40:00,552 INFO Connection check task end + +2025-09-24 08:40:02,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:03,553 INFO Connection check task start + +2025-09-24 08:40:03,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:03,553 INFO Out dated connection ,size=0 + +2025-09-24 08:40:03,554 INFO Connection check task end + +2025-09-24 08:40:05,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:06,555 INFO Connection check task start + +2025-09-24 08:40:06,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:06,555 INFO Out dated connection ,size=0 + +2025-09-24 08:40:06,555 INFO Connection check task end + +2025-09-24 08:40:08,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:09,556 INFO Connection check task start + +2025-09-24 08:40:09,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:09,557 INFO Out dated connection ,size=0 + +2025-09-24 08:40:09,557 INFO Connection check task end + +2025-09-24 08:40:11,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:12,558 INFO Connection check task start + +2025-09-24 08:40:12,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:12,558 INFO Out dated connection ,size=0 + +2025-09-24 08:40:12,558 INFO Connection check task end + +2025-09-24 08:40:14,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:15,559 INFO Connection check task start + +2025-09-24 08:40:15,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:15,559 INFO Out dated connection ,size=0 + +2025-09-24 08:40:15,559 INFO Connection check task end + +2025-09-24 08:40:17,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:18,560 INFO Connection check task start + +2025-09-24 08:40:18,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:18,561 INFO Out dated connection ,size=0 + +2025-09-24 08:40:18,561 INFO Connection check task end + +2025-09-24 08:40:20,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:21,563 INFO Connection check task start + +2025-09-24 08:40:21,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:21,563 INFO Out dated connection ,size=0 + +2025-09-24 08:40:21,563 INFO Connection check task end + +2025-09-24 08:40:23,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:24,565 INFO Connection check task start + +2025-09-24 08:40:24,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:24,565 INFO Out dated connection ,size=0 + +2025-09-24 08:40:24,565 INFO Connection check task end + +2025-09-24 08:40:26,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:27,568 INFO Connection check task start + +2025-09-24 08:40:27,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:27,568 INFO Out dated connection ,size=0 + +2025-09-24 08:40:27,568 INFO Connection check task end + +2025-09-24 08:40:29,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:30,568 INFO Connection check task start + +2025-09-24 08:40:30,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:30,569 INFO Out dated connection ,size=0 + +2025-09-24 08:40:30,569 INFO Connection check task end + +2025-09-24 08:40:32,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:33,571 INFO Connection check task start + +2025-09-24 08:40:33,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:33,571 INFO Out dated connection ,size=0 + +2025-09-24 08:40:33,571 INFO Connection check task end + +2025-09-24 08:40:35,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:36,573 INFO Connection check task start + +2025-09-24 08:40:36,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:36,574 INFO Out dated connection ,size=0 + +2025-09-24 08:40:36,574 INFO Connection check task end + +2025-09-24 08:40:38,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:39,575 INFO Connection check task start + +2025-09-24 08:40:39,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:39,576 INFO Out dated connection ,size=0 + +2025-09-24 08:40:39,576 INFO Connection check task end + +2025-09-24 08:40:41,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:42,578 INFO Connection check task start + +2025-09-24 08:40:42,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:42,578 INFO Out dated connection ,size=0 + +2025-09-24 08:40:42,578 INFO Connection check task end + +2025-09-24 08:40:44,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:45,580 INFO Connection check task start + +2025-09-24 08:40:45,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:45,581 INFO Out dated connection ,size=0 + +2025-09-24 08:40:45,581 INFO Connection check task end + +2025-09-24 08:40:47,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:48,583 INFO Connection check task start + +2025-09-24 08:40:48,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:48,583 INFO Out dated connection ,size=0 + +2025-09-24 08:40:48,583 INFO Connection check task end + +2025-09-24 08:40:50,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:51,583 INFO Connection check task start + +2025-09-24 08:40:51,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:51,583 INFO Out dated connection ,size=0 + +2025-09-24 08:40:51,583 INFO Connection check task end + +2025-09-24 08:40:53,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:54,583 INFO Connection check task start + +2025-09-24 08:40:54,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:54,584 INFO Out dated connection ,size=0 + +2025-09-24 08:40:54,584 INFO Connection check task end + +2025-09-24 08:40:56,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:40:57,584 INFO Connection check task start + +2025-09-24 08:40:57,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:40:57,584 INFO Out dated connection ,size=0 + +2025-09-24 08:40:57,584 INFO Connection check task end + +2025-09-24 08:40:59,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:00,585 INFO Connection check task start + +2025-09-24 08:41:00,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:00,585 INFO Out dated connection ,size=0 + +2025-09-24 08:41:00,585 INFO Connection check task end + +2025-09-24 08:41:02,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:03,585 INFO Connection check task start + +2025-09-24 08:41:03,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:03,586 INFO Out dated connection ,size=0 + +2025-09-24 08:41:03,586 INFO Connection check task end + +2025-09-24 08:41:05,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:06,587 INFO Connection check task start + +2025-09-24 08:41:06,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:06,587 INFO Out dated connection ,size=0 + +2025-09-24 08:41:06,587 INFO Connection check task end + +2025-09-24 08:41:08,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:09,589 INFO Connection check task start + +2025-09-24 08:41:09,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:09,589 INFO Out dated connection ,size=0 + +2025-09-24 08:41:09,589 INFO Connection check task end + +2025-09-24 08:41:11,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:12,591 INFO Connection check task start + +2025-09-24 08:41:12,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:12,591 INFO Out dated connection ,size=0 + +2025-09-24 08:41:12,591 INFO Connection check task end + +2025-09-24 08:41:14,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:15,593 INFO Connection check task start + +2025-09-24 08:41:15,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:15,593 INFO Out dated connection ,size=0 + +2025-09-24 08:41:15,594 INFO Connection check task end + +2025-09-24 08:41:17,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:18,596 INFO Connection check task start + +2025-09-24 08:41:18,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:18,596 INFO Out dated connection ,size=0 + +2025-09-24 08:41:18,596 INFO Connection check task end + +2025-09-24 08:41:20,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:21,598 INFO Connection check task start + +2025-09-24 08:41:21,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:21,599 INFO Out dated connection ,size=0 + +2025-09-24 08:41:21,599 INFO Connection check task end + +2025-09-24 08:41:23,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:24,600 INFO Connection check task start + +2025-09-24 08:41:24,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:24,600 INFO Out dated connection ,size=0 + +2025-09-24 08:41:24,600 INFO Connection check task end + +2025-09-24 08:41:26,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:27,601 INFO Connection check task start + +2025-09-24 08:41:27,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:27,601 INFO Out dated connection ,size=0 + +2025-09-24 08:41:27,601 INFO Connection check task end + +2025-09-24 08:41:29,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:30,602 INFO Connection check task start + +2025-09-24 08:41:30,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:30,602 INFO Out dated connection ,size=0 + +2025-09-24 08:41:30,602 INFO Connection check task end + +2025-09-24 08:41:32,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:33,603 INFO Connection check task start + +2025-09-24 08:41:33,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:33,603 INFO Out dated connection ,size=0 + +2025-09-24 08:41:33,603 INFO Connection check task end + +2025-09-24 08:41:35,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:36,603 INFO Connection check task start + +2025-09-24 08:41:36,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:36,604 INFO Out dated connection ,size=0 + +2025-09-24 08:41:36,604 INFO Connection check task end + +2025-09-24 08:41:38,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:39,604 INFO Connection check task start + +2025-09-24 08:41:39,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:39,604 INFO Out dated connection ,size=0 + +2025-09-24 08:41:39,604 INFO Connection check task end + +2025-09-24 08:41:41,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:42,605 INFO Connection check task start + +2025-09-24 08:41:42,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:42,605 INFO Out dated connection ,size=0 + +2025-09-24 08:41:42,605 INFO Connection check task end + +2025-09-24 08:41:44,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:45,606 INFO Connection check task start + +2025-09-24 08:41:45,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:45,606 INFO Out dated connection ,size=0 + +2025-09-24 08:41:45,606 INFO Connection check task end + +2025-09-24 08:41:47,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:48,607 INFO Connection check task start + +2025-09-24 08:41:48,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:48,607 INFO Out dated connection ,size=0 + +2025-09-24 08:41:48,607 INFO Connection check task end + +2025-09-24 08:41:50,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:51,607 INFO Connection check task start + +2025-09-24 08:41:51,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:51,608 INFO Out dated connection ,size=0 + +2025-09-24 08:41:51,608 INFO Connection check task end + +2025-09-24 08:41:53,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:54,608 INFO Connection check task start + +2025-09-24 08:41:54,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:54,608 INFO Out dated connection ,size=0 + +2025-09-24 08:41:54,608 INFO Connection check task end + +2025-09-24 08:41:56,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:41:57,608 INFO Connection check task start + +2025-09-24 08:41:57,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:41:57,609 INFO Out dated connection ,size=0 + +2025-09-24 08:41:57,609 INFO Connection check task end + +2025-09-24 08:41:59,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:00,609 INFO Connection check task start + +2025-09-24 08:42:00,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:00,609 INFO Out dated connection ,size=0 + +2025-09-24 08:42:00,610 INFO Connection check task end + +2025-09-24 08:42:02,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:03,612 INFO Connection check task start + +2025-09-24 08:42:03,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:03,612 INFO Out dated connection ,size=0 + +2025-09-24 08:42:03,612 INFO Connection check task end + +2025-09-24 08:42:05,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:06,612 INFO Connection check task start + +2025-09-24 08:42:06,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:06,612 INFO Out dated connection ,size=0 + +2025-09-24 08:42:06,612 INFO Connection check task end + +2025-09-24 08:42:08,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:09,613 INFO Connection check task start + +2025-09-24 08:42:09,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:09,613 INFO Out dated connection ,size=0 + +2025-09-24 08:42:09,613 INFO Connection check task end + +2025-09-24 08:42:11,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:12,614 INFO Connection check task start + +2025-09-24 08:42:12,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:12,615 INFO Out dated connection ,size=0 + +2025-09-24 08:42:12,615 INFO Connection check task end + +2025-09-24 08:42:14,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:15,615 INFO Connection check task start + +2025-09-24 08:42:15,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:15,615 INFO Out dated connection ,size=0 + +2025-09-24 08:42:15,616 INFO Connection check task end + +2025-09-24 08:42:17,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:18,616 INFO Connection check task start + +2025-09-24 08:42:18,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:18,616 INFO Out dated connection ,size=0 + +2025-09-24 08:42:18,616 INFO Connection check task end + +2025-09-24 08:42:20,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:21,617 INFO Connection check task start + +2025-09-24 08:42:21,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:21,617 INFO Out dated connection ,size=0 + +2025-09-24 08:42:21,617 INFO Connection check task end + +2025-09-24 08:42:23,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:24,618 INFO Connection check task start + +2025-09-24 08:42:24,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:24,618 INFO Out dated connection ,size=0 + +2025-09-24 08:42:24,618 INFO Connection check task end + +2025-09-24 08:42:26,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:27,618 INFO Connection check task start + +2025-09-24 08:42:27,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:27,619 INFO Out dated connection ,size=0 + +2025-09-24 08:42:27,619 INFO Connection check task end + +2025-09-24 08:42:29,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:30,619 INFO Connection check task start + +2025-09-24 08:42:30,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:30,619 INFO Out dated connection ,size=0 + +2025-09-24 08:42:30,619 INFO Connection check task end + +2025-09-24 08:42:32,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:33,621 INFO Connection check task start + +2025-09-24 08:42:33,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:33,622 INFO Out dated connection ,size=0 + +2025-09-24 08:42:33,622 INFO Connection check task end + +2025-09-24 08:42:35,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:36,622 INFO Connection check task start + +2025-09-24 08:42:36,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:36,622 INFO Out dated connection ,size=0 + +2025-09-24 08:42:36,622 INFO Connection check task end + +2025-09-24 08:42:38,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:39,623 INFO Connection check task start + +2025-09-24 08:42:39,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:39,623 INFO Out dated connection ,size=0 + +2025-09-24 08:42:39,623 INFO Connection check task end + +2025-09-24 08:42:41,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:42,624 INFO Connection check task start + +2025-09-24 08:42:42,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:42,625 INFO Out dated connection ,size=0 + +2025-09-24 08:42:42,625 INFO Connection check task end + +2025-09-24 08:42:44,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:45,625 INFO Connection check task start + +2025-09-24 08:42:45,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:45,625 INFO Out dated connection ,size=0 + +2025-09-24 08:42:45,625 INFO Connection check task end + +2025-09-24 08:42:47,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:48,627 INFO Connection check task start + +2025-09-24 08:42:48,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:48,627 INFO Out dated connection ,size=0 + +2025-09-24 08:42:48,627 INFO Connection check task end + +2025-09-24 08:42:50,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:51,629 INFO Connection check task start + +2025-09-24 08:42:51,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:51,629 INFO Out dated connection ,size=0 + +2025-09-24 08:42:51,629 INFO Connection check task end + +2025-09-24 08:42:53,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:54,629 INFO Connection check task start + +2025-09-24 08:42:54,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:54,629 INFO Out dated connection ,size=0 + +2025-09-24 08:42:54,630 INFO Connection check task end + +2025-09-24 08:42:56,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:42:57,630 INFO Connection check task start + +2025-09-24 08:42:57,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:42:57,630 INFO Out dated connection ,size=0 + +2025-09-24 08:42:57,630 INFO Connection check task end + +2025-09-24 08:42:59,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:00,632 INFO Connection check task start + +2025-09-24 08:43:00,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:00,632 INFO Out dated connection ,size=0 + +2025-09-24 08:43:00,632 INFO Connection check task end + +2025-09-24 08:43:02,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:03,634 INFO Connection check task start + +2025-09-24 08:43:03,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:03,634 INFO Out dated connection ,size=0 + +2025-09-24 08:43:03,634 INFO Connection check task end + +2025-09-24 08:43:05,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:06,634 INFO Connection check task start + +2025-09-24 08:43:06,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:06,657 INFO Out dated connection ,size=0 + +2025-09-24 08:43:06,657 INFO Connection check task end + +2025-09-24 08:43:08,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:09,657 INFO Connection check task start + +2025-09-24 08:43:09,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:09,657 INFO Out dated connection ,size=0 + +2025-09-24 08:43:09,657 INFO Connection check task end + +2025-09-24 08:43:11,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:12,657 INFO Connection check task start + +2025-09-24 08:43:12,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:12,658 INFO Out dated connection ,size=0 + +2025-09-24 08:43:12,658 INFO Connection check task end + +2025-09-24 08:43:14,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:15,660 INFO Connection check task start + +2025-09-24 08:43:15,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:15,660 INFO Out dated connection ,size=0 + +2025-09-24 08:43:15,660 INFO Connection check task end + +2025-09-24 08:43:17,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:18,660 INFO Connection check task start + +2025-09-24 08:43:18,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:18,660 INFO Out dated connection ,size=0 + +2025-09-24 08:43:18,660 INFO Connection check task end + +2025-09-24 08:43:20,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:21,661 INFO Connection check task start + +2025-09-24 08:43:21,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:21,662 INFO Out dated connection ,size=0 + +2025-09-24 08:43:21,662 INFO Connection check task end + +2025-09-24 08:43:23,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:24,662 INFO Connection check task start + +2025-09-24 08:43:24,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:24,662 INFO Out dated connection ,size=0 + +2025-09-24 08:43:24,662 INFO Connection check task end + +2025-09-24 08:43:26,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:27,664 INFO Connection check task start + +2025-09-24 08:43:27,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:27,664 INFO Out dated connection ,size=0 + +2025-09-24 08:43:27,664 INFO Connection check task end + +2025-09-24 08:43:29,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:30,664 INFO Connection check task start + +2025-09-24 08:43:30,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:30,665 INFO Out dated connection ,size=0 + +2025-09-24 08:43:30,665 INFO Connection check task end + +2025-09-24 08:43:32,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:33,667 INFO Connection check task start + +2025-09-24 08:43:33,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:33,667 INFO Out dated connection ,size=0 + +2025-09-24 08:43:33,667 INFO Connection check task end + +2025-09-24 08:43:35,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:36,667 INFO Connection check task start + +2025-09-24 08:43:36,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:36,667 INFO Out dated connection ,size=0 + +2025-09-24 08:43:36,667 INFO Connection check task end + +2025-09-24 08:43:38,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:39,668 INFO Connection check task start + +2025-09-24 08:43:39,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:39,669 INFO Out dated connection ,size=0 + +2025-09-24 08:43:39,669 INFO Connection check task end + +2025-09-24 08:43:41,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:42,669 INFO Connection check task start + +2025-09-24 08:43:42,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:42,669 INFO Out dated connection ,size=0 + +2025-09-24 08:43:42,669 INFO Connection check task end + +2025-09-24 08:43:44,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:45,670 INFO Connection check task start + +2025-09-24 08:43:45,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:45,670 INFO Out dated connection ,size=0 + +2025-09-24 08:43:45,670 INFO Connection check task end + +2025-09-24 08:43:47,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:48,672 INFO Connection check task start + +2025-09-24 08:43:48,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:48,672 INFO Out dated connection ,size=0 + +2025-09-24 08:43:48,672 INFO Connection check task end + +2025-09-24 08:43:50,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:51,674 INFO Connection check task start + +2025-09-24 08:43:51,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:51,674 INFO Out dated connection ,size=0 + +2025-09-24 08:43:51,674 INFO Connection check task end + +2025-09-24 08:43:53,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:54,676 INFO Connection check task start + +2025-09-24 08:43:54,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:54,676 INFO Out dated connection ,size=0 + +2025-09-24 08:43:54,676 INFO Connection check task end + +2025-09-24 08:43:56,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:43:57,676 INFO Connection check task start + +2025-09-24 08:43:57,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:43:57,676 INFO Out dated connection ,size=0 + +2025-09-24 08:43:57,677 INFO Connection check task end + +2025-09-24 08:43:59,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:00,677 INFO Connection check task start + +2025-09-24 08:44:00,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:00,677 INFO Out dated connection ,size=0 + +2025-09-24 08:44:00,677 INFO Connection check task end + +2025-09-24 08:44:02,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:03,679 INFO Connection check task start + +2025-09-24 08:44:03,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:03,679 INFO Out dated connection ,size=0 + +2025-09-24 08:44:03,680 INFO Connection check task end + +2025-09-24 08:44:05,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:06,680 INFO Connection check task start + +2025-09-24 08:44:06,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:06,680 INFO Out dated connection ,size=0 + +2025-09-24 08:44:06,680 INFO Connection check task end + +2025-09-24 08:44:08,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:09,681 INFO Connection check task start + +2025-09-24 08:44:09,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:09,681 INFO Out dated connection ,size=0 + +2025-09-24 08:44:09,681 INFO Connection check task end + +2025-09-24 08:44:11,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:12,681 INFO Connection check task start + +2025-09-24 08:44:12,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:12,682 INFO Out dated connection ,size=0 + +2025-09-24 08:44:12,682 INFO Connection check task end + +2025-09-24 08:44:14,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:15,682 INFO Connection check task start + +2025-09-24 08:44:15,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:15,682 INFO Out dated connection ,size=0 + +2025-09-24 08:44:15,682 INFO Connection check task end + +2025-09-24 08:44:17,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:18,684 INFO Connection check task start + +2025-09-24 08:44:18,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:18,684 INFO Out dated connection ,size=0 + +2025-09-24 08:44:18,684 INFO Connection check task end + +2025-09-24 08:44:20,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:21,685 INFO Connection check task start + +2025-09-24 08:44:21,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:21,686 INFO Out dated connection ,size=0 + +2025-09-24 08:44:21,686 INFO Connection check task end + +2025-09-24 08:44:23,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:24,686 INFO Connection check task start + +2025-09-24 08:44:24,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:24,686 INFO Out dated connection ,size=0 + +2025-09-24 08:44:24,686 INFO Connection check task end + +2025-09-24 08:44:26,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:27,688 INFO Connection check task start + +2025-09-24 08:44:27,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:27,688 INFO Out dated connection ,size=0 + +2025-09-24 08:44:27,688 INFO Connection check task end + +2025-09-24 08:44:29,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:30,689 INFO Connection check task start + +2025-09-24 08:44:30,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:30,689 INFO Out dated connection ,size=0 + +2025-09-24 08:44:30,689 INFO Connection check task end + +2025-09-24 08:44:32,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:33,691 INFO Connection check task start + +2025-09-24 08:44:33,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:33,691 INFO Out dated connection ,size=0 + +2025-09-24 08:44:33,691 INFO Connection check task end + +2025-09-24 08:44:35,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:36,692 INFO Connection check task start + +2025-09-24 08:44:36,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:36,692 INFO Out dated connection ,size=0 + +2025-09-24 08:44:36,692 INFO Connection check task end + +2025-09-24 08:44:38,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:39,692 INFO Connection check task start + +2025-09-24 08:44:39,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:39,692 INFO Out dated connection ,size=0 + +2025-09-24 08:44:39,693 INFO Connection check task end + +2025-09-24 08:44:41,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:42,693 INFO Connection check task start + +2025-09-24 08:44:42,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:42,694 INFO Out dated connection ,size=0 + +2025-09-24 08:44:42,694 INFO Connection check task end + +2025-09-24 08:44:44,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:45,694 INFO Connection check task start + +2025-09-24 08:44:45,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:45,694 INFO Out dated connection ,size=0 + +2025-09-24 08:44:45,694 INFO Connection check task end + +2025-09-24 08:44:47,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:48,695 INFO Connection check task start + +2025-09-24 08:44:48,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:48,695 INFO Out dated connection ,size=0 + +2025-09-24 08:44:48,695 INFO Connection check task end + +2025-09-24 08:44:50,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:51,696 INFO Connection check task start + +2025-09-24 08:44:51,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:51,696 INFO Out dated connection ,size=0 + +2025-09-24 08:44:51,696 INFO Connection check task end + +2025-09-24 08:44:53,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:54,696 INFO Connection check task start + +2025-09-24 08:44:54,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:54,696 INFO Out dated connection ,size=0 + +2025-09-24 08:44:54,696 INFO Connection check task end + +2025-09-24 08:44:56,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:44:57,697 INFO Connection check task start + +2025-09-24 08:44:57,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:44:57,697 INFO Out dated connection ,size=0 + +2025-09-24 08:44:57,697 INFO Connection check task end + +2025-09-24 08:44:59,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:00,697 INFO Connection check task start + +2025-09-24 08:45:00,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:00,698 INFO Out dated connection ,size=0 + +2025-09-24 08:45:00,698 INFO Connection check task end + +2025-09-24 08:45:02,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:03,698 INFO Connection check task start + +2025-09-24 08:45:03,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:03,698 INFO Out dated connection ,size=0 + +2025-09-24 08:45:03,698 INFO Connection check task end + +2025-09-24 08:45:05,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:06,700 INFO Connection check task start + +2025-09-24 08:45:06,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:06,700 INFO Out dated connection ,size=0 + +2025-09-24 08:45:06,700 INFO Connection check task end + +2025-09-24 08:45:08,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:09,702 INFO Connection check task start + +2025-09-24 08:45:09,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:09,703 INFO Out dated connection ,size=0 + +2025-09-24 08:45:09,703 INFO Connection check task end + +2025-09-24 08:45:11,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:12,703 INFO Connection check task start + +2025-09-24 08:45:12,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:12,703 INFO Out dated connection ,size=0 + +2025-09-24 08:45:12,703 INFO Connection check task end + +2025-09-24 08:45:14,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:15,704 INFO Connection check task start + +2025-09-24 08:45:15,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:15,704 INFO Out dated connection ,size=0 + +2025-09-24 08:45:15,704 INFO Connection check task end + +2025-09-24 08:45:17,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:18,704 INFO Connection check task start + +2025-09-24 08:45:18,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:18,704 INFO Out dated connection ,size=0 + +2025-09-24 08:45:18,704 INFO Connection check task end + +2025-09-24 08:45:20,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:21,705 INFO Connection check task start + +2025-09-24 08:45:21,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:21,705 INFO Out dated connection ,size=0 + +2025-09-24 08:45:21,705 INFO Connection check task end + +2025-09-24 08:45:23,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:24,705 INFO Connection check task start + +2025-09-24 08:45:24,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:24,705 INFO Out dated connection ,size=0 + +2025-09-24 08:45:24,705 INFO Connection check task end + +2025-09-24 08:45:26,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:27,705 INFO Connection check task start + +2025-09-24 08:45:27,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:27,706 INFO Out dated connection ,size=0 + +2025-09-24 08:45:27,706 INFO Connection check task end + +2025-09-24 08:45:29,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:30,707 INFO Connection check task start + +2025-09-24 08:45:30,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:30,708 INFO Out dated connection ,size=0 + +2025-09-24 08:45:30,708 INFO Connection check task end + +2025-09-24 08:45:32,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:33,709 INFO Connection check task start + +2025-09-24 08:45:33,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:33,709 INFO Out dated connection ,size=0 + +2025-09-24 08:45:33,709 INFO Connection check task end + +2025-09-24 08:45:35,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:36,710 INFO Connection check task start + +2025-09-24 08:45:36,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:36,710 INFO Out dated connection ,size=0 + +2025-09-24 08:45:36,710 INFO Connection check task end + +2025-09-24 08:45:38,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:39,712 INFO Connection check task start + +2025-09-24 08:45:39,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:39,712 INFO Out dated connection ,size=0 + +2025-09-24 08:45:39,712 INFO Connection check task end + +2025-09-24 08:45:41,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:42,713 INFO Connection check task start + +2025-09-24 08:45:42,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:42,713 INFO Out dated connection ,size=0 + +2025-09-24 08:45:42,713 INFO Connection check task end + +2025-09-24 08:45:44,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:45,714 INFO Connection check task start + +2025-09-24 08:45:45,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:45,714 INFO Out dated connection ,size=0 + +2025-09-24 08:45:45,714 INFO Connection check task end + +2025-09-24 08:45:47,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:48,716 INFO Connection check task start + +2025-09-24 08:45:48,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:48,716 INFO Out dated connection ,size=0 + +2025-09-24 08:45:48,716 INFO Connection check task end + +2025-09-24 08:45:50,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:51,718 INFO Connection check task start + +2025-09-24 08:45:51,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:51,718 INFO Out dated connection ,size=0 + +2025-09-24 08:45:51,718 INFO Connection check task end + +2025-09-24 08:45:53,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:54,720 INFO Connection check task start + +2025-09-24 08:45:54,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:54,720 INFO Out dated connection ,size=0 + +2025-09-24 08:45:54,720 INFO Connection check task end + +2025-09-24 08:45:56,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:45:57,721 INFO Connection check task start + +2025-09-24 08:45:57,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:45:57,721 INFO Out dated connection ,size=0 + +2025-09-24 08:45:57,721 INFO Connection check task end + +2025-09-24 08:45:59,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:00,723 INFO Connection check task start + +2025-09-24 08:46:00,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:00,724 INFO Out dated connection ,size=0 + +2025-09-24 08:46:00,724 INFO Connection check task end + +2025-09-24 08:46:02,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:03,724 INFO Connection check task start + +2025-09-24 08:46:03,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:03,724 INFO Out dated connection ,size=0 + +2025-09-24 08:46:03,724 INFO Connection check task end + +2025-09-24 08:46:05,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:06,725 INFO Connection check task start + +2025-09-24 08:46:06,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:06,725 INFO Out dated connection ,size=0 + +2025-09-24 08:46:06,725 INFO Connection check task end + +2025-09-24 08:46:08,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:09,726 INFO Connection check task start + +2025-09-24 08:46:09,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:09,727 INFO Out dated connection ,size=0 + +2025-09-24 08:46:09,727 INFO Connection check task end + +2025-09-24 08:46:11,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:12,729 INFO Connection check task start + +2025-09-24 08:46:12,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:12,729 INFO Out dated connection ,size=0 + +2025-09-24 08:46:12,729 INFO Connection check task end + +2025-09-24 08:46:14,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:15,729 INFO Connection check task start + +2025-09-24 08:46:15,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:15,729 INFO Out dated connection ,size=0 + +2025-09-24 08:46:15,729 INFO Connection check task end + +2025-09-24 08:46:17,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:18,730 INFO Connection check task start + +2025-09-24 08:46:18,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:18,730 INFO Out dated connection ,size=0 + +2025-09-24 08:46:18,730 INFO Connection check task end + +2025-09-24 08:46:20,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:21,730 INFO Connection check task start + +2025-09-24 08:46:21,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:21,730 INFO Out dated connection ,size=0 + +2025-09-24 08:46:21,730 INFO Connection check task end + +2025-09-24 08:46:23,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:24,730 INFO Connection check task start + +2025-09-24 08:46:24,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:24,730 INFO Out dated connection ,size=0 + +2025-09-24 08:46:24,730 INFO Connection check task end + +2025-09-24 08:46:26,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:27,733 INFO Connection check task start + +2025-09-24 08:46:27,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:27,733 INFO Out dated connection ,size=0 + +2025-09-24 08:46:27,733 INFO Connection check task end + +2025-09-24 08:46:29,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:30,733 INFO Connection check task start + +2025-09-24 08:46:30,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:30,733 INFO Out dated connection ,size=0 + +2025-09-24 08:46:30,733 INFO Connection check task end + +2025-09-24 08:46:32,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:33,734 INFO Connection check task start + +2025-09-24 08:46:33,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:33,734 INFO Out dated connection ,size=0 + +2025-09-24 08:46:33,734 INFO Connection check task end + +2025-09-24 08:46:35,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:36,736 INFO Connection check task start + +2025-09-24 08:46:36,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:36,736 INFO Out dated connection ,size=0 + +2025-09-24 08:46:36,736 INFO Connection check task end + +2025-09-24 08:46:38,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:39,736 INFO Connection check task start + +2025-09-24 08:46:39,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:39,737 INFO Out dated connection ,size=0 + +2025-09-24 08:46:39,737 INFO Connection check task end + +2025-09-24 08:46:41,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:42,738 INFO Connection check task start + +2025-09-24 08:46:42,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:42,739 INFO Out dated connection ,size=0 + +2025-09-24 08:46:42,739 INFO Connection check task end + +2025-09-24 08:46:44,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:45,739 INFO Connection check task start + +2025-09-24 08:46:45,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:45,739 INFO Out dated connection ,size=0 + +2025-09-24 08:46:45,739 INFO Connection check task end + +2025-09-24 08:46:47,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:48,740 INFO Connection check task start + +2025-09-24 08:46:48,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:48,740 INFO Out dated connection ,size=0 + +2025-09-24 08:46:48,740 INFO Connection check task end + +2025-09-24 08:46:50,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:51,741 INFO Connection check task start + +2025-09-24 08:46:51,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:51,741 INFO Out dated connection ,size=0 + +2025-09-24 08:46:51,741 INFO Connection check task end + +2025-09-24 08:46:53,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:54,742 INFO Connection check task start + +2025-09-24 08:46:54,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:54,742 INFO Out dated connection ,size=0 + +2025-09-24 08:46:54,742 INFO Connection check task end + +2025-09-24 08:46:56,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:46:57,742 INFO Connection check task start + +2025-09-24 08:46:57,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:46:57,742 INFO Out dated connection ,size=0 + +2025-09-24 08:46:57,742 INFO Connection check task end + +2025-09-24 08:46:59,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:00,743 INFO Connection check task start + +2025-09-24 08:47:00,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:00,743 INFO Out dated connection ,size=0 + +2025-09-24 08:47:00,743 INFO Connection check task end + +2025-09-24 08:47:02,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:03,743 INFO Connection check task start + +2025-09-24 08:47:03,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:03,743 INFO Out dated connection ,size=0 + +2025-09-24 08:47:03,743 INFO Connection check task end + +2025-09-24 08:47:05,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:06,744 INFO Connection check task start + +2025-09-24 08:47:06,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:06,744 INFO Out dated connection ,size=0 + +2025-09-24 08:47:06,744 INFO Connection check task end + +2025-09-24 08:47:08,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:09,744 INFO Connection check task start + +2025-09-24 08:47:09,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:09,744 INFO Out dated connection ,size=0 + +2025-09-24 08:47:09,744 INFO Connection check task end + +2025-09-24 08:47:11,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:12,746 INFO Connection check task start + +2025-09-24 08:47:12,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:12,747 INFO Out dated connection ,size=0 + +2025-09-24 08:47:12,747 INFO Connection check task end + +2025-09-24 08:47:14,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:15,749 INFO Connection check task start + +2025-09-24 08:47:15,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:15,749 INFO Out dated connection ,size=0 + +2025-09-24 08:47:15,749 INFO Connection check task end + +2025-09-24 08:47:17,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:18,751 INFO Connection check task start + +2025-09-24 08:47:18,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:18,751 INFO Out dated connection ,size=0 + +2025-09-24 08:47:18,751 INFO Connection check task end + +2025-09-24 08:47:20,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:21,751 INFO Connection check task start + +2025-09-24 08:47:21,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:21,751 INFO Out dated connection ,size=0 + +2025-09-24 08:47:21,751 INFO Connection check task end + +2025-09-24 08:47:23,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:24,753 INFO Connection check task start + +2025-09-24 08:47:24,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:24,753 INFO Out dated connection ,size=0 + +2025-09-24 08:47:24,753 INFO Connection check task end + +2025-09-24 08:47:26,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:27,755 INFO Connection check task start + +2025-09-24 08:47:27,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:27,756 INFO Out dated connection ,size=0 + +2025-09-24 08:47:27,756 INFO Connection check task end + +2025-09-24 08:47:29,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:30,758 INFO Connection check task start + +2025-09-24 08:47:30,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:30,758 INFO Out dated connection ,size=0 + +2025-09-24 08:47:30,758 INFO Connection check task end + +2025-09-24 08:47:32,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:33,759 INFO Connection check task start + +2025-09-24 08:47:33,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:33,759 INFO Out dated connection ,size=0 + +2025-09-24 08:47:33,759 INFO Connection check task end + +2025-09-24 08:47:35,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:36,759 INFO Connection check task start + +2025-09-24 08:47:36,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:36,760 INFO Out dated connection ,size=0 + +2025-09-24 08:47:36,760 INFO Connection check task end + +2025-09-24 08:47:38,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:39,760 INFO Connection check task start + +2025-09-24 08:47:39,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:39,760 INFO Out dated connection ,size=0 + +2025-09-24 08:47:39,760 INFO Connection check task end + +2025-09-24 08:47:41,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:42,762 INFO Connection check task start + +2025-09-24 08:47:42,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:42,762 INFO Out dated connection ,size=0 + +2025-09-24 08:47:42,762 INFO Connection check task end + +2025-09-24 08:47:44,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:45,765 INFO Connection check task start + +2025-09-24 08:47:45,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:45,765 INFO Out dated connection ,size=0 + +2025-09-24 08:47:45,765 INFO Connection check task end + +2025-09-24 08:47:47,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:48,767 INFO Connection check task start + +2025-09-24 08:47:48,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:48,767 INFO Out dated connection ,size=0 + +2025-09-24 08:47:48,767 INFO Connection check task end + +2025-09-24 08:47:50,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:51,769 INFO Connection check task start + +2025-09-24 08:47:51,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:51,770 INFO Out dated connection ,size=0 + +2025-09-24 08:47:51,770 INFO Connection check task end + +2025-09-24 08:47:53,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:54,770 INFO Connection check task start + +2025-09-24 08:47:54,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:54,771 INFO Out dated connection ,size=0 + +2025-09-24 08:47:54,771 INFO Connection check task end + +2025-09-24 08:47:56,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:47:57,772 INFO Connection check task start + +2025-09-24 08:47:57,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:47:57,773 INFO Out dated connection ,size=0 + +2025-09-24 08:47:57,773 INFO Connection check task end + +2025-09-24 08:47:59,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:00,774 INFO Connection check task start + +2025-09-24 08:48:00,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:00,774 INFO Out dated connection ,size=0 + +2025-09-24 08:48:00,774 INFO Connection check task end + +2025-09-24 08:48:02,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:03,774 INFO Connection check task start + +2025-09-24 08:48:03,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:03,775 INFO Out dated connection ,size=0 + +2025-09-24 08:48:03,775 INFO Connection check task end + +2025-09-24 08:48:05,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:06,776 INFO Connection check task start + +2025-09-24 08:48:06,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:06,777 INFO Out dated connection ,size=0 + +2025-09-24 08:48:06,777 INFO Connection check task end + +2025-09-24 08:48:08,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:09,777 INFO Connection check task start + +2025-09-24 08:48:09,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:09,777 INFO Out dated connection ,size=0 + +2025-09-24 08:48:09,777 INFO Connection check task end + +2025-09-24 08:48:11,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:12,777 INFO Connection check task start + +2025-09-24 08:48:12,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:12,777 INFO Out dated connection ,size=0 + +2025-09-24 08:48:12,777 INFO Connection check task end + +2025-09-24 08:48:14,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:15,778 INFO Connection check task start + +2025-09-24 08:48:15,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:15,778 INFO Out dated connection ,size=0 + +2025-09-24 08:48:15,778 INFO Connection check task end + +2025-09-24 08:48:17,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:18,778 INFO Connection check task start + +2025-09-24 08:48:18,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:18,778 INFO Out dated connection ,size=0 + +2025-09-24 08:48:18,778 INFO Connection check task end + +2025-09-24 08:48:20,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:21,778 INFO Connection check task start + +2025-09-24 08:48:21,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:21,779 INFO Out dated connection ,size=0 + +2025-09-24 08:48:21,779 INFO Connection check task end + +2025-09-24 08:48:23,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:24,780 INFO Connection check task start + +2025-09-24 08:48:24,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:24,780 INFO Out dated connection ,size=0 + +2025-09-24 08:48:24,780 INFO Connection check task end + +2025-09-24 08:48:26,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:27,780 INFO Connection check task start + +2025-09-24 08:48:27,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:27,780 INFO Out dated connection ,size=0 + +2025-09-24 08:48:27,780 INFO Connection check task end + +2025-09-24 08:48:29,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:30,782 INFO Connection check task start + +2025-09-24 08:48:30,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:30,782 INFO Out dated connection ,size=0 + +2025-09-24 08:48:30,782 INFO Connection check task end + +2025-09-24 08:48:32,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:33,782 INFO Connection check task start + +2025-09-24 08:48:33,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:33,782 INFO Out dated connection ,size=0 + +2025-09-24 08:48:33,783 INFO Connection check task end + +2025-09-24 08:48:35,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:36,784 INFO Connection check task start + +2025-09-24 08:48:36,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:36,784 INFO Out dated connection ,size=0 + +2025-09-24 08:48:36,784 INFO Connection check task end + +2025-09-24 08:48:38,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:39,785 INFO Connection check task start + +2025-09-24 08:48:39,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:39,785 INFO Out dated connection ,size=0 + +2025-09-24 08:48:39,785 INFO Connection check task end + +2025-09-24 08:48:41,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:42,786 INFO Connection check task start + +2025-09-24 08:48:42,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:42,786 INFO Out dated connection ,size=0 + +2025-09-24 08:48:42,786 INFO Connection check task end + +2025-09-24 08:48:44,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:45,788 INFO Connection check task start + +2025-09-24 08:48:45,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:45,788 INFO Out dated connection ,size=0 + +2025-09-24 08:48:45,788 INFO Connection check task end + +2025-09-24 08:48:47,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:48,789 INFO Connection check task start + +2025-09-24 08:48:48,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:48,789 INFO Out dated connection ,size=0 + +2025-09-24 08:48:48,789 INFO Connection check task end + +2025-09-24 08:48:50,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:51,791 INFO Connection check task start + +2025-09-24 08:48:51,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:51,791 INFO Out dated connection ,size=0 + +2025-09-24 08:48:51,791 INFO Connection check task end + +2025-09-24 08:48:53,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:54,792 INFO Connection check task start + +2025-09-24 08:48:54,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:54,792 INFO Out dated connection ,size=0 + +2025-09-24 08:48:54,792 INFO Connection check task end + +2025-09-24 08:48:56,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:48:57,792 INFO Connection check task start + +2025-09-24 08:48:57,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:48:57,792 INFO Out dated connection ,size=0 + +2025-09-24 08:48:57,792 INFO Connection check task end + +2025-09-24 08:48:59,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:00,792 INFO Connection check task start + +2025-09-24 08:49:00,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:00,793 INFO Out dated connection ,size=0 + +2025-09-24 08:49:00,793 INFO Connection check task end + +2025-09-24 08:49:02,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:03,794 INFO Connection check task start + +2025-09-24 08:49:03,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:03,795 INFO Out dated connection ,size=0 + +2025-09-24 08:49:03,795 INFO Connection check task end + +2025-09-24 08:49:05,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:06,796 INFO Connection check task start + +2025-09-24 08:49:06,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:06,796 INFO Out dated connection ,size=0 + +2025-09-24 08:49:06,796 INFO Connection check task end + +2025-09-24 08:49:08,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:09,796 INFO Connection check task start + +2025-09-24 08:49:09,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:09,797 INFO Out dated connection ,size=0 + +2025-09-24 08:49:09,797 INFO Connection check task end + +2025-09-24 08:49:11,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:12,797 INFO Connection check task start + +2025-09-24 08:49:12,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:12,797 INFO Out dated connection ,size=0 + +2025-09-24 08:49:12,797 INFO Connection check task end + +2025-09-24 08:49:14,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:15,799 INFO Connection check task start + +2025-09-24 08:49:15,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:15,799 INFO Out dated connection ,size=0 + +2025-09-24 08:49:15,799 INFO Connection check task end + +2025-09-24 08:49:17,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:18,799 INFO Connection check task start + +2025-09-24 08:49:18,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:18,799 INFO Out dated connection ,size=0 + +2025-09-24 08:49:18,799 INFO Connection check task end + +2025-09-24 08:49:20,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:21,800 INFO Connection check task start + +2025-09-24 08:49:21,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:21,801 INFO Out dated connection ,size=0 + +2025-09-24 08:49:21,801 INFO Connection check task end + +2025-09-24 08:49:23,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:24,802 INFO Connection check task start + +2025-09-24 08:49:24,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:24,802 INFO Out dated connection ,size=0 + +2025-09-24 08:49:24,802 INFO Connection check task end + +2025-09-24 08:49:26,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:27,803 INFO Connection check task start + +2025-09-24 08:49:27,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:27,803 INFO Out dated connection ,size=0 + +2025-09-24 08:49:27,803 INFO Connection check task end + +2025-09-24 08:49:29,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:30,803 INFO Connection check task start + +2025-09-24 08:49:30,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:30,803 INFO Out dated connection ,size=0 + +2025-09-24 08:49:30,804 INFO Connection check task end + +2025-09-24 08:49:32,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:33,805 INFO Connection check task start + +2025-09-24 08:49:33,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:33,805 INFO Out dated connection ,size=0 + +2025-09-24 08:49:33,805 INFO Connection check task end + +2025-09-24 08:49:35,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:36,805 INFO Connection check task start + +2025-09-24 08:49:36,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:36,805 INFO Out dated connection ,size=0 + +2025-09-24 08:49:36,805 INFO Connection check task end + +2025-09-24 08:49:38,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:39,806 INFO Connection check task start + +2025-09-24 08:49:39,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:39,806 INFO Out dated connection ,size=0 + +2025-09-24 08:49:39,806 INFO Connection check task end + +2025-09-24 08:49:41,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:42,806 INFO Connection check task start + +2025-09-24 08:49:42,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:42,807 INFO Out dated connection ,size=0 + +2025-09-24 08:49:42,807 INFO Connection check task end + +2025-09-24 08:49:44,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:45,808 INFO Connection check task start + +2025-09-24 08:49:45,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:45,809 INFO Out dated connection ,size=0 + +2025-09-24 08:49:45,809 INFO Connection check task end + +2025-09-24 08:49:47,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:48,809 INFO Connection check task start + +2025-09-24 08:49:48,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:48,809 INFO Out dated connection ,size=0 + +2025-09-24 08:49:48,809 INFO Connection check task end + +2025-09-24 08:49:50,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:51,810 INFO Connection check task start + +2025-09-24 08:49:51,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:51,810 INFO Out dated connection ,size=0 + +2025-09-24 08:49:51,810 INFO Connection check task end + +2025-09-24 08:49:53,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:54,812 INFO Connection check task start + +2025-09-24 08:49:54,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:54,812 INFO Out dated connection ,size=0 + +2025-09-24 08:49:54,812 INFO Connection check task end + +2025-09-24 08:49:56,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:49:57,812 INFO Connection check task start + +2025-09-24 08:49:57,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:49:57,812 INFO Out dated connection ,size=0 + +2025-09-24 08:49:57,812 INFO Connection check task end + +2025-09-24 08:49:59,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:00,813 INFO Connection check task start + +2025-09-24 08:50:00,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:00,813 INFO Out dated connection ,size=0 + +2025-09-24 08:50:00,813 INFO Connection check task end + +2025-09-24 08:50:02,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:03,813 INFO Connection check task start + +2025-09-24 08:50:03,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:03,814 INFO Out dated connection ,size=0 + +2025-09-24 08:50:03,814 INFO Connection check task end + +2025-09-24 08:50:05,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:06,814 INFO Connection check task start + +2025-09-24 08:50:06,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:06,814 INFO Out dated connection ,size=0 + +2025-09-24 08:50:06,814 INFO Connection check task end + +2025-09-24 08:50:08,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:09,816 INFO Connection check task start + +2025-09-24 08:50:09,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:09,817 INFO Out dated connection ,size=0 + +2025-09-24 08:50:09,817 INFO Connection check task end + +2025-09-24 08:50:11,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:12,818 INFO Connection check task start + +2025-09-24 08:50:12,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:12,818 INFO Out dated connection ,size=0 + +2025-09-24 08:50:12,818 INFO Connection check task end + +2025-09-24 08:50:14,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:15,820 INFO Connection check task start + +2025-09-24 08:50:15,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:15,820 INFO Out dated connection ,size=0 + +2025-09-24 08:50:15,820 INFO Connection check task end + +2025-09-24 08:50:17,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:18,822 INFO Connection check task start + +2025-09-24 08:50:18,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:18,822 INFO Out dated connection ,size=0 + +2025-09-24 08:50:18,822 INFO Connection check task end + +2025-09-24 08:50:20,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:21,823 INFO Connection check task start + +2025-09-24 08:50:21,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:21,823 INFO Out dated connection ,size=0 + +2025-09-24 08:50:21,823 INFO Connection check task end + +2025-09-24 08:50:23,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:24,825 INFO Connection check task start + +2025-09-24 08:50:24,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:24,826 INFO Out dated connection ,size=0 + +2025-09-24 08:50:24,826 INFO Connection check task end + +2025-09-24 08:50:26,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:27,826 INFO Connection check task start + +2025-09-24 08:50:27,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:27,826 INFO Out dated connection ,size=0 + +2025-09-24 08:50:27,826 INFO Connection check task end + +2025-09-24 08:50:29,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:30,826 INFO Connection check task start + +2025-09-24 08:50:30,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:30,827 INFO Out dated connection ,size=0 + +2025-09-24 08:50:30,827 INFO Connection check task end + +2025-09-24 08:50:32,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:33,828 INFO Connection check task start + +2025-09-24 08:50:33,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:33,828 INFO Out dated connection ,size=0 + +2025-09-24 08:50:33,828 INFO Connection check task end + +2025-09-24 08:50:35,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:36,830 INFO Connection check task start + +2025-09-24 08:50:36,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:36,830 INFO Out dated connection ,size=0 + +2025-09-24 08:50:36,830 INFO Connection check task end + +2025-09-24 08:50:38,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:39,831 INFO Connection check task start + +2025-09-24 08:50:39,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:39,831 INFO Out dated connection ,size=0 + +2025-09-24 08:50:39,831 INFO Connection check task end + +2025-09-24 08:50:41,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:42,831 INFO Connection check task start + +2025-09-24 08:50:42,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:42,831 INFO Out dated connection ,size=0 + +2025-09-24 08:50:42,831 INFO Connection check task end + +2025-09-24 08:50:44,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:45,833 INFO Connection check task start + +2025-09-24 08:50:45,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:45,834 INFO Out dated connection ,size=0 + +2025-09-24 08:50:45,834 INFO Connection check task end + +2025-09-24 08:50:47,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:48,836 INFO Connection check task start + +2025-09-24 08:50:48,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:48,836 INFO Out dated connection ,size=0 + +2025-09-24 08:50:48,836 INFO Connection check task end + +2025-09-24 08:50:50,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:51,836 INFO Connection check task start + +2025-09-24 08:50:51,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:51,836 INFO Out dated connection ,size=0 + +2025-09-24 08:50:51,837 INFO Connection check task end + +2025-09-24 08:50:53,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:54,837 INFO Connection check task start + +2025-09-24 08:50:54,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:54,837 INFO Out dated connection ,size=0 + +2025-09-24 08:50:54,837 INFO Connection check task end + +2025-09-24 08:50:56,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:50:57,838 INFO Connection check task start + +2025-09-24 08:50:57,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:50:57,838 INFO Out dated connection ,size=0 + +2025-09-24 08:50:57,838 INFO Connection check task end + +2025-09-24 08:50:59,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:00,840 INFO Connection check task start + +2025-09-24 08:51:00,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:00,840 INFO Out dated connection ,size=0 + +2025-09-24 08:51:00,840 INFO Connection check task end + +2025-09-24 08:51:02,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:03,842 INFO Connection check task start + +2025-09-24 08:51:03,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:03,843 INFO Out dated connection ,size=0 + +2025-09-24 08:51:03,843 INFO Connection check task end + +2025-09-24 08:51:05,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:06,844 INFO Connection check task start + +2025-09-24 08:51:06,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:06,844 INFO Out dated connection ,size=0 + +2025-09-24 08:51:06,844 INFO Connection check task end + +2025-09-24 08:51:08,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:09,846 INFO Connection check task start + +2025-09-24 08:51:09,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:09,846 INFO Out dated connection ,size=0 + +2025-09-24 08:51:09,847 INFO Connection check task end + +2025-09-24 08:51:11,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:12,847 INFO Connection check task start + +2025-09-24 08:51:12,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:12,847 INFO Out dated connection ,size=0 + +2025-09-24 08:51:12,847 INFO Connection check task end + +2025-09-24 08:51:14,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:15,849 INFO Connection check task start + +2025-09-24 08:51:15,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:15,849 INFO Out dated connection ,size=0 + +2025-09-24 08:51:15,850 INFO Connection check task end + +2025-09-24 08:51:17,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:18,851 INFO Connection check task start + +2025-09-24 08:51:18,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:18,851 INFO Out dated connection ,size=0 + +2025-09-24 08:51:18,851 INFO Connection check task end + +2025-09-24 08:51:20,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:21,854 INFO Connection check task start + +2025-09-24 08:51:21,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:21,854 INFO Out dated connection ,size=0 + +2025-09-24 08:51:21,854 INFO Connection check task end + +2025-09-24 08:51:23,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:24,854 INFO Connection check task start + +2025-09-24 08:51:24,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:24,854 INFO Out dated connection ,size=0 + +2025-09-24 08:51:24,854 INFO Connection check task end + +2025-09-24 08:51:26,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:27,856 INFO Connection check task start + +2025-09-24 08:51:27,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:27,857 INFO Out dated connection ,size=0 + +2025-09-24 08:51:27,857 INFO Connection check task end + +2025-09-24 08:51:29,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:30,858 INFO Connection check task start + +2025-09-24 08:51:30,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:30,858 INFO Out dated connection ,size=0 + +2025-09-24 08:51:30,858 INFO Connection check task end + +2025-09-24 08:51:32,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:33,859 INFO Connection check task start + +2025-09-24 08:51:33,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:33,859 INFO Out dated connection ,size=0 + +2025-09-24 08:51:33,859 INFO Connection check task end + +2025-09-24 08:51:35,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:36,860 INFO Connection check task start + +2025-09-24 08:51:36,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:36,860 INFO Out dated connection ,size=0 + +2025-09-24 08:51:36,860 INFO Connection check task end + +2025-09-24 08:51:38,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:39,861 INFO Connection check task start + +2025-09-24 08:51:39,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:39,861 INFO Out dated connection ,size=0 + +2025-09-24 08:51:39,861 INFO Connection check task end + +2025-09-24 08:51:41,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:42,862 INFO Connection check task start + +2025-09-24 08:51:42,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:42,862 INFO Out dated connection ,size=0 + +2025-09-24 08:51:42,862 INFO Connection check task end + +2025-09-24 08:51:44,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:45,863 INFO Connection check task start + +2025-09-24 08:51:45,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:45,863 INFO Out dated connection ,size=0 + +2025-09-24 08:51:45,864 INFO Connection check task end + +2025-09-24 08:51:47,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:48,864 INFO Connection check task start + +2025-09-24 08:51:48,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:48,864 INFO Out dated connection ,size=0 + +2025-09-24 08:51:48,864 INFO Connection check task end + +2025-09-24 08:51:50,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:51,865 INFO Connection check task start + +2025-09-24 08:51:51,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:51,865 INFO Out dated connection ,size=0 + +2025-09-24 08:51:51,865 INFO Connection check task end + +2025-09-24 08:51:53,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:54,865 INFO Connection check task start + +2025-09-24 08:51:54,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:54,865 INFO Out dated connection ,size=0 + +2025-09-24 08:51:54,865 INFO Connection check task end + +2025-09-24 08:51:56,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:51:57,866 INFO Connection check task start + +2025-09-24 08:51:57,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:51:57,866 INFO Out dated connection ,size=0 + +2025-09-24 08:51:57,866 INFO Connection check task end + +2025-09-24 08:51:59,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:00,867 INFO Connection check task start + +2025-09-24 08:52:00,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:00,867 INFO Out dated connection ,size=0 + +2025-09-24 08:52:00,867 INFO Connection check task end + +2025-09-24 08:52:02,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:03,870 INFO Connection check task start + +2025-09-24 08:52:03,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:03,870 INFO Out dated connection ,size=0 + +2025-09-24 08:52:03,870 INFO Connection check task end + +2025-09-24 08:52:05,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:06,871 INFO Connection check task start + +2025-09-24 08:52:06,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:06,871 INFO Out dated connection ,size=0 + +2025-09-24 08:52:06,871 INFO Connection check task end + +2025-09-24 08:52:08,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:09,871 INFO Connection check task start + +2025-09-24 08:52:09,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:09,871 INFO Out dated connection ,size=0 + +2025-09-24 08:52:09,871 INFO Connection check task end + +2025-09-24 08:52:11,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:12,873 INFO Connection check task start + +2025-09-24 08:52:12,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:12,873 INFO Out dated connection ,size=0 + +2025-09-24 08:52:12,873 INFO Connection check task end + +2025-09-24 08:52:14,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:15,875 INFO Connection check task start + +2025-09-24 08:52:15,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:15,875 INFO Out dated connection ,size=0 + +2025-09-24 08:52:15,876 INFO Connection check task end + +2025-09-24 08:52:17,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:18,876 INFO Connection check task start + +2025-09-24 08:52:18,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:18,876 INFO Out dated connection ,size=0 + +2025-09-24 08:52:18,876 INFO Connection check task end + +2025-09-24 08:52:20,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:21,878 INFO Connection check task start + +2025-09-24 08:52:21,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:21,879 INFO Out dated connection ,size=0 + +2025-09-24 08:52:21,879 INFO Connection check task end + +2025-09-24 08:52:23,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:24,880 INFO Connection check task start + +2025-09-24 08:52:24,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:24,880 INFO Out dated connection ,size=0 + +2025-09-24 08:52:24,880 INFO Connection check task end + +2025-09-24 08:52:26,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:27,880 INFO Connection check task start + +2025-09-24 08:52:27,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:27,881 INFO Out dated connection ,size=0 + +2025-09-24 08:52:27,881 INFO Connection check task end + +2025-09-24 08:52:29,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:30,881 INFO Connection check task start + +2025-09-24 08:52:30,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:30,881 INFO Out dated connection ,size=0 + +2025-09-24 08:52:30,881 INFO Connection check task end + +2025-09-24 08:52:32,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:33,881 INFO Connection check task start + +2025-09-24 08:52:33,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:33,882 INFO Out dated connection ,size=0 + +2025-09-24 08:52:33,882 INFO Connection check task end + +2025-09-24 08:52:35,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:36,882 INFO Connection check task start + +2025-09-24 08:52:36,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:36,882 INFO Out dated connection ,size=0 + +2025-09-24 08:52:36,882 INFO Connection check task end + +2025-09-24 08:52:38,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:39,884 INFO Connection check task start + +2025-09-24 08:52:39,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:39,884 INFO Out dated connection ,size=0 + +2025-09-24 08:52:39,884 INFO Connection check task end + +2025-09-24 08:52:41,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:42,885 INFO Connection check task start + +2025-09-24 08:52:42,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:42,885 INFO Out dated connection ,size=0 + +2025-09-24 08:52:42,885 INFO Connection check task end + +2025-09-24 08:52:44,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:45,885 INFO Connection check task start + +2025-09-24 08:52:45,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:45,886 INFO Out dated connection ,size=0 + +2025-09-24 08:52:45,886 INFO Connection check task end + +2025-09-24 08:52:47,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:48,886 INFO Connection check task start + +2025-09-24 08:52:48,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:48,886 INFO Out dated connection ,size=0 + +2025-09-24 08:52:48,886 INFO Connection check task end + +2025-09-24 08:52:50,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:51,887 INFO Connection check task start + +2025-09-24 08:52:51,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:51,887 INFO Out dated connection ,size=0 + +2025-09-24 08:52:51,887 INFO Connection check task end + +2025-09-24 08:52:53,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:54,887 INFO Connection check task start + +2025-09-24 08:52:54,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:54,887 INFO Out dated connection ,size=0 + +2025-09-24 08:52:54,887 INFO Connection check task end + +2025-09-24 08:52:56,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:52:57,889 INFO Connection check task start + +2025-09-24 08:52:57,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:52:57,889 INFO Out dated connection ,size=0 + +2025-09-24 08:52:57,889 INFO Connection check task end + +2025-09-24 08:52:59,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:00,890 INFO Connection check task start + +2025-09-24 08:53:00,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:00,890 INFO Out dated connection ,size=0 + +2025-09-24 08:53:00,890 INFO Connection check task end + +2025-09-24 08:53:02,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:03,892 INFO Connection check task start + +2025-09-24 08:53:03,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:03,892 INFO Out dated connection ,size=0 + +2025-09-24 08:53:03,892 INFO Connection check task end + +2025-09-24 08:53:05,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:06,894 INFO Connection check task start + +2025-09-24 08:53:06,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:06,894 INFO Out dated connection ,size=0 + +2025-09-24 08:53:06,894 INFO Connection check task end + +2025-09-24 08:53:08,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:09,896 INFO Connection check task start + +2025-09-24 08:53:09,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:09,897 INFO Out dated connection ,size=0 + +2025-09-24 08:53:09,897 INFO Connection check task end + +2025-09-24 08:53:11,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:12,897 INFO Connection check task start + +2025-09-24 08:53:12,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:12,897 INFO Out dated connection ,size=0 + +2025-09-24 08:53:12,897 INFO Connection check task end + +2025-09-24 08:53:14,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:15,898 INFO Connection check task start + +2025-09-24 08:53:15,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:15,898 INFO Out dated connection ,size=0 + +2025-09-24 08:53:15,898 INFO Connection check task end + +2025-09-24 08:53:17,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:18,898 INFO Connection check task start + +2025-09-24 08:53:18,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:18,899 INFO Out dated connection ,size=0 + +2025-09-24 08:53:18,899 INFO Connection check task end + +2025-09-24 08:53:20,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:21,899 INFO Connection check task start + +2025-09-24 08:53:21,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:21,899 INFO Out dated connection ,size=0 + +2025-09-24 08:53:21,899 INFO Connection check task end + +2025-09-24 08:53:23,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:24,900 INFO Connection check task start + +2025-09-24 08:53:24,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:24,900 INFO Out dated connection ,size=0 + +2025-09-24 08:53:24,900 INFO Connection check task end + +2025-09-24 08:53:26,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:27,901 INFO Connection check task start + +2025-09-24 08:53:27,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:27,901 INFO Out dated connection ,size=0 + +2025-09-24 08:53:27,901 INFO Connection check task end + +2025-09-24 08:53:29,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:30,901 INFO Connection check task start + +2025-09-24 08:53:30,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:30,902 INFO Out dated connection ,size=0 + +2025-09-24 08:53:30,902 INFO Connection check task end + +2025-09-24 08:53:32,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:33,903 INFO Connection check task start + +2025-09-24 08:53:33,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:33,903 INFO Out dated connection ,size=0 + +2025-09-24 08:53:33,903 INFO Connection check task end + +2025-09-24 08:53:35,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:36,905 INFO Connection check task start + +2025-09-24 08:53:36,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:36,905 INFO Out dated connection ,size=0 + +2025-09-24 08:53:36,906 INFO Connection check task end + +2025-09-24 08:53:38,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:39,906 INFO Connection check task start + +2025-09-24 08:53:39,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:39,906 INFO Out dated connection ,size=0 + +2025-09-24 08:53:39,906 INFO Connection check task end + +2025-09-24 08:53:41,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:42,906 INFO Connection check task start + +2025-09-24 08:53:42,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:42,907 INFO Out dated connection ,size=0 + +2025-09-24 08:53:42,907 INFO Connection check task end + +2025-09-24 08:53:44,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:45,907 INFO Connection check task start + +2025-09-24 08:53:45,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:45,907 INFO Out dated connection ,size=0 + +2025-09-24 08:53:45,907 INFO Connection check task end + +2025-09-24 08:53:47,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:48,909 INFO Connection check task start + +2025-09-24 08:53:48,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:48,909 INFO Out dated connection ,size=0 + +2025-09-24 08:53:48,909 INFO Connection check task end + +2025-09-24 08:53:50,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:51,911 INFO Connection check task start + +2025-09-24 08:53:51,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:51,911 INFO Out dated connection ,size=0 + +2025-09-24 08:53:51,911 INFO Connection check task end + +2025-09-24 08:53:53,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:54,913 INFO Connection check task start + +2025-09-24 08:53:54,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:54,913 INFO Out dated connection ,size=0 + +2025-09-24 08:53:54,913 INFO Connection check task end + +2025-09-24 08:53:56,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:53:57,916 INFO Connection check task start + +2025-09-24 08:53:57,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:53:57,916 INFO Out dated connection ,size=0 + +2025-09-24 08:53:57,916 INFO Connection check task end + +2025-09-24 08:53:59,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:00,916 INFO Connection check task start + +2025-09-24 08:54:00,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:00,916 INFO Out dated connection ,size=0 + +2025-09-24 08:54:00,916 INFO Connection check task end + +2025-09-24 08:54:02,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:03,917 INFO Connection check task start + +2025-09-24 08:54:03,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:03,917 INFO Out dated connection ,size=0 + +2025-09-24 08:54:03,917 INFO Connection check task end + +2025-09-24 08:54:05,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:06,919 INFO Connection check task start + +2025-09-24 08:54:06,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:06,919 INFO Out dated connection ,size=0 + +2025-09-24 08:54:06,919 INFO Connection check task end + +2025-09-24 08:54:08,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:09,921 INFO Connection check task start + +2025-09-24 08:54:09,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:09,921 INFO Out dated connection ,size=0 + +2025-09-24 08:54:09,921 INFO Connection check task end + +2025-09-24 08:54:11,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:12,921 INFO Connection check task start + +2025-09-24 08:54:12,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:12,921 INFO Out dated connection ,size=0 + +2025-09-24 08:54:12,921 INFO Connection check task end + +2025-09-24 08:54:14,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:15,922 INFO Connection check task start + +2025-09-24 08:54:15,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:15,922 INFO Out dated connection ,size=0 + +2025-09-24 08:54:15,922 INFO Connection check task end + +2025-09-24 08:54:17,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:18,922 INFO Connection check task start + +2025-09-24 08:54:18,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:18,923 INFO Out dated connection ,size=0 + +2025-09-24 08:54:18,923 INFO Connection check task end + +2025-09-24 08:54:20,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:21,923 INFO Connection check task start + +2025-09-24 08:54:21,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:21,924 INFO Out dated connection ,size=0 + +2025-09-24 08:54:21,924 INFO Connection check task end + +2025-09-24 08:54:23,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:24,924 INFO Connection check task start + +2025-09-24 08:54:24,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:24,924 INFO Out dated connection ,size=0 + +2025-09-24 08:54:24,924 INFO Connection check task end + +2025-09-24 08:54:26,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:27,925 INFO Connection check task start + +2025-09-24 08:54:27,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:27,925 INFO Out dated connection ,size=0 + +2025-09-24 08:54:27,925 INFO Connection check task end + +2025-09-24 08:54:29,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:30,926 INFO Connection check task start + +2025-09-24 08:54:30,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:30,926 INFO Out dated connection ,size=0 + +2025-09-24 08:54:30,926 INFO Connection check task end + +2025-09-24 08:54:32,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:33,927 INFO Connection check task start + +2025-09-24 08:54:33,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:33,927 INFO Out dated connection ,size=0 + +2025-09-24 08:54:33,927 INFO Connection check task end + +2025-09-24 08:54:35,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:36,928 INFO Connection check task start + +2025-09-24 08:54:36,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:36,928 INFO Out dated connection ,size=0 + +2025-09-24 08:54:36,928 INFO Connection check task end + +2025-09-24 08:54:38,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:39,929 INFO Connection check task start + +2025-09-24 08:54:39,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:39,929 INFO Out dated connection ,size=0 + +2025-09-24 08:54:39,929 INFO Connection check task end + +2025-09-24 08:54:41,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:42,931 INFO Connection check task start + +2025-09-24 08:54:42,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:42,931 INFO Out dated connection ,size=0 + +2025-09-24 08:54:42,931 INFO Connection check task end + +2025-09-24 08:54:44,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:45,932 INFO Connection check task start + +2025-09-24 08:54:45,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:45,932 INFO Out dated connection ,size=0 + +2025-09-24 08:54:45,932 INFO Connection check task end + +2025-09-24 08:54:47,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:48,932 INFO Connection check task start + +2025-09-24 08:54:48,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:48,932 INFO Out dated connection ,size=0 + +2025-09-24 08:54:48,932 INFO Connection check task end + +2025-09-24 08:54:50,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:51,934 INFO Connection check task start + +2025-09-24 08:54:51,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:51,934 INFO Out dated connection ,size=0 + +2025-09-24 08:54:51,934 INFO Connection check task end + +2025-09-24 08:54:53,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:54,935 INFO Connection check task start + +2025-09-24 08:54:54,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:54,935 INFO Out dated connection ,size=0 + +2025-09-24 08:54:54,935 INFO Connection check task end + +2025-09-24 08:54:56,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:54:57,936 INFO Connection check task start + +2025-09-24 08:54:57,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:54:57,936 INFO Out dated connection ,size=0 + +2025-09-24 08:54:57,936 INFO Connection check task end + +2025-09-24 08:54:59,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:00,937 INFO Connection check task start + +2025-09-24 08:55:00,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:00,938 INFO Out dated connection ,size=0 + +2025-09-24 08:55:00,938 INFO Connection check task end + +2025-09-24 08:55:02,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:03,938 INFO Connection check task start + +2025-09-24 08:55:03,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:03,938 INFO Out dated connection ,size=0 + +2025-09-24 08:55:03,938 INFO Connection check task end + +2025-09-24 08:55:05,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:06,939 INFO Connection check task start + +2025-09-24 08:55:06,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:06,939 INFO Out dated connection ,size=0 + +2025-09-24 08:55:06,939 INFO Connection check task end + +2025-09-24 08:55:08,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:09,940 INFO Connection check task start + +2025-09-24 08:55:09,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:09,940 INFO Out dated connection ,size=0 + +2025-09-24 08:55:09,941 INFO Connection check task end + +2025-09-24 08:55:11,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:12,941 INFO Connection check task start + +2025-09-24 08:55:12,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:12,941 INFO Out dated connection ,size=0 + +2025-09-24 08:55:12,941 INFO Connection check task end + +2025-09-24 08:55:14,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:15,942 INFO Connection check task start + +2025-09-24 08:55:15,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:15,942 INFO Out dated connection ,size=0 + +2025-09-24 08:55:15,942 INFO Connection check task end + +2025-09-24 08:55:17,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:18,942 INFO Connection check task start + +2025-09-24 08:55:18,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:18,942 INFO Out dated connection ,size=0 + +2025-09-24 08:55:18,942 INFO Connection check task end + +2025-09-24 08:55:20,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:21,944 INFO Connection check task start + +2025-09-24 08:55:21,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:21,944 INFO Out dated connection ,size=0 + +2025-09-24 08:55:21,944 INFO Connection check task end + +2025-09-24 08:55:23,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:24,945 INFO Connection check task start + +2025-09-24 08:55:24,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:24,945 INFO Out dated connection ,size=0 + +2025-09-24 08:55:24,945 INFO Connection check task end + +2025-09-24 08:55:26,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:27,945 INFO Connection check task start + +2025-09-24 08:55:27,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:27,945 INFO Out dated connection ,size=0 + +2025-09-24 08:55:27,945 INFO Connection check task end + +2025-09-24 08:55:29,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:30,947 INFO Connection check task start + +2025-09-24 08:55:30,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:30,947 INFO Out dated connection ,size=0 + +2025-09-24 08:55:30,947 INFO Connection check task end + +2025-09-24 08:55:32,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:33,948 INFO Connection check task start + +2025-09-24 08:55:33,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:33,949 INFO Out dated connection ,size=0 + +2025-09-24 08:55:33,949 INFO Connection check task end + +2025-09-24 08:55:35,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:36,951 INFO Connection check task start + +2025-09-24 08:55:36,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:36,951 INFO Out dated connection ,size=0 + +2025-09-24 08:55:36,951 INFO Connection check task end + +2025-09-24 08:55:38,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:39,951 INFO Connection check task start + +2025-09-24 08:55:39,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:39,952 INFO Out dated connection ,size=0 + +2025-09-24 08:55:39,952 INFO Connection check task end + +2025-09-24 08:55:41,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:42,952 INFO Connection check task start + +2025-09-24 08:55:42,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:42,952 INFO Out dated connection ,size=0 + +2025-09-24 08:55:42,952 INFO Connection check task end + +2025-09-24 08:55:44,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:45,953 INFO Connection check task start + +2025-09-24 08:55:45,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:45,953 INFO Out dated connection ,size=0 + +2025-09-24 08:55:45,953 INFO Connection check task end + +2025-09-24 08:55:47,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:48,953 INFO Connection check task start + +2025-09-24 08:55:48,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:48,953 INFO Out dated connection ,size=0 + +2025-09-24 08:55:48,953 INFO Connection check task end + +2025-09-24 08:55:50,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:51,956 INFO Connection check task start + +2025-09-24 08:55:51,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:51,956 INFO Out dated connection ,size=0 + +2025-09-24 08:55:51,956 INFO Connection check task end + +2025-09-24 08:55:53,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:54,958 INFO Connection check task start + +2025-09-24 08:55:54,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:54,958 INFO Out dated connection ,size=0 + +2025-09-24 08:55:54,958 INFO Connection check task end + +2025-09-24 08:55:56,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:55:57,959 INFO Connection check task start + +2025-09-24 08:55:57,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:55:57,959 INFO Out dated connection ,size=0 + +2025-09-24 08:55:57,959 INFO Connection check task end + +2025-09-24 08:55:59,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:00,960 INFO Connection check task start + +2025-09-24 08:56:00,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:00,960 INFO Out dated connection ,size=0 + +2025-09-24 08:56:00,960 INFO Connection check task end + +2025-09-24 08:56:02,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:03,960 INFO Connection check task start + +2025-09-24 08:56:03,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:03,960 INFO Out dated connection ,size=0 + +2025-09-24 08:56:03,960 INFO Connection check task end + +2025-09-24 08:56:05,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:06,962 INFO Connection check task start + +2025-09-24 08:56:06,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:06,962 INFO Out dated connection ,size=0 + +2025-09-24 08:56:06,962 INFO Connection check task end + +2025-09-24 08:56:08,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:09,965 INFO Connection check task start + +2025-09-24 08:56:09,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:09,965 INFO Out dated connection ,size=0 + +2025-09-24 08:56:09,965 INFO Connection check task end + +2025-09-24 08:56:11,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:12,965 INFO Connection check task start + +2025-09-24 08:56:12,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:12,965 INFO Out dated connection ,size=0 + +2025-09-24 08:56:12,965 INFO Connection check task end + +2025-09-24 08:56:14,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:15,966 INFO Connection check task start + +2025-09-24 08:56:15,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:15,966 INFO Out dated connection ,size=0 + +2025-09-24 08:56:15,966 INFO Connection check task end + +2025-09-24 08:56:17,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:18,968 INFO Connection check task start + +2025-09-24 08:56:18,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:18,968 INFO Out dated connection ,size=0 + +2025-09-24 08:56:18,968 INFO Connection check task end + +2025-09-24 08:56:20,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:21,968 INFO Connection check task start + +2025-09-24 08:56:21,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:21,968 INFO Out dated connection ,size=0 + +2025-09-24 08:56:21,968 INFO Connection check task end + +2025-09-24 08:56:23,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:24,971 INFO Connection check task start + +2025-09-24 08:56:24,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:24,971 INFO Out dated connection ,size=0 + +2025-09-24 08:56:24,971 INFO Connection check task end + +2025-09-24 08:56:26,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:27,973 INFO Connection check task start + +2025-09-24 08:56:27,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:27,973 INFO Out dated connection ,size=0 + +2025-09-24 08:56:27,973 INFO Connection check task end + +2025-09-24 08:56:29,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:30,975 INFO Connection check task start + +2025-09-24 08:56:30,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:30,975 INFO Out dated connection ,size=0 + +2025-09-24 08:56:30,975 INFO Connection check task end + +2025-09-24 08:56:32,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:33,976 INFO Connection check task start + +2025-09-24 08:56:33,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:33,977 INFO Out dated connection ,size=0 + +2025-09-24 08:56:33,977 INFO Connection check task end + +2025-09-24 08:56:35,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:36,978 INFO Connection check task start + +2025-09-24 08:56:36,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:36,978 INFO Out dated connection ,size=0 + +2025-09-24 08:56:36,978 INFO Connection check task end + +2025-09-24 08:56:38,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:39,978 INFO Connection check task start + +2025-09-24 08:56:39,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:39,979 INFO Out dated connection ,size=0 + +2025-09-24 08:56:39,979 INFO Connection check task end + +2025-09-24 08:56:41,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:42,979 INFO Connection check task start + +2025-09-24 08:56:42,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:42,979 INFO Out dated connection ,size=0 + +2025-09-24 08:56:42,979 INFO Connection check task end + +2025-09-24 08:56:44,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:45,981 INFO Connection check task start + +2025-09-24 08:56:45,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:45,981 INFO Out dated connection ,size=0 + +2025-09-24 08:56:45,981 INFO Connection check task end + +2025-09-24 08:56:47,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:48,982 INFO Connection check task start + +2025-09-24 08:56:48,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:48,983 INFO Out dated connection ,size=0 + +2025-09-24 08:56:48,983 INFO Connection check task end + +2025-09-24 08:56:50,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:51,983 INFO Connection check task start + +2025-09-24 08:56:51,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:51,983 INFO Out dated connection ,size=0 + +2025-09-24 08:56:51,984 INFO Connection check task end + +2025-09-24 08:56:53,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:54,984 INFO Connection check task start + +2025-09-24 08:56:54,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:54,984 INFO Out dated connection ,size=0 + +2025-09-24 08:56:54,984 INFO Connection check task end + +2025-09-24 08:56:56,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:56:57,985 INFO Connection check task start + +2025-09-24 08:56:57,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:56:57,985 INFO Out dated connection ,size=0 + +2025-09-24 08:56:57,985 INFO Connection check task end + +2025-09-24 08:56:59,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:00,986 INFO Connection check task start + +2025-09-24 08:57:00,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:00,987 INFO Out dated connection ,size=0 + +2025-09-24 08:57:00,987 INFO Connection check task end + +2025-09-24 08:57:02,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:03,987 INFO Connection check task start + +2025-09-24 08:57:03,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:03,987 INFO Out dated connection ,size=0 + +2025-09-24 08:57:03,987 INFO Connection check task end + +2025-09-24 08:57:05,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:06,989 INFO Connection check task start + +2025-09-24 08:57:06,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:06,989 INFO Out dated connection ,size=0 + +2025-09-24 08:57:06,989 INFO Connection check task end + +2025-09-24 08:57:08,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:09,991 INFO Connection check task start + +2025-09-24 08:57:09,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:09,991 INFO Out dated connection ,size=0 + +2025-09-24 08:57:09,991 INFO Connection check task end + +2025-09-24 08:57:11,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:12,992 INFO Connection check task start + +2025-09-24 08:57:12,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:12,992 INFO Out dated connection ,size=0 + +2025-09-24 08:57:12,992 INFO Connection check task end + +2025-09-24 08:57:14,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:15,994 INFO Connection check task start + +2025-09-24 08:57:15,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:15,994 INFO Out dated connection ,size=0 + +2025-09-24 08:57:15,994 INFO Connection check task end + +2025-09-24 08:57:17,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:18,996 INFO Connection check task start + +2025-09-24 08:57:18,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:18,997 INFO Out dated connection ,size=0 + +2025-09-24 08:57:18,997 INFO Connection check task end + +2025-09-24 08:57:20,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:21,997 INFO Connection check task start + +2025-09-24 08:57:21,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:21,997 INFO Out dated connection ,size=0 + +2025-09-24 08:57:21,997 INFO Connection check task end + +2025-09-24 08:57:23,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:24,999 INFO Connection check task start + +2025-09-24 08:57:24,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:24,999 INFO Out dated connection ,size=0 + +2025-09-24 08:57:24,999 INFO Connection check task end + +2025-09-24 08:57:26,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:28,001 INFO Connection check task start + +2025-09-24 08:57:28,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:28,001 INFO Out dated connection ,size=0 + +2025-09-24 08:57:28,001 INFO Connection check task end + +2025-09-24 08:57:29,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:31,001 INFO Connection check task start + +2025-09-24 08:57:31,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:31,001 INFO Out dated connection ,size=0 + +2025-09-24 08:57:31,001 INFO Connection check task end + +2025-09-24 08:57:32,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:34,004 INFO Connection check task start + +2025-09-24 08:57:34,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:34,004 INFO Out dated connection ,size=0 + +2025-09-24 08:57:34,004 INFO Connection check task end + +2025-09-24 08:57:35,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:37,004 INFO Connection check task start + +2025-09-24 08:57:37,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:37,005 INFO Out dated connection ,size=0 + +2025-09-24 08:57:37,005 INFO Connection check task end + +2025-09-24 08:57:38,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:40,007 INFO Connection check task start + +2025-09-24 08:57:40,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:40,007 INFO Out dated connection ,size=0 + +2025-09-24 08:57:40,007 INFO Connection check task end + +2025-09-24 08:57:41,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:43,007 INFO Connection check task start + +2025-09-24 08:57:43,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:43,007 INFO Out dated connection ,size=0 + +2025-09-24 08:57:43,007 INFO Connection check task end + +2025-09-24 08:57:44,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:46,008 INFO Connection check task start + +2025-09-24 08:57:46,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:46,008 INFO Out dated connection ,size=0 + +2025-09-24 08:57:46,009 INFO Connection check task end + +2025-09-24 08:57:47,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:49,011 INFO Connection check task start + +2025-09-24 08:57:49,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:49,011 INFO Out dated connection ,size=0 + +2025-09-24 08:57:49,011 INFO Connection check task end + +2025-09-24 08:57:50,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:52,013 INFO Connection check task start + +2025-09-24 08:57:52,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:52,013 INFO Out dated connection ,size=0 + +2025-09-24 08:57:52,013 INFO Connection check task end + +2025-09-24 08:57:53,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:55,015 INFO Connection check task start + +2025-09-24 08:57:55,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:55,016 INFO Out dated connection ,size=0 + +2025-09-24 08:57:55,016 INFO Connection check task end + +2025-09-24 08:57:56,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:57:58,017 INFO Connection check task start + +2025-09-24 08:57:58,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:57:58,017 INFO Out dated connection ,size=0 + +2025-09-24 08:57:58,017 INFO Connection check task end + +2025-09-24 08:57:59,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:01,019 INFO Connection check task start + +2025-09-24 08:58:01,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:01,020 INFO Out dated connection ,size=0 + +2025-09-24 08:58:01,020 INFO Connection check task end + +2025-09-24 08:58:02,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:04,022 INFO Connection check task start + +2025-09-24 08:58:04,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:04,022 INFO Out dated connection ,size=0 + +2025-09-24 08:58:04,022 INFO Connection check task end + +2025-09-24 08:58:05,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:07,022 INFO Connection check task start + +2025-09-24 08:58:07,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:07,023 INFO Out dated connection ,size=0 + +2025-09-24 08:58:07,023 INFO Connection check task end + +2025-09-24 08:58:08,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:10,025 INFO Connection check task start + +2025-09-24 08:58:10,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:10,025 INFO Out dated connection ,size=0 + +2025-09-24 08:58:10,025 INFO Connection check task end + +2025-09-24 08:58:11,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:13,026 INFO Connection check task start + +2025-09-24 08:58:13,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:13,026 INFO Out dated connection ,size=0 + +2025-09-24 08:58:13,026 INFO Connection check task end + +2025-09-24 08:58:14,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:16,028 INFO Connection check task start + +2025-09-24 08:58:16,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:16,028 INFO Out dated connection ,size=0 + +2025-09-24 08:58:16,028 INFO Connection check task end + +2025-09-24 08:58:17,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:19,028 INFO Connection check task start + +2025-09-24 08:58:19,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:19,029 INFO Out dated connection ,size=0 + +2025-09-24 08:58:19,029 INFO Connection check task end + +2025-09-24 08:58:20,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:22,029 INFO Connection check task start + +2025-09-24 08:58:22,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:22,030 INFO Out dated connection ,size=0 + +2025-09-24 08:58:22,030 INFO Connection check task end + +2025-09-24 08:58:23,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:25,032 INFO Connection check task start + +2025-09-24 08:58:25,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:25,032 INFO Out dated connection ,size=0 + +2025-09-24 08:58:25,032 INFO Connection check task end + +2025-09-24 08:58:26,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:28,033 INFO Connection check task start + +2025-09-24 08:58:28,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:28,034 INFO Out dated connection ,size=0 + +2025-09-24 08:58:28,034 INFO Connection check task end + +2025-09-24 08:58:29,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:31,035 INFO Connection check task start + +2025-09-24 08:58:31,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:31,035 INFO Out dated connection ,size=0 + +2025-09-24 08:58:31,035 INFO Connection check task end + +2025-09-24 08:58:32,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:34,037 INFO Connection check task start + +2025-09-24 08:58:34,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:34,037 INFO Out dated connection ,size=0 + +2025-09-24 08:58:34,037 INFO Connection check task end + +2025-09-24 08:58:35,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:37,039 INFO Connection check task start + +2025-09-24 08:58:37,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:37,039 INFO Out dated connection ,size=0 + +2025-09-24 08:58:37,040 INFO Connection check task end + +2025-09-24 08:58:38,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:40,040 INFO Connection check task start + +2025-09-24 08:58:40,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:40,040 INFO Out dated connection ,size=0 + +2025-09-24 08:58:40,040 INFO Connection check task end + +2025-09-24 08:58:41,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:43,041 INFO Connection check task start + +2025-09-24 08:58:43,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:43,041 INFO Out dated connection ,size=0 + +2025-09-24 08:58:43,041 INFO Connection check task end + +2025-09-24 08:58:44,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:46,041 INFO Connection check task start + +2025-09-24 08:58:46,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:46,041 INFO Out dated connection ,size=0 + +2025-09-24 08:58:46,041 INFO Connection check task end + +2025-09-24 08:58:47,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:49,042 INFO Connection check task start + +2025-09-24 08:58:49,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:49,042 INFO Out dated connection ,size=0 + +2025-09-24 08:58:49,042 INFO Connection check task end + +2025-09-24 08:58:50,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:52,045 INFO Connection check task start + +2025-09-24 08:58:52,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:52,045 INFO Out dated connection ,size=0 + +2025-09-24 08:58:52,045 INFO Connection check task end + +2025-09-24 08:58:53,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:55,046 INFO Connection check task start + +2025-09-24 08:58:55,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:55,046 INFO Out dated connection ,size=0 + +2025-09-24 08:58:55,046 INFO Connection check task end + +2025-09-24 08:58:56,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:58:58,048 INFO Connection check task start + +2025-09-24 08:58:58,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:58:58,048 INFO Out dated connection ,size=0 + +2025-09-24 08:58:58,048 INFO Connection check task end + +2025-09-24 08:58:59,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:01,050 INFO Connection check task start + +2025-09-24 08:59:01,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:01,050 INFO Out dated connection ,size=0 + +2025-09-24 08:59:01,050 INFO Connection check task end + +2025-09-24 08:59:02,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:04,052 INFO Connection check task start + +2025-09-24 08:59:04,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:04,052 INFO Out dated connection ,size=0 + +2025-09-24 08:59:04,052 INFO Connection check task end + +2025-09-24 08:59:05,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:07,053 INFO Connection check task start + +2025-09-24 08:59:07,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:07,053 INFO Out dated connection ,size=0 + +2025-09-24 08:59:07,053 INFO Connection check task end + +2025-09-24 08:59:08,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:10,055 INFO Connection check task start + +2025-09-24 08:59:10,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:10,055 INFO Out dated connection ,size=0 + +2025-09-24 08:59:10,055 INFO Connection check task end + +2025-09-24 08:59:11,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:13,057 INFO Connection check task start + +2025-09-24 08:59:13,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:13,057 INFO Out dated connection ,size=0 + +2025-09-24 08:59:13,057 INFO Connection check task end + +2025-09-24 08:59:14,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:16,059 INFO Connection check task start + +2025-09-24 08:59:16,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:16,059 INFO Out dated connection ,size=0 + +2025-09-24 08:59:16,059 INFO Connection check task end + +2025-09-24 08:59:17,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:19,061 INFO Connection check task start + +2025-09-24 08:59:19,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:19,061 INFO Out dated connection ,size=0 + +2025-09-24 08:59:19,061 INFO Connection check task end + +2025-09-24 08:59:20,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:22,061 INFO Connection check task start + +2025-09-24 08:59:22,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:22,061 INFO Out dated connection ,size=0 + +2025-09-24 08:59:22,061 INFO Connection check task end + +2025-09-24 08:59:23,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:25,061 INFO Connection check task start + +2025-09-24 08:59:25,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:25,062 INFO Out dated connection ,size=0 + +2025-09-24 08:59:25,062 INFO Connection check task end + +2025-09-24 08:59:26,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:28,062 INFO Connection check task start + +2025-09-24 08:59:28,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:28,062 INFO Out dated connection ,size=0 + +2025-09-24 08:59:28,062 INFO Connection check task end + +2025-09-24 08:59:29,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:31,063 INFO Connection check task start + +2025-09-24 08:59:31,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:31,064 INFO Out dated connection ,size=0 + +2025-09-24 08:59:31,064 INFO Connection check task end + +2025-09-24 08:59:32,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:34,065 INFO Connection check task start + +2025-09-24 08:59:34,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:34,066 INFO Out dated connection ,size=0 + +2025-09-24 08:59:34,066 INFO Connection check task end + +2025-09-24 08:59:35,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:37,067 INFO Connection check task start + +2025-09-24 08:59:37,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:37,067 INFO Out dated connection ,size=0 + +2025-09-24 08:59:37,067 INFO Connection check task end + +2025-09-24 08:59:38,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:40,069 INFO Connection check task start + +2025-09-24 08:59:40,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:40,069 INFO Out dated connection ,size=0 + +2025-09-24 08:59:40,069 INFO Connection check task end + +2025-09-24 08:59:41,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:43,069 INFO Connection check task start + +2025-09-24 08:59:43,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:43,070 INFO Out dated connection ,size=0 + +2025-09-24 08:59:43,070 INFO Connection check task end + +2025-09-24 08:59:44,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:46,072 INFO Connection check task start + +2025-09-24 08:59:46,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:46,072 INFO Out dated connection ,size=0 + +2025-09-24 08:59:46,072 INFO Connection check task end + +2025-09-24 08:59:47,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:49,072 INFO Connection check task start + +2025-09-24 08:59:49,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:49,072 INFO Out dated connection ,size=0 + +2025-09-24 08:59:49,073 INFO Connection check task end + +2025-09-24 08:59:50,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:52,075 INFO Connection check task start + +2025-09-24 08:59:52,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:52,075 INFO Out dated connection ,size=0 + +2025-09-24 08:59:52,075 INFO Connection check task end + +2025-09-24 08:59:53,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:55,077 INFO Connection check task start + +2025-09-24 08:59:55,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:55,077 INFO Out dated connection ,size=0 + +2025-09-24 08:59:55,077 INFO Connection check task end + +2025-09-24 08:59:56,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 08:59:58,078 INFO Connection check task start + +2025-09-24 08:59:58,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 08:59:58,078 INFO Out dated connection ,size=0 + +2025-09-24 08:59:58,078 INFO Connection check task end + +2025-09-24 08:59:59,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:01,080 INFO Connection check task start + +2025-09-24 09:00:01,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:01,080 INFO Out dated connection ,size=0 + +2025-09-24 09:00:01,080 INFO Connection check task end + +2025-09-24 09:00:02,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:04,081 INFO Connection check task start + +2025-09-24 09:00:04,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:04,082 INFO Out dated connection ,size=0 + +2025-09-24 09:00:04,082 INFO Connection check task end + +2025-09-24 09:00:05,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:07,084 INFO Connection check task start + +2025-09-24 09:00:07,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:07,084 INFO Out dated connection ,size=0 + +2025-09-24 09:00:07,084 INFO Connection check task end + +2025-09-24 09:00:08,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:10,084 INFO Connection check task start + +2025-09-24 09:00:10,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:10,085 INFO Out dated connection ,size=0 + +2025-09-24 09:00:10,085 INFO Connection check task end + +2025-09-24 09:00:11,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:13,087 INFO Connection check task start + +2025-09-24 09:00:13,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:13,087 INFO Out dated connection ,size=0 + +2025-09-24 09:00:13,087 INFO Connection check task end + +2025-09-24 09:00:14,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:16,089 INFO Connection check task start + +2025-09-24 09:00:16,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:16,089 INFO Out dated connection ,size=0 + +2025-09-24 09:00:16,089 INFO Connection check task end + +2025-09-24 09:00:17,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:19,090 INFO Connection check task start + +2025-09-24 09:00:19,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:19,090 INFO Out dated connection ,size=0 + +2025-09-24 09:00:19,090 INFO Connection check task end + +2025-09-24 09:00:20,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:22,092 INFO Connection check task start + +2025-09-24 09:00:22,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:22,093 INFO Out dated connection ,size=0 + +2025-09-24 09:00:22,093 INFO Connection check task end + +2025-09-24 09:00:23,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:25,093 INFO Connection check task start + +2025-09-24 09:00:25,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:25,094 INFO Out dated connection ,size=0 + +2025-09-24 09:00:25,094 INFO Connection check task end + +2025-09-24 09:00:26,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:28,094 INFO Connection check task start + +2025-09-24 09:00:28,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:28,094 INFO Out dated connection ,size=0 + +2025-09-24 09:00:28,094 INFO Connection check task end + +2025-09-24 09:00:29,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:31,095 INFO Connection check task start + +2025-09-24 09:00:31,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:31,095 INFO Out dated connection ,size=0 + +2025-09-24 09:00:31,095 INFO Connection check task end + +2025-09-24 09:00:32,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:34,096 INFO Connection check task start + +2025-09-24 09:00:34,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:34,096 INFO Out dated connection ,size=0 + +2025-09-24 09:00:34,096 INFO Connection check task end + +2025-09-24 09:00:35,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:37,098 INFO Connection check task start + +2025-09-24 09:00:37,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:37,098 INFO Out dated connection ,size=0 + +2025-09-24 09:00:37,098 INFO Connection check task end + +2025-09-24 09:00:38,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:40,098 INFO Connection check task start + +2025-09-24 09:00:40,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:40,098 INFO Out dated connection ,size=0 + +2025-09-24 09:00:40,098 INFO Connection check task end + +2025-09-24 09:00:41,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:43,100 INFO Connection check task start + +2025-09-24 09:00:43,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:43,101 INFO Out dated connection ,size=0 + +2025-09-24 09:00:43,101 INFO Connection check task end + +2025-09-24 09:00:44,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:46,101 INFO Connection check task start + +2025-09-24 09:00:46,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:46,101 INFO Out dated connection ,size=0 + +2025-09-24 09:00:46,101 INFO Connection check task end + +2025-09-24 09:00:47,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:49,102 INFO Connection check task start + +2025-09-24 09:00:49,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:49,102 INFO Out dated connection ,size=0 + +2025-09-24 09:00:49,102 INFO Connection check task end + +2025-09-24 09:00:50,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:52,103 INFO Connection check task start + +2025-09-24 09:00:52,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:52,103 INFO Out dated connection ,size=0 + +2025-09-24 09:00:52,103 INFO Connection check task end + +2025-09-24 09:00:53,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:55,105 INFO Connection check task start + +2025-09-24 09:00:55,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:55,105 INFO Out dated connection ,size=0 + +2025-09-24 09:00:55,105 INFO Connection check task end + +2025-09-24 09:00:56,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:00:58,107 INFO Connection check task start + +2025-09-24 09:00:58,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:00:58,107 INFO Out dated connection ,size=0 + +2025-09-24 09:00:58,107 INFO Connection check task end + +2025-09-24 09:00:59,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:01,109 INFO Connection check task start + +2025-09-24 09:01:01,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:01,109 INFO Out dated connection ,size=0 + +2025-09-24 09:01:01,109 INFO Connection check task end + +2025-09-24 09:01:02,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:04,110 INFO Connection check task start + +2025-09-24 09:01:04,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:04,110 INFO Out dated connection ,size=0 + +2025-09-24 09:01:04,110 INFO Connection check task end + +2025-09-24 09:01:05,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:07,112 INFO Connection check task start + +2025-09-24 09:01:07,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:07,112 INFO Out dated connection ,size=0 + +2025-09-24 09:01:07,112 INFO Connection check task end + +2025-09-24 09:01:08,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:10,112 INFO Connection check task start + +2025-09-24 09:01:10,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:10,113 INFO Out dated connection ,size=0 + +2025-09-24 09:01:10,113 INFO Connection check task end + +2025-09-24 09:01:11,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:13,113 INFO Connection check task start + +2025-09-24 09:01:13,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:13,113 INFO Out dated connection ,size=0 + +2025-09-24 09:01:13,113 INFO Connection check task end + +2025-09-24 09:01:14,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:16,113 INFO Connection check task start + +2025-09-24 09:01:16,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:16,114 INFO Out dated connection ,size=0 + +2025-09-24 09:01:16,114 INFO Connection check task end + +2025-09-24 09:01:17,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:19,116 INFO Connection check task start + +2025-09-24 09:01:19,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:19,116 INFO Out dated connection ,size=0 + +2025-09-24 09:01:19,116 INFO Connection check task end + +2025-09-24 09:01:20,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:22,116 INFO Connection check task start + +2025-09-24 09:01:22,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:22,116 INFO Out dated connection ,size=0 + +2025-09-24 09:01:22,116 INFO Connection check task end + +2025-09-24 09:01:23,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:25,117 INFO Connection check task start + +2025-09-24 09:01:25,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:25,117 INFO Out dated connection ,size=0 + +2025-09-24 09:01:25,117 INFO Connection check task end + +2025-09-24 09:01:26,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:28,117 INFO Connection check task start + +2025-09-24 09:01:28,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:28,117 INFO Out dated connection ,size=0 + +2025-09-24 09:01:28,117 INFO Connection check task end + +2025-09-24 09:01:29,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:31,118 INFO Connection check task start + +2025-09-24 09:01:31,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:31,118 INFO Out dated connection ,size=0 + +2025-09-24 09:01:31,118 INFO Connection check task end + +2025-09-24 09:01:32,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:34,120 INFO Connection check task start + +2025-09-24 09:01:34,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:34,120 INFO Out dated connection ,size=0 + +2025-09-24 09:01:34,120 INFO Connection check task end + +2025-09-24 09:01:35,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:37,120 INFO Connection check task start + +2025-09-24 09:01:37,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:37,120 INFO Out dated connection ,size=0 + +2025-09-24 09:01:37,120 INFO Connection check task end + +2025-09-24 09:01:38,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:40,122 INFO Connection check task start + +2025-09-24 09:01:40,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:40,122 INFO Out dated connection ,size=0 + +2025-09-24 09:01:40,122 INFO Connection check task end + +2025-09-24 09:01:41,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:43,123 INFO Connection check task start + +2025-09-24 09:01:43,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:43,123 INFO Out dated connection ,size=0 + +2025-09-24 09:01:43,123 INFO Connection check task end + +2025-09-24 09:01:44,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:46,124 INFO Connection check task start + +2025-09-24 09:01:46,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:46,124 INFO Out dated connection ,size=0 + +2025-09-24 09:01:46,124 INFO Connection check task end + +2025-09-24 09:01:47,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:49,124 INFO Connection check task start + +2025-09-24 09:01:49,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:49,124 INFO Out dated connection ,size=0 + +2025-09-24 09:01:49,124 INFO Connection check task end + +2025-09-24 09:01:50,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:52,125 INFO Connection check task start + +2025-09-24 09:01:52,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:52,125 INFO Out dated connection ,size=0 + +2025-09-24 09:01:52,125 INFO Connection check task end + +2025-09-24 09:01:53,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:55,127 INFO Connection check task start + +2025-09-24 09:01:55,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:55,127 INFO Out dated connection ,size=0 + +2025-09-24 09:01:55,127 INFO Connection check task end + +2025-09-24 09:01:56,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:01:58,129 INFO Connection check task start + +2025-09-24 09:01:58,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:01:58,130 INFO Out dated connection ,size=0 + +2025-09-24 09:01:58,130 INFO Connection check task end + +2025-09-24 09:01:59,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:01,130 INFO Connection check task start + +2025-09-24 09:02:01,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:01,130 INFO Out dated connection ,size=0 + +2025-09-24 09:02:01,130 INFO Connection check task end + +2025-09-24 09:02:02,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:04,131 INFO Connection check task start + +2025-09-24 09:02:04,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:04,131 INFO Out dated connection ,size=0 + +2025-09-24 09:02:04,131 INFO Connection check task end + +2025-09-24 09:02:05,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:07,132 INFO Connection check task start + +2025-09-24 09:02:07,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:07,132 INFO Out dated connection ,size=0 + +2025-09-24 09:02:07,132 INFO Connection check task end + +2025-09-24 09:02:08,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:10,134 INFO Connection check task start + +2025-09-24 09:02:10,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:10,135 INFO Out dated connection ,size=0 + +2025-09-24 09:02:10,135 INFO Connection check task end + +2025-09-24 09:02:11,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:13,136 INFO Connection check task start + +2025-09-24 09:02:13,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:13,136 INFO Out dated connection ,size=0 + +2025-09-24 09:02:13,136 INFO Connection check task end + +2025-09-24 09:02:14,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:16,138 INFO Connection check task start + +2025-09-24 09:02:16,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:16,139 INFO Out dated connection ,size=0 + +2025-09-24 09:02:16,139 INFO Connection check task end + +2025-09-24 09:02:17,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:19,139 INFO Connection check task start + +2025-09-24 09:02:19,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:19,139 INFO Out dated connection ,size=0 + +2025-09-24 09:02:19,139 INFO Connection check task end + +2025-09-24 09:02:20,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:22,140 INFO Connection check task start + +2025-09-24 09:02:22,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:22,140 INFO Out dated connection ,size=0 + +2025-09-24 09:02:22,140 INFO Connection check task end + +2025-09-24 09:02:23,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:25,141 INFO Connection check task start + +2025-09-24 09:02:25,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:25,141 INFO Out dated connection ,size=0 + +2025-09-24 09:02:25,141 INFO Connection check task end + +2025-09-24 09:02:26,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:28,141 INFO Connection check task start + +2025-09-24 09:02:28,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:28,142 INFO Out dated connection ,size=0 + +2025-09-24 09:02:28,142 INFO Connection check task end + +2025-09-24 09:02:29,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:31,143 INFO Connection check task start + +2025-09-24 09:02:31,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:31,144 INFO Out dated connection ,size=0 + +2025-09-24 09:02:31,144 INFO Connection check task end + +2025-09-24 09:02:32,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:34,145 INFO Connection check task start + +2025-09-24 09:02:34,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:34,145 INFO Out dated connection ,size=0 + +2025-09-24 09:02:34,145 INFO Connection check task end + +2025-09-24 09:02:35,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:37,145 INFO Connection check task start + +2025-09-24 09:02:37,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:37,146 INFO Out dated connection ,size=0 + +2025-09-24 09:02:37,146 INFO Connection check task end + +2025-09-24 09:02:38,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:40,146 INFO Connection check task start + +2025-09-24 09:02:40,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:40,147 INFO Out dated connection ,size=0 + +2025-09-24 09:02:40,147 INFO Connection check task end + +2025-09-24 09:02:41,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:43,147 INFO Connection check task start + +2025-09-24 09:02:43,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:43,147 INFO Out dated connection ,size=0 + +2025-09-24 09:02:43,147 INFO Connection check task end + +2025-09-24 09:02:44,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:46,148 INFO Connection check task start + +2025-09-24 09:02:46,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:46,148 INFO Out dated connection ,size=0 + +2025-09-24 09:02:46,148 INFO Connection check task end + +2025-09-24 09:02:47,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:49,148 INFO Connection check task start + +2025-09-24 09:02:49,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:49,148 INFO Out dated connection ,size=0 + +2025-09-24 09:02:49,149 INFO Connection check task end + +2025-09-24 09:02:50,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:52,150 INFO Connection check task start + +2025-09-24 09:02:52,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:52,150 INFO Out dated connection ,size=0 + +2025-09-24 09:02:52,151 INFO Connection check task end + +2025-09-24 09:02:53,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:55,152 INFO Connection check task start + +2025-09-24 09:02:55,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:55,152 INFO Out dated connection ,size=0 + +2025-09-24 09:02:55,152 INFO Connection check task end + +2025-09-24 09:02:56,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:02:58,153 INFO Connection check task start + +2025-09-24 09:02:58,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:02:58,153 INFO Out dated connection ,size=0 + +2025-09-24 09:02:58,153 INFO Connection check task end + +2025-09-24 09:02:59,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:01,154 INFO Connection check task start + +2025-09-24 09:03:01,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:01,154 INFO Out dated connection ,size=0 + +2025-09-24 09:03:01,154 INFO Connection check task end + +2025-09-24 09:03:02,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:04,155 INFO Connection check task start + +2025-09-24 09:03:04,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:04,156 INFO Out dated connection ,size=0 + +2025-09-24 09:03:04,156 INFO Connection check task end + +2025-09-24 09:03:05,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:07,156 INFO Connection check task start + +2025-09-24 09:03:07,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:07,156 INFO Out dated connection ,size=0 + +2025-09-24 09:03:07,156 INFO Connection check task end + +2025-09-24 09:03:08,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:10,158 INFO Connection check task start + +2025-09-24 09:03:10,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:10,158 INFO Out dated connection ,size=0 + +2025-09-24 09:03:10,158 INFO Connection check task end + +2025-09-24 09:03:11,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:13,159 INFO Connection check task start + +2025-09-24 09:03:13,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:13,159 INFO Out dated connection ,size=0 + +2025-09-24 09:03:13,159 INFO Connection check task end + +2025-09-24 09:03:14,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:16,159 INFO Connection check task start + +2025-09-24 09:03:16,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:16,159 INFO Out dated connection ,size=0 + +2025-09-24 09:03:16,159 INFO Connection check task end + +2025-09-24 09:03:17,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:19,161 INFO Connection check task start + +2025-09-24 09:03:19,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:19,162 INFO Out dated connection ,size=0 + +2025-09-24 09:03:19,162 INFO Connection check task end + +2025-09-24 09:03:20,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:22,163 INFO Connection check task start + +2025-09-24 09:03:22,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:22,164 INFO Out dated connection ,size=0 + +2025-09-24 09:03:22,164 INFO Connection check task end + +2025-09-24 09:03:23,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:25,164 INFO Connection check task start + +2025-09-24 09:03:25,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:25,165 INFO Out dated connection ,size=0 + +2025-09-24 09:03:25,165 INFO Connection check task end + +2025-09-24 09:03:26,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:28,165 INFO Connection check task start + +2025-09-24 09:03:28,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:28,166 INFO Out dated connection ,size=0 + +2025-09-24 09:03:28,166 INFO Connection check task end + +2025-09-24 09:03:29,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:31,167 INFO Connection check task start + +2025-09-24 09:03:31,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:31,167 INFO Out dated connection ,size=0 + +2025-09-24 09:03:31,167 INFO Connection check task end + +2025-09-24 09:03:32,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:34,168 INFO Connection check task start + +2025-09-24 09:03:34,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:34,168 INFO Out dated connection ,size=0 + +2025-09-24 09:03:34,168 INFO Connection check task end + +2025-09-24 09:03:35,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:37,170 INFO Connection check task start + +2025-09-24 09:03:37,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:37,170 INFO Out dated connection ,size=0 + +2025-09-24 09:03:37,171 INFO Connection check task end + +2025-09-24 09:03:38,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:40,171 INFO Connection check task start + +2025-09-24 09:03:40,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:40,171 INFO Out dated connection ,size=0 + +2025-09-24 09:03:40,171 INFO Connection check task end + +2025-09-24 09:03:41,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:43,173 INFO Connection check task start + +2025-09-24 09:03:43,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:43,174 INFO Out dated connection ,size=0 + +2025-09-24 09:03:43,174 INFO Connection check task end + +2025-09-24 09:03:44,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:46,174 INFO Connection check task start + +2025-09-24 09:03:46,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:46,174 INFO Out dated connection ,size=0 + +2025-09-24 09:03:46,174 INFO Connection check task end + +2025-09-24 09:03:47,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:49,177 INFO Connection check task start + +2025-09-24 09:03:49,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:49,177 INFO Out dated connection ,size=0 + +2025-09-24 09:03:49,177 INFO Connection check task end + +2025-09-24 09:03:50,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:52,178 INFO Connection check task start + +2025-09-24 09:03:52,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:52,178 INFO Out dated connection ,size=0 + +2025-09-24 09:03:52,178 INFO Connection check task end + +2025-09-24 09:03:53,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:55,178 INFO Connection check task start + +2025-09-24 09:03:55,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:55,179 INFO Out dated connection ,size=0 + +2025-09-24 09:03:55,179 INFO Connection check task end + +2025-09-24 09:03:56,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:03:58,180 INFO Connection check task start + +2025-09-24 09:03:58,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:03:58,180 INFO Out dated connection ,size=0 + +2025-09-24 09:03:58,180 INFO Connection check task end + +2025-09-24 09:03:59,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:01,180 INFO Connection check task start + +2025-09-24 09:04:01,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:01,180 INFO Out dated connection ,size=0 + +2025-09-24 09:04:01,181 INFO Connection check task end + +2025-09-24 09:04:02,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:04,183 INFO Connection check task start + +2025-09-24 09:04:04,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:04,183 INFO Out dated connection ,size=0 + +2025-09-24 09:04:04,183 INFO Connection check task end + +2025-09-24 09:04:05,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:07,185 INFO Connection check task start + +2025-09-24 09:04:07,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:07,185 INFO Out dated connection ,size=0 + +2025-09-24 09:04:07,186 INFO Connection check task end + +2025-09-24 09:04:08,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:10,188 INFO Connection check task start + +2025-09-24 09:04:10,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:10,188 INFO Out dated connection ,size=0 + +2025-09-24 09:04:10,188 INFO Connection check task end + +2025-09-24 09:04:11,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:13,188 INFO Connection check task start + +2025-09-24 09:04:13,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:13,188 INFO Out dated connection ,size=0 + +2025-09-24 09:04:13,188 INFO Connection check task end + +2025-09-24 09:04:14,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:16,189 INFO Connection check task start + +2025-09-24 09:04:16,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:16,189 INFO Out dated connection ,size=0 + +2025-09-24 09:04:16,189 INFO Connection check task end + +2025-09-24 09:04:17,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:19,189 INFO Connection check task start + +2025-09-24 09:04:19,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:19,189 INFO Out dated connection ,size=0 + +2025-09-24 09:04:19,189 INFO Connection check task end + +2025-09-24 09:04:20,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:22,190 INFO Connection check task start + +2025-09-24 09:04:22,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:22,190 INFO Out dated connection ,size=0 + +2025-09-24 09:04:22,190 INFO Connection check task end + +2025-09-24 09:04:23,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:25,191 INFO Connection check task start + +2025-09-24 09:04:25,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:25,191 INFO Out dated connection ,size=0 + +2025-09-24 09:04:25,191 INFO Connection check task end + +2025-09-24 09:04:26,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:28,191 INFO Connection check task start + +2025-09-24 09:04:28,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:28,191 INFO Out dated connection ,size=0 + +2025-09-24 09:04:28,191 INFO Connection check task end + +2025-09-24 09:04:29,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:31,193 INFO Connection check task start + +2025-09-24 09:04:31,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:31,193 INFO Out dated connection ,size=0 + +2025-09-24 09:04:31,193 INFO Connection check task end + +2025-09-24 09:04:32,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:34,193 INFO Connection check task start + +2025-09-24 09:04:34,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:34,194 INFO Out dated connection ,size=0 + +2025-09-24 09:04:34,194 INFO Connection check task end + +2025-09-24 09:04:35,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:37,194 INFO Connection check task start + +2025-09-24 09:04:37,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:37,195 INFO Out dated connection ,size=0 + +2025-09-24 09:04:37,195 INFO Connection check task end + +2025-09-24 09:04:38,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:40,197 INFO Connection check task start + +2025-09-24 09:04:40,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:40,197 INFO Out dated connection ,size=0 + +2025-09-24 09:04:40,197 INFO Connection check task end + +2025-09-24 09:04:41,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:43,198 INFO Connection check task start + +2025-09-24 09:04:43,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:43,198 INFO Out dated connection ,size=0 + +2025-09-24 09:04:43,198 INFO Connection check task end + +2025-09-24 09:04:44,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:46,200 INFO Connection check task start + +2025-09-24 09:04:46,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:46,200 INFO Out dated connection ,size=0 + +2025-09-24 09:04:46,200 INFO Connection check task end + +2025-09-24 09:04:47,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:49,201 INFO Connection check task start + +2025-09-24 09:04:49,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:49,201 INFO Out dated connection ,size=0 + +2025-09-24 09:04:49,201 INFO Connection check task end + +2025-09-24 09:04:50,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:52,202 INFO Connection check task start + +2025-09-24 09:04:52,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:52,202 INFO Out dated connection ,size=0 + +2025-09-24 09:04:52,202 INFO Connection check task end + +2025-09-24 09:04:53,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:55,203 INFO Connection check task start + +2025-09-24 09:04:55,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:55,203 INFO Out dated connection ,size=0 + +2025-09-24 09:04:55,203 INFO Connection check task end + +2025-09-24 09:04:56,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:04:58,205 INFO Connection check task start + +2025-09-24 09:04:58,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:04:58,205 INFO Out dated connection ,size=0 + +2025-09-24 09:04:58,205 INFO Connection check task end + +2025-09-24 09:04:59,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:01,206 INFO Connection check task start + +2025-09-24 09:05:01,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:01,206 INFO Out dated connection ,size=0 + +2025-09-24 09:05:01,206 INFO Connection check task end + +2025-09-24 09:05:02,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:04,206 INFO Connection check task start + +2025-09-24 09:05:04,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:04,207 INFO Out dated connection ,size=0 + +2025-09-24 09:05:04,207 INFO Connection check task end + +2025-09-24 09:05:05,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:07,207 INFO Connection check task start + +2025-09-24 09:05:07,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:07,207 INFO Out dated connection ,size=0 + +2025-09-24 09:05:07,208 INFO Connection check task end + +2025-09-24 09:05:08,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:10,210 INFO Connection check task start + +2025-09-24 09:05:10,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:10,210 INFO Out dated connection ,size=0 + +2025-09-24 09:05:10,210 INFO Connection check task end + +2025-09-24 09:05:11,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:13,210 INFO Connection check task start + +2025-09-24 09:05:13,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:13,210 INFO Out dated connection ,size=0 + +2025-09-24 09:05:13,210 INFO Connection check task end + +2025-09-24 09:05:14,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:16,211 INFO Connection check task start + +2025-09-24 09:05:16,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:16,211 INFO Out dated connection ,size=0 + +2025-09-24 09:05:16,211 INFO Connection check task end + +2025-09-24 09:05:17,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:19,211 INFO Connection check task start + +2025-09-24 09:05:19,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:19,212 INFO Out dated connection ,size=0 + +2025-09-24 09:05:19,212 INFO Connection check task end + +2025-09-24 09:05:20,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:22,212 INFO Connection check task start + +2025-09-24 09:05:22,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:22,212 INFO Out dated connection ,size=0 + +2025-09-24 09:05:22,212 INFO Connection check task end + +2025-09-24 09:05:23,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:25,213 INFO Connection check task start + +2025-09-24 09:05:25,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:25,213 INFO Out dated connection ,size=0 + +2025-09-24 09:05:25,213 INFO Connection check task end + +2025-09-24 09:05:26,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:28,215 INFO Connection check task start + +2025-09-24 09:05:28,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:28,215 INFO Out dated connection ,size=0 + +2025-09-24 09:05:28,215 INFO Connection check task end + +2025-09-24 09:05:29,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:31,217 INFO Connection check task start + +2025-09-24 09:05:31,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:31,217 INFO Out dated connection ,size=0 + +2025-09-24 09:05:31,217 INFO Connection check task end + +2025-09-24 09:05:32,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:34,217 INFO Connection check task start + +2025-09-24 09:05:34,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:34,217 INFO Out dated connection ,size=0 + +2025-09-24 09:05:34,217 INFO Connection check task end + +2025-09-24 09:05:35,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:37,219 INFO Connection check task start + +2025-09-24 09:05:37,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:37,219 INFO Out dated connection ,size=0 + +2025-09-24 09:05:37,219 INFO Connection check task end + +2025-09-24 09:05:38,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:40,220 INFO Connection check task start + +2025-09-24 09:05:40,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:40,220 INFO Out dated connection ,size=0 + +2025-09-24 09:05:40,220 INFO Connection check task end + +2025-09-24 09:05:41,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:43,221 INFO Connection check task start + +2025-09-24 09:05:43,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:43,221 INFO Out dated connection ,size=0 + +2025-09-24 09:05:43,221 INFO Connection check task end + +2025-09-24 09:05:44,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:46,222 INFO Connection check task start + +2025-09-24 09:05:46,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:46,222 INFO Out dated connection ,size=0 + +2025-09-24 09:05:46,222 INFO Connection check task end + +2025-09-24 09:05:47,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:49,224 INFO Connection check task start + +2025-09-24 09:05:49,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:49,224 INFO Out dated connection ,size=0 + +2025-09-24 09:05:49,224 INFO Connection check task end + +2025-09-24 09:05:50,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:52,224 INFO Connection check task start + +2025-09-24 09:05:52,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:52,224 INFO Out dated connection ,size=0 + +2025-09-24 09:05:52,224 INFO Connection check task end + +2025-09-24 09:05:53,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:55,226 INFO Connection check task start + +2025-09-24 09:05:55,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:55,226 INFO Out dated connection ,size=0 + +2025-09-24 09:05:55,226 INFO Connection check task end + +2025-09-24 09:05:56,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:05:58,227 INFO Connection check task start + +2025-09-24 09:05:58,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:05:58,227 INFO Out dated connection ,size=0 + +2025-09-24 09:05:58,227 INFO Connection check task end + +2025-09-24 09:05:59,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:01,227 INFO Connection check task start + +2025-09-24 09:06:01,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:01,227 INFO Out dated connection ,size=0 + +2025-09-24 09:06:01,227 INFO Connection check task end + +2025-09-24 09:06:02,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:04,228 INFO Connection check task start + +2025-09-24 09:06:04,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:04,228 INFO Out dated connection ,size=0 + +2025-09-24 09:06:04,228 INFO Connection check task end + +2025-09-24 09:06:05,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:07,229 INFO Connection check task start + +2025-09-24 09:06:07,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:07,230 INFO Out dated connection ,size=0 + +2025-09-24 09:06:07,230 INFO Connection check task end + +2025-09-24 09:06:08,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:10,231 INFO Connection check task start + +2025-09-24 09:06:10,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:10,231 INFO Out dated connection ,size=0 + +2025-09-24 09:06:10,231 INFO Connection check task end + +2025-09-24 09:06:11,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:13,232 INFO Connection check task start + +2025-09-24 09:06:13,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:13,232 INFO Out dated connection ,size=0 + +2025-09-24 09:06:13,232 INFO Connection check task end + +2025-09-24 09:06:14,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:16,233 INFO Connection check task start + +2025-09-24 09:06:16,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:16,233 INFO Out dated connection ,size=0 + +2025-09-24 09:06:16,233 INFO Connection check task end + +2025-09-24 09:06:17,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:19,234 INFO Connection check task start + +2025-09-24 09:06:19,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:19,234 INFO Out dated connection ,size=0 + +2025-09-24 09:06:19,234 INFO Connection check task end + +2025-09-24 09:06:20,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:22,236 INFO Connection check task start + +2025-09-24 09:06:22,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:22,237 INFO Out dated connection ,size=0 + +2025-09-24 09:06:22,237 INFO Connection check task end + +2025-09-24 09:06:23,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:25,237 INFO Connection check task start + +2025-09-24 09:06:25,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:25,238 INFO Out dated connection ,size=0 + +2025-09-24 09:06:25,238 INFO Connection check task end + +2025-09-24 09:06:26,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:28,238 INFO Connection check task start + +2025-09-24 09:06:28,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:28,238 INFO Out dated connection ,size=0 + +2025-09-24 09:06:28,238 INFO Connection check task end + +2025-09-24 09:06:29,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:31,239 INFO Connection check task start + +2025-09-24 09:06:31,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:31,239 INFO Out dated connection ,size=0 + +2025-09-24 09:06:31,239 INFO Connection check task end + +2025-09-24 09:06:32,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:34,240 INFO Connection check task start + +2025-09-24 09:06:34,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:34,241 INFO Out dated connection ,size=0 + +2025-09-24 09:06:34,241 INFO Connection check task end + +2025-09-24 09:06:35,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:37,243 INFO Connection check task start + +2025-09-24 09:06:37,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:37,243 INFO Out dated connection ,size=0 + +2025-09-24 09:06:37,243 INFO Connection check task end + +2025-09-24 09:06:38,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:40,244 INFO Connection check task start + +2025-09-24 09:06:40,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:40,244 INFO Out dated connection ,size=0 + +2025-09-24 09:06:40,244 INFO Connection check task end + +2025-09-24 09:06:41,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:43,244 INFO Connection check task start + +2025-09-24 09:06:43,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:43,244 INFO Out dated connection ,size=0 + +2025-09-24 09:06:43,244 INFO Connection check task end + +2025-09-24 09:06:44,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:46,245 INFO Connection check task start + +2025-09-24 09:06:46,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:46,245 INFO Out dated connection ,size=0 + +2025-09-24 09:06:46,245 INFO Connection check task end + +2025-09-24 09:06:47,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:49,246 INFO Connection check task start + +2025-09-24 09:06:49,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:49,246 INFO Out dated connection ,size=0 + +2025-09-24 09:06:49,246 INFO Connection check task end + +2025-09-24 09:06:50,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:52,247 INFO Connection check task start + +2025-09-24 09:06:52,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:52,247 INFO Out dated connection ,size=0 + +2025-09-24 09:06:52,247 INFO Connection check task end + +2025-09-24 09:06:53,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:55,248 INFO Connection check task start + +2025-09-24 09:06:55,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:55,248 INFO Out dated connection ,size=0 + +2025-09-24 09:06:55,248 INFO Connection check task end + +2025-09-24 09:06:56,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:06:58,250 INFO Connection check task start + +2025-09-24 09:06:58,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:06:58,250 INFO Out dated connection ,size=0 + +2025-09-24 09:06:58,250 INFO Connection check task end + +2025-09-24 09:06:59,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:01,251 INFO Connection check task start + +2025-09-24 09:07:01,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:01,251 INFO Out dated connection ,size=0 + +2025-09-24 09:07:01,251 INFO Connection check task end + +2025-09-24 09:07:02,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:04,252 INFO Connection check task start + +2025-09-24 09:07:04,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:04,252 INFO Out dated connection ,size=0 + +2025-09-24 09:07:04,252 INFO Connection check task end + +2025-09-24 09:07:05,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:07,255 INFO Connection check task start + +2025-09-24 09:07:07,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:07,255 INFO Out dated connection ,size=0 + +2025-09-24 09:07:07,255 INFO Connection check task end + +2025-09-24 09:07:08,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:10,256 INFO Connection check task start + +2025-09-24 09:07:10,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:10,256 INFO Out dated connection ,size=0 + +2025-09-24 09:07:10,256 INFO Connection check task end + +2025-09-24 09:07:11,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:13,257 INFO Connection check task start + +2025-09-24 09:07:13,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:13,257 INFO Out dated connection ,size=0 + +2025-09-24 09:07:13,257 INFO Connection check task end + +2025-09-24 09:07:14,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:16,258 INFO Connection check task start + +2025-09-24 09:07:16,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:16,258 INFO Out dated connection ,size=0 + +2025-09-24 09:07:16,258 INFO Connection check task end + +2025-09-24 09:07:17,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:19,260 INFO Connection check task start + +2025-09-24 09:07:19,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:19,260 INFO Out dated connection ,size=0 + +2025-09-24 09:07:19,260 INFO Connection check task end + +2025-09-24 09:07:20,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:22,260 INFO Connection check task start + +2025-09-24 09:07:22,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:22,261 INFO Out dated connection ,size=0 + +2025-09-24 09:07:22,261 INFO Connection check task end + +2025-09-24 09:07:23,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:25,262 INFO Connection check task start + +2025-09-24 09:07:25,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:25,262 INFO Out dated connection ,size=0 + +2025-09-24 09:07:25,263 INFO Connection check task end + +2025-09-24 09:07:26,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:28,263 INFO Connection check task start + +2025-09-24 09:07:28,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:28,263 INFO Out dated connection ,size=0 + +2025-09-24 09:07:28,263 INFO Connection check task end + +2025-09-24 09:07:29,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:31,264 INFO Connection check task start + +2025-09-24 09:07:31,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:31,264 INFO Out dated connection ,size=0 + +2025-09-24 09:07:31,264 INFO Connection check task end + +2025-09-24 09:07:32,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:34,264 INFO Connection check task start + +2025-09-24 09:07:34,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:34,265 INFO Out dated connection ,size=0 + +2025-09-24 09:07:34,265 INFO Connection check task end + +2025-09-24 09:07:35,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:37,266 INFO Connection check task start + +2025-09-24 09:07:37,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:37,266 INFO Out dated connection ,size=0 + +2025-09-24 09:07:37,266 INFO Connection check task end + +2025-09-24 09:07:38,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:40,267 INFO Connection check task start + +2025-09-24 09:07:40,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:40,268 INFO Out dated connection ,size=0 + +2025-09-24 09:07:40,268 INFO Connection check task end + +2025-09-24 09:07:41,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:43,268 INFO Connection check task start + +2025-09-24 09:07:43,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:43,268 INFO Out dated connection ,size=0 + +2025-09-24 09:07:43,268 INFO Connection check task end + +2025-09-24 09:07:44,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:46,269 INFO Connection check task start + +2025-09-24 09:07:46,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:46,269 INFO Out dated connection ,size=0 + +2025-09-24 09:07:46,269 INFO Connection check task end + +2025-09-24 09:07:47,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:49,269 INFO Connection check task start + +2025-09-24 09:07:49,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:49,270 INFO Out dated connection ,size=0 + +2025-09-24 09:07:49,270 INFO Connection check task end + +2025-09-24 09:07:50,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:52,270 INFO Connection check task start + +2025-09-24 09:07:52,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:52,270 INFO Out dated connection ,size=0 + +2025-09-24 09:07:52,270 INFO Connection check task end + +2025-09-24 09:07:53,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:55,271 INFO Connection check task start + +2025-09-24 09:07:55,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:55,271 INFO Out dated connection ,size=0 + +2025-09-24 09:07:55,271 INFO Connection check task end + +2025-09-24 09:07:56,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:07:58,271 INFO Connection check task start + +2025-09-24 09:07:58,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:07:58,271 INFO Out dated connection ,size=0 + +2025-09-24 09:07:58,271 INFO Connection check task end + +2025-09-24 09:07:59,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:01,271 INFO Connection check task start + +2025-09-24 09:08:01,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:01,272 INFO Out dated connection ,size=0 + +2025-09-24 09:08:01,272 INFO Connection check task end + +2025-09-24 09:08:02,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:04,272 INFO Connection check task start + +2025-09-24 09:08:04,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:04,272 INFO Out dated connection ,size=0 + +2025-09-24 09:08:04,272 INFO Connection check task end + +2025-09-24 09:08:05,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:07,274 INFO Connection check task start + +2025-09-24 09:08:07,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:07,274 INFO Out dated connection ,size=0 + +2025-09-24 09:08:07,274 INFO Connection check task end + +2025-09-24 09:08:08,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:10,276 INFO Connection check task start + +2025-09-24 09:08:10,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:10,277 INFO Out dated connection ,size=0 + +2025-09-24 09:08:10,277 INFO Connection check task end + +2025-09-24 09:08:11,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:13,277 INFO Connection check task start + +2025-09-24 09:08:13,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:13,277 INFO Out dated connection ,size=0 + +2025-09-24 09:08:13,277 INFO Connection check task end + +2025-09-24 09:08:14,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:16,277 INFO Connection check task start + +2025-09-24 09:08:16,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:16,277 INFO Out dated connection ,size=0 + +2025-09-24 09:08:16,278 INFO Connection check task end + +2025-09-24 09:08:17,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:19,278 INFO Connection check task start + +2025-09-24 09:08:19,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:19,278 INFO Out dated connection ,size=0 + +2025-09-24 09:08:19,278 INFO Connection check task end + +2025-09-24 09:08:20,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:22,279 INFO Connection check task start + +2025-09-24 09:08:22,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:22,279 INFO Out dated connection ,size=0 + +2025-09-24 09:08:22,279 INFO Connection check task end + +2025-09-24 09:08:23,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:25,280 INFO Connection check task start + +2025-09-24 09:08:25,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:25,280 INFO Out dated connection ,size=0 + +2025-09-24 09:08:25,281 INFO Connection check task end + +2025-09-24 09:08:26,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:28,281 INFO Connection check task start + +2025-09-24 09:08:28,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:28,281 INFO Out dated connection ,size=0 + +2025-09-24 09:08:28,281 INFO Connection check task end + +2025-09-24 09:08:29,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:31,282 INFO Connection check task start + +2025-09-24 09:08:31,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:31,282 INFO Out dated connection ,size=0 + +2025-09-24 09:08:31,282 INFO Connection check task end + +2025-09-24 09:08:32,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:34,282 INFO Connection check task start + +2025-09-24 09:08:34,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:34,282 INFO Out dated connection ,size=0 + +2025-09-24 09:08:34,282 INFO Connection check task end + +2025-09-24 09:08:35,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:37,285 INFO Connection check task start + +2025-09-24 09:08:37,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:37,285 INFO Out dated connection ,size=0 + +2025-09-24 09:08:37,285 INFO Connection check task end + +2025-09-24 09:08:38,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:40,285 INFO Connection check task start + +2025-09-24 09:08:40,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:40,285 INFO Out dated connection ,size=0 + +2025-09-24 09:08:40,285 INFO Connection check task end + +2025-09-24 09:08:41,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:43,287 INFO Connection check task start + +2025-09-24 09:08:43,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:43,287 INFO Out dated connection ,size=0 + +2025-09-24 09:08:43,287 INFO Connection check task end + +2025-09-24 09:08:44,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:46,289 INFO Connection check task start + +2025-09-24 09:08:46,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:46,289 INFO Out dated connection ,size=0 + +2025-09-24 09:08:46,289 INFO Connection check task end + +2025-09-24 09:08:47,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:49,291 INFO Connection check task start + +2025-09-24 09:08:49,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:49,291 INFO Out dated connection ,size=0 + +2025-09-24 09:08:49,291 INFO Connection check task end + +2025-09-24 09:08:50,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:52,291 INFO Connection check task start + +2025-09-24 09:08:52,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:52,291 INFO Out dated connection ,size=0 + +2025-09-24 09:08:52,292 INFO Connection check task end + +2025-09-24 09:08:53,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:55,293 INFO Connection check task start + +2025-09-24 09:08:55,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:55,293 INFO Out dated connection ,size=0 + +2025-09-24 09:08:55,293 INFO Connection check task end + +2025-09-24 09:08:56,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:08:58,296 INFO Connection check task start + +2025-09-24 09:08:58,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:08:58,296 INFO Out dated connection ,size=0 + +2025-09-24 09:08:58,296 INFO Connection check task end + +2025-09-24 09:08:59,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:01,296 INFO Connection check task start + +2025-09-24 09:09:01,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:01,296 INFO Out dated connection ,size=0 + +2025-09-24 09:09:01,296 INFO Connection check task end + +2025-09-24 09:09:02,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:04,297 INFO Connection check task start + +2025-09-24 09:09:04,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:04,297 INFO Out dated connection ,size=0 + +2025-09-24 09:09:04,297 INFO Connection check task end + +2025-09-24 09:09:05,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:07,297 INFO Connection check task start + +2025-09-24 09:09:07,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:07,297 INFO Out dated connection ,size=0 + +2025-09-24 09:09:07,298 INFO Connection check task end + +2025-09-24 09:09:08,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:10,300 INFO Connection check task start + +2025-09-24 09:09:10,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:10,300 INFO Out dated connection ,size=0 + +2025-09-24 09:09:10,300 INFO Connection check task end + +2025-09-24 09:09:11,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:13,300 INFO Connection check task start + +2025-09-24 09:09:13,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:13,301 INFO Out dated connection ,size=0 + +2025-09-24 09:09:13,301 INFO Connection check task end + +2025-09-24 09:09:14,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:16,302 INFO Connection check task start + +2025-09-24 09:09:16,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:16,303 INFO Out dated connection ,size=0 + +2025-09-24 09:09:16,303 INFO Connection check task end + +2025-09-24 09:09:17,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:19,304 INFO Connection check task start + +2025-09-24 09:09:19,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:19,305 INFO Out dated connection ,size=0 + +2025-09-24 09:09:19,305 INFO Connection check task end + +2025-09-24 09:09:20,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:22,305 INFO Connection check task start + +2025-09-24 09:09:22,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:22,306 INFO Out dated connection ,size=0 + +2025-09-24 09:09:22,306 INFO Connection check task end + +2025-09-24 09:09:23,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:25,306 INFO Connection check task start + +2025-09-24 09:09:25,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:25,307 INFO Out dated connection ,size=0 + +2025-09-24 09:09:25,307 INFO Connection check task end + +2025-09-24 09:09:26,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:28,309 INFO Connection check task start + +2025-09-24 09:09:28,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:28,309 INFO Out dated connection ,size=0 + +2025-09-24 09:09:28,309 INFO Connection check task end + +2025-09-24 09:09:29,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:31,311 INFO Connection check task start + +2025-09-24 09:09:31,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:31,311 INFO Out dated connection ,size=0 + +2025-09-24 09:09:31,311 INFO Connection check task end + +2025-09-24 09:09:32,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:34,312 INFO Connection check task start + +2025-09-24 09:09:34,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:34,312 INFO Out dated connection ,size=0 + +2025-09-24 09:09:34,312 INFO Connection check task end + +2025-09-24 09:09:35,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:37,312 INFO Connection check task start + +2025-09-24 09:09:37,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:37,313 INFO Out dated connection ,size=0 + +2025-09-24 09:09:37,313 INFO Connection check task end + +2025-09-24 09:09:38,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:40,313 INFO Connection check task start + +2025-09-24 09:09:40,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:40,313 INFO Out dated connection ,size=0 + +2025-09-24 09:09:40,313 INFO Connection check task end + +2025-09-24 09:09:41,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:43,314 INFO Connection check task start + +2025-09-24 09:09:43,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:43,314 INFO Out dated connection ,size=0 + +2025-09-24 09:09:43,314 INFO Connection check task end + +2025-09-24 09:09:44,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:46,314 INFO Connection check task start + +2025-09-24 09:09:46,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:46,314 INFO Out dated connection ,size=0 + +2025-09-24 09:09:46,314 INFO Connection check task end + +2025-09-24 09:09:47,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:49,315 INFO Connection check task start + +2025-09-24 09:09:49,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:49,315 INFO Out dated connection ,size=0 + +2025-09-24 09:09:49,315 INFO Connection check task end + +2025-09-24 09:09:50,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:52,316 INFO Connection check task start + +2025-09-24 09:09:52,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:52,316 INFO Out dated connection ,size=0 + +2025-09-24 09:09:52,316 INFO Connection check task end + +2025-09-24 09:09:53,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:55,318 INFO Connection check task start + +2025-09-24 09:09:55,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:55,318 INFO Out dated connection ,size=0 + +2025-09-24 09:09:55,318 INFO Connection check task end + +2025-09-24 09:09:56,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:09:58,320 INFO Connection check task start + +2025-09-24 09:09:58,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:09:58,320 INFO Out dated connection ,size=0 + +2025-09-24 09:09:58,320 INFO Connection check task end + +2025-09-24 09:09:59,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:01,321 INFO Connection check task start + +2025-09-24 09:10:01,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:01,321 INFO Out dated connection ,size=0 + +2025-09-24 09:10:01,321 INFO Connection check task end + +2025-09-24 09:10:02,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:04,321 INFO Connection check task start + +2025-09-24 09:10:04,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:04,321 INFO Out dated connection ,size=0 + +2025-09-24 09:10:04,322 INFO Connection check task end + +2025-09-24 09:10:05,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:07,324 INFO Connection check task start + +2025-09-24 09:10:07,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:07,324 INFO Out dated connection ,size=0 + +2025-09-24 09:10:07,324 INFO Connection check task end + +2025-09-24 09:10:08,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:10,326 INFO Connection check task start + +2025-09-24 09:10:10,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:10,326 INFO Out dated connection ,size=0 + +2025-09-24 09:10:10,326 INFO Connection check task end + +2025-09-24 09:10:11,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:13,327 INFO Connection check task start + +2025-09-24 09:10:13,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:13,327 INFO Out dated connection ,size=0 + +2025-09-24 09:10:13,327 INFO Connection check task end + +2025-09-24 09:10:14,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:16,329 INFO Connection check task start + +2025-09-24 09:10:16,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:16,329 INFO Out dated connection ,size=0 + +2025-09-24 09:10:16,329 INFO Connection check task end + +2025-09-24 09:10:17,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:19,331 INFO Connection check task start + +2025-09-24 09:10:19,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:19,332 INFO Out dated connection ,size=0 + +2025-09-24 09:10:19,332 INFO Connection check task end + +2025-09-24 09:10:20,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:22,334 INFO Connection check task start + +2025-09-24 09:10:22,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:22,335 INFO Out dated connection ,size=0 + +2025-09-24 09:10:22,335 INFO Connection check task end + +2025-09-24 09:10:23,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:25,337 INFO Connection check task start + +2025-09-24 09:10:25,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:25,337 INFO Out dated connection ,size=0 + +2025-09-24 09:10:25,337 INFO Connection check task end + +2025-09-24 09:10:26,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:28,338 INFO Connection check task start + +2025-09-24 09:10:28,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:28,338 INFO Out dated connection ,size=0 + +2025-09-24 09:10:28,338 INFO Connection check task end + +2025-09-24 09:10:29,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:31,339 INFO Connection check task start + +2025-09-24 09:10:31,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:31,339 INFO Out dated connection ,size=0 + +2025-09-24 09:10:31,339 INFO Connection check task end + +2025-09-24 09:10:32,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:34,341 INFO Connection check task start + +2025-09-24 09:10:34,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:34,342 INFO Out dated connection ,size=0 + +2025-09-24 09:10:34,342 INFO Connection check task end + +2025-09-24 09:10:35,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:37,342 INFO Connection check task start + +2025-09-24 09:10:37,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:37,343 INFO Out dated connection ,size=0 + +2025-09-24 09:10:37,343 INFO Connection check task end + +2025-09-24 09:10:38,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:40,343 INFO Connection check task start + +2025-09-24 09:10:40,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:40,344 INFO Out dated connection ,size=0 + +2025-09-24 09:10:40,344 INFO Connection check task end + +2025-09-24 09:10:41,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:43,345 INFO Connection check task start + +2025-09-24 09:10:43,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:43,345 INFO Out dated connection ,size=0 + +2025-09-24 09:10:43,346 INFO Connection check task end + +2025-09-24 09:10:44,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:46,346 INFO Connection check task start + +2025-09-24 09:10:46,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:46,346 INFO Out dated connection ,size=0 + +2025-09-24 09:10:46,346 INFO Connection check task end + +2025-09-24 09:10:47,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:49,347 INFO Connection check task start + +2025-09-24 09:10:49,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:49,347 INFO Out dated connection ,size=0 + +2025-09-24 09:10:49,347 INFO Connection check task end + +2025-09-24 09:10:50,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:52,348 INFO Connection check task start + +2025-09-24 09:10:52,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:52,348 INFO Out dated connection ,size=0 + +2025-09-24 09:10:52,348 INFO Connection check task end + +2025-09-24 09:10:53,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:55,349 INFO Connection check task start + +2025-09-24 09:10:55,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:55,349 INFO Out dated connection ,size=0 + +2025-09-24 09:10:55,349 INFO Connection check task end + +2025-09-24 09:10:56,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:10:58,350 INFO Connection check task start + +2025-09-24 09:10:58,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:10:58,350 INFO Out dated connection ,size=0 + +2025-09-24 09:10:58,350 INFO Connection check task end + +2025-09-24 09:10:59,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:01,352 INFO Connection check task start + +2025-09-24 09:11:01,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:01,352 INFO Out dated connection ,size=0 + +2025-09-24 09:11:01,352 INFO Connection check task end + +2025-09-24 09:11:02,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:04,352 INFO Connection check task start + +2025-09-24 09:11:04,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:04,353 INFO Out dated connection ,size=0 + +2025-09-24 09:11:04,353 INFO Connection check task end + +2025-09-24 09:11:05,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:07,354 INFO Connection check task start + +2025-09-24 09:11:07,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:07,354 INFO Out dated connection ,size=0 + +2025-09-24 09:11:07,354 INFO Connection check task end + +2025-09-24 09:11:08,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:10,355 INFO Connection check task start + +2025-09-24 09:11:10,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:10,355 INFO Out dated connection ,size=0 + +2025-09-24 09:11:10,355 INFO Connection check task end + +2025-09-24 09:11:11,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:13,355 INFO Connection check task start + +2025-09-24 09:11:13,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:13,356 INFO Out dated connection ,size=0 + +2025-09-24 09:11:13,356 INFO Connection check task end + +2025-09-24 09:11:14,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:16,357 INFO Connection check task start + +2025-09-24 09:11:16,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:16,357 INFO Out dated connection ,size=0 + +2025-09-24 09:11:16,357 INFO Connection check task end + +2025-09-24 09:11:17,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:19,357 INFO Connection check task start + +2025-09-24 09:11:19,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:19,358 INFO Out dated connection ,size=0 + +2025-09-24 09:11:19,358 INFO Connection check task end + +2025-09-24 09:11:20,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:22,358 INFO Connection check task start + +2025-09-24 09:11:22,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:22,359 INFO Out dated connection ,size=0 + +2025-09-24 09:11:22,359 INFO Connection check task end + +2025-09-24 09:11:23,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:25,360 INFO Connection check task start + +2025-09-24 09:11:25,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:25,360 INFO Out dated connection ,size=0 + +2025-09-24 09:11:25,360 INFO Connection check task end + +2025-09-24 09:11:26,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:28,360 INFO Connection check task start + +2025-09-24 09:11:28,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:28,360 INFO Out dated connection ,size=0 + +2025-09-24 09:11:28,360 INFO Connection check task end + +2025-09-24 09:11:29,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:31,361 INFO Connection check task start + +2025-09-24 09:11:31,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:31,361 INFO Out dated connection ,size=0 + +2025-09-24 09:11:31,361 INFO Connection check task end + +2025-09-24 09:11:32,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:34,362 INFO Connection check task start + +2025-09-24 09:11:34,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:34,363 INFO Out dated connection ,size=0 + +2025-09-24 09:11:34,363 INFO Connection check task end + +2025-09-24 09:11:35,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:37,365 INFO Connection check task start + +2025-09-24 09:11:37,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:37,365 INFO Out dated connection ,size=0 + +2025-09-24 09:11:37,365 INFO Connection check task end + +2025-09-24 09:11:38,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:40,366 INFO Connection check task start + +2025-09-24 09:11:40,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:40,366 INFO Out dated connection ,size=0 + +2025-09-24 09:11:40,366 INFO Connection check task end + +2025-09-24 09:11:41,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:43,368 INFO Connection check task start + +2025-09-24 09:11:43,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:43,369 INFO Out dated connection ,size=0 + +2025-09-24 09:11:43,369 INFO Connection check task end + +2025-09-24 09:11:44,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:46,370 INFO Connection check task start + +2025-09-24 09:11:46,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:46,370 INFO Out dated connection ,size=0 + +2025-09-24 09:11:46,370 INFO Connection check task end + +2025-09-24 09:11:47,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:49,371 INFO Connection check task start + +2025-09-24 09:11:49,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:49,371 INFO Out dated connection ,size=0 + +2025-09-24 09:11:49,371 INFO Connection check task end + +2025-09-24 09:11:50,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:52,371 INFO Connection check task start + +2025-09-24 09:11:52,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:52,372 INFO Out dated connection ,size=0 + +2025-09-24 09:11:52,372 INFO Connection check task end + +2025-09-24 09:11:53,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:55,374 INFO Connection check task start + +2025-09-24 09:11:55,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:55,374 INFO Out dated connection ,size=0 + +2025-09-24 09:11:55,374 INFO Connection check task end + +2025-09-24 09:11:56,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:11:58,374 INFO Connection check task start + +2025-09-24 09:11:58,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:11:58,375 INFO Out dated connection ,size=0 + +2025-09-24 09:11:58,375 INFO Connection check task end + +2025-09-24 09:11:59,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:01,377 INFO Connection check task start + +2025-09-24 09:12:01,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:01,377 INFO Out dated connection ,size=0 + +2025-09-24 09:12:01,377 INFO Connection check task end + +2025-09-24 09:12:02,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:04,378 INFO Connection check task start + +2025-09-24 09:12:04,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:04,378 INFO Out dated connection ,size=0 + +2025-09-24 09:12:04,378 INFO Connection check task end + +2025-09-24 09:12:05,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:07,380 INFO Connection check task start + +2025-09-24 09:12:07,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:07,381 INFO Out dated connection ,size=0 + +2025-09-24 09:12:07,381 INFO Connection check task end + +2025-09-24 09:12:08,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:10,381 INFO Connection check task start + +2025-09-24 09:12:10,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:10,382 INFO Out dated connection ,size=0 + +2025-09-24 09:12:10,382 INFO Connection check task end + +2025-09-24 09:12:11,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:13,382 INFO Connection check task start + +2025-09-24 09:12:13,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:13,382 INFO Out dated connection ,size=0 + +2025-09-24 09:12:13,382 INFO Connection check task end + +2025-09-24 09:12:14,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:16,383 INFO Connection check task start + +2025-09-24 09:12:16,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:16,383 INFO Out dated connection ,size=0 + +2025-09-24 09:12:16,383 INFO Connection check task end + +2025-09-24 09:12:17,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:19,383 INFO Connection check task start + +2025-09-24 09:12:19,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:19,383 INFO Out dated connection ,size=0 + +2025-09-24 09:12:19,383 INFO Connection check task end + +2025-09-24 09:12:20,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:22,384 INFO Connection check task start + +2025-09-24 09:12:22,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:22,385 INFO Out dated connection ,size=0 + +2025-09-24 09:12:22,385 INFO Connection check task end + +2025-09-24 09:12:23,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:25,385 INFO Connection check task start + +2025-09-24 09:12:25,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:25,385 INFO Out dated connection ,size=0 + +2025-09-24 09:12:25,385 INFO Connection check task end + +2025-09-24 09:12:26,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:28,386 INFO Connection check task start + +2025-09-24 09:12:28,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:28,386 INFO Out dated connection ,size=0 + +2025-09-24 09:12:28,386 INFO Connection check task end + +2025-09-24 09:12:29,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:31,386 INFO Connection check task start + +2025-09-24 09:12:31,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:31,387 INFO Out dated connection ,size=0 + +2025-09-24 09:12:31,387 INFO Connection check task end + +2025-09-24 09:12:32,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:34,387 INFO Connection check task start + +2025-09-24 09:12:34,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:34,387 INFO Out dated connection ,size=0 + +2025-09-24 09:12:34,387 INFO Connection check task end + +2025-09-24 09:12:35,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:37,389 INFO Connection check task start + +2025-09-24 09:12:37,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:37,389 INFO Out dated connection ,size=0 + +2025-09-24 09:12:37,390 INFO Connection check task end + +2025-09-24 09:12:38,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:40,391 INFO Connection check task start + +2025-09-24 09:12:40,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:40,391 INFO Out dated connection ,size=0 + +2025-09-24 09:12:40,391 INFO Connection check task end + +2025-09-24 09:12:41,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:43,392 INFO Connection check task start + +2025-09-24 09:12:43,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:43,392 INFO Out dated connection ,size=0 + +2025-09-24 09:12:43,392 INFO Connection check task end + +2025-09-24 09:12:44,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:46,392 INFO Connection check task start + +2025-09-24 09:12:46,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:46,393 INFO Out dated connection ,size=0 + +2025-09-24 09:12:46,393 INFO Connection check task end + +2025-09-24 09:12:47,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:49,393 INFO Connection check task start + +2025-09-24 09:12:49,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:49,393 INFO Out dated connection ,size=0 + +2025-09-24 09:12:49,393 INFO Connection check task end + +2025-09-24 09:12:50,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:52,394 INFO Connection check task start + +2025-09-24 09:12:52,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:52,394 INFO Out dated connection ,size=0 + +2025-09-24 09:12:52,394 INFO Connection check task end + +2025-09-24 09:12:53,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:55,394 INFO Connection check task start + +2025-09-24 09:12:55,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:55,395 INFO Out dated connection ,size=0 + +2025-09-24 09:12:55,395 INFO Connection check task end + +2025-09-24 09:12:56,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:12:58,395 INFO Connection check task start + +2025-09-24 09:12:58,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:12:58,395 INFO Out dated connection ,size=0 + +2025-09-24 09:12:58,395 INFO Connection check task end + +2025-09-24 09:12:59,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:01,397 INFO Connection check task start + +2025-09-24 09:13:01,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:01,397 INFO Out dated connection ,size=0 + +2025-09-24 09:13:01,397 INFO Connection check task end + +2025-09-24 09:13:02,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:04,399 INFO Connection check task start + +2025-09-24 09:13:04,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:04,400 INFO Out dated connection ,size=0 + +2025-09-24 09:13:04,400 INFO Connection check task end + +2025-09-24 09:13:05,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:07,400 INFO Connection check task start + +2025-09-24 09:13:07,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:07,400 INFO Out dated connection ,size=0 + +2025-09-24 09:13:07,400 INFO Connection check task end + +2025-09-24 09:13:08,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:10,402 INFO Connection check task start + +2025-09-24 09:13:10,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:10,402 INFO Out dated connection ,size=0 + +2025-09-24 09:13:10,402 INFO Connection check task end + +2025-09-24 09:13:11,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:13,403 INFO Connection check task start + +2025-09-24 09:13:13,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:13,403 INFO Out dated connection ,size=0 + +2025-09-24 09:13:13,403 INFO Connection check task end + +2025-09-24 09:13:14,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:16,404 INFO Connection check task start + +2025-09-24 09:13:16,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:16,404 INFO Out dated connection ,size=0 + +2025-09-24 09:13:16,404 INFO Connection check task end + +2025-09-24 09:13:17,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:19,405 INFO Connection check task start + +2025-09-24 09:13:19,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:19,405 INFO Out dated connection ,size=0 + +2025-09-24 09:13:19,405 INFO Connection check task end + +2025-09-24 09:13:20,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:22,406 INFO Connection check task start + +2025-09-24 09:13:22,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:22,406 INFO Out dated connection ,size=0 + +2025-09-24 09:13:22,407 INFO Connection check task end + +2025-09-24 09:13:23,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:25,408 INFO Connection check task start + +2025-09-24 09:13:25,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:25,409 INFO Out dated connection ,size=0 + +2025-09-24 09:13:25,409 INFO Connection check task end + +2025-09-24 09:13:26,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:28,411 INFO Connection check task start + +2025-09-24 09:13:28,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:28,411 INFO Out dated connection ,size=0 + +2025-09-24 09:13:28,411 INFO Connection check task end + +2025-09-24 09:13:29,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:31,412 INFO Connection check task start + +2025-09-24 09:13:31,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:31,412 INFO Out dated connection ,size=0 + +2025-09-24 09:13:31,412 INFO Connection check task end + +2025-09-24 09:13:32,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:34,412 INFO Connection check task start + +2025-09-24 09:13:34,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:34,412 INFO Out dated connection ,size=0 + +2025-09-24 09:13:34,412 INFO Connection check task end + +2025-09-24 09:13:35,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:37,413 INFO Connection check task start + +2025-09-24 09:13:37,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:37,413 INFO Out dated connection ,size=0 + +2025-09-24 09:13:37,413 INFO Connection check task end + +2025-09-24 09:13:38,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:40,414 INFO Connection check task start + +2025-09-24 09:13:40,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:40,414 INFO Out dated connection ,size=0 + +2025-09-24 09:13:40,414 INFO Connection check task end + +2025-09-24 09:13:41,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:43,416 INFO Connection check task start + +2025-09-24 09:13:43,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:43,416 INFO Out dated connection ,size=0 + +2025-09-24 09:13:43,416 INFO Connection check task end + +2025-09-24 09:13:44,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:46,417 INFO Connection check task start + +2025-09-24 09:13:46,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:46,417 INFO Out dated connection ,size=0 + +2025-09-24 09:13:46,417 INFO Connection check task end + +2025-09-24 09:13:47,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:49,419 INFO Connection check task start + +2025-09-24 09:13:49,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:49,420 INFO Out dated connection ,size=0 + +2025-09-24 09:13:49,420 INFO Connection check task end + +2025-09-24 09:13:50,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:52,420 INFO Connection check task start + +2025-09-24 09:13:52,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:52,420 INFO Out dated connection ,size=0 + +2025-09-24 09:13:52,420 INFO Connection check task end + +2025-09-24 09:13:53,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:55,422 INFO Connection check task start + +2025-09-24 09:13:55,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:55,422 INFO Out dated connection ,size=0 + +2025-09-24 09:13:55,422 INFO Connection check task end + +2025-09-24 09:13:56,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:13:58,422 INFO Connection check task start + +2025-09-24 09:13:58,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:13:58,422 INFO Out dated connection ,size=0 + +2025-09-24 09:13:58,422 INFO Connection check task end + +2025-09-24 09:13:59,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:01,423 INFO Connection check task start + +2025-09-24 09:14:01,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:01,423 INFO Out dated connection ,size=0 + +2025-09-24 09:14:01,423 INFO Connection check task end + +2025-09-24 09:14:03,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:04,423 INFO Connection check task start + +2025-09-24 09:14:04,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:04,423 INFO Out dated connection ,size=0 + +2025-09-24 09:14:04,423 INFO Connection check task end + +2025-09-24 09:14:06,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:07,425 INFO Connection check task start + +2025-09-24 09:14:07,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:07,426 INFO Out dated connection ,size=0 + +2025-09-24 09:14:07,426 INFO Connection check task end + +2025-09-24 09:14:09,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:10,426 INFO Connection check task start + +2025-09-24 09:14:10,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:10,427 INFO Out dated connection ,size=0 + +2025-09-24 09:14:10,427 INFO Connection check task end + +2025-09-24 09:14:12,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:13,427 INFO Connection check task start + +2025-09-24 09:14:13,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:13,427 INFO Out dated connection ,size=0 + +2025-09-24 09:14:13,427 INFO Connection check task end + +2025-09-24 09:14:15,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:16,429 INFO Connection check task start + +2025-09-24 09:14:16,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:16,429 INFO Out dated connection ,size=0 + +2025-09-24 09:14:16,429 INFO Connection check task end + +2025-09-24 09:14:18,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:19,430 INFO Connection check task start + +2025-09-24 09:14:19,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:19,430 INFO Out dated connection ,size=0 + +2025-09-24 09:14:19,430 INFO Connection check task end + +2025-09-24 09:14:21,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:22,430 INFO Connection check task start + +2025-09-24 09:14:22,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:22,430 INFO Out dated connection ,size=0 + +2025-09-24 09:14:22,430 INFO Connection check task end + +2025-09-24 09:14:24,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:25,432 INFO Connection check task start + +2025-09-24 09:14:25,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:25,433 INFO Out dated connection ,size=0 + +2025-09-24 09:14:25,433 INFO Connection check task end + +2025-09-24 09:14:27,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:28,433 INFO Connection check task start + +2025-09-24 09:14:28,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:28,433 INFO Out dated connection ,size=0 + +2025-09-24 09:14:28,433 INFO Connection check task end + +2025-09-24 09:14:30,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:31,434 INFO Connection check task start + +2025-09-24 09:14:31,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:31,434 INFO Out dated connection ,size=0 + +2025-09-24 09:14:31,434 INFO Connection check task end + +2025-09-24 09:14:33,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:34,435 INFO Connection check task start + +2025-09-24 09:14:34,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:34,435 INFO Out dated connection ,size=0 + +2025-09-24 09:14:34,435 INFO Connection check task end + +2025-09-24 09:14:36,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:37,436 INFO Connection check task start + +2025-09-24 09:14:37,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:37,436 INFO Out dated connection ,size=0 + +2025-09-24 09:14:37,436 INFO Connection check task end + +2025-09-24 09:14:39,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:40,437 INFO Connection check task start + +2025-09-24 09:14:40,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:40,437 INFO Out dated connection ,size=0 + +2025-09-24 09:14:40,437 INFO Connection check task end + +2025-09-24 09:14:42,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:43,439 INFO Connection check task start + +2025-09-24 09:14:43,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:43,440 INFO Out dated connection ,size=0 + +2025-09-24 09:14:43,440 INFO Connection check task end + +2025-09-24 09:14:45,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:46,440 INFO Connection check task start + +2025-09-24 09:14:46,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:46,440 INFO Out dated connection ,size=0 + +2025-09-24 09:14:46,440 INFO Connection check task end + +2025-09-24 09:14:48,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:49,442 INFO Connection check task start + +2025-09-24 09:14:49,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:49,442 INFO Out dated connection ,size=0 + +2025-09-24 09:14:49,442 INFO Connection check task end + +2025-09-24 09:14:51,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:52,442 INFO Connection check task start + +2025-09-24 09:14:52,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:52,443 INFO Out dated connection ,size=0 + +2025-09-24 09:14:52,443 INFO Connection check task end + +2025-09-24 09:14:54,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:55,445 INFO Connection check task start + +2025-09-24 09:14:55,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:55,445 INFO Out dated connection ,size=0 + +2025-09-24 09:14:55,445 INFO Connection check task end + +2025-09-24 09:14:57,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:14:58,447 INFO Connection check task start + +2025-09-24 09:14:58,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:14:58,447 INFO Out dated connection ,size=0 + +2025-09-24 09:14:58,447 INFO Connection check task end + +2025-09-24 09:15:00,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:01,448 INFO Connection check task start + +2025-09-24 09:15:01,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:01,448 INFO Out dated connection ,size=0 + +2025-09-24 09:15:01,448 INFO Connection check task end + +2025-09-24 09:15:03,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:04,449 INFO Connection check task start + +2025-09-24 09:15:04,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:04,449 INFO Out dated connection ,size=0 + +2025-09-24 09:15:04,449 INFO Connection check task end + +2025-09-24 09:15:06,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:07,450 INFO Connection check task start + +2025-09-24 09:15:07,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:07,450 INFO Out dated connection ,size=0 + +2025-09-24 09:15:07,450 INFO Connection check task end + +2025-09-24 09:15:09,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:10,452 INFO Connection check task start + +2025-09-24 09:15:10,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:10,452 INFO Out dated connection ,size=0 + +2025-09-24 09:15:10,452 INFO Connection check task end + +2025-09-24 09:15:12,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:13,453 INFO Connection check task start + +2025-09-24 09:15:13,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:13,453 INFO Out dated connection ,size=0 + +2025-09-24 09:15:13,453 INFO Connection check task end + +2025-09-24 09:15:15,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:16,454 INFO Connection check task start + +2025-09-24 09:15:16,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:16,454 INFO Out dated connection ,size=0 + +2025-09-24 09:15:16,454 INFO Connection check task end + +2025-09-24 09:15:18,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:19,455 INFO Connection check task start + +2025-09-24 09:15:19,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:19,499 INFO Out dated connection ,size=0 + +2025-09-24 09:15:19,499 INFO Connection check task end + +2025-09-24 09:15:21,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:22,501 INFO Connection check task start + +2025-09-24 09:15:22,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:22,501 INFO Out dated connection ,size=0 + +2025-09-24 09:15:22,501 INFO Connection check task end + +2025-09-24 09:15:24,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:25,501 INFO Connection check task start + +2025-09-24 09:15:25,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:25,502 INFO Out dated connection ,size=0 + +2025-09-24 09:15:25,502 INFO Connection check task end + +2025-09-24 09:15:27,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:28,502 INFO Connection check task start + +2025-09-24 09:15:28,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:28,502 INFO Out dated connection ,size=0 + +2025-09-24 09:15:28,502 INFO Connection check task end + +2025-09-24 09:15:30,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:31,502 INFO Connection check task start + +2025-09-24 09:15:31,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:31,502 INFO Out dated connection ,size=0 + +2025-09-24 09:15:31,502 INFO Connection check task end + +2025-09-24 09:15:33,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:34,503 INFO Connection check task start + +2025-09-24 09:15:34,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:34,503 INFO Out dated connection ,size=0 + +2025-09-24 09:15:34,503 INFO Connection check task end + +2025-09-24 09:15:36,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:37,503 INFO Connection check task start + +2025-09-24 09:15:37,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:37,503 INFO Out dated connection ,size=0 + +2025-09-24 09:15:37,504 INFO Connection check task end + +2025-09-24 09:15:39,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:40,504 INFO Connection check task start + +2025-09-24 09:15:40,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:40,504 INFO Out dated connection ,size=0 + +2025-09-24 09:15:40,504 INFO Connection check task end + +2025-09-24 09:15:42,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:43,506 INFO Connection check task start + +2025-09-24 09:15:43,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:43,506 INFO Out dated connection ,size=0 + +2025-09-24 09:15:43,506 INFO Connection check task end + +2025-09-24 09:15:45,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:46,506 INFO Connection check task start + +2025-09-24 09:15:46,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:46,507 INFO Out dated connection ,size=0 + +2025-09-24 09:15:46,507 INFO Connection check task end + +2025-09-24 09:15:48,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:49,509 INFO Connection check task start + +2025-09-24 09:15:49,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:49,509 INFO Out dated connection ,size=0 + +2025-09-24 09:15:49,509 INFO Connection check task end + +2025-09-24 09:15:51,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:52,509 INFO Connection check task start + +2025-09-24 09:15:52,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:52,509 INFO Out dated connection ,size=0 + +2025-09-24 09:15:52,509 INFO Connection check task end + +2025-09-24 09:15:54,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:55,510 INFO Connection check task start + +2025-09-24 09:15:55,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:55,510 INFO Out dated connection ,size=0 + +2025-09-24 09:15:55,510 INFO Connection check task end + +2025-09-24 09:15:57,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:15:58,510 INFO Connection check task start + +2025-09-24 09:15:58,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:15:58,510 INFO Out dated connection ,size=0 + +2025-09-24 09:15:58,510 INFO Connection check task end + +2025-09-24 09:16:00,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:01,512 INFO Connection check task start + +2025-09-24 09:16:01,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:01,512 INFO Out dated connection ,size=0 + +2025-09-24 09:16:01,512 INFO Connection check task end + +2025-09-24 09:16:03,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:04,513 INFO Connection check task start + +2025-09-24 09:16:04,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:04,513 INFO Out dated connection ,size=0 + +2025-09-24 09:16:04,513 INFO Connection check task end + +2025-09-24 09:16:06,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:07,513 INFO Connection check task start + +2025-09-24 09:16:07,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:07,513 INFO Out dated connection ,size=0 + +2025-09-24 09:16:07,513 INFO Connection check task end + +2025-09-24 09:16:09,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:10,514 INFO Connection check task start + +2025-09-24 09:16:10,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:10,514 INFO Out dated connection ,size=0 + +2025-09-24 09:16:10,514 INFO Connection check task end + +2025-09-24 09:16:12,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:13,515 INFO Connection check task start + +2025-09-24 09:16:13,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:13,515 INFO Out dated connection ,size=0 + +2025-09-24 09:16:13,515 INFO Connection check task end + +2025-09-24 09:16:15,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:16,515 INFO Connection check task start + +2025-09-24 09:16:16,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:16,516 INFO Out dated connection ,size=0 + +2025-09-24 09:16:16,516 INFO Connection check task end + +2025-09-24 09:16:18,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:19,516 INFO Connection check task start + +2025-09-24 09:16:19,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:19,516 INFO Out dated connection ,size=0 + +2025-09-24 09:16:19,516 INFO Connection check task end + +2025-09-24 09:16:21,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:22,516 INFO Connection check task start + +2025-09-24 09:16:22,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:22,517 INFO Out dated connection ,size=0 + +2025-09-24 09:16:22,517 INFO Connection check task end + +2025-09-24 09:16:24,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:25,517 INFO Connection check task start + +2025-09-24 09:16:25,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:25,518 INFO Out dated connection ,size=0 + +2025-09-24 09:16:25,518 INFO Connection check task end + +2025-09-24 09:16:27,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:28,518 INFO Connection check task start + +2025-09-24 09:16:28,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:28,518 INFO Out dated connection ,size=0 + +2025-09-24 09:16:28,518 INFO Connection check task end + +2025-09-24 09:16:30,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:31,518 INFO Connection check task start + +2025-09-24 09:16:31,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:31,518 INFO Out dated connection ,size=0 + +2025-09-24 09:16:31,518 INFO Connection check task end + +2025-09-24 09:16:33,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:34,520 INFO Connection check task start + +2025-09-24 09:16:34,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:34,521 INFO Out dated connection ,size=0 + +2025-09-24 09:16:34,521 INFO Connection check task end + +2025-09-24 09:16:36,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:37,521 INFO Connection check task start + +2025-09-24 09:16:37,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:37,521 INFO Out dated connection ,size=0 + +2025-09-24 09:16:37,521 INFO Connection check task end + +2025-09-24 09:16:39,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:40,522 INFO Connection check task start + +2025-09-24 09:16:40,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:40,523 INFO Out dated connection ,size=0 + +2025-09-24 09:16:40,523 INFO Connection check task end + +2025-09-24 09:16:42,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:43,523 INFO Connection check task start + +2025-09-24 09:16:43,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:43,523 INFO Out dated connection ,size=0 + +2025-09-24 09:16:43,523 INFO Connection check task end + +2025-09-24 09:16:45,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:46,523 INFO Connection check task start + +2025-09-24 09:16:46,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:46,524 INFO Out dated connection ,size=0 + +2025-09-24 09:16:46,524 INFO Connection check task end + +2025-09-24 09:16:48,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:49,524 INFO Connection check task start + +2025-09-24 09:16:49,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:49,524 INFO Out dated connection ,size=0 + +2025-09-24 09:16:49,524 INFO Connection check task end + +2025-09-24 09:16:51,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:52,524 INFO Connection check task start + +2025-09-24 09:16:52,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:52,524 INFO Out dated connection ,size=0 + +2025-09-24 09:16:52,524 INFO Connection check task end + +2025-09-24 09:16:54,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:55,525 INFO Connection check task start + +2025-09-24 09:16:55,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:55,525 INFO Out dated connection ,size=0 + +2025-09-24 09:16:55,525 INFO Connection check task end + +2025-09-24 09:16:57,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:16:58,525 INFO Connection check task start + +2025-09-24 09:16:58,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:16:58,525 INFO Out dated connection ,size=0 + +2025-09-24 09:16:58,525 INFO Connection check task end + +2025-09-24 09:17:00,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:01,527 INFO Connection check task start + +2025-09-24 09:17:01,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:01,527 INFO Out dated connection ,size=0 + +2025-09-24 09:17:01,527 INFO Connection check task end + +2025-09-24 09:17:03,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:04,528 INFO Connection check task start + +2025-09-24 09:17:04,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:04,528 INFO Out dated connection ,size=0 + +2025-09-24 09:17:04,528 INFO Connection check task end + +2025-09-24 09:17:06,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:07,529 INFO Connection check task start + +2025-09-24 09:17:07,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:07,529 INFO Out dated connection ,size=0 + +2025-09-24 09:17:07,529 INFO Connection check task end + +2025-09-24 09:17:09,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:10,529 INFO Connection check task start + +2025-09-24 09:17:10,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:10,529 INFO Out dated connection ,size=0 + +2025-09-24 09:17:10,529 INFO Connection check task end + +2025-09-24 09:17:12,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:13,530 INFO Connection check task start + +2025-09-24 09:17:13,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:13,530 INFO Out dated connection ,size=0 + +2025-09-24 09:17:13,530 INFO Connection check task end + +2025-09-24 09:17:15,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:16,530 INFO Connection check task start + +2025-09-24 09:17:16,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:16,530 INFO Out dated connection ,size=0 + +2025-09-24 09:17:16,530 INFO Connection check task end + +2025-09-24 09:17:18,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:19,531 INFO Connection check task start + +2025-09-24 09:17:19,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:19,531 INFO Out dated connection ,size=0 + +2025-09-24 09:17:19,531 INFO Connection check task end + +2025-09-24 09:17:21,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:22,531 INFO Connection check task start + +2025-09-24 09:17:22,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:22,531 INFO Out dated connection ,size=0 + +2025-09-24 09:17:22,531 INFO Connection check task end + +2025-09-24 09:17:24,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:25,532 INFO Connection check task start + +2025-09-24 09:17:25,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:25,532 INFO Out dated connection ,size=0 + +2025-09-24 09:17:25,532 INFO Connection check task end + +2025-09-24 09:17:27,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:28,534 INFO Connection check task start + +2025-09-24 09:17:28,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:28,534 INFO Out dated connection ,size=0 + +2025-09-24 09:17:28,534 INFO Connection check task end + +2025-09-24 09:17:30,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:31,534 INFO Connection check task start + +2025-09-24 09:17:31,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:31,534 INFO Out dated connection ,size=0 + +2025-09-24 09:17:31,534 INFO Connection check task end + +2025-09-24 09:17:33,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:34,535 INFO Connection check task start + +2025-09-24 09:17:34,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:34,535 INFO Out dated connection ,size=0 + +2025-09-24 09:17:34,535 INFO Connection check task end + +2025-09-24 09:17:36,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:37,535 INFO Connection check task start + +2025-09-24 09:17:37,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:37,535 INFO Out dated connection ,size=0 + +2025-09-24 09:17:37,535 INFO Connection check task end + +2025-09-24 09:17:39,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:40,536 INFO Connection check task start + +2025-09-24 09:17:40,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:40,536 INFO Out dated connection ,size=0 + +2025-09-24 09:17:40,536 INFO Connection check task end + +2025-09-24 09:17:42,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:43,537 INFO Connection check task start + +2025-09-24 09:17:43,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:43,537 INFO Out dated connection ,size=0 + +2025-09-24 09:17:43,537 INFO Connection check task end + +2025-09-24 09:17:45,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:46,539 INFO Connection check task start + +2025-09-24 09:17:46,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:46,539 INFO Out dated connection ,size=0 + +2025-09-24 09:17:46,539 INFO Connection check task end + +2025-09-24 09:17:48,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:49,539 INFO Connection check task start + +2025-09-24 09:17:49,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:49,539 INFO Out dated connection ,size=0 + +2025-09-24 09:17:49,540 INFO Connection check task end + +2025-09-24 09:17:51,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:52,540 INFO Connection check task start + +2025-09-24 09:17:52,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:52,540 INFO Out dated connection ,size=0 + +2025-09-24 09:17:52,540 INFO Connection check task end + +2025-09-24 09:17:54,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:55,542 INFO Connection check task start + +2025-09-24 09:17:55,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:55,542 INFO Out dated connection ,size=0 + +2025-09-24 09:17:55,542 INFO Connection check task end + +2025-09-24 09:17:57,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:17:58,542 INFO Connection check task start + +2025-09-24 09:17:58,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:17:58,542 INFO Out dated connection ,size=0 + +2025-09-24 09:17:58,542 INFO Connection check task end + +2025-09-24 09:18:00,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:01,544 INFO Connection check task start + +2025-09-24 09:18:01,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:01,544 INFO Out dated connection ,size=0 + +2025-09-24 09:18:01,544 INFO Connection check task end + +2025-09-24 09:18:03,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:04,545 INFO Connection check task start + +2025-09-24 09:18:04,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:04,545 INFO Out dated connection ,size=0 + +2025-09-24 09:18:04,545 INFO Connection check task end + +2025-09-24 09:18:06,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:07,546 INFO Connection check task start + +2025-09-24 09:18:07,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:07,546 INFO Out dated connection ,size=0 + +2025-09-24 09:18:07,546 INFO Connection check task end + +2025-09-24 09:18:09,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:10,546 INFO Connection check task start + +2025-09-24 09:18:10,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:10,546 INFO Out dated connection ,size=0 + +2025-09-24 09:18:10,546 INFO Connection check task end + +2025-09-24 09:18:12,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:13,547 INFO Connection check task start + +2025-09-24 09:18:13,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:13,547 INFO Out dated connection ,size=0 + +2025-09-24 09:18:13,547 INFO Connection check task end + +2025-09-24 09:18:15,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:16,549 INFO Connection check task start + +2025-09-24 09:18:16,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:16,550 INFO Out dated connection ,size=0 + +2025-09-24 09:18:16,550 INFO Connection check task end + +2025-09-24 09:18:18,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:19,551 INFO Connection check task start + +2025-09-24 09:18:19,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:19,551 INFO Out dated connection ,size=0 + +2025-09-24 09:18:19,551 INFO Connection check task end + +2025-09-24 09:18:21,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:22,553 INFO Connection check task start + +2025-09-24 09:18:22,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:22,553 INFO Out dated connection ,size=0 + +2025-09-24 09:18:22,553 INFO Connection check task end + +2025-09-24 09:18:24,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:25,553 INFO Connection check task start + +2025-09-24 09:18:25,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:25,553 INFO Out dated connection ,size=0 + +2025-09-24 09:18:25,554 INFO Connection check task end + +2025-09-24 09:18:27,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:28,554 INFO Connection check task start + +2025-09-24 09:18:28,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:28,554 INFO Out dated connection ,size=0 + +2025-09-24 09:18:28,554 INFO Connection check task end + +2025-09-24 09:18:30,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:31,556 INFO Connection check task start + +2025-09-24 09:18:31,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:31,556 INFO Out dated connection ,size=0 + +2025-09-24 09:18:31,556 INFO Connection check task end + +2025-09-24 09:18:33,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:34,558 INFO Connection check task start + +2025-09-24 09:18:34,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:34,558 INFO Out dated connection ,size=0 + +2025-09-24 09:18:34,559 INFO Connection check task end + +2025-09-24 09:18:36,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:37,559 INFO Connection check task start + +2025-09-24 09:18:37,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:37,559 INFO Out dated connection ,size=0 + +2025-09-24 09:18:37,559 INFO Connection check task end + +2025-09-24 09:18:39,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:40,559 INFO Connection check task start + +2025-09-24 09:18:40,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:40,560 INFO Out dated connection ,size=0 + +2025-09-24 09:18:40,560 INFO Connection check task end + +2025-09-24 09:18:42,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:43,560 INFO Connection check task start + +2025-09-24 09:18:43,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:43,560 INFO Out dated connection ,size=0 + +2025-09-24 09:18:43,560 INFO Connection check task end + +2025-09-24 09:18:45,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:46,562 INFO Connection check task start + +2025-09-24 09:18:46,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:46,562 INFO Out dated connection ,size=0 + +2025-09-24 09:18:46,562 INFO Connection check task end + +2025-09-24 09:18:48,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:49,564 INFO Connection check task start + +2025-09-24 09:18:49,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:49,565 INFO Out dated connection ,size=0 + +2025-09-24 09:18:49,565 INFO Connection check task end + +2025-09-24 09:18:51,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:52,566 INFO Connection check task start + +2025-09-24 09:18:52,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:52,566 INFO Out dated connection ,size=0 + +2025-09-24 09:18:52,567 INFO Connection check task end + +2025-09-24 09:18:54,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:55,568 INFO Connection check task start + +2025-09-24 09:18:55,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:55,568 INFO Out dated connection ,size=0 + +2025-09-24 09:18:55,568 INFO Connection check task end + +2025-09-24 09:18:57,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:18:58,568 INFO Connection check task start + +2025-09-24 09:18:58,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:18:58,568 INFO Out dated connection ,size=0 + +2025-09-24 09:18:58,568 INFO Connection check task end + +2025-09-24 09:19:00,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:01,569 INFO Connection check task start + +2025-09-24 09:19:01,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:01,569 INFO Out dated connection ,size=0 + +2025-09-24 09:19:01,569 INFO Connection check task end + +2025-09-24 09:19:03,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:04,571 INFO Connection check task start + +2025-09-24 09:19:04,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:04,571 INFO Out dated connection ,size=0 + +2025-09-24 09:19:04,571 INFO Connection check task end + +2025-09-24 09:19:06,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:07,573 INFO Connection check task start + +2025-09-24 09:19:07,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:07,573 INFO Out dated connection ,size=0 + +2025-09-24 09:19:07,573 INFO Connection check task end + +2025-09-24 09:19:09,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:10,573 INFO Connection check task start + +2025-09-24 09:19:10,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:10,573 INFO Out dated connection ,size=0 + +2025-09-24 09:19:10,573 INFO Connection check task end + +2025-09-24 09:19:12,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:13,573 INFO Connection check task start + +2025-09-24 09:19:13,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:13,573 INFO Out dated connection ,size=0 + +2025-09-24 09:19:13,573 INFO Connection check task end + +2025-09-24 09:19:15,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:16,574 INFO Connection check task start + +2025-09-24 09:19:16,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:16,574 INFO Out dated connection ,size=0 + +2025-09-24 09:19:16,574 INFO Connection check task end + +2025-09-24 09:19:18,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:19,575 INFO Connection check task start + +2025-09-24 09:19:19,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:19,575 INFO Out dated connection ,size=0 + +2025-09-24 09:19:19,575 INFO Connection check task end + +2025-09-24 09:19:21,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:22,575 INFO Connection check task start + +2025-09-24 09:19:22,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:22,575 INFO Out dated connection ,size=0 + +2025-09-24 09:19:22,576 INFO Connection check task end + +2025-09-24 09:19:24,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:25,578 INFO Connection check task start + +2025-09-24 09:19:25,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:25,578 INFO Out dated connection ,size=0 + +2025-09-24 09:19:25,578 INFO Connection check task end + +2025-09-24 09:19:27,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:28,579 INFO Connection check task start + +2025-09-24 09:19:28,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:28,579 INFO Out dated connection ,size=0 + +2025-09-24 09:19:28,579 INFO Connection check task end + +2025-09-24 09:19:30,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:31,579 INFO Connection check task start + +2025-09-24 09:19:31,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:31,579 INFO Out dated connection ,size=0 + +2025-09-24 09:19:31,579 INFO Connection check task end + +2025-09-24 09:19:33,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:34,582 INFO Connection check task start + +2025-09-24 09:19:34,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:34,582 INFO Out dated connection ,size=0 + +2025-09-24 09:19:34,582 INFO Connection check task end + +2025-09-24 09:19:36,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:37,584 INFO Connection check task start + +2025-09-24 09:19:37,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:37,584 INFO Out dated connection ,size=0 + +2025-09-24 09:19:37,584 INFO Connection check task end + +2025-09-24 09:19:39,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:40,585 INFO Connection check task start + +2025-09-24 09:19:40,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:40,585 INFO Out dated connection ,size=0 + +2025-09-24 09:19:40,585 INFO Connection check task end + +2025-09-24 09:19:42,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:43,587 INFO Connection check task start + +2025-09-24 09:19:43,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:43,587 INFO Out dated connection ,size=0 + +2025-09-24 09:19:43,587 INFO Connection check task end + +2025-09-24 09:19:45,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:46,588 INFO Connection check task start + +2025-09-24 09:19:46,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:46,588 INFO Out dated connection ,size=0 + +2025-09-24 09:19:46,588 INFO Connection check task end + +2025-09-24 09:19:48,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:49,589 INFO Connection check task start + +2025-09-24 09:19:49,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:49,589 INFO Out dated connection ,size=0 + +2025-09-24 09:19:49,589 INFO Connection check task end + +2025-09-24 09:19:51,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:52,590 INFO Connection check task start + +2025-09-24 09:19:52,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:52,590 INFO Out dated connection ,size=0 + +2025-09-24 09:19:52,590 INFO Connection check task end + +2025-09-24 09:19:54,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:55,590 INFO Connection check task start + +2025-09-24 09:19:55,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:55,590 INFO Out dated connection ,size=0 + +2025-09-24 09:19:55,590 INFO Connection check task end + +2025-09-24 09:19:57,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:19:58,591 INFO Connection check task start + +2025-09-24 09:19:58,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:19:58,591 INFO Out dated connection ,size=0 + +2025-09-24 09:19:58,591 INFO Connection check task end + +2025-09-24 09:20:00,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:01,591 INFO Connection check task start + +2025-09-24 09:20:01,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:01,591 INFO Out dated connection ,size=0 + +2025-09-24 09:20:01,591 INFO Connection check task end + +2025-09-24 09:20:03,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:04,592 INFO Connection check task start + +2025-09-24 09:20:04,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:04,593 INFO Out dated connection ,size=0 + +2025-09-24 09:20:04,593 INFO Connection check task end + +2025-09-24 09:20:06,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:07,595 INFO Connection check task start + +2025-09-24 09:20:07,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:07,595 INFO Out dated connection ,size=0 + +2025-09-24 09:20:07,595 INFO Connection check task end + +2025-09-24 09:20:09,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:10,595 INFO Connection check task start + +2025-09-24 09:20:10,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:10,595 INFO Out dated connection ,size=0 + +2025-09-24 09:20:10,595 INFO Connection check task end + +2025-09-24 09:20:12,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:13,597 INFO Connection check task start + +2025-09-24 09:20:13,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:13,598 INFO Out dated connection ,size=0 + +2025-09-24 09:20:13,598 INFO Connection check task end + +2025-09-24 09:20:15,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:16,599 INFO Connection check task start + +2025-09-24 09:20:16,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:16,599 INFO Out dated connection ,size=0 + +2025-09-24 09:20:16,599 INFO Connection check task end + +2025-09-24 09:20:18,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:19,599 INFO Connection check task start + +2025-09-24 09:20:19,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:19,600 INFO Out dated connection ,size=0 + +2025-09-24 09:20:19,600 INFO Connection check task end + +2025-09-24 09:20:21,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:22,600 INFO Connection check task start + +2025-09-24 09:20:22,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:22,601 INFO Out dated connection ,size=0 + +2025-09-24 09:20:22,601 INFO Connection check task end + +2025-09-24 09:20:24,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:25,602 INFO Connection check task start + +2025-09-24 09:20:25,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:25,602 INFO Out dated connection ,size=0 + +2025-09-24 09:20:25,602 INFO Connection check task end + +2025-09-24 09:20:27,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:28,604 INFO Connection check task start + +2025-09-24 09:20:28,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:28,604 INFO Out dated connection ,size=0 + +2025-09-24 09:20:28,604 INFO Connection check task end + +2025-09-24 09:20:30,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:31,606 INFO Connection check task start + +2025-09-24 09:20:31,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:31,606 INFO Out dated connection ,size=0 + +2025-09-24 09:20:31,606 INFO Connection check task end + +2025-09-24 09:20:33,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:34,607 INFO Connection check task start + +2025-09-24 09:20:34,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:34,607 INFO Out dated connection ,size=0 + +2025-09-24 09:20:34,607 INFO Connection check task end + +2025-09-24 09:20:36,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:37,608 INFO Connection check task start + +2025-09-24 09:20:37,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:37,608 INFO Out dated connection ,size=0 + +2025-09-24 09:20:37,608 INFO Connection check task end + +2025-09-24 09:20:39,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:40,609 INFO Connection check task start + +2025-09-24 09:20:40,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:40,609 INFO Out dated connection ,size=0 + +2025-09-24 09:20:40,609 INFO Connection check task end + +2025-09-24 09:20:42,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:43,610 INFO Connection check task start + +2025-09-24 09:20:43,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:43,610 INFO Out dated connection ,size=0 + +2025-09-24 09:20:43,610 INFO Connection check task end + +2025-09-24 09:20:45,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:46,613 INFO Connection check task start + +2025-09-24 09:20:46,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:46,613 INFO Out dated connection ,size=0 + +2025-09-24 09:20:46,613 INFO Connection check task end + +2025-09-24 09:20:48,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:49,613 INFO Connection check task start + +2025-09-24 09:20:49,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:49,613 INFO Out dated connection ,size=0 + +2025-09-24 09:20:49,613 INFO Connection check task end + +2025-09-24 09:20:51,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:52,614 INFO Connection check task start + +2025-09-24 09:20:52,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:52,614 INFO Out dated connection ,size=0 + +2025-09-24 09:20:52,614 INFO Connection check task end + +2025-09-24 09:20:54,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:55,615 INFO Connection check task start + +2025-09-24 09:20:55,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:55,615 INFO Out dated connection ,size=0 + +2025-09-24 09:20:55,615 INFO Connection check task end + +2025-09-24 09:20:57,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:20:58,615 INFO Connection check task start + +2025-09-24 09:20:58,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:20:58,615 INFO Out dated connection ,size=0 + +2025-09-24 09:20:58,615 INFO Connection check task end + +2025-09-24 09:21:00,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:01,616 INFO Connection check task start + +2025-09-24 09:21:01,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:01,616 INFO Out dated connection ,size=0 + +2025-09-24 09:21:01,616 INFO Connection check task end + +2025-09-24 09:21:03,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:04,616 INFO Connection check task start + +2025-09-24 09:21:04,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:04,617 INFO Out dated connection ,size=0 + +2025-09-24 09:21:04,617 INFO Connection check task end + +2025-09-24 09:21:06,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:07,617 INFO Connection check task start + +2025-09-24 09:21:07,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:07,617 INFO Out dated connection ,size=0 + +2025-09-24 09:21:07,617 INFO Connection check task end + +2025-09-24 09:21:09,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:10,617 INFO Connection check task start + +2025-09-24 09:21:10,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:10,618 INFO Out dated connection ,size=0 + +2025-09-24 09:21:10,618 INFO Connection check task end + +2025-09-24 09:21:12,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:13,618 INFO Connection check task start + +2025-09-24 09:21:13,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:13,618 INFO Out dated connection ,size=0 + +2025-09-24 09:21:13,618 INFO Connection check task end + +2025-09-24 09:21:15,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:16,620 INFO Connection check task start + +2025-09-24 09:21:16,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:16,620 INFO Out dated connection ,size=0 + +2025-09-24 09:21:16,620 INFO Connection check task end + +2025-09-24 09:21:18,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:19,621 INFO Connection check task start + +2025-09-24 09:21:19,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:19,621 INFO Out dated connection ,size=0 + +2025-09-24 09:21:19,621 INFO Connection check task end + +2025-09-24 09:21:21,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:22,623 INFO Connection check task start + +2025-09-24 09:21:22,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:22,623 INFO Out dated connection ,size=0 + +2025-09-24 09:21:22,623 INFO Connection check task end + +2025-09-24 09:21:24,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:25,625 INFO Connection check task start + +2025-09-24 09:21:25,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:25,625 INFO Out dated connection ,size=0 + +2025-09-24 09:21:25,625 INFO Connection check task end + +2025-09-24 09:21:27,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:28,625 INFO Connection check task start + +2025-09-24 09:21:28,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:28,626 INFO Out dated connection ,size=0 + +2025-09-24 09:21:28,626 INFO Connection check task end + +2025-09-24 09:21:30,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:31,626 INFO Connection check task start + +2025-09-24 09:21:31,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:31,626 INFO Out dated connection ,size=0 + +2025-09-24 09:21:31,626 INFO Connection check task end + +2025-09-24 09:21:33,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:34,627 INFO Connection check task start + +2025-09-24 09:21:34,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:34,627 INFO Out dated connection ,size=0 + +2025-09-24 09:21:34,627 INFO Connection check task end + +2025-09-24 09:21:36,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:37,627 INFO Connection check task start + +2025-09-24 09:21:37,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:37,627 INFO Out dated connection ,size=0 + +2025-09-24 09:21:37,627 INFO Connection check task end + +2025-09-24 09:21:39,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:40,628 INFO Connection check task start + +2025-09-24 09:21:40,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:40,628 INFO Out dated connection ,size=0 + +2025-09-24 09:21:40,628 INFO Connection check task end + +2025-09-24 09:21:42,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:43,629 INFO Connection check task start + +2025-09-24 09:21:43,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:43,629 INFO Out dated connection ,size=0 + +2025-09-24 09:21:43,629 INFO Connection check task end + +2025-09-24 09:21:45,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:46,630 INFO Connection check task start + +2025-09-24 09:21:46,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:46,630 INFO Out dated connection ,size=0 + +2025-09-24 09:21:46,630 INFO Connection check task end + +2025-09-24 09:21:48,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:49,631 INFO Connection check task start + +2025-09-24 09:21:49,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:49,631 INFO Out dated connection ,size=0 + +2025-09-24 09:21:49,631 INFO Connection check task end + +2025-09-24 09:21:51,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:52,633 INFO Connection check task start + +2025-09-24 09:21:52,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:52,633 INFO Out dated connection ,size=0 + +2025-09-24 09:21:52,633 INFO Connection check task end + +2025-09-24 09:21:54,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:55,633 INFO Connection check task start + +2025-09-24 09:21:55,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:55,634 INFO Out dated connection ,size=0 + +2025-09-24 09:21:55,634 INFO Connection check task end + +2025-09-24 09:21:57,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:21:58,634 INFO Connection check task start + +2025-09-24 09:21:58,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:21:58,634 INFO Out dated connection ,size=0 + +2025-09-24 09:21:58,634 INFO Connection check task end + +2025-09-24 09:22:00,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:01,634 INFO Connection check task start + +2025-09-24 09:22:01,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:01,635 INFO Out dated connection ,size=0 + +2025-09-24 09:22:01,635 INFO Connection check task end + +2025-09-24 09:22:03,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:04,635 INFO Connection check task start + +2025-09-24 09:22:04,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:04,635 INFO Out dated connection ,size=0 + +2025-09-24 09:22:04,635 INFO Connection check task end + +2025-09-24 09:22:06,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:07,637 INFO Connection check task start + +2025-09-24 09:22:07,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:07,637 INFO Out dated connection ,size=0 + +2025-09-24 09:22:07,637 INFO Connection check task end + +2025-09-24 09:22:09,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:10,639 INFO Connection check task start + +2025-09-24 09:22:10,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:10,639 INFO Out dated connection ,size=0 + +2025-09-24 09:22:10,639 INFO Connection check task end + +2025-09-24 09:22:12,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:13,640 INFO Connection check task start + +2025-09-24 09:22:13,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:13,641 INFO Out dated connection ,size=0 + +2025-09-24 09:22:13,641 INFO Connection check task end + +2025-09-24 09:22:15,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:16,641 INFO Connection check task start + +2025-09-24 09:22:16,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:16,641 INFO Out dated connection ,size=0 + +2025-09-24 09:22:16,641 INFO Connection check task end + +2025-09-24 09:22:18,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:19,642 INFO Connection check task start + +2025-09-24 09:22:19,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:19,642 INFO Out dated connection ,size=0 + +2025-09-24 09:22:19,642 INFO Connection check task end + +2025-09-24 09:22:21,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:22,642 INFO Connection check task start + +2025-09-24 09:22:22,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:22,643 INFO Out dated connection ,size=0 + +2025-09-24 09:22:22,643 INFO Connection check task end + +2025-09-24 09:22:24,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:25,643 INFO Connection check task start + +2025-09-24 09:22:25,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:25,643 INFO Out dated connection ,size=0 + +2025-09-24 09:22:25,643 INFO Connection check task end + +2025-09-24 09:22:27,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:28,645 INFO Connection check task start + +2025-09-24 09:22:28,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:28,645 INFO Out dated connection ,size=0 + +2025-09-24 09:22:28,645 INFO Connection check task end + +2025-09-24 09:22:30,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:31,646 INFO Connection check task start + +2025-09-24 09:22:31,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:31,646 INFO Out dated connection ,size=0 + +2025-09-24 09:22:31,646 INFO Connection check task end + +2025-09-24 09:22:33,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:34,647 INFO Connection check task start + +2025-09-24 09:22:34,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:34,647 INFO Out dated connection ,size=0 + +2025-09-24 09:22:34,647 INFO Connection check task end + +2025-09-24 09:22:36,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:37,647 INFO Connection check task start + +2025-09-24 09:22:37,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:37,648 INFO Out dated connection ,size=0 + +2025-09-24 09:22:37,648 INFO Connection check task end + +2025-09-24 09:22:39,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:40,648 INFO Connection check task start + +2025-09-24 09:22:40,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:40,648 INFO Out dated connection ,size=0 + +2025-09-24 09:22:40,648 INFO Connection check task end + +2025-09-24 09:22:42,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:43,648 INFO Connection check task start + +2025-09-24 09:22:43,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:43,649 INFO Out dated connection ,size=0 + +2025-09-24 09:22:43,649 INFO Connection check task end + +2025-09-24 09:22:45,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:46,650 INFO Connection check task start + +2025-09-24 09:22:46,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:46,650 INFO Out dated connection ,size=0 + +2025-09-24 09:22:46,651 INFO Connection check task end + +2025-09-24 09:22:48,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:49,653 INFO Connection check task start + +2025-09-24 09:22:49,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:49,653 INFO Out dated connection ,size=0 + +2025-09-24 09:22:49,653 INFO Connection check task end + +2025-09-24 09:22:51,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:52,653 INFO Connection check task start + +2025-09-24 09:22:52,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:52,653 INFO Out dated connection ,size=0 + +2025-09-24 09:22:52,654 INFO Connection check task end + +2025-09-24 09:22:54,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:55,654 INFO Connection check task start + +2025-09-24 09:22:55,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:55,654 INFO Out dated connection ,size=0 + +2025-09-24 09:22:55,654 INFO Connection check task end + +2025-09-24 09:22:57,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:22:58,654 INFO Connection check task start + +2025-09-24 09:22:58,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:22:58,654 INFO Out dated connection ,size=0 + +2025-09-24 09:22:58,654 INFO Connection check task end + +2025-09-24 09:23:00,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:01,655 INFO Connection check task start + +2025-09-24 09:23:01,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:01,655 INFO Out dated connection ,size=0 + +2025-09-24 09:23:01,655 INFO Connection check task end + +2025-09-24 09:23:03,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:04,655 INFO Connection check task start + +2025-09-24 09:23:04,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:04,655 INFO Out dated connection ,size=0 + +2025-09-24 09:23:04,655 INFO Connection check task end + +2025-09-24 09:23:06,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:07,657 INFO Connection check task start + +2025-09-24 09:23:07,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:07,658 INFO Out dated connection ,size=0 + +2025-09-24 09:23:07,658 INFO Connection check task end + +2025-09-24 09:23:09,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:10,659 INFO Connection check task start + +2025-09-24 09:23:10,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:10,659 INFO Out dated connection ,size=0 + +2025-09-24 09:23:10,659 INFO Connection check task end + +2025-09-24 09:23:12,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:13,659 INFO Connection check task start + +2025-09-24 09:23:13,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:13,660 INFO Out dated connection ,size=0 + +2025-09-24 09:23:13,660 INFO Connection check task end + +2025-09-24 09:23:15,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:16,661 INFO Connection check task start + +2025-09-24 09:23:16,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:16,661 INFO Out dated connection ,size=0 + +2025-09-24 09:23:16,661 INFO Connection check task end + +2025-09-24 09:23:18,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:19,662 INFO Connection check task start + +2025-09-24 09:23:19,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:19,662 INFO Out dated connection ,size=0 + +2025-09-24 09:23:19,662 INFO Connection check task end + +2025-09-24 09:23:21,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:22,664 INFO Connection check task start + +2025-09-24 09:23:22,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:22,665 INFO Out dated connection ,size=0 + +2025-09-24 09:23:22,665 INFO Connection check task end + +2025-09-24 09:23:24,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:25,665 INFO Connection check task start + +2025-09-24 09:23:25,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:25,665 INFO Out dated connection ,size=0 + +2025-09-24 09:23:25,665 INFO Connection check task end + +2025-09-24 09:23:27,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:28,666 INFO Connection check task start + +2025-09-24 09:23:28,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:28,666 INFO Out dated connection ,size=0 + +2025-09-24 09:23:28,666 INFO Connection check task end + +2025-09-24 09:23:30,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:31,666 INFO Connection check task start + +2025-09-24 09:23:31,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:31,667 INFO Out dated connection ,size=0 + +2025-09-24 09:23:31,667 INFO Connection check task end + +2025-09-24 09:23:33,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:34,668 INFO Connection check task start + +2025-09-24 09:23:34,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:34,668 INFO Out dated connection ,size=0 + +2025-09-24 09:23:34,669 INFO Connection check task end + +2025-09-24 09:23:36,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:37,669 INFO Connection check task start + +2025-09-24 09:23:37,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:37,669 INFO Out dated connection ,size=0 + +2025-09-24 09:23:37,669 INFO Connection check task end + +2025-09-24 09:23:39,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:40,669 INFO Connection check task start + +2025-09-24 09:23:40,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:40,670 INFO Out dated connection ,size=0 + +2025-09-24 09:23:40,670 INFO Connection check task end + +2025-09-24 09:23:42,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:43,671 INFO Connection check task start + +2025-09-24 09:23:43,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:43,672 INFO Out dated connection ,size=0 + +2025-09-24 09:23:43,672 INFO Connection check task end + +2025-09-24 09:23:45,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:46,674 INFO Connection check task start + +2025-09-24 09:23:46,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:46,674 INFO Out dated connection ,size=0 + +2025-09-24 09:23:46,674 INFO Connection check task end + +2025-09-24 09:23:48,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:49,674 INFO Connection check task start + +2025-09-24 09:23:49,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:49,674 INFO Out dated connection ,size=0 + +2025-09-24 09:23:49,675 INFO Connection check task end + +2025-09-24 09:23:51,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:52,676 INFO Connection check task start + +2025-09-24 09:23:52,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:52,676 INFO Out dated connection ,size=0 + +2025-09-24 09:23:52,676 INFO Connection check task end + +2025-09-24 09:23:54,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:55,677 INFO Connection check task start + +2025-09-24 09:23:55,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:55,677 INFO Out dated connection ,size=0 + +2025-09-24 09:23:55,678 INFO Connection check task end + +2025-09-24 09:23:57,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:23:58,678 INFO Connection check task start + +2025-09-24 09:23:58,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:23:58,678 INFO Out dated connection ,size=0 + +2025-09-24 09:23:58,678 INFO Connection check task end + +2025-09-24 09:24:00,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:01,678 INFO Connection check task start + +2025-09-24 09:24:01,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:01,679 INFO Out dated connection ,size=0 + +2025-09-24 09:24:01,679 INFO Connection check task end + +2025-09-24 09:24:03,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:04,681 INFO Connection check task start + +2025-09-24 09:24:04,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:04,681 INFO Out dated connection ,size=0 + +2025-09-24 09:24:04,681 INFO Connection check task end + +2025-09-24 09:24:06,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:07,681 INFO Connection check task start + +2025-09-24 09:24:07,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:07,681 INFO Out dated connection ,size=0 + +2025-09-24 09:24:07,681 INFO Connection check task end + +2025-09-24 09:24:09,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:10,683 INFO Connection check task start + +2025-09-24 09:24:10,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:10,684 INFO Out dated connection ,size=0 + +2025-09-24 09:24:10,684 INFO Connection check task end + +2025-09-24 09:24:12,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:13,684 INFO Connection check task start + +2025-09-24 09:24:13,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:13,684 INFO Out dated connection ,size=0 + +2025-09-24 09:24:13,684 INFO Connection check task end + +2025-09-24 09:24:15,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:16,684 INFO Connection check task start + +2025-09-24 09:24:16,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:16,684 INFO Out dated connection ,size=0 + +2025-09-24 09:24:16,684 INFO Connection check task end + +2025-09-24 09:24:18,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:19,687 INFO Connection check task start + +2025-09-24 09:24:19,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:19,687 INFO Out dated connection ,size=0 + +2025-09-24 09:24:19,687 INFO Connection check task end + +2025-09-24 09:24:21,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:22,687 INFO Connection check task start + +2025-09-24 09:24:22,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:22,688 INFO Out dated connection ,size=0 + +2025-09-24 09:24:22,688 INFO Connection check task end + +2025-09-24 09:24:24,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:25,688 INFO Connection check task start + +2025-09-24 09:24:25,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:25,688 INFO Out dated connection ,size=0 + +2025-09-24 09:24:25,688 INFO Connection check task end + +2025-09-24 09:24:27,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:28,690 INFO Connection check task start + +2025-09-24 09:24:28,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:28,690 INFO Out dated connection ,size=0 + +2025-09-24 09:24:28,691 INFO Connection check task end + +2025-09-24 09:24:30,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:31,691 INFO Connection check task start + +2025-09-24 09:24:31,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:31,691 INFO Out dated connection ,size=0 + +2025-09-24 09:24:31,691 INFO Connection check task end + +2025-09-24 09:24:33,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:34,692 INFO Connection check task start + +2025-09-24 09:24:34,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:34,692 INFO Out dated connection ,size=0 + +2025-09-24 09:24:34,692 INFO Connection check task end + +2025-09-24 09:24:36,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:37,694 INFO Connection check task start + +2025-09-24 09:24:37,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:37,695 INFO Out dated connection ,size=0 + +2025-09-24 09:24:37,695 INFO Connection check task end + +2025-09-24 09:24:39,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:40,695 INFO Connection check task start + +2025-09-24 09:24:40,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:40,695 INFO Out dated connection ,size=0 + +2025-09-24 09:24:40,695 INFO Connection check task end + +2025-09-24 09:24:42,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:43,695 INFO Connection check task start + +2025-09-24 09:24:43,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:43,696 INFO Out dated connection ,size=0 + +2025-09-24 09:24:43,696 INFO Connection check task end + +2025-09-24 09:24:45,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:46,698 INFO Connection check task start + +2025-09-24 09:24:46,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:46,698 INFO Out dated connection ,size=0 + +2025-09-24 09:24:46,698 INFO Connection check task end + +2025-09-24 09:24:48,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:49,699 INFO Connection check task start + +2025-09-24 09:24:49,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:49,700 INFO Out dated connection ,size=0 + +2025-09-24 09:24:49,700 INFO Connection check task end + +2025-09-24 09:24:51,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:52,702 INFO Connection check task start + +2025-09-24 09:24:52,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:52,702 INFO Out dated connection ,size=0 + +2025-09-24 09:24:52,702 INFO Connection check task end + +2025-09-24 09:24:54,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:55,702 INFO Connection check task start + +2025-09-24 09:24:55,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:55,702 INFO Out dated connection ,size=0 + +2025-09-24 09:24:55,702 INFO Connection check task end + +2025-09-24 09:24:57,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:24:58,703 INFO Connection check task start + +2025-09-24 09:24:58,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:24:58,703 INFO Out dated connection ,size=0 + +2025-09-24 09:24:58,703 INFO Connection check task end + +2025-09-24 09:25:00,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:01,703 INFO Connection check task start + +2025-09-24 09:25:01,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:01,703 INFO Out dated connection ,size=0 + +2025-09-24 09:25:01,703 INFO Connection check task end + +2025-09-24 09:25:03,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:04,704 INFO Connection check task start + +2025-09-24 09:25:04,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:04,704 INFO Out dated connection ,size=0 + +2025-09-24 09:25:04,704 INFO Connection check task end + +2025-09-24 09:25:06,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:07,704 INFO Connection check task start + +2025-09-24 09:25:07,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:07,704 INFO Out dated connection ,size=0 + +2025-09-24 09:25:07,704 INFO Connection check task end + +2025-09-24 09:25:09,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:10,705 INFO Connection check task start + +2025-09-24 09:25:10,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:10,705 INFO Out dated connection ,size=0 + +2025-09-24 09:25:10,705 INFO Connection check task end + +2025-09-24 09:25:12,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:13,705 INFO Connection check task start + +2025-09-24 09:25:13,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:13,706 INFO Out dated connection ,size=0 + +2025-09-24 09:25:13,706 INFO Connection check task end + +2025-09-24 09:25:15,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:16,707 INFO Connection check task start + +2025-09-24 09:25:16,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:16,707 INFO Out dated connection ,size=0 + +2025-09-24 09:25:16,707 INFO Connection check task end + +2025-09-24 09:25:18,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:19,707 INFO Connection check task start + +2025-09-24 09:25:19,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:19,708 INFO Out dated connection ,size=0 + +2025-09-24 09:25:19,708 INFO Connection check task end + +2025-09-24 09:25:21,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:22,710 INFO Connection check task start + +2025-09-24 09:25:22,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:22,710 INFO Out dated connection ,size=0 + +2025-09-24 09:25:22,710 INFO Connection check task end + +2025-09-24 09:25:24,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:25,711 INFO Connection check task start + +2025-09-24 09:25:25,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:25,711 INFO Out dated connection ,size=0 + +2025-09-24 09:25:25,711 INFO Connection check task end + +2025-09-24 09:25:27,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:28,712 INFO Connection check task start + +2025-09-24 09:25:28,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:28,712 INFO Out dated connection ,size=0 + +2025-09-24 09:25:28,712 INFO Connection check task end + +2025-09-24 09:25:30,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:31,712 INFO Connection check task start + +2025-09-24 09:25:31,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:31,712 INFO Out dated connection ,size=0 + +2025-09-24 09:25:31,712 INFO Connection check task end + +2025-09-24 09:25:33,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:34,714 INFO Connection check task start + +2025-09-24 09:25:34,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:34,714 INFO Out dated connection ,size=0 + +2025-09-24 09:25:34,715 INFO Connection check task end + +2025-09-24 09:25:36,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:37,717 INFO Connection check task start + +2025-09-24 09:25:37,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:37,717 INFO Out dated connection ,size=0 + +2025-09-24 09:25:37,717 INFO Connection check task end + +2025-09-24 09:25:39,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:40,717 INFO Connection check task start + +2025-09-24 09:25:40,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:40,718 INFO Out dated connection ,size=0 + +2025-09-24 09:25:40,718 INFO Connection check task end + +2025-09-24 09:25:42,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:43,720 INFO Connection check task start + +2025-09-24 09:25:43,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:43,720 INFO Out dated connection ,size=0 + +2025-09-24 09:25:43,720 INFO Connection check task end + +2025-09-24 09:25:45,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:46,721 INFO Connection check task start + +2025-09-24 09:25:46,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:46,721 INFO Out dated connection ,size=0 + +2025-09-24 09:25:46,721 INFO Connection check task end + +2025-09-24 09:25:48,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:49,722 INFO Connection check task start + +2025-09-24 09:25:49,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:49,722 INFO Out dated connection ,size=0 + +2025-09-24 09:25:49,722 INFO Connection check task end + +2025-09-24 09:25:51,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:52,724 INFO Connection check task start + +2025-09-24 09:25:52,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:52,724 INFO Out dated connection ,size=0 + +2025-09-24 09:25:52,724 INFO Connection check task end + +2025-09-24 09:25:54,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:55,727 INFO Connection check task start + +2025-09-24 09:25:55,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:55,727 INFO Out dated connection ,size=0 + +2025-09-24 09:25:55,727 INFO Connection check task end + +2025-09-24 09:25:57,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:25:58,728 INFO Connection check task start + +2025-09-24 09:25:58,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:25:58,728 INFO Out dated connection ,size=0 + +2025-09-24 09:25:58,728 INFO Connection check task end + +2025-09-24 09:26:00,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:01,729 INFO Connection check task start + +2025-09-24 09:26:01,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:01,729 INFO Out dated connection ,size=0 + +2025-09-24 09:26:01,729 INFO Connection check task end + +2025-09-24 09:26:03,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:04,731 INFO Connection check task start + +2025-09-24 09:26:04,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:04,732 INFO Out dated connection ,size=0 + +2025-09-24 09:26:04,732 INFO Connection check task end + +2025-09-24 09:26:06,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:07,732 INFO Connection check task start + +2025-09-24 09:26:07,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:07,732 INFO Out dated connection ,size=0 + +2025-09-24 09:26:07,732 INFO Connection check task end + +2025-09-24 09:26:09,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:10,733 INFO Connection check task start + +2025-09-24 09:26:10,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:10,734 INFO Out dated connection ,size=0 + +2025-09-24 09:26:10,734 INFO Connection check task end + +2025-09-24 09:26:12,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:13,736 INFO Connection check task start + +2025-09-24 09:26:13,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:13,736 INFO Out dated connection ,size=0 + +2025-09-24 09:26:13,736 INFO Connection check task end + +2025-09-24 09:26:15,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:16,738 INFO Connection check task start + +2025-09-24 09:26:16,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:16,738 INFO Out dated connection ,size=0 + +2025-09-24 09:26:16,738 INFO Connection check task end + +2025-09-24 09:26:18,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:19,738 INFO Connection check task start + +2025-09-24 09:26:19,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:19,738 INFO Out dated connection ,size=0 + +2025-09-24 09:26:19,738 INFO Connection check task end + +2025-09-24 09:26:21,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:22,740 INFO Connection check task start + +2025-09-24 09:26:22,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:22,741 INFO Out dated connection ,size=0 + +2025-09-24 09:26:22,741 INFO Connection check task end + +2025-09-24 09:26:24,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:25,743 INFO Connection check task start + +2025-09-24 09:26:25,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:25,743 INFO Out dated connection ,size=0 + +2025-09-24 09:26:25,743 INFO Connection check task end + +2025-09-24 09:26:27,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:28,744 INFO Connection check task start + +2025-09-24 09:26:28,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:28,744 INFO Out dated connection ,size=0 + +2025-09-24 09:26:28,744 INFO Connection check task end + +2025-09-24 09:26:30,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:31,746 INFO Connection check task start + +2025-09-24 09:26:31,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:31,746 INFO Out dated connection ,size=0 + +2025-09-24 09:26:31,746 INFO Connection check task end + +2025-09-24 09:26:33,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:34,747 INFO Connection check task start + +2025-09-24 09:26:34,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:34,747 INFO Out dated connection ,size=0 + +2025-09-24 09:26:34,747 INFO Connection check task end + +2025-09-24 09:26:36,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:37,748 INFO Connection check task start + +2025-09-24 09:26:37,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:37,748 INFO Out dated connection ,size=0 + +2025-09-24 09:26:37,748 INFO Connection check task end + +2025-09-24 09:26:39,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:40,748 INFO Connection check task start + +2025-09-24 09:26:40,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:40,748 INFO Out dated connection ,size=0 + +2025-09-24 09:26:40,749 INFO Connection check task end + +2025-09-24 09:26:42,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:43,749 INFO Connection check task start + +2025-09-24 09:26:43,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:43,749 INFO Out dated connection ,size=0 + +2025-09-24 09:26:43,749 INFO Connection check task end + +2025-09-24 09:26:45,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:46,750 INFO Connection check task start + +2025-09-24 09:26:46,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:46,750 INFO Out dated connection ,size=0 + +2025-09-24 09:26:46,750 INFO Connection check task end + +2025-09-24 09:26:48,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:49,751 INFO Connection check task start + +2025-09-24 09:26:49,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:49,752 INFO Out dated connection ,size=0 + +2025-09-24 09:26:49,752 INFO Connection check task end + +2025-09-24 09:26:51,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:52,752 INFO Connection check task start + +2025-09-24 09:26:52,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:52,752 INFO Out dated connection ,size=0 + +2025-09-24 09:26:52,752 INFO Connection check task end + +2025-09-24 09:26:54,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:55,753 INFO Connection check task start + +2025-09-24 09:26:55,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:55,753 INFO Out dated connection ,size=0 + +2025-09-24 09:26:55,753 INFO Connection check task end + +2025-09-24 09:26:57,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:26:58,754 INFO Connection check task start + +2025-09-24 09:26:58,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:26:58,754 INFO Out dated connection ,size=0 + +2025-09-24 09:26:58,754 INFO Connection check task end + +2025-09-24 09:27:00,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:01,754 INFO Connection check task start + +2025-09-24 09:27:01,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:01,754 INFO Out dated connection ,size=0 + +2025-09-24 09:27:01,754 INFO Connection check task end + +2025-09-24 09:27:03,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:04,756 INFO Connection check task start + +2025-09-24 09:27:04,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:04,757 INFO Out dated connection ,size=0 + +2025-09-24 09:27:04,757 INFO Connection check task end + +2025-09-24 09:27:06,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:07,757 INFO Connection check task start + +2025-09-24 09:27:07,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:07,757 INFO Out dated connection ,size=0 + +2025-09-24 09:27:07,757 INFO Connection check task end + +2025-09-24 09:27:09,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:10,757 INFO Connection check task start + +2025-09-24 09:27:10,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:10,757 INFO Out dated connection ,size=0 + +2025-09-24 09:27:10,757 INFO Connection check task end + +2025-09-24 09:27:12,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:13,759 INFO Connection check task start + +2025-09-24 09:27:13,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:13,759 INFO Out dated connection ,size=0 + +2025-09-24 09:27:13,759 INFO Connection check task end + +2025-09-24 09:27:15,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:16,759 INFO Connection check task start + +2025-09-24 09:27:16,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:16,759 INFO Out dated connection ,size=0 + +2025-09-24 09:27:16,759 INFO Connection check task end + +2025-09-24 09:27:18,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:19,760 INFO Connection check task start + +2025-09-24 09:27:19,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:19,760 INFO Out dated connection ,size=0 + +2025-09-24 09:27:19,760 INFO Connection check task end + +2025-09-24 09:27:21,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:22,760 INFO Connection check task start + +2025-09-24 09:27:22,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:22,761 INFO Out dated connection ,size=0 + +2025-09-24 09:27:22,761 INFO Connection check task end + +2025-09-24 09:27:24,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:25,763 INFO Connection check task start + +2025-09-24 09:27:25,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:25,763 INFO Out dated connection ,size=0 + +2025-09-24 09:27:25,763 INFO Connection check task end + +2025-09-24 09:27:27,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:28,765 INFO Connection check task start + +2025-09-24 09:27:28,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:28,765 INFO Out dated connection ,size=0 + +2025-09-24 09:27:28,765 INFO Connection check task end + +2025-09-24 09:27:30,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:31,767 INFO Connection check task start + +2025-09-24 09:27:31,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:31,767 INFO Out dated connection ,size=0 + +2025-09-24 09:27:31,767 INFO Connection check task end + +2025-09-24 09:27:33,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:34,768 INFO Connection check task start + +2025-09-24 09:27:34,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:34,768 INFO Out dated connection ,size=0 + +2025-09-24 09:27:34,768 INFO Connection check task end + +2025-09-24 09:27:36,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:37,769 INFO Connection check task start + +2025-09-24 09:27:37,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:37,770 INFO Out dated connection ,size=0 + +2025-09-24 09:27:37,770 INFO Connection check task end + +2025-09-24 09:27:39,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:40,771 INFO Connection check task start + +2025-09-24 09:27:40,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:40,771 INFO Out dated connection ,size=0 + +2025-09-24 09:27:40,771 INFO Connection check task end + +2025-09-24 09:27:42,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:43,771 INFO Connection check task start + +2025-09-24 09:27:43,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:43,772 INFO Out dated connection ,size=0 + +2025-09-24 09:27:43,772 INFO Connection check task end + +2025-09-24 09:27:45,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:46,772 INFO Connection check task start + +2025-09-24 09:27:46,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:46,773 INFO Out dated connection ,size=0 + +2025-09-24 09:27:46,773 INFO Connection check task end + +2025-09-24 09:27:48,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:49,775 INFO Connection check task start + +2025-09-24 09:27:49,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:49,775 INFO Out dated connection ,size=0 + +2025-09-24 09:27:49,775 INFO Connection check task end + +2025-09-24 09:27:51,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:52,775 INFO Connection check task start + +2025-09-24 09:27:52,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:52,775 INFO Out dated connection ,size=0 + +2025-09-24 09:27:52,775 INFO Connection check task end + +2025-09-24 09:27:54,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:55,776 INFO Connection check task start + +2025-09-24 09:27:55,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:55,776 INFO Out dated connection ,size=0 + +2025-09-24 09:27:55,776 INFO Connection check task end + +2025-09-24 09:27:57,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:27:58,778 INFO Connection check task start + +2025-09-24 09:27:58,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:27:58,779 INFO Out dated connection ,size=0 + +2025-09-24 09:27:58,779 INFO Connection check task end + +2025-09-24 09:28:00,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:01,779 INFO Connection check task start + +2025-09-24 09:28:01,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:01,779 INFO Out dated connection ,size=0 + +2025-09-24 09:28:01,779 INFO Connection check task end + +2025-09-24 09:28:03,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:04,781 INFO Connection check task start + +2025-09-24 09:28:04,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:04,782 INFO Out dated connection ,size=0 + +2025-09-24 09:28:04,782 INFO Connection check task end + +2025-09-24 09:28:06,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:07,782 INFO Connection check task start + +2025-09-24 09:28:07,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:07,782 INFO Out dated connection ,size=0 + +2025-09-24 09:28:07,782 INFO Connection check task end + +2025-09-24 09:28:09,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:10,784 INFO Connection check task start + +2025-09-24 09:28:10,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:10,785 INFO Out dated connection ,size=0 + +2025-09-24 09:28:10,785 INFO Connection check task end + +2025-09-24 09:28:12,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:13,786 INFO Connection check task start + +2025-09-24 09:28:13,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:13,787 INFO Out dated connection ,size=0 + +2025-09-24 09:28:13,787 INFO Connection check task end + +2025-09-24 09:28:15,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:16,787 INFO Connection check task start + +2025-09-24 09:28:16,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:16,787 INFO Out dated connection ,size=0 + +2025-09-24 09:28:16,787 INFO Connection check task end + +2025-09-24 09:28:18,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:19,788 INFO Connection check task start + +2025-09-24 09:28:19,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:19,788 INFO Out dated connection ,size=0 + +2025-09-24 09:28:19,788 INFO Connection check task end + +2025-09-24 09:28:21,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:22,789 INFO Connection check task start + +2025-09-24 09:28:22,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:22,789 INFO Out dated connection ,size=0 + +2025-09-24 09:28:22,789 INFO Connection check task end + +2025-09-24 09:28:24,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:25,790 INFO Connection check task start + +2025-09-24 09:28:25,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:25,790 INFO Out dated connection ,size=0 + +2025-09-24 09:28:25,790 INFO Connection check task end + +2025-09-24 09:28:27,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:28,792 INFO Connection check task start + +2025-09-24 09:28:28,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:28,792 INFO Out dated connection ,size=0 + +2025-09-24 09:28:28,792 INFO Connection check task end + +2025-09-24 09:28:30,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:31,793 INFO Connection check task start + +2025-09-24 09:28:31,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:31,793 INFO Out dated connection ,size=0 + +2025-09-24 09:28:31,793 INFO Connection check task end + +2025-09-24 09:28:33,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:34,793 INFO Connection check task start + +2025-09-24 09:28:34,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:34,793 INFO Out dated connection ,size=0 + +2025-09-24 09:28:34,793 INFO Connection check task end + +2025-09-24 09:28:36,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:37,795 INFO Connection check task start + +2025-09-24 09:28:37,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:37,795 INFO Out dated connection ,size=0 + +2025-09-24 09:28:37,795 INFO Connection check task end + +2025-09-24 09:28:39,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:40,797 INFO Connection check task start + +2025-09-24 09:28:40,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:40,797 INFO Out dated connection ,size=0 + +2025-09-24 09:28:40,797 INFO Connection check task end + +2025-09-24 09:28:42,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:43,798 INFO Connection check task start + +2025-09-24 09:28:43,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:43,798 INFO Out dated connection ,size=0 + +2025-09-24 09:28:43,798 INFO Connection check task end + +2025-09-24 09:28:45,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:46,800 INFO Connection check task start + +2025-09-24 09:28:46,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:46,800 INFO Out dated connection ,size=0 + +2025-09-24 09:28:46,800 INFO Connection check task end + +2025-09-24 09:28:48,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:49,802 INFO Connection check task start + +2025-09-24 09:28:49,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:49,802 INFO Out dated connection ,size=0 + +2025-09-24 09:28:49,802 INFO Connection check task end + +2025-09-24 09:28:51,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:52,803 INFO Connection check task start + +2025-09-24 09:28:52,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:52,803 INFO Out dated connection ,size=0 + +2025-09-24 09:28:52,803 INFO Connection check task end + +2025-09-24 09:28:54,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:55,804 INFO Connection check task start + +2025-09-24 09:28:55,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:55,804 INFO Out dated connection ,size=0 + +2025-09-24 09:28:55,804 INFO Connection check task end + +2025-09-24 09:28:57,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:28:58,804 INFO Connection check task start + +2025-09-24 09:28:58,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:28:58,804 INFO Out dated connection ,size=0 + +2025-09-24 09:28:58,804 INFO Connection check task end + +2025-09-24 09:29:00,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:01,806 INFO Connection check task start + +2025-09-24 09:29:01,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:01,806 INFO Out dated connection ,size=0 + +2025-09-24 09:29:01,806 INFO Connection check task end + +2025-09-24 09:29:03,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:04,808 INFO Connection check task start + +2025-09-24 09:29:04,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:04,808 INFO Out dated connection ,size=0 + +2025-09-24 09:29:04,808 INFO Connection check task end + +2025-09-24 09:29:06,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:07,810 INFO Connection check task start + +2025-09-24 09:29:07,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:07,810 INFO Out dated connection ,size=0 + +2025-09-24 09:29:07,810 INFO Connection check task end + +2025-09-24 09:29:09,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:10,811 INFO Connection check task start + +2025-09-24 09:29:10,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:10,812 INFO Out dated connection ,size=0 + +2025-09-24 09:29:10,812 INFO Connection check task end + +2025-09-24 09:29:12,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:13,814 INFO Connection check task start + +2025-09-24 09:29:13,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:13,814 INFO Out dated connection ,size=0 + +2025-09-24 09:29:13,814 INFO Connection check task end + +2025-09-24 09:29:15,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:16,814 INFO Connection check task start + +2025-09-24 09:29:16,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:16,814 INFO Out dated connection ,size=0 + +2025-09-24 09:29:16,814 INFO Connection check task end + +2025-09-24 09:29:18,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:19,815 INFO Connection check task start + +2025-09-24 09:29:19,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:19,815 INFO Out dated connection ,size=0 + +2025-09-24 09:29:19,815 INFO Connection check task end + +2025-09-24 09:29:21,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:22,818 INFO Connection check task start + +2025-09-24 09:29:22,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:22,818 INFO Out dated connection ,size=0 + +2025-09-24 09:29:22,818 INFO Connection check task end + +2025-09-24 09:29:24,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:25,819 INFO Connection check task start + +2025-09-24 09:29:25,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:25,819 INFO Out dated connection ,size=0 + +2025-09-24 09:29:25,819 INFO Connection check task end + +2025-09-24 09:29:27,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:28,820 INFO Connection check task start + +2025-09-24 09:29:28,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:28,820 INFO Out dated connection ,size=0 + +2025-09-24 09:29:28,820 INFO Connection check task end + +2025-09-24 09:29:30,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:31,822 INFO Connection check task start + +2025-09-24 09:29:31,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:31,822 INFO Out dated connection ,size=0 + +2025-09-24 09:29:31,822 INFO Connection check task end + +2025-09-24 09:29:33,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:34,824 INFO Connection check task start + +2025-09-24 09:29:34,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:34,824 INFO Out dated connection ,size=0 + +2025-09-24 09:29:34,824 INFO Connection check task end + +2025-09-24 09:29:36,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:37,825 INFO Connection check task start + +2025-09-24 09:29:37,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:37,825 INFO Out dated connection ,size=0 + +2025-09-24 09:29:37,825 INFO Connection check task end + +2025-09-24 09:29:39,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:40,825 INFO Connection check task start + +2025-09-24 09:29:40,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:40,826 INFO Out dated connection ,size=0 + +2025-09-24 09:29:40,826 INFO Connection check task end + +2025-09-24 09:29:42,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:43,826 INFO Connection check task start + +2025-09-24 09:29:43,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:43,826 INFO Out dated connection ,size=0 + +2025-09-24 09:29:43,826 INFO Connection check task end + +2025-09-24 09:29:45,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:46,826 INFO Connection check task start + +2025-09-24 09:29:46,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:46,826 INFO Out dated connection ,size=0 + +2025-09-24 09:29:46,827 INFO Connection check task end + +2025-09-24 09:29:48,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:49,827 INFO Connection check task start + +2025-09-24 09:29:49,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:49,827 INFO Out dated connection ,size=0 + +2025-09-24 09:29:49,827 INFO Connection check task end + +2025-09-24 09:29:51,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:52,828 INFO Connection check task start + +2025-09-24 09:29:52,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:52,828 INFO Out dated connection ,size=0 + +2025-09-24 09:29:52,828 INFO Connection check task end + +2025-09-24 09:29:54,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:55,830 INFO Connection check task start + +2025-09-24 09:29:55,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:55,830 INFO Out dated connection ,size=0 + +2025-09-24 09:29:55,831 INFO Connection check task end + +2025-09-24 09:29:57,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:29:58,831 INFO Connection check task start + +2025-09-24 09:29:58,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:29:58,832 INFO Out dated connection ,size=0 + +2025-09-24 09:29:58,832 INFO Connection check task end + +2025-09-24 09:30:00,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:01,832 INFO Connection check task start + +2025-09-24 09:30:01,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:01,832 INFO Out dated connection ,size=0 + +2025-09-24 09:30:01,832 INFO Connection check task end + +2025-09-24 09:30:03,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:04,833 INFO Connection check task start + +2025-09-24 09:30:04,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:04,833 INFO Out dated connection ,size=0 + +2025-09-24 09:30:04,833 INFO Connection check task end + +2025-09-24 09:30:06,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:07,833 INFO Connection check task start + +2025-09-24 09:30:07,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:07,834 INFO Out dated connection ,size=0 + +2025-09-24 09:30:07,834 INFO Connection check task end + +2025-09-24 09:30:09,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:10,834 INFO Connection check task start + +2025-09-24 09:30:10,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:10,834 INFO Out dated connection ,size=0 + +2025-09-24 09:30:10,834 INFO Connection check task end + +2025-09-24 09:30:12,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:13,835 INFO Connection check task start + +2025-09-24 09:30:13,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:13,835 INFO Out dated connection ,size=0 + +2025-09-24 09:30:13,835 INFO Connection check task end + +2025-09-24 09:30:15,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:16,837 INFO Connection check task start + +2025-09-24 09:30:16,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:16,837 INFO Out dated connection ,size=0 + +2025-09-24 09:30:16,837 INFO Connection check task end + +2025-09-24 09:30:18,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:19,838 INFO Connection check task start + +2025-09-24 09:30:19,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:19,839 INFO Out dated connection ,size=0 + +2025-09-24 09:30:19,839 INFO Connection check task end + +2025-09-24 09:30:21,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:22,841 INFO Connection check task start + +2025-09-24 09:30:22,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:22,841 INFO Out dated connection ,size=0 + +2025-09-24 09:30:22,841 INFO Connection check task end + +2025-09-24 09:30:24,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:25,842 INFO Connection check task start + +2025-09-24 09:30:25,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:25,843 INFO Out dated connection ,size=0 + +2025-09-24 09:30:25,843 INFO Connection check task end + +2025-09-24 09:30:27,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:28,843 INFO Connection check task start + +2025-09-24 09:30:28,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:28,843 INFO Out dated connection ,size=0 + +2025-09-24 09:30:28,843 INFO Connection check task end + +2025-09-24 09:30:30,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:31,845 INFO Connection check task start + +2025-09-24 09:30:31,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:31,845 INFO Out dated connection ,size=0 + +2025-09-24 09:30:31,845 INFO Connection check task end + +2025-09-24 09:30:33,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:34,845 INFO Connection check task start + +2025-09-24 09:30:34,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:34,845 INFO Out dated connection ,size=0 + +2025-09-24 09:30:34,845 INFO Connection check task end + +2025-09-24 09:30:36,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:37,846 INFO Connection check task start + +2025-09-24 09:30:37,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:37,846 INFO Out dated connection ,size=0 + +2025-09-24 09:30:37,846 INFO Connection check task end + +2025-09-24 09:30:39,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:40,847 INFO Connection check task start + +2025-09-24 09:30:40,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:40,847 INFO Out dated connection ,size=0 + +2025-09-24 09:30:40,847 INFO Connection check task end + +2025-09-24 09:30:42,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:43,848 INFO Connection check task start + +2025-09-24 09:30:43,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:43,848 INFO Out dated connection ,size=0 + +2025-09-24 09:30:43,848 INFO Connection check task end + +2025-09-24 09:30:45,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:46,850 INFO Connection check task start + +2025-09-24 09:30:46,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:46,851 INFO Out dated connection ,size=0 + +2025-09-24 09:30:46,851 INFO Connection check task end + +2025-09-24 09:30:48,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:49,851 INFO Connection check task start + +2025-09-24 09:30:49,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:49,851 INFO Out dated connection ,size=0 + +2025-09-24 09:30:49,851 INFO Connection check task end + +2025-09-24 09:30:51,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:52,852 INFO Connection check task start + +2025-09-24 09:30:52,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:52,852 INFO Out dated connection ,size=0 + +2025-09-24 09:30:52,852 INFO Connection check task end + +2025-09-24 09:30:54,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:55,852 INFO Connection check task start + +2025-09-24 09:30:55,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:55,853 INFO Out dated connection ,size=0 + +2025-09-24 09:30:55,853 INFO Connection check task end + +2025-09-24 09:30:57,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:30:58,853 INFO Connection check task start + +2025-09-24 09:30:58,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:30:58,853 INFO Out dated connection ,size=0 + +2025-09-24 09:30:58,853 INFO Connection check task end + +2025-09-24 09:31:00,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:01,853 INFO Connection check task start + +2025-09-24 09:31:01,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:01,854 INFO Out dated connection ,size=0 + +2025-09-24 09:31:01,854 INFO Connection check task end + +2025-09-24 09:31:03,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:04,854 INFO Connection check task start + +2025-09-24 09:31:04,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:04,854 INFO Out dated connection ,size=0 + +2025-09-24 09:31:04,854 INFO Connection check task end + +2025-09-24 09:31:06,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:07,856 INFO Connection check task start + +2025-09-24 09:31:07,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:07,857 INFO Out dated connection ,size=0 + +2025-09-24 09:31:07,857 INFO Connection check task end + +2025-09-24 09:31:09,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:10,858 INFO Connection check task start + +2025-09-24 09:31:10,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:10,858 INFO Out dated connection ,size=0 + +2025-09-24 09:31:10,858 INFO Connection check task end + +2025-09-24 09:31:12,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:13,859 INFO Connection check task start + +2025-09-24 09:31:13,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:13,859 INFO Out dated connection ,size=0 + +2025-09-24 09:31:13,859 INFO Connection check task end + +2025-09-24 09:31:15,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:16,860 INFO Connection check task start + +2025-09-24 09:31:16,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:16,860 INFO Out dated connection ,size=0 + +2025-09-24 09:31:16,860 INFO Connection check task end + +2025-09-24 09:31:18,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:19,861 INFO Connection check task start + +2025-09-24 09:31:19,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:19,862 INFO Out dated connection ,size=0 + +2025-09-24 09:31:19,862 INFO Connection check task end + +2025-09-24 09:31:21,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:22,863 INFO Connection check task start + +2025-09-24 09:31:22,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:22,863 INFO Out dated connection ,size=0 + +2025-09-24 09:31:22,863 INFO Connection check task end + +2025-09-24 09:31:24,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:25,864 INFO Connection check task start + +2025-09-24 09:31:25,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:25,864 INFO Out dated connection ,size=0 + +2025-09-24 09:31:25,864 INFO Connection check task end + +2025-09-24 09:31:27,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:28,864 INFO Connection check task start + +2025-09-24 09:31:28,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:28,864 INFO Out dated connection ,size=0 + +2025-09-24 09:31:28,864 INFO Connection check task end + +2025-09-24 09:31:30,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:31,866 INFO Connection check task start + +2025-09-24 09:31:31,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:31,867 INFO Out dated connection ,size=0 + +2025-09-24 09:31:31,867 INFO Connection check task end + +2025-09-24 09:31:33,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:34,867 INFO Connection check task start + +2025-09-24 09:31:34,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:34,867 INFO Out dated connection ,size=0 + +2025-09-24 09:31:34,867 INFO Connection check task end + +2025-09-24 09:31:36,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:37,868 INFO Connection check task start + +2025-09-24 09:31:37,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:37,868 INFO Out dated connection ,size=0 + +2025-09-24 09:31:37,868 INFO Connection check task end + +2025-09-24 09:31:39,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:40,868 INFO Connection check task start + +2025-09-24 09:31:40,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:40,868 INFO Out dated connection ,size=0 + +2025-09-24 09:31:40,868 INFO Connection check task end + +2025-09-24 09:31:42,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:43,870 INFO Connection check task start + +2025-09-24 09:31:43,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:43,870 INFO Out dated connection ,size=0 + +2025-09-24 09:31:43,870 INFO Connection check task end + +2025-09-24 09:31:45,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:46,870 INFO Connection check task start + +2025-09-24 09:31:46,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:46,871 INFO Out dated connection ,size=0 + +2025-09-24 09:31:46,871 INFO Connection check task end + +2025-09-24 09:31:48,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:49,873 INFO Connection check task start + +2025-09-24 09:31:49,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:49,873 INFO Out dated connection ,size=0 + +2025-09-24 09:31:49,873 INFO Connection check task end + +2025-09-24 09:31:51,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:52,875 INFO Connection check task start + +2025-09-24 09:31:52,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:52,875 INFO Out dated connection ,size=0 + +2025-09-24 09:31:52,875 INFO Connection check task end + +2025-09-24 09:31:54,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:55,876 INFO Connection check task start + +2025-09-24 09:31:55,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:55,877 INFO Out dated connection ,size=0 + +2025-09-24 09:31:55,877 INFO Connection check task end + +2025-09-24 09:31:57,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:31:58,877 INFO Connection check task start + +2025-09-24 09:31:58,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:31:58,877 INFO Out dated connection ,size=0 + +2025-09-24 09:31:58,877 INFO Connection check task end + +2025-09-24 09:32:00,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:01,877 INFO Connection check task start + +2025-09-24 09:32:01,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:01,877 INFO Out dated connection ,size=0 + +2025-09-24 09:32:01,878 INFO Connection check task end + +2025-09-24 09:32:03,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:04,879 INFO Connection check task start + +2025-09-24 09:32:04,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:04,879 INFO Out dated connection ,size=0 + +2025-09-24 09:32:04,879 INFO Connection check task end + +2025-09-24 09:32:06,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:07,880 INFO Connection check task start + +2025-09-24 09:32:07,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:07,881 INFO Out dated connection ,size=0 + +2025-09-24 09:32:07,881 INFO Connection check task end + +2025-09-24 09:32:09,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:10,881 INFO Connection check task start + +2025-09-24 09:32:10,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:10,881 INFO Out dated connection ,size=0 + +2025-09-24 09:32:10,881 INFO Connection check task end + +2025-09-24 09:32:12,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:13,882 INFO Connection check task start + +2025-09-24 09:32:13,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:13,882 INFO Out dated connection ,size=0 + +2025-09-24 09:32:13,882 INFO Connection check task end + +2025-09-24 09:32:15,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:16,882 INFO Connection check task start + +2025-09-24 09:32:16,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:16,882 INFO Out dated connection ,size=0 + +2025-09-24 09:32:16,883 INFO Connection check task end + +2025-09-24 09:32:18,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:19,883 INFO Connection check task start + +2025-09-24 09:32:19,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:19,883 INFO Out dated connection ,size=0 + +2025-09-24 09:32:19,883 INFO Connection check task end + +2025-09-24 09:32:21,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:22,885 INFO Connection check task start + +2025-09-24 09:32:22,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:22,885 INFO Out dated connection ,size=0 + +2025-09-24 09:32:22,885 INFO Connection check task end + +2025-09-24 09:32:24,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:25,885 INFO Connection check task start + +2025-09-24 09:32:25,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:25,885 INFO Out dated connection ,size=0 + +2025-09-24 09:32:25,885 INFO Connection check task end + +2025-09-24 09:32:27,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:28,886 INFO Connection check task start + +2025-09-24 09:32:28,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:28,886 INFO Out dated connection ,size=0 + +2025-09-24 09:32:28,886 INFO Connection check task end + +2025-09-24 09:32:30,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:31,886 INFO Connection check task start + +2025-09-24 09:32:31,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:31,886 INFO Out dated connection ,size=0 + +2025-09-24 09:32:31,886 INFO Connection check task end + +2025-09-24 09:32:33,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:34,887 INFO Connection check task start + +2025-09-24 09:32:34,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:34,887 INFO Out dated connection ,size=0 + +2025-09-24 09:32:34,887 INFO Connection check task end + +2025-09-24 09:32:36,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:37,889 INFO Connection check task start + +2025-09-24 09:32:37,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:37,890 INFO Out dated connection ,size=0 + +2025-09-24 09:32:37,890 INFO Connection check task end + +2025-09-24 09:32:39,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:40,890 INFO Connection check task start + +2025-09-24 09:32:40,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:40,890 INFO Out dated connection ,size=0 + +2025-09-24 09:32:40,890 INFO Connection check task end + +2025-09-24 09:32:42,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:43,891 INFO Connection check task start + +2025-09-24 09:32:43,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:43,891 INFO Out dated connection ,size=0 + +2025-09-24 09:32:43,892 INFO Connection check task end + +2025-09-24 09:32:45,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:46,892 INFO Connection check task start + +2025-09-24 09:32:46,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:46,892 INFO Out dated connection ,size=0 + +2025-09-24 09:32:46,892 INFO Connection check task end + +2025-09-24 09:32:48,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:49,892 INFO Connection check task start + +2025-09-24 09:32:49,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:49,893 INFO Out dated connection ,size=0 + +2025-09-24 09:32:49,893 INFO Connection check task end + +2025-09-24 09:32:51,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:52,895 INFO Connection check task start + +2025-09-24 09:32:52,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:52,895 INFO Out dated connection ,size=0 + +2025-09-24 09:32:52,895 INFO Connection check task end + +2025-09-24 09:32:54,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:55,895 INFO Connection check task start + +2025-09-24 09:32:55,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:55,895 INFO Out dated connection ,size=0 + +2025-09-24 09:32:55,895 INFO Connection check task end + +2025-09-24 09:32:57,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:32:58,896 INFO Connection check task start + +2025-09-24 09:32:58,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:32:58,896 INFO Out dated connection ,size=0 + +2025-09-24 09:32:58,896 INFO Connection check task end + +2025-09-24 09:33:00,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:01,898 INFO Connection check task start + +2025-09-24 09:33:01,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:01,899 INFO Out dated connection ,size=0 + +2025-09-24 09:33:01,899 INFO Connection check task end + +2025-09-24 09:33:03,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:04,899 INFO Connection check task start + +2025-09-24 09:33:04,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:04,899 INFO Out dated connection ,size=0 + +2025-09-24 09:33:04,899 INFO Connection check task end + +2025-09-24 09:33:06,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:07,900 INFO Connection check task start + +2025-09-24 09:33:07,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:07,900 INFO Out dated connection ,size=0 + +2025-09-24 09:33:07,900 INFO Connection check task end + +2025-09-24 09:33:09,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:10,900 INFO Connection check task start + +2025-09-24 09:33:10,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:10,900 INFO Out dated connection ,size=0 + +2025-09-24 09:33:10,900 INFO Connection check task end + +2025-09-24 09:33:12,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:13,902 INFO Connection check task start + +2025-09-24 09:33:13,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:13,902 INFO Out dated connection ,size=0 + +2025-09-24 09:33:13,902 INFO Connection check task end + +2025-09-24 09:33:15,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:16,904 INFO Connection check task start + +2025-09-24 09:33:16,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:16,904 INFO Out dated connection ,size=0 + +2025-09-24 09:33:16,904 INFO Connection check task end + +2025-09-24 09:33:18,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:19,906 INFO Connection check task start + +2025-09-24 09:33:19,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:19,906 INFO Out dated connection ,size=0 + +2025-09-24 09:33:19,906 INFO Connection check task end + +2025-09-24 09:33:21,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:22,907 INFO Connection check task start + +2025-09-24 09:33:22,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:22,907 INFO Out dated connection ,size=0 + +2025-09-24 09:33:22,907 INFO Connection check task end + +2025-09-24 09:33:24,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:25,908 INFO Connection check task start + +2025-09-24 09:33:25,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:25,908 INFO Out dated connection ,size=0 + +2025-09-24 09:33:25,908 INFO Connection check task end + +2025-09-24 09:33:27,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:28,909 INFO Connection check task start + +2025-09-24 09:33:28,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:28,909 INFO Out dated connection ,size=0 + +2025-09-24 09:33:28,909 INFO Connection check task end + +2025-09-24 09:33:30,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:31,909 INFO Connection check task start + +2025-09-24 09:33:31,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:31,909 INFO Out dated connection ,size=0 + +2025-09-24 09:33:31,910 INFO Connection check task end + +2025-09-24 09:33:33,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:34,910 INFO Connection check task start + +2025-09-24 09:33:34,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:34,910 INFO Out dated connection ,size=0 + +2025-09-24 09:33:34,910 INFO Connection check task end + +2025-09-24 09:33:36,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:37,912 INFO Connection check task start + +2025-09-24 09:33:37,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:37,912 INFO Out dated connection ,size=0 + +2025-09-24 09:33:37,912 INFO Connection check task end + +2025-09-24 09:33:39,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:40,914 INFO Connection check task start + +2025-09-24 09:33:40,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:40,914 INFO Out dated connection ,size=0 + +2025-09-24 09:33:40,914 INFO Connection check task end + +2025-09-24 09:33:42,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:43,915 INFO Connection check task start + +2025-09-24 09:33:43,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:43,915 INFO Out dated connection ,size=0 + +2025-09-24 09:33:43,915 INFO Connection check task end + +2025-09-24 09:33:45,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:46,917 INFO Connection check task start + +2025-09-24 09:33:46,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:46,917 INFO Out dated connection ,size=0 + +2025-09-24 09:33:46,917 INFO Connection check task end + +2025-09-24 09:33:48,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:49,918 INFO Connection check task start + +2025-09-24 09:33:49,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:49,918 INFO Out dated connection ,size=0 + +2025-09-24 09:33:49,918 INFO Connection check task end + +2025-09-24 09:33:51,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:52,918 INFO Connection check task start + +2025-09-24 09:33:52,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:52,918 INFO Out dated connection ,size=0 + +2025-09-24 09:33:52,919 INFO Connection check task end + +2025-09-24 09:33:54,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:55,920 INFO Connection check task start + +2025-09-24 09:33:55,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:55,920 INFO Out dated connection ,size=0 + +2025-09-24 09:33:55,920 INFO Connection check task end + +2025-09-24 09:33:57,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:33:58,922 INFO Connection check task start + +2025-09-24 09:33:58,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:33:58,922 INFO Out dated connection ,size=0 + +2025-09-24 09:33:58,922 INFO Connection check task end + +2025-09-24 09:34:00,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:01,922 INFO Connection check task start + +2025-09-24 09:34:01,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:01,922 INFO Out dated connection ,size=0 + +2025-09-24 09:34:01,922 INFO Connection check task end + +2025-09-24 09:34:03,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:04,924 INFO Connection check task start + +2025-09-24 09:34:04,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:04,924 INFO Out dated connection ,size=0 + +2025-09-24 09:34:04,925 INFO Connection check task end + +2025-09-24 09:34:06,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:07,925 INFO Connection check task start + +2025-09-24 09:34:07,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:07,925 INFO Out dated connection ,size=0 + +2025-09-24 09:34:07,925 INFO Connection check task end + +2025-09-24 09:34:09,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:10,926 INFO Connection check task start + +2025-09-24 09:34:10,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:10,926 INFO Out dated connection ,size=0 + +2025-09-24 09:34:10,926 INFO Connection check task end + +2025-09-24 09:34:12,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:13,927 INFO Connection check task start + +2025-09-24 09:34:13,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:13,927 INFO Out dated connection ,size=0 + +2025-09-24 09:34:13,927 INFO Connection check task end + +2025-09-24 09:34:15,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:16,928 INFO Connection check task start + +2025-09-24 09:34:16,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:16,928 INFO Out dated connection ,size=0 + +2025-09-24 09:34:16,929 INFO Connection check task end + +2025-09-24 09:34:18,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:19,930 INFO Connection check task start + +2025-09-24 09:34:19,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:19,930 INFO Out dated connection ,size=0 + +2025-09-24 09:34:19,930 INFO Connection check task end + +2025-09-24 09:34:21,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:22,932 INFO Connection check task start + +2025-09-24 09:34:22,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:22,932 INFO Out dated connection ,size=0 + +2025-09-24 09:34:22,932 INFO Connection check task end + +2025-09-24 09:34:24,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:25,932 INFO Connection check task start + +2025-09-24 09:34:25,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:25,932 INFO Out dated connection ,size=0 + +2025-09-24 09:34:25,932 INFO Connection check task end + +2025-09-24 09:34:27,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:28,933 INFO Connection check task start + +2025-09-24 09:34:28,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:28,933 INFO Out dated connection ,size=0 + +2025-09-24 09:34:28,933 INFO Connection check task end + +2025-09-24 09:34:30,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:31,934 INFO Connection check task start + +2025-09-24 09:34:31,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:31,934 INFO Out dated connection ,size=0 + +2025-09-24 09:34:31,934 INFO Connection check task end + +2025-09-24 09:34:33,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:34,934 INFO Connection check task start + +2025-09-24 09:34:34,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:34,934 INFO Out dated connection ,size=0 + +2025-09-24 09:34:34,934 INFO Connection check task end + +2025-09-24 09:34:36,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:37,936 INFO Connection check task start + +2025-09-24 09:34:37,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:37,936 INFO Out dated connection ,size=0 + +2025-09-24 09:34:37,936 INFO Connection check task end + +2025-09-24 09:34:39,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:40,936 INFO Connection check task start + +2025-09-24 09:34:40,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:40,936 INFO Out dated connection ,size=0 + +2025-09-24 09:34:40,937 INFO Connection check task end + +2025-09-24 09:34:42,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:43,937 INFO Connection check task start + +2025-09-24 09:34:43,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:43,937 INFO Out dated connection ,size=0 + +2025-09-24 09:34:43,937 INFO Connection check task end + +2025-09-24 09:34:45,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:46,938 INFO Connection check task start + +2025-09-24 09:34:46,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:46,938 INFO Out dated connection ,size=0 + +2025-09-24 09:34:46,938 INFO Connection check task end + +2025-09-24 09:34:48,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:49,940 INFO Connection check task start + +2025-09-24 09:34:49,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:49,940 INFO Out dated connection ,size=0 + +2025-09-24 09:34:49,940 INFO Connection check task end + +2025-09-24 09:34:51,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:52,941 INFO Connection check task start + +2025-09-24 09:34:52,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:52,941 INFO Out dated connection ,size=0 + +2025-09-24 09:34:52,941 INFO Connection check task end + +2025-09-24 09:34:54,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:55,941 INFO Connection check task start + +2025-09-24 09:34:55,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:55,941 INFO Out dated connection ,size=0 + +2025-09-24 09:34:55,941 INFO Connection check task end + +2025-09-24 09:34:57,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:34:58,941 INFO Connection check task start + +2025-09-24 09:34:58,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:34:58,942 INFO Out dated connection ,size=0 + +2025-09-24 09:34:58,942 INFO Connection check task end + +2025-09-24 09:35:00,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:01,942 INFO Connection check task start + +2025-09-24 09:35:01,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:01,942 INFO Out dated connection ,size=0 + +2025-09-24 09:35:01,942 INFO Connection check task end + +2025-09-24 09:35:03,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:04,944 INFO Connection check task start + +2025-09-24 09:35:04,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:04,944 INFO Out dated connection ,size=0 + +2025-09-24 09:35:04,944 INFO Connection check task end + +2025-09-24 09:35:06,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:07,946 INFO Connection check task start + +2025-09-24 09:35:07,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:07,946 INFO Out dated connection ,size=0 + +2025-09-24 09:35:07,946 INFO Connection check task end + +2025-09-24 09:35:09,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:10,946 INFO Connection check task start + +2025-09-24 09:35:10,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:10,946 INFO Out dated connection ,size=0 + +2025-09-24 09:35:10,947 INFO Connection check task end + +2025-09-24 09:35:12,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:13,947 INFO Connection check task start + +2025-09-24 09:35:13,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:13,947 INFO Out dated connection ,size=0 + +2025-09-24 09:35:13,947 INFO Connection check task end + +2025-09-24 09:35:15,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:16,949 INFO Connection check task start + +2025-09-24 09:35:16,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:16,950 INFO Out dated connection ,size=0 + +2025-09-24 09:35:16,950 INFO Connection check task end + +2025-09-24 09:35:18,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:19,951 INFO Connection check task start + +2025-09-24 09:35:19,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:19,951 INFO Out dated connection ,size=0 + +2025-09-24 09:35:19,951 INFO Connection check task end + +2025-09-24 09:35:21,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:22,951 INFO Connection check task start + +2025-09-24 09:35:22,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:22,952 INFO Out dated connection ,size=0 + +2025-09-24 09:35:22,952 INFO Connection check task end + +2025-09-24 09:35:24,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:25,953 INFO Connection check task start + +2025-09-24 09:35:25,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:25,953 INFO Out dated connection ,size=0 + +2025-09-24 09:35:25,953 INFO Connection check task end + +2025-09-24 09:35:27,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:28,953 INFO Connection check task start + +2025-09-24 09:35:28,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:28,953 INFO Out dated connection ,size=0 + +2025-09-24 09:35:28,953 INFO Connection check task end + +2025-09-24 09:35:30,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:31,954 INFO Connection check task start + +2025-09-24 09:35:31,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:31,954 INFO Out dated connection ,size=0 + +2025-09-24 09:35:31,954 INFO Connection check task end + +2025-09-24 09:35:33,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:34,954 INFO Connection check task start + +2025-09-24 09:35:34,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:34,955 INFO Out dated connection ,size=0 + +2025-09-24 09:35:34,955 INFO Connection check task end + +2025-09-24 09:35:36,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:37,956 INFO Connection check task start + +2025-09-24 09:35:37,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:37,956 INFO Out dated connection ,size=0 + +2025-09-24 09:35:37,956 INFO Connection check task end + +2025-09-24 09:35:39,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:40,957 INFO Connection check task start + +2025-09-24 09:35:40,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:40,957 INFO Out dated connection ,size=0 + +2025-09-24 09:35:40,957 INFO Connection check task end + +2025-09-24 09:35:42,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:43,959 INFO Connection check task start + +2025-09-24 09:35:43,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:43,959 INFO Out dated connection ,size=0 + +2025-09-24 09:35:43,959 INFO Connection check task end + +2025-09-24 09:35:45,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:46,960 INFO Connection check task start + +2025-09-24 09:35:46,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:46,960 INFO Out dated connection ,size=0 + +2025-09-24 09:35:46,960 INFO Connection check task end + +2025-09-24 09:35:48,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:49,962 INFO Connection check task start + +2025-09-24 09:35:49,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:49,962 INFO Out dated connection ,size=0 + +2025-09-24 09:35:49,962 INFO Connection check task end + +2025-09-24 09:35:51,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:52,964 INFO Connection check task start + +2025-09-24 09:35:52,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:52,964 INFO Out dated connection ,size=0 + +2025-09-24 09:35:52,964 INFO Connection check task end + +2025-09-24 09:35:54,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:55,965 INFO Connection check task start + +2025-09-24 09:35:55,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:55,965 INFO Out dated connection ,size=0 + +2025-09-24 09:35:55,965 INFO Connection check task end + +2025-09-24 09:35:57,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:35:58,966 INFO Connection check task start + +2025-09-24 09:35:58,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:35:58,966 INFO Out dated connection ,size=0 + +2025-09-24 09:35:58,966 INFO Connection check task end + +2025-09-24 09:36:00,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:01,966 INFO Connection check task start + +2025-09-24 09:36:01,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:01,966 INFO Out dated connection ,size=0 + +2025-09-24 09:36:01,966 INFO Connection check task end + +2025-09-24 09:36:03,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:04,967 INFO Connection check task start + +2025-09-24 09:36:04,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:04,967 INFO Out dated connection ,size=0 + +2025-09-24 09:36:04,967 INFO Connection check task end + +2025-09-24 09:36:06,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:07,969 INFO Connection check task start + +2025-09-24 09:36:07,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:07,969 INFO Out dated connection ,size=0 + +2025-09-24 09:36:07,969 INFO Connection check task end + +2025-09-24 09:36:09,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:10,970 INFO Connection check task start + +2025-09-24 09:36:10,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:10,970 INFO Out dated connection ,size=0 + +2025-09-24 09:36:10,970 INFO Connection check task end + +2025-09-24 09:36:12,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:13,972 INFO Connection check task start + +2025-09-24 09:36:13,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:13,972 INFO Out dated connection ,size=0 + +2025-09-24 09:36:13,972 INFO Connection check task end + +2025-09-24 09:36:15,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:16,974 INFO Connection check task start + +2025-09-24 09:36:16,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:16,974 INFO Out dated connection ,size=0 + +2025-09-24 09:36:16,974 INFO Connection check task end + +2025-09-24 09:36:18,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:19,974 INFO Connection check task start + +2025-09-24 09:36:19,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:19,975 INFO Out dated connection ,size=0 + +2025-09-24 09:36:19,975 INFO Connection check task end + +2025-09-24 09:36:21,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:22,975 INFO Connection check task start + +2025-09-24 09:36:22,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:22,975 INFO Out dated connection ,size=0 + +2025-09-24 09:36:22,975 INFO Connection check task end + +2025-09-24 09:36:24,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:25,975 INFO Connection check task start + +2025-09-24 09:36:25,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:25,976 INFO Out dated connection ,size=0 + +2025-09-24 09:36:25,976 INFO Connection check task end + +2025-09-24 09:36:27,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:28,977 INFO Connection check task start + +2025-09-24 09:36:28,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:28,977 INFO Out dated connection ,size=0 + +2025-09-24 09:36:28,977 INFO Connection check task end + +2025-09-24 09:36:30,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:31,978 INFO Connection check task start + +2025-09-24 09:36:31,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:31,978 INFO Out dated connection ,size=0 + +2025-09-24 09:36:31,978 INFO Connection check task end + +2025-09-24 09:36:33,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:34,979 INFO Connection check task start + +2025-09-24 09:36:34,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:34,979 INFO Out dated connection ,size=0 + +2025-09-24 09:36:34,979 INFO Connection check task end + +2025-09-24 09:36:36,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:37,980 INFO Connection check task start + +2025-09-24 09:36:37,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:37,980 INFO Out dated connection ,size=0 + +2025-09-24 09:36:37,980 INFO Connection check task end + +2025-09-24 09:36:39,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:40,981 INFO Connection check task start + +2025-09-24 09:36:40,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:40,981 INFO Out dated connection ,size=0 + +2025-09-24 09:36:40,981 INFO Connection check task end + +2025-09-24 09:36:42,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:43,983 INFO Connection check task start + +2025-09-24 09:36:43,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:43,983 INFO Out dated connection ,size=0 + +2025-09-24 09:36:43,983 INFO Connection check task end + +2025-09-24 09:36:45,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:46,984 INFO Connection check task start + +2025-09-24 09:36:46,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:46,984 INFO Out dated connection ,size=0 + +2025-09-24 09:36:46,984 INFO Connection check task end + +2025-09-24 09:36:48,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:49,986 INFO Connection check task start + +2025-09-24 09:36:49,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:49,987 INFO Out dated connection ,size=0 + +2025-09-24 09:36:49,987 INFO Connection check task end + +2025-09-24 09:36:51,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:52,988 INFO Connection check task start + +2025-09-24 09:36:52,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:52,989 INFO Out dated connection ,size=0 + +2025-09-24 09:36:52,989 INFO Connection check task end + +2025-09-24 09:36:54,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:55,989 INFO Connection check task start + +2025-09-24 09:36:55,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:55,989 INFO Out dated connection ,size=0 + +2025-09-24 09:36:55,989 INFO Connection check task end + +2025-09-24 09:36:57,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:36:58,992 INFO Connection check task start + +2025-09-24 09:36:58,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:36:58,992 INFO Out dated connection ,size=0 + +2025-09-24 09:36:58,992 INFO Connection check task end + +2025-09-24 09:37:00,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:01,994 INFO Connection check task start + +2025-09-24 09:37:01,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:01,994 INFO Out dated connection ,size=0 + +2025-09-24 09:37:01,994 INFO Connection check task end + +2025-09-24 09:37:03,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:04,995 INFO Connection check task start + +2025-09-24 09:37:04,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:04,995 INFO Out dated connection ,size=0 + +2025-09-24 09:37:04,995 INFO Connection check task end + +2025-09-24 09:37:06,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:07,995 INFO Connection check task start + +2025-09-24 09:37:07,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:07,996 INFO Out dated connection ,size=0 + +2025-09-24 09:37:07,996 INFO Connection check task end + +2025-09-24 09:37:09,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:10,997 INFO Connection check task start + +2025-09-24 09:37:10,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:10,997 INFO Out dated connection ,size=0 + +2025-09-24 09:37:10,997 INFO Connection check task end + +2025-09-24 09:37:12,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:13,998 INFO Connection check task start + +2025-09-24 09:37:13,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:13,998 INFO Out dated connection ,size=0 + +2025-09-24 09:37:13,998 INFO Connection check task end + +2025-09-24 09:37:15,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:16,999 INFO Connection check task start + +2025-09-24 09:37:16,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:16,999 INFO Out dated connection ,size=0 + +2025-09-24 09:37:16,999 INFO Connection check task end + +2025-09-24 09:37:18,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:20,000 INFO Connection check task start + +2025-09-24 09:37:20,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:20,001 INFO Out dated connection ,size=0 + +2025-09-24 09:37:20,001 INFO Connection check task end + +2025-09-24 09:37:21,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:23,001 INFO Connection check task start + +2025-09-24 09:37:23,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:23,001 INFO Out dated connection ,size=0 + +2025-09-24 09:37:23,001 INFO Connection check task end + +2025-09-24 09:37:24,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:26,002 INFO Connection check task start + +2025-09-24 09:37:26,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:26,002 INFO Out dated connection ,size=0 + +2025-09-24 09:37:26,002 INFO Connection check task end + +2025-09-24 09:37:27,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:29,002 INFO Connection check task start + +2025-09-24 09:37:29,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:29,002 INFO Out dated connection ,size=0 + +2025-09-24 09:37:29,002 INFO Connection check task end + +2025-09-24 09:37:30,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:32,003 INFO Connection check task start + +2025-09-24 09:37:32,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:32,003 INFO Out dated connection ,size=0 + +2025-09-24 09:37:32,003 INFO Connection check task end + +2025-09-24 09:37:33,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:35,004 INFO Connection check task start + +2025-09-24 09:37:35,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:35,004 INFO Out dated connection ,size=0 + +2025-09-24 09:37:35,004 INFO Connection check task end + +2025-09-24 09:37:36,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:38,004 INFO Connection check task start + +2025-09-24 09:37:38,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:38,004 INFO Out dated connection ,size=0 + +2025-09-24 09:37:38,004 INFO Connection check task end + +2025-09-24 09:37:39,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:41,005 INFO Connection check task start + +2025-09-24 09:37:41,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:41,005 INFO Out dated connection ,size=0 + +2025-09-24 09:37:41,006 INFO Connection check task end + +2025-09-24 09:37:42,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:44,007 INFO Connection check task start + +2025-09-24 09:37:44,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:44,008 INFO Out dated connection ,size=0 + +2025-09-24 09:37:44,008 INFO Connection check task end + +2025-09-24 09:37:45,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:47,008 INFO Connection check task start + +2025-09-24 09:37:47,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:47,008 INFO Out dated connection ,size=0 + +2025-09-24 09:37:47,008 INFO Connection check task end + +2025-09-24 09:37:48,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:50,008 INFO Connection check task start + +2025-09-24 09:37:50,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:50,009 INFO Out dated connection ,size=0 + +2025-09-24 09:37:50,009 INFO Connection check task end + +2025-09-24 09:37:51,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:53,009 INFO Connection check task start + +2025-09-24 09:37:53,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:53,009 INFO Out dated connection ,size=0 + +2025-09-24 09:37:53,009 INFO Connection check task end + +2025-09-24 09:37:54,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:56,009 INFO Connection check task start + +2025-09-24 09:37:56,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:56,010 INFO Out dated connection ,size=0 + +2025-09-24 09:37:56,010 INFO Connection check task end + +2025-09-24 09:37:57,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:37:59,010 INFO Connection check task start + +2025-09-24 09:37:59,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:37:59,010 INFO Out dated connection ,size=0 + +2025-09-24 09:37:59,010 INFO Connection check task end + +2025-09-24 09:38:00,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:02,010 INFO Connection check task start + +2025-09-24 09:38:02,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:02,011 INFO Out dated connection ,size=0 + +2025-09-24 09:38:02,011 INFO Connection check task end + +2025-09-24 09:38:03,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:05,012 INFO Connection check task start + +2025-09-24 09:38:05,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:05,012 INFO Out dated connection ,size=0 + +2025-09-24 09:38:05,012 INFO Connection check task end + +2025-09-24 09:38:06,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:08,012 INFO Connection check task start + +2025-09-24 09:38:08,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:08,012 INFO Out dated connection ,size=0 + +2025-09-24 09:38:08,012 INFO Connection check task end + +2025-09-24 09:38:09,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:11,013 INFO Connection check task start + +2025-09-24 09:38:11,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:11,013 INFO Out dated connection ,size=0 + +2025-09-24 09:38:11,014 INFO Connection check task end + +2025-09-24 09:38:12,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:14,014 INFO Connection check task start + +2025-09-24 09:38:14,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:14,014 INFO Out dated connection ,size=0 + +2025-09-24 09:38:14,014 INFO Connection check task end + +2025-09-24 09:38:15,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:17,016 INFO Connection check task start + +2025-09-24 09:38:17,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:17,016 INFO Out dated connection ,size=0 + +2025-09-24 09:38:17,016 INFO Connection check task end + +2025-09-24 09:38:18,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:20,017 INFO Connection check task start + +2025-09-24 09:38:20,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:20,017 INFO Out dated connection ,size=0 + +2025-09-24 09:38:20,017 INFO Connection check task end + +2025-09-24 09:38:21,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:23,019 INFO Connection check task start + +2025-09-24 09:38:23,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:23,019 INFO Out dated connection ,size=0 + +2025-09-24 09:38:23,019 INFO Connection check task end + +2025-09-24 09:38:24,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:26,021 INFO Connection check task start + +2025-09-24 09:38:26,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:26,021 INFO Out dated connection ,size=0 + +2025-09-24 09:38:26,021 INFO Connection check task end + +2025-09-24 09:38:27,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:29,022 INFO Connection check task start + +2025-09-24 09:38:29,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:29,022 INFO Out dated connection ,size=0 + +2025-09-24 09:38:29,022 INFO Connection check task end + +2025-09-24 09:38:30,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:32,024 INFO Connection check task start + +2025-09-24 09:38:32,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:32,024 INFO Out dated connection ,size=0 + +2025-09-24 09:38:32,025 INFO Connection check task end + +2025-09-24 09:38:33,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:35,025 INFO Connection check task start + +2025-09-24 09:38:35,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:35,025 INFO Out dated connection ,size=0 + +2025-09-24 09:38:35,025 INFO Connection check task end + +2025-09-24 09:38:36,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:38,025 INFO Connection check task start + +2025-09-24 09:38:38,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:38,026 INFO Out dated connection ,size=0 + +2025-09-24 09:38:38,026 INFO Connection check task end + +2025-09-24 09:38:39,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:41,026 INFO Connection check task start + +2025-09-24 09:38:41,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:41,026 INFO Out dated connection ,size=0 + +2025-09-24 09:38:41,026 INFO Connection check task end + +2025-09-24 09:38:42,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:44,027 INFO Connection check task start + +2025-09-24 09:38:44,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:44,027 INFO Out dated connection ,size=0 + +2025-09-24 09:38:44,027 INFO Connection check task end + +2025-09-24 09:38:45,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:47,029 INFO Connection check task start + +2025-09-24 09:38:47,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:47,029 INFO Out dated connection ,size=0 + +2025-09-24 09:38:47,029 INFO Connection check task end + +2025-09-24 09:38:48,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:50,031 INFO Connection check task start + +2025-09-24 09:38:50,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:50,032 INFO Out dated connection ,size=0 + +2025-09-24 09:38:50,032 INFO Connection check task end + +2025-09-24 09:38:51,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:53,033 INFO Connection check task start + +2025-09-24 09:38:53,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:53,033 INFO Out dated connection ,size=0 + +2025-09-24 09:38:53,033 INFO Connection check task end + +2025-09-24 09:38:54,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:56,035 INFO Connection check task start + +2025-09-24 09:38:56,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:56,035 INFO Out dated connection ,size=0 + +2025-09-24 09:38:56,035 INFO Connection check task end + +2025-09-24 09:38:57,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:38:59,036 INFO Connection check task start + +2025-09-24 09:38:59,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:38:59,036 INFO Out dated connection ,size=0 + +2025-09-24 09:38:59,036 INFO Connection check task end + +2025-09-24 09:39:00,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:02,038 INFO Connection check task start + +2025-09-24 09:39:02,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:02,039 INFO Out dated connection ,size=0 + +2025-09-24 09:39:02,039 INFO Connection check task end + +2025-09-24 09:39:03,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:05,039 INFO Connection check task start + +2025-09-24 09:39:05,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:05,039 INFO Out dated connection ,size=0 + +2025-09-24 09:39:05,039 INFO Connection check task end + +2025-09-24 09:39:06,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:08,040 INFO Connection check task start + +2025-09-24 09:39:08,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:08,041 INFO Out dated connection ,size=0 + +2025-09-24 09:39:08,041 INFO Connection check task end + +2025-09-24 09:39:09,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:11,041 INFO Connection check task start + +2025-09-24 09:39:11,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:11,041 INFO Out dated connection ,size=0 + +2025-09-24 09:39:11,041 INFO Connection check task end + +2025-09-24 09:39:12,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:14,044 INFO Connection check task start + +2025-09-24 09:39:14,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:14,044 INFO Out dated connection ,size=0 + +2025-09-24 09:39:14,044 INFO Connection check task end + +2025-09-24 09:39:15,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:17,045 INFO Connection check task start + +2025-09-24 09:39:17,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:17,045 INFO Out dated connection ,size=0 + +2025-09-24 09:39:17,045 INFO Connection check task end + +2025-09-24 09:39:18,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:20,045 INFO Connection check task start + +2025-09-24 09:39:20,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:20,046 INFO Out dated connection ,size=0 + +2025-09-24 09:39:20,046 INFO Connection check task end + +2025-09-24 09:39:21,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:23,047 INFO Connection check task start + +2025-09-24 09:39:23,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:23,047 INFO Out dated connection ,size=0 + +2025-09-24 09:39:23,047 INFO Connection check task end + +2025-09-24 09:39:24,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:26,049 INFO Connection check task start + +2025-09-24 09:39:26,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:26,049 INFO Out dated connection ,size=0 + +2025-09-24 09:39:26,049 INFO Connection check task end + +2025-09-24 09:39:27,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:29,050 INFO Connection check task start + +2025-09-24 09:39:29,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:29,050 INFO Out dated connection ,size=0 + +2025-09-24 09:39:29,050 INFO Connection check task end + +2025-09-24 09:39:30,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:32,051 INFO Connection check task start + +2025-09-24 09:39:32,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:32,051 INFO Out dated connection ,size=0 + +2025-09-24 09:39:32,051 INFO Connection check task end + +2025-09-24 09:39:33,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:35,052 INFO Connection check task start + +2025-09-24 09:39:35,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:35,052 INFO Out dated connection ,size=0 + +2025-09-24 09:39:35,052 INFO Connection check task end + +2025-09-24 09:39:36,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:38,053 INFO Connection check task start + +2025-09-24 09:39:38,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:38,053 INFO Out dated connection ,size=0 + +2025-09-24 09:39:38,053 INFO Connection check task end + +2025-09-24 09:39:39,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:41,053 INFO Connection check task start + +2025-09-24 09:39:41,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:41,054 INFO Out dated connection ,size=0 + +2025-09-24 09:39:41,054 INFO Connection check task end + +2025-09-24 09:39:42,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:44,054 INFO Connection check task start + +2025-09-24 09:39:44,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:44,054 INFO Out dated connection ,size=0 + +2025-09-24 09:39:44,054 INFO Connection check task end + +2025-09-24 09:39:45,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:47,055 INFO Connection check task start + +2025-09-24 09:39:47,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:47,055 INFO Out dated connection ,size=0 + +2025-09-24 09:39:47,055 INFO Connection check task end + +2025-09-24 09:39:48,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:50,056 INFO Connection check task start + +2025-09-24 09:39:50,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:50,056 INFO Out dated connection ,size=0 + +2025-09-24 09:39:50,056 INFO Connection check task end + +2025-09-24 09:39:51,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:53,057 INFO Connection check task start + +2025-09-24 09:39:53,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:53,057 INFO Out dated connection ,size=0 + +2025-09-24 09:39:53,057 INFO Connection check task end + +2025-09-24 09:39:54,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:56,058 INFO Connection check task start + +2025-09-24 09:39:56,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:56,058 INFO Out dated connection ,size=0 + +2025-09-24 09:39:56,058 INFO Connection check task end + +2025-09-24 09:39:57,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:39:59,059 INFO Connection check task start + +2025-09-24 09:39:59,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:39:59,059 INFO Out dated connection ,size=0 + +2025-09-24 09:39:59,059 INFO Connection check task end + +2025-09-24 09:40:00,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:02,061 INFO Connection check task start + +2025-09-24 09:40:02,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:02,062 INFO Out dated connection ,size=0 + +2025-09-24 09:40:02,062 INFO Connection check task end + +2025-09-24 09:40:03,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:05,062 INFO Connection check task start + +2025-09-24 09:40:05,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:05,062 INFO Out dated connection ,size=0 + +2025-09-24 09:40:05,062 INFO Connection check task end + +2025-09-24 09:40:06,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:08,063 INFO Connection check task start + +2025-09-24 09:40:08,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:08,063 INFO Out dated connection ,size=0 + +2025-09-24 09:40:08,063 INFO Connection check task end + +2025-09-24 09:40:09,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:11,063 INFO Connection check task start + +2025-09-24 09:40:11,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:11,063 INFO Out dated connection ,size=0 + +2025-09-24 09:40:11,063 INFO Connection check task end + +2025-09-24 09:40:12,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:14,065 INFO Connection check task start + +2025-09-24 09:40:14,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:14,065 INFO Out dated connection ,size=0 + +2025-09-24 09:40:14,065 INFO Connection check task end + +2025-09-24 09:40:15,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:17,067 INFO Connection check task start + +2025-09-24 09:40:17,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:17,067 INFO Out dated connection ,size=0 + +2025-09-24 09:40:17,067 INFO Connection check task end + +2025-09-24 09:40:18,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:20,067 INFO Connection check task start + +2025-09-24 09:40:20,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:20,068 INFO Out dated connection ,size=0 + +2025-09-24 09:40:20,068 INFO Connection check task end + +2025-09-24 09:40:21,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:23,069 INFO Connection check task start + +2025-09-24 09:40:23,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:23,069 INFO Out dated connection ,size=0 + +2025-09-24 09:40:23,069 INFO Connection check task end + +2025-09-24 09:40:24,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:26,070 INFO Connection check task start + +2025-09-24 09:40:26,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:26,070 INFO Out dated connection ,size=0 + +2025-09-24 09:40:26,070 INFO Connection check task end + +2025-09-24 09:40:27,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:29,070 INFO Connection check task start + +2025-09-24 09:40:29,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:29,070 INFO Out dated connection ,size=0 + +2025-09-24 09:40:29,070 INFO Connection check task end + +2025-09-24 09:40:30,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:32,073 INFO Connection check task start + +2025-09-24 09:40:32,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:32,073 INFO Out dated connection ,size=0 + +2025-09-24 09:40:32,073 INFO Connection check task end + +2025-09-24 09:40:33,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:35,075 INFO Connection check task start + +2025-09-24 09:40:35,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:35,075 INFO Out dated connection ,size=0 + +2025-09-24 09:40:35,075 INFO Connection check task end + +2025-09-24 09:40:36,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:38,077 INFO Connection check task start + +2025-09-24 09:40:38,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:38,078 INFO Out dated connection ,size=0 + +2025-09-24 09:40:38,078 INFO Connection check task end + +2025-09-24 09:40:39,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:41,079 INFO Connection check task start + +2025-09-24 09:40:41,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:41,079 INFO Out dated connection ,size=0 + +2025-09-24 09:40:41,079 INFO Connection check task end + +2025-09-24 09:40:42,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:44,081 INFO Connection check task start + +2025-09-24 09:40:44,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:44,081 INFO Out dated connection ,size=0 + +2025-09-24 09:40:44,081 INFO Connection check task end + +2025-09-24 09:40:45,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:47,083 INFO Connection check task start + +2025-09-24 09:40:47,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:47,083 INFO Out dated connection ,size=0 + +2025-09-24 09:40:47,083 INFO Connection check task end + +2025-09-24 09:40:48,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:50,084 INFO Connection check task start + +2025-09-24 09:40:50,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:50,084 INFO Out dated connection ,size=0 + +2025-09-24 09:40:50,084 INFO Connection check task end + +2025-09-24 09:40:51,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:53,086 INFO Connection check task start + +2025-09-24 09:40:53,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:53,086 INFO Out dated connection ,size=0 + +2025-09-24 09:40:53,086 INFO Connection check task end + +2025-09-24 09:40:54,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:56,086 INFO Connection check task start + +2025-09-24 09:40:56,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:56,086 INFO Out dated connection ,size=0 + +2025-09-24 09:40:56,087 INFO Connection check task end + +2025-09-24 09:40:57,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:40:59,087 INFO Connection check task start + +2025-09-24 09:40:59,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:40:59,087 INFO Out dated connection ,size=0 + +2025-09-24 09:40:59,087 INFO Connection check task end + +2025-09-24 09:41:00,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:02,089 INFO Connection check task start + +2025-09-24 09:41:02,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:02,089 INFO Out dated connection ,size=0 + +2025-09-24 09:41:02,089 INFO Connection check task end + +2025-09-24 09:41:03,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:05,091 INFO Connection check task start + +2025-09-24 09:41:05,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:05,091 INFO Out dated connection ,size=0 + +2025-09-24 09:41:05,091 INFO Connection check task end + +2025-09-24 09:41:06,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:08,093 INFO Connection check task start + +2025-09-24 09:41:08,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:08,094 INFO Out dated connection ,size=0 + +2025-09-24 09:41:08,094 INFO Connection check task end + +2025-09-24 09:41:09,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:11,094 INFO Connection check task start + +2025-09-24 09:41:11,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:11,094 INFO Out dated connection ,size=0 + +2025-09-24 09:41:11,094 INFO Connection check task end + +2025-09-24 09:41:12,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:14,096 INFO Connection check task start + +2025-09-24 09:41:14,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:14,096 INFO Out dated connection ,size=0 + +2025-09-24 09:41:14,096 INFO Connection check task end + +2025-09-24 09:41:15,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:17,096 INFO Connection check task start + +2025-09-24 09:41:17,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:17,097 INFO Out dated connection ,size=0 + +2025-09-24 09:41:17,097 INFO Connection check task end + +2025-09-24 09:41:18,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:20,097 INFO Connection check task start + +2025-09-24 09:41:20,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:20,097 INFO Out dated connection ,size=0 + +2025-09-24 09:41:20,097 INFO Connection check task end + +2025-09-24 09:41:21,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:23,097 INFO Connection check task start + +2025-09-24 09:41:23,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:23,097 INFO Out dated connection ,size=0 + +2025-09-24 09:41:23,098 INFO Connection check task end + +2025-09-24 09:41:24,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:26,098 INFO Connection check task start + +2025-09-24 09:41:26,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:26,098 INFO Out dated connection ,size=0 + +2025-09-24 09:41:26,099 INFO Connection check task end + +2025-09-24 09:41:27,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:29,101 INFO Connection check task start + +2025-09-24 09:41:29,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:29,101 INFO Out dated connection ,size=0 + +2025-09-24 09:41:29,101 INFO Connection check task end + +2025-09-24 09:41:30,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:32,102 INFO Connection check task start + +2025-09-24 09:41:32,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:32,102 INFO Out dated connection ,size=0 + +2025-09-24 09:41:32,102 INFO Connection check task end + +2025-09-24 09:41:33,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:35,104 INFO Connection check task start + +2025-09-24 09:41:35,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:35,104 INFO Out dated connection ,size=0 + +2025-09-24 09:41:35,104 INFO Connection check task end + +2025-09-24 09:41:36,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:38,106 INFO Connection check task start + +2025-09-24 09:41:38,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:38,106 INFO Out dated connection ,size=0 + +2025-09-24 09:41:38,106 INFO Connection check task end + +2025-09-24 09:41:39,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:41,108 INFO Connection check task start + +2025-09-24 09:41:41,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:41,108 INFO Out dated connection ,size=0 + +2025-09-24 09:41:41,108 INFO Connection check task end + +2025-09-24 09:41:42,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:44,108 INFO Connection check task start + +2025-09-24 09:41:44,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:44,109 INFO Out dated connection ,size=0 + +2025-09-24 09:41:44,109 INFO Connection check task end + +2025-09-24 09:41:45,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:47,110 INFO Connection check task start + +2025-09-24 09:41:47,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:47,110 INFO Out dated connection ,size=0 + +2025-09-24 09:41:47,110 INFO Connection check task end + +2025-09-24 09:41:48,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:50,113 INFO Connection check task start + +2025-09-24 09:41:50,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:50,113 INFO Out dated connection ,size=0 + +2025-09-24 09:41:50,113 INFO Connection check task end + +2025-09-24 09:41:51,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:53,115 INFO Connection check task start + +2025-09-24 09:41:53,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:53,115 INFO Out dated connection ,size=0 + +2025-09-24 09:41:53,115 INFO Connection check task end + +2025-09-24 09:41:54,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:56,118 INFO Connection check task start + +2025-09-24 09:41:56,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:56,118 INFO Out dated connection ,size=0 + +2025-09-24 09:41:56,118 INFO Connection check task end + +2025-09-24 09:41:57,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:41:59,120 INFO Connection check task start + +2025-09-24 09:41:59,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:41:59,121 INFO Out dated connection ,size=0 + +2025-09-24 09:41:59,121 INFO Connection check task end + +2025-09-24 09:42:00,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:02,123 INFO Connection check task start + +2025-09-24 09:42:02,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:02,123 INFO Out dated connection ,size=0 + +2025-09-24 09:42:02,123 INFO Connection check task end + +2025-09-24 09:42:03,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:05,125 INFO Connection check task start + +2025-09-24 09:42:05,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:05,126 INFO Out dated connection ,size=0 + +2025-09-24 09:42:05,126 INFO Connection check task end + +2025-09-24 09:42:06,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:08,128 INFO Connection check task start + +2025-09-24 09:42:08,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:08,128 INFO Out dated connection ,size=0 + +2025-09-24 09:42:08,128 INFO Connection check task end + +2025-09-24 09:42:09,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:11,130 INFO Connection check task start + +2025-09-24 09:42:11,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:11,131 INFO Out dated connection ,size=0 + +2025-09-24 09:42:11,131 INFO Connection check task end + +2025-09-24 09:42:12,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:14,133 INFO Connection check task start + +2025-09-24 09:42:14,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:14,133 INFO Out dated connection ,size=0 + +2025-09-24 09:42:14,133 INFO Connection check task end + +2025-09-24 09:42:15,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:17,133 INFO Connection check task start + +2025-09-24 09:42:17,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:17,134 INFO Out dated connection ,size=0 + +2025-09-24 09:42:17,134 INFO Connection check task end + +2025-09-24 09:42:18,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:20,134 INFO Connection check task start + +2025-09-24 09:42:20,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:20,146 INFO Out dated connection ,size=0 + +2025-09-24 09:42:20,146 INFO Connection check task end + +2025-09-24 09:42:21,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:23,147 INFO Connection check task start + +2025-09-24 09:42:23,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:23,147 INFO Out dated connection ,size=0 + +2025-09-24 09:42:23,147 INFO Connection check task end + +2025-09-24 09:42:24,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:26,149 INFO Connection check task start + +2025-09-24 09:42:26,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:26,150 INFO Out dated connection ,size=0 + +2025-09-24 09:42:26,150 INFO Connection check task end + +2025-09-24 09:42:27,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:29,151 INFO Connection check task start + +2025-09-24 09:42:29,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:29,151 INFO Out dated connection ,size=0 + +2025-09-24 09:42:29,151 INFO Connection check task end + +2025-09-24 09:42:30,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:32,153 INFO Connection check task start + +2025-09-24 09:42:32,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:32,153 INFO Out dated connection ,size=0 + +2025-09-24 09:42:32,153 INFO Connection check task end + +2025-09-24 09:42:33,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:35,154 INFO Connection check task start + +2025-09-24 09:42:35,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:35,154 INFO Out dated connection ,size=0 + +2025-09-24 09:42:35,154 INFO Connection check task end + +2025-09-24 09:42:36,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:38,155 INFO Connection check task start + +2025-09-24 09:42:38,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:38,155 INFO Out dated connection ,size=0 + +2025-09-24 09:42:38,155 INFO Connection check task end + +2025-09-24 09:42:39,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:41,158 INFO Connection check task start + +2025-09-24 09:42:41,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:41,158 INFO Out dated connection ,size=0 + +2025-09-24 09:42:41,158 INFO Connection check task end + +2025-09-24 09:42:42,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:44,160 INFO Connection check task start + +2025-09-24 09:42:44,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:44,160 INFO Out dated connection ,size=0 + +2025-09-24 09:42:44,160 INFO Connection check task end + +2025-09-24 09:42:45,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:47,163 INFO Connection check task start + +2025-09-24 09:42:47,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:47,163 INFO Out dated connection ,size=0 + +2025-09-24 09:42:47,163 INFO Connection check task end + +2025-09-24 09:42:48,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:50,164 INFO Connection check task start + +2025-09-24 09:42:50,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:50,164 INFO Out dated connection ,size=0 + +2025-09-24 09:42:50,164 INFO Connection check task end + +2025-09-24 09:42:51,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:53,164 INFO Connection check task start + +2025-09-24 09:42:53,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:53,165 INFO Out dated connection ,size=0 + +2025-09-24 09:42:53,165 INFO Connection check task end + +2025-09-24 09:42:54,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:56,165 INFO Connection check task start + +2025-09-24 09:42:56,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:56,165 INFO Out dated connection ,size=0 + +2025-09-24 09:42:56,165 INFO Connection check task end + +2025-09-24 09:42:57,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:42:59,167 INFO Connection check task start + +2025-09-24 09:42:59,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:42:59,167 INFO Out dated connection ,size=0 + +2025-09-24 09:42:59,167 INFO Connection check task end + +2025-09-24 09:43:00,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:02,168 INFO Connection check task start + +2025-09-24 09:43:02,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:02,168 INFO Out dated connection ,size=0 + +2025-09-24 09:43:02,168 INFO Connection check task end + +2025-09-24 09:43:03,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:05,169 INFO Connection check task start + +2025-09-24 09:43:05,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:05,169 INFO Out dated connection ,size=0 + +2025-09-24 09:43:05,169 INFO Connection check task end + +2025-09-24 09:43:06,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:08,169 INFO Connection check task start + +2025-09-24 09:43:08,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:08,169 INFO Out dated connection ,size=0 + +2025-09-24 09:43:08,169 INFO Connection check task end + +2025-09-24 09:43:09,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:11,171 INFO Connection check task start + +2025-09-24 09:43:11,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:11,171 INFO Out dated connection ,size=0 + +2025-09-24 09:43:11,171 INFO Connection check task end + +2025-09-24 09:43:12,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:14,172 INFO Connection check task start + +2025-09-24 09:43:14,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:14,172 INFO Out dated connection ,size=0 + +2025-09-24 09:43:14,172 INFO Connection check task end + +2025-09-24 09:43:15,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:17,173 INFO Connection check task start + +2025-09-24 09:43:17,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:17,173 INFO Out dated connection ,size=0 + +2025-09-24 09:43:17,173 INFO Connection check task end + +2025-09-24 09:43:18,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:20,173 INFO Connection check task start + +2025-09-24 09:43:20,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:20,174 INFO Out dated connection ,size=0 + +2025-09-24 09:43:20,174 INFO Connection check task end + +2025-09-24 09:43:21,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:23,176 INFO Connection check task start + +2025-09-24 09:43:23,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:23,176 INFO Out dated connection ,size=0 + +2025-09-24 09:43:23,176 INFO Connection check task end + +2025-09-24 09:43:24,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:26,176 INFO Connection check task start + +2025-09-24 09:43:26,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:26,176 INFO Out dated connection ,size=0 + +2025-09-24 09:43:26,176 INFO Connection check task end + +2025-09-24 09:43:27,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:29,177 INFO Connection check task start + +2025-09-24 09:43:29,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:29,177 INFO Out dated connection ,size=0 + +2025-09-24 09:43:29,177 INFO Connection check task end + +2025-09-24 09:43:30,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:32,177 INFO Connection check task start + +2025-09-24 09:43:32,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:32,177 INFO Out dated connection ,size=0 + +2025-09-24 09:43:32,177 INFO Connection check task end + +2025-09-24 09:43:33,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:35,178 INFO Connection check task start + +2025-09-24 09:43:35,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:35,178 INFO Out dated connection ,size=0 + +2025-09-24 09:43:35,178 INFO Connection check task end + +2025-09-24 09:43:36,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:38,178 INFO Connection check task start + +2025-09-24 09:43:38,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:38,178 INFO Out dated connection ,size=0 + +2025-09-24 09:43:38,178 INFO Connection check task end + +2025-09-24 09:43:39,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:41,179 INFO Connection check task start + +2025-09-24 09:43:41,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:41,179 INFO Out dated connection ,size=0 + +2025-09-24 09:43:41,179 INFO Connection check task end + +2025-09-24 09:43:42,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:44,181 INFO Connection check task start + +2025-09-24 09:43:44,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:44,181 INFO Out dated connection ,size=0 + +2025-09-24 09:43:44,181 INFO Connection check task end + +2025-09-24 09:43:45,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:47,181 INFO Connection check task start + +2025-09-24 09:43:47,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:47,182 INFO Out dated connection ,size=0 + +2025-09-24 09:43:47,182 INFO Connection check task end + +2025-09-24 09:43:48,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:50,182 INFO Connection check task start + +2025-09-24 09:43:50,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:50,182 INFO Out dated connection ,size=0 + +2025-09-24 09:43:50,182 INFO Connection check task end + +2025-09-24 09:43:51,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:53,183 INFO Connection check task start + +2025-09-24 09:43:53,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:53,183 INFO Out dated connection ,size=0 + +2025-09-24 09:43:53,183 INFO Connection check task end + +2025-09-24 09:43:54,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:56,185 INFO Connection check task start + +2025-09-24 09:43:56,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:56,185 INFO Out dated connection ,size=0 + +2025-09-24 09:43:56,185 INFO Connection check task end + +2025-09-24 09:43:57,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:43:59,187 INFO Connection check task start + +2025-09-24 09:43:59,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:43:59,187 INFO Out dated connection ,size=0 + +2025-09-24 09:43:59,187 INFO Connection check task end + +2025-09-24 09:44:00,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:02,188 INFO Connection check task start + +2025-09-24 09:44:02,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:02,188 INFO Out dated connection ,size=0 + +2025-09-24 09:44:02,188 INFO Connection check task end + +2025-09-24 09:44:03,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:05,190 INFO Connection check task start + +2025-09-24 09:44:05,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:05,191 INFO Out dated connection ,size=0 + +2025-09-24 09:44:05,191 INFO Connection check task end + +2025-09-24 09:44:06,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:08,191 INFO Connection check task start + +2025-09-24 09:44:08,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:08,191 INFO Out dated connection ,size=0 + +2025-09-24 09:44:08,191 INFO Connection check task end + +2025-09-24 09:44:09,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:11,194 INFO Connection check task start + +2025-09-24 09:44:11,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:11,194 INFO Out dated connection ,size=0 + +2025-09-24 09:44:11,194 INFO Connection check task end + +2025-09-24 09:44:12,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:14,194 INFO Connection check task start + +2025-09-24 09:44:14,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:14,195 INFO Out dated connection ,size=0 + +2025-09-24 09:44:14,195 INFO Connection check task end + +2025-09-24 09:44:15,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:17,195 INFO Connection check task start + +2025-09-24 09:44:17,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:17,195 INFO Out dated connection ,size=0 + +2025-09-24 09:44:17,195 INFO Connection check task end + +2025-09-24 09:44:18,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:20,196 INFO Connection check task start + +2025-09-24 09:44:20,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:20,197 INFO Out dated connection ,size=0 + +2025-09-24 09:44:20,197 INFO Connection check task end + +2025-09-24 09:44:21,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:23,198 INFO Connection check task start + +2025-09-24 09:44:23,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:23,198 INFO Out dated connection ,size=0 + +2025-09-24 09:44:23,198 INFO Connection check task end + +2025-09-24 09:44:24,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:26,198 INFO Connection check task start + +2025-09-24 09:44:26,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:26,198 INFO Out dated connection ,size=0 + +2025-09-24 09:44:26,198 INFO Connection check task end + +2025-09-24 09:44:27,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:29,201 INFO Connection check task start + +2025-09-24 09:44:29,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:29,201 INFO Out dated connection ,size=0 + +2025-09-24 09:44:29,201 INFO Connection check task end + +2025-09-24 09:44:30,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:32,201 INFO Connection check task start + +2025-09-24 09:44:32,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:32,201 INFO Out dated connection ,size=0 + +2025-09-24 09:44:32,201 INFO Connection check task end + +2025-09-24 09:44:33,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:35,202 INFO Connection check task start + +2025-09-24 09:44:35,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:35,202 INFO Out dated connection ,size=0 + +2025-09-24 09:44:35,202 INFO Connection check task end + +2025-09-24 09:44:36,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:38,204 INFO Connection check task start + +2025-09-24 09:44:38,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:38,204 INFO Out dated connection ,size=0 + +2025-09-24 09:44:38,204 INFO Connection check task end + +2025-09-24 09:44:39,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:41,204 INFO Connection check task start + +2025-09-24 09:44:41,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:41,204 INFO Out dated connection ,size=0 + +2025-09-24 09:44:41,205 INFO Connection check task end + +2025-09-24 09:44:42,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:44,205 INFO Connection check task start + +2025-09-24 09:44:44,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:44,205 INFO Out dated connection ,size=0 + +2025-09-24 09:44:44,205 INFO Connection check task end + +2025-09-24 09:44:45,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:47,206 INFO Connection check task start + +2025-09-24 09:44:47,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:47,206 INFO Out dated connection ,size=0 + +2025-09-24 09:44:47,206 INFO Connection check task end + +2025-09-24 09:44:48,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:50,208 INFO Connection check task start + +2025-09-24 09:44:50,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:50,208 INFO Out dated connection ,size=0 + +2025-09-24 09:44:50,208 INFO Connection check task end + +2025-09-24 09:44:51,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:53,208 INFO Connection check task start + +2025-09-24 09:44:53,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:53,209 INFO Out dated connection ,size=0 + +2025-09-24 09:44:53,209 INFO Connection check task end + +2025-09-24 09:44:54,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:56,210 INFO Connection check task start + +2025-09-24 09:44:56,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:56,210 INFO Out dated connection ,size=0 + +2025-09-24 09:44:56,210 INFO Connection check task end + +2025-09-24 09:44:57,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:44:59,212 INFO Connection check task start + +2025-09-24 09:44:59,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:44:59,212 INFO Out dated connection ,size=0 + +2025-09-24 09:44:59,212 INFO Connection check task end + +2025-09-24 09:45:00,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:02,215 INFO Connection check task start + +2025-09-24 09:45:02,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:02,215 INFO Out dated connection ,size=0 + +2025-09-24 09:45:02,215 INFO Connection check task end + +2025-09-24 09:45:03,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:05,216 INFO Connection check task start + +2025-09-24 09:45:05,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:05,216 INFO Out dated connection ,size=0 + +2025-09-24 09:45:05,216 INFO Connection check task end + +2025-09-24 09:45:06,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:08,217 INFO Connection check task start + +2025-09-24 09:45:08,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:08,218 INFO Out dated connection ,size=0 + +2025-09-24 09:45:08,218 INFO Connection check task end + +2025-09-24 09:45:09,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:11,218 INFO Connection check task start + +2025-09-24 09:45:11,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:11,218 INFO Out dated connection ,size=0 + +2025-09-24 09:45:11,218 INFO Connection check task end + +2025-09-24 09:45:12,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:14,219 INFO Connection check task start + +2025-09-24 09:45:14,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:14,219 INFO Out dated connection ,size=0 + +2025-09-24 09:45:14,219 INFO Connection check task end + +2025-09-24 09:45:15,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:17,221 INFO Connection check task start + +2025-09-24 09:45:17,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:17,221 INFO Out dated connection ,size=0 + +2025-09-24 09:45:17,221 INFO Connection check task end + +2025-09-24 09:45:18,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:20,221 INFO Connection check task start + +2025-09-24 09:45:20,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:20,221 INFO Out dated connection ,size=0 + +2025-09-24 09:45:20,222 INFO Connection check task end + +2025-09-24 09:45:21,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:23,224 INFO Connection check task start + +2025-09-24 09:45:23,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:23,224 INFO Out dated connection ,size=0 + +2025-09-24 09:45:23,224 INFO Connection check task end + +2025-09-24 09:45:24,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:26,224 INFO Connection check task start + +2025-09-24 09:45:26,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:26,225 INFO Out dated connection ,size=0 + +2025-09-24 09:45:26,225 INFO Connection check task end + +2025-09-24 09:45:27,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:29,225 INFO Connection check task start + +2025-09-24 09:45:29,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:29,225 INFO Out dated connection ,size=0 + +2025-09-24 09:45:29,225 INFO Connection check task end + +2025-09-24 09:45:30,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:32,226 INFO Connection check task start + +2025-09-24 09:45:32,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:32,226 INFO Out dated connection ,size=0 + +2025-09-24 09:45:32,226 INFO Connection check task end + +2025-09-24 09:45:33,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:35,227 INFO Connection check task start + +2025-09-24 09:45:35,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:35,227 INFO Out dated connection ,size=0 + +2025-09-24 09:45:35,227 INFO Connection check task end + +2025-09-24 09:45:36,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:38,228 INFO Connection check task start + +2025-09-24 09:45:38,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:38,228 INFO Out dated connection ,size=0 + +2025-09-24 09:45:38,228 INFO Connection check task end + +2025-09-24 09:45:39,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:41,231 INFO Connection check task start + +2025-09-24 09:45:41,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:41,231 INFO Out dated connection ,size=0 + +2025-09-24 09:45:41,231 INFO Connection check task end + +2025-09-24 09:45:42,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:44,233 INFO Connection check task start + +2025-09-24 09:45:44,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:44,233 INFO Out dated connection ,size=0 + +2025-09-24 09:45:44,233 INFO Connection check task end + +2025-09-24 09:45:45,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:47,235 INFO Connection check task start + +2025-09-24 09:45:47,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:47,235 INFO Out dated connection ,size=0 + +2025-09-24 09:45:47,236 INFO Connection check task end + +2025-09-24 09:45:48,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:50,237 INFO Connection check task start + +2025-09-24 09:45:50,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:50,238 INFO Out dated connection ,size=0 + +2025-09-24 09:45:50,238 INFO Connection check task end + +2025-09-24 09:45:51,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:53,238 INFO Connection check task start + +2025-09-24 09:45:53,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:53,238 INFO Out dated connection ,size=0 + +2025-09-24 09:45:53,238 INFO Connection check task end + +2025-09-24 09:45:54,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:56,239 INFO Connection check task start + +2025-09-24 09:45:56,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:56,240 INFO Out dated connection ,size=0 + +2025-09-24 09:45:56,240 INFO Connection check task end + +2025-09-24 09:45:57,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:45:59,240 INFO Connection check task start + +2025-09-24 09:45:59,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:45:59,240 INFO Out dated connection ,size=0 + +2025-09-24 09:45:59,240 INFO Connection check task end + +2025-09-24 09:46:00,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:02,240 INFO Connection check task start + +2025-09-24 09:46:02,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:02,241 INFO Out dated connection ,size=0 + +2025-09-24 09:46:02,241 INFO Connection check task end + +2025-09-24 09:46:03,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:05,241 INFO Connection check task start + +2025-09-24 09:46:05,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:05,241 INFO Out dated connection ,size=0 + +2025-09-24 09:46:05,241 INFO Connection check task end + +2025-09-24 09:46:06,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:08,244 INFO Connection check task start + +2025-09-24 09:46:08,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:08,244 INFO Out dated connection ,size=0 + +2025-09-24 09:46:08,244 INFO Connection check task end + +2025-09-24 09:46:09,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:11,245 INFO Connection check task start + +2025-09-24 09:46:11,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:11,245 INFO Out dated connection ,size=0 + +2025-09-24 09:46:11,245 INFO Connection check task end + +2025-09-24 09:46:12,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:14,247 INFO Connection check task start + +2025-09-24 09:46:14,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:14,247 INFO Out dated connection ,size=0 + +2025-09-24 09:46:14,247 INFO Connection check task end + +2025-09-24 09:46:15,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:17,247 INFO Connection check task start + +2025-09-24 09:46:17,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:17,248 INFO Out dated connection ,size=0 + +2025-09-24 09:46:17,248 INFO Connection check task end + +2025-09-24 09:46:18,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:20,248 INFO Connection check task start + +2025-09-24 09:46:20,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:20,248 INFO Out dated connection ,size=0 + +2025-09-24 09:46:20,248 INFO Connection check task end + +2025-09-24 09:46:21,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:23,249 INFO Connection check task start + +2025-09-24 09:46:23,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:23,249 INFO Out dated connection ,size=0 + +2025-09-24 09:46:23,249 INFO Connection check task end + +2025-09-24 09:46:24,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:26,250 INFO Connection check task start + +2025-09-24 09:46:26,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:26,250 INFO Out dated connection ,size=0 + +2025-09-24 09:46:26,250 INFO Connection check task end + +2025-09-24 09:46:27,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:29,250 INFO Connection check task start + +2025-09-24 09:46:29,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:29,251 INFO Out dated connection ,size=0 + +2025-09-24 09:46:29,251 INFO Connection check task end + +2025-09-24 09:46:30,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:32,251 INFO Connection check task start + +2025-09-24 09:46:32,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:32,251 INFO Out dated connection ,size=0 + +2025-09-24 09:46:32,251 INFO Connection check task end + +2025-09-24 09:46:33,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:35,253 INFO Connection check task start + +2025-09-24 09:46:35,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:35,253 INFO Out dated connection ,size=0 + +2025-09-24 09:46:35,253 INFO Connection check task end + +2025-09-24 09:46:36,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:38,255 INFO Connection check task start + +2025-09-24 09:46:38,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:38,256 INFO Out dated connection ,size=0 + +2025-09-24 09:46:38,256 INFO Connection check task end + +2025-09-24 09:46:39,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:41,258 INFO Connection check task start + +2025-09-24 09:46:41,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:41,258 INFO Out dated connection ,size=0 + +2025-09-24 09:46:41,258 INFO Connection check task end + +2025-09-24 09:46:42,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:44,258 INFO Connection check task start + +2025-09-24 09:46:44,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:44,259 INFO Out dated connection ,size=0 + +2025-09-24 09:46:44,259 INFO Connection check task end + +2025-09-24 09:46:45,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:47,259 INFO Connection check task start + +2025-09-24 09:46:47,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:47,259 INFO Out dated connection ,size=0 + +2025-09-24 09:46:47,259 INFO Connection check task end + +2025-09-24 09:46:48,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:50,261 INFO Connection check task start + +2025-09-24 09:46:50,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:50,261 INFO Out dated connection ,size=0 + +2025-09-24 09:46:50,261 INFO Connection check task end + +2025-09-24 09:46:51,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:53,263 INFO Connection check task start + +2025-09-24 09:46:53,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:53,263 INFO Out dated connection ,size=0 + +2025-09-24 09:46:53,263 INFO Connection check task end + +2025-09-24 09:46:54,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:56,264 INFO Connection check task start + +2025-09-24 09:46:56,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:56,264 INFO Out dated connection ,size=0 + +2025-09-24 09:46:56,264 INFO Connection check task end + +2025-09-24 09:46:57,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:46:59,265 INFO Connection check task start + +2025-09-24 09:46:59,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:46:59,265 INFO Out dated connection ,size=0 + +2025-09-24 09:46:59,265 INFO Connection check task end + +2025-09-24 09:47:00,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:02,266 INFO Connection check task start + +2025-09-24 09:47:02,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:02,266 INFO Out dated connection ,size=0 + +2025-09-24 09:47:02,266 INFO Connection check task end + +2025-09-24 09:47:03,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:05,266 INFO Connection check task start + +2025-09-24 09:47:05,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:05,267 INFO Out dated connection ,size=0 + +2025-09-24 09:47:05,267 INFO Connection check task end + +2025-09-24 09:47:06,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:08,269 INFO Connection check task start + +2025-09-24 09:47:08,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:08,269 INFO Out dated connection ,size=0 + +2025-09-24 09:47:08,269 INFO Connection check task end + +2025-09-24 09:47:09,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:11,270 INFO Connection check task start + +2025-09-24 09:47:11,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:11,270 INFO Out dated connection ,size=0 + +2025-09-24 09:47:11,270 INFO Connection check task end + +2025-09-24 09:47:12,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:14,272 INFO Connection check task start + +2025-09-24 09:47:14,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:14,273 INFO Out dated connection ,size=0 + +2025-09-24 09:47:14,273 INFO Connection check task end + +2025-09-24 09:47:15,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:17,275 INFO Connection check task start + +2025-09-24 09:47:17,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:17,275 INFO Out dated connection ,size=0 + +2025-09-24 09:47:17,275 INFO Connection check task end + +2025-09-24 09:47:18,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:20,277 INFO Connection check task start + +2025-09-24 09:47:20,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:20,277 INFO Out dated connection ,size=0 + +2025-09-24 09:47:20,277 INFO Connection check task end + +2025-09-24 09:47:21,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:23,279 INFO Connection check task start + +2025-09-24 09:47:23,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:23,279 INFO Out dated connection ,size=0 + +2025-09-24 09:47:23,279 INFO Connection check task end + +2025-09-24 09:47:24,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:26,280 INFO Connection check task start + +2025-09-24 09:47:26,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:26,280 INFO Out dated connection ,size=0 + +2025-09-24 09:47:26,280 INFO Connection check task end + +2025-09-24 09:47:27,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:29,280 INFO Connection check task start + +2025-09-24 09:47:29,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:29,280 INFO Out dated connection ,size=0 + +2025-09-24 09:47:29,280 INFO Connection check task end + +2025-09-24 09:47:30,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:32,282 INFO Connection check task start + +2025-09-24 09:47:32,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:32,282 INFO Out dated connection ,size=0 + +2025-09-24 09:47:32,282 INFO Connection check task end + +2025-09-24 09:47:33,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:35,282 INFO Connection check task start + +2025-09-24 09:47:35,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:35,283 INFO Out dated connection ,size=0 + +2025-09-24 09:47:35,283 INFO Connection check task end + +2025-09-24 09:47:36,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:38,284 INFO Connection check task start + +2025-09-24 09:47:38,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:38,284 INFO Out dated connection ,size=0 + +2025-09-24 09:47:38,284 INFO Connection check task end + +2025-09-24 09:47:39,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:41,286 INFO Connection check task start + +2025-09-24 09:47:41,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:41,286 INFO Out dated connection ,size=0 + +2025-09-24 09:47:41,286 INFO Connection check task end + +2025-09-24 09:47:42,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:44,287 INFO Connection check task start + +2025-09-24 09:47:44,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:44,287 INFO Out dated connection ,size=0 + +2025-09-24 09:47:44,287 INFO Connection check task end + +2025-09-24 09:47:45,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:47,287 INFO Connection check task start + +2025-09-24 09:47:47,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:47,288 INFO Out dated connection ,size=0 + +2025-09-24 09:47:47,288 INFO Connection check task end + +2025-09-24 09:47:48,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:50,288 INFO Connection check task start + +2025-09-24 09:47:50,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:50,288 INFO Out dated connection ,size=0 + +2025-09-24 09:47:50,288 INFO Connection check task end + +2025-09-24 09:47:51,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:53,290 INFO Connection check task start + +2025-09-24 09:47:53,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:53,291 INFO Out dated connection ,size=0 + +2025-09-24 09:47:53,291 INFO Connection check task end + +2025-09-24 09:47:54,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:56,291 INFO Connection check task start + +2025-09-24 09:47:56,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:56,291 INFO Out dated connection ,size=0 + +2025-09-24 09:47:56,291 INFO Connection check task end + +2025-09-24 09:47:57,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:47:59,293 INFO Connection check task start + +2025-09-24 09:47:59,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:47:59,294 INFO Out dated connection ,size=0 + +2025-09-24 09:47:59,294 INFO Connection check task end + +2025-09-24 09:48:00,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:02,294 INFO Connection check task start + +2025-09-24 09:48:02,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:02,294 INFO Out dated connection ,size=0 + +2025-09-24 09:48:02,294 INFO Connection check task end + +2025-09-24 09:48:03,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:05,294 INFO Connection check task start + +2025-09-24 09:48:05,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:05,294 INFO Out dated connection ,size=0 + +2025-09-24 09:48:05,294 INFO Connection check task end + +2025-09-24 09:48:06,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:08,295 INFO Connection check task start + +2025-09-24 09:48:08,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:08,296 INFO Out dated connection ,size=0 + +2025-09-24 09:48:08,296 INFO Connection check task end + +2025-09-24 09:48:09,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:11,297 INFO Connection check task start + +2025-09-24 09:48:11,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:11,297 INFO Out dated connection ,size=0 + +2025-09-24 09:48:11,297 INFO Connection check task end + +2025-09-24 09:48:12,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:14,298 INFO Connection check task start + +2025-09-24 09:48:14,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:14,298 INFO Out dated connection ,size=0 + +2025-09-24 09:48:14,298 INFO Connection check task end + +2025-09-24 09:48:15,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:17,298 INFO Connection check task start + +2025-09-24 09:48:17,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:17,298 INFO Out dated connection ,size=0 + +2025-09-24 09:48:17,298 INFO Connection check task end + +2025-09-24 09:48:18,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:20,301 INFO Connection check task start + +2025-09-24 09:48:20,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:20,301 INFO Out dated connection ,size=0 + +2025-09-24 09:48:20,301 INFO Connection check task end + +2025-09-24 09:48:21,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:23,303 INFO Connection check task start + +2025-09-24 09:48:23,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:23,303 INFO Out dated connection ,size=0 + +2025-09-24 09:48:23,303 INFO Connection check task end + +2025-09-24 09:48:24,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:26,303 INFO Connection check task start + +2025-09-24 09:48:26,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:26,304 INFO Out dated connection ,size=0 + +2025-09-24 09:48:26,304 INFO Connection check task end + +2025-09-24 09:48:27,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:29,304 INFO Connection check task start + +2025-09-24 09:48:29,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:29,304 INFO Out dated connection ,size=0 + +2025-09-24 09:48:29,304 INFO Connection check task end + +2025-09-24 09:48:30,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:32,306 INFO Connection check task start + +2025-09-24 09:48:32,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:32,306 INFO Out dated connection ,size=0 + +2025-09-24 09:48:32,306 INFO Connection check task end + +2025-09-24 09:48:33,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:35,308 INFO Connection check task start + +2025-09-24 09:48:35,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:35,308 INFO Out dated connection ,size=0 + +2025-09-24 09:48:35,308 INFO Connection check task end + +2025-09-24 09:48:36,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:38,309 INFO Connection check task start + +2025-09-24 09:48:38,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:38,309 INFO Out dated connection ,size=0 + +2025-09-24 09:48:38,309 INFO Connection check task end + +2025-09-24 09:48:39,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:41,311 INFO Connection check task start + +2025-09-24 09:48:41,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:41,311 INFO Out dated connection ,size=0 + +2025-09-24 09:48:41,311 INFO Connection check task end + +2025-09-24 09:48:42,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:44,313 INFO Connection check task start + +2025-09-24 09:48:44,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:44,313 INFO Out dated connection ,size=0 + +2025-09-24 09:48:44,314 INFO Connection check task end + +2025-09-24 09:48:45,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:47,316 INFO Connection check task start + +2025-09-24 09:48:47,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:47,316 INFO Out dated connection ,size=0 + +2025-09-24 09:48:47,316 INFO Connection check task end + +2025-09-24 09:48:48,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:50,316 INFO Connection check task start + +2025-09-24 09:48:50,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:50,316 INFO Out dated connection ,size=0 + +2025-09-24 09:48:50,316 INFO Connection check task end + +2025-09-24 09:48:51,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:53,316 INFO Connection check task start + +2025-09-24 09:48:53,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:53,317 INFO Out dated connection ,size=0 + +2025-09-24 09:48:53,317 INFO Connection check task end + +2025-09-24 09:48:54,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:56,317 INFO Connection check task start + +2025-09-24 09:48:56,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:56,318 INFO Out dated connection ,size=0 + +2025-09-24 09:48:56,318 INFO Connection check task end + +2025-09-24 09:48:57,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:48:59,318 INFO Connection check task start + +2025-09-24 09:48:59,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:48:59,318 INFO Out dated connection ,size=0 + +2025-09-24 09:48:59,318 INFO Connection check task end + +2025-09-24 09:49:00,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:02,319 INFO Connection check task start + +2025-09-24 09:49:02,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:02,319 INFO Out dated connection ,size=0 + +2025-09-24 09:49:02,319 INFO Connection check task end + +2025-09-24 09:49:03,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:05,321 INFO Connection check task start + +2025-09-24 09:49:05,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:05,322 INFO Out dated connection ,size=0 + +2025-09-24 09:49:05,322 INFO Connection check task end + +2025-09-24 09:49:06,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:08,323 INFO Connection check task start + +2025-09-24 09:49:08,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:08,323 INFO Out dated connection ,size=0 + +2025-09-24 09:49:08,323 INFO Connection check task end + +2025-09-24 09:49:09,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:11,324 INFO Connection check task start + +2025-09-24 09:49:11,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:11,324 INFO Out dated connection ,size=0 + +2025-09-24 09:49:11,324 INFO Connection check task end + +2025-09-24 09:49:12,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:14,324 INFO Connection check task start + +2025-09-24 09:49:14,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:14,324 INFO Out dated connection ,size=0 + +2025-09-24 09:49:14,324 INFO Connection check task end + +2025-09-24 09:49:15,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:17,327 INFO Connection check task start + +2025-09-24 09:49:17,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:17,327 INFO Out dated connection ,size=0 + +2025-09-24 09:49:17,327 INFO Connection check task end + +2025-09-24 09:49:18,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:20,327 INFO Connection check task start + +2025-09-24 09:49:20,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:20,327 INFO Out dated connection ,size=0 + +2025-09-24 09:49:20,328 INFO Connection check task end + +2025-09-24 09:49:21,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:23,328 INFO Connection check task start + +2025-09-24 09:49:23,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:23,328 INFO Out dated connection ,size=0 + +2025-09-24 09:49:23,328 INFO Connection check task end + +2025-09-24 09:49:24,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:26,331 INFO Connection check task start + +2025-09-24 09:49:26,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:26,331 INFO Out dated connection ,size=0 + +2025-09-24 09:49:26,331 INFO Connection check task end + +2025-09-24 09:49:27,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:29,332 INFO Connection check task start + +2025-09-24 09:49:29,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:29,332 INFO Out dated connection ,size=0 + +2025-09-24 09:49:29,332 INFO Connection check task end + +2025-09-24 09:49:30,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:32,333 INFO Connection check task start + +2025-09-24 09:49:32,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:32,333 INFO Out dated connection ,size=0 + +2025-09-24 09:49:32,333 INFO Connection check task end + +2025-09-24 09:49:33,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:35,334 INFO Connection check task start + +2025-09-24 09:49:35,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:35,334 INFO Out dated connection ,size=0 + +2025-09-24 09:49:35,334 INFO Connection check task end + +2025-09-24 09:49:36,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:38,335 INFO Connection check task start + +2025-09-24 09:49:38,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:38,335 INFO Out dated connection ,size=0 + +2025-09-24 09:49:38,335 INFO Connection check task end + +2025-09-24 09:49:39,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:41,336 INFO Connection check task start + +2025-09-24 09:49:41,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:41,336 INFO Out dated connection ,size=0 + +2025-09-24 09:49:41,336 INFO Connection check task end + +2025-09-24 09:49:42,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:44,337 INFO Connection check task start + +2025-09-24 09:49:44,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:44,337 INFO Out dated connection ,size=0 + +2025-09-24 09:49:44,337 INFO Connection check task end + +2025-09-24 09:49:45,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:47,338 INFO Connection check task start + +2025-09-24 09:49:47,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:47,338 INFO Out dated connection ,size=0 + +2025-09-24 09:49:47,338 INFO Connection check task end + +2025-09-24 09:49:48,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:50,338 INFO Connection check task start + +2025-09-24 09:49:50,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:50,339 INFO Out dated connection ,size=0 + +2025-09-24 09:49:50,339 INFO Connection check task end + +2025-09-24 09:49:51,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:53,341 INFO Connection check task start + +2025-09-24 09:49:53,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:53,341 INFO Out dated connection ,size=0 + +2025-09-24 09:49:53,341 INFO Connection check task end + +2025-09-24 09:49:54,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:56,343 INFO Connection check task start + +2025-09-24 09:49:56,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:56,343 INFO Out dated connection ,size=0 + +2025-09-24 09:49:56,343 INFO Connection check task end + +2025-09-24 09:49:57,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:49:59,345 INFO Connection check task start + +2025-09-24 09:49:59,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:49:59,346 INFO Out dated connection ,size=0 + +2025-09-24 09:49:59,346 INFO Connection check task end + +2025-09-24 09:50:00,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:02,346 INFO Connection check task start + +2025-09-24 09:50:02,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:02,346 INFO Out dated connection ,size=0 + +2025-09-24 09:50:02,346 INFO Connection check task end + +2025-09-24 09:50:03,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:05,347 INFO Connection check task start + +2025-09-24 09:50:05,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:05,347 INFO Out dated connection ,size=0 + +2025-09-24 09:50:05,347 INFO Connection check task end + +2025-09-24 09:50:06,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:08,348 INFO Connection check task start + +2025-09-24 09:50:08,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:08,348 INFO Out dated connection ,size=0 + +2025-09-24 09:50:08,348 INFO Connection check task end + +2025-09-24 09:50:09,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:11,349 INFO Connection check task start + +2025-09-24 09:50:11,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:11,349 INFO Out dated connection ,size=0 + +2025-09-24 09:50:11,349 INFO Connection check task end + +2025-09-24 09:50:12,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:14,349 INFO Connection check task start + +2025-09-24 09:50:14,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:14,349 INFO Out dated connection ,size=0 + +2025-09-24 09:50:14,350 INFO Connection check task end + +2025-09-24 09:50:15,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:17,351 INFO Connection check task start + +2025-09-24 09:50:17,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:17,352 INFO Out dated connection ,size=0 + +2025-09-24 09:50:17,352 INFO Connection check task end + +2025-09-24 09:50:18,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:20,352 INFO Connection check task start + +2025-09-24 09:50:20,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:20,352 INFO Out dated connection ,size=0 + +2025-09-24 09:50:20,352 INFO Connection check task end + +2025-09-24 09:50:21,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:23,353 INFO Connection check task start + +2025-09-24 09:50:23,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:23,353 INFO Out dated connection ,size=0 + +2025-09-24 09:50:23,353 INFO Connection check task end + +2025-09-24 09:50:24,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:26,353 INFO Connection check task start + +2025-09-24 09:50:26,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:26,353 INFO Out dated connection ,size=0 + +2025-09-24 09:50:26,353 INFO Connection check task end + +2025-09-24 09:50:27,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:29,355 INFO Connection check task start + +2025-09-24 09:50:29,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:29,356 INFO Out dated connection ,size=0 + +2025-09-24 09:50:29,356 INFO Connection check task end + +2025-09-24 09:50:30,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:32,507 INFO Connection check task start + +2025-09-24 09:50:32,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:32,507 INFO Out dated connection ,size=0 + +2025-09-24 09:50:32,507 INFO Connection check task end + +2025-09-24 09:50:33,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:35,509 INFO Connection check task start + +2025-09-24 09:50:35,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:35,509 INFO Out dated connection ,size=0 + +2025-09-24 09:50:35,509 INFO Connection check task end + +2025-09-24 09:50:36,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:38,509 INFO Connection check task start + +2025-09-24 09:50:38,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:38,510 INFO Out dated connection ,size=0 + +2025-09-24 09:50:38,510 INFO Connection check task end + +2025-09-24 09:50:39,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:41,510 INFO Connection check task start + +2025-09-24 09:50:41,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:41,510 INFO Out dated connection ,size=0 + +2025-09-24 09:50:41,510 INFO Connection check task end + +2025-09-24 09:50:42,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:44,512 INFO Connection check task start + +2025-09-24 09:50:44,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:44,512 INFO Out dated connection ,size=0 + +2025-09-24 09:50:44,512 INFO Connection check task end + +2025-09-24 09:50:45,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:47,513 INFO Connection check task start + +2025-09-24 09:50:47,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:47,513 INFO Out dated connection ,size=0 + +2025-09-24 09:50:47,513 INFO Connection check task end + +2025-09-24 09:50:48,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:50,514 INFO Connection check task start + +2025-09-24 09:50:50,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:50,514 INFO Out dated connection ,size=0 + +2025-09-24 09:50:50,514 INFO Connection check task end + +2025-09-24 09:50:51,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:53,514 INFO Connection check task start + +2025-09-24 09:50:53,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:53,514 INFO Out dated connection ,size=0 + +2025-09-24 09:50:53,514 INFO Connection check task end + +2025-09-24 09:50:54,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:56,515 INFO Connection check task start + +2025-09-24 09:50:56,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:56,515 INFO Out dated connection ,size=0 + +2025-09-24 09:50:56,515 INFO Connection check task end + +2025-09-24 09:50:57,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:50:59,515 INFO Connection check task start + +2025-09-24 09:50:59,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:50:59,515 INFO Out dated connection ,size=0 + +2025-09-24 09:50:59,515 INFO Connection check task end + +2025-09-24 09:51:00,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:02,517 INFO Connection check task start + +2025-09-24 09:51:02,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:02,517 INFO Out dated connection ,size=0 + +2025-09-24 09:51:02,517 INFO Connection check task end + +2025-09-24 09:51:03,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:05,518 INFO Connection check task start + +2025-09-24 09:51:05,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:05,518 INFO Out dated connection ,size=0 + +2025-09-24 09:51:05,518 INFO Connection check task end + +2025-09-24 09:51:06,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:08,519 INFO Connection check task start + +2025-09-24 09:51:08,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:08,519 INFO Out dated connection ,size=0 + +2025-09-24 09:51:08,519 INFO Connection check task end + +2025-09-24 09:51:09,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:11,523 INFO Connection check task start + +2025-09-24 09:51:11,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:11,523 INFO Out dated connection ,size=0 + +2025-09-24 09:51:11,523 INFO Connection check task end + +2025-09-24 09:51:12,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:14,523 INFO Connection check task start + +2025-09-24 09:51:14,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:14,523 INFO Out dated connection ,size=0 + +2025-09-24 09:51:14,523 INFO Connection check task end + +2025-09-24 09:51:15,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:17,524 INFO Connection check task start + +2025-09-24 09:51:17,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:17,524 INFO Out dated connection ,size=0 + +2025-09-24 09:51:17,524 INFO Connection check task end + +2025-09-24 09:51:18,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:20,525 INFO Connection check task start + +2025-09-24 09:51:20,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:20,525 INFO Out dated connection ,size=0 + +2025-09-24 09:51:20,525 INFO Connection check task end + +2025-09-24 09:51:21,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:23,525 INFO Connection check task start + +2025-09-24 09:51:23,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:23,525 INFO Out dated connection ,size=0 + +2025-09-24 09:51:23,525 INFO Connection check task end + +2025-09-24 09:51:24,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:26,525 INFO Connection check task start + +2025-09-24 09:51:26,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:26,526 INFO Out dated connection ,size=0 + +2025-09-24 09:51:26,526 INFO Connection check task end + +2025-09-24 09:51:27,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:29,526 INFO Connection check task start + +2025-09-24 09:51:29,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:29,527 INFO Out dated connection ,size=0 + +2025-09-24 09:51:29,527 INFO Connection check task end + +2025-09-24 09:51:30,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:32,527 INFO Connection check task start + +2025-09-24 09:51:32,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:32,527 INFO Out dated connection ,size=0 + +2025-09-24 09:51:32,527 INFO Connection check task end + +2025-09-24 09:51:33,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:35,529 INFO Connection check task start + +2025-09-24 09:51:35,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:35,529 INFO Out dated connection ,size=0 + +2025-09-24 09:51:35,529 INFO Connection check task end + +2025-09-24 09:51:36,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:38,529 INFO Connection check task start + +2025-09-24 09:51:38,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:38,529 INFO Out dated connection ,size=0 + +2025-09-24 09:51:38,529 INFO Connection check task end + +2025-09-24 09:51:39,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:41,530 INFO Connection check task start + +2025-09-24 09:51:41,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:41,530 INFO Out dated connection ,size=0 + +2025-09-24 09:51:41,530 INFO Connection check task end + +2025-09-24 09:51:42,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:44,530 INFO Connection check task start + +2025-09-24 09:51:44,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:44,530 INFO Out dated connection ,size=0 + +2025-09-24 09:51:44,530 INFO Connection check task end + +2025-09-24 09:51:45,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:47,530 INFO Connection check task start + +2025-09-24 09:51:47,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:47,531 INFO Out dated connection ,size=0 + +2025-09-24 09:51:47,531 INFO Connection check task end + +2025-09-24 09:51:48,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:50,531 INFO Connection check task start + +2025-09-24 09:51:50,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:50,531 INFO Out dated connection ,size=0 + +2025-09-24 09:51:50,531 INFO Connection check task end + +2025-09-24 09:51:51,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:53,531 INFO Connection check task start + +2025-09-24 09:51:53,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:53,532 INFO Out dated connection ,size=0 + +2025-09-24 09:51:53,532 INFO Connection check task end + +2025-09-24 09:51:54,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:56,532 INFO Connection check task start + +2025-09-24 09:51:56,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:56,532 INFO Out dated connection ,size=0 + +2025-09-24 09:51:56,532 INFO Connection check task end + +2025-09-24 09:51:57,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:51:59,533 INFO Connection check task start + +2025-09-24 09:51:59,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:51:59,534 INFO Out dated connection ,size=0 + +2025-09-24 09:51:59,534 INFO Connection check task end + +2025-09-24 09:52:00,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:02,534 INFO Connection check task start + +2025-09-24 09:52:02,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:02,534 INFO Out dated connection ,size=0 + +2025-09-24 09:52:02,534 INFO Connection check task end + +2025-09-24 09:52:03,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:05,535 INFO Connection check task start + +2025-09-24 09:52:05,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:05,535 INFO Out dated connection ,size=0 + +2025-09-24 09:52:05,535 INFO Connection check task end + +2025-09-24 09:52:06,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:08,535 INFO Connection check task start + +2025-09-24 09:52:08,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:08,535 INFO Out dated connection ,size=0 + +2025-09-24 09:52:08,535 INFO Connection check task end + +2025-09-24 09:52:09,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:11,535 INFO Connection check task start + +2025-09-24 09:52:11,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:11,535 INFO Out dated connection ,size=0 + +2025-09-24 09:52:11,535 INFO Connection check task end + +2025-09-24 09:52:12,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:14,536 INFO Connection check task start + +2025-09-24 09:52:14,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:14,536 INFO Out dated connection ,size=0 + +2025-09-24 09:52:14,536 INFO Connection check task end + +2025-09-24 09:52:15,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:17,536 INFO Connection check task start + +2025-09-24 09:52:17,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:17,536 INFO Out dated connection ,size=0 + +2025-09-24 09:52:17,536 INFO Connection check task end + +2025-09-24 09:52:18,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:20,536 INFO Connection check task start + +2025-09-24 09:52:20,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:20,537 INFO Out dated connection ,size=0 + +2025-09-24 09:52:20,537 INFO Connection check task end + +2025-09-24 09:52:21,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:23,537 INFO Connection check task start + +2025-09-24 09:52:23,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:23,537 INFO Out dated connection ,size=0 + +2025-09-24 09:52:23,537 INFO Connection check task end + +2025-09-24 09:52:24,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:26,537 INFO Connection check task start + +2025-09-24 09:52:26,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:26,537 INFO Out dated connection ,size=0 + +2025-09-24 09:52:26,537 INFO Connection check task end + +2025-09-24 09:52:27,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:29,538 INFO Connection check task start + +2025-09-24 09:52:29,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:29,538 INFO Out dated connection ,size=0 + +2025-09-24 09:52:29,538 INFO Connection check task end + +2025-09-24 09:52:30,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:32,538 INFO Connection check task start + +2025-09-24 09:52:32,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:32,538 INFO Out dated connection ,size=0 + +2025-09-24 09:52:32,538 INFO Connection check task end + +2025-09-24 09:52:33,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:35,539 INFO Connection check task start + +2025-09-24 09:52:35,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:35,539 INFO Out dated connection ,size=0 + +2025-09-24 09:52:35,539 INFO Connection check task end + +2025-09-24 09:52:36,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:38,539 INFO Connection check task start + +2025-09-24 09:52:38,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:38,539 INFO Out dated connection ,size=0 + +2025-09-24 09:52:38,539 INFO Connection check task end + +2025-09-24 09:52:39,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:41,539 INFO Connection check task start + +2025-09-24 09:52:41,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:41,540 INFO Out dated connection ,size=0 + +2025-09-24 09:52:41,540 INFO Connection check task end + +2025-09-24 09:52:42,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:44,541 INFO Connection check task start + +2025-09-24 09:52:44,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:44,541 INFO Out dated connection ,size=0 + +2025-09-24 09:52:44,541 INFO Connection check task end + +2025-09-24 09:52:45,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:47,541 INFO Connection check task start + +2025-09-24 09:52:47,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:47,541 INFO Out dated connection ,size=0 + +2025-09-24 09:52:47,541 INFO Connection check task end + +2025-09-24 09:52:48,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:50,542 INFO Connection check task start + +2025-09-24 09:52:50,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:50,542 INFO Out dated connection ,size=0 + +2025-09-24 09:52:50,542 INFO Connection check task end + +2025-09-24 09:52:51,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:53,542 INFO Connection check task start + +2025-09-24 09:52:53,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:53,543 INFO Out dated connection ,size=0 + +2025-09-24 09:52:53,543 INFO Connection check task end + +2025-09-24 09:52:54,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:56,543 INFO Connection check task start + +2025-09-24 09:52:56,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:56,543 INFO Out dated connection ,size=0 + +2025-09-24 09:52:56,543 INFO Connection check task end + +2025-09-24 09:52:57,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:52:59,544 INFO Connection check task start + +2025-09-24 09:52:59,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:52:59,544 INFO Out dated connection ,size=0 + +2025-09-24 09:52:59,544 INFO Connection check task end + +2025-09-24 09:53:00,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:02,546 INFO Connection check task start + +2025-09-24 09:53:02,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:02,546 INFO Out dated connection ,size=0 + +2025-09-24 09:53:02,546 INFO Connection check task end + +2025-09-24 09:53:03,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:05,547 INFO Connection check task start + +2025-09-24 09:53:05,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:05,547 INFO Out dated connection ,size=0 + +2025-09-24 09:53:05,547 INFO Connection check task end + +2025-09-24 09:53:06,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:08,547 INFO Connection check task start + +2025-09-24 09:53:08,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:08,547 INFO Out dated connection ,size=0 + +2025-09-24 09:53:08,547 INFO Connection check task end + +2025-09-24 09:53:09,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:11,547 INFO Connection check task start + +2025-09-24 09:53:11,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:11,548 INFO Out dated connection ,size=0 + +2025-09-24 09:53:11,548 INFO Connection check task end + +2025-09-24 09:53:12,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:14,548 INFO Connection check task start + +2025-09-24 09:53:14,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:14,548 INFO Out dated connection ,size=0 + +2025-09-24 09:53:14,548 INFO Connection check task end + +2025-09-24 09:53:15,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:17,549 INFO Connection check task start + +2025-09-24 09:53:17,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:17,549 INFO Out dated connection ,size=0 + +2025-09-24 09:53:17,549 INFO Connection check task end + +2025-09-24 09:53:18,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:20,550 INFO Connection check task start + +2025-09-24 09:53:20,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:20,550 INFO Out dated connection ,size=0 + +2025-09-24 09:53:20,550 INFO Connection check task end + +2025-09-24 09:53:21,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:23,551 INFO Connection check task start + +2025-09-24 09:53:23,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:23,551 INFO Out dated connection ,size=0 + +2025-09-24 09:53:23,551 INFO Connection check task end + +2025-09-24 09:53:24,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:26,553 INFO Connection check task start + +2025-09-24 09:53:26,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:26,553 INFO Out dated connection ,size=0 + +2025-09-24 09:53:26,553 INFO Connection check task end + +2025-09-24 09:53:27,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:29,554 INFO Connection check task start + +2025-09-24 09:53:29,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:29,554 INFO Out dated connection ,size=0 + +2025-09-24 09:53:29,554 INFO Connection check task end + +2025-09-24 09:53:30,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:32,554 INFO Connection check task start + +2025-09-24 09:53:32,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:32,554 INFO Out dated connection ,size=0 + +2025-09-24 09:53:32,555 INFO Connection check task end + +2025-09-24 09:53:33,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:35,555 INFO Connection check task start + +2025-09-24 09:53:35,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:35,555 INFO Out dated connection ,size=0 + +2025-09-24 09:53:35,555 INFO Connection check task end + +2025-09-24 09:53:36,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:38,555 INFO Connection check task start + +2025-09-24 09:53:38,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:38,556 INFO Out dated connection ,size=0 + +2025-09-24 09:53:38,556 INFO Connection check task end + +2025-09-24 09:53:39,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:41,557 INFO Connection check task start + +2025-09-24 09:53:41,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:41,557 INFO Out dated connection ,size=0 + +2025-09-24 09:53:41,557 INFO Connection check task end + +2025-09-24 09:53:42,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:44,557 INFO Connection check task start + +2025-09-24 09:53:44,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:44,557 INFO Out dated connection ,size=0 + +2025-09-24 09:53:44,557 INFO Connection check task end + +2025-09-24 09:53:45,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:47,557 INFO Connection check task start + +2025-09-24 09:53:47,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:47,557 INFO Out dated connection ,size=0 + +2025-09-24 09:53:47,557 INFO Connection check task end + +2025-09-24 09:53:48,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:50,558 INFO Connection check task start + +2025-09-24 09:53:50,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:50,558 INFO Out dated connection ,size=0 + +2025-09-24 09:53:50,558 INFO Connection check task end + +2025-09-24 09:53:51,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:53,559 INFO Connection check task start + +2025-09-24 09:53:53,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:53,559 INFO Out dated connection ,size=0 + +2025-09-24 09:53:53,559 INFO Connection check task end + +2025-09-24 09:53:54,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:56,560 INFO Connection check task start + +2025-09-24 09:53:56,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:56,560 INFO Out dated connection ,size=0 + +2025-09-24 09:53:56,560 INFO Connection check task end + +2025-09-24 09:53:57,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:53:59,560 INFO Connection check task start + +2025-09-24 09:53:59,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:53:59,561 INFO Out dated connection ,size=0 + +2025-09-24 09:53:59,561 INFO Connection check task end + +2025-09-24 09:54:00,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:02,561 INFO Connection check task start + +2025-09-24 09:54:02,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:02,561 INFO Out dated connection ,size=0 + +2025-09-24 09:54:02,561 INFO Connection check task end + +2025-09-24 09:54:03,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:05,561 INFO Connection check task start + +2025-09-24 09:54:05,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:05,561 INFO Out dated connection ,size=0 + +2025-09-24 09:54:05,562 INFO Connection check task end + +2025-09-24 09:54:06,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:08,562 INFO Connection check task start + +2025-09-24 09:54:08,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:08,562 INFO Out dated connection ,size=0 + +2025-09-24 09:54:08,562 INFO Connection check task end + +2025-09-24 09:54:09,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:11,563 INFO Connection check task start + +2025-09-24 09:54:11,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:11,563 INFO Out dated connection ,size=0 + +2025-09-24 09:54:11,563 INFO Connection check task end + +2025-09-24 09:54:12,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:14,563 INFO Connection check task start + +2025-09-24 09:54:14,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:14,563 INFO Out dated connection ,size=0 + +2025-09-24 09:54:14,563 INFO Connection check task end + +2025-09-24 09:54:15,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:17,564 INFO Connection check task start + +2025-09-24 09:54:17,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:17,564 INFO Out dated connection ,size=0 + +2025-09-24 09:54:17,564 INFO Connection check task end + +2025-09-24 09:54:18,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:20,565 INFO Connection check task start + +2025-09-24 09:54:20,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:20,565 INFO Out dated connection ,size=0 + +2025-09-24 09:54:20,565 INFO Connection check task end + +2025-09-24 09:54:21,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:23,566 INFO Connection check task start + +2025-09-24 09:54:23,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:23,566 INFO Out dated connection ,size=0 + +2025-09-24 09:54:23,566 INFO Connection check task end + +2025-09-24 09:54:24,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:26,566 INFO Connection check task start + +2025-09-24 09:54:26,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:26,567 INFO Out dated connection ,size=0 + +2025-09-24 09:54:26,567 INFO Connection check task end + +2025-09-24 09:54:27,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:29,567 INFO Connection check task start + +2025-09-24 09:54:29,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:29,568 INFO Out dated connection ,size=0 + +2025-09-24 09:54:29,568 INFO Connection check task end + +2025-09-24 09:54:30,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:32,568 INFO Connection check task start + +2025-09-24 09:54:32,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:32,568 INFO Out dated connection ,size=0 + +2025-09-24 09:54:32,568 INFO Connection check task end + +2025-09-24 09:54:33,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:35,569 INFO Connection check task start + +2025-09-24 09:54:35,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:35,569 INFO Out dated connection ,size=0 + +2025-09-24 09:54:35,569 INFO Connection check task end + +2025-09-24 09:54:36,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:38,569 INFO Connection check task start + +2025-09-24 09:54:38,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:38,569 INFO Out dated connection ,size=0 + +2025-09-24 09:54:38,569 INFO Connection check task end + +2025-09-24 09:54:39,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:41,571 INFO Connection check task start + +2025-09-24 09:54:41,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:41,571 INFO Out dated connection ,size=0 + +2025-09-24 09:54:41,571 INFO Connection check task end + +2025-09-24 09:54:42,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:44,572 INFO Connection check task start + +2025-09-24 09:54:44,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:44,572 INFO Out dated connection ,size=0 + +2025-09-24 09:54:44,572 INFO Connection check task end + +2025-09-24 09:54:45,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:47,573 INFO Connection check task start + +2025-09-24 09:54:47,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:47,573 INFO Out dated connection ,size=0 + +2025-09-24 09:54:47,573 INFO Connection check task end + +2025-09-24 09:54:48,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:50,573 INFO Connection check task start + +2025-09-24 09:54:50,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:50,573 INFO Out dated connection ,size=0 + +2025-09-24 09:54:50,574 INFO Connection check task end + +2025-09-24 09:54:51,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:53,575 INFO Connection check task start + +2025-09-24 09:54:53,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:53,576 INFO Out dated connection ,size=0 + +2025-09-24 09:54:53,576 INFO Connection check task end + +2025-09-24 09:54:54,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:56,576 INFO Connection check task start + +2025-09-24 09:54:56,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:56,576 INFO Out dated connection ,size=0 + +2025-09-24 09:54:56,576 INFO Connection check task end + +2025-09-24 09:54:57,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:54:59,577 INFO Connection check task start + +2025-09-24 09:54:59,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:54:59,577 INFO Out dated connection ,size=0 + +2025-09-24 09:54:59,577 INFO Connection check task end + +2025-09-24 09:55:00,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:02,577 INFO Connection check task start + +2025-09-24 09:55:02,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:02,578 INFO Out dated connection ,size=0 + +2025-09-24 09:55:02,578 INFO Connection check task end + +2025-09-24 09:55:03,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:05,580 INFO Connection check task start + +2025-09-24 09:55:05,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:05,580 INFO Out dated connection ,size=0 + +2025-09-24 09:55:05,580 INFO Connection check task end + +2025-09-24 09:55:06,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:08,580 INFO Connection check task start + +2025-09-24 09:55:08,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:08,580 INFO Out dated connection ,size=0 + +2025-09-24 09:55:08,581 INFO Connection check task end + +2025-09-24 09:55:09,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:11,581 INFO Connection check task start + +2025-09-24 09:55:11,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:11,581 INFO Out dated connection ,size=0 + +2025-09-24 09:55:11,581 INFO Connection check task end + +2025-09-24 09:55:12,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:14,582 INFO Connection check task start + +2025-09-24 09:55:14,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:14,582 INFO Out dated connection ,size=0 + +2025-09-24 09:55:14,582 INFO Connection check task end + +2025-09-24 09:55:15,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:17,584 INFO Connection check task start + +2025-09-24 09:55:17,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:17,584 INFO Out dated connection ,size=0 + +2025-09-24 09:55:17,584 INFO Connection check task end + +2025-09-24 09:55:18,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:20,586 INFO Connection check task start + +2025-09-24 09:55:20,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:20,587 INFO Out dated connection ,size=0 + +2025-09-24 09:55:20,587 INFO Connection check task end + +2025-09-24 09:55:21,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:23,588 INFO Connection check task start + +2025-09-24 09:55:23,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:23,588 INFO Out dated connection ,size=0 + +2025-09-24 09:55:23,588 INFO Connection check task end + +2025-09-24 09:55:24,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:26,588 INFO Connection check task start + +2025-09-24 09:55:26,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:26,588 INFO Out dated connection ,size=0 + +2025-09-24 09:55:26,588 INFO Connection check task end + +2025-09-24 09:55:27,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:29,589 INFO Connection check task start + +2025-09-24 09:55:29,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:29,589 INFO Out dated connection ,size=0 + +2025-09-24 09:55:29,589 INFO Connection check task end + +2025-09-24 09:55:30,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:32,590 INFO Connection check task start + +2025-09-24 09:55:32,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:32,591 INFO Out dated connection ,size=0 + +2025-09-24 09:55:32,591 INFO Connection check task end + +2025-09-24 09:55:33,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:35,591 INFO Connection check task start + +2025-09-24 09:55:35,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:35,591 INFO Out dated connection ,size=0 + +2025-09-24 09:55:35,591 INFO Connection check task end + +2025-09-24 09:55:36,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:38,593 INFO Connection check task start + +2025-09-24 09:55:38,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:38,593 INFO Out dated connection ,size=0 + +2025-09-24 09:55:38,593 INFO Connection check task end + +2025-09-24 09:55:39,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:41,594 INFO Connection check task start + +2025-09-24 09:55:41,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:41,594 INFO Out dated connection ,size=0 + +2025-09-24 09:55:41,594 INFO Connection check task end + +2025-09-24 09:55:42,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:44,595 INFO Connection check task start + +2025-09-24 09:55:44,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:44,595 INFO Out dated connection ,size=0 + +2025-09-24 09:55:44,595 INFO Connection check task end + +2025-09-24 09:55:45,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:47,595 INFO Connection check task start + +2025-09-24 09:55:47,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:47,596 INFO Out dated connection ,size=0 + +2025-09-24 09:55:47,596 INFO Connection check task end + +2025-09-24 09:55:48,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:50,596 INFO Connection check task start + +2025-09-24 09:55:50,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:50,597 INFO Out dated connection ,size=0 + +2025-09-24 09:55:50,597 INFO Connection check task end + +2025-09-24 09:55:51,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:53,597 INFO Connection check task start + +2025-09-24 09:55:53,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:53,597 INFO Out dated connection ,size=0 + +2025-09-24 09:55:53,597 INFO Connection check task end + +2025-09-24 09:55:54,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:56,599 INFO Connection check task start + +2025-09-24 09:55:56,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:56,600 INFO Out dated connection ,size=0 + +2025-09-24 09:55:56,600 INFO Connection check task end + +2025-09-24 09:55:57,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:55:59,600 INFO Connection check task start + +2025-09-24 09:55:59,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:55:59,600 INFO Out dated connection ,size=0 + +2025-09-24 09:55:59,600 INFO Connection check task end + +2025-09-24 09:56:00,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:02,601 INFO Connection check task start + +2025-09-24 09:56:02,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:02,601 INFO Out dated connection ,size=0 + +2025-09-24 09:56:02,601 INFO Connection check task end + +2025-09-24 09:56:03,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:05,602 INFO Connection check task start + +2025-09-24 09:56:05,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:05,602 INFO Out dated connection ,size=0 + +2025-09-24 09:56:05,603 INFO Connection check task end + +2025-09-24 09:56:06,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:08,603 INFO Connection check task start + +2025-09-24 09:56:08,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:08,603 INFO Out dated connection ,size=0 + +2025-09-24 09:56:08,603 INFO Connection check task end + +2025-09-24 09:56:09,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:11,603 INFO Connection check task start + +2025-09-24 09:56:11,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:11,604 INFO Out dated connection ,size=0 + +2025-09-24 09:56:11,604 INFO Connection check task end + +2025-09-24 09:56:12,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:14,605 INFO Connection check task start + +2025-09-24 09:56:14,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:14,606 INFO Out dated connection ,size=0 + +2025-09-24 09:56:14,606 INFO Connection check task end + +2025-09-24 09:56:15,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:17,606 INFO Connection check task start + +2025-09-24 09:56:17,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:17,606 INFO Out dated connection ,size=0 + +2025-09-24 09:56:17,606 INFO Connection check task end + +2025-09-24 09:56:18,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:20,607 INFO Connection check task start + +2025-09-24 09:56:20,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:20,607 INFO Out dated connection ,size=0 + +2025-09-24 09:56:20,607 INFO Connection check task end + +2025-09-24 09:56:21,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:23,607 INFO Connection check task start + +2025-09-24 09:56:23,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:23,608 INFO Out dated connection ,size=0 + +2025-09-24 09:56:23,608 INFO Connection check task end + +2025-09-24 09:56:24,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:26,609 INFO Connection check task start + +2025-09-24 09:56:26,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:26,609 INFO Out dated connection ,size=0 + +2025-09-24 09:56:26,609 INFO Connection check task end + +2025-09-24 09:56:27,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:29,609 INFO Connection check task start + +2025-09-24 09:56:29,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:29,610 INFO Out dated connection ,size=0 + +2025-09-24 09:56:29,610 INFO Connection check task end + +2025-09-24 09:56:30,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:32,610 INFO Connection check task start + +2025-09-24 09:56:32,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:32,610 INFO Out dated connection ,size=0 + +2025-09-24 09:56:32,610 INFO Connection check task end + +2025-09-24 09:56:33,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:35,612 INFO Connection check task start + +2025-09-24 09:56:35,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:35,612 INFO Out dated connection ,size=0 + +2025-09-24 09:56:35,613 INFO Connection check task end + +2025-09-24 09:56:36,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:38,613 INFO Connection check task start + +2025-09-24 09:56:38,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:38,613 INFO Out dated connection ,size=0 + +2025-09-24 09:56:38,613 INFO Connection check task end + +2025-09-24 09:56:39,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:41,614 INFO Connection check task start + +2025-09-24 09:56:41,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:41,614 INFO Out dated connection ,size=0 + +2025-09-24 09:56:41,614 INFO Connection check task end + +2025-09-24 09:56:42,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:44,614 INFO Connection check task start + +2025-09-24 09:56:44,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:44,615 INFO Out dated connection ,size=0 + +2025-09-24 09:56:44,615 INFO Connection check task end + +2025-09-24 09:56:45,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:47,617 INFO Connection check task start + +2025-09-24 09:56:47,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:47,617 INFO Out dated connection ,size=0 + +2025-09-24 09:56:47,617 INFO Connection check task end + +2025-09-24 09:56:48,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:50,617 INFO Connection check task start + +2025-09-24 09:56:50,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:50,617 INFO Out dated connection ,size=0 + +2025-09-24 09:56:50,617 INFO Connection check task end + +2025-09-24 09:56:51,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:53,618 INFO Connection check task start + +2025-09-24 09:56:53,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:53,618 INFO Out dated connection ,size=0 + +2025-09-24 09:56:53,618 INFO Connection check task end + +2025-09-24 09:56:54,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:56,619 INFO Connection check task start + +2025-09-24 09:56:56,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:56,619 INFO Out dated connection ,size=0 + +2025-09-24 09:56:56,619 INFO Connection check task end + +2025-09-24 09:56:57,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:56:59,621 INFO Connection check task start + +2025-09-24 09:56:59,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:56:59,622 INFO Out dated connection ,size=0 + +2025-09-24 09:56:59,622 INFO Connection check task end + +2025-09-24 09:57:00,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:02,624 INFO Connection check task start + +2025-09-24 09:57:02,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:02,624 INFO Out dated connection ,size=0 + +2025-09-24 09:57:02,624 INFO Connection check task end + +2025-09-24 09:57:03,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:05,625 INFO Connection check task start + +2025-09-24 09:57:05,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:05,625 INFO Out dated connection ,size=0 + +2025-09-24 09:57:05,625 INFO Connection check task end + +2025-09-24 09:57:06,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:08,625 INFO Connection check task start + +2025-09-24 09:57:08,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:08,626 INFO Out dated connection ,size=0 + +2025-09-24 09:57:08,626 INFO Connection check task end + +2025-09-24 09:57:09,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:11,628 INFO Connection check task start + +2025-09-24 09:57:11,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:11,628 INFO Out dated connection ,size=0 + +2025-09-24 09:57:11,628 INFO Connection check task end + +2025-09-24 09:57:12,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:14,630 INFO Connection check task start + +2025-09-24 09:57:14,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:14,631 INFO Out dated connection ,size=0 + +2025-09-24 09:57:14,631 INFO Connection check task end + +2025-09-24 09:57:15,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:17,631 INFO Connection check task start + +2025-09-24 09:57:17,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:17,631 INFO Out dated connection ,size=0 + +2025-09-24 09:57:17,631 INFO Connection check task end + +2025-09-24 09:57:18,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:20,633 INFO Connection check task start + +2025-09-24 09:57:20,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:20,634 INFO Out dated connection ,size=0 + +2025-09-24 09:57:20,634 INFO Connection check task end + +2025-09-24 09:57:21,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:23,636 INFO Connection check task start + +2025-09-24 09:57:23,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:23,636 INFO Out dated connection ,size=0 + +2025-09-24 09:57:23,636 INFO Connection check task end + +2025-09-24 09:57:24,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:26,637 INFO Connection check task start + +2025-09-24 09:57:26,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:26,637 INFO Out dated connection ,size=0 + +2025-09-24 09:57:26,637 INFO Connection check task end + +2025-09-24 09:57:27,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:29,639 INFO Connection check task start + +2025-09-24 09:57:29,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:29,639 INFO Out dated connection ,size=0 + +2025-09-24 09:57:29,639 INFO Connection check task end + +2025-09-24 09:57:30,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:32,641 INFO Connection check task start + +2025-09-24 09:57:32,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:32,641 INFO Out dated connection ,size=0 + +2025-09-24 09:57:32,641 INFO Connection check task end + +2025-09-24 09:57:33,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:35,642 INFO Connection check task start + +2025-09-24 09:57:35,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:35,642 INFO Out dated connection ,size=0 + +2025-09-24 09:57:35,642 INFO Connection check task end + +2025-09-24 09:57:36,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:38,643 INFO Connection check task start + +2025-09-24 09:57:38,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:38,643 INFO Out dated connection ,size=0 + +2025-09-24 09:57:38,643 INFO Connection check task end + +2025-09-24 09:57:39,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:41,643 INFO Connection check task start + +2025-09-24 09:57:41,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:41,644 INFO Out dated connection ,size=0 + +2025-09-24 09:57:41,644 INFO Connection check task end + +2025-09-24 09:57:42,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:44,644 INFO Connection check task start + +2025-09-24 09:57:44,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:44,644 INFO Out dated connection ,size=0 + +2025-09-24 09:57:44,645 INFO Connection check task end + +2025-09-24 09:57:45,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:47,646 INFO Connection check task start + +2025-09-24 09:57:47,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:47,646 INFO Out dated connection ,size=0 + +2025-09-24 09:57:47,646 INFO Connection check task end + +2025-09-24 09:57:48,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:50,646 INFO Connection check task start + +2025-09-24 09:57:50,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:50,646 INFO Out dated connection ,size=0 + +2025-09-24 09:57:50,646 INFO Connection check task end + +2025-09-24 09:57:51,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:53,647 INFO Connection check task start + +2025-09-24 09:57:53,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:53,647 INFO Out dated connection ,size=0 + +2025-09-24 09:57:53,647 INFO Connection check task end + +2025-09-24 09:57:54,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:56,647 INFO Connection check task start + +2025-09-24 09:57:56,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:56,647 INFO Out dated connection ,size=0 + +2025-09-24 09:57:56,647 INFO Connection check task end + +2025-09-24 09:57:57,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:57:59,649 INFO Connection check task start + +2025-09-24 09:57:59,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:57:59,649 INFO Out dated connection ,size=0 + +2025-09-24 09:57:59,649 INFO Connection check task end + +2025-09-24 09:58:00,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:02,650 INFO Connection check task start + +2025-09-24 09:58:02,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:02,651 INFO Out dated connection ,size=0 + +2025-09-24 09:58:02,651 INFO Connection check task end + +2025-09-24 09:58:03,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:05,652 INFO Connection check task start + +2025-09-24 09:58:05,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:05,652 INFO Out dated connection ,size=0 + +2025-09-24 09:58:05,652 INFO Connection check task end + +2025-09-24 09:58:06,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:08,653 INFO Connection check task start + +2025-09-24 09:58:08,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:08,653 INFO Out dated connection ,size=0 + +2025-09-24 09:58:08,653 INFO Connection check task end + +2025-09-24 09:58:09,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:11,654 INFO Connection check task start + +2025-09-24 09:58:11,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:11,655 INFO Out dated connection ,size=0 + +2025-09-24 09:58:11,655 INFO Connection check task end + +2025-09-24 09:58:12,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:14,655 INFO Connection check task start + +2025-09-24 09:58:14,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:14,655 INFO Out dated connection ,size=0 + +2025-09-24 09:58:14,655 INFO Connection check task end + +2025-09-24 09:58:15,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:17,658 INFO Connection check task start + +2025-09-24 09:58:17,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:17,658 INFO Out dated connection ,size=0 + +2025-09-24 09:58:17,658 INFO Connection check task end + +2025-09-24 09:58:18,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:20,659 INFO Connection check task start + +2025-09-24 09:58:20,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:20,659 INFO Out dated connection ,size=0 + +2025-09-24 09:58:20,659 INFO Connection check task end + +2025-09-24 09:58:21,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:23,661 INFO Connection check task start + +2025-09-24 09:58:23,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:23,661 INFO Out dated connection ,size=0 + +2025-09-24 09:58:23,661 INFO Connection check task end + +2025-09-24 09:58:24,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:26,662 INFO Connection check task start + +2025-09-24 09:58:26,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:26,662 INFO Out dated connection ,size=0 + +2025-09-24 09:58:26,662 INFO Connection check task end + +2025-09-24 09:58:27,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:29,663 INFO Connection check task start + +2025-09-24 09:58:29,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:29,663 INFO Out dated connection ,size=0 + +2025-09-24 09:58:29,663 INFO Connection check task end + +2025-09-24 09:58:30,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:32,665 INFO Connection check task start + +2025-09-24 09:58:32,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:32,665 INFO Out dated connection ,size=0 + +2025-09-24 09:58:32,666 INFO Connection check task end + +2025-09-24 09:58:33,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:35,666 INFO Connection check task start + +2025-09-24 09:58:35,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:35,671 INFO Out dated connection ,size=0 + +2025-09-24 09:58:35,671 INFO Connection check task end + +2025-09-24 09:58:36,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:38,672 INFO Connection check task start + +2025-09-24 09:58:38,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:38,672 INFO Out dated connection ,size=0 + +2025-09-24 09:58:38,672 INFO Connection check task end + +2025-09-24 09:58:39,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:41,674 INFO Connection check task start + +2025-09-24 09:58:41,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:41,674 INFO Out dated connection ,size=0 + +2025-09-24 09:58:41,674 INFO Connection check task end + +2025-09-24 09:58:42,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:44,676 INFO Connection check task start + +2025-09-24 09:58:44,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:44,676 INFO Out dated connection ,size=0 + +2025-09-24 09:58:44,676 INFO Connection check task end + +2025-09-24 09:58:45,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:47,679 INFO Connection check task start + +2025-09-24 09:58:47,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:47,679 INFO Out dated connection ,size=0 + +2025-09-24 09:58:47,679 INFO Connection check task end + +2025-09-24 09:58:48,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:50,680 INFO Connection check task start + +2025-09-24 09:58:50,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:50,680 INFO Out dated connection ,size=0 + +2025-09-24 09:58:50,680 INFO Connection check task end + +2025-09-24 09:58:51,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:53,681 INFO Connection check task start + +2025-09-24 09:58:53,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:53,681 INFO Out dated connection ,size=0 + +2025-09-24 09:58:53,681 INFO Connection check task end + +2025-09-24 09:58:54,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:56,683 INFO Connection check task start + +2025-09-24 09:58:56,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:56,684 INFO Out dated connection ,size=0 + +2025-09-24 09:58:56,684 INFO Connection check task end + +2025-09-24 09:58:57,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:58:59,684 INFO Connection check task start + +2025-09-24 09:58:59,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:58:59,684 INFO Out dated connection ,size=0 + +2025-09-24 09:58:59,684 INFO Connection check task end + +2025-09-24 09:59:00,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:02,685 INFO Connection check task start + +2025-09-24 09:59:02,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:02,685 INFO Out dated connection ,size=0 + +2025-09-24 09:59:02,685 INFO Connection check task end + +2025-09-24 09:59:03,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:05,686 INFO Connection check task start + +2025-09-24 09:59:05,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:05,687 INFO Out dated connection ,size=0 + +2025-09-24 09:59:05,687 INFO Connection check task end + +2025-09-24 09:59:06,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:08,689 INFO Connection check task start + +2025-09-24 09:59:08,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:08,689 INFO Out dated connection ,size=0 + +2025-09-24 09:59:08,689 INFO Connection check task end + +2025-09-24 09:59:09,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:11,691 INFO Connection check task start + +2025-09-24 09:59:11,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:11,691 INFO Out dated connection ,size=0 + +2025-09-24 09:59:11,691 INFO Connection check task end + +2025-09-24 09:59:12,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:14,692 INFO Connection check task start + +2025-09-24 09:59:14,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:14,693 INFO Out dated connection ,size=0 + +2025-09-24 09:59:14,693 INFO Connection check task end + +2025-09-24 09:59:15,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:17,693 INFO Connection check task start + +2025-09-24 09:59:17,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:17,694 INFO Out dated connection ,size=0 + +2025-09-24 09:59:17,694 INFO Connection check task end + +2025-09-24 09:59:18,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:20,695 INFO Connection check task start + +2025-09-24 09:59:20,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:20,696 INFO Out dated connection ,size=0 + +2025-09-24 09:59:20,696 INFO Connection check task end + +2025-09-24 09:59:21,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:23,697 INFO Connection check task start + +2025-09-24 09:59:23,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:23,698 INFO Out dated connection ,size=0 + +2025-09-24 09:59:23,698 INFO Connection check task end + +2025-09-24 09:59:24,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:26,699 INFO Connection check task start + +2025-09-24 09:59:26,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:26,700 INFO Out dated connection ,size=0 + +2025-09-24 09:59:26,700 INFO Connection check task end + +2025-09-24 09:59:27,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:29,701 INFO Connection check task start + +2025-09-24 09:59:29,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:29,702 INFO Out dated connection ,size=0 + +2025-09-24 09:59:29,702 INFO Connection check task end + +2025-09-24 09:59:30,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:32,703 INFO Connection check task start + +2025-09-24 09:59:32,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:32,703 INFO Out dated connection ,size=0 + +2025-09-24 09:59:32,703 INFO Connection check task end + +2025-09-24 09:59:33,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:35,703 INFO Connection check task start + +2025-09-24 09:59:35,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:35,704 INFO Out dated connection ,size=0 + +2025-09-24 09:59:35,704 INFO Connection check task end + +2025-09-24 09:59:36,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:38,705 INFO Connection check task start + +2025-09-24 09:59:38,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:38,705 INFO Out dated connection ,size=0 + +2025-09-24 09:59:38,705 INFO Connection check task end + +2025-09-24 09:59:39,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:41,706 INFO Connection check task start + +2025-09-24 09:59:41,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:41,706 INFO Out dated connection ,size=0 + +2025-09-24 09:59:41,706 INFO Connection check task end + +2025-09-24 09:59:42,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:44,707 INFO Connection check task start + +2025-09-24 09:59:44,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:44,707 INFO Out dated connection ,size=0 + +2025-09-24 09:59:44,707 INFO Connection check task end + +2025-09-24 09:59:45,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:47,709 INFO Connection check task start + +2025-09-24 09:59:47,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:47,709 INFO Out dated connection ,size=0 + +2025-09-24 09:59:47,709 INFO Connection check task end + +2025-09-24 09:59:48,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:50,711 INFO Connection check task start + +2025-09-24 09:59:50,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:50,711 INFO Out dated connection ,size=0 + +2025-09-24 09:59:50,711 INFO Connection check task end + +2025-09-24 09:59:51,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:53,712 INFO Connection check task start + +2025-09-24 09:59:53,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:53,712 INFO Out dated connection ,size=0 + +2025-09-24 09:59:53,712 INFO Connection check task end + +2025-09-24 09:59:54,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:56,714 INFO Connection check task start + +2025-09-24 09:59:56,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:56,714 INFO Out dated connection ,size=0 + +2025-09-24 09:59:56,714 INFO Connection check task end + +2025-09-24 09:59:57,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 09:59:59,715 INFO Connection check task start + +2025-09-24 09:59:59,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 09:59:59,715 INFO Out dated connection ,size=0 + +2025-09-24 09:59:59,715 INFO Connection check task end + +2025-09-24 10:00:00,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:02,716 INFO Connection check task start + +2025-09-24 10:00:02,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:02,716 INFO Out dated connection ,size=0 + +2025-09-24 10:00:02,716 INFO Connection check task end + +2025-09-24 10:00:03,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:05,718 INFO Connection check task start + +2025-09-24 10:00:05,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:05,719 INFO Out dated connection ,size=0 + +2025-09-24 10:00:05,719 INFO Connection check task end + +2025-09-24 10:00:06,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:08,719 INFO Connection check task start + +2025-09-24 10:00:08,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:08,720 INFO Out dated connection ,size=0 + +2025-09-24 10:00:08,720 INFO Connection check task end + +2025-09-24 10:00:09,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:11,720 INFO Connection check task start + +2025-09-24 10:00:11,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:11,720 INFO Out dated connection ,size=0 + +2025-09-24 10:00:11,720 INFO Connection check task end + +2025-09-24 10:00:12,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:14,720 INFO Connection check task start + +2025-09-24 10:00:14,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:14,720 INFO Out dated connection ,size=0 + +2025-09-24 10:00:14,720 INFO Connection check task end + +2025-09-24 10:00:15,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:17,721 INFO Connection check task start + +2025-09-24 10:00:17,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:17,721 INFO Out dated connection ,size=0 + +2025-09-24 10:00:17,722 INFO Connection check task end + +2025-09-24 10:00:18,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:20,722 INFO Connection check task start + +2025-09-24 10:00:20,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:20,722 INFO Out dated connection ,size=0 + +2025-09-24 10:00:20,722 INFO Connection check task end + +2025-09-24 10:00:21,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:23,722 INFO Connection check task start + +2025-09-24 10:00:23,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:23,722 INFO Out dated connection ,size=0 + +2025-09-24 10:00:23,722 INFO Connection check task end + +2025-09-24 10:00:24,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:26,723 INFO Connection check task start + +2025-09-24 10:00:26,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:26,723 INFO Out dated connection ,size=0 + +2025-09-24 10:00:26,723 INFO Connection check task end + +2025-09-24 10:00:27,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:29,724 INFO Connection check task start + +2025-09-24 10:00:29,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:29,724 INFO Out dated connection ,size=0 + +2025-09-24 10:00:29,724 INFO Connection check task end + +2025-09-24 10:00:30,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:32,725 INFO Connection check task start + +2025-09-24 10:00:32,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:32,725 INFO Out dated connection ,size=0 + +2025-09-24 10:00:32,725 INFO Connection check task end + +2025-09-24 10:00:33,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:35,725 INFO Connection check task start + +2025-09-24 10:00:35,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:35,726 INFO Out dated connection ,size=0 + +2025-09-24 10:00:35,726 INFO Connection check task end + +2025-09-24 10:00:36,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:38,728 INFO Connection check task start + +2025-09-24 10:00:38,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:38,728 INFO Out dated connection ,size=0 + +2025-09-24 10:00:38,728 INFO Connection check task end + +2025-09-24 10:00:40,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:41,729 INFO Connection check task start + +2025-09-24 10:00:41,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:41,729 INFO Out dated connection ,size=0 + +2025-09-24 10:00:41,730 INFO Connection check task end + +2025-09-24 10:00:43,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:44,730 INFO Connection check task start + +2025-09-24 10:00:44,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:44,730 INFO Out dated connection ,size=0 + +2025-09-24 10:00:44,730 INFO Connection check task end + +2025-09-24 10:00:46,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:47,731 INFO Connection check task start + +2025-09-24 10:00:47,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:47,731 INFO Out dated connection ,size=0 + +2025-09-24 10:00:47,731 INFO Connection check task end + +2025-09-24 10:00:49,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:50,732 INFO Connection check task start + +2025-09-24 10:00:50,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:50,732 INFO Out dated connection ,size=0 + +2025-09-24 10:00:50,732 INFO Connection check task end + +2025-09-24 10:00:52,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:53,734 INFO Connection check task start + +2025-09-24 10:00:53,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:53,734 INFO Out dated connection ,size=0 + +2025-09-24 10:00:53,734 INFO Connection check task end + +2025-09-24 10:00:55,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:56,736 INFO Connection check task start + +2025-09-24 10:00:56,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:56,736 INFO Out dated connection ,size=0 + +2025-09-24 10:00:56,736 INFO Connection check task end + +2025-09-24 10:00:58,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:00:59,736 INFO Connection check task start + +2025-09-24 10:00:59,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:00:59,737 INFO Out dated connection ,size=0 + +2025-09-24 10:00:59,737 INFO Connection check task end + +2025-09-24 10:01:01,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:02,738 INFO Connection check task start + +2025-09-24 10:01:02,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:02,738 INFO Out dated connection ,size=0 + +2025-09-24 10:01:02,738 INFO Connection check task end + +2025-09-24 10:01:04,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:05,740 INFO Connection check task start + +2025-09-24 10:01:05,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:05,740 INFO Out dated connection ,size=0 + +2025-09-24 10:01:05,740 INFO Connection check task end + +2025-09-24 10:01:07,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:08,742 INFO Connection check task start + +2025-09-24 10:01:08,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:08,743 INFO Out dated connection ,size=0 + +2025-09-24 10:01:08,743 INFO Connection check task end + +2025-09-24 10:01:10,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:11,745 INFO Connection check task start + +2025-09-24 10:01:11,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:11,745 INFO Out dated connection ,size=0 + +2025-09-24 10:01:11,745 INFO Connection check task end + +2025-09-24 10:01:13,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:14,747 INFO Connection check task start + +2025-09-24 10:01:14,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:14,747 INFO Out dated connection ,size=0 + +2025-09-24 10:01:14,747 INFO Connection check task end + +2025-09-24 10:01:16,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:17,748 INFO Connection check task start + +2025-09-24 10:01:17,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:17,748 INFO Out dated connection ,size=0 + +2025-09-24 10:01:17,748 INFO Connection check task end + +2025-09-24 10:01:19,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:20,748 INFO Connection check task start + +2025-09-24 10:01:20,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:20,748 INFO Out dated connection ,size=0 + +2025-09-24 10:01:20,748 INFO Connection check task end + +2025-09-24 10:01:22,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:23,749 INFO Connection check task start + +2025-09-24 10:01:23,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:23,749 INFO Out dated connection ,size=0 + +2025-09-24 10:01:23,749 INFO Connection check task end + +2025-09-24 10:01:25,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:26,750 INFO Connection check task start + +2025-09-24 10:01:26,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:26,750 INFO Out dated connection ,size=0 + +2025-09-24 10:01:26,750 INFO Connection check task end + +2025-09-24 10:01:28,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:29,751 INFO Connection check task start + +2025-09-24 10:01:29,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:29,751 INFO Out dated connection ,size=0 + +2025-09-24 10:01:29,751 INFO Connection check task end + +2025-09-24 10:01:31,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:32,751 INFO Connection check task start + +2025-09-24 10:01:32,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:32,751 INFO Out dated connection ,size=0 + +2025-09-24 10:01:32,752 INFO Connection check task end + +2025-09-24 10:01:34,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:35,752 INFO Connection check task start + +2025-09-24 10:01:35,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:35,752 INFO Out dated connection ,size=0 + +2025-09-24 10:01:35,752 INFO Connection check task end + +2025-09-24 10:01:37,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:38,753 INFO Connection check task start + +2025-09-24 10:01:38,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:38,753 INFO Out dated connection ,size=0 + +2025-09-24 10:01:38,753 INFO Connection check task end + +2025-09-24 10:01:40,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:41,753 INFO Connection check task start + +2025-09-24 10:01:41,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:41,754 INFO Out dated connection ,size=0 + +2025-09-24 10:01:41,754 INFO Connection check task end + +2025-09-24 10:01:43,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:44,754 INFO Connection check task start + +2025-09-24 10:01:44,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:44,754 INFO Out dated connection ,size=0 + +2025-09-24 10:01:44,754 INFO Connection check task end + +2025-09-24 10:01:46,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:47,754 INFO Connection check task start + +2025-09-24 10:01:47,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:47,755 INFO Out dated connection ,size=0 + +2025-09-24 10:01:47,755 INFO Connection check task end + +2025-09-24 10:01:49,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:50,756 INFO Connection check task start + +2025-09-24 10:01:50,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:50,756 INFO Out dated connection ,size=0 + +2025-09-24 10:01:50,756 INFO Connection check task end + +2025-09-24 10:01:52,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:53,757 INFO Connection check task start + +2025-09-24 10:01:53,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:53,757 INFO Out dated connection ,size=0 + +2025-09-24 10:01:53,757 INFO Connection check task end + +2025-09-24 10:01:55,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:56,757 INFO Connection check task start + +2025-09-24 10:01:56,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:56,758 INFO Out dated connection ,size=0 + +2025-09-24 10:01:56,758 INFO Connection check task end + +2025-09-24 10:01:58,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:01:59,759 INFO Connection check task start + +2025-09-24 10:01:59,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:01:59,759 INFO Out dated connection ,size=0 + +2025-09-24 10:01:59,759 INFO Connection check task end + +2025-09-24 10:02:01,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:02,760 INFO Connection check task start + +2025-09-24 10:02:02,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:02,760 INFO Out dated connection ,size=0 + +2025-09-24 10:02:02,760 INFO Connection check task end + +2025-09-24 10:02:04,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:05,762 INFO Connection check task start + +2025-09-24 10:02:05,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:05,763 INFO Out dated connection ,size=0 + +2025-09-24 10:02:05,763 INFO Connection check task end + +2025-09-24 10:02:07,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:08,763 INFO Connection check task start + +2025-09-24 10:02:08,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:08,763 INFO Out dated connection ,size=0 + +2025-09-24 10:02:08,763 INFO Connection check task end + +2025-09-24 10:02:10,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:11,765 INFO Connection check task start + +2025-09-24 10:02:11,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:11,766 INFO Out dated connection ,size=0 + +2025-09-24 10:02:11,766 INFO Connection check task end + +2025-09-24 10:02:13,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:14,767 INFO Connection check task start + +2025-09-24 10:02:14,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:14,767 INFO Out dated connection ,size=0 + +2025-09-24 10:02:14,767 INFO Connection check task end + +2025-09-24 10:02:16,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:17,769 INFO Connection check task start + +2025-09-24 10:02:17,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:17,769 INFO Out dated connection ,size=0 + +2025-09-24 10:02:17,769 INFO Connection check task end + +2025-09-24 10:02:19,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:20,769 INFO Connection check task start + +2025-09-24 10:02:20,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:20,770 INFO Out dated connection ,size=0 + +2025-09-24 10:02:20,770 INFO Connection check task end + +2025-09-24 10:02:22,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:23,770 INFO Connection check task start + +2025-09-24 10:02:23,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:23,770 INFO Out dated connection ,size=0 + +2025-09-24 10:02:23,770 INFO Connection check task end + +2025-09-24 10:02:25,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:26,772 INFO Connection check task start + +2025-09-24 10:02:26,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:26,773 INFO Out dated connection ,size=0 + +2025-09-24 10:02:26,773 INFO Connection check task end + +2025-09-24 10:02:28,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:29,775 INFO Connection check task start + +2025-09-24 10:02:29,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:29,775 INFO Out dated connection ,size=0 + +2025-09-24 10:02:29,775 INFO Connection check task end + +2025-09-24 10:02:31,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:32,777 INFO Connection check task start + +2025-09-24 10:02:32,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:32,777 INFO Out dated connection ,size=0 + +2025-09-24 10:02:32,777 INFO Connection check task end + +2025-09-24 10:02:34,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:35,778 INFO Connection check task start + +2025-09-24 10:02:35,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:35,778 INFO Out dated connection ,size=0 + +2025-09-24 10:02:35,778 INFO Connection check task end + +2025-09-24 10:02:37,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:38,780 INFO Connection check task start + +2025-09-24 10:02:38,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:38,780 INFO Out dated connection ,size=0 + +2025-09-24 10:02:38,780 INFO Connection check task end + +2025-09-24 10:02:40,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:41,781 INFO Connection check task start + +2025-09-24 10:02:41,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:41,781 INFO Out dated connection ,size=0 + +2025-09-24 10:02:41,781 INFO Connection check task end + +2025-09-24 10:02:43,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:44,783 INFO Connection check task start + +2025-09-24 10:02:44,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:44,783 INFO Out dated connection ,size=0 + +2025-09-24 10:02:44,783 INFO Connection check task end + +2025-09-24 10:02:46,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:47,784 INFO Connection check task start + +2025-09-24 10:02:47,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:47,784 INFO Out dated connection ,size=0 + +2025-09-24 10:02:47,784 INFO Connection check task end + +2025-09-24 10:02:49,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:50,785 INFO Connection check task start + +2025-09-24 10:02:50,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:50,785 INFO Out dated connection ,size=0 + +2025-09-24 10:02:50,785 INFO Connection check task end + +2025-09-24 10:02:52,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:53,785 INFO Connection check task start + +2025-09-24 10:02:53,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:53,786 INFO Out dated connection ,size=0 + +2025-09-24 10:02:53,786 INFO Connection check task end + +2025-09-24 10:02:55,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:56,788 INFO Connection check task start + +2025-09-24 10:02:56,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:56,788 INFO Out dated connection ,size=0 + +2025-09-24 10:02:56,788 INFO Connection check task end + +2025-09-24 10:02:58,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:02:59,789 INFO Connection check task start + +2025-09-24 10:02:59,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:02:59,789 INFO Out dated connection ,size=0 + +2025-09-24 10:02:59,789 INFO Connection check task end + +2025-09-24 10:03:01,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:02,791 INFO Connection check task start + +2025-09-24 10:03:02,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:02,792 INFO Out dated connection ,size=0 + +2025-09-24 10:03:02,792 INFO Connection check task end + +2025-09-24 10:03:04,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:05,792 INFO Connection check task start + +2025-09-24 10:03:05,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:05,792 INFO Out dated connection ,size=0 + +2025-09-24 10:03:05,792 INFO Connection check task end + +2025-09-24 10:03:07,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:08,793 INFO Connection check task start + +2025-09-24 10:03:08,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:08,793 INFO Out dated connection ,size=0 + +2025-09-24 10:03:08,793 INFO Connection check task end + +2025-09-24 10:03:10,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:11,795 INFO Connection check task start + +2025-09-24 10:03:11,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:11,796 INFO Out dated connection ,size=0 + +2025-09-24 10:03:11,796 INFO Connection check task end + +2025-09-24 10:03:13,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:14,796 INFO Connection check task start + +2025-09-24 10:03:14,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:14,797 INFO Out dated connection ,size=0 + +2025-09-24 10:03:14,797 INFO Connection check task end + +2025-09-24 10:03:16,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:17,799 INFO Connection check task start + +2025-09-24 10:03:17,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:17,799 INFO Out dated connection ,size=0 + +2025-09-24 10:03:17,799 INFO Connection check task end + +2025-09-24 10:03:19,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:20,799 INFO Connection check task start + +2025-09-24 10:03:20,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:20,799 INFO Out dated connection ,size=0 + +2025-09-24 10:03:20,799 INFO Connection check task end + +2025-09-24 10:03:22,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:23,801 INFO Connection check task start + +2025-09-24 10:03:23,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:23,801 INFO Out dated connection ,size=0 + +2025-09-24 10:03:23,801 INFO Connection check task end + +2025-09-24 10:03:25,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:26,802 INFO Connection check task start + +2025-09-24 10:03:26,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:26,802 INFO Out dated connection ,size=0 + +2025-09-24 10:03:26,802 INFO Connection check task end + +2025-09-24 10:03:28,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:29,804 INFO Connection check task start + +2025-09-24 10:03:29,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:29,804 INFO Out dated connection ,size=0 + +2025-09-24 10:03:29,804 INFO Connection check task end + +2025-09-24 10:03:31,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:32,805 INFO Connection check task start + +2025-09-24 10:03:32,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:32,805 INFO Out dated connection ,size=0 + +2025-09-24 10:03:32,805 INFO Connection check task end + +2025-09-24 10:03:34,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:35,806 INFO Connection check task start + +2025-09-24 10:03:35,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:35,806 INFO Out dated connection ,size=0 + +2025-09-24 10:03:35,806 INFO Connection check task end + +2025-09-24 10:03:37,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:38,808 INFO Connection check task start + +2025-09-24 10:03:38,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:38,808 INFO Out dated connection ,size=0 + +2025-09-24 10:03:38,808 INFO Connection check task end + +2025-09-24 10:03:40,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:41,808 INFO Connection check task start + +2025-09-24 10:03:41,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:41,809 INFO Out dated connection ,size=0 + +2025-09-24 10:03:41,809 INFO Connection check task end + +2025-09-24 10:03:43,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:44,809 INFO Connection check task start + +2025-09-24 10:03:44,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:44,809 INFO Out dated connection ,size=0 + +2025-09-24 10:03:44,809 INFO Connection check task end + +2025-09-24 10:03:46,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:47,809 INFO Connection check task start + +2025-09-24 10:03:47,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:47,809 INFO Out dated connection ,size=0 + +2025-09-24 10:03:47,810 INFO Connection check task end + +2025-09-24 10:03:49,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:50,811 INFO Connection check task start + +2025-09-24 10:03:50,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:50,812 INFO Out dated connection ,size=0 + +2025-09-24 10:03:50,812 INFO Connection check task end + +2025-09-24 10:03:52,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:53,812 INFO Connection check task start + +2025-09-24 10:03:53,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:53,812 INFO Out dated connection ,size=0 + +2025-09-24 10:03:53,812 INFO Connection check task end + +2025-09-24 10:03:55,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:56,812 INFO Connection check task start + +2025-09-24 10:03:56,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:56,812 INFO Out dated connection ,size=0 + +2025-09-24 10:03:56,813 INFO Connection check task end + +2025-09-24 10:03:58,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:03:59,813 INFO Connection check task start + +2025-09-24 10:03:59,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:03:59,813 INFO Out dated connection ,size=0 + +2025-09-24 10:03:59,813 INFO Connection check task end + +2025-09-24 10:04:01,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:02,815 INFO Connection check task start + +2025-09-24 10:04:02,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:02,815 INFO Out dated connection ,size=0 + +2025-09-24 10:04:02,815 INFO Connection check task end + +2025-09-24 10:04:04,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:05,816 INFO Connection check task start + +2025-09-24 10:04:05,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:05,816 INFO Out dated connection ,size=0 + +2025-09-24 10:04:05,816 INFO Connection check task end + +2025-09-24 10:04:07,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:08,818 INFO Connection check task start + +2025-09-24 10:04:08,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:08,818 INFO Out dated connection ,size=0 + +2025-09-24 10:04:08,818 INFO Connection check task end + +2025-09-24 10:04:10,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:11,820 INFO Connection check task start + +2025-09-24 10:04:11,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:11,820 INFO Out dated connection ,size=0 + +2025-09-24 10:04:11,820 INFO Connection check task end + +2025-09-24 10:04:13,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:14,822 INFO Connection check task start + +2025-09-24 10:04:14,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:14,822 INFO Out dated connection ,size=0 + +2025-09-24 10:04:14,823 INFO Connection check task end + +2025-09-24 10:04:16,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:17,823 INFO Connection check task start + +2025-09-24 10:04:17,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:17,823 INFO Out dated connection ,size=0 + +2025-09-24 10:04:17,823 INFO Connection check task end + +2025-09-24 10:04:19,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:20,825 INFO Connection check task start + +2025-09-24 10:04:20,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:20,825 INFO Out dated connection ,size=0 + +2025-09-24 10:04:20,825 INFO Connection check task end + +2025-09-24 10:04:22,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:23,827 INFO Connection check task start + +2025-09-24 10:04:23,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:23,828 INFO Out dated connection ,size=0 + +2025-09-24 10:04:23,828 INFO Connection check task end + +2025-09-24 10:04:25,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:26,828 INFO Connection check task start + +2025-09-24 10:04:26,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:26,828 INFO Out dated connection ,size=0 + +2025-09-24 10:04:26,828 INFO Connection check task end + +2025-09-24 10:04:28,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:29,830 INFO Connection check task start + +2025-09-24 10:04:29,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:29,830 INFO Out dated connection ,size=0 + +2025-09-24 10:04:29,830 INFO Connection check task end + +2025-09-24 10:04:31,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:32,831 INFO Connection check task start + +2025-09-24 10:04:32,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:32,831 INFO Out dated connection ,size=0 + +2025-09-24 10:04:32,831 INFO Connection check task end + +2025-09-24 10:04:34,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:35,831 INFO Connection check task start + +2025-09-24 10:04:35,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:35,831 INFO Out dated connection ,size=0 + +2025-09-24 10:04:35,831 INFO Connection check task end + +2025-09-24 10:04:37,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:38,831 INFO Connection check task start + +2025-09-24 10:04:38,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:38,832 INFO Out dated connection ,size=0 + +2025-09-24 10:04:38,832 INFO Connection check task end + +2025-09-24 10:04:40,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:41,834 INFO Connection check task start + +2025-09-24 10:04:41,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:41,834 INFO Out dated connection ,size=0 + +2025-09-24 10:04:41,834 INFO Connection check task end + +2025-09-24 10:04:43,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:44,834 INFO Connection check task start + +2025-09-24 10:04:44,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:44,834 INFO Out dated connection ,size=0 + +2025-09-24 10:04:44,834 INFO Connection check task end + +2025-09-24 10:04:46,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:47,835 INFO Connection check task start + +2025-09-24 10:04:47,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:47,835 INFO Out dated connection ,size=0 + +2025-09-24 10:04:47,835 INFO Connection check task end + +2025-09-24 10:04:49,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:50,835 INFO Connection check task start + +2025-09-24 10:04:50,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:50,836 INFO Out dated connection ,size=0 + +2025-09-24 10:04:50,836 INFO Connection check task end + +2025-09-24 10:04:52,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:53,838 INFO Connection check task start + +2025-09-24 10:04:53,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:53,838 INFO Out dated connection ,size=0 + +2025-09-24 10:04:53,838 INFO Connection check task end + +2025-09-24 10:04:55,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:56,839 INFO Connection check task start + +2025-09-24 10:04:56,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:56,839 INFO Out dated connection ,size=0 + +2025-09-24 10:04:56,839 INFO Connection check task end + +2025-09-24 10:04:58,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:04:59,841 INFO Connection check task start + +2025-09-24 10:04:59,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:04:59,841 INFO Out dated connection ,size=0 + +2025-09-24 10:04:59,841 INFO Connection check task end + +2025-09-24 10:05:01,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:02,843 INFO Connection check task start + +2025-09-24 10:05:02,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:02,843 INFO Out dated connection ,size=0 + +2025-09-24 10:05:02,843 INFO Connection check task end + +2025-09-24 10:05:04,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:05,844 INFO Connection check task start + +2025-09-24 10:05:05,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:05,845 INFO Out dated connection ,size=0 + +2025-09-24 10:05:05,845 INFO Connection check task end + +2025-09-24 10:05:07,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:08,845 INFO Connection check task start + +2025-09-24 10:05:08,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:08,845 INFO Out dated connection ,size=0 + +2025-09-24 10:05:08,845 INFO Connection check task end + +2025-09-24 10:05:10,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:11,845 INFO Connection check task start + +2025-09-24 10:05:11,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:11,846 INFO Out dated connection ,size=0 + +2025-09-24 10:05:11,846 INFO Connection check task end + +2025-09-24 10:05:13,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:14,846 INFO Connection check task start + +2025-09-24 10:05:14,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:14,846 INFO Out dated connection ,size=0 + +2025-09-24 10:05:14,846 INFO Connection check task end + +2025-09-24 10:05:16,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:17,849 INFO Connection check task start + +2025-09-24 10:05:17,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:17,849 INFO Out dated connection ,size=0 + +2025-09-24 10:05:17,849 INFO Connection check task end + +2025-09-24 10:05:19,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:20,850 INFO Connection check task start + +2025-09-24 10:05:20,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:20,850 INFO Out dated connection ,size=0 + +2025-09-24 10:05:20,850 INFO Connection check task end + +2025-09-24 10:05:22,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:23,850 INFO Connection check task start + +2025-09-24 10:05:23,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:23,850 INFO Out dated connection ,size=0 + +2025-09-24 10:05:23,851 INFO Connection check task end + +2025-09-24 10:05:25,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:26,852 INFO Connection check task start + +2025-09-24 10:05:26,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:26,853 INFO Out dated connection ,size=0 + +2025-09-24 10:05:26,853 INFO Connection check task end + +2025-09-24 10:05:28,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:29,855 INFO Connection check task start + +2025-09-24 10:05:29,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:29,855 INFO Out dated connection ,size=0 + +2025-09-24 10:05:29,855 INFO Connection check task end + +2025-09-24 10:05:31,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:32,857 INFO Connection check task start + +2025-09-24 10:05:32,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:32,857 INFO Out dated connection ,size=0 + +2025-09-24 10:05:32,857 INFO Connection check task end + +2025-09-24 10:05:34,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:35,859 INFO Connection check task start + +2025-09-24 10:05:35,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:35,860 INFO Out dated connection ,size=0 + +2025-09-24 10:05:35,860 INFO Connection check task end + +2025-09-24 10:05:37,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:38,862 INFO Connection check task start + +2025-09-24 10:05:38,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:38,862 INFO Out dated connection ,size=0 + +2025-09-24 10:05:38,862 INFO Connection check task end + +2025-09-24 10:05:40,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:41,863 INFO Connection check task start + +2025-09-24 10:05:41,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:41,863 INFO Out dated connection ,size=0 + +2025-09-24 10:05:41,863 INFO Connection check task end + +2025-09-24 10:05:43,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:44,863 INFO Connection check task start + +2025-09-24 10:05:44,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:44,864 INFO Out dated connection ,size=0 + +2025-09-24 10:05:44,864 INFO Connection check task end + +2025-09-24 10:05:46,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:47,865 INFO Connection check task start + +2025-09-24 10:05:47,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:47,866 INFO Out dated connection ,size=0 + +2025-09-24 10:05:47,866 INFO Connection check task end + +2025-09-24 10:05:49,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:50,867 INFO Connection check task start + +2025-09-24 10:05:50,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:50,868 INFO Out dated connection ,size=0 + +2025-09-24 10:05:50,868 INFO Connection check task end + +2025-09-24 10:05:52,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:53,868 INFO Connection check task start + +2025-09-24 10:05:53,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:53,868 INFO Out dated connection ,size=0 + +2025-09-24 10:05:53,868 INFO Connection check task end + +2025-09-24 10:05:55,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:56,870 INFO Connection check task start + +2025-09-24 10:05:56,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:56,870 INFO Out dated connection ,size=0 + +2025-09-24 10:05:56,870 INFO Connection check task end + +2025-09-24 10:05:58,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:05:59,870 INFO Connection check task start + +2025-09-24 10:05:59,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:05:59,871 INFO Out dated connection ,size=0 + +2025-09-24 10:05:59,871 INFO Connection check task end + +2025-09-24 10:06:01,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:02,871 INFO Connection check task start + +2025-09-24 10:06:02,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:02,871 INFO Out dated connection ,size=0 + +2025-09-24 10:06:02,871 INFO Connection check task end + +2025-09-24 10:06:04,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:05,871 INFO Connection check task start + +2025-09-24 10:06:05,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:05,872 INFO Out dated connection ,size=0 + +2025-09-24 10:06:05,872 INFO Connection check task end + +2025-09-24 10:06:07,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:08,873 INFO Connection check task start + +2025-09-24 10:06:08,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:08,873 INFO Out dated connection ,size=0 + +2025-09-24 10:06:08,873 INFO Connection check task end + +2025-09-24 10:06:10,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:11,874 INFO Connection check task start + +2025-09-24 10:06:11,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:11,874 INFO Out dated connection ,size=0 + +2025-09-24 10:06:11,874 INFO Connection check task end + +2025-09-24 10:06:13,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:14,876 INFO Connection check task start + +2025-09-24 10:06:14,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:14,876 INFO Out dated connection ,size=0 + +2025-09-24 10:06:14,876 INFO Connection check task end + +2025-09-24 10:06:16,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:17,878 INFO Connection check task start + +2025-09-24 10:06:17,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:17,879 INFO Out dated connection ,size=0 + +2025-09-24 10:06:17,879 INFO Connection check task end + +2025-09-24 10:06:19,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:20,879 INFO Connection check task start + +2025-09-24 10:06:20,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:20,879 INFO Out dated connection ,size=0 + +2025-09-24 10:06:20,879 INFO Connection check task end + +2025-09-24 10:06:22,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:23,881 INFO Connection check task start + +2025-09-24 10:06:23,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:23,881 INFO Out dated connection ,size=0 + +2025-09-24 10:06:23,881 INFO Connection check task end + +2025-09-24 10:06:25,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:26,882 INFO Connection check task start + +2025-09-24 10:06:26,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:26,882 INFO Out dated connection ,size=0 + +2025-09-24 10:06:26,882 INFO Connection check task end + +2025-09-24 10:06:28,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:29,882 INFO Connection check task start + +2025-09-24 10:06:29,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:29,882 INFO Out dated connection ,size=0 + +2025-09-24 10:06:29,882 INFO Connection check task end + +2025-09-24 10:06:31,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:32,883 INFO Connection check task start + +2025-09-24 10:06:32,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:32,883 INFO Out dated connection ,size=0 + +2025-09-24 10:06:32,883 INFO Connection check task end + +2025-09-24 10:06:34,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:35,884 INFO Connection check task start + +2025-09-24 10:06:35,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:35,884 INFO Out dated connection ,size=0 + +2025-09-24 10:06:35,884 INFO Connection check task end + +2025-09-24 10:06:37,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:38,885 INFO Connection check task start + +2025-09-24 10:06:38,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:38,885 INFO Out dated connection ,size=0 + +2025-09-24 10:06:38,885 INFO Connection check task end + +2025-09-24 10:06:40,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:41,887 INFO Connection check task start + +2025-09-24 10:06:41,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:41,887 INFO Out dated connection ,size=0 + +2025-09-24 10:06:41,887 INFO Connection check task end + +2025-09-24 10:06:43,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:44,887 INFO Connection check task start + +2025-09-24 10:06:44,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:44,887 INFO Out dated connection ,size=0 + +2025-09-24 10:06:44,887 INFO Connection check task end + +2025-09-24 10:06:46,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:47,889 INFO Connection check task start + +2025-09-24 10:06:47,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:47,889 INFO Out dated connection ,size=0 + +2025-09-24 10:06:47,889 INFO Connection check task end + +2025-09-24 10:06:49,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:50,890 INFO Connection check task start + +2025-09-24 10:06:50,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:50,890 INFO Out dated connection ,size=0 + +2025-09-24 10:06:50,890 INFO Connection check task end + +2025-09-24 10:06:52,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:53,891 INFO Connection check task start + +2025-09-24 10:06:53,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:53,891 INFO Out dated connection ,size=0 + +2025-09-24 10:06:53,891 INFO Connection check task end + +2025-09-24 10:06:55,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:56,892 INFO Connection check task start + +2025-09-24 10:06:56,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:56,892 INFO Out dated connection ,size=0 + +2025-09-24 10:06:56,892 INFO Connection check task end + +2025-09-24 10:06:58,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:06:59,892 INFO Connection check task start + +2025-09-24 10:06:59,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:06:59,892 INFO Out dated connection ,size=0 + +2025-09-24 10:06:59,893 INFO Connection check task end + +2025-09-24 10:07:01,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:02,893 INFO Connection check task start + +2025-09-24 10:07:02,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:02,894 INFO Out dated connection ,size=0 + +2025-09-24 10:07:02,894 INFO Connection check task end + +2025-09-24 10:07:04,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:05,896 INFO Connection check task start + +2025-09-24 10:07:05,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:05,896 INFO Out dated connection ,size=0 + +2025-09-24 10:07:05,896 INFO Connection check task end + +2025-09-24 10:07:07,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:08,896 INFO Connection check task start + +2025-09-24 10:07:08,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:08,897 INFO Out dated connection ,size=0 + +2025-09-24 10:07:08,897 INFO Connection check task end + +2025-09-24 10:07:10,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:11,898 INFO Connection check task start + +2025-09-24 10:07:11,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:11,898 INFO Out dated connection ,size=0 + +2025-09-24 10:07:11,898 INFO Connection check task end + +2025-09-24 10:07:13,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:14,900 INFO Connection check task start + +2025-09-24 10:07:14,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:14,900 INFO Out dated connection ,size=0 + +2025-09-24 10:07:14,901 INFO Connection check task end + +2025-09-24 10:07:16,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:17,902 INFO Connection check task start + +2025-09-24 10:07:17,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:17,902 INFO Out dated connection ,size=0 + +2025-09-24 10:07:17,902 INFO Connection check task end + +2025-09-24 10:07:19,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:20,903 INFO Connection check task start + +2025-09-24 10:07:20,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:20,904 INFO Out dated connection ,size=0 + +2025-09-24 10:07:20,904 INFO Connection check task end + +2025-09-24 10:07:22,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:23,904 INFO Connection check task start + +2025-09-24 10:07:23,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:23,904 INFO Out dated connection ,size=0 + +2025-09-24 10:07:23,904 INFO Connection check task end + +2025-09-24 10:07:25,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:26,906 INFO Connection check task start + +2025-09-24 10:07:26,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:26,907 INFO Out dated connection ,size=0 + +2025-09-24 10:07:26,907 INFO Connection check task end + +2025-09-24 10:07:28,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:29,907 INFO Connection check task start + +2025-09-24 10:07:29,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:29,907 INFO Out dated connection ,size=0 + +2025-09-24 10:07:29,907 INFO Connection check task end + +2025-09-24 10:07:31,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:32,908 INFO Connection check task start + +2025-09-24 10:07:32,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:32,908 INFO Out dated connection ,size=0 + +2025-09-24 10:07:32,908 INFO Connection check task end + +2025-09-24 10:07:34,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:35,909 INFO Connection check task start + +2025-09-24 10:07:35,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:35,909 INFO Out dated connection ,size=0 + +2025-09-24 10:07:35,909 INFO Connection check task end + +2025-09-24 10:07:37,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:38,911 INFO Connection check task start + +2025-09-24 10:07:38,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:38,911 INFO Out dated connection ,size=0 + +2025-09-24 10:07:38,911 INFO Connection check task end + +2025-09-24 10:07:40,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:41,911 INFO Connection check task start + +2025-09-24 10:07:41,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:41,911 INFO Out dated connection ,size=0 + +2025-09-24 10:07:41,912 INFO Connection check task end + +2025-09-24 10:07:43,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:44,912 INFO Connection check task start + +2025-09-24 10:07:44,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:44,913 INFO Out dated connection ,size=0 + +2025-09-24 10:07:44,913 INFO Connection check task end + +2025-09-24 10:07:46,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:47,913 INFO Connection check task start + +2025-09-24 10:07:47,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:47,913 INFO Out dated connection ,size=0 + +2025-09-24 10:07:47,913 INFO Connection check task end + +2025-09-24 10:07:49,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:50,913 INFO Connection check task start + +2025-09-24 10:07:50,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:50,914 INFO Out dated connection ,size=0 + +2025-09-24 10:07:50,914 INFO Connection check task end + +2025-09-24 10:07:52,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:53,915 INFO Connection check task start + +2025-09-24 10:07:53,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:53,915 INFO Out dated connection ,size=0 + +2025-09-24 10:07:53,915 INFO Connection check task end + +2025-09-24 10:07:55,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:56,917 INFO Connection check task start + +2025-09-24 10:07:56,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:56,917 INFO Out dated connection ,size=0 + +2025-09-24 10:07:56,917 INFO Connection check task end + +2025-09-24 10:07:58,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:07:59,919 INFO Connection check task start + +2025-09-24 10:07:59,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:07:59,920 INFO Out dated connection ,size=0 + +2025-09-24 10:07:59,920 INFO Connection check task end + +2025-09-24 10:08:01,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:02,920 INFO Connection check task start + +2025-09-24 10:08:02,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:02,920 INFO Out dated connection ,size=0 + +2025-09-24 10:08:02,920 INFO Connection check task end + +2025-09-24 10:08:04,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:05,921 INFO Connection check task start + +2025-09-24 10:08:05,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:05,921 INFO Out dated connection ,size=0 + +2025-09-24 10:08:05,921 INFO Connection check task end + +2025-09-24 10:08:07,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:08,923 INFO Connection check task start + +2025-09-24 10:08:08,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:08,923 INFO Out dated connection ,size=0 + +2025-09-24 10:08:08,923 INFO Connection check task end + +2025-09-24 10:08:10,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:11,924 INFO Connection check task start + +2025-09-24 10:08:11,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:11,924 INFO Out dated connection ,size=0 + +2025-09-24 10:08:11,924 INFO Connection check task end + +2025-09-24 10:08:13,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:14,926 INFO Connection check task start + +2025-09-24 10:08:14,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:14,926 INFO Out dated connection ,size=0 + +2025-09-24 10:08:14,926 INFO Connection check task end + +2025-09-24 10:08:16,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:17,928 INFO Connection check task start + +2025-09-24 10:08:17,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:17,928 INFO Out dated connection ,size=0 + +2025-09-24 10:08:17,928 INFO Connection check task end + +2025-09-24 10:08:19,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:20,928 INFO Connection check task start + +2025-09-24 10:08:20,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:20,929 INFO Out dated connection ,size=0 + +2025-09-24 10:08:20,929 INFO Connection check task end + +2025-09-24 10:08:22,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:23,930 INFO Connection check task start + +2025-09-24 10:08:23,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:23,931 INFO Out dated connection ,size=0 + +2025-09-24 10:08:23,931 INFO Connection check task end + +2025-09-24 10:08:25,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:26,931 INFO Connection check task start + +2025-09-24 10:08:26,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:26,931 INFO Out dated connection ,size=0 + +2025-09-24 10:08:26,931 INFO Connection check task end + +2025-09-24 10:08:28,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:29,933 INFO Connection check task start + +2025-09-24 10:08:29,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:29,934 INFO Out dated connection ,size=0 + +2025-09-24 10:08:29,934 INFO Connection check task end + +2025-09-24 10:08:31,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:32,934 INFO Connection check task start + +2025-09-24 10:08:32,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:32,934 INFO Out dated connection ,size=0 + +2025-09-24 10:08:32,934 INFO Connection check task end + +2025-09-24 10:08:34,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:35,936 INFO Connection check task start + +2025-09-24 10:08:35,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:35,936 INFO Out dated connection ,size=0 + +2025-09-24 10:08:35,936 INFO Connection check task end + +2025-09-24 10:08:37,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:38,937 INFO Connection check task start + +2025-09-24 10:08:38,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:38,938 INFO Out dated connection ,size=0 + +2025-09-24 10:08:38,938 INFO Connection check task end + +2025-09-24 10:08:40,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:41,939 INFO Connection check task start + +2025-09-24 10:08:41,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:41,940 INFO Out dated connection ,size=0 + +2025-09-24 10:08:41,940 INFO Connection check task end + +2025-09-24 10:08:43,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:44,941 INFO Connection check task start + +2025-09-24 10:08:44,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:44,941 INFO Out dated connection ,size=0 + +2025-09-24 10:08:44,941 INFO Connection check task end + +2025-09-24 10:08:46,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:47,943 INFO Connection check task start + +2025-09-24 10:08:47,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:47,943 INFO Out dated connection ,size=0 + +2025-09-24 10:08:47,943 INFO Connection check task end + +2025-09-24 10:08:49,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:50,943 INFO Connection check task start + +2025-09-24 10:08:50,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:50,944 INFO Out dated connection ,size=0 + +2025-09-24 10:08:50,944 INFO Connection check task end + +2025-09-24 10:08:52,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:53,944 INFO Connection check task start + +2025-09-24 10:08:53,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:53,944 INFO Out dated connection ,size=0 + +2025-09-24 10:08:53,944 INFO Connection check task end + +2025-09-24 10:08:55,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:56,946 INFO Connection check task start + +2025-09-24 10:08:56,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:56,946 INFO Out dated connection ,size=0 + +2025-09-24 10:08:56,947 INFO Connection check task end + +2025-09-24 10:08:58,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:08:59,948 INFO Connection check task start + +2025-09-24 10:08:59,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:08:59,948 INFO Out dated connection ,size=0 + +2025-09-24 10:08:59,949 INFO Connection check task end + +2025-09-24 10:09:01,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:02,950 INFO Connection check task start + +2025-09-24 10:09:02,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:02,951 INFO Out dated connection ,size=0 + +2025-09-24 10:09:02,951 INFO Connection check task end + +2025-09-24 10:09:04,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:05,952 INFO Connection check task start + +2025-09-24 10:09:05,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:05,952 INFO Out dated connection ,size=0 + +2025-09-24 10:09:05,952 INFO Connection check task end + +2025-09-24 10:09:07,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:08,952 INFO Connection check task start + +2025-09-24 10:09:08,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:08,952 INFO Out dated connection ,size=0 + +2025-09-24 10:09:08,952 INFO Connection check task end + +2025-09-24 10:09:10,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:11,953 INFO Connection check task start + +2025-09-24 10:09:11,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:11,953 INFO Out dated connection ,size=0 + +2025-09-24 10:09:11,953 INFO Connection check task end + +2025-09-24 10:09:13,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:14,953 INFO Connection check task start + +2025-09-24 10:09:14,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:14,954 INFO Out dated connection ,size=0 + +2025-09-24 10:09:14,954 INFO Connection check task end + +2025-09-24 10:09:16,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:17,954 INFO Connection check task start + +2025-09-24 10:09:17,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:17,954 INFO Out dated connection ,size=0 + +2025-09-24 10:09:17,954 INFO Connection check task end + +2025-09-24 10:09:19,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:20,955 INFO Connection check task start + +2025-09-24 10:09:20,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:20,955 INFO Out dated connection ,size=0 + +2025-09-24 10:09:20,955 INFO Connection check task end + +2025-09-24 10:09:22,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:23,956 INFO Connection check task start + +2025-09-24 10:09:23,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:23,956 INFO Out dated connection ,size=0 + +2025-09-24 10:09:23,956 INFO Connection check task end + +2025-09-24 10:09:25,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:26,957 INFO Connection check task start + +2025-09-24 10:09:26,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:26,957 INFO Out dated connection ,size=0 + +2025-09-24 10:09:26,957 INFO Connection check task end + +2025-09-24 10:09:28,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:29,959 INFO Connection check task start + +2025-09-24 10:09:29,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:29,959 INFO Out dated connection ,size=0 + +2025-09-24 10:09:29,959 INFO Connection check task end + +2025-09-24 10:09:31,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:32,960 INFO Connection check task start + +2025-09-24 10:09:32,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:32,960 INFO Out dated connection ,size=0 + +2025-09-24 10:09:32,960 INFO Connection check task end + +2025-09-24 10:09:34,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:35,960 INFO Connection check task start + +2025-09-24 10:09:35,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:35,960 INFO Out dated connection ,size=0 + +2025-09-24 10:09:35,960 INFO Connection check task end + +2025-09-24 10:09:37,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:38,961 INFO Connection check task start + +2025-09-24 10:09:38,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:38,961 INFO Out dated connection ,size=0 + +2025-09-24 10:09:38,961 INFO Connection check task end + +2025-09-24 10:09:40,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:41,962 INFO Connection check task start + +2025-09-24 10:09:41,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:41,962 INFO Out dated connection ,size=0 + +2025-09-24 10:09:41,962 INFO Connection check task end + +2025-09-24 10:09:43,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:44,964 INFO Connection check task start + +2025-09-24 10:09:44,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:44,965 INFO Out dated connection ,size=0 + +2025-09-24 10:09:44,965 INFO Connection check task end + +2025-09-24 10:09:46,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:47,965 INFO Connection check task start + +2025-09-24 10:09:47,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:47,965 INFO Out dated connection ,size=0 + +2025-09-24 10:09:47,965 INFO Connection check task end + +2025-09-24 10:09:49,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:50,967 INFO Connection check task start + +2025-09-24 10:09:50,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:50,968 INFO Out dated connection ,size=0 + +2025-09-24 10:09:50,968 INFO Connection check task end + +2025-09-24 10:09:52,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:53,969 INFO Connection check task start + +2025-09-24 10:09:53,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:53,969 INFO Out dated connection ,size=0 + +2025-09-24 10:09:53,969 INFO Connection check task end + +2025-09-24 10:09:55,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:56,970 INFO Connection check task start + +2025-09-24 10:09:56,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:56,970 INFO Out dated connection ,size=0 + +2025-09-24 10:09:56,970 INFO Connection check task end + +2025-09-24 10:09:58,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:09:59,970 INFO Connection check task start + +2025-09-24 10:09:59,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:09:59,971 INFO Out dated connection ,size=0 + +2025-09-24 10:09:59,971 INFO Connection check task end + +2025-09-24 10:10:01,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:02,971 INFO Connection check task start + +2025-09-24 10:10:02,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:02,971 INFO Out dated connection ,size=0 + +2025-09-24 10:10:02,972 INFO Connection check task end + +2025-09-24 10:10:04,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:05,972 INFO Connection check task start + +2025-09-24 10:10:05,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:05,972 INFO Out dated connection ,size=0 + +2025-09-24 10:10:05,972 INFO Connection check task end + +2025-09-24 10:10:07,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:08,972 INFO Connection check task start + +2025-09-24 10:10:08,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:08,972 INFO Out dated connection ,size=0 + +2025-09-24 10:10:08,972 INFO Connection check task end + +2025-09-24 10:10:10,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:11,973 INFO Connection check task start + +2025-09-24 10:10:11,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:11,973 INFO Out dated connection ,size=0 + +2025-09-24 10:10:11,973 INFO Connection check task end + +2025-09-24 10:10:13,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:14,973 INFO Connection check task start + +2025-09-24 10:10:14,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:14,974 INFO Out dated connection ,size=0 + +2025-09-24 10:10:14,974 INFO Connection check task end + +2025-09-24 10:10:16,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:17,974 INFO Connection check task start + +2025-09-24 10:10:17,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:17,974 INFO Out dated connection ,size=0 + +2025-09-24 10:10:17,974 INFO Connection check task end + +2025-09-24 10:10:19,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:20,976 INFO Connection check task start + +2025-09-24 10:10:20,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:20,977 INFO Out dated connection ,size=0 + +2025-09-24 10:10:20,977 INFO Connection check task end + +2025-09-24 10:10:22,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:23,978 INFO Connection check task start + +2025-09-24 10:10:23,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:23,978 INFO Out dated connection ,size=0 + +2025-09-24 10:10:23,978 INFO Connection check task end + +2025-09-24 10:10:25,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:26,978 INFO Connection check task start + +2025-09-24 10:10:26,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:26,979 INFO Out dated connection ,size=0 + +2025-09-24 10:10:26,979 INFO Connection check task end + +2025-09-24 10:10:28,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:29,981 INFO Connection check task start + +2025-09-24 10:10:29,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:29,981 INFO Out dated connection ,size=0 + +2025-09-24 10:10:29,981 INFO Connection check task end + +2025-09-24 10:10:31,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:32,983 INFO Connection check task start + +2025-09-24 10:10:32,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:32,983 INFO Out dated connection ,size=0 + +2025-09-24 10:10:32,983 INFO Connection check task end + +2025-09-24 10:10:34,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:35,985 INFO Connection check task start + +2025-09-24 10:10:35,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:35,986 INFO Out dated connection ,size=0 + +2025-09-24 10:10:35,986 INFO Connection check task end + +2025-09-24 10:10:37,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:38,987 INFO Connection check task start + +2025-09-24 10:10:38,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:38,987 INFO Out dated connection ,size=0 + +2025-09-24 10:10:38,987 INFO Connection check task end + +2025-09-24 10:10:40,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:41,989 INFO Connection check task start + +2025-09-24 10:10:41,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:41,989 INFO Out dated connection ,size=0 + +2025-09-24 10:10:41,989 INFO Connection check task end + +2025-09-24 10:10:43,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:44,991 INFO Connection check task start + +2025-09-24 10:10:44,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:44,991 INFO Out dated connection ,size=0 + +2025-09-24 10:10:44,991 INFO Connection check task end + +2025-09-24 10:10:46,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:47,993 INFO Connection check task start + +2025-09-24 10:10:47,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:47,993 INFO Out dated connection ,size=0 + +2025-09-24 10:10:47,993 INFO Connection check task end + +2025-09-24 10:10:49,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:50,994 INFO Connection check task start + +2025-09-24 10:10:50,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:50,995 INFO Out dated connection ,size=0 + +2025-09-24 10:10:50,995 INFO Connection check task end + +2025-09-24 10:10:52,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:53,996 INFO Connection check task start + +2025-09-24 10:10:53,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:53,996 INFO Out dated connection ,size=0 + +2025-09-24 10:10:53,996 INFO Connection check task end + +2025-09-24 10:10:55,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:56,996 INFO Connection check task start + +2025-09-24 10:10:56,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:56,997 INFO Out dated connection ,size=0 + +2025-09-24 10:10:56,997 INFO Connection check task end + +2025-09-24 10:10:58,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:10:59,997 INFO Connection check task start + +2025-09-24 10:10:59,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:10:59,997 INFO Out dated connection ,size=0 + +2025-09-24 10:10:59,997 INFO Connection check task end + +2025-09-24 10:11:01,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:02,999 INFO Connection check task start + +2025-09-24 10:11:02,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:02,999 INFO Out dated connection ,size=0 + +2025-09-24 10:11:02,999 INFO Connection check task end + +2025-09-24 10:11:04,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:05,999 INFO Connection check task start + +2025-09-24 10:11:06,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:06,000 INFO Out dated connection ,size=0 + +2025-09-24 10:11:06,000 INFO Connection check task end + +2025-09-24 10:11:07,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:09,000 INFO Connection check task start + +2025-09-24 10:11:09,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:09,000 INFO Out dated connection ,size=0 + +2025-09-24 10:11:09,000 INFO Connection check task end + +2025-09-24 10:11:10,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:12,002 INFO Connection check task start + +2025-09-24 10:11:12,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:12,002 INFO Out dated connection ,size=0 + +2025-09-24 10:11:12,002 INFO Connection check task end + +2025-09-24 10:11:13,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:15,003 INFO Connection check task start + +2025-09-24 10:11:15,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:15,003 INFO Out dated connection ,size=0 + +2025-09-24 10:11:15,003 INFO Connection check task end + +2025-09-24 10:11:16,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:18,005 INFO Connection check task start + +2025-09-24 10:11:18,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:18,005 INFO Out dated connection ,size=0 + +2025-09-24 10:11:18,005 INFO Connection check task end + +2025-09-24 10:11:19,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:21,006 INFO Connection check task start + +2025-09-24 10:11:21,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:21,006 INFO Out dated connection ,size=0 + +2025-09-24 10:11:21,006 INFO Connection check task end + +2025-09-24 10:11:22,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:24,006 INFO Connection check task start + +2025-09-24 10:11:24,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:24,007 INFO Out dated connection ,size=0 + +2025-09-24 10:11:24,007 INFO Connection check task end + +2025-09-24 10:11:25,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:27,009 INFO Connection check task start + +2025-09-24 10:11:27,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:27,009 INFO Out dated connection ,size=0 + +2025-09-24 10:11:27,009 INFO Connection check task end + +2025-09-24 10:11:28,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:30,010 INFO Connection check task start + +2025-09-24 10:11:30,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:30,010 INFO Out dated connection ,size=0 + +2025-09-24 10:11:30,010 INFO Connection check task end + +2025-09-24 10:11:31,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:33,013 INFO Connection check task start + +2025-09-24 10:11:33,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:33,013 INFO Out dated connection ,size=0 + +2025-09-24 10:11:33,013 INFO Connection check task end + +2025-09-24 10:11:34,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:36,013 INFO Connection check task start + +2025-09-24 10:11:36,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:36,013 INFO Out dated connection ,size=0 + +2025-09-24 10:11:36,013 INFO Connection check task end + +2025-09-24 10:11:37,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:39,014 INFO Connection check task start + +2025-09-24 10:11:39,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:39,014 INFO Out dated connection ,size=0 + +2025-09-24 10:11:39,014 INFO Connection check task end + +2025-09-24 10:11:40,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:42,015 INFO Connection check task start + +2025-09-24 10:11:42,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:42,016 INFO Out dated connection ,size=0 + +2025-09-24 10:11:42,016 INFO Connection check task end + +2025-09-24 10:11:43,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:45,016 INFO Connection check task start + +2025-09-24 10:11:45,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:45,016 INFO Out dated connection ,size=0 + +2025-09-24 10:11:45,016 INFO Connection check task end + +2025-09-24 10:11:46,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:48,016 INFO Connection check task start + +2025-09-24 10:11:48,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:48,017 INFO Out dated connection ,size=0 + +2025-09-24 10:11:48,017 INFO Connection check task end + +2025-09-24 10:11:49,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:51,017 INFO Connection check task start + +2025-09-24 10:11:51,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:51,018 INFO Out dated connection ,size=0 + +2025-09-24 10:11:51,018 INFO Connection check task end + +2025-09-24 10:11:52,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:54,019 INFO Connection check task start + +2025-09-24 10:11:54,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:54,019 INFO Out dated connection ,size=0 + +2025-09-24 10:11:54,019 INFO Connection check task end + +2025-09-24 10:11:55,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:11:57,019 INFO Connection check task start + +2025-09-24 10:11:57,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:11:57,020 INFO Out dated connection ,size=0 + +2025-09-24 10:11:57,020 INFO Connection check task end + +2025-09-24 10:11:58,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:00,021 INFO Connection check task start + +2025-09-24 10:12:00,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:00,021 INFO Out dated connection ,size=0 + +2025-09-24 10:12:00,021 INFO Connection check task end + +2025-09-24 10:12:01,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:03,021 INFO Connection check task start + +2025-09-24 10:12:03,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:03,022 INFO Out dated connection ,size=0 + +2025-09-24 10:12:03,022 INFO Connection check task end + +2025-09-24 10:12:04,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:06,023 INFO Connection check task start + +2025-09-24 10:12:06,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:06,023 INFO Out dated connection ,size=0 + +2025-09-24 10:12:06,023 INFO Connection check task end + +2025-09-24 10:12:07,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:09,025 INFO Connection check task start + +2025-09-24 10:12:09,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:09,025 INFO Out dated connection ,size=0 + +2025-09-24 10:12:09,025 INFO Connection check task end + +2025-09-24 10:12:10,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:12,026 INFO Connection check task start + +2025-09-24 10:12:12,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:12,026 INFO Out dated connection ,size=0 + +2025-09-24 10:12:12,026 INFO Connection check task end + +2025-09-24 10:12:13,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:15,026 INFO Connection check task start + +2025-09-24 10:12:15,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:15,026 INFO Out dated connection ,size=0 + +2025-09-24 10:12:15,027 INFO Connection check task end + +2025-09-24 10:12:16,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:18,027 INFO Connection check task start + +2025-09-24 10:12:18,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:18,027 INFO Out dated connection ,size=0 + +2025-09-24 10:12:18,027 INFO Connection check task end + +2025-09-24 10:12:19,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:21,029 INFO Connection check task start + +2025-09-24 10:12:21,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:21,030 INFO Out dated connection ,size=0 + +2025-09-24 10:12:21,030 INFO Connection check task end + +2025-09-24 10:12:22,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:24,030 INFO Connection check task start + +2025-09-24 10:12:24,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:24,030 INFO Out dated connection ,size=0 + +2025-09-24 10:12:24,030 INFO Connection check task end + +2025-09-24 10:12:25,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:27,033 INFO Connection check task start + +2025-09-24 10:12:27,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:27,033 INFO Out dated connection ,size=0 + +2025-09-24 10:12:27,033 INFO Connection check task end + +2025-09-24 10:12:28,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:30,033 INFO Connection check task start + +2025-09-24 10:12:30,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:30,033 INFO Out dated connection ,size=0 + +2025-09-24 10:12:30,033 INFO Connection check task end + +2025-09-24 10:12:31,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:33,034 INFO Connection check task start + +2025-09-24 10:12:33,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:33,034 INFO Out dated connection ,size=0 + +2025-09-24 10:12:33,034 INFO Connection check task end + +2025-09-24 10:12:34,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:36,035 INFO Connection check task start + +2025-09-24 10:12:36,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:36,035 INFO Out dated connection ,size=0 + +2025-09-24 10:12:36,035 INFO Connection check task end + +2025-09-24 10:12:37,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:39,035 INFO Connection check task start + +2025-09-24 10:12:39,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:39,035 INFO Out dated connection ,size=0 + +2025-09-24 10:12:39,035 INFO Connection check task end + +2025-09-24 10:12:40,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:42,036 INFO Connection check task start + +2025-09-24 10:12:42,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:42,036 INFO Out dated connection ,size=0 + +2025-09-24 10:12:42,036 INFO Connection check task end + +2025-09-24 10:12:43,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:45,038 INFO Connection check task start + +2025-09-24 10:12:45,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:45,038 INFO Out dated connection ,size=0 + +2025-09-24 10:12:45,038 INFO Connection check task end + +2025-09-24 10:12:46,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:48,039 INFO Connection check task start + +2025-09-24 10:12:48,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:48,039 INFO Out dated connection ,size=0 + +2025-09-24 10:12:48,039 INFO Connection check task end + +2025-09-24 10:12:49,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:51,040 INFO Connection check task start + +2025-09-24 10:12:51,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:51,040 INFO Out dated connection ,size=0 + +2025-09-24 10:12:51,040 INFO Connection check task end + +2025-09-24 10:12:52,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:54,041 INFO Connection check task start + +2025-09-24 10:12:54,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:54,041 INFO Out dated connection ,size=0 + +2025-09-24 10:12:54,041 INFO Connection check task end + +2025-09-24 10:12:55,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:12:57,041 INFO Connection check task start + +2025-09-24 10:12:57,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:12:57,042 INFO Out dated connection ,size=0 + +2025-09-24 10:12:57,042 INFO Connection check task end + +2025-09-24 10:12:58,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:00,043 INFO Connection check task start + +2025-09-24 10:13:00,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:00,043 INFO Out dated connection ,size=0 + +2025-09-24 10:13:00,043 INFO Connection check task end + +2025-09-24 10:13:01,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:03,044 INFO Connection check task start + +2025-09-24 10:13:03,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:03,044 INFO Out dated connection ,size=0 + +2025-09-24 10:13:03,044 INFO Connection check task end + +2025-09-24 10:13:04,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:06,045 INFO Connection check task start + +2025-09-24 10:13:06,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:06,045 INFO Out dated connection ,size=0 + +2025-09-24 10:13:06,045 INFO Connection check task end + +2025-09-24 10:13:07,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:09,045 INFO Connection check task start + +2025-09-24 10:13:09,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:09,045 INFO Out dated connection ,size=0 + +2025-09-24 10:13:09,045 INFO Connection check task end + +2025-09-24 10:13:10,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:12,047 INFO Connection check task start + +2025-09-24 10:13:12,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:12,048 INFO Out dated connection ,size=0 + +2025-09-24 10:13:12,048 INFO Connection check task end + +2025-09-24 10:13:13,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:15,049 INFO Connection check task start + +2025-09-24 10:13:15,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:15,049 INFO Out dated connection ,size=0 + +2025-09-24 10:13:15,049 INFO Connection check task end + +2025-09-24 10:13:16,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:18,049 INFO Connection check task start + +2025-09-24 10:13:18,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:18,050 INFO Out dated connection ,size=0 + +2025-09-24 10:13:18,050 INFO Connection check task end + +2025-09-24 10:13:19,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:21,052 INFO Connection check task start + +2025-09-24 10:13:21,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:21,052 INFO Out dated connection ,size=0 + +2025-09-24 10:13:21,052 INFO Connection check task end + +2025-09-24 10:13:22,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:24,052 INFO Connection check task start + +2025-09-24 10:13:24,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:24,052 INFO Out dated connection ,size=0 + +2025-09-24 10:13:24,052 INFO Connection check task end + +2025-09-24 10:13:25,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:27,054 INFO Connection check task start + +2025-09-24 10:13:27,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:27,055 INFO Out dated connection ,size=0 + +2025-09-24 10:13:27,055 INFO Connection check task end + +2025-09-24 10:13:28,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:30,057 INFO Connection check task start + +2025-09-24 10:13:30,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:30,057 INFO Out dated connection ,size=0 + +2025-09-24 10:13:30,057 INFO Connection check task end + +2025-09-24 10:13:31,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:33,059 INFO Connection check task start + +2025-09-24 10:13:33,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:33,059 INFO Out dated connection ,size=0 + +2025-09-24 10:13:33,059 INFO Connection check task end + +2025-09-24 10:13:34,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:36,060 INFO Connection check task start + +2025-09-24 10:13:36,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:36,060 INFO Out dated connection ,size=0 + +2025-09-24 10:13:36,060 INFO Connection check task end + +2025-09-24 10:13:37,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:39,060 INFO Connection check task start + +2025-09-24 10:13:39,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:39,060 INFO Out dated connection ,size=0 + +2025-09-24 10:13:39,060 INFO Connection check task end + +2025-09-24 10:13:40,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:42,062 INFO Connection check task start + +2025-09-24 10:13:42,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:42,063 INFO Out dated connection ,size=0 + +2025-09-24 10:13:42,063 INFO Connection check task end + +2025-09-24 10:13:43,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:45,063 INFO Connection check task start + +2025-09-24 10:13:45,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:45,063 INFO Out dated connection ,size=0 + +2025-09-24 10:13:45,063 INFO Connection check task end + +2025-09-24 10:13:46,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:48,063 INFO Connection check task start + +2025-09-24 10:13:48,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:48,063 INFO Out dated connection ,size=0 + +2025-09-24 10:13:48,063 INFO Connection check task end + +2025-09-24 10:13:49,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:51,064 INFO Connection check task start + +2025-09-24 10:13:51,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:51,064 INFO Out dated connection ,size=0 + +2025-09-24 10:13:51,064 INFO Connection check task end + +2025-09-24 10:13:52,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:54,066 INFO Connection check task start + +2025-09-24 10:13:54,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:54,066 INFO Out dated connection ,size=0 + +2025-09-24 10:13:54,066 INFO Connection check task end + +2025-09-24 10:13:55,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:13:57,067 INFO Connection check task start + +2025-09-24 10:13:57,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:13:57,068 INFO Out dated connection ,size=0 + +2025-09-24 10:13:57,068 INFO Connection check task end + +2025-09-24 10:13:58,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:00,069 INFO Connection check task start + +2025-09-24 10:14:00,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:00,069 INFO Out dated connection ,size=0 + +2025-09-24 10:14:00,069 INFO Connection check task end + +2025-09-24 10:14:01,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:03,070 INFO Connection check task start + +2025-09-24 10:14:03,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:03,070 INFO Out dated connection ,size=0 + +2025-09-24 10:14:03,071 INFO Connection check task end + +2025-09-24 10:14:04,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:06,071 INFO Connection check task start + +2025-09-24 10:14:06,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:06,071 INFO Out dated connection ,size=0 + +2025-09-24 10:14:06,071 INFO Connection check task end + +2025-09-24 10:14:07,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:09,072 INFO Connection check task start + +2025-09-24 10:14:09,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:09,072 INFO Out dated connection ,size=0 + +2025-09-24 10:14:09,072 INFO Connection check task end + +2025-09-24 10:14:10,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:12,073 INFO Connection check task start + +2025-09-24 10:14:12,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:12,073 INFO Out dated connection ,size=0 + +2025-09-24 10:14:12,073 INFO Connection check task end + +2025-09-24 10:14:13,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:15,074 INFO Connection check task start + +2025-09-24 10:14:15,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:15,074 INFO Out dated connection ,size=0 + +2025-09-24 10:14:15,074 INFO Connection check task end + +2025-09-24 10:14:16,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:18,077 INFO Connection check task start + +2025-09-24 10:14:18,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:18,077 INFO Out dated connection ,size=0 + +2025-09-24 10:14:18,077 INFO Connection check task end + +2025-09-24 10:14:19,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:21,079 INFO Connection check task start + +2025-09-24 10:14:21,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:21,079 INFO Out dated connection ,size=0 + +2025-09-24 10:14:21,079 INFO Connection check task end + +2025-09-24 10:14:22,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:24,079 INFO Connection check task start + +2025-09-24 10:14:24,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:24,080 INFO Out dated connection ,size=0 + +2025-09-24 10:14:24,080 INFO Connection check task end + +2025-09-24 10:14:25,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:27,081 INFO Connection check task start + +2025-09-24 10:14:27,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:27,081 INFO Out dated connection ,size=0 + +2025-09-24 10:14:27,081 INFO Connection check task end + +2025-09-24 10:14:28,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:30,083 INFO Connection check task start + +2025-09-24 10:14:30,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:30,083 INFO Out dated connection ,size=0 + +2025-09-24 10:14:30,084 INFO Connection check task end + +2025-09-24 10:14:31,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:33,084 INFO Connection check task start + +2025-09-24 10:14:33,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:33,084 INFO Out dated connection ,size=0 + +2025-09-24 10:14:33,084 INFO Connection check task end + +2025-09-24 10:14:34,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:36,085 INFO Connection check task start + +2025-09-24 10:14:36,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:36,085 INFO Out dated connection ,size=0 + +2025-09-24 10:14:36,085 INFO Connection check task end + +2025-09-24 10:14:37,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:39,087 INFO Connection check task start + +2025-09-24 10:14:39,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:39,087 INFO Out dated connection ,size=0 + +2025-09-24 10:14:39,087 INFO Connection check task end + +2025-09-24 10:14:40,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:42,089 INFO Connection check task start + +2025-09-24 10:14:42,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:42,089 INFO Out dated connection ,size=0 + +2025-09-24 10:14:42,089 INFO Connection check task end + +2025-09-24 10:14:43,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:45,090 INFO Connection check task start + +2025-09-24 10:14:45,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:45,090 INFO Out dated connection ,size=0 + +2025-09-24 10:14:45,090 INFO Connection check task end + +2025-09-24 10:14:46,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:48,092 INFO Connection check task start + +2025-09-24 10:14:48,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:48,092 INFO Out dated connection ,size=0 + +2025-09-24 10:14:48,092 INFO Connection check task end + +2025-09-24 10:14:49,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:51,095 INFO Connection check task start + +2025-09-24 10:14:51,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:51,095 INFO Out dated connection ,size=0 + +2025-09-24 10:14:51,095 INFO Connection check task end + +2025-09-24 10:14:52,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:54,095 INFO Connection check task start + +2025-09-24 10:14:54,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:54,095 INFO Out dated connection ,size=0 + +2025-09-24 10:14:54,095 INFO Connection check task end + +2025-09-24 10:14:55,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:14:57,096 INFO Connection check task start + +2025-09-24 10:14:57,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:14:57,096 INFO Out dated connection ,size=0 + +2025-09-24 10:14:57,096 INFO Connection check task end + +2025-09-24 10:14:58,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:00,096 INFO Connection check task start + +2025-09-24 10:15:00,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:00,097 INFO Out dated connection ,size=0 + +2025-09-24 10:15:00,097 INFO Connection check task end + +2025-09-24 10:15:01,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:03,098 INFO Connection check task start + +2025-09-24 10:15:03,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:03,098 INFO Out dated connection ,size=0 + +2025-09-24 10:15:03,098 INFO Connection check task end + +2025-09-24 10:15:04,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:06,099 INFO Connection check task start + +2025-09-24 10:15:06,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:06,099 INFO Out dated connection ,size=0 + +2025-09-24 10:15:06,099 INFO Connection check task end + +2025-09-24 10:15:07,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:09,099 INFO Connection check task start + +2025-09-24 10:15:09,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:09,099 INFO Out dated connection ,size=0 + +2025-09-24 10:15:09,100 INFO Connection check task end + +2025-09-24 10:15:10,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:12,100 INFO Connection check task start + +2025-09-24 10:15:12,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:12,101 INFO Out dated connection ,size=0 + +2025-09-24 10:15:12,101 INFO Connection check task end + +2025-09-24 10:15:13,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:15,102 INFO Connection check task start + +2025-09-24 10:15:15,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:15,102 INFO Out dated connection ,size=0 + +2025-09-24 10:15:15,102 INFO Connection check task end + +2025-09-24 10:15:16,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:18,104 INFO Connection check task start + +2025-09-24 10:15:18,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:18,104 INFO Out dated connection ,size=0 + +2025-09-24 10:15:18,104 INFO Connection check task end + +2025-09-24 10:15:19,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:21,105 INFO Connection check task start + +2025-09-24 10:15:21,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:21,106 INFO Out dated connection ,size=0 + +2025-09-24 10:15:21,106 INFO Connection check task end + +2025-09-24 10:15:22,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:24,106 INFO Connection check task start + +2025-09-24 10:15:24,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:24,106 INFO Out dated connection ,size=0 + +2025-09-24 10:15:24,106 INFO Connection check task end + +2025-09-24 10:15:25,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:27,107 INFO Connection check task start + +2025-09-24 10:15:27,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:27,107 INFO Out dated connection ,size=0 + +2025-09-24 10:15:27,107 INFO Connection check task end + +2025-09-24 10:15:28,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:30,108 INFO Connection check task start + +2025-09-24 10:15:30,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:30,108 INFO Out dated connection ,size=0 + +2025-09-24 10:15:30,108 INFO Connection check task end + +2025-09-24 10:15:31,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:33,108 INFO Connection check task start + +2025-09-24 10:15:33,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:33,109 INFO Out dated connection ,size=0 + +2025-09-24 10:15:33,109 INFO Connection check task end + +2025-09-24 10:15:34,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:36,109 INFO Connection check task start + +2025-09-24 10:15:36,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:36,109 INFO Out dated connection ,size=0 + +2025-09-24 10:15:36,109 INFO Connection check task end + +2025-09-24 10:15:37,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:39,109 INFO Connection check task start + +2025-09-24 10:15:39,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:39,109 INFO Out dated connection ,size=0 + +2025-09-24 10:15:39,109 INFO Connection check task end + +2025-09-24 10:15:40,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:42,111 INFO Connection check task start + +2025-09-24 10:15:42,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:42,111 INFO Out dated connection ,size=0 + +2025-09-24 10:15:42,111 INFO Connection check task end + +2025-09-24 10:15:43,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:45,112 INFO Connection check task start + +2025-09-24 10:15:45,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:45,112 INFO Out dated connection ,size=0 + +2025-09-24 10:15:45,112 INFO Connection check task end + +2025-09-24 10:15:46,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:48,113 INFO Connection check task start + +2025-09-24 10:15:48,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:48,113 INFO Out dated connection ,size=0 + +2025-09-24 10:15:48,113 INFO Connection check task end + +2025-09-24 10:15:49,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:51,114 INFO Connection check task start + +2025-09-24 10:15:51,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:51,114 INFO Out dated connection ,size=0 + +2025-09-24 10:15:51,114 INFO Connection check task end + +2025-09-24 10:15:52,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:54,114 INFO Connection check task start + +2025-09-24 10:15:54,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:54,115 INFO Out dated connection ,size=0 + +2025-09-24 10:15:54,115 INFO Connection check task end + +2025-09-24 10:15:55,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:15:57,115 INFO Connection check task start + +2025-09-24 10:15:57,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:15:57,115 INFO Out dated connection ,size=0 + +2025-09-24 10:15:57,115 INFO Connection check task end + +2025-09-24 10:15:58,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:00,117 INFO Connection check task start + +2025-09-24 10:16:00,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:00,117 INFO Out dated connection ,size=0 + +2025-09-24 10:16:00,117 INFO Connection check task end + +2025-09-24 10:16:01,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:03,117 INFO Connection check task start + +2025-09-24 10:16:03,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:03,117 INFO Out dated connection ,size=0 + +2025-09-24 10:16:03,118 INFO Connection check task end + +2025-09-24 10:16:04,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:06,118 INFO Connection check task start + +2025-09-24 10:16:06,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:06,118 INFO Out dated connection ,size=0 + +2025-09-24 10:16:06,118 INFO Connection check task end + +2025-09-24 10:16:07,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:09,119 INFO Connection check task start + +2025-09-24 10:16:09,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:09,119 INFO Out dated connection ,size=0 + +2025-09-24 10:16:09,119 INFO Connection check task end + +2025-09-24 10:16:10,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:12,120 INFO Connection check task start + +2025-09-24 10:16:12,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:12,120 INFO Out dated connection ,size=0 + +2025-09-24 10:16:12,120 INFO Connection check task end + +2025-09-24 10:16:13,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:15,120 INFO Connection check task start + +2025-09-24 10:16:15,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:15,120 INFO Out dated connection ,size=0 + +2025-09-24 10:16:15,120 INFO Connection check task end + +2025-09-24 10:16:16,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:18,122 INFO Connection check task start + +2025-09-24 10:16:18,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:18,122 INFO Out dated connection ,size=0 + +2025-09-24 10:16:18,122 INFO Connection check task end + +2025-09-24 10:16:19,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:21,123 INFO Connection check task start + +2025-09-24 10:16:21,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:21,123 INFO Out dated connection ,size=0 + +2025-09-24 10:16:21,123 INFO Connection check task end + +2025-09-24 10:16:22,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:24,124 INFO Connection check task start + +2025-09-24 10:16:24,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:24,124 INFO Out dated connection ,size=0 + +2025-09-24 10:16:24,124 INFO Connection check task end + +2025-09-24 10:16:25,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:27,124 INFO Connection check task start + +2025-09-24 10:16:27,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:27,124 INFO Out dated connection ,size=0 + +2025-09-24 10:16:27,124 INFO Connection check task end + +2025-09-24 10:16:28,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:30,126 INFO Connection check task start + +2025-09-24 10:16:30,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:30,127 INFO Out dated connection ,size=0 + +2025-09-24 10:16:30,127 INFO Connection check task end + +2025-09-24 10:16:31,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:33,127 INFO Connection check task start + +2025-09-24 10:16:33,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:33,127 INFO Out dated connection ,size=0 + +2025-09-24 10:16:33,127 INFO Connection check task end + +2025-09-24 10:16:34,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:36,127 INFO Connection check task start + +2025-09-24 10:16:36,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:36,127 INFO Out dated connection ,size=0 + +2025-09-24 10:16:36,127 INFO Connection check task end + +2025-09-24 10:16:37,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:39,129 INFO Connection check task start + +2025-09-24 10:16:39,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:39,130 INFO Out dated connection ,size=0 + +2025-09-24 10:16:39,130 INFO Connection check task end + +2025-09-24 10:16:40,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:42,132 INFO Connection check task start + +2025-09-24 10:16:42,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:42,132 INFO Out dated connection ,size=0 + +2025-09-24 10:16:42,132 INFO Connection check task end + +2025-09-24 10:16:43,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:45,132 INFO Connection check task start + +2025-09-24 10:16:45,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:45,132 INFO Out dated connection ,size=0 + +2025-09-24 10:16:45,132 INFO Connection check task end + +2025-09-24 10:16:46,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:48,133 INFO Connection check task start + +2025-09-24 10:16:48,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:48,133 INFO Out dated connection ,size=0 + +2025-09-24 10:16:48,133 INFO Connection check task end + +2025-09-24 10:16:49,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:51,134 INFO Connection check task start + +2025-09-24 10:16:51,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:51,134 INFO Out dated connection ,size=0 + +2025-09-24 10:16:51,134 INFO Connection check task end + +2025-09-24 10:16:52,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:54,134 INFO Connection check task start + +2025-09-24 10:16:54,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:54,134 INFO Out dated connection ,size=0 + +2025-09-24 10:16:54,134 INFO Connection check task end + +2025-09-24 10:16:55,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:16:57,135 INFO Connection check task start + +2025-09-24 10:16:57,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:16:57,135 INFO Out dated connection ,size=0 + +2025-09-24 10:16:57,135 INFO Connection check task end + +2025-09-24 10:16:58,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:00,136 INFO Connection check task start + +2025-09-24 10:17:00,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:00,137 INFO Out dated connection ,size=0 + +2025-09-24 10:17:00,137 INFO Connection check task end + +2025-09-24 10:17:01,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:03,137 INFO Connection check task start + +2025-09-24 10:17:03,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:03,137 INFO Out dated connection ,size=0 + +2025-09-24 10:17:03,137 INFO Connection check task end + +2025-09-24 10:17:04,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:06,139 INFO Connection check task start + +2025-09-24 10:17:06,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:06,139 INFO Out dated connection ,size=0 + +2025-09-24 10:17:06,139 INFO Connection check task end + +2025-09-24 10:17:07,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:09,139 INFO Connection check task start + +2025-09-24 10:17:09,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:09,140 INFO Out dated connection ,size=0 + +2025-09-24 10:17:09,140 INFO Connection check task end + +2025-09-24 10:17:10,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:12,141 INFO Connection check task start + +2025-09-24 10:17:12,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:12,142 INFO Out dated connection ,size=0 + +2025-09-24 10:17:12,142 INFO Connection check task end + +2025-09-24 10:17:13,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:15,142 INFO Connection check task start + +2025-09-24 10:17:15,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:15,142 INFO Out dated connection ,size=0 + +2025-09-24 10:17:15,142 INFO Connection check task end + +2025-09-24 10:17:16,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:18,143 INFO Connection check task start + +2025-09-24 10:17:18,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:18,143 INFO Out dated connection ,size=0 + +2025-09-24 10:17:18,143 INFO Connection check task end + +2025-09-24 10:17:19,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:21,145 INFO Connection check task start + +2025-09-24 10:17:21,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:21,145 INFO Out dated connection ,size=0 + +2025-09-24 10:17:21,145 INFO Connection check task end + +2025-09-24 10:17:22,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:24,146 INFO Connection check task start + +2025-09-24 10:17:24,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:24,146 INFO Out dated connection ,size=0 + +2025-09-24 10:17:24,146 INFO Connection check task end + +2025-09-24 10:17:25,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:27,146 INFO Connection check task start + +2025-09-24 10:17:27,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:27,146 INFO Out dated connection ,size=0 + +2025-09-24 10:17:27,146 INFO Connection check task end + +2025-09-24 10:17:28,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:30,147 INFO Connection check task start + +2025-09-24 10:17:30,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:30,147 INFO Out dated connection ,size=0 + +2025-09-24 10:17:30,147 INFO Connection check task end + +2025-09-24 10:17:31,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:33,150 INFO Connection check task start + +2025-09-24 10:17:33,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:33,150 INFO Out dated connection ,size=0 + +2025-09-24 10:17:33,150 INFO Connection check task end + +2025-09-24 10:17:34,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:36,150 INFO Connection check task start + +2025-09-24 10:17:36,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:36,150 INFO Out dated connection ,size=0 + +2025-09-24 10:17:36,150 INFO Connection check task end + +2025-09-24 10:17:37,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:39,151 INFO Connection check task start + +2025-09-24 10:17:39,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:39,151 INFO Out dated connection ,size=0 + +2025-09-24 10:17:39,151 INFO Connection check task end + +2025-09-24 10:17:40,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:42,152 INFO Connection check task start + +2025-09-24 10:17:42,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:42,153 INFO Out dated connection ,size=0 + +2025-09-24 10:17:42,153 INFO Connection check task end + +2025-09-24 10:17:43,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:45,153 INFO Connection check task start + +2025-09-24 10:17:45,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:45,153 INFO Out dated connection ,size=0 + +2025-09-24 10:17:45,153 INFO Connection check task end + +2025-09-24 10:17:46,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:48,154 INFO Connection check task start + +2025-09-24 10:17:48,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:48,154 INFO Out dated connection ,size=0 + +2025-09-24 10:17:48,154 INFO Connection check task end + +2025-09-24 10:17:49,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:51,154 INFO Connection check task start + +2025-09-24 10:17:51,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:51,155 INFO Out dated connection ,size=0 + +2025-09-24 10:17:51,155 INFO Connection check task end + +2025-09-24 10:17:52,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:54,156 INFO Connection check task start + +2025-09-24 10:17:54,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:54,157 INFO Out dated connection ,size=0 + +2025-09-24 10:17:54,157 INFO Connection check task end + +2025-09-24 10:17:55,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:17:57,158 INFO Connection check task start + +2025-09-24 10:17:57,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:17:57,159 INFO Out dated connection ,size=0 + +2025-09-24 10:17:57,159 INFO Connection check task end + +2025-09-24 10:17:58,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:00,160 INFO Connection check task start + +2025-09-24 10:18:00,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:00,160 INFO Out dated connection ,size=0 + +2025-09-24 10:18:00,160 INFO Connection check task end + +2025-09-24 10:18:01,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:03,162 INFO Connection check task start + +2025-09-24 10:18:03,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:03,162 INFO Out dated connection ,size=0 + +2025-09-24 10:18:03,162 INFO Connection check task end + +2025-09-24 10:18:04,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:06,163 INFO Connection check task start + +2025-09-24 10:18:06,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:06,163 INFO Out dated connection ,size=0 + +2025-09-24 10:18:06,163 INFO Connection check task end + +2025-09-24 10:18:07,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:09,165 INFO Connection check task start + +2025-09-24 10:18:09,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:09,165 INFO Out dated connection ,size=0 + +2025-09-24 10:18:09,165 INFO Connection check task end + +2025-09-24 10:18:10,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:12,167 INFO Connection check task start + +2025-09-24 10:18:12,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:12,168 INFO Out dated connection ,size=0 + +2025-09-24 10:18:12,168 INFO Connection check task end + +2025-09-24 10:18:13,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:15,168 INFO Connection check task start + +2025-09-24 10:18:15,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:15,168 INFO Out dated connection ,size=0 + +2025-09-24 10:18:15,168 INFO Connection check task end + +2025-09-24 10:18:16,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:18,169 INFO Connection check task start + +2025-09-24 10:18:18,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:18,169 INFO Out dated connection ,size=0 + +2025-09-24 10:18:18,169 INFO Connection check task end + +2025-09-24 10:18:19,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:21,170 INFO Connection check task start + +2025-09-24 10:18:21,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:21,170 INFO Out dated connection ,size=0 + +2025-09-24 10:18:21,170 INFO Connection check task end + +2025-09-24 10:18:22,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:24,170 INFO Connection check task start + +2025-09-24 10:18:24,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:24,170 INFO Out dated connection ,size=0 + +2025-09-24 10:18:24,170 INFO Connection check task end + +2025-09-24 10:18:25,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:27,172 INFO Connection check task start + +2025-09-24 10:18:27,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:27,173 INFO Out dated connection ,size=0 + +2025-09-24 10:18:27,173 INFO Connection check task end + +2025-09-24 10:18:28,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:30,173 INFO Connection check task start + +2025-09-24 10:18:30,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:30,173 INFO Out dated connection ,size=0 + +2025-09-24 10:18:30,173 INFO Connection check task end + +2025-09-24 10:18:31,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:33,173 INFO Connection check task start + +2025-09-24 10:18:33,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:33,174 INFO Out dated connection ,size=0 + +2025-09-24 10:18:33,174 INFO Connection check task end + +2025-09-24 10:18:34,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:36,174 INFO Connection check task start + +2025-09-24 10:18:36,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:36,174 INFO Out dated connection ,size=0 + +2025-09-24 10:18:36,174 INFO Connection check task end + +2025-09-24 10:18:37,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:39,174 INFO Connection check task start + +2025-09-24 10:18:39,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:39,175 INFO Out dated connection ,size=0 + +2025-09-24 10:18:39,175 INFO Connection check task end + +2025-09-24 10:18:40,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:42,177 INFO Connection check task start + +2025-09-24 10:18:42,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:42,177 INFO Out dated connection ,size=0 + +2025-09-24 10:18:42,177 INFO Connection check task end + +2025-09-24 10:18:43,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:45,177 INFO Connection check task start + +2025-09-24 10:18:45,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:45,177 INFO Out dated connection ,size=0 + +2025-09-24 10:18:45,177 INFO Connection check task end + +2025-09-24 10:18:46,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:48,178 INFO Connection check task start + +2025-09-24 10:18:48,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:48,178 INFO Out dated connection ,size=0 + +2025-09-24 10:18:48,178 INFO Connection check task end + +2025-09-24 10:18:49,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:51,180 INFO Connection check task start + +2025-09-24 10:18:51,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:51,180 INFO Out dated connection ,size=0 + +2025-09-24 10:18:51,180 INFO Connection check task end + +2025-09-24 10:18:52,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:54,181 INFO Connection check task start + +2025-09-24 10:18:54,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:54,181 INFO Out dated connection ,size=0 + +2025-09-24 10:18:54,181 INFO Connection check task end + +2025-09-24 10:18:55,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:18:57,181 INFO Connection check task start + +2025-09-24 10:18:57,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:18:57,182 INFO Out dated connection ,size=0 + +2025-09-24 10:18:57,182 INFO Connection check task end + +2025-09-24 10:18:58,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:00,182 INFO Connection check task start + +2025-09-24 10:19:00,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:00,182 INFO Out dated connection ,size=0 + +2025-09-24 10:19:00,182 INFO Connection check task end + +2025-09-24 10:19:01,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:03,184 INFO Connection check task start + +2025-09-24 10:19:03,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:03,184 INFO Out dated connection ,size=0 + +2025-09-24 10:19:03,184 INFO Connection check task end + +2025-09-24 10:19:04,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:06,185 INFO Connection check task start + +2025-09-24 10:19:06,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:06,185 INFO Out dated connection ,size=0 + +2025-09-24 10:19:06,185 INFO Connection check task end + +2025-09-24 10:19:07,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:09,187 INFO Connection check task start + +2025-09-24 10:19:09,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:09,187 INFO Out dated connection ,size=0 + +2025-09-24 10:19:09,187 INFO Connection check task end + +2025-09-24 10:19:10,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:12,188 INFO Connection check task start + +2025-09-24 10:19:12,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:12,188 INFO Out dated connection ,size=0 + +2025-09-24 10:19:12,188 INFO Connection check task end + +2025-09-24 10:19:13,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:15,188 INFO Connection check task start + +2025-09-24 10:19:15,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:15,188 INFO Out dated connection ,size=0 + +2025-09-24 10:19:15,188 INFO Connection check task end + +2025-09-24 10:19:16,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:18,189 INFO Connection check task start + +2025-09-24 10:19:18,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:18,189 INFO Out dated connection ,size=0 + +2025-09-24 10:19:18,189 INFO Connection check task end + +2025-09-24 10:19:19,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:21,191 INFO Connection check task start + +2025-09-24 10:19:21,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:21,191 INFO Out dated connection ,size=0 + +2025-09-24 10:19:21,191 INFO Connection check task end + +2025-09-24 10:19:22,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:24,191 INFO Connection check task start + +2025-09-24 10:19:24,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:24,192 INFO Out dated connection ,size=0 + +2025-09-24 10:19:24,192 INFO Connection check task end + +2025-09-24 10:19:25,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:27,192 INFO Connection check task start + +2025-09-24 10:19:27,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:27,193 INFO Out dated connection ,size=0 + +2025-09-24 10:19:27,193 INFO Connection check task end + +2025-09-24 10:19:28,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:30,193 INFO Connection check task start + +2025-09-24 10:19:30,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:30,193 INFO Out dated connection ,size=0 + +2025-09-24 10:19:30,193 INFO Connection check task end + +2025-09-24 10:19:31,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:33,194 INFO Connection check task start + +2025-09-24 10:19:33,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:33,194 INFO Out dated connection ,size=0 + +2025-09-24 10:19:33,194 INFO Connection check task end + +2025-09-24 10:19:34,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:36,195 INFO Connection check task start + +2025-09-24 10:19:36,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:36,195 INFO Out dated connection ,size=0 + +2025-09-24 10:19:36,195 INFO Connection check task end + +2025-09-24 10:19:37,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:39,195 INFO Connection check task start + +2025-09-24 10:19:39,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:39,196 INFO Out dated connection ,size=0 + +2025-09-24 10:19:39,196 INFO Connection check task end + +2025-09-24 10:19:40,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:42,196 INFO Connection check task start + +2025-09-24 10:19:42,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:42,197 INFO Out dated connection ,size=0 + +2025-09-24 10:19:42,197 INFO Connection check task end + +2025-09-24 10:19:43,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:45,198 INFO Connection check task start + +2025-09-24 10:19:45,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:45,198 INFO Out dated connection ,size=0 + +2025-09-24 10:19:45,198 INFO Connection check task end + +2025-09-24 10:19:46,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:48,198 INFO Connection check task start + +2025-09-24 10:19:48,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:48,199 INFO Out dated connection ,size=0 + +2025-09-24 10:19:48,199 INFO Connection check task end + +2025-09-24 10:19:49,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:51,200 INFO Connection check task start + +2025-09-24 10:19:51,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:51,200 INFO Out dated connection ,size=0 + +2025-09-24 10:19:51,200 INFO Connection check task end + +2025-09-24 10:19:52,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:54,202 INFO Connection check task start + +2025-09-24 10:19:54,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:54,202 INFO Out dated connection ,size=0 + +2025-09-24 10:19:54,202 INFO Connection check task end + +2025-09-24 10:19:55,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:19:57,203 INFO Connection check task start + +2025-09-24 10:19:57,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:19:57,203 INFO Out dated connection ,size=0 + +2025-09-24 10:19:57,203 INFO Connection check task end + +2025-09-24 10:19:58,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:00,203 INFO Connection check task start + +2025-09-24 10:20:00,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:00,204 INFO Out dated connection ,size=0 + +2025-09-24 10:20:00,204 INFO Connection check task end + +2025-09-24 10:20:01,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:03,204 INFO Connection check task start + +2025-09-24 10:20:03,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:03,204 INFO Out dated connection ,size=0 + +2025-09-24 10:20:03,204 INFO Connection check task end + +2025-09-24 10:20:04,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:06,204 INFO Connection check task start + +2025-09-24 10:20:06,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:06,205 INFO Out dated connection ,size=0 + +2025-09-24 10:20:06,205 INFO Connection check task end + +2025-09-24 10:20:07,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:09,205 INFO Connection check task start + +2025-09-24 10:20:09,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:09,205 INFO Out dated connection ,size=0 + +2025-09-24 10:20:09,205 INFO Connection check task end + +2025-09-24 10:20:10,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:12,206 INFO Connection check task start + +2025-09-24 10:20:12,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:12,206 INFO Out dated connection ,size=0 + +2025-09-24 10:20:12,206 INFO Connection check task end + +2025-09-24 10:20:13,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:15,208 INFO Connection check task start + +2025-09-24 10:20:15,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:15,208 INFO Out dated connection ,size=0 + +2025-09-24 10:20:15,208 INFO Connection check task end + +2025-09-24 10:20:16,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:18,209 INFO Connection check task start + +2025-09-24 10:20:18,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:18,209 INFO Out dated connection ,size=0 + +2025-09-24 10:20:18,209 INFO Connection check task end + +2025-09-24 10:20:19,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:21,211 INFO Connection check task start + +2025-09-24 10:20:21,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:21,211 INFO Out dated connection ,size=0 + +2025-09-24 10:20:21,211 INFO Connection check task end + +2025-09-24 10:20:22,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:24,211 INFO Connection check task start + +2025-09-24 10:20:24,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:24,211 INFO Out dated connection ,size=0 + +2025-09-24 10:20:24,211 INFO Connection check task end + +2025-09-24 10:20:25,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:27,213 INFO Connection check task start + +2025-09-24 10:20:27,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:27,214 INFO Out dated connection ,size=0 + +2025-09-24 10:20:27,214 INFO Connection check task end + +2025-09-24 10:20:28,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:30,214 INFO Connection check task start + +2025-09-24 10:20:30,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:30,214 INFO Out dated connection ,size=0 + +2025-09-24 10:20:30,214 INFO Connection check task end + +2025-09-24 10:20:31,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:33,216 INFO Connection check task start + +2025-09-24 10:20:33,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:33,217 INFO Out dated connection ,size=0 + +2025-09-24 10:20:33,217 INFO Connection check task end + +2025-09-24 10:20:34,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:36,219 INFO Connection check task start + +2025-09-24 10:20:36,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:36,219 INFO Out dated connection ,size=0 + +2025-09-24 10:20:36,219 INFO Connection check task end + +2025-09-24 10:20:37,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:39,221 INFO Connection check task start + +2025-09-24 10:20:39,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:39,221 INFO Out dated connection ,size=0 + +2025-09-24 10:20:39,221 INFO Connection check task end + +2025-09-24 10:20:40,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:42,221 INFO Connection check task start + +2025-09-24 10:20:42,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:42,221 INFO Out dated connection ,size=0 + +2025-09-24 10:20:42,221 INFO Connection check task end + +2025-09-24 10:20:43,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:45,222 INFO Connection check task start + +2025-09-24 10:20:45,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:45,222 INFO Out dated connection ,size=0 + +2025-09-24 10:20:45,222 INFO Connection check task end + +2025-09-24 10:20:46,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:48,223 INFO Connection check task start + +2025-09-24 10:20:48,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:48,223 INFO Out dated connection ,size=0 + +2025-09-24 10:20:48,223 INFO Connection check task end + +2025-09-24 10:20:49,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:51,224 INFO Connection check task start + +2025-09-24 10:20:51,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:51,225 INFO Out dated connection ,size=0 + +2025-09-24 10:20:51,225 INFO Connection check task end + +2025-09-24 10:20:52,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:54,225 INFO Connection check task start + +2025-09-24 10:20:54,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:54,225 INFO Out dated connection ,size=0 + +2025-09-24 10:20:54,225 INFO Connection check task end + +2025-09-24 10:20:55,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:20:57,226 INFO Connection check task start + +2025-09-24 10:20:57,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:20:57,226 INFO Out dated connection ,size=0 + +2025-09-24 10:20:57,226 INFO Connection check task end + +2025-09-24 10:20:58,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:00,228 INFO Connection check task start + +2025-09-24 10:21:00,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:00,228 INFO Out dated connection ,size=0 + +2025-09-24 10:21:00,228 INFO Connection check task end + +2025-09-24 10:21:01,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:03,229 INFO Connection check task start + +2025-09-24 10:21:03,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:03,229 INFO Out dated connection ,size=0 + +2025-09-24 10:21:03,229 INFO Connection check task end + +2025-09-24 10:21:04,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:06,230 INFO Connection check task start + +2025-09-24 10:21:06,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:06,230 INFO Out dated connection ,size=0 + +2025-09-24 10:21:06,230 INFO Connection check task end + +2025-09-24 10:21:07,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:09,232 INFO Connection check task start + +2025-09-24 10:21:09,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:09,232 INFO Out dated connection ,size=0 + +2025-09-24 10:21:09,232 INFO Connection check task end + +2025-09-24 10:21:10,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:12,233 INFO Connection check task start + +2025-09-24 10:21:12,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:12,233 INFO Out dated connection ,size=0 + +2025-09-24 10:21:12,233 INFO Connection check task end + +2025-09-24 10:21:13,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:15,235 INFO Connection check task start + +2025-09-24 10:21:15,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:15,235 INFO Out dated connection ,size=0 + +2025-09-24 10:21:15,235 INFO Connection check task end + +2025-09-24 10:21:16,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:18,237 INFO Connection check task start + +2025-09-24 10:21:18,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:18,237 INFO Out dated connection ,size=0 + +2025-09-24 10:21:18,237 INFO Connection check task end + +2025-09-24 10:21:19,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:21,238 INFO Connection check task start + +2025-09-24 10:21:21,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:21,238 INFO Out dated connection ,size=0 + +2025-09-24 10:21:21,238 INFO Connection check task end + +2025-09-24 10:21:22,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:24,240 INFO Connection check task start + +2025-09-24 10:21:24,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:24,240 INFO Out dated connection ,size=0 + +2025-09-24 10:21:24,240 INFO Connection check task end + +2025-09-24 10:21:25,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:27,242 INFO Connection check task start + +2025-09-24 10:21:27,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:27,242 INFO Out dated connection ,size=0 + +2025-09-24 10:21:27,242 INFO Connection check task end + +2025-09-24 10:21:28,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:30,243 INFO Connection check task start + +2025-09-24 10:21:30,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:30,243 INFO Out dated connection ,size=0 + +2025-09-24 10:21:30,243 INFO Connection check task end + +2025-09-24 10:21:31,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:33,244 INFO Connection check task start + +2025-09-24 10:21:33,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:33,244 INFO Out dated connection ,size=0 + +2025-09-24 10:21:33,244 INFO Connection check task end + +2025-09-24 10:21:34,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:36,246 INFO Connection check task start + +2025-09-24 10:21:36,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:36,247 INFO Out dated connection ,size=0 + +2025-09-24 10:21:36,247 INFO Connection check task end + +2025-09-24 10:21:37,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:39,248 INFO Connection check task start + +2025-09-24 10:21:39,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:39,248 INFO Out dated connection ,size=0 + +2025-09-24 10:21:39,248 INFO Connection check task end + +2025-09-24 10:21:40,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:42,250 INFO Connection check task start + +2025-09-24 10:21:42,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:42,251 INFO Out dated connection ,size=0 + +2025-09-24 10:21:42,251 INFO Connection check task end + +2025-09-24 10:21:43,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:45,253 INFO Connection check task start + +2025-09-24 10:21:45,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:45,253 INFO Out dated connection ,size=0 + +2025-09-24 10:21:45,253 INFO Connection check task end + +2025-09-24 10:21:46,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:48,255 INFO Connection check task start + +2025-09-24 10:21:48,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:48,255 INFO Out dated connection ,size=0 + +2025-09-24 10:21:48,255 INFO Connection check task end + +2025-09-24 10:21:49,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:51,257 INFO Connection check task start + +2025-09-24 10:21:51,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:51,257 INFO Out dated connection ,size=0 + +2025-09-24 10:21:51,257 INFO Connection check task end + +2025-09-24 10:21:52,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:54,258 INFO Connection check task start + +2025-09-24 10:21:54,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:54,259 INFO Out dated connection ,size=0 + +2025-09-24 10:21:54,259 INFO Connection check task end + +2025-09-24 10:21:55,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:21:57,259 INFO Connection check task start + +2025-09-24 10:21:57,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:21:57,259 INFO Out dated connection ,size=0 + +2025-09-24 10:21:57,260 INFO Connection check task end + +2025-09-24 10:21:58,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:00,262 INFO Connection check task start + +2025-09-24 10:22:00,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:00,262 INFO Out dated connection ,size=0 + +2025-09-24 10:22:00,262 INFO Connection check task end + +2025-09-24 10:22:01,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:03,262 INFO Connection check task start + +2025-09-24 10:22:03,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:03,262 INFO Out dated connection ,size=0 + +2025-09-24 10:22:03,262 INFO Connection check task end + +2025-09-24 10:22:04,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:06,263 INFO Connection check task start + +2025-09-24 10:22:06,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:06,263 INFO Out dated connection ,size=0 + +2025-09-24 10:22:06,263 INFO Connection check task end + +2025-09-24 10:22:07,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:09,264 INFO Connection check task start + +2025-09-24 10:22:09,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:09,264 INFO Out dated connection ,size=0 + +2025-09-24 10:22:09,264 INFO Connection check task end + +2025-09-24 10:22:10,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:12,264 INFO Connection check task start + +2025-09-24 10:22:12,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:12,264 INFO Out dated connection ,size=0 + +2025-09-24 10:22:12,264 INFO Connection check task end + +2025-09-24 10:22:13,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:15,265 INFO Connection check task start + +2025-09-24 10:22:15,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:15,265 INFO Out dated connection ,size=0 + +2025-09-24 10:22:15,265 INFO Connection check task end + +2025-09-24 10:22:16,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:18,267 INFO Connection check task start + +2025-09-24 10:22:18,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:18,267 INFO Out dated connection ,size=0 + +2025-09-24 10:22:18,267 INFO Connection check task end + +2025-09-24 10:22:19,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:21,267 INFO Connection check task start + +2025-09-24 10:22:21,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:21,268 INFO Out dated connection ,size=0 + +2025-09-24 10:22:21,268 INFO Connection check task end + +2025-09-24 10:22:22,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:24,268 INFO Connection check task start + +2025-09-24 10:22:24,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:24,268 INFO Out dated connection ,size=0 + +2025-09-24 10:22:24,268 INFO Connection check task end + +2025-09-24 10:22:25,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:27,269 INFO Connection check task start + +2025-09-24 10:22:27,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:27,269 INFO Out dated connection ,size=0 + +2025-09-24 10:22:27,269 INFO Connection check task end + +2025-09-24 10:22:28,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:30,269 INFO Connection check task start + +2025-09-24 10:22:30,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:30,269 INFO Out dated connection ,size=0 + +2025-09-24 10:22:30,270 INFO Connection check task end + +2025-09-24 10:22:31,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:33,270 INFO Connection check task start + +2025-09-24 10:22:33,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:33,271 INFO Out dated connection ,size=0 + +2025-09-24 10:22:33,271 INFO Connection check task end + +2025-09-24 10:22:34,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:36,273 INFO Connection check task start + +2025-09-24 10:22:36,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:36,273 INFO Out dated connection ,size=0 + +2025-09-24 10:22:36,273 INFO Connection check task end + +2025-09-24 10:22:37,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:39,273 INFO Connection check task start + +2025-09-24 10:22:39,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:39,273 INFO Out dated connection ,size=0 + +2025-09-24 10:22:39,273 INFO Connection check task end + +2025-09-24 10:22:40,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:42,275 INFO Connection check task start + +2025-09-24 10:22:42,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:42,276 INFO Out dated connection ,size=0 + +2025-09-24 10:22:42,276 INFO Connection check task end + +2025-09-24 10:22:43,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:45,276 INFO Connection check task start + +2025-09-24 10:22:45,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:45,276 INFO Out dated connection ,size=0 + +2025-09-24 10:22:45,276 INFO Connection check task end + +2025-09-24 10:22:46,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:48,278 INFO Connection check task start + +2025-09-24 10:22:48,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:48,278 INFO Out dated connection ,size=0 + +2025-09-24 10:22:48,279 INFO Connection check task end + +2025-09-24 10:22:49,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:51,279 INFO Connection check task start + +2025-09-24 10:22:51,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:51,279 INFO Out dated connection ,size=0 + +2025-09-24 10:22:51,279 INFO Connection check task end + +2025-09-24 10:22:52,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:54,279 INFO Connection check task start + +2025-09-24 10:22:54,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:54,279 INFO Out dated connection ,size=0 + +2025-09-24 10:22:54,279 INFO Connection check task end + +2025-09-24 10:22:55,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:22:57,280 INFO Connection check task start + +2025-09-24 10:22:57,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:22:57,280 INFO Out dated connection ,size=0 + +2025-09-24 10:22:57,280 INFO Connection check task end + +2025-09-24 10:22:58,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:00,282 INFO Connection check task start + +2025-09-24 10:23:00,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:00,282 INFO Out dated connection ,size=0 + +2025-09-24 10:23:00,282 INFO Connection check task end + +2025-09-24 10:23:01,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:03,282 INFO Connection check task start + +2025-09-24 10:23:03,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:03,282 INFO Out dated connection ,size=0 + +2025-09-24 10:23:03,282 INFO Connection check task end + +2025-09-24 10:23:04,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:06,284 INFO Connection check task start + +2025-09-24 10:23:06,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:06,284 INFO Out dated connection ,size=0 + +2025-09-24 10:23:06,284 INFO Connection check task end + +2025-09-24 10:23:07,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:09,286 INFO Connection check task start + +2025-09-24 10:23:09,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:09,286 INFO Out dated connection ,size=0 + +2025-09-24 10:23:09,286 INFO Connection check task end + +2025-09-24 10:23:10,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:12,288 INFO Connection check task start + +2025-09-24 10:23:12,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:12,288 INFO Out dated connection ,size=0 + +2025-09-24 10:23:12,288 INFO Connection check task end + +2025-09-24 10:23:13,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:15,290 INFO Connection check task start + +2025-09-24 10:23:15,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:15,290 INFO Out dated connection ,size=0 + +2025-09-24 10:23:15,290 INFO Connection check task end + +2025-09-24 10:23:16,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:18,290 INFO Connection check task start + +2025-09-24 10:23:18,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:18,290 INFO Out dated connection ,size=0 + +2025-09-24 10:23:18,290 INFO Connection check task end + +2025-09-24 10:23:19,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:21,291 INFO Connection check task start + +2025-09-24 10:23:21,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:21,291 INFO Out dated connection ,size=0 + +2025-09-24 10:23:21,291 INFO Connection check task end + +2025-09-24 10:23:22,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:24,293 INFO Connection check task start + +2025-09-24 10:23:24,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:24,293 INFO Out dated connection ,size=0 + +2025-09-24 10:23:24,293 INFO Connection check task end + +2025-09-24 10:23:25,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:27,294 INFO Connection check task start + +2025-09-24 10:23:27,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:27,294 INFO Out dated connection ,size=0 + +2025-09-24 10:23:27,294 INFO Connection check task end + +2025-09-24 10:23:28,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:30,296 INFO Connection check task start + +2025-09-24 10:23:30,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:30,297 INFO Out dated connection ,size=0 + +2025-09-24 10:23:30,297 INFO Connection check task end + +2025-09-24 10:23:31,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:33,297 INFO Connection check task start + +2025-09-24 10:23:33,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:33,297 INFO Out dated connection ,size=0 + +2025-09-24 10:23:33,297 INFO Connection check task end + +2025-09-24 10:23:34,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:36,297 INFO Connection check task start + +2025-09-24 10:23:36,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:36,297 INFO Out dated connection ,size=0 + +2025-09-24 10:23:36,298 INFO Connection check task end + +2025-09-24 10:23:37,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:39,299 INFO Connection check task start + +2025-09-24 10:23:39,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:39,300 INFO Out dated connection ,size=0 + +2025-09-24 10:23:39,300 INFO Connection check task end + +2025-09-24 10:23:40,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:42,300 INFO Connection check task start + +2025-09-24 10:23:42,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:42,300 INFO Out dated connection ,size=0 + +2025-09-24 10:23:42,300 INFO Connection check task end + +2025-09-24 10:23:43,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:45,301 INFO Connection check task start + +2025-09-24 10:23:45,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:45,301 INFO Out dated connection ,size=0 + +2025-09-24 10:23:45,301 INFO Connection check task end + +2025-09-24 10:23:46,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:48,301 INFO Connection check task start + +2025-09-24 10:23:48,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:48,301 INFO Out dated connection ,size=0 + +2025-09-24 10:23:48,301 INFO Connection check task end + +2025-09-24 10:23:49,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:51,302 INFO Connection check task start + +2025-09-24 10:23:51,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:51,302 INFO Out dated connection ,size=0 + +2025-09-24 10:23:51,302 INFO Connection check task end + +2025-09-24 10:23:52,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:54,304 INFO Connection check task start + +2025-09-24 10:23:54,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:54,304 INFO Out dated connection ,size=0 + +2025-09-24 10:23:54,304 INFO Connection check task end + +2025-09-24 10:23:55,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:23:57,306 INFO Connection check task start + +2025-09-24 10:23:57,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:23:57,306 INFO Out dated connection ,size=0 + +2025-09-24 10:23:57,306 INFO Connection check task end + +2025-09-24 10:23:58,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:00,308 INFO Connection check task start + +2025-09-24 10:24:00,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:00,308 INFO Out dated connection ,size=0 + +2025-09-24 10:24:00,308 INFO Connection check task end + +2025-09-24 10:24:01,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:03,309 INFO Connection check task start + +2025-09-24 10:24:03,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:03,309 INFO Out dated connection ,size=0 + +2025-09-24 10:24:03,309 INFO Connection check task end + +2025-09-24 10:24:04,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:06,311 INFO Connection check task start + +2025-09-24 10:24:06,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:06,311 INFO Out dated connection ,size=0 + +2025-09-24 10:24:06,311 INFO Connection check task end + +2025-09-24 10:24:07,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:09,311 INFO Connection check task start + +2025-09-24 10:24:09,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:09,312 INFO Out dated connection ,size=0 + +2025-09-24 10:24:09,312 INFO Connection check task end + +2025-09-24 10:24:10,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:12,312 INFO Connection check task start + +2025-09-24 10:24:12,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:12,313 INFO Out dated connection ,size=0 + +2025-09-24 10:24:12,313 INFO Connection check task end + +2025-09-24 10:24:13,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:15,314 INFO Connection check task start + +2025-09-24 10:24:15,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:15,314 INFO Out dated connection ,size=0 + +2025-09-24 10:24:15,314 INFO Connection check task end + +2025-09-24 10:24:16,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:18,315 INFO Connection check task start + +2025-09-24 10:24:18,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:18,316 INFO Out dated connection ,size=0 + +2025-09-24 10:24:18,316 INFO Connection check task end + +2025-09-24 10:24:19,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:21,318 INFO Connection check task start + +2025-09-24 10:24:21,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:21,322 INFO Out dated connection ,size=0 + +2025-09-24 10:24:21,322 INFO Connection check task end + +2025-09-24 10:24:22,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:24,323 INFO Connection check task start + +2025-09-24 10:24:24,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:24,323 INFO Out dated connection ,size=0 + +2025-09-24 10:24:24,323 INFO Connection check task end + +2025-09-24 10:24:25,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:27,324 INFO Connection check task start + +2025-09-24 10:24:27,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:27,324 INFO Out dated connection ,size=0 + +2025-09-24 10:24:27,324 INFO Connection check task end + +2025-09-24 10:24:28,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:30,324 INFO Connection check task start + +2025-09-24 10:24:30,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:30,324 INFO Out dated connection ,size=0 + +2025-09-24 10:24:30,324 INFO Connection check task end + +2025-09-24 10:24:31,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:33,325 INFO Connection check task start + +2025-09-24 10:24:33,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:33,325 INFO Out dated connection ,size=0 + +2025-09-24 10:24:33,325 INFO Connection check task end + +2025-09-24 10:24:34,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:36,325 INFO Connection check task start + +2025-09-24 10:24:36,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:36,326 INFO Out dated connection ,size=0 + +2025-09-24 10:24:36,326 INFO Connection check task end + +2025-09-24 10:24:37,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:39,326 INFO Connection check task start + +2025-09-24 10:24:39,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:39,326 INFO Out dated connection ,size=0 + +2025-09-24 10:24:39,326 INFO Connection check task end + +2025-09-24 10:24:40,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:42,328 INFO Connection check task start + +2025-09-24 10:24:42,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:42,328 INFO Out dated connection ,size=0 + +2025-09-24 10:24:42,328 INFO Connection check task end + +2025-09-24 10:24:43,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:45,328 INFO Connection check task start + +2025-09-24 10:24:45,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:45,328 INFO Out dated connection ,size=0 + +2025-09-24 10:24:45,328 INFO Connection check task end + +2025-09-24 10:24:46,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:48,329 INFO Connection check task start + +2025-09-24 10:24:48,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:48,329 INFO Out dated connection ,size=0 + +2025-09-24 10:24:48,329 INFO Connection check task end + +2025-09-24 10:24:49,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:51,330 INFO Connection check task start + +2025-09-24 10:24:51,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:51,330 INFO Out dated connection ,size=0 + +2025-09-24 10:24:51,330 INFO Connection check task end + +2025-09-24 10:24:52,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:54,331 INFO Connection check task start + +2025-09-24 10:24:54,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:54,331 INFO Out dated connection ,size=0 + +2025-09-24 10:24:54,331 INFO Connection check task end + +2025-09-24 10:24:55,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:24:57,331 INFO Connection check task start + +2025-09-24 10:24:57,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:24:57,331 INFO Out dated connection ,size=0 + +2025-09-24 10:24:57,331 INFO Connection check task end + +2025-09-24 10:24:58,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:00,332 INFO Connection check task start + +2025-09-24 10:25:00,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:00,332 INFO Out dated connection ,size=0 + +2025-09-24 10:25:00,332 INFO Connection check task end + +2025-09-24 10:25:01,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:03,332 INFO Connection check task start + +2025-09-24 10:25:03,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:03,332 INFO Out dated connection ,size=0 + +2025-09-24 10:25:03,332 INFO Connection check task end + +2025-09-24 10:25:04,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:06,335 INFO Connection check task start + +2025-09-24 10:25:06,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:06,335 INFO Out dated connection ,size=0 + +2025-09-24 10:25:06,335 INFO Connection check task end + +2025-09-24 10:25:07,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:09,336 INFO Connection check task start + +2025-09-24 10:25:09,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:09,336 INFO Out dated connection ,size=0 + +2025-09-24 10:25:09,336 INFO Connection check task end + +2025-09-24 10:25:10,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:12,336 INFO Connection check task start + +2025-09-24 10:25:12,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:12,336 INFO Out dated connection ,size=0 + +2025-09-24 10:25:12,336 INFO Connection check task end + +2025-09-24 10:25:13,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:15,339 INFO Connection check task start + +2025-09-24 10:25:15,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:15,339 INFO Out dated connection ,size=0 + +2025-09-24 10:25:15,339 INFO Connection check task end + +2025-09-24 10:25:16,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:18,339 INFO Connection check task start + +2025-09-24 10:25:18,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:18,339 INFO Out dated connection ,size=0 + +2025-09-24 10:25:18,339 INFO Connection check task end + +2025-09-24 10:25:19,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:21,340 INFO Connection check task start + +2025-09-24 10:25:21,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:21,343 INFO Out dated connection ,size=0 + +2025-09-24 10:25:21,343 INFO Connection check task end + +2025-09-24 10:25:22,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:24,345 INFO Connection check task start + +2025-09-24 10:25:24,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:24,346 INFO Out dated connection ,size=0 + +2025-09-24 10:25:24,346 INFO Connection check task end + +2025-09-24 10:25:25,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:27,346 INFO Connection check task start + +2025-09-24 10:25:27,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:27,346 INFO Out dated connection ,size=0 + +2025-09-24 10:25:27,346 INFO Connection check task end + +2025-09-24 10:25:28,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:30,347 INFO Connection check task start + +2025-09-24 10:25:30,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:30,347 INFO Out dated connection ,size=0 + +2025-09-24 10:25:30,347 INFO Connection check task end + +2025-09-24 10:25:31,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:33,348 INFO Connection check task start + +2025-09-24 10:25:33,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:33,348 INFO Out dated connection ,size=0 + +2025-09-24 10:25:33,348 INFO Connection check task end + +2025-09-24 10:25:34,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:36,349 INFO Connection check task start + +2025-09-24 10:25:36,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:36,349 INFO Out dated connection ,size=0 + +2025-09-24 10:25:36,349 INFO Connection check task end + +2025-09-24 10:25:37,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:39,349 INFO Connection check task start + +2025-09-24 10:25:39,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:39,350 INFO Out dated connection ,size=0 + +2025-09-24 10:25:39,350 INFO Connection check task end + +2025-09-24 10:25:40,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:42,350 INFO Connection check task start + +2025-09-24 10:25:42,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:42,350 INFO Out dated connection ,size=0 + +2025-09-24 10:25:42,350 INFO Connection check task end + +2025-09-24 10:25:43,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:45,351 INFO Connection check task start + +2025-09-24 10:25:45,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:45,351 INFO Out dated connection ,size=0 + +2025-09-24 10:25:45,352 INFO Connection check task end + +2025-09-24 10:25:46,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:48,352 INFO Connection check task start + +2025-09-24 10:25:48,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:48,352 INFO Out dated connection ,size=0 + +2025-09-24 10:25:48,352 INFO Connection check task end + +2025-09-24 10:25:49,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:51,354 INFO Connection check task start + +2025-09-24 10:25:51,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:51,355 INFO Out dated connection ,size=0 + +2025-09-24 10:25:51,355 INFO Connection check task end + +2025-09-24 10:25:52,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:54,357 INFO Connection check task start + +2025-09-24 10:25:54,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:54,357 INFO Out dated connection ,size=0 + +2025-09-24 10:25:54,357 INFO Connection check task end + +2025-09-24 10:25:55,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:25:57,358 INFO Connection check task start + +2025-09-24 10:25:57,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:25:57,359 INFO Out dated connection ,size=0 + +2025-09-24 10:25:57,359 INFO Connection check task end + +2025-09-24 10:25:58,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:00,361 INFO Connection check task start + +2025-09-24 10:26:00,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:00,361 INFO Out dated connection ,size=0 + +2025-09-24 10:26:00,361 INFO Connection check task end + +2025-09-24 10:26:01,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:03,363 INFO Connection check task start + +2025-09-24 10:26:03,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:03,363 INFO Out dated connection ,size=0 + +2025-09-24 10:26:03,363 INFO Connection check task end + +2025-09-24 10:26:04,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:06,363 INFO Connection check task start + +2025-09-24 10:26:06,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:06,363 INFO Out dated connection ,size=0 + +2025-09-24 10:26:06,363 INFO Connection check task end + +2025-09-24 10:26:07,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:09,365 INFO Connection check task start + +2025-09-24 10:26:09,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:09,365 INFO Out dated connection ,size=0 + +2025-09-24 10:26:09,365 INFO Connection check task end + +2025-09-24 10:26:10,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:12,367 INFO Connection check task start + +2025-09-24 10:26:12,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:12,367 INFO Out dated connection ,size=0 + +2025-09-24 10:26:12,367 INFO Connection check task end + +2025-09-24 10:26:13,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:15,367 INFO Connection check task start + +2025-09-24 10:26:15,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:15,367 INFO Out dated connection ,size=0 + +2025-09-24 10:26:15,367 INFO Connection check task end + +2025-09-24 10:26:16,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:18,368 INFO Connection check task start + +2025-09-24 10:26:18,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:18,368 INFO Out dated connection ,size=0 + +2025-09-24 10:26:18,368 INFO Connection check task end + +2025-09-24 10:26:19,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:21,368 INFO Connection check task start + +2025-09-24 10:26:21,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:21,368 INFO Out dated connection ,size=0 + +2025-09-24 10:26:21,368 INFO Connection check task end + +2025-09-24 10:26:22,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:24,369 INFO Connection check task start + +2025-09-24 10:26:24,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:24,369 INFO Out dated connection ,size=0 + +2025-09-24 10:26:24,369 INFO Connection check task end + +2025-09-24 10:26:25,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:27,370 INFO Connection check task start + +2025-09-24 10:26:27,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:27,370 INFO Out dated connection ,size=0 + +2025-09-24 10:26:27,370 INFO Connection check task end + +2025-09-24 10:26:28,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:30,372 INFO Connection check task start + +2025-09-24 10:26:30,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:30,372 INFO Out dated connection ,size=0 + +2025-09-24 10:26:30,372 INFO Connection check task end + +2025-09-24 10:26:31,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:33,372 INFO Connection check task start + +2025-09-24 10:26:33,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:33,373 INFO Out dated connection ,size=0 + +2025-09-24 10:26:33,373 INFO Connection check task end + +2025-09-24 10:26:34,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:36,373 INFO Connection check task start + +2025-09-24 10:26:36,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:36,373 INFO Out dated connection ,size=0 + +2025-09-24 10:26:36,373 INFO Connection check task end + +2025-09-24 10:26:37,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:39,374 INFO Connection check task start + +2025-09-24 10:26:39,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:39,374 INFO Out dated connection ,size=0 + +2025-09-24 10:26:39,374 INFO Connection check task end + +2025-09-24 10:26:40,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:42,374 INFO Connection check task start + +2025-09-24 10:26:42,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:42,375 INFO Out dated connection ,size=0 + +2025-09-24 10:26:42,375 INFO Connection check task end + +2025-09-24 10:26:43,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:45,375 INFO Connection check task start + +2025-09-24 10:26:45,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:45,375 INFO Out dated connection ,size=0 + +2025-09-24 10:26:45,375 INFO Connection check task end + +2025-09-24 10:26:46,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:48,376 INFO Connection check task start + +2025-09-24 10:26:48,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:48,376 INFO Out dated connection ,size=0 + +2025-09-24 10:26:48,376 INFO Connection check task end + +2025-09-24 10:26:49,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:51,377 INFO Connection check task start + +2025-09-24 10:26:51,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:51,377 INFO Out dated connection ,size=0 + +2025-09-24 10:26:51,377 INFO Connection check task end + +2025-09-24 10:26:52,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:54,378 INFO Connection check task start + +2025-09-24 10:26:54,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:54,378 INFO Out dated connection ,size=0 + +2025-09-24 10:26:54,378 INFO Connection check task end + +2025-09-24 10:26:55,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:26:57,379 INFO Connection check task start + +2025-09-24 10:26:57,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:26:57,379 INFO Out dated connection ,size=0 + +2025-09-24 10:26:57,379 INFO Connection check task end + +2025-09-24 10:26:58,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:00,379 INFO Connection check task start + +2025-09-24 10:27:00,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:00,379 INFO Out dated connection ,size=0 + +2025-09-24 10:27:00,379 INFO Connection check task end + +2025-09-24 10:27:01,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:03,380 INFO Connection check task start + +2025-09-24 10:27:03,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:03,380 INFO Out dated connection ,size=0 + +2025-09-24 10:27:03,380 INFO Connection check task end + +2025-09-24 10:27:04,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:06,381 INFO Connection check task start + +2025-09-24 10:27:06,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:06,381 INFO Out dated connection ,size=0 + +2025-09-24 10:27:06,381 INFO Connection check task end + +2025-09-24 10:27:07,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:09,381 INFO Connection check task start + +2025-09-24 10:27:09,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:09,381 INFO Out dated connection ,size=0 + +2025-09-24 10:27:09,382 INFO Connection check task end + +2025-09-24 10:27:10,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:12,382 INFO Connection check task start + +2025-09-24 10:27:12,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:12,383 INFO Out dated connection ,size=0 + +2025-09-24 10:27:12,383 INFO Connection check task end + +2025-09-24 10:27:13,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:15,383 INFO Connection check task start + +2025-09-24 10:27:15,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:15,384 INFO Out dated connection ,size=0 + +2025-09-24 10:27:15,384 INFO Connection check task end + +2025-09-24 10:27:16,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:18,384 INFO Connection check task start + +2025-09-24 10:27:18,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:18,384 INFO Out dated connection ,size=0 + +2025-09-24 10:27:18,384 INFO Connection check task end + +2025-09-24 10:27:19,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:21,399 INFO Connection check task start + +2025-09-24 10:27:21,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:21,399 INFO Out dated connection ,size=0 + +2025-09-24 10:27:21,399 INFO Connection check task end + +2025-09-24 10:27:22,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:24,399 INFO Connection check task start + +2025-09-24 10:27:24,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:24,399 INFO Out dated connection ,size=0 + +2025-09-24 10:27:24,399 INFO Connection check task end + +2025-09-24 10:27:25,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:27,400 INFO Connection check task start + +2025-09-24 10:27:27,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:27,400 INFO Out dated connection ,size=0 + +2025-09-24 10:27:27,400 INFO Connection check task end + +2025-09-24 10:27:28,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:30,400 INFO Connection check task start + +2025-09-24 10:27:30,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:30,400 INFO Out dated connection ,size=0 + +2025-09-24 10:27:30,400 INFO Connection check task end + +2025-09-24 10:27:31,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:33,401 INFO Connection check task start + +2025-09-24 10:27:33,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:33,401 INFO Out dated connection ,size=0 + +2025-09-24 10:27:33,401 INFO Connection check task end + +2025-09-24 10:27:34,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:36,402 INFO Connection check task start + +2025-09-24 10:27:36,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:36,402 INFO Out dated connection ,size=0 + +2025-09-24 10:27:36,402 INFO Connection check task end + +2025-09-24 10:27:37,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:39,402 INFO Connection check task start + +2025-09-24 10:27:39,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:39,402 INFO Out dated connection ,size=0 + +2025-09-24 10:27:39,402 INFO Connection check task end + +2025-09-24 10:27:40,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:42,404 INFO Connection check task start + +2025-09-24 10:27:42,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:42,405 INFO Out dated connection ,size=0 + +2025-09-24 10:27:42,405 INFO Connection check task end + +2025-09-24 10:27:43,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:45,406 INFO Connection check task start + +2025-09-24 10:27:45,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:45,407 INFO Out dated connection ,size=0 + +2025-09-24 10:27:45,407 INFO Connection check task end + +2025-09-24 10:27:46,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:48,407 INFO Connection check task start + +2025-09-24 10:27:48,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:48,407 INFO Out dated connection ,size=0 + +2025-09-24 10:27:48,407 INFO Connection check task end + +2025-09-24 10:27:49,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:51,408 INFO Connection check task start + +2025-09-24 10:27:51,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:51,408 INFO Out dated connection ,size=0 + +2025-09-24 10:27:51,408 INFO Connection check task end + +2025-09-24 10:27:52,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:54,409 INFO Connection check task start + +2025-09-24 10:27:54,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:54,409 INFO Out dated connection ,size=0 + +2025-09-24 10:27:54,409 INFO Connection check task end + +2025-09-24 10:27:55,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:27:57,410 INFO Connection check task start + +2025-09-24 10:27:57,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:27:57,410 INFO Out dated connection ,size=0 + +2025-09-24 10:27:57,410 INFO Connection check task end + +2025-09-24 10:27:58,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:00,410 INFO Connection check task start + +2025-09-24 10:28:00,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:00,411 INFO Out dated connection ,size=0 + +2025-09-24 10:28:00,411 INFO Connection check task end + +2025-09-24 10:28:01,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:03,412 INFO Connection check task start + +2025-09-24 10:28:03,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:03,412 INFO Out dated connection ,size=0 + +2025-09-24 10:28:03,412 INFO Connection check task end + +2025-09-24 10:28:04,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:06,413 INFO Connection check task start + +2025-09-24 10:28:06,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:06,413 INFO Out dated connection ,size=0 + +2025-09-24 10:28:06,413 INFO Connection check task end + +2025-09-24 10:28:07,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:09,413 INFO Connection check task start + +2025-09-24 10:28:09,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:09,414 INFO Out dated connection ,size=0 + +2025-09-24 10:28:09,414 INFO Connection check task end + +2025-09-24 10:28:10,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:12,415 INFO Connection check task start + +2025-09-24 10:28:12,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:12,415 INFO Out dated connection ,size=0 + +2025-09-24 10:28:12,415 INFO Connection check task end + +2025-09-24 10:28:13,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:15,416 INFO Connection check task start + +2025-09-24 10:28:15,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:15,416 INFO Out dated connection ,size=0 + +2025-09-24 10:28:15,416 INFO Connection check task end + +2025-09-24 10:28:16,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:18,416 INFO Connection check task start + +2025-09-24 10:28:18,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:18,416 INFO Out dated connection ,size=0 + +2025-09-24 10:28:18,416 INFO Connection check task end + +2025-09-24 10:28:19,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:21,417 INFO Connection check task start + +2025-09-24 10:28:21,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:21,417 INFO Out dated connection ,size=0 + +2025-09-24 10:28:21,417 INFO Connection check task end + +2025-09-24 10:28:22,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:24,418 INFO Connection check task start + +2025-09-24 10:28:24,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:24,418 INFO Out dated connection ,size=0 + +2025-09-24 10:28:24,418 INFO Connection check task end + +2025-09-24 10:28:25,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:27,420 INFO Connection check task start + +2025-09-24 10:28:27,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:27,421 INFO Out dated connection ,size=0 + +2025-09-24 10:28:27,421 INFO Connection check task end + +2025-09-24 10:28:28,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:30,421 INFO Connection check task start + +2025-09-24 10:28:30,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:30,421 INFO Out dated connection ,size=0 + +2025-09-24 10:28:30,421 INFO Connection check task end + +2025-09-24 10:28:31,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:33,423 INFO Connection check task start + +2025-09-24 10:28:33,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:33,424 INFO Out dated connection ,size=0 + +2025-09-24 10:28:33,424 INFO Connection check task end + +2025-09-24 10:28:34,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:36,424 INFO Connection check task start + +2025-09-24 10:28:36,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:36,424 INFO Out dated connection ,size=0 + +2025-09-24 10:28:36,424 INFO Connection check task end + +2025-09-24 10:28:37,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:39,424 INFO Connection check task start + +2025-09-24 10:28:39,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:39,424 INFO Out dated connection ,size=0 + +2025-09-24 10:28:39,424 INFO Connection check task end + +2025-09-24 10:28:40,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:42,426 INFO Connection check task start + +2025-09-24 10:28:42,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:42,426 INFO Out dated connection ,size=0 + +2025-09-24 10:28:42,426 INFO Connection check task end + +2025-09-24 10:28:43,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:45,427 INFO Connection check task start + +2025-09-24 10:28:45,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:45,427 INFO Out dated connection ,size=0 + +2025-09-24 10:28:45,427 INFO Connection check task end + +2025-09-24 10:28:46,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:48,430 INFO Connection check task start + +2025-09-24 10:28:48,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:48,430 INFO Out dated connection ,size=0 + +2025-09-24 10:28:48,430 INFO Connection check task end + +2025-09-24 10:28:49,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:51,430 INFO Connection check task start + +2025-09-24 10:28:51,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:51,430 INFO Out dated connection ,size=0 + +2025-09-24 10:28:51,430 INFO Connection check task end + +2025-09-24 10:28:52,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:54,430 INFO Connection check task start + +2025-09-24 10:28:54,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:54,431 INFO Out dated connection ,size=0 + +2025-09-24 10:28:54,431 INFO Connection check task end + +2025-09-24 10:28:55,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:28:57,432 INFO Connection check task start + +2025-09-24 10:28:57,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:28:57,433 INFO Out dated connection ,size=0 + +2025-09-24 10:28:57,433 INFO Connection check task end + +2025-09-24 10:28:58,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:00,433 INFO Connection check task start + +2025-09-24 10:29:00,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:00,433 INFO Out dated connection ,size=0 + +2025-09-24 10:29:00,433 INFO Connection check task end + +2025-09-24 10:29:01,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:03,433 INFO Connection check task start + +2025-09-24 10:29:03,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:03,433 INFO Out dated connection ,size=0 + +2025-09-24 10:29:03,433 INFO Connection check task end + +2025-09-24 10:29:04,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:06,434 INFO Connection check task start + +2025-09-24 10:29:06,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:06,434 INFO Out dated connection ,size=0 + +2025-09-24 10:29:06,434 INFO Connection check task end + +2025-09-24 10:29:07,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:09,436 INFO Connection check task start + +2025-09-24 10:29:09,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:09,436 INFO Out dated connection ,size=0 + +2025-09-24 10:29:09,436 INFO Connection check task end + +2025-09-24 10:29:10,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:12,438 INFO Connection check task start + +2025-09-24 10:29:12,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:12,439 INFO Out dated connection ,size=0 + +2025-09-24 10:29:12,439 INFO Connection check task end + +2025-09-24 10:29:13,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:15,439 INFO Connection check task start + +2025-09-24 10:29:15,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:15,439 INFO Out dated connection ,size=0 + +2025-09-24 10:29:15,439 INFO Connection check task end + +2025-09-24 10:29:16,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:18,440 INFO Connection check task start + +2025-09-24 10:29:18,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:18,446 INFO Out dated connection ,size=0 + +2025-09-24 10:29:18,446 INFO Connection check task end + +2025-09-24 10:29:19,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:21,447 INFO Connection check task start + +2025-09-24 10:29:21,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:21,447 INFO Out dated connection ,size=0 + +2025-09-24 10:29:21,447 INFO Connection check task end + +2025-09-24 10:29:22,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:24,449 INFO Connection check task start + +2025-09-24 10:29:24,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:24,449 INFO Out dated connection ,size=0 + +2025-09-24 10:29:24,449 INFO Connection check task end + +2025-09-24 10:29:25,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:27,451 INFO Connection check task start + +2025-09-24 10:29:27,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:27,452 INFO Out dated connection ,size=0 + +2025-09-24 10:29:27,452 INFO Connection check task end + +2025-09-24 10:29:28,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:30,454 INFO Connection check task start + +2025-09-24 10:29:30,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:30,454 INFO Out dated connection ,size=0 + +2025-09-24 10:29:30,454 INFO Connection check task end + +2025-09-24 10:29:31,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:33,456 INFO Connection check task start + +2025-09-24 10:29:33,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:33,456 INFO Out dated connection ,size=0 + +2025-09-24 10:29:33,456 INFO Connection check task end + +2025-09-24 10:29:34,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:36,456 INFO Connection check task start + +2025-09-24 10:29:36,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:36,457 INFO Out dated connection ,size=0 + +2025-09-24 10:29:36,457 INFO Connection check task end + +2025-09-24 10:29:37,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:39,458 INFO Connection check task start + +2025-09-24 10:29:39,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:39,458 INFO Out dated connection ,size=0 + +2025-09-24 10:29:39,458 INFO Connection check task end + +2025-09-24 10:29:40,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:42,459 INFO Connection check task start + +2025-09-24 10:29:42,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:42,459 INFO Out dated connection ,size=0 + +2025-09-24 10:29:42,459 INFO Connection check task end + +2025-09-24 10:29:43,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:45,461 INFO Connection check task start + +2025-09-24 10:29:45,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:45,461 INFO Out dated connection ,size=0 + +2025-09-24 10:29:45,461 INFO Connection check task end + +2025-09-24 10:29:46,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:48,463 INFO Connection check task start + +2025-09-24 10:29:48,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:48,463 INFO Out dated connection ,size=0 + +2025-09-24 10:29:48,463 INFO Connection check task end + +2025-09-24 10:29:49,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:51,463 INFO Connection check task start + +2025-09-24 10:29:51,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:51,463 INFO Out dated connection ,size=0 + +2025-09-24 10:29:51,463 INFO Connection check task end + +2025-09-24 10:29:52,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:54,465 INFO Connection check task start + +2025-09-24 10:29:54,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:54,465 INFO Out dated connection ,size=0 + +2025-09-24 10:29:54,465 INFO Connection check task end + +2025-09-24 10:29:55,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:29:57,466 INFO Connection check task start + +2025-09-24 10:29:57,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:29:57,466 INFO Out dated connection ,size=0 + +2025-09-24 10:29:57,466 INFO Connection check task end + +2025-09-24 10:29:58,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:00,468 INFO Connection check task start + +2025-09-24 10:30:00,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:00,468 INFO Out dated connection ,size=0 + +2025-09-24 10:30:00,468 INFO Connection check task end + +2025-09-24 10:30:01,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:03,470 INFO Connection check task start + +2025-09-24 10:30:03,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:03,470 INFO Out dated connection ,size=0 + +2025-09-24 10:30:03,470 INFO Connection check task end + +2025-09-24 10:30:04,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:06,471 INFO Connection check task start + +2025-09-24 10:30:06,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:06,471 INFO Out dated connection ,size=0 + +2025-09-24 10:30:06,471 INFO Connection check task end + +2025-09-24 10:30:07,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:09,471 INFO Connection check task start + +2025-09-24 10:30:09,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:09,471 INFO Out dated connection ,size=0 + +2025-09-24 10:30:09,472 INFO Connection check task end + +2025-09-24 10:30:10,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:12,472 INFO Connection check task start + +2025-09-24 10:30:12,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:12,473 INFO Out dated connection ,size=0 + +2025-09-24 10:30:12,473 INFO Connection check task end + +2025-09-24 10:30:13,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:15,473 INFO Connection check task start + +2025-09-24 10:30:15,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:15,473 INFO Out dated connection ,size=0 + +2025-09-24 10:30:15,473 INFO Connection check task end + +2025-09-24 10:30:16,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:18,474 INFO Connection check task start + +2025-09-24 10:30:18,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:18,474 INFO Out dated connection ,size=0 + +2025-09-24 10:30:18,474 INFO Connection check task end + +2025-09-24 10:30:19,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:21,477 INFO Connection check task start + +2025-09-24 10:30:21,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:21,477 INFO Out dated connection ,size=0 + +2025-09-24 10:30:21,477 INFO Connection check task end + +2025-09-24 10:30:22,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:24,477 INFO Connection check task start + +2025-09-24 10:30:24,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:24,477 INFO Out dated connection ,size=0 + +2025-09-24 10:30:24,477 INFO Connection check task end + +2025-09-24 10:30:25,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:27,477 INFO Connection check task start + +2025-09-24 10:30:27,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:27,478 INFO Out dated connection ,size=0 + +2025-09-24 10:30:27,478 INFO Connection check task end + +2025-09-24 10:30:28,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:30,478 INFO Connection check task start + +2025-09-24 10:30:30,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:30,478 INFO Out dated connection ,size=0 + +2025-09-24 10:30:30,478 INFO Connection check task end + +2025-09-24 10:30:31,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:33,480 INFO Connection check task start + +2025-09-24 10:30:33,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:33,480 INFO Out dated connection ,size=0 + +2025-09-24 10:30:33,480 INFO Connection check task end + +2025-09-24 10:30:34,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:36,480 INFO Connection check task start + +2025-09-24 10:30:36,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:36,481 INFO Out dated connection ,size=0 + +2025-09-24 10:30:36,481 INFO Connection check task end + +2025-09-24 10:30:37,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:39,481 INFO Connection check task start + +2025-09-24 10:30:39,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:39,481 INFO Out dated connection ,size=0 + +2025-09-24 10:30:39,481 INFO Connection check task end + +2025-09-24 10:30:40,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:42,483 INFO Connection check task start + +2025-09-24 10:30:42,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:42,483 INFO Out dated connection ,size=0 + +2025-09-24 10:30:42,484 INFO Connection check task end + +2025-09-24 10:30:43,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:45,485 INFO Connection check task start + +2025-09-24 10:30:45,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:45,485 INFO Out dated connection ,size=0 + +2025-09-24 10:30:45,486 INFO Connection check task end + +2025-09-24 10:30:46,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:48,486 INFO Connection check task start + +2025-09-24 10:30:48,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:48,496 INFO Out dated connection ,size=0 + +2025-09-24 10:30:48,497 INFO Connection check task end + +2025-09-24 10:30:49,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:51,497 INFO Connection check task start + +2025-09-24 10:30:51,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:51,498 INFO Out dated connection ,size=0 + +2025-09-24 10:30:51,498 INFO Connection check task end + +2025-09-24 10:30:52,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:54,498 INFO Connection check task start + +2025-09-24 10:30:54,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:54,498 INFO Out dated connection ,size=0 + +2025-09-24 10:30:54,498 INFO Connection check task end + +2025-09-24 10:30:55,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:30:57,500 INFO Connection check task start + +2025-09-24 10:30:57,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:30:57,500 INFO Out dated connection ,size=0 + +2025-09-24 10:30:57,500 INFO Connection check task end + +2025-09-24 10:30:58,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:00,502 INFO Connection check task start + +2025-09-24 10:31:00,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:00,503 INFO Out dated connection ,size=0 + +2025-09-24 10:31:00,503 INFO Connection check task end + +2025-09-24 10:31:01,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:03,503 INFO Connection check task start + +2025-09-24 10:31:03,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:03,503 INFO Out dated connection ,size=0 + +2025-09-24 10:31:03,503 INFO Connection check task end + +2025-09-24 10:31:04,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:06,503 INFO Connection check task start + +2025-09-24 10:31:06,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:06,503 INFO Out dated connection ,size=0 + +2025-09-24 10:31:06,503 INFO Connection check task end + +2025-09-24 10:31:07,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:09,504 INFO Connection check task start + +2025-09-24 10:31:09,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:09,504 INFO Out dated connection ,size=0 + +2025-09-24 10:31:09,504 INFO Connection check task end + +2025-09-24 10:31:10,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:12,504 INFO Connection check task start + +2025-09-24 10:31:12,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:12,505 INFO Out dated connection ,size=0 + +2025-09-24 10:31:12,505 INFO Connection check task end + +2025-09-24 10:31:13,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:15,505 INFO Connection check task start + +2025-09-24 10:31:15,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:15,505 INFO Out dated connection ,size=0 + +2025-09-24 10:31:15,505 INFO Connection check task end + +2025-09-24 10:31:16,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:18,507 INFO Connection check task start + +2025-09-24 10:31:18,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:18,507 INFO Out dated connection ,size=0 + +2025-09-24 10:31:18,507 INFO Connection check task end + +2025-09-24 10:31:19,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:21,508 INFO Connection check task start + +2025-09-24 10:31:21,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:21,508 INFO Out dated connection ,size=0 + +2025-09-24 10:31:21,508 INFO Connection check task end + +2025-09-24 10:31:22,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:24,510 INFO Connection check task start + +2025-09-24 10:31:24,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:24,510 INFO Out dated connection ,size=0 + +2025-09-24 10:31:24,510 INFO Connection check task end + +2025-09-24 10:31:25,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:27,510 INFO Connection check task start + +2025-09-24 10:31:27,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:27,510 INFO Out dated connection ,size=0 + +2025-09-24 10:31:27,510 INFO Connection check task end + +2025-09-24 10:31:28,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:30,511 INFO Connection check task start + +2025-09-24 10:31:30,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:30,511 INFO Out dated connection ,size=0 + +2025-09-24 10:31:30,511 INFO Connection check task end + +2025-09-24 10:31:31,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:33,511 INFO Connection check task start + +2025-09-24 10:31:33,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:33,511 INFO Out dated connection ,size=0 + +2025-09-24 10:31:33,511 INFO Connection check task end + +2025-09-24 10:31:34,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:36,513 INFO Connection check task start + +2025-09-24 10:31:36,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:36,514 INFO Out dated connection ,size=0 + +2025-09-24 10:31:36,514 INFO Connection check task end + +2025-09-24 10:31:37,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:39,514 INFO Connection check task start + +2025-09-24 10:31:39,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:39,514 INFO Out dated connection ,size=0 + +2025-09-24 10:31:39,514 INFO Connection check task end + +2025-09-24 10:31:40,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:42,514 INFO Connection check task start + +2025-09-24 10:31:42,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:42,514 INFO Out dated connection ,size=0 + +2025-09-24 10:31:42,514 INFO Connection check task end + +2025-09-24 10:31:43,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:45,514 INFO Connection check task start + +2025-09-24 10:31:45,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:45,515 INFO Out dated connection ,size=0 + +2025-09-24 10:31:45,515 INFO Connection check task end + +2025-09-24 10:31:46,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:48,515 INFO Connection check task start + +2025-09-24 10:31:48,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:48,515 INFO Out dated connection ,size=0 + +2025-09-24 10:31:48,515 INFO Connection check task end + +2025-09-24 10:31:49,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:51,516 INFO Connection check task start + +2025-09-24 10:31:51,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:51,522 INFO Out dated connection ,size=0 + +2025-09-24 10:31:51,522 INFO Connection check task end + +2025-09-24 10:31:52,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:54,522 INFO Connection check task start + +2025-09-24 10:31:54,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:54,522 INFO Out dated connection ,size=0 + +2025-09-24 10:31:54,522 INFO Connection check task end + +2025-09-24 10:31:55,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:31:57,522 INFO Connection check task start + +2025-09-24 10:31:57,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:31:57,523 INFO Out dated connection ,size=0 + +2025-09-24 10:31:57,523 INFO Connection check task end + +2025-09-24 10:31:58,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:00,525 INFO Connection check task start + +2025-09-24 10:32:00,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:00,525 INFO Out dated connection ,size=0 + +2025-09-24 10:32:00,525 INFO Connection check task end + +2025-09-24 10:32:01,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:03,526 INFO Connection check task start + +2025-09-24 10:32:03,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:03,527 INFO Out dated connection ,size=0 + +2025-09-24 10:32:03,527 INFO Connection check task end + +2025-09-24 10:32:04,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:06,527 INFO Connection check task start + +2025-09-24 10:32:06,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:06,528 INFO Out dated connection ,size=0 + +2025-09-24 10:32:06,528 INFO Connection check task end + +2025-09-24 10:32:07,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:09,528 INFO Connection check task start + +2025-09-24 10:32:09,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:09,528 INFO Out dated connection ,size=0 + +2025-09-24 10:32:09,528 INFO Connection check task end + +2025-09-24 10:32:10,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:12,529 INFO Connection check task start + +2025-09-24 10:32:12,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:12,529 INFO Out dated connection ,size=0 + +2025-09-24 10:32:12,529 INFO Connection check task end + +2025-09-24 10:32:13,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:15,529 INFO Connection check task start + +2025-09-24 10:32:15,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:15,529 INFO Out dated connection ,size=0 + +2025-09-24 10:32:15,529 INFO Connection check task end + +2025-09-24 10:32:16,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:18,530 INFO Connection check task start + +2025-09-24 10:32:18,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:18,530 INFO Out dated connection ,size=0 + +2025-09-24 10:32:18,530 INFO Connection check task end + +2025-09-24 10:32:19,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:21,530 INFO Connection check task start + +2025-09-24 10:32:21,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:21,530 INFO Out dated connection ,size=0 + +2025-09-24 10:32:21,530 INFO Connection check task end + +2025-09-24 10:32:22,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:24,531 INFO Connection check task start + +2025-09-24 10:32:24,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:24,531 INFO Out dated connection ,size=0 + +2025-09-24 10:32:24,531 INFO Connection check task end + +2025-09-24 10:32:25,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:27,531 INFO Connection check task start + +2025-09-24 10:32:27,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:27,532 INFO Out dated connection ,size=0 + +2025-09-24 10:32:27,532 INFO Connection check task end + +2025-09-24 10:32:28,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:30,532 INFO Connection check task start + +2025-09-24 10:32:30,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:30,532 INFO Out dated connection ,size=0 + +2025-09-24 10:32:30,532 INFO Connection check task end + +2025-09-24 10:32:32,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:33,532 INFO Connection check task start + +2025-09-24 10:32:33,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:33,532 INFO Out dated connection ,size=0 + +2025-09-24 10:32:33,532 INFO Connection check task end + +2025-09-24 10:32:35,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:36,533 INFO Connection check task start + +2025-09-24 10:32:36,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:36,533 INFO Out dated connection ,size=0 + +2025-09-24 10:32:36,533 INFO Connection check task end + +2025-09-24 10:32:38,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:39,534 INFO Connection check task start + +2025-09-24 10:32:39,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:39,534 INFO Out dated connection ,size=0 + +2025-09-24 10:32:39,534 INFO Connection check task end + +2025-09-24 10:32:41,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:42,534 INFO Connection check task start + +2025-09-24 10:32:42,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:42,534 INFO Out dated connection ,size=0 + +2025-09-24 10:32:42,534 INFO Connection check task end + +2025-09-24 10:32:44,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:45,534 INFO Connection check task start + +2025-09-24 10:32:45,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:45,534 INFO Out dated connection ,size=0 + +2025-09-24 10:32:45,534 INFO Connection check task end + +2025-09-24 10:32:47,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:48,535 INFO Connection check task start + +2025-09-24 10:32:48,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:48,535 INFO Out dated connection ,size=0 + +2025-09-24 10:32:48,535 INFO Connection check task end + +2025-09-24 10:32:50,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:51,535 INFO Connection check task start + +2025-09-24 10:32:51,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:51,535 INFO Out dated connection ,size=0 + +2025-09-24 10:32:51,535 INFO Connection check task end + +2025-09-24 10:32:53,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:54,536 INFO Connection check task start + +2025-09-24 10:32:54,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:54,536 INFO Out dated connection ,size=0 + +2025-09-24 10:32:54,536 INFO Connection check task end + +2025-09-24 10:32:56,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:32:57,536 INFO Connection check task start + +2025-09-24 10:32:57,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:32:57,537 INFO Out dated connection ,size=0 + +2025-09-24 10:32:57,537 INFO Connection check task end + +2025-09-24 10:32:59,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:00,537 INFO Connection check task start + +2025-09-24 10:33:00,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:00,537 INFO Out dated connection ,size=0 + +2025-09-24 10:33:00,537 INFO Connection check task end + +2025-09-24 10:33:02,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:03,537 INFO Connection check task start + +2025-09-24 10:33:03,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:03,537 INFO Out dated connection ,size=0 + +2025-09-24 10:33:03,537 INFO Connection check task end + +2025-09-24 10:33:05,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:06,538 INFO Connection check task start + +2025-09-24 10:33:06,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:06,538 INFO Out dated connection ,size=0 + +2025-09-24 10:33:06,538 INFO Connection check task end + +2025-09-24 10:33:08,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:09,538 INFO Connection check task start + +2025-09-24 10:33:09,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:09,538 INFO Out dated connection ,size=0 + +2025-09-24 10:33:09,538 INFO Connection check task end + +2025-09-24 10:33:11,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:12,538 INFO Connection check task start + +2025-09-24 10:33:12,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:12,539 INFO Out dated connection ,size=0 + +2025-09-24 10:33:12,539 INFO Connection check task end + +2025-09-24 10:33:14,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:15,539 INFO Connection check task start + +2025-09-24 10:33:15,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:15,539 INFO Out dated connection ,size=0 + +2025-09-24 10:33:15,539 INFO Connection check task end + +2025-09-24 10:33:17,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:18,540 INFO Connection check task start + +2025-09-24 10:33:18,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:18,560 INFO Out dated connection ,size=0 + +2025-09-24 10:33:18,560 INFO Connection check task end + +2025-09-24 10:33:20,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:21,582 INFO Connection check task start + +2025-09-24 10:33:21,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:21,582 INFO Out dated connection ,size=0 + +2025-09-24 10:33:21,582 INFO Connection check task end + +2025-09-24 10:33:23,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:24,584 INFO Connection check task start + +2025-09-24 10:33:24,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:24,584 INFO Out dated connection ,size=0 + +2025-09-24 10:33:24,584 INFO Connection check task end + +2025-09-24 10:33:26,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:27,584 INFO Connection check task start + +2025-09-24 10:33:27,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:27,585 INFO Out dated connection ,size=0 + +2025-09-24 10:33:27,585 INFO Connection check task end + +2025-09-24 10:33:29,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:30,585 INFO Connection check task start + +2025-09-24 10:33:30,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:30,585 INFO Out dated connection ,size=0 + +2025-09-24 10:33:30,585 INFO Connection check task end + +2025-09-24 10:33:32,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:33,586 INFO Connection check task start + +2025-09-24 10:33:33,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:33,586 INFO Out dated connection ,size=0 + +2025-09-24 10:33:33,586 INFO Connection check task end + +2025-09-24 10:33:35,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:36,588 INFO Connection check task start + +2025-09-24 10:33:36,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:36,588 INFO Out dated connection ,size=0 + +2025-09-24 10:33:36,588 INFO Connection check task end + +2025-09-24 10:33:38,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:39,588 INFO Connection check task start + +2025-09-24 10:33:39,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:39,588 INFO Out dated connection ,size=0 + +2025-09-24 10:33:39,588 INFO Connection check task end + +2025-09-24 10:33:41,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:42,589 INFO Connection check task start + +2025-09-24 10:33:42,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:42,589 INFO Out dated connection ,size=0 + +2025-09-24 10:33:42,589 INFO Connection check task end + +2025-09-24 10:33:44,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:45,590 INFO Connection check task start + +2025-09-24 10:33:45,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:45,590 INFO Out dated connection ,size=0 + +2025-09-24 10:33:45,590 INFO Connection check task end + +2025-09-24 10:33:47,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:48,590 INFO Connection check task start + +2025-09-24 10:33:48,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:48,590 INFO Out dated connection ,size=0 + +2025-09-24 10:33:48,590 INFO Connection check task end + +2025-09-24 10:33:50,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:51,592 INFO Connection check task start + +2025-09-24 10:33:51,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:51,592 INFO Out dated connection ,size=0 + +2025-09-24 10:33:51,592 INFO Connection check task end + +2025-09-24 10:33:53,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:54,594 INFO Connection check task start + +2025-09-24 10:33:54,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:54,594 INFO Out dated connection ,size=0 + +2025-09-24 10:33:54,594 INFO Connection check task end + +2025-09-24 10:33:56,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:33:57,596 INFO Connection check task start + +2025-09-24 10:33:57,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:33:57,597 INFO Out dated connection ,size=0 + +2025-09-24 10:33:57,597 INFO Connection check task end + +2025-09-24 10:33:59,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:00,598 INFO Connection check task start + +2025-09-24 10:34:00,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:00,598 INFO Out dated connection ,size=0 + +2025-09-24 10:34:00,598 INFO Connection check task end + +2025-09-24 10:34:02,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:03,599 INFO Connection check task start + +2025-09-24 10:34:03,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:03,599 INFO Out dated connection ,size=0 + +2025-09-24 10:34:03,599 INFO Connection check task end + +2025-09-24 10:34:05,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:06,601 INFO Connection check task start + +2025-09-24 10:34:06,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:06,601 INFO Out dated connection ,size=0 + +2025-09-24 10:34:06,601 INFO Connection check task end + +2025-09-24 10:34:08,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:09,603 INFO Connection check task start + +2025-09-24 10:34:09,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:09,603 INFO Out dated connection ,size=0 + +2025-09-24 10:34:09,603 INFO Connection check task end + +2025-09-24 10:34:11,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:12,604 INFO Connection check task start + +2025-09-24 10:34:12,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:12,604 INFO Out dated connection ,size=0 + +2025-09-24 10:34:12,604 INFO Connection check task end + +2025-09-24 10:34:14,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:15,604 INFO Connection check task start + +2025-09-24 10:34:15,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:15,604 INFO Out dated connection ,size=0 + +2025-09-24 10:34:15,604 INFO Connection check task end + +2025-09-24 10:34:17,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:18,605 INFO Connection check task start + +2025-09-24 10:34:18,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:18,605 INFO Out dated connection ,size=0 + +2025-09-24 10:34:18,605 INFO Connection check task end + +2025-09-24 10:34:20,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:21,605 INFO Connection check task start + +2025-09-24 10:34:21,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:21,605 INFO Out dated connection ,size=0 + +2025-09-24 10:34:21,605 INFO Connection check task end + +2025-09-24 10:34:23,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:24,606 INFO Connection check task start + +2025-09-24 10:34:24,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:24,606 INFO Out dated connection ,size=0 + +2025-09-24 10:34:24,606 INFO Connection check task end + +2025-09-24 10:34:26,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:27,607 INFO Connection check task start + +2025-09-24 10:34:27,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:27,607 INFO Out dated connection ,size=0 + +2025-09-24 10:34:27,607 INFO Connection check task end + +2025-09-24 10:34:29,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:30,609 INFO Connection check task start + +2025-09-24 10:34:30,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:30,610 INFO Out dated connection ,size=0 + +2025-09-24 10:34:30,610 INFO Connection check task end + +2025-09-24 10:34:32,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:33,610 INFO Connection check task start + +2025-09-24 10:34:33,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:33,610 INFO Out dated connection ,size=0 + +2025-09-24 10:34:33,610 INFO Connection check task end + +2025-09-24 10:34:35,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:36,612 INFO Connection check task start + +2025-09-24 10:34:36,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:36,612 INFO Out dated connection ,size=0 + +2025-09-24 10:34:36,612 INFO Connection check task end + +2025-09-24 10:34:38,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:39,613 INFO Connection check task start + +2025-09-24 10:34:39,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:39,613 INFO Out dated connection ,size=0 + +2025-09-24 10:34:39,613 INFO Connection check task end + +2025-09-24 10:34:41,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:42,614 INFO Connection check task start + +2025-09-24 10:34:42,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:42,614 INFO Out dated connection ,size=0 + +2025-09-24 10:34:42,614 INFO Connection check task end + +2025-09-24 10:34:44,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:45,615 INFO Connection check task start + +2025-09-24 10:34:45,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:45,615 INFO Out dated connection ,size=0 + +2025-09-24 10:34:45,615 INFO Connection check task end + +2025-09-24 10:34:47,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:48,616 INFO Connection check task start + +2025-09-24 10:34:48,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:48,616 INFO Out dated connection ,size=0 + +2025-09-24 10:34:48,616 INFO Connection check task end + +2025-09-24 10:34:50,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:51,617 INFO Connection check task start + +2025-09-24 10:34:51,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:51,617 INFO Out dated connection ,size=0 + +2025-09-24 10:34:51,617 INFO Connection check task end + +2025-09-24 10:34:53,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:54,619 INFO Connection check task start + +2025-09-24 10:34:54,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:54,620 INFO Out dated connection ,size=0 + +2025-09-24 10:34:54,620 INFO Connection check task end + +2025-09-24 10:34:56,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:34:57,620 INFO Connection check task start + +2025-09-24 10:34:57,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:34:57,620 INFO Out dated connection ,size=0 + +2025-09-24 10:34:57,620 INFO Connection check task end + +2025-09-24 10:34:59,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:00,624 INFO Connection check task start + +2025-09-24 10:35:00,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:00,625 INFO Out dated connection ,size=0 + +2025-09-24 10:35:00,625 INFO Connection check task end + +2025-09-24 10:35:02,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:03,627 INFO Connection check task start + +2025-09-24 10:35:03,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:03,627 INFO Out dated connection ,size=0 + +2025-09-24 10:35:03,627 INFO Connection check task end + +2025-09-24 10:35:05,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:06,627 INFO Connection check task start + +2025-09-24 10:35:06,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:06,628 INFO Out dated connection ,size=0 + +2025-09-24 10:35:06,628 INFO Connection check task end + +2025-09-24 10:35:08,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:09,629 INFO Connection check task start + +2025-09-24 10:35:09,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:09,629 INFO Out dated connection ,size=0 + +2025-09-24 10:35:09,629 INFO Connection check task end + +2025-09-24 10:35:11,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:12,629 INFO Connection check task start + +2025-09-24 10:35:12,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:12,629 INFO Out dated connection ,size=0 + +2025-09-24 10:35:12,629 INFO Connection check task end + +2025-09-24 10:35:14,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:15,630 INFO Connection check task start + +2025-09-24 10:35:15,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:15,630 INFO Out dated connection ,size=0 + +2025-09-24 10:35:15,630 INFO Connection check task end + +2025-09-24 10:35:17,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:18,630 INFO Connection check task start + +2025-09-24 10:35:18,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:18,631 INFO Out dated connection ,size=0 + +2025-09-24 10:35:18,631 INFO Connection check task end + +2025-09-24 10:35:20,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:21,631 INFO Connection check task start + +2025-09-24 10:35:21,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:21,631 INFO Out dated connection ,size=0 + +2025-09-24 10:35:21,631 INFO Connection check task end + +2025-09-24 10:35:23,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:24,632 INFO Connection check task start + +2025-09-24 10:35:24,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:24,633 INFO Out dated connection ,size=0 + +2025-09-24 10:35:24,633 INFO Connection check task end + +2025-09-24 10:35:26,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:27,635 INFO Connection check task start + +2025-09-24 10:35:27,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:27,635 INFO Out dated connection ,size=0 + +2025-09-24 10:35:27,635 INFO Connection check task end + +2025-09-24 10:35:29,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:30,636 INFO Connection check task start + +2025-09-24 10:35:30,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:30,636 INFO Out dated connection ,size=0 + +2025-09-24 10:35:30,636 INFO Connection check task end + +2025-09-24 10:35:32,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:33,637 INFO Connection check task start + +2025-09-24 10:35:33,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:33,637 INFO Out dated connection ,size=0 + +2025-09-24 10:35:33,637 INFO Connection check task end + +2025-09-24 10:35:35,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:36,638 INFO Connection check task start + +2025-09-24 10:35:36,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:36,659 INFO Out dated connection ,size=0 + +2025-09-24 10:35:36,659 INFO Connection check task end + +2025-09-24 10:35:38,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:39,659 INFO Connection check task start + +2025-09-24 10:35:39,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:39,659 INFO Out dated connection ,size=0 + +2025-09-24 10:35:39,659 INFO Connection check task end + +2025-09-24 10:35:41,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:42,660 INFO Connection check task start + +2025-09-24 10:35:42,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:42,660 INFO Out dated connection ,size=0 + +2025-09-24 10:35:42,660 INFO Connection check task end + +2025-09-24 10:35:44,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:45,663 INFO Connection check task start + +2025-09-24 10:35:45,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:45,664 INFO Out dated connection ,size=0 + +2025-09-24 10:35:45,664 INFO Connection check task end + +2025-09-24 10:35:47,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:48,664 INFO Connection check task start + +2025-09-24 10:35:48,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:48,664 INFO Out dated connection ,size=0 + +2025-09-24 10:35:48,664 INFO Connection check task end + +2025-09-24 10:35:50,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:51,665 INFO Connection check task start + +2025-09-24 10:35:51,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:51,665 INFO Out dated connection ,size=0 + +2025-09-24 10:35:51,665 INFO Connection check task end + +2025-09-24 10:35:53,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:54,665 INFO Connection check task start + +2025-09-24 10:35:54,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:54,666 INFO Out dated connection ,size=0 + +2025-09-24 10:35:54,666 INFO Connection check task end + +2025-09-24 10:35:56,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:35:57,666 INFO Connection check task start + +2025-09-24 10:35:57,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:35:57,666 INFO Out dated connection ,size=0 + +2025-09-24 10:35:57,666 INFO Connection check task end + +2025-09-24 10:35:59,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:00,668 INFO Connection check task start + +2025-09-24 10:36:00,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:00,668 INFO Out dated connection ,size=0 + +2025-09-24 10:36:00,668 INFO Connection check task end + +2025-09-24 10:36:02,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:03,669 INFO Connection check task start + +2025-09-24 10:36:03,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:03,669 INFO Out dated connection ,size=0 + +2025-09-24 10:36:03,669 INFO Connection check task end + +2025-09-24 10:36:05,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:06,669 INFO Connection check task start + +2025-09-24 10:36:06,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:06,669 INFO Out dated connection ,size=0 + +2025-09-24 10:36:06,669 INFO Connection check task end + +2025-09-24 10:36:08,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:09,670 INFO Connection check task start + +2025-09-24 10:36:09,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:09,670 INFO Out dated connection ,size=0 + +2025-09-24 10:36:09,670 INFO Connection check task end + +2025-09-24 10:36:11,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:12,670 INFO Connection check task start + +2025-09-24 10:36:12,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:12,670 INFO Out dated connection ,size=0 + +2025-09-24 10:36:12,670 INFO Connection check task end + +2025-09-24 10:36:14,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:15,670 INFO Connection check task start + +2025-09-24 10:36:15,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:15,670 INFO Out dated connection ,size=0 + +2025-09-24 10:36:15,670 INFO Connection check task end + +2025-09-24 10:36:17,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:18,671 INFO Connection check task start + +2025-09-24 10:36:18,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:18,671 INFO Out dated connection ,size=0 + +2025-09-24 10:36:18,671 INFO Connection check task end + +2025-09-24 10:36:20,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:21,671 INFO Connection check task start + +2025-09-24 10:36:21,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:21,672 INFO Out dated connection ,size=0 + +2025-09-24 10:36:21,672 INFO Connection check task end + +2025-09-24 10:36:23,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:24,674 INFO Connection check task start + +2025-09-24 10:36:24,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:24,674 INFO Out dated connection ,size=0 + +2025-09-24 10:36:24,674 INFO Connection check task end + +2025-09-24 10:36:26,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:27,675 INFO Connection check task start + +2025-09-24 10:36:27,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:27,675 INFO Out dated connection ,size=0 + +2025-09-24 10:36:27,675 INFO Connection check task end + +2025-09-24 10:36:29,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:30,676 INFO Connection check task start + +2025-09-24 10:36:30,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:30,676 INFO Out dated connection ,size=0 + +2025-09-24 10:36:30,676 INFO Connection check task end + +2025-09-24 10:36:32,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:33,676 INFO Connection check task start + +2025-09-24 10:36:33,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:33,677 INFO Out dated connection ,size=0 + +2025-09-24 10:36:33,677 INFO Connection check task end + +2025-09-24 10:36:35,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:36,677 INFO Connection check task start + +2025-09-24 10:36:36,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:36,677 INFO Out dated connection ,size=0 + +2025-09-24 10:36:36,677 INFO Connection check task end + +2025-09-24 10:36:38,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:39,677 INFO Connection check task start + +2025-09-24 10:36:39,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:39,678 INFO Out dated connection ,size=0 + +2025-09-24 10:36:39,678 INFO Connection check task end + +2025-09-24 10:36:41,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:42,678 INFO Connection check task start + +2025-09-24 10:36:42,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:42,678 INFO Out dated connection ,size=0 + +2025-09-24 10:36:42,678 INFO Connection check task end + +2025-09-24 10:36:44,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:45,678 INFO Connection check task start + +2025-09-24 10:36:45,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:45,679 INFO Out dated connection ,size=0 + +2025-09-24 10:36:45,679 INFO Connection check task end + +2025-09-24 10:36:47,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:48,679 INFO Connection check task start + +2025-09-24 10:36:48,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:48,679 INFO Out dated connection ,size=0 + +2025-09-24 10:36:48,679 INFO Connection check task end + +2025-09-24 10:36:50,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:51,680 INFO Connection check task start + +2025-09-24 10:36:51,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:51,680 INFO Out dated connection ,size=0 + +2025-09-24 10:36:51,680 INFO Connection check task end + +2025-09-24 10:36:53,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:54,682 INFO Connection check task start + +2025-09-24 10:36:54,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:54,682 INFO Out dated connection ,size=0 + +2025-09-24 10:36:54,682 INFO Connection check task end + +2025-09-24 10:36:56,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:36:57,684 INFO Connection check task start + +2025-09-24 10:36:57,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:36:57,684 INFO Out dated connection ,size=0 + +2025-09-24 10:36:57,684 INFO Connection check task end + +2025-09-24 10:36:59,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:00,686 INFO Connection check task start + +2025-09-24 10:37:00,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:00,686 INFO Out dated connection ,size=0 + +2025-09-24 10:37:00,686 INFO Connection check task end + +2025-09-24 10:37:02,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:03,688 INFO Connection check task start + +2025-09-24 10:37:03,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:03,689 INFO Out dated connection ,size=0 + +2025-09-24 10:37:03,689 INFO Connection check task end + +2025-09-24 10:37:05,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:06,689 INFO Connection check task start + +2025-09-24 10:37:06,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:06,689 INFO Out dated connection ,size=0 + +2025-09-24 10:37:06,689 INFO Connection check task end + +2025-09-24 10:37:08,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:09,689 INFO Connection check task start + +2025-09-24 10:37:09,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:09,689 INFO Out dated connection ,size=0 + +2025-09-24 10:37:09,689 INFO Connection check task end + +2025-09-24 10:37:11,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:12,690 INFO Connection check task start + +2025-09-24 10:37:12,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:12,690 INFO Out dated connection ,size=0 + +2025-09-24 10:37:12,690 INFO Connection check task end + +2025-09-24 10:37:14,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:15,692 INFO Connection check task start + +2025-09-24 10:37:15,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:15,692 INFO Out dated connection ,size=0 + +2025-09-24 10:37:15,692 INFO Connection check task end + +2025-09-24 10:37:17,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:18,695 INFO Connection check task start + +2025-09-24 10:37:18,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:18,695 INFO Out dated connection ,size=0 + +2025-09-24 10:37:18,695 INFO Connection check task end + +2025-09-24 10:37:20,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:21,696 INFO Connection check task start + +2025-09-24 10:37:21,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:21,697 INFO Out dated connection ,size=0 + +2025-09-24 10:37:21,697 INFO Connection check task end + +2025-09-24 10:37:23,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:24,697 INFO Connection check task start + +2025-09-24 10:37:24,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:24,697 INFO Out dated connection ,size=0 + +2025-09-24 10:37:24,697 INFO Connection check task end + +2025-09-24 10:37:26,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:27,698 INFO Connection check task start + +2025-09-24 10:37:27,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:27,698 INFO Out dated connection ,size=0 + +2025-09-24 10:37:27,698 INFO Connection check task end + +2025-09-24 10:37:29,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:30,698 INFO Connection check task start + +2025-09-24 10:37:30,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:30,698 INFO Out dated connection ,size=0 + +2025-09-24 10:37:30,698 INFO Connection check task end + +2025-09-24 10:37:32,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:33,699 INFO Connection check task start + +2025-09-24 10:37:33,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:33,699 INFO Out dated connection ,size=0 + +2025-09-24 10:37:33,699 INFO Connection check task end + +2025-09-24 10:37:35,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:36,699 INFO Connection check task start + +2025-09-24 10:37:36,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:36,700 INFO Out dated connection ,size=0 + +2025-09-24 10:37:36,700 INFO Connection check task end + +2025-09-24 10:37:38,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:39,702 INFO Connection check task start + +2025-09-24 10:37:39,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:39,702 INFO Out dated connection ,size=0 + +2025-09-24 10:37:39,702 INFO Connection check task end + +2025-09-24 10:37:41,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:42,703 INFO Connection check task start + +2025-09-24 10:37:42,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:42,704 INFO Out dated connection ,size=0 + +2025-09-24 10:37:42,704 INFO Connection check task end + +2025-09-24 10:37:44,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:45,705 INFO Connection check task start + +2025-09-24 10:37:45,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:45,705 INFO Out dated connection ,size=0 + +2025-09-24 10:37:45,705 INFO Connection check task end + +2025-09-24 10:37:47,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:48,706 INFO Connection check task start + +2025-09-24 10:37:48,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:48,706 INFO Out dated connection ,size=0 + +2025-09-24 10:37:48,706 INFO Connection check task end + +2025-09-24 10:37:50,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:51,706 INFO Connection check task start + +2025-09-24 10:37:51,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:51,706 INFO Out dated connection ,size=0 + +2025-09-24 10:37:51,706 INFO Connection check task end + +2025-09-24 10:37:53,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:54,708 INFO Connection check task start + +2025-09-24 10:37:54,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:54,709 INFO Out dated connection ,size=0 + +2025-09-24 10:37:54,709 INFO Connection check task end + +2025-09-24 10:37:56,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:37:57,709 INFO Connection check task start + +2025-09-24 10:37:57,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:37:57,709 INFO Out dated connection ,size=0 + +2025-09-24 10:37:57,709 INFO Connection check task end + +2025-09-24 10:37:59,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:00,712 INFO Connection check task start + +2025-09-24 10:38:00,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:00,712 INFO Out dated connection ,size=0 + +2025-09-24 10:38:00,712 INFO Connection check task end + +2025-09-24 10:38:02,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:03,712 INFO Connection check task start + +2025-09-24 10:38:03,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:03,712 INFO Out dated connection ,size=0 + +2025-09-24 10:38:03,712 INFO Connection check task end + +2025-09-24 10:38:05,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:06,715 INFO Connection check task start + +2025-09-24 10:38:06,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:06,715 INFO Out dated connection ,size=0 + +2025-09-24 10:38:06,715 INFO Connection check task end + +2025-09-24 10:38:08,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:09,715 INFO Connection check task start + +2025-09-24 10:38:09,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:09,715 INFO Out dated connection ,size=0 + +2025-09-24 10:38:09,715 INFO Connection check task end + +2025-09-24 10:38:11,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:12,716 INFO Connection check task start + +2025-09-24 10:38:12,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:12,716 INFO Out dated connection ,size=0 + +2025-09-24 10:38:12,716 INFO Connection check task end + +2025-09-24 10:38:14,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:15,716 INFO Connection check task start + +2025-09-24 10:38:15,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:15,717 INFO Out dated connection ,size=0 + +2025-09-24 10:38:15,717 INFO Connection check task end + +2025-09-24 10:38:17,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:18,717 INFO Connection check task start + +2025-09-24 10:38:18,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:18,717 INFO Out dated connection ,size=0 + +2025-09-24 10:38:18,717 INFO Connection check task end + +2025-09-24 10:38:20,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:21,717 INFO Connection check task start + +2025-09-24 10:38:21,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:21,718 INFO Out dated connection ,size=0 + +2025-09-24 10:38:21,718 INFO Connection check task end + +2025-09-24 10:38:23,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:24,719 INFO Connection check task start + +2025-09-24 10:38:24,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:24,720 INFO Out dated connection ,size=0 + +2025-09-24 10:38:24,720 INFO Connection check task end + +2025-09-24 10:38:26,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:27,720 INFO Connection check task start + +2025-09-24 10:38:27,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:27,721 INFO Out dated connection ,size=0 + +2025-09-24 10:38:27,721 INFO Connection check task end + +2025-09-24 10:38:29,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:30,722 INFO Connection check task start + +2025-09-24 10:38:30,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:30,723 INFO Out dated connection ,size=0 + +2025-09-24 10:38:30,723 INFO Connection check task end + +2025-09-24 10:38:32,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:33,723 INFO Connection check task start + +2025-09-24 10:38:33,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:33,723 INFO Out dated connection ,size=0 + +2025-09-24 10:38:33,724 INFO Connection check task end + +2025-09-24 10:38:35,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:36,725 INFO Connection check task start + +2025-09-24 10:38:36,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:36,726 INFO Out dated connection ,size=0 + +2025-09-24 10:38:36,726 INFO Connection check task end + +2025-09-24 10:38:38,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:39,728 INFO Connection check task start + +2025-09-24 10:38:39,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:39,728 INFO Out dated connection ,size=0 + +2025-09-24 10:38:39,728 INFO Connection check task end + +2025-09-24 10:38:41,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:42,729 INFO Connection check task start + +2025-09-24 10:38:42,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:42,729 INFO Out dated connection ,size=0 + +2025-09-24 10:38:42,729 INFO Connection check task end + +2025-09-24 10:38:44,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:45,729 INFO Connection check task start + +2025-09-24 10:38:45,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:45,729 INFO Out dated connection ,size=0 + +2025-09-24 10:38:45,729 INFO Connection check task end + +2025-09-24 10:38:47,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:48,730 INFO Connection check task start + +2025-09-24 10:38:48,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:48,730 INFO Out dated connection ,size=0 + +2025-09-24 10:38:48,730 INFO Connection check task end + +2025-09-24 10:38:50,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:51,730 INFO Connection check task start + +2025-09-24 10:38:51,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:51,731 INFO Out dated connection ,size=0 + +2025-09-24 10:38:51,731 INFO Connection check task end + +2025-09-24 10:38:53,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:54,731 INFO Connection check task start + +2025-09-24 10:38:54,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:54,731 INFO Out dated connection ,size=0 + +2025-09-24 10:38:54,731 INFO Connection check task end + +2025-09-24 10:38:56,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:38:57,733 INFO Connection check task start + +2025-09-24 10:38:57,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:38:57,733 INFO Out dated connection ,size=0 + +2025-09-24 10:38:57,733 INFO Connection check task end + +2025-09-24 10:38:59,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:00,733 INFO Connection check task start + +2025-09-24 10:39:00,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:00,734 INFO Out dated connection ,size=0 + +2025-09-24 10:39:00,734 INFO Connection check task end + +2025-09-24 10:39:02,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:03,734 INFO Connection check task start + +2025-09-24 10:39:03,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:03,734 INFO Out dated connection ,size=0 + +2025-09-24 10:39:03,734 INFO Connection check task end + +2025-09-24 10:39:05,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:06,736 INFO Connection check task start + +2025-09-24 10:39:06,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:06,736 INFO Out dated connection ,size=0 + +2025-09-24 10:39:06,736 INFO Connection check task end + +2025-09-24 10:39:08,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:09,737 INFO Connection check task start + +2025-09-24 10:39:09,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:09,737 INFO Out dated connection ,size=0 + +2025-09-24 10:39:09,737 INFO Connection check task end + +2025-09-24 10:39:11,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:12,738 INFO Connection check task start + +2025-09-24 10:39:12,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:12,738 INFO Out dated connection ,size=0 + +2025-09-24 10:39:12,738 INFO Connection check task end + +2025-09-24 10:39:14,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:15,738 INFO Connection check task start + +2025-09-24 10:39:15,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:15,739 INFO Out dated connection ,size=0 + +2025-09-24 10:39:15,739 INFO Connection check task end + +2025-09-24 10:39:17,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:18,740 INFO Connection check task start + +2025-09-24 10:39:18,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:18,740 INFO Out dated connection ,size=0 + +2025-09-24 10:39:18,740 INFO Connection check task end + +2025-09-24 10:39:20,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:21,742 INFO Connection check task start + +2025-09-24 10:39:21,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:21,749 INFO Out dated connection ,size=0 + +2025-09-24 10:39:21,749 INFO Connection check task end + +2025-09-24 10:39:23,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:24,751 INFO Connection check task start + +2025-09-24 10:39:24,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:24,751 INFO Out dated connection ,size=0 + +2025-09-24 10:39:24,751 INFO Connection check task end + +2025-09-24 10:39:26,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:27,752 INFO Connection check task start + +2025-09-24 10:39:27,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:27,752 INFO Out dated connection ,size=0 + +2025-09-24 10:39:27,752 INFO Connection check task end + +2025-09-24 10:39:29,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:30,754 INFO Connection check task start + +2025-09-24 10:39:30,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:30,754 INFO Out dated connection ,size=0 + +2025-09-24 10:39:30,754 INFO Connection check task end + +2025-09-24 10:39:32,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:33,755 INFO Connection check task start + +2025-09-24 10:39:33,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:33,755 INFO Out dated connection ,size=0 + +2025-09-24 10:39:33,755 INFO Connection check task end + +2025-09-24 10:39:35,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:36,755 INFO Connection check task start + +2025-09-24 10:39:36,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:36,756 INFO Out dated connection ,size=0 + +2025-09-24 10:39:36,756 INFO Connection check task end + +2025-09-24 10:39:38,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:39,757 INFO Connection check task start + +2025-09-24 10:39:39,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:39,757 INFO Out dated connection ,size=0 + +2025-09-24 10:39:39,757 INFO Connection check task end + +2025-09-24 10:39:41,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:42,757 INFO Connection check task start + +2025-09-24 10:39:42,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:42,758 INFO Out dated connection ,size=0 + +2025-09-24 10:39:42,758 INFO Connection check task end + +2025-09-24 10:39:44,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:45,758 INFO Connection check task start + +2025-09-24 10:39:45,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:45,758 INFO Out dated connection ,size=0 + +2025-09-24 10:39:45,758 INFO Connection check task end + +2025-09-24 10:39:47,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:48,759 INFO Connection check task start + +2025-09-24 10:39:48,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:48,760 INFO Out dated connection ,size=0 + +2025-09-24 10:39:48,760 INFO Connection check task end + +2025-09-24 10:39:50,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:51,760 INFO Connection check task start + +2025-09-24 10:39:51,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:51,760 INFO Out dated connection ,size=0 + +2025-09-24 10:39:51,760 INFO Connection check task end + +2025-09-24 10:39:53,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:54,760 INFO Connection check task start + +2025-09-24 10:39:54,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:54,761 INFO Out dated connection ,size=0 + +2025-09-24 10:39:54,761 INFO Connection check task end + +2025-09-24 10:39:56,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:39:57,761 INFO Connection check task start + +2025-09-24 10:39:57,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:39:57,761 INFO Out dated connection ,size=0 + +2025-09-24 10:39:57,761 INFO Connection check task end + +2025-09-24 10:39:59,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:00,763 INFO Connection check task start + +2025-09-24 10:40:00,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:00,763 INFO Out dated connection ,size=0 + +2025-09-24 10:40:00,763 INFO Connection check task end + +2025-09-24 10:40:02,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:03,764 INFO Connection check task start + +2025-09-24 10:40:03,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:03,764 INFO Out dated connection ,size=0 + +2025-09-24 10:40:03,764 INFO Connection check task end + +2025-09-24 10:40:05,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:06,765 INFO Connection check task start + +2025-09-24 10:40:06,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:06,765 INFO Out dated connection ,size=0 + +2025-09-24 10:40:06,765 INFO Connection check task end + +2025-09-24 10:40:08,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:09,765 INFO Connection check task start + +2025-09-24 10:40:09,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:09,765 INFO Out dated connection ,size=0 + +2025-09-24 10:40:09,765 INFO Connection check task end + +2025-09-24 10:40:11,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:12,765 INFO Connection check task start + +2025-09-24 10:40:12,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:12,766 INFO Out dated connection ,size=0 + +2025-09-24 10:40:12,766 INFO Connection check task end + +2025-09-24 10:40:14,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:15,767 INFO Connection check task start + +2025-09-24 10:40:15,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:15,767 INFO Out dated connection ,size=0 + +2025-09-24 10:40:15,767 INFO Connection check task end + +2025-09-24 10:40:17,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:18,771 INFO Connection check task start + +2025-09-24 10:40:18,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:18,771 INFO Out dated connection ,size=0 + +2025-09-24 10:40:18,771 INFO Connection check task end + +2025-09-24 10:40:20,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:21,772 INFO Connection check task start + +2025-09-24 10:40:21,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:21,773 INFO Out dated connection ,size=0 + +2025-09-24 10:40:21,773 INFO Connection check task end + +2025-09-24 10:40:23,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:24,773 INFO Connection check task start + +2025-09-24 10:40:24,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:24,773 INFO Out dated connection ,size=0 + +2025-09-24 10:40:24,773 INFO Connection check task end + +2025-09-24 10:40:26,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:27,775 INFO Connection check task start + +2025-09-24 10:40:27,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:27,775 INFO Out dated connection ,size=0 + +2025-09-24 10:40:27,775 INFO Connection check task end + +2025-09-24 10:40:29,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:30,776 INFO Connection check task start + +2025-09-24 10:40:30,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:30,777 INFO Out dated connection ,size=0 + +2025-09-24 10:40:30,777 INFO Connection check task end + +2025-09-24 10:40:32,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:33,777 INFO Connection check task start + +2025-09-24 10:40:33,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:33,777 INFO Out dated connection ,size=0 + +2025-09-24 10:40:33,777 INFO Connection check task end + +2025-09-24 10:40:35,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:36,778 INFO Connection check task start + +2025-09-24 10:40:36,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:36,778 INFO Out dated connection ,size=0 + +2025-09-24 10:40:36,778 INFO Connection check task end + +2025-09-24 10:40:38,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:39,778 INFO Connection check task start + +2025-09-24 10:40:39,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:39,779 INFO Out dated connection ,size=0 + +2025-09-24 10:40:39,779 INFO Connection check task end + +2025-09-24 10:40:41,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:42,779 INFO Connection check task start + +2025-09-24 10:40:42,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:42,779 INFO Out dated connection ,size=0 + +2025-09-24 10:40:42,779 INFO Connection check task end + +2025-09-24 10:40:44,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:45,781 INFO Connection check task start + +2025-09-24 10:40:45,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:45,781 INFO Out dated connection ,size=0 + +2025-09-24 10:40:45,781 INFO Connection check task end + +2025-09-24 10:40:47,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:48,782 INFO Connection check task start + +2025-09-24 10:40:48,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:48,782 INFO Out dated connection ,size=0 + +2025-09-24 10:40:48,782 INFO Connection check task end + +2025-09-24 10:40:50,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:51,782 INFO Connection check task start + +2025-09-24 10:40:51,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:51,782 INFO Out dated connection ,size=0 + +2025-09-24 10:40:51,782 INFO Connection check task end + +2025-09-24 10:40:53,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:54,784 INFO Connection check task start + +2025-09-24 10:40:54,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:54,785 INFO Out dated connection ,size=0 + +2025-09-24 10:40:54,785 INFO Connection check task end + +2025-09-24 10:40:56,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:40:57,786 INFO Connection check task start + +2025-09-24 10:40:57,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:40:57,786 INFO Out dated connection ,size=0 + +2025-09-24 10:40:57,786 INFO Connection check task end + +2025-09-24 10:40:59,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:00,788 INFO Connection check task start + +2025-09-24 10:41:00,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:00,789 INFO Out dated connection ,size=0 + +2025-09-24 10:41:00,789 INFO Connection check task end + +2025-09-24 10:41:02,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:03,790 INFO Connection check task start + +2025-09-24 10:41:03,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:03,790 INFO Out dated connection ,size=0 + +2025-09-24 10:41:03,790 INFO Connection check task end + +2025-09-24 10:41:05,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:06,791 INFO Connection check task start + +2025-09-24 10:41:06,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:06,791 INFO Out dated connection ,size=0 + +2025-09-24 10:41:06,791 INFO Connection check task end + +2025-09-24 10:41:08,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:09,791 INFO Connection check task start + +2025-09-24 10:41:09,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:09,791 INFO Out dated connection ,size=0 + +2025-09-24 10:41:09,792 INFO Connection check task end + +2025-09-24 10:41:11,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:12,792 INFO Connection check task start + +2025-09-24 10:41:12,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:12,792 INFO Out dated connection ,size=0 + +2025-09-24 10:41:12,792 INFO Connection check task end + +2025-09-24 10:41:14,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:15,792 INFO Connection check task start + +2025-09-24 10:41:15,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:15,793 INFO Out dated connection ,size=0 + +2025-09-24 10:41:15,793 INFO Connection check task end + +2025-09-24 10:41:17,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:18,795 INFO Connection check task start + +2025-09-24 10:41:18,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:18,795 INFO Out dated connection ,size=0 + +2025-09-24 10:41:18,795 INFO Connection check task end + +2025-09-24 10:41:20,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:21,796 INFO Connection check task start + +2025-09-24 10:41:21,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:21,797 INFO Out dated connection ,size=0 + +2025-09-24 10:41:21,797 INFO Connection check task end + +2025-09-24 10:41:23,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:24,798 INFO Connection check task start + +2025-09-24 10:41:24,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:24,798 INFO Out dated connection ,size=0 + +2025-09-24 10:41:24,798 INFO Connection check task end + +2025-09-24 10:41:26,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:27,800 INFO Connection check task start + +2025-09-24 10:41:27,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:27,800 INFO Out dated connection ,size=0 + +2025-09-24 10:41:27,800 INFO Connection check task end + +2025-09-24 10:41:29,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:30,802 INFO Connection check task start + +2025-09-24 10:41:30,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:30,802 INFO Out dated connection ,size=0 + +2025-09-24 10:41:30,802 INFO Connection check task end + +2025-09-24 10:41:32,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:33,803 INFO Connection check task start + +2025-09-24 10:41:33,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:33,803 INFO Out dated connection ,size=0 + +2025-09-24 10:41:33,803 INFO Connection check task end + +2025-09-24 10:41:35,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:36,804 INFO Connection check task start + +2025-09-24 10:41:36,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:36,804 INFO Out dated connection ,size=0 + +2025-09-24 10:41:36,804 INFO Connection check task end + +2025-09-24 10:41:38,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:39,806 INFO Connection check task start + +2025-09-24 10:41:39,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:39,806 INFO Out dated connection ,size=0 + +2025-09-24 10:41:39,806 INFO Connection check task end + +2025-09-24 10:41:41,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:42,808 INFO Connection check task start + +2025-09-24 10:41:42,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:42,808 INFO Out dated connection ,size=0 + +2025-09-24 10:41:42,808 INFO Connection check task end + +2025-09-24 10:41:44,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:45,809 INFO Connection check task start + +2025-09-24 10:41:45,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:45,809 INFO Out dated connection ,size=0 + +2025-09-24 10:41:45,809 INFO Connection check task end + +2025-09-24 10:41:47,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:48,810 INFO Connection check task start + +2025-09-24 10:41:48,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:48,810 INFO Out dated connection ,size=0 + +2025-09-24 10:41:48,810 INFO Connection check task end + +2025-09-24 10:41:50,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:51,812 INFO Connection check task start + +2025-09-24 10:41:51,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:51,812 INFO Out dated connection ,size=0 + +2025-09-24 10:41:51,812 INFO Connection check task end + +2025-09-24 10:41:53,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:54,814 INFO Connection check task start + +2025-09-24 10:41:54,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:54,814 INFO Out dated connection ,size=0 + +2025-09-24 10:41:54,814 INFO Connection check task end + +2025-09-24 10:41:56,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:41:57,815 INFO Connection check task start + +2025-09-24 10:41:57,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:41:57,815 INFO Out dated connection ,size=0 + +2025-09-24 10:41:57,815 INFO Connection check task end + +2025-09-24 10:41:59,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:00,815 INFO Connection check task start + +2025-09-24 10:42:00,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:00,815 INFO Out dated connection ,size=0 + +2025-09-24 10:42:00,815 INFO Connection check task end + +2025-09-24 10:42:02,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:03,816 INFO Connection check task start + +2025-09-24 10:42:03,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:03,816 INFO Out dated connection ,size=0 + +2025-09-24 10:42:03,816 INFO Connection check task end + +2025-09-24 10:42:05,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:06,817 INFO Connection check task start + +2025-09-24 10:42:06,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:06,817 INFO Out dated connection ,size=0 + +2025-09-24 10:42:06,817 INFO Connection check task end + +2025-09-24 10:42:08,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:09,819 INFO Connection check task start + +2025-09-24 10:42:09,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:09,819 INFO Out dated connection ,size=0 + +2025-09-24 10:42:09,819 INFO Connection check task end + +2025-09-24 10:42:11,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:12,820 INFO Connection check task start + +2025-09-24 10:42:12,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:12,820 INFO Out dated connection ,size=0 + +2025-09-24 10:42:12,820 INFO Connection check task end + +2025-09-24 10:42:14,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:15,821 INFO Connection check task start + +2025-09-24 10:42:15,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:15,821 INFO Out dated connection ,size=0 + +2025-09-24 10:42:15,821 INFO Connection check task end + +2025-09-24 10:42:17,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:18,822 INFO Connection check task start + +2025-09-24 10:42:18,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:18,823 INFO Out dated connection ,size=0 + +2025-09-24 10:42:18,823 INFO Connection check task end + +2025-09-24 10:42:20,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:21,824 INFO Connection check task start + +2025-09-24 10:42:21,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:21,825 INFO Out dated connection ,size=0 + +2025-09-24 10:42:21,825 INFO Connection check task end + +2025-09-24 10:42:23,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:24,826 INFO Connection check task start + +2025-09-24 10:42:24,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:24,826 INFO Out dated connection ,size=0 + +2025-09-24 10:42:24,826 INFO Connection check task end + +2025-09-24 10:42:26,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:27,826 INFO Connection check task start + +2025-09-24 10:42:27,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:27,827 INFO Out dated connection ,size=0 + +2025-09-24 10:42:27,827 INFO Connection check task end + +2025-09-24 10:42:29,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:30,828 INFO Connection check task start + +2025-09-24 10:42:30,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:30,828 INFO Out dated connection ,size=0 + +2025-09-24 10:42:30,828 INFO Connection check task end + +2025-09-24 10:42:32,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:33,829 INFO Connection check task start + +2025-09-24 10:42:33,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:33,829 INFO Out dated connection ,size=0 + +2025-09-24 10:42:33,829 INFO Connection check task end + +2025-09-24 10:42:35,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:36,830 INFO Connection check task start + +2025-09-24 10:42:36,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:36,831 INFO Out dated connection ,size=0 + +2025-09-24 10:42:36,831 INFO Connection check task end + +2025-09-24 10:42:38,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:39,832 INFO Connection check task start + +2025-09-24 10:42:39,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:39,832 INFO Out dated connection ,size=0 + +2025-09-24 10:42:39,832 INFO Connection check task end + +2025-09-24 10:42:41,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:42,833 INFO Connection check task start + +2025-09-24 10:42:42,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:42,833 INFO Out dated connection ,size=0 + +2025-09-24 10:42:42,833 INFO Connection check task end + +2025-09-24 10:42:44,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:45,833 INFO Connection check task start + +2025-09-24 10:42:45,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:45,833 INFO Out dated connection ,size=0 + +2025-09-24 10:42:45,833 INFO Connection check task end + +2025-09-24 10:42:47,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:48,835 INFO Connection check task start + +2025-09-24 10:42:48,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:48,835 INFO Out dated connection ,size=0 + +2025-09-24 10:42:48,835 INFO Connection check task end + +2025-09-24 10:42:50,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:51,835 INFO Connection check task start + +2025-09-24 10:42:51,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:51,836 INFO Out dated connection ,size=0 + +2025-09-24 10:42:51,836 INFO Connection check task end + +2025-09-24 10:42:53,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:54,836 INFO Connection check task start + +2025-09-24 10:42:54,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:54,836 INFO Out dated connection ,size=0 + +2025-09-24 10:42:54,836 INFO Connection check task end + +2025-09-24 10:42:56,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:42:57,837 INFO Connection check task start + +2025-09-24 10:42:57,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:42:57,837 INFO Out dated connection ,size=0 + +2025-09-24 10:42:57,837 INFO Connection check task end + +2025-09-24 10:42:59,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:00,838 INFO Connection check task start + +2025-09-24 10:43:00,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:00,838 INFO Out dated connection ,size=0 + +2025-09-24 10:43:00,838 INFO Connection check task end + +2025-09-24 10:43:02,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:03,838 INFO Connection check task start + +2025-09-24 10:43:03,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:03,838 INFO Out dated connection ,size=0 + +2025-09-24 10:43:03,838 INFO Connection check task end + +2025-09-24 10:43:05,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:06,839 INFO Connection check task start + +2025-09-24 10:43:06,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:06,839 INFO Out dated connection ,size=0 + +2025-09-24 10:43:06,839 INFO Connection check task end + +2025-09-24 10:43:08,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:09,841 INFO Connection check task start + +2025-09-24 10:43:09,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:09,841 INFO Out dated connection ,size=0 + +2025-09-24 10:43:09,841 INFO Connection check task end + +2025-09-24 10:43:11,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:12,842 INFO Connection check task start + +2025-09-24 10:43:12,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:12,842 INFO Out dated connection ,size=0 + +2025-09-24 10:43:12,842 INFO Connection check task end + +2025-09-24 10:43:14,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:15,843 INFO Connection check task start + +2025-09-24 10:43:15,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:15,843 INFO Out dated connection ,size=0 + +2025-09-24 10:43:15,843 INFO Connection check task end + +2025-09-24 10:43:17,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:18,844 INFO Connection check task start + +2025-09-24 10:43:18,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:18,844 INFO Out dated connection ,size=0 + +2025-09-24 10:43:18,844 INFO Connection check task end + +2025-09-24 10:43:20,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:21,845 INFO Connection check task start + +2025-09-24 10:43:21,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:21,845 INFO Out dated connection ,size=0 + +2025-09-24 10:43:21,845 INFO Connection check task end + +2025-09-24 10:43:23,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:24,846 INFO Connection check task start + +2025-09-24 10:43:24,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:24,846 INFO Out dated connection ,size=0 + +2025-09-24 10:43:24,846 INFO Connection check task end + +2025-09-24 10:43:26,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:27,847 INFO Connection check task start + +2025-09-24 10:43:27,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:27,847 INFO Out dated connection ,size=0 + +2025-09-24 10:43:27,847 INFO Connection check task end + +2025-09-24 10:43:29,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:30,848 INFO Connection check task start + +2025-09-24 10:43:30,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:30,848 INFO Out dated connection ,size=0 + +2025-09-24 10:43:30,848 INFO Connection check task end + +2025-09-24 10:43:32,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:33,849 INFO Connection check task start + +2025-09-24 10:43:33,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:33,850 INFO Out dated connection ,size=0 + +2025-09-24 10:43:33,850 INFO Connection check task end + +2025-09-24 10:43:35,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:36,852 INFO Connection check task start + +2025-09-24 10:43:36,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:36,852 INFO Out dated connection ,size=0 + +2025-09-24 10:43:36,852 INFO Connection check task end + +2025-09-24 10:43:38,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:39,854 INFO Connection check task start + +2025-09-24 10:43:39,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:39,854 INFO Out dated connection ,size=0 + +2025-09-24 10:43:39,854 INFO Connection check task end + +2025-09-24 10:43:41,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:42,857 INFO Connection check task start + +2025-09-24 10:43:42,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:42,857 INFO Out dated connection ,size=0 + +2025-09-24 10:43:42,857 INFO Connection check task end + +2025-09-24 10:43:44,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:45,858 INFO Connection check task start + +2025-09-24 10:43:45,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:45,858 INFO Out dated connection ,size=0 + +2025-09-24 10:43:45,858 INFO Connection check task end + +2025-09-24 10:43:47,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:48,860 INFO Connection check task start + +2025-09-24 10:43:48,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:48,861 INFO Out dated connection ,size=0 + +2025-09-24 10:43:48,861 INFO Connection check task end + +2025-09-24 10:43:50,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:51,863 INFO Connection check task start + +2025-09-24 10:43:51,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:51,864 INFO Out dated connection ,size=0 + +2025-09-24 10:43:51,864 INFO Connection check task end + +2025-09-24 10:43:53,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:54,864 INFO Connection check task start + +2025-09-24 10:43:54,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:54,864 INFO Out dated connection ,size=0 + +2025-09-24 10:43:54,864 INFO Connection check task end + +2025-09-24 10:43:56,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:43:57,866 INFO Connection check task start + +2025-09-24 10:43:57,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:43:57,867 INFO Out dated connection ,size=0 + +2025-09-24 10:43:57,867 INFO Connection check task end + +2025-09-24 10:43:59,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:00,868 INFO Connection check task start + +2025-09-24 10:44:00,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:00,869 INFO Out dated connection ,size=0 + +2025-09-24 10:44:00,869 INFO Connection check task end + +2025-09-24 10:44:02,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:03,869 INFO Connection check task start + +2025-09-24 10:44:03,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:03,869 INFO Out dated connection ,size=0 + +2025-09-24 10:44:03,869 INFO Connection check task end + +2025-09-24 10:44:05,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:06,872 INFO Connection check task start + +2025-09-24 10:44:06,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:06,872 INFO Out dated connection ,size=0 + +2025-09-24 10:44:06,872 INFO Connection check task end + +2025-09-24 10:44:08,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:09,872 INFO Connection check task start + +2025-09-24 10:44:09,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:09,872 INFO Out dated connection ,size=0 + +2025-09-24 10:44:09,873 INFO Connection check task end + +2025-09-24 10:44:11,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:12,873 INFO Connection check task start + +2025-09-24 10:44:12,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:12,873 INFO Out dated connection ,size=0 + +2025-09-24 10:44:12,873 INFO Connection check task end + +2025-09-24 10:44:14,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:15,874 INFO Connection check task start + +2025-09-24 10:44:15,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:15,874 INFO Out dated connection ,size=0 + +2025-09-24 10:44:15,874 INFO Connection check task end + +2025-09-24 10:44:17,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:18,876 INFO Connection check task start + +2025-09-24 10:44:18,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:18,876 INFO Out dated connection ,size=0 + +2025-09-24 10:44:18,876 INFO Connection check task end + +2025-09-24 10:44:20,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:21,877 INFO Connection check task start + +2025-09-24 10:44:21,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:21,877 INFO Out dated connection ,size=0 + +2025-09-24 10:44:21,877 INFO Connection check task end + +2025-09-24 10:44:23,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:24,878 INFO Connection check task start + +2025-09-24 10:44:24,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:24,879 INFO Out dated connection ,size=0 + +2025-09-24 10:44:24,879 INFO Connection check task end + +2025-09-24 10:44:26,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:27,880 INFO Connection check task start + +2025-09-24 10:44:27,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:27,881 INFO Out dated connection ,size=0 + +2025-09-24 10:44:27,881 INFO Connection check task end + +2025-09-24 10:44:29,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:30,882 INFO Connection check task start + +2025-09-24 10:44:30,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:30,882 INFO Out dated connection ,size=0 + +2025-09-24 10:44:30,882 INFO Connection check task end + +2025-09-24 10:44:32,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:33,884 INFO Connection check task start + +2025-09-24 10:44:33,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:33,884 INFO Out dated connection ,size=0 + +2025-09-24 10:44:33,884 INFO Connection check task end + +2025-09-24 10:44:35,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:36,885 INFO Connection check task start + +2025-09-24 10:44:36,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:36,885 INFO Out dated connection ,size=0 + +2025-09-24 10:44:36,885 INFO Connection check task end + +2025-09-24 10:44:38,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:39,885 INFO Connection check task start + +2025-09-24 10:44:39,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:39,886 INFO Out dated connection ,size=0 + +2025-09-24 10:44:39,886 INFO Connection check task end + +2025-09-24 10:44:41,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:42,886 INFO Connection check task start + +2025-09-24 10:44:42,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:42,887 INFO Out dated connection ,size=0 + +2025-09-24 10:44:42,887 INFO Connection check task end + +2025-09-24 10:44:44,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:45,888 INFO Connection check task start + +2025-09-24 10:44:45,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:45,888 INFO Out dated connection ,size=0 + +2025-09-24 10:44:45,888 INFO Connection check task end + +2025-09-24 10:44:47,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:48,889 INFO Connection check task start + +2025-09-24 10:44:48,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:48,889 INFO Out dated connection ,size=0 + +2025-09-24 10:44:48,889 INFO Connection check task end + +2025-09-24 10:44:50,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:51,891 INFO Connection check task start + +2025-09-24 10:44:51,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:51,892 INFO Out dated connection ,size=0 + +2025-09-24 10:44:51,892 INFO Connection check task end + +2025-09-24 10:44:53,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:54,894 INFO Connection check task start + +2025-09-24 10:44:54,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:54,895 INFO Out dated connection ,size=0 + +2025-09-24 10:44:54,895 INFO Connection check task end + +2025-09-24 10:44:56,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:44:57,895 INFO Connection check task start + +2025-09-24 10:44:57,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:44:57,895 INFO Out dated connection ,size=0 + +2025-09-24 10:44:57,896 INFO Connection check task end + +2025-09-24 10:44:59,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:00,897 INFO Connection check task start + +2025-09-24 10:45:00,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:00,897 INFO Out dated connection ,size=0 + +2025-09-24 10:45:00,897 INFO Connection check task end + +2025-09-24 10:45:02,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:03,899 INFO Connection check task start + +2025-09-24 10:45:03,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:03,899 INFO Out dated connection ,size=0 + +2025-09-24 10:45:03,899 INFO Connection check task end + +2025-09-24 10:45:05,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:06,901 INFO Connection check task start + +2025-09-24 10:45:06,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:06,901 INFO Out dated connection ,size=0 + +2025-09-24 10:45:06,901 INFO Connection check task end + +2025-09-24 10:45:08,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:09,901 INFO Connection check task start + +2025-09-24 10:45:09,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:09,901 INFO Out dated connection ,size=0 + +2025-09-24 10:45:09,901 INFO Connection check task end + +2025-09-24 10:45:11,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:12,903 INFO Connection check task start + +2025-09-24 10:45:12,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:12,903 INFO Out dated connection ,size=0 + +2025-09-24 10:45:12,903 INFO Connection check task end + +2025-09-24 10:45:14,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:15,904 INFO Connection check task start + +2025-09-24 10:45:15,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:15,904 INFO Out dated connection ,size=0 + +2025-09-24 10:45:15,904 INFO Connection check task end + +2025-09-24 10:45:17,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:18,904 INFO Connection check task start + +2025-09-24 10:45:18,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:18,904 INFO Out dated connection ,size=0 + +2025-09-24 10:45:18,904 INFO Connection check task end + +2025-09-24 10:45:20,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:21,905 INFO Connection check task start + +2025-09-24 10:45:21,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:21,905 INFO Out dated connection ,size=0 + +2025-09-24 10:45:21,905 INFO Connection check task end + +2025-09-24 10:45:23,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:24,906 INFO Connection check task start + +2025-09-24 10:45:24,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:24,906 INFO Out dated connection ,size=0 + +2025-09-24 10:45:24,906 INFO Connection check task end + +2025-09-24 10:45:26,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:27,906 INFO Connection check task start + +2025-09-24 10:45:27,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:27,906 INFO Out dated connection ,size=0 + +2025-09-24 10:45:27,906 INFO Connection check task end + +2025-09-24 10:45:29,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:30,907 INFO Connection check task start + +2025-09-24 10:45:30,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:30,907 INFO Out dated connection ,size=0 + +2025-09-24 10:45:30,907 INFO Connection check task end + +2025-09-24 10:45:32,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:33,907 INFO Connection check task start + +2025-09-24 10:45:33,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:33,907 INFO Out dated connection ,size=0 + +2025-09-24 10:45:33,908 INFO Connection check task end + +2025-09-24 10:45:35,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:36,908 INFO Connection check task start + +2025-09-24 10:45:36,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:36,908 INFO Out dated connection ,size=0 + +2025-09-24 10:45:36,908 INFO Connection check task end + +2025-09-24 10:45:38,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:39,908 INFO Connection check task start + +2025-09-24 10:45:39,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:39,908 INFO Out dated connection ,size=0 + +2025-09-24 10:45:39,908 INFO Connection check task end + +2025-09-24 10:45:41,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:42,909 INFO Connection check task start + +2025-09-24 10:45:42,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:42,909 INFO Out dated connection ,size=0 + +2025-09-24 10:45:42,909 INFO Connection check task end + +2025-09-24 10:45:44,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:45,910 INFO Connection check task start + +2025-09-24 10:45:45,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:45,910 INFO Out dated connection ,size=0 + +2025-09-24 10:45:45,910 INFO Connection check task end + +2025-09-24 10:45:47,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:48,910 INFO Connection check task start + +2025-09-24 10:45:48,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:48,911 INFO Out dated connection ,size=0 + +2025-09-24 10:45:48,911 INFO Connection check task end + +2025-09-24 10:45:50,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:51,911 INFO Connection check task start + +2025-09-24 10:45:51,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:51,911 INFO Out dated connection ,size=0 + +2025-09-24 10:45:51,911 INFO Connection check task end + +2025-09-24 10:45:53,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:54,912 INFO Connection check task start + +2025-09-24 10:45:54,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:54,914 INFO Out dated connection ,size=0 + +2025-09-24 10:45:54,914 INFO Connection check task end + +2025-09-24 10:45:56,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:45:57,914 INFO Connection check task start + +2025-09-24 10:45:57,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:45:57,914 INFO Out dated connection ,size=0 + +2025-09-24 10:45:57,914 INFO Connection check task end + +2025-09-24 10:45:59,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:00,915 INFO Connection check task start + +2025-09-24 10:46:00,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:00,915 INFO Out dated connection ,size=0 + +2025-09-24 10:46:00,915 INFO Connection check task end + +2025-09-24 10:46:02,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:03,916 INFO Connection check task start + +2025-09-24 10:46:03,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:03,916 INFO Out dated connection ,size=0 + +2025-09-24 10:46:03,916 INFO Connection check task end + +2025-09-24 10:46:05,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:06,916 INFO Connection check task start + +2025-09-24 10:46:06,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:06,916 INFO Out dated connection ,size=0 + +2025-09-24 10:46:06,916 INFO Connection check task end + +2025-09-24 10:46:08,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:09,918 INFO Connection check task start + +2025-09-24 10:46:09,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:09,918 INFO Out dated connection ,size=0 + +2025-09-24 10:46:09,918 INFO Connection check task end + +2025-09-24 10:46:11,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:12,920 INFO Connection check task start + +2025-09-24 10:46:12,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:12,920 INFO Out dated connection ,size=0 + +2025-09-24 10:46:12,920 INFO Connection check task end + +2025-09-24 10:46:14,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:15,921 INFO Connection check task start + +2025-09-24 10:46:15,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:15,921 INFO Out dated connection ,size=0 + +2025-09-24 10:46:15,921 INFO Connection check task end + +2025-09-24 10:46:17,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:18,923 INFO Connection check task start + +2025-09-24 10:46:18,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:18,923 INFO Out dated connection ,size=0 + +2025-09-24 10:46:18,923 INFO Connection check task end + +2025-09-24 10:46:20,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:21,925 INFO Connection check task start + +2025-09-24 10:46:21,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:21,925 INFO Out dated connection ,size=0 + +2025-09-24 10:46:21,925 INFO Connection check task end + +2025-09-24 10:46:23,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:24,926 INFO Connection check task start + +2025-09-24 10:46:24,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:24,927 INFO Out dated connection ,size=0 + +2025-09-24 10:46:24,927 INFO Connection check task end + +2025-09-24 10:46:26,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:27,927 INFO Connection check task start + +2025-09-24 10:46:27,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:27,927 INFO Out dated connection ,size=0 + +2025-09-24 10:46:27,927 INFO Connection check task end + +2025-09-24 10:46:29,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:30,928 INFO Connection check task start + +2025-09-24 10:46:30,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:30,928 INFO Out dated connection ,size=0 + +2025-09-24 10:46:30,928 INFO Connection check task end + +2025-09-24 10:46:32,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:33,929 INFO Connection check task start + +2025-09-24 10:46:33,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:33,929 INFO Out dated connection ,size=0 + +2025-09-24 10:46:33,929 INFO Connection check task end + +2025-09-24 10:46:35,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:36,929 INFO Connection check task start + +2025-09-24 10:46:36,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:36,929 INFO Out dated connection ,size=0 + +2025-09-24 10:46:36,929 INFO Connection check task end + +2025-09-24 10:46:38,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:39,931 INFO Connection check task start + +2025-09-24 10:46:39,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:39,932 INFO Out dated connection ,size=0 + +2025-09-24 10:46:39,932 INFO Connection check task end + +2025-09-24 10:46:41,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:42,932 INFO Connection check task start + +2025-09-24 10:46:42,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:42,932 INFO Out dated connection ,size=0 + +2025-09-24 10:46:42,933 INFO Connection check task end + +2025-09-24 10:46:44,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:45,933 INFO Connection check task start + +2025-09-24 10:46:45,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:45,933 INFO Out dated connection ,size=0 + +2025-09-24 10:46:45,933 INFO Connection check task end + +2025-09-24 10:46:47,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:48,934 INFO Connection check task start + +2025-09-24 10:46:48,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:48,934 INFO Out dated connection ,size=0 + +2025-09-24 10:46:48,934 INFO Connection check task end + +2025-09-24 10:46:50,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:51,934 INFO Connection check task start + +2025-09-24 10:46:51,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:51,934 INFO Out dated connection ,size=0 + +2025-09-24 10:46:51,935 INFO Connection check task end + +2025-09-24 10:46:53,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:54,936 INFO Connection check task start + +2025-09-24 10:46:54,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:54,936 INFO Out dated connection ,size=0 + +2025-09-24 10:46:54,936 INFO Connection check task end + +2025-09-24 10:46:56,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:46:57,936 INFO Connection check task start + +2025-09-24 10:46:57,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:46:57,937 INFO Out dated connection ,size=0 + +2025-09-24 10:46:57,937 INFO Connection check task end + +2025-09-24 10:46:59,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:00,937 INFO Connection check task start + +2025-09-24 10:47:00,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:00,937 INFO Out dated connection ,size=0 + +2025-09-24 10:47:00,937 INFO Connection check task end + +2025-09-24 10:47:02,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:03,938 INFO Connection check task start + +2025-09-24 10:47:03,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:03,939 INFO Out dated connection ,size=0 + +2025-09-24 10:47:03,939 INFO Connection check task end + +2025-09-24 10:47:05,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:06,940 INFO Connection check task start + +2025-09-24 10:47:06,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:06,940 INFO Out dated connection ,size=0 + +2025-09-24 10:47:06,940 INFO Connection check task end + +2025-09-24 10:47:08,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:09,940 INFO Connection check task start + +2025-09-24 10:47:09,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:09,940 INFO Out dated connection ,size=0 + +2025-09-24 10:47:09,940 INFO Connection check task end + +2025-09-24 10:47:11,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:12,941 INFO Connection check task start + +2025-09-24 10:47:12,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:12,941 INFO Out dated connection ,size=0 + +2025-09-24 10:47:12,941 INFO Connection check task end + +2025-09-24 10:47:14,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:15,943 INFO Connection check task start + +2025-09-24 10:47:15,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:15,943 INFO Out dated connection ,size=0 + +2025-09-24 10:47:15,943 INFO Connection check task end + +2025-09-24 10:47:17,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:18,945 INFO Connection check task start + +2025-09-24 10:47:18,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:18,946 INFO Out dated connection ,size=0 + +2025-09-24 10:47:18,946 INFO Connection check task end + +2025-09-24 10:47:20,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:21,948 INFO Connection check task start + +2025-09-24 10:47:21,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:21,948 INFO Out dated connection ,size=0 + +2025-09-24 10:47:21,948 INFO Connection check task end + +2025-09-24 10:47:23,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:24,948 INFO Connection check task start + +2025-09-24 10:47:24,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:24,948 INFO Out dated connection ,size=0 + +2025-09-24 10:47:24,948 INFO Connection check task end + +2025-09-24 10:47:26,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:27,951 INFO Connection check task start + +2025-09-24 10:47:27,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:27,951 INFO Out dated connection ,size=0 + +2025-09-24 10:47:27,951 INFO Connection check task end + +2025-09-24 10:47:29,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:30,951 INFO Connection check task start + +2025-09-24 10:47:30,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:30,952 INFO Out dated connection ,size=0 + +2025-09-24 10:47:30,952 INFO Connection check task end + +2025-09-24 10:47:32,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:33,952 INFO Connection check task start + +2025-09-24 10:47:33,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:33,952 INFO Out dated connection ,size=0 + +2025-09-24 10:47:33,952 INFO Connection check task end + +2025-09-24 10:47:35,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:36,952 INFO Connection check task start + +2025-09-24 10:47:36,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:36,953 INFO Out dated connection ,size=0 + +2025-09-24 10:47:36,953 INFO Connection check task end + +2025-09-24 10:47:38,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:39,953 INFO Connection check task start + +2025-09-24 10:47:39,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:39,953 INFO Out dated connection ,size=0 + +2025-09-24 10:47:39,953 INFO Connection check task end + +2025-09-24 10:47:41,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:42,953 INFO Connection check task start + +2025-09-24 10:47:42,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:42,954 INFO Out dated connection ,size=0 + +2025-09-24 10:47:42,954 INFO Connection check task end + +2025-09-24 10:47:44,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:45,954 INFO Connection check task start + +2025-09-24 10:47:45,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:45,955 INFO Out dated connection ,size=0 + +2025-09-24 10:47:45,955 INFO Connection check task end + +2025-09-24 10:47:47,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:48,955 INFO Connection check task start + +2025-09-24 10:47:48,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:48,955 INFO Out dated connection ,size=0 + +2025-09-24 10:47:48,955 INFO Connection check task end + +2025-09-24 10:47:50,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:51,956 INFO Connection check task start + +2025-09-24 10:47:51,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:51,956 INFO Out dated connection ,size=0 + +2025-09-24 10:47:51,956 INFO Connection check task end + +2025-09-24 10:47:53,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:54,957 INFO Connection check task start + +2025-09-24 10:47:54,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:54,957 INFO Out dated connection ,size=0 + +2025-09-24 10:47:54,957 INFO Connection check task end + +2025-09-24 10:47:56,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:47:57,959 INFO Connection check task start + +2025-09-24 10:47:57,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:47:57,959 INFO Out dated connection ,size=0 + +2025-09-24 10:47:57,959 INFO Connection check task end + +2025-09-24 10:47:59,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:00,961 INFO Connection check task start + +2025-09-24 10:48:00,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:00,961 INFO Out dated connection ,size=0 + +2025-09-24 10:48:00,961 INFO Connection check task end + +2025-09-24 10:48:02,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:03,962 INFO Connection check task start + +2025-09-24 10:48:03,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:03,962 INFO Out dated connection ,size=0 + +2025-09-24 10:48:03,962 INFO Connection check task end + +2025-09-24 10:48:05,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:06,963 INFO Connection check task start + +2025-09-24 10:48:06,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:06,963 INFO Out dated connection ,size=0 + +2025-09-24 10:48:06,963 INFO Connection check task end + +2025-09-24 10:48:08,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:09,963 INFO Connection check task start + +2025-09-24 10:48:09,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:09,963 INFO Out dated connection ,size=0 + +2025-09-24 10:48:09,963 INFO Connection check task end + +2025-09-24 10:48:11,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:12,965 INFO Connection check task start + +2025-09-24 10:48:12,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:12,965 INFO Out dated connection ,size=0 + +2025-09-24 10:48:12,965 INFO Connection check task end + +2025-09-24 10:48:14,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:15,965 INFO Connection check task start + +2025-09-24 10:48:15,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:15,965 INFO Out dated connection ,size=0 + +2025-09-24 10:48:15,965 INFO Connection check task end + +2025-09-24 10:48:17,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:18,966 INFO Connection check task start + +2025-09-24 10:48:18,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:18,966 INFO Out dated connection ,size=0 + +2025-09-24 10:48:18,966 INFO Connection check task end + +2025-09-24 10:48:20,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:21,966 INFO Connection check task start + +2025-09-24 10:48:21,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:21,966 INFO Out dated connection ,size=0 + +2025-09-24 10:48:21,966 INFO Connection check task end + +2025-09-24 10:48:23,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:24,967 INFO Connection check task start + +2025-09-24 10:48:24,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:24,967 INFO Out dated connection ,size=0 + +2025-09-24 10:48:24,967 INFO Connection check task end + +2025-09-24 10:48:26,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:27,969 INFO Connection check task start + +2025-09-24 10:48:27,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:27,969 INFO Out dated connection ,size=0 + +2025-09-24 10:48:27,969 INFO Connection check task end + +2025-09-24 10:48:29,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:30,969 INFO Connection check task start + +2025-09-24 10:48:30,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:30,969 INFO Out dated connection ,size=0 + +2025-09-24 10:48:30,969 INFO Connection check task end + +2025-09-24 10:48:32,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:33,971 INFO Connection check task start + +2025-09-24 10:48:33,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:33,971 INFO Out dated connection ,size=0 + +2025-09-24 10:48:33,971 INFO Connection check task end + +2025-09-24 10:48:35,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:36,972 INFO Connection check task start + +2025-09-24 10:48:36,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:36,972 INFO Out dated connection ,size=0 + +2025-09-24 10:48:36,972 INFO Connection check task end + +2025-09-24 10:48:38,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:39,974 INFO Connection check task start + +2025-09-24 10:48:39,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:39,974 INFO Out dated connection ,size=0 + +2025-09-24 10:48:39,974 INFO Connection check task end + +2025-09-24 10:48:41,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:42,976 INFO Connection check task start + +2025-09-24 10:48:42,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:42,976 INFO Out dated connection ,size=0 + +2025-09-24 10:48:42,976 INFO Connection check task end + +2025-09-24 10:48:44,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:45,978 INFO Connection check task start + +2025-09-24 10:48:45,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:45,978 INFO Out dated connection ,size=0 + +2025-09-24 10:48:45,978 INFO Connection check task end + +2025-09-24 10:48:47,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:48,978 INFO Connection check task start + +2025-09-24 10:48:48,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:48,979 INFO Out dated connection ,size=0 + +2025-09-24 10:48:48,979 INFO Connection check task end + +2025-09-24 10:48:50,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:51,979 INFO Connection check task start + +2025-09-24 10:48:51,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:51,979 INFO Out dated connection ,size=0 + +2025-09-24 10:48:51,979 INFO Connection check task end + +2025-09-24 10:48:53,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:54,981 INFO Connection check task start + +2025-09-24 10:48:54,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:54,981 INFO Out dated connection ,size=0 + +2025-09-24 10:48:54,981 INFO Connection check task end + +2025-09-24 10:48:56,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:48:57,981 INFO Connection check task start + +2025-09-24 10:48:57,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:48:57,981 INFO Out dated connection ,size=0 + +2025-09-24 10:48:57,982 INFO Connection check task end + +2025-09-24 10:48:59,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:00,982 INFO Connection check task start + +2025-09-24 10:49:00,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:00,982 INFO Out dated connection ,size=0 + +2025-09-24 10:49:00,982 INFO Connection check task end + +2025-09-24 10:49:02,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:03,982 INFO Connection check task start + +2025-09-24 10:49:03,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:03,982 INFO Out dated connection ,size=0 + +2025-09-24 10:49:03,982 INFO Connection check task end + +2025-09-24 10:49:05,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:06,982 INFO Connection check task start + +2025-09-24 10:49:06,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:06,983 INFO Out dated connection ,size=0 + +2025-09-24 10:49:06,983 INFO Connection check task end + +2025-09-24 10:49:08,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:09,983 INFO Connection check task start + +2025-09-24 10:49:09,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:09,984 INFO Out dated connection ,size=0 + +2025-09-24 10:49:09,984 INFO Connection check task end + +2025-09-24 10:49:11,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:12,984 INFO Connection check task start + +2025-09-24 10:49:12,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:12,984 INFO Out dated connection ,size=0 + +2025-09-24 10:49:12,985 INFO Connection check task end + +2025-09-24 10:49:14,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:15,985 INFO Connection check task start + +2025-09-24 10:49:15,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:15,985 INFO Out dated connection ,size=0 + +2025-09-24 10:49:15,985 INFO Connection check task end + +2025-09-24 10:49:17,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:18,985 INFO Connection check task start + +2025-09-24 10:49:18,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:18,985 INFO Out dated connection ,size=0 + +2025-09-24 10:49:18,985 INFO Connection check task end + +2025-09-24 10:49:20,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:21,987 INFO Connection check task start + +2025-09-24 10:49:21,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:21,987 INFO Out dated connection ,size=0 + +2025-09-24 10:49:21,987 INFO Connection check task end + +2025-09-24 10:49:23,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:24,988 INFO Connection check task start + +2025-09-24 10:49:24,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:24,988 INFO Out dated connection ,size=0 + +2025-09-24 10:49:24,988 INFO Connection check task end + +2025-09-24 10:49:26,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:27,990 INFO Connection check task start + +2025-09-24 10:49:27,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:27,990 INFO Out dated connection ,size=0 + +2025-09-24 10:49:27,990 INFO Connection check task end + +2025-09-24 10:49:29,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:30,992 INFO Connection check task start + +2025-09-24 10:49:30,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:30,993 INFO Out dated connection ,size=0 + +2025-09-24 10:49:30,993 INFO Connection check task end + +2025-09-24 10:49:32,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:33,993 INFO Connection check task start + +2025-09-24 10:49:33,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:33,993 INFO Out dated connection ,size=0 + +2025-09-24 10:49:33,993 INFO Connection check task end + +2025-09-24 10:49:35,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:36,994 INFO Connection check task start + +2025-09-24 10:49:36,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:36,994 INFO Out dated connection ,size=0 + +2025-09-24 10:49:36,994 INFO Connection check task end + +2025-09-24 10:49:38,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:39,994 INFO Connection check task start + +2025-09-24 10:49:39,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:39,994 INFO Out dated connection ,size=0 + +2025-09-24 10:49:39,994 INFO Connection check task end + +2025-09-24 10:49:41,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:42,995 INFO Connection check task start + +2025-09-24 10:49:42,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:42,995 INFO Out dated connection ,size=0 + +2025-09-24 10:49:42,995 INFO Connection check task end + +2025-09-24 10:49:44,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:45,996 INFO Connection check task start + +2025-09-24 10:49:45,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:45,996 INFO Out dated connection ,size=0 + +2025-09-24 10:49:45,996 INFO Connection check task end + +2025-09-24 10:49:47,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:48,997 INFO Connection check task start + +2025-09-24 10:49:48,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:48,997 INFO Out dated connection ,size=0 + +2025-09-24 10:49:48,997 INFO Connection check task end + +2025-09-24 10:49:50,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:51,998 INFO Connection check task start + +2025-09-24 10:49:51,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:51,998 INFO Out dated connection ,size=0 + +2025-09-24 10:49:51,998 INFO Connection check task end + +2025-09-24 10:49:53,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:54,998 INFO Connection check task start + +2025-09-24 10:49:54,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:54,999 INFO Out dated connection ,size=0 + +2025-09-24 10:49:54,999 INFO Connection check task end + +2025-09-24 10:49:56,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:49:57,999 INFO Connection check task start + +2025-09-24 10:49:57,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:49:57,999 INFO Out dated connection ,size=0 + +2025-09-24 10:49:57,999 INFO Connection check task end + +2025-09-24 10:49:59,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:00,999 INFO Connection check task start + +2025-09-24 10:50:00,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:00,999 INFO Out dated connection ,size=0 + +2025-09-24 10:50:00,999 INFO Connection check task end + +2025-09-24 10:50:02,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:04,000 INFO Connection check task start + +2025-09-24 10:50:04,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:04,000 INFO Out dated connection ,size=0 + +2025-09-24 10:50:04,000 INFO Connection check task end + +2025-09-24 10:50:05,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:07,000 INFO Connection check task start + +2025-09-24 10:50:07,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:07,000 INFO Out dated connection ,size=0 + +2025-09-24 10:50:07,000 INFO Connection check task end + +2025-09-24 10:50:08,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:10,001 INFO Connection check task start + +2025-09-24 10:50:10,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:10,001 INFO Out dated connection ,size=0 + +2025-09-24 10:50:10,001 INFO Connection check task end + +2025-09-24 10:50:11,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:13,001 INFO Connection check task start + +2025-09-24 10:50:13,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:13,002 INFO Out dated connection ,size=0 + +2025-09-24 10:50:13,002 INFO Connection check task end + +2025-09-24 10:50:14,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:16,002 INFO Connection check task start + +2025-09-24 10:50:16,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:16,002 INFO Out dated connection ,size=0 + +2025-09-24 10:50:16,002 INFO Connection check task end + +2025-09-24 10:50:17,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:19,004 INFO Connection check task start + +2025-09-24 10:50:19,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:19,005 INFO Out dated connection ,size=0 + +2025-09-24 10:50:19,005 INFO Connection check task end + +2025-09-24 10:50:20,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:22,005 INFO Connection check task start + +2025-09-24 10:50:22,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:22,006 INFO Out dated connection ,size=0 + +2025-09-24 10:50:22,006 INFO Connection check task end + +2025-09-24 10:50:23,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:25,007 INFO Connection check task start + +2025-09-24 10:50:25,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:25,007 INFO Out dated connection ,size=0 + +2025-09-24 10:50:25,007 INFO Connection check task end + +2025-09-24 10:50:26,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:28,010 INFO Connection check task start + +2025-09-24 10:50:28,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:28,010 INFO Out dated connection ,size=0 + +2025-09-24 10:50:28,010 INFO Connection check task end + +2025-09-24 10:50:29,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:31,012 INFO Connection check task start + +2025-09-24 10:50:31,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:31,012 INFO Out dated connection ,size=0 + +2025-09-24 10:50:31,012 INFO Connection check task end + +2025-09-24 10:50:32,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:34,015 INFO Connection check task start + +2025-09-24 10:50:34,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:34,015 INFO Out dated connection ,size=0 + +2025-09-24 10:50:34,015 INFO Connection check task end + +2025-09-24 10:50:35,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:37,017 INFO Connection check task start + +2025-09-24 10:50:37,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:37,017 INFO Out dated connection ,size=0 + +2025-09-24 10:50:37,017 INFO Connection check task end + +2025-09-24 10:50:38,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:40,017 INFO Connection check task start + +2025-09-24 10:50:40,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:40,017 INFO Out dated connection ,size=0 + +2025-09-24 10:50:40,018 INFO Connection check task end + +2025-09-24 10:50:41,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:43,019 INFO Connection check task start + +2025-09-24 10:50:43,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:43,020 INFO Out dated connection ,size=0 + +2025-09-24 10:50:43,020 INFO Connection check task end + +2025-09-24 10:50:44,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:46,021 INFO Connection check task start + +2025-09-24 10:50:46,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:46,021 INFO Out dated connection ,size=0 + +2025-09-24 10:50:46,021 INFO Connection check task end + +2025-09-24 10:50:47,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:49,022 INFO Connection check task start + +2025-09-24 10:50:49,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:49,022 INFO Out dated connection ,size=0 + +2025-09-24 10:50:49,022 INFO Connection check task end + +2025-09-24 10:50:50,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:52,023 INFO Connection check task start + +2025-09-24 10:50:52,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:52,023 INFO Out dated connection ,size=0 + +2025-09-24 10:50:52,023 INFO Connection check task end + +2025-09-24 10:50:53,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:55,025 INFO Connection check task start + +2025-09-24 10:50:55,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:55,025 INFO Out dated connection ,size=0 + +2025-09-24 10:50:55,026 INFO Connection check task end + +2025-09-24 10:50:56,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:50:58,028 INFO Connection check task start + +2025-09-24 10:50:58,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:50:58,028 INFO Out dated connection ,size=0 + +2025-09-24 10:50:58,028 INFO Connection check task end + +2025-09-24 10:50:59,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:01,030 INFO Connection check task start + +2025-09-24 10:51:01,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:01,030 INFO Out dated connection ,size=0 + +2025-09-24 10:51:01,030 INFO Connection check task end + +2025-09-24 10:51:02,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:04,031 INFO Connection check task start + +2025-09-24 10:51:04,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:04,031 INFO Out dated connection ,size=0 + +2025-09-24 10:51:04,031 INFO Connection check task end + +2025-09-24 10:51:05,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:07,032 INFO Connection check task start + +2025-09-24 10:51:07,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:07,032 INFO Out dated connection ,size=0 + +2025-09-24 10:51:07,032 INFO Connection check task end + +2025-09-24 10:51:08,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:10,034 INFO Connection check task start + +2025-09-24 10:51:10,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:10,034 INFO Out dated connection ,size=0 + +2025-09-24 10:51:10,034 INFO Connection check task end + +2025-09-24 10:51:11,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:13,034 INFO Connection check task start + +2025-09-24 10:51:13,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:13,035 INFO Out dated connection ,size=0 + +2025-09-24 10:51:13,035 INFO Connection check task end + +2025-09-24 10:51:14,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:16,037 INFO Connection check task start + +2025-09-24 10:51:16,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:16,037 INFO Out dated connection ,size=0 + +2025-09-24 10:51:16,037 INFO Connection check task end + +2025-09-24 10:51:17,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:19,038 INFO Connection check task start + +2025-09-24 10:51:19,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:19,038 INFO Out dated connection ,size=0 + +2025-09-24 10:51:19,038 INFO Connection check task end + +2025-09-24 10:51:20,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:22,040 INFO Connection check task start + +2025-09-24 10:51:22,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:22,040 INFO Out dated connection ,size=0 + +2025-09-24 10:51:22,040 INFO Connection check task end + +2025-09-24 10:51:23,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:25,042 INFO Connection check task start + +2025-09-24 10:51:25,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:25,043 INFO Out dated connection ,size=0 + +2025-09-24 10:51:25,043 INFO Connection check task end + +2025-09-24 10:51:26,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:28,045 INFO Connection check task start + +2025-09-24 10:51:28,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:28,045 INFO Out dated connection ,size=0 + +2025-09-24 10:51:28,045 INFO Connection check task end + +2025-09-24 10:51:29,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:31,045 INFO Connection check task start + +2025-09-24 10:51:31,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:31,045 INFO Out dated connection ,size=0 + +2025-09-24 10:51:31,045 INFO Connection check task end + +2025-09-24 10:51:32,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:34,046 INFO Connection check task start + +2025-09-24 10:51:34,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:34,046 INFO Out dated connection ,size=0 + +2025-09-24 10:51:34,047 INFO Connection check task end + +2025-09-24 10:51:35,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:37,047 INFO Connection check task start + +2025-09-24 10:51:37,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:37,047 INFO Out dated connection ,size=0 + +2025-09-24 10:51:37,047 INFO Connection check task end + +2025-09-24 10:51:38,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:40,048 INFO Connection check task start + +2025-09-24 10:51:40,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:40,048 INFO Out dated connection ,size=0 + +2025-09-24 10:51:40,048 INFO Connection check task end + +2025-09-24 10:51:41,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:43,050 INFO Connection check task start + +2025-09-24 10:51:43,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:43,050 INFO Out dated connection ,size=0 + +2025-09-24 10:51:43,050 INFO Connection check task end + +2025-09-24 10:51:44,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:46,052 INFO Connection check task start + +2025-09-24 10:51:46,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:46,052 INFO Out dated connection ,size=0 + +2025-09-24 10:51:46,052 INFO Connection check task end + +2025-09-24 10:51:47,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:49,055 INFO Connection check task start + +2025-09-24 10:51:49,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:49,055 INFO Out dated connection ,size=0 + +2025-09-24 10:51:49,055 INFO Connection check task end + +2025-09-24 10:51:50,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:52,056 INFO Connection check task start + +2025-09-24 10:51:52,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:52,056 INFO Out dated connection ,size=0 + +2025-09-24 10:51:52,056 INFO Connection check task end + +2025-09-24 10:51:53,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:55,057 INFO Connection check task start + +2025-09-24 10:51:55,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:55,057 INFO Out dated connection ,size=0 + +2025-09-24 10:51:55,057 INFO Connection check task end + +2025-09-24 10:51:56,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:51:58,057 INFO Connection check task start + +2025-09-24 10:51:58,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:51:58,057 INFO Out dated connection ,size=0 + +2025-09-24 10:51:58,057 INFO Connection check task end + +2025-09-24 10:51:59,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:01,058 INFO Connection check task start + +2025-09-24 10:52:01,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:01,058 INFO Out dated connection ,size=0 + +2025-09-24 10:52:01,058 INFO Connection check task end + +2025-09-24 10:52:02,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:04,060 INFO Connection check task start + +2025-09-24 10:52:04,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:04,060 INFO Out dated connection ,size=0 + +2025-09-24 10:52:04,060 INFO Connection check task end + +2025-09-24 10:52:05,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:07,060 INFO Connection check task start + +2025-09-24 10:52:07,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:07,061 INFO Out dated connection ,size=0 + +2025-09-24 10:52:07,061 INFO Connection check task end + +2025-09-24 10:52:08,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:10,062 INFO Connection check task start + +2025-09-24 10:52:10,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:10,062 INFO Out dated connection ,size=0 + +2025-09-24 10:52:10,062 INFO Connection check task end + +2025-09-24 10:52:11,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:13,063 INFO Connection check task start + +2025-09-24 10:52:13,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:13,064 INFO Out dated connection ,size=0 + +2025-09-24 10:52:13,064 INFO Connection check task end + +2025-09-24 10:52:14,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:16,064 INFO Connection check task start + +2025-09-24 10:52:16,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:16,064 INFO Out dated connection ,size=0 + +2025-09-24 10:52:16,065 INFO Connection check task end + +2025-09-24 10:52:17,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:19,067 INFO Connection check task start + +2025-09-24 10:52:19,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:19,067 INFO Out dated connection ,size=0 + +2025-09-24 10:52:19,067 INFO Connection check task end + +2025-09-24 10:52:20,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:22,068 INFO Connection check task start + +2025-09-24 10:52:22,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:22,069 INFO Out dated connection ,size=0 + +2025-09-24 10:52:22,069 INFO Connection check task end + +2025-09-24 10:52:23,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:25,071 INFO Connection check task start + +2025-09-24 10:52:25,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:25,071 INFO Out dated connection ,size=0 + +2025-09-24 10:52:25,071 INFO Connection check task end + +2025-09-24 10:52:26,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:28,073 INFO Connection check task start + +2025-09-24 10:52:28,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:28,073 INFO Out dated connection ,size=0 + +2025-09-24 10:52:28,073 INFO Connection check task end + +2025-09-24 10:52:29,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:31,073 INFO Connection check task start + +2025-09-24 10:52:31,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:31,074 INFO Out dated connection ,size=0 + +2025-09-24 10:52:31,074 INFO Connection check task end + +2025-09-24 10:52:32,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:34,074 INFO Connection check task start + +2025-09-24 10:52:34,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:34,074 INFO Out dated connection ,size=0 + +2025-09-24 10:52:34,074 INFO Connection check task end + +2025-09-24 10:52:35,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:37,074 INFO Connection check task start + +2025-09-24 10:52:37,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:37,075 INFO Out dated connection ,size=0 + +2025-09-24 10:52:37,075 INFO Connection check task end + +2025-09-24 10:52:38,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:40,075 INFO Connection check task start + +2025-09-24 10:52:40,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:40,075 INFO Out dated connection ,size=0 + +2025-09-24 10:52:40,075 INFO Connection check task end + +2025-09-24 10:52:41,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:43,075 INFO Connection check task start + +2025-09-24 10:52:43,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:43,076 INFO Out dated connection ,size=0 + +2025-09-24 10:52:43,076 INFO Connection check task end + +2025-09-24 10:52:44,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:46,076 INFO Connection check task start + +2025-09-24 10:52:46,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:46,076 INFO Out dated connection ,size=0 + +2025-09-24 10:52:46,076 INFO Connection check task end + +2025-09-24 10:52:47,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:49,077 INFO Connection check task start + +2025-09-24 10:52:49,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:49,077 INFO Out dated connection ,size=0 + +2025-09-24 10:52:49,077 INFO Connection check task end + +2025-09-24 10:52:50,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:52,078 INFO Connection check task start + +2025-09-24 10:52:52,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:52,078 INFO Out dated connection ,size=0 + +2025-09-24 10:52:52,078 INFO Connection check task end + +2025-09-24 10:52:53,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:55,080 INFO Connection check task start + +2025-09-24 10:52:55,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:55,080 INFO Out dated connection ,size=0 + +2025-09-24 10:52:55,080 INFO Connection check task end + +2025-09-24 10:52:56,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:52:58,082 INFO Connection check task start + +2025-09-24 10:52:58,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:52:58,082 INFO Out dated connection ,size=0 + +2025-09-24 10:52:58,082 INFO Connection check task end + +2025-09-24 10:52:59,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:01,082 INFO Connection check task start + +2025-09-24 10:53:01,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:01,083 INFO Out dated connection ,size=0 + +2025-09-24 10:53:01,083 INFO Connection check task end + +2025-09-24 10:53:02,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:04,084 INFO Connection check task start + +2025-09-24 10:53:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:04,085 INFO Out dated connection ,size=0 + +2025-09-24 10:53:04,085 INFO Connection check task end + +2025-09-24 10:53:05,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:07,087 INFO Connection check task start + +2025-09-24 10:53:07,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:07,087 INFO Out dated connection ,size=0 + +2025-09-24 10:53:07,087 INFO Connection check task end + +2025-09-24 10:53:08,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:10,087 INFO Connection check task start + +2025-09-24 10:53:10,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:10,087 INFO Out dated connection ,size=0 + +2025-09-24 10:53:10,087 INFO Connection check task end + +2025-09-24 10:53:11,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:13,090 INFO Connection check task start + +2025-09-24 10:53:13,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:13,090 INFO Out dated connection ,size=0 + +2025-09-24 10:53:13,090 INFO Connection check task end + +2025-09-24 10:53:14,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:16,092 INFO Connection check task start + +2025-09-24 10:53:16,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:16,092 INFO Out dated connection ,size=0 + +2025-09-24 10:53:16,092 INFO Connection check task end + +2025-09-24 10:53:17,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:19,093 INFO Connection check task start + +2025-09-24 10:53:19,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:19,094 INFO Out dated connection ,size=0 + +2025-09-24 10:53:19,094 INFO Connection check task end + +2025-09-24 10:53:20,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:22,094 INFO Connection check task start + +2025-09-24 10:53:22,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:22,094 INFO Out dated connection ,size=0 + +2025-09-24 10:53:22,094 INFO Connection check task end + +2025-09-24 10:53:23,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:25,095 INFO Connection check task start + +2025-09-24 10:53:25,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:25,095 INFO Out dated connection ,size=0 + +2025-09-24 10:53:25,095 INFO Connection check task end + +2025-09-24 10:53:26,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:28,096 INFO Connection check task start + +2025-09-24 10:53:28,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:28,096 INFO Out dated connection ,size=0 + +2025-09-24 10:53:28,096 INFO Connection check task end + +2025-09-24 10:53:29,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:31,098 INFO Connection check task start + +2025-09-24 10:53:31,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:31,098 INFO Out dated connection ,size=0 + +2025-09-24 10:53:31,098 INFO Connection check task end + +2025-09-24 10:53:32,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:34,099 INFO Connection check task start + +2025-09-24 10:53:34,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:34,099 INFO Out dated connection ,size=0 + +2025-09-24 10:53:34,099 INFO Connection check task end + +2025-09-24 10:53:35,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:37,101 INFO Connection check task start + +2025-09-24 10:53:37,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:37,101 INFO Out dated connection ,size=0 + +2025-09-24 10:53:37,101 INFO Connection check task end + +2025-09-24 10:53:38,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:40,103 INFO Connection check task start + +2025-09-24 10:53:40,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:40,104 INFO Out dated connection ,size=0 + +2025-09-24 10:53:40,104 INFO Connection check task end + +2025-09-24 10:53:41,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:43,104 INFO Connection check task start + +2025-09-24 10:53:43,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:43,104 INFO Out dated connection ,size=0 + +2025-09-24 10:53:43,104 INFO Connection check task end + +2025-09-24 10:53:44,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:46,105 INFO Connection check task start + +2025-09-24 10:53:46,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:46,105 INFO Out dated connection ,size=0 + +2025-09-24 10:53:46,105 INFO Connection check task end + +2025-09-24 10:53:47,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:49,106 INFO Connection check task start + +2025-09-24 10:53:49,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:49,106 INFO Out dated connection ,size=0 + +2025-09-24 10:53:49,106 INFO Connection check task end + +2025-09-24 10:53:50,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:52,108 INFO Connection check task start + +2025-09-24 10:53:52,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:52,108 INFO Out dated connection ,size=0 + +2025-09-24 10:53:52,108 INFO Connection check task end + +2025-09-24 10:53:53,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:55,110 INFO Connection check task start + +2025-09-24 10:53:55,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:55,110 INFO Out dated connection ,size=0 + +2025-09-24 10:53:55,110 INFO Connection check task end + +2025-09-24 10:53:56,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:53:58,112 INFO Connection check task start + +2025-09-24 10:53:58,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:53:58,112 INFO Out dated connection ,size=0 + +2025-09-24 10:53:58,112 INFO Connection check task end + +2025-09-24 10:53:59,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:01,113 INFO Connection check task start + +2025-09-24 10:54:01,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:01,113 INFO Out dated connection ,size=0 + +2025-09-24 10:54:01,113 INFO Connection check task end + +2025-09-24 10:54:02,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:04,115 INFO Connection check task start + +2025-09-24 10:54:04,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:04,115 INFO Out dated connection ,size=0 + +2025-09-24 10:54:04,115 INFO Connection check task end + +2025-09-24 10:54:05,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:07,116 INFO Connection check task start + +2025-09-24 10:54:07,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:07,116 INFO Out dated connection ,size=0 + +2025-09-24 10:54:07,117 INFO Connection check task end + +2025-09-24 10:54:08,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:10,119 INFO Connection check task start + +2025-09-24 10:54:10,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:10,119 INFO Out dated connection ,size=0 + +2025-09-24 10:54:10,119 INFO Connection check task end + +2025-09-24 10:54:11,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:13,120 INFO Connection check task start + +2025-09-24 10:54:13,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:13,121 INFO Out dated connection ,size=0 + +2025-09-24 10:54:13,121 INFO Connection check task end + +2025-09-24 10:54:14,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:16,121 INFO Connection check task start + +2025-09-24 10:54:16,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:16,121 INFO Out dated connection ,size=0 + +2025-09-24 10:54:16,121 INFO Connection check task end + +2025-09-24 10:54:17,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:19,122 INFO Connection check task start + +2025-09-24 10:54:19,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:19,122 INFO Out dated connection ,size=0 + +2025-09-24 10:54:19,122 INFO Connection check task end + +2025-09-24 10:54:20,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:22,122 INFO Connection check task start + +2025-09-24 10:54:22,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:22,123 INFO Out dated connection ,size=0 + +2025-09-24 10:54:22,123 INFO Connection check task end + +2025-09-24 10:54:23,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:25,124 INFO Connection check task start + +2025-09-24 10:54:25,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:25,125 INFO Out dated connection ,size=0 + +2025-09-24 10:54:25,125 INFO Connection check task end + +2025-09-24 10:54:26,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:28,126 INFO Connection check task start + +2025-09-24 10:54:28,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:28,126 INFO Out dated connection ,size=0 + +2025-09-24 10:54:28,126 INFO Connection check task end + +2025-09-24 10:54:29,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:31,126 INFO Connection check task start + +2025-09-24 10:54:31,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:31,126 INFO Out dated connection ,size=0 + +2025-09-24 10:54:31,126 INFO Connection check task end + +2025-09-24 10:54:32,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:34,127 INFO Connection check task start + +2025-09-24 10:54:34,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:34,127 INFO Out dated connection ,size=0 + +2025-09-24 10:54:34,127 INFO Connection check task end + +2025-09-24 10:54:35,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:37,128 INFO Connection check task start + +2025-09-24 10:54:37,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:37,128 INFO Out dated connection ,size=0 + +2025-09-24 10:54:37,128 INFO Connection check task end + +2025-09-24 10:54:38,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:40,128 INFO Connection check task start + +2025-09-24 10:54:40,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:40,128 INFO Out dated connection ,size=0 + +2025-09-24 10:54:40,129 INFO Connection check task end + +2025-09-24 10:54:41,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:43,129 INFO Connection check task start + +2025-09-24 10:54:43,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:43,130 INFO Out dated connection ,size=0 + +2025-09-24 10:54:43,130 INFO Connection check task end + +2025-09-24 10:54:44,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:46,132 INFO Connection check task start + +2025-09-24 10:54:46,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:46,132 INFO Out dated connection ,size=0 + +2025-09-24 10:54:46,132 INFO Connection check task end + +2025-09-24 10:54:47,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:49,133 INFO Connection check task start + +2025-09-24 10:54:49,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:49,133 INFO Out dated connection ,size=0 + +2025-09-24 10:54:49,133 INFO Connection check task end + +2025-09-24 10:54:50,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:52,134 INFO Connection check task start + +2025-09-24 10:54:52,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:52,134 INFO Out dated connection ,size=0 + +2025-09-24 10:54:52,134 INFO Connection check task end + +2025-09-24 10:54:53,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:55,134 INFO Connection check task start + +2025-09-24 10:54:55,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:55,135 INFO Out dated connection ,size=0 + +2025-09-24 10:54:55,135 INFO Connection check task end + +2025-09-24 10:54:56,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:54:58,135 INFO Connection check task start + +2025-09-24 10:54:58,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:54:58,135 INFO Out dated connection ,size=0 + +2025-09-24 10:54:58,135 INFO Connection check task end + +2025-09-24 10:54:59,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:01,135 INFO Connection check task start + +2025-09-24 10:55:01,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:01,135 INFO Out dated connection ,size=0 + +2025-09-24 10:55:01,135 INFO Connection check task end + +2025-09-24 10:55:02,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:04,138 INFO Connection check task start + +2025-09-24 10:55:04,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:04,138 INFO Out dated connection ,size=0 + +2025-09-24 10:55:04,138 INFO Connection check task end + +2025-09-24 10:55:05,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:07,138 INFO Connection check task start + +2025-09-24 10:55:07,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:07,138 INFO Out dated connection ,size=0 + +2025-09-24 10:55:07,138 INFO Connection check task end + +2025-09-24 10:55:08,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:10,140 INFO Connection check task start + +2025-09-24 10:55:10,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:10,141 INFO Out dated connection ,size=0 + +2025-09-24 10:55:10,141 INFO Connection check task end + +2025-09-24 10:55:11,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:13,141 INFO Connection check task start + +2025-09-24 10:55:13,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:13,141 INFO Out dated connection ,size=0 + +2025-09-24 10:55:13,141 INFO Connection check task end + +2025-09-24 10:55:14,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:16,143 INFO Connection check task start + +2025-09-24 10:55:16,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:16,143 INFO Out dated connection ,size=0 + +2025-09-24 10:55:16,143 INFO Connection check task end + +2025-09-24 10:55:17,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:19,146 INFO Connection check task start + +2025-09-24 10:55:19,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:19,146 INFO Out dated connection ,size=0 + +2025-09-24 10:55:19,146 INFO Connection check task end + +2025-09-24 10:55:20,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:22,146 INFO Connection check task start + +2025-09-24 10:55:22,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:22,146 INFO Out dated connection ,size=0 + +2025-09-24 10:55:22,146 INFO Connection check task end + +2025-09-24 10:55:23,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:25,148 INFO Connection check task start + +2025-09-24 10:55:25,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:25,149 INFO Out dated connection ,size=0 + +2025-09-24 10:55:25,149 INFO Connection check task end + +2025-09-24 10:55:26,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:28,149 INFO Connection check task start + +2025-09-24 10:55:28,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:28,149 INFO Out dated connection ,size=0 + +2025-09-24 10:55:28,149 INFO Connection check task end + +2025-09-24 10:55:29,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:31,150 INFO Connection check task start + +2025-09-24 10:55:31,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:31,150 INFO Out dated connection ,size=0 + +2025-09-24 10:55:31,150 INFO Connection check task end + +2025-09-24 10:55:32,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:34,150 INFO Connection check task start + +2025-09-24 10:55:34,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:34,150 INFO Out dated connection ,size=0 + +2025-09-24 10:55:34,151 INFO Connection check task end + +2025-09-24 10:55:35,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:37,151 INFO Connection check task start + +2025-09-24 10:55:37,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:37,151 INFO Out dated connection ,size=0 + +2025-09-24 10:55:37,151 INFO Connection check task end + +2025-09-24 10:55:38,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:40,153 INFO Connection check task start + +2025-09-24 10:55:40,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:40,153 INFO Out dated connection ,size=0 + +2025-09-24 10:55:40,153 INFO Connection check task end + +2025-09-24 10:55:41,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:43,153 INFO Connection check task start + +2025-09-24 10:55:43,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:43,153 INFO Out dated connection ,size=0 + +2025-09-24 10:55:43,153 INFO Connection check task end + +2025-09-24 10:55:44,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:46,155 INFO Connection check task start + +2025-09-24 10:55:46,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:46,155 INFO Out dated connection ,size=0 + +2025-09-24 10:55:46,155 INFO Connection check task end + +2025-09-24 10:55:47,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:49,157 INFO Connection check task start + +2025-09-24 10:55:49,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:49,157 INFO Out dated connection ,size=0 + +2025-09-24 10:55:49,157 INFO Connection check task end + +2025-09-24 10:55:50,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:52,159 INFO Connection check task start + +2025-09-24 10:55:52,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:52,159 INFO Out dated connection ,size=0 + +2025-09-24 10:55:52,159 INFO Connection check task end + +2025-09-24 10:55:53,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:55,160 INFO Connection check task start + +2025-09-24 10:55:55,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:55,160 INFO Out dated connection ,size=0 + +2025-09-24 10:55:55,160 INFO Connection check task end + +2025-09-24 10:55:56,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:55:58,160 INFO Connection check task start + +2025-09-24 10:55:58,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:55:58,160 INFO Out dated connection ,size=0 + +2025-09-24 10:55:58,160 INFO Connection check task end + +2025-09-24 10:55:59,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:01,161 INFO Connection check task start + +2025-09-24 10:56:01,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:01,161 INFO Out dated connection ,size=0 + +2025-09-24 10:56:01,161 INFO Connection check task end + +2025-09-24 10:56:02,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:04,162 INFO Connection check task start + +2025-09-24 10:56:04,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:04,162 INFO Out dated connection ,size=0 + +2025-09-24 10:56:04,162 INFO Connection check task end + +2025-09-24 10:56:05,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:07,163 INFO Connection check task start + +2025-09-24 10:56:07,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:07,163 INFO Out dated connection ,size=0 + +2025-09-24 10:56:07,163 INFO Connection check task end + +2025-09-24 10:56:08,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:10,163 INFO Connection check task start + +2025-09-24 10:56:10,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:10,163 INFO Out dated connection ,size=0 + +2025-09-24 10:56:10,163 INFO Connection check task end + +2025-09-24 10:56:11,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:13,164 INFO Connection check task start + +2025-09-24 10:56:13,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:13,164 INFO Out dated connection ,size=0 + +2025-09-24 10:56:13,164 INFO Connection check task end + +2025-09-24 10:56:14,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:16,165 INFO Connection check task start + +2025-09-24 10:56:16,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:16,165 INFO Out dated connection ,size=0 + +2025-09-24 10:56:16,165 INFO Connection check task end + +2025-09-24 10:56:17,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:19,166 INFO Connection check task start + +2025-09-24 10:56:19,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:19,167 INFO Out dated connection ,size=0 + +2025-09-24 10:56:19,167 INFO Connection check task end + +2025-09-24 10:56:20,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:22,168 INFO Connection check task start + +2025-09-24 10:56:22,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:22,169 INFO Out dated connection ,size=0 + +2025-09-24 10:56:22,169 INFO Connection check task end + +2025-09-24 10:56:23,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:25,169 INFO Connection check task start + +2025-09-24 10:56:25,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:25,169 INFO Out dated connection ,size=0 + +2025-09-24 10:56:25,169 INFO Connection check task end + +2025-09-24 10:56:26,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:28,170 INFO Connection check task start + +2025-09-24 10:56:28,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:28,170 INFO Out dated connection ,size=0 + +2025-09-24 10:56:28,170 INFO Connection check task end + +2025-09-24 10:56:29,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:31,170 INFO Connection check task start + +2025-09-24 10:56:31,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:31,170 INFO Out dated connection ,size=0 + +2025-09-24 10:56:31,171 INFO Connection check task end + +2025-09-24 10:56:32,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:34,172 INFO Connection check task start + +2025-09-24 10:56:34,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:34,172 INFO Out dated connection ,size=0 + +2025-09-24 10:56:34,172 INFO Connection check task end + +2025-09-24 10:56:35,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:37,174 INFO Connection check task start + +2025-09-24 10:56:37,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:37,174 INFO Out dated connection ,size=0 + +2025-09-24 10:56:37,174 INFO Connection check task end + +2025-09-24 10:56:38,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:40,174 INFO Connection check task start + +2025-09-24 10:56:40,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:40,175 INFO Out dated connection ,size=0 + +2025-09-24 10:56:40,175 INFO Connection check task end + +2025-09-24 10:56:41,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:43,175 INFO Connection check task start + +2025-09-24 10:56:43,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:43,175 INFO Out dated connection ,size=0 + +2025-09-24 10:56:43,175 INFO Connection check task end + +2025-09-24 10:56:44,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:46,177 INFO Connection check task start + +2025-09-24 10:56:46,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:46,177 INFO Out dated connection ,size=0 + +2025-09-24 10:56:46,177 INFO Connection check task end + +2025-09-24 10:56:47,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:49,178 INFO Connection check task start + +2025-09-24 10:56:49,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:49,178 INFO Out dated connection ,size=0 + +2025-09-24 10:56:49,178 INFO Connection check task end + +2025-09-24 10:56:50,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:52,178 INFO Connection check task start + +2025-09-24 10:56:52,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:52,178 INFO Out dated connection ,size=0 + +2025-09-24 10:56:52,178 INFO Connection check task end + +2025-09-24 10:56:53,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:55,180 INFO Connection check task start + +2025-09-24 10:56:55,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:55,181 INFO Out dated connection ,size=0 + +2025-09-24 10:56:55,181 INFO Connection check task end + +2025-09-24 10:56:56,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:56:58,182 INFO Connection check task start + +2025-09-24 10:56:58,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:56:58,182 INFO Out dated connection ,size=0 + +2025-09-24 10:56:58,182 INFO Connection check task end + +2025-09-24 10:56:59,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:01,182 INFO Connection check task start + +2025-09-24 10:57:01,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:01,183 INFO Out dated connection ,size=0 + +2025-09-24 10:57:01,183 INFO Connection check task end + +2025-09-24 10:57:02,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:04,183 INFO Connection check task start + +2025-09-24 10:57:04,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:04,183 INFO Out dated connection ,size=0 + +2025-09-24 10:57:04,183 INFO Connection check task end + +2025-09-24 10:57:05,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:07,183 INFO Connection check task start + +2025-09-24 10:57:07,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:07,183 INFO Out dated connection ,size=0 + +2025-09-24 10:57:07,183 INFO Connection check task end + +2025-09-24 10:57:08,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:10,184 INFO Connection check task start + +2025-09-24 10:57:10,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:10,184 INFO Out dated connection ,size=0 + +2025-09-24 10:57:10,184 INFO Connection check task end + +2025-09-24 10:57:11,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:13,184 INFO Connection check task start + +2025-09-24 10:57:13,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:13,184 INFO Out dated connection ,size=0 + +2025-09-24 10:57:13,184 INFO Connection check task end + +2025-09-24 10:57:14,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:16,185 INFO Connection check task start + +2025-09-24 10:57:16,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:16,186 INFO Out dated connection ,size=0 + +2025-09-24 10:57:16,186 INFO Connection check task end + +2025-09-24 10:57:17,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:19,186 INFO Connection check task start + +2025-09-24 10:57:19,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:19,186 INFO Out dated connection ,size=0 + +2025-09-24 10:57:19,186 INFO Connection check task end + +2025-09-24 10:57:20,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:22,187 INFO Connection check task start + +2025-09-24 10:57:22,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:22,187 INFO Out dated connection ,size=0 + +2025-09-24 10:57:22,187 INFO Connection check task end + +2025-09-24 10:57:23,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:25,187 INFO Connection check task start + +2025-09-24 10:57:25,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:25,187 INFO Out dated connection ,size=0 + +2025-09-24 10:57:25,188 INFO Connection check task end + +2025-09-24 10:57:26,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:28,188 INFO Connection check task start + +2025-09-24 10:57:28,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:28,188 INFO Out dated connection ,size=0 + +2025-09-24 10:57:28,188 INFO Connection check task end + +2025-09-24 10:57:29,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:31,189 INFO Connection check task start + +2025-09-24 10:57:31,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:31,189 INFO Out dated connection ,size=0 + +2025-09-24 10:57:31,189 INFO Connection check task end + +2025-09-24 10:57:32,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:34,191 INFO Connection check task start + +2025-09-24 10:57:34,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:34,191 INFO Out dated connection ,size=0 + +2025-09-24 10:57:34,192 INFO Connection check task end + +2025-09-24 10:57:35,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:37,194 INFO Connection check task start + +2025-09-24 10:57:37,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:37,194 INFO Out dated connection ,size=0 + +2025-09-24 10:57:37,194 INFO Connection check task end + +2025-09-24 10:57:38,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:40,195 INFO Connection check task start + +2025-09-24 10:57:40,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:40,195 INFO Out dated connection ,size=0 + +2025-09-24 10:57:40,195 INFO Connection check task end + +2025-09-24 10:57:41,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:43,197 INFO Connection check task start + +2025-09-24 10:57:43,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:43,197 INFO Out dated connection ,size=0 + +2025-09-24 10:57:43,197 INFO Connection check task end + +2025-09-24 10:57:44,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:46,198 INFO Connection check task start + +2025-09-24 10:57:46,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:46,198 INFO Out dated connection ,size=0 + +2025-09-24 10:57:46,198 INFO Connection check task end + +2025-09-24 10:57:47,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:49,199 INFO Connection check task start + +2025-09-24 10:57:49,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:49,199 INFO Out dated connection ,size=0 + +2025-09-24 10:57:49,200 INFO Connection check task end + +2025-09-24 10:57:50,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:52,200 INFO Connection check task start + +2025-09-24 10:57:52,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:52,200 INFO Out dated connection ,size=0 + +2025-09-24 10:57:52,200 INFO Connection check task end + +2025-09-24 10:57:53,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:55,202 INFO Connection check task start + +2025-09-24 10:57:55,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:55,203 INFO Out dated connection ,size=0 + +2025-09-24 10:57:55,203 INFO Connection check task end + +2025-09-24 10:57:56,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:57:58,203 INFO Connection check task start + +2025-09-24 10:57:58,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:57:58,203 INFO Out dated connection ,size=0 + +2025-09-24 10:57:58,203 INFO Connection check task end + +2025-09-24 10:57:59,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:01,205 INFO Connection check task start + +2025-09-24 10:58:01,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:01,205 INFO Out dated connection ,size=0 + +2025-09-24 10:58:01,205 INFO Connection check task end + +2025-09-24 10:58:02,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:04,205 INFO Connection check task start + +2025-09-24 10:58:04,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:04,206 INFO Out dated connection ,size=0 + +2025-09-24 10:58:04,206 INFO Connection check task end + +2025-09-24 10:58:05,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:07,207 INFO Connection check task start + +2025-09-24 10:58:07,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:07,207 INFO Out dated connection ,size=0 + +2025-09-24 10:58:07,207 INFO Connection check task end + +2025-09-24 10:58:08,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:10,208 INFO Connection check task start + +2025-09-24 10:58:10,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:10,208 INFO Out dated connection ,size=0 + +2025-09-24 10:58:10,208 INFO Connection check task end + +2025-09-24 10:58:11,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:13,208 INFO Connection check task start + +2025-09-24 10:58:13,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:13,209 INFO Out dated connection ,size=0 + +2025-09-24 10:58:13,209 INFO Connection check task end + +2025-09-24 10:58:14,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:16,209 INFO Connection check task start + +2025-09-24 10:58:16,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:16,209 INFO Out dated connection ,size=0 + +2025-09-24 10:58:16,209 INFO Connection check task end + +2025-09-24 10:58:17,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:19,211 INFO Connection check task start + +2025-09-24 10:58:19,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:19,211 INFO Out dated connection ,size=0 + +2025-09-24 10:58:19,211 INFO Connection check task end + +2025-09-24 10:58:20,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:22,213 INFO Connection check task start + +2025-09-24 10:58:22,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:22,213 INFO Out dated connection ,size=0 + +2025-09-24 10:58:22,213 INFO Connection check task end + +2025-09-24 10:58:23,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:25,214 INFO Connection check task start + +2025-09-24 10:58:25,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:25,214 INFO Out dated connection ,size=0 + +2025-09-24 10:58:25,214 INFO Connection check task end + +2025-09-24 10:58:26,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:28,215 INFO Connection check task start + +2025-09-24 10:58:28,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:28,216 INFO Out dated connection ,size=0 + +2025-09-24 10:58:28,216 INFO Connection check task end + +2025-09-24 10:58:29,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:31,216 INFO Connection check task start + +2025-09-24 10:58:31,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:31,217 INFO Out dated connection ,size=0 + +2025-09-24 10:58:31,217 INFO Connection check task end + +2025-09-24 10:58:32,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:34,217 INFO Connection check task start + +2025-09-24 10:58:34,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:34,218 INFO Out dated connection ,size=0 + +2025-09-24 10:58:34,218 INFO Connection check task end + +2025-09-24 10:58:35,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:37,219 INFO Connection check task start + +2025-09-24 10:58:37,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:37,219 INFO Out dated connection ,size=0 + +2025-09-24 10:58:37,219 INFO Connection check task end + +2025-09-24 10:58:38,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:40,220 INFO Connection check task start + +2025-09-24 10:58:40,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:40,220 INFO Out dated connection ,size=0 + +2025-09-24 10:58:40,220 INFO Connection check task end + +2025-09-24 10:58:41,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:43,221 INFO Connection check task start + +2025-09-24 10:58:43,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:43,221 INFO Out dated connection ,size=0 + +2025-09-24 10:58:43,221 INFO Connection check task end + +2025-09-24 10:58:44,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:46,223 INFO Connection check task start + +2025-09-24 10:58:46,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:46,224 INFO Out dated connection ,size=0 + +2025-09-24 10:58:46,224 INFO Connection check task end + +2025-09-24 10:58:47,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:49,224 INFO Connection check task start + +2025-09-24 10:58:49,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:49,224 INFO Out dated connection ,size=0 + +2025-09-24 10:58:49,224 INFO Connection check task end + +2025-09-24 10:58:50,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:52,226 INFO Connection check task start + +2025-09-24 10:58:52,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:52,226 INFO Out dated connection ,size=0 + +2025-09-24 10:58:52,226 INFO Connection check task end + +2025-09-24 10:58:53,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:55,227 INFO Connection check task start + +2025-09-24 10:58:55,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:55,227 INFO Out dated connection ,size=0 + +2025-09-24 10:58:55,227 INFO Connection check task end + +2025-09-24 10:58:56,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:58:58,229 INFO Connection check task start + +2025-09-24 10:58:58,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:58:58,229 INFO Out dated connection ,size=0 + +2025-09-24 10:58:58,230 INFO Connection check task end + +2025-09-24 10:58:59,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:01,231 INFO Connection check task start + +2025-09-24 10:59:01,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:01,231 INFO Out dated connection ,size=0 + +2025-09-24 10:59:01,231 INFO Connection check task end + +2025-09-24 10:59:02,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:04,233 INFO Connection check task start + +2025-09-24 10:59:04,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:04,233 INFO Out dated connection ,size=0 + +2025-09-24 10:59:04,233 INFO Connection check task end + +2025-09-24 10:59:05,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:07,234 INFO Connection check task start + +2025-09-24 10:59:07,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:07,234 INFO Out dated connection ,size=0 + +2025-09-24 10:59:07,234 INFO Connection check task end + +2025-09-24 10:59:08,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:10,235 INFO Connection check task start + +2025-09-24 10:59:10,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:10,235 INFO Out dated connection ,size=0 + +2025-09-24 10:59:10,235 INFO Connection check task end + +2025-09-24 10:59:11,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:13,237 INFO Connection check task start + +2025-09-24 10:59:13,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:13,237 INFO Out dated connection ,size=0 + +2025-09-24 10:59:13,237 INFO Connection check task end + +2025-09-24 10:59:14,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:16,237 INFO Connection check task start + +2025-09-24 10:59:16,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:16,237 INFO Out dated connection ,size=0 + +2025-09-24 10:59:16,237 INFO Connection check task end + +2025-09-24 10:59:17,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:19,238 INFO Connection check task start + +2025-09-24 10:59:19,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:19,238 INFO Out dated connection ,size=0 + +2025-09-24 10:59:19,238 INFO Connection check task end + +2025-09-24 10:59:20,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:22,239 INFO Connection check task start + +2025-09-24 10:59:22,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:22,239 INFO Out dated connection ,size=0 + +2025-09-24 10:59:22,239 INFO Connection check task end + +2025-09-24 10:59:23,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:25,240 INFO Connection check task start + +2025-09-24 10:59:25,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:25,240 INFO Out dated connection ,size=0 + +2025-09-24 10:59:25,240 INFO Connection check task end + +2025-09-24 10:59:26,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:28,242 INFO Connection check task start + +2025-09-24 10:59:28,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:28,242 INFO Out dated connection ,size=0 + +2025-09-24 10:59:28,242 INFO Connection check task end + +2025-09-24 10:59:29,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:31,243 INFO Connection check task start + +2025-09-24 10:59:31,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:31,243 INFO Out dated connection ,size=0 + +2025-09-24 10:59:31,243 INFO Connection check task end + +2025-09-24 10:59:32,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:34,244 INFO Connection check task start + +2025-09-24 10:59:34,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:34,244 INFO Out dated connection ,size=0 + +2025-09-24 10:59:34,244 INFO Connection check task end + +2025-09-24 10:59:35,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:37,244 INFO Connection check task start + +2025-09-24 10:59:37,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:37,244 INFO Out dated connection ,size=0 + +2025-09-24 10:59:37,244 INFO Connection check task end + +2025-09-24 10:59:38,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:40,244 INFO Connection check task start + +2025-09-24 10:59:40,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:40,245 INFO Out dated connection ,size=0 + +2025-09-24 10:59:40,245 INFO Connection check task end + +2025-09-24 10:59:41,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:43,245 INFO Connection check task start + +2025-09-24 10:59:43,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:43,245 INFO Out dated connection ,size=0 + +2025-09-24 10:59:43,245 INFO Connection check task end + +2025-09-24 10:59:44,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:46,246 INFO Connection check task start + +2025-09-24 10:59:46,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:46,246 INFO Out dated connection ,size=0 + +2025-09-24 10:59:46,246 INFO Connection check task end + +2025-09-24 10:59:47,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:49,247 INFO Connection check task start + +2025-09-24 10:59:49,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:49,247 INFO Out dated connection ,size=0 + +2025-09-24 10:59:49,247 INFO Connection check task end + +2025-09-24 10:59:50,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:52,248 INFO Connection check task start + +2025-09-24 10:59:52,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:52,248 INFO Out dated connection ,size=0 + +2025-09-24 10:59:52,248 INFO Connection check task end + +2025-09-24 10:59:53,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:55,249 INFO Connection check task start + +2025-09-24 10:59:55,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:55,249 INFO Out dated connection ,size=0 + +2025-09-24 10:59:55,250 INFO Connection check task end + +2025-09-24 10:59:56,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 10:59:58,250 INFO Connection check task start + +2025-09-24 10:59:58,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 10:59:58,250 INFO Out dated connection ,size=0 + +2025-09-24 10:59:58,250 INFO Connection check task end + +2025-09-24 10:59:59,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:01,251 INFO Connection check task start + +2025-09-24 11:00:01,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:01,251 INFO Out dated connection ,size=0 + +2025-09-24 11:00:01,251 INFO Connection check task end + +2025-09-24 11:00:02,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:04,251 INFO Connection check task start + +2025-09-24 11:00:04,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:04,251 INFO Out dated connection ,size=0 + +2025-09-24 11:00:04,251 INFO Connection check task end + +2025-09-24 11:00:05,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:07,252 INFO Connection check task start + +2025-09-24 11:00:07,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:07,252 INFO Out dated connection ,size=0 + +2025-09-24 11:00:07,252 INFO Connection check task end + +2025-09-24 11:00:08,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:10,252 INFO Connection check task start + +2025-09-24 11:00:10,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:10,253 INFO Out dated connection ,size=0 + +2025-09-24 11:00:10,253 INFO Connection check task end + +2025-09-24 11:00:11,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:13,253 INFO Connection check task start + +2025-09-24 11:00:13,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:13,253 INFO Out dated connection ,size=0 + +2025-09-24 11:00:13,253 INFO Connection check task end + +2025-09-24 11:00:14,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:16,254 INFO Connection check task start + +2025-09-24 11:00:16,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:16,254 INFO Out dated connection ,size=0 + +2025-09-24 11:00:16,254 INFO Connection check task end + +2025-09-24 11:00:17,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:19,255 INFO Connection check task start + +2025-09-24 11:00:19,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:19,255 INFO Out dated connection ,size=0 + +2025-09-24 11:00:19,255 INFO Connection check task end + +2025-09-24 11:00:20,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:22,255 INFO Connection check task start + +2025-09-24 11:00:22,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:22,255 INFO Out dated connection ,size=0 + +2025-09-24 11:00:22,256 INFO Connection check task end + +2025-09-24 11:00:23,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:25,256 INFO Connection check task start + +2025-09-24 11:00:25,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:25,256 INFO Out dated connection ,size=0 + +2025-09-24 11:00:25,256 INFO Connection check task end + +2025-09-24 11:00:26,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:28,256 INFO Connection check task start + +2025-09-24 11:00:28,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:28,256 INFO Out dated connection ,size=0 + +2025-09-24 11:00:28,256 INFO Connection check task end + +2025-09-24 11:00:29,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:31,257 INFO Connection check task start + +2025-09-24 11:00:31,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:31,257 INFO Out dated connection ,size=0 + +2025-09-24 11:00:31,257 INFO Connection check task end + +2025-09-24 11:00:32,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:34,259 INFO Connection check task start + +2025-09-24 11:00:34,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:34,259 INFO Out dated connection ,size=0 + +2025-09-24 11:00:34,259 INFO Connection check task end + +2025-09-24 11:00:35,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:37,261 INFO Connection check task start + +2025-09-24 11:00:37,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:37,261 INFO Out dated connection ,size=0 + +2025-09-24 11:00:37,261 INFO Connection check task end + +2025-09-24 11:00:38,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:40,261 INFO Connection check task start + +2025-09-24 11:00:40,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:40,261 INFO Out dated connection ,size=0 + +2025-09-24 11:00:40,261 INFO Connection check task end + +2025-09-24 11:00:41,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:43,262 INFO Connection check task start + +2025-09-24 11:00:43,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:43,262 INFO Out dated connection ,size=0 + +2025-09-24 11:00:43,262 INFO Connection check task end + +2025-09-24 11:00:44,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:46,263 INFO Connection check task start + +2025-09-24 11:00:46,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:46,263 INFO Out dated connection ,size=0 + +2025-09-24 11:00:46,263 INFO Connection check task end + +2025-09-24 11:00:47,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:49,264 INFO Connection check task start + +2025-09-24 11:00:49,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:49,264 INFO Out dated connection ,size=0 + +2025-09-24 11:00:49,264 INFO Connection check task end + +2025-09-24 11:00:50,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:52,264 INFO Connection check task start + +2025-09-24 11:00:52,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:52,264 INFO Out dated connection ,size=0 + +2025-09-24 11:00:52,264 INFO Connection check task end + +2025-09-24 11:00:53,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:55,265 INFO Connection check task start + +2025-09-24 11:00:55,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:55,265 INFO Out dated connection ,size=0 + +2025-09-24 11:00:55,265 INFO Connection check task end + +2025-09-24 11:00:56,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:00:58,265 INFO Connection check task start + +2025-09-24 11:00:58,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:00:58,265 INFO Out dated connection ,size=0 + +2025-09-24 11:00:58,266 INFO Connection check task end + +2025-09-24 11:00:59,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:01,266 INFO Connection check task start + +2025-09-24 11:01:01,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:01,266 INFO Out dated connection ,size=0 + +2025-09-24 11:01:01,266 INFO Connection check task end + +2025-09-24 11:01:02,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:04,267 INFO Connection check task start + +2025-09-24 11:01:04,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:04,268 INFO Out dated connection ,size=0 + +2025-09-24 11:01:04,268 INFO Connection check task end + +2025-09-24 11:01:05,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:07,269 INFO Connection check task start + +2025-09-24 11:01:07,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:07,269 INFO Out dated connection ,size=0 + +2025-09-24 11:01:07,269 INFO Connection check task end + +2025-09-24 11:01:08,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:10,269 INFO Connection check task start + +2025-09-24 11:01:10,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:10,269 INFO Out dated connection ,size=0 + +2025-09-24 11:01:10,269 INFO Connection check task end + +2025-09-24 11:01:11,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:13,271 INFO Connection check task start + +2025-09-24 11:01:13,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:13,271 INFO Out dated connection ,size=0 + +2025-09-24 11:01:13,271 INFO Connection check task end + +2025-09-24 11:01:14,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:16,272 INFO Connection check task start + +2025-09-24 11:01:16,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:16,272 INFO Out dated connection ,size=0 + +2025-09-24 11:01:16,273 INFO Connection check task end + +2025-09-24 11:01:17,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:19,274 INFO Connection check task start + +2025-09-24 11:01:19,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:19,275 INFO Out dated connection ,size=0 + +2025-09-24 11:01:19,275 INFO Connection check task end + +2025-09-24 11:01:20,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:22,275 INFO Connection check task start + +2025-09-24 11:01:22,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:22,276 INFO Out dated connection ,size=0 + +2025-09-24 11:01:22,276 INFO Connection check task end + +2025-09-24 11:01:23,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:25,276 INFO Connection check task start + +2025-09-24 11:01:25,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:25,276 INFO Out dated connection ,size=0 + +2025-09-24 11:01:25,276 INFO Connection check task end + +2025-09-24 11:01:26,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:28,277 INFO Connection check task start + +2025-09-24 11:01:28,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:28,277 INFO Out dated connection ,size=0 + +2025-09-24 11:01:28,277 INFO Connection check task end + +2025-09-24 11:01:29,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:31,278 INFO Connection check task start + +2025-09-24 11:01:31,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:31,278 INFO Out dated connection ,size=0 + +2025-09-24 11:01:31,278 INFO Connection check task end + +2025-09-24 11:01:32,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:34,278 INFO Connection check task start + +2025-09-24 11:01:34,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:34,278 INFO Out dated connection ,size=0 + +2025-09-24 11:01:34,278 INFO Connection check task end + +2025-09-24 11:01:35,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:37,280 INFO Connection check task start + +2025-09-24 11:01:37,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:37,280 INFO Out dated connection ,size=0 + +2025-09-24 11:01:37,281 INFO Connection check task end + +2025-09-24 11:01:38,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:40,283 INFO Connection check task start + +2025-09-24 11:01:40,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:40,283 INFO Out dated connection ,size=0 + +2025-09-24 11:01:40,283 INFO Connection check task end + +2025-09-24 11:01:41,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:43,285 INFO Connection check task start + +2025-09-24 11:01:43,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:43,285 INFO Out dated connection ,size=0 + +2025-09-24 11:01:43,285 INFO Connection check task end + +2025-09-24 11:01:44,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:46,287 INFO Connection check task start + +2025-09-24 11:01:46,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:46,287 INFO Out dated connection ,size=0 + +2025-09-24 11:01:46,288 INFO Connection check task end + +2025-09-24 11:01:47,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:49,290 INFO Connection check task start + +2025-09-24 11:01:49,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:49,290 INFO Out dated connection ,size=0 + +2025-09-24 11:01:49,290 INFO Connection check task end + +2025-09-24 11:01:50,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:52,291 INFO Connection check task start + +2025-09-24 11:01:52,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:52,291 INFO Out dated connection ,size=0 + +2025-09-24 11:01:52,291 INFO Connection check task end + +2025-09-24 11:01:53,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:55,292 INFO Connection check task start + +2025-09-24 11:01:55,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:55,292 INFO Out dated connection ,size=0 + +2025-09-24 11:01:55,292 INFO Connection check task end + +2025-09-24 11:01:56,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:01:58,293 INFO Connection check task start + +2025-09-24 11:01:58,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:01:58,293 INFO Out dated connection ,size=0 + +2025-09-24 11:01:58,293 INFO Connection check task end + +2025-09-24 11:01:59,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:01,293 INFO Connection check task start + +2025-09-24 11:02:01,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:01,293 INFO Out dated connection ,size=0 + +2025-09-24 11:02:01,293 INFO Connection check task end + +2025-09-24 11:02:02,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:04,295 INFO Connection check task start + +2025-09-24 11:02:04,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:04,295 INFO Out dated connection ,size=0 + +2025-09-24 11:02:04,295 INFO Connection check task end + +2025-09-24 11:02:05,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:07,298 INFO Connection check task start + +2025-09-24 11:02:07,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:07,298 INFO Out dated connection ,size=0 + +2025-09-24 11:02:07,298 INFO Connection check task end + +2025-09-24 11:02:08,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:10,298 INFO Connection check task start + +2025-09-24 11:02:10,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:10,298 INFO Out dated connection ,size=0 + +2025-09-24 11:02:10,298 INFO Connection check task end + +2025-09-24 11:02:11,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:13,299 INFO Connection check task start + +2025-09-24 11:02:13,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:13,299 INFO Out dated connection ,size=0 + +2025-09-24 11:02:13,299 INFO Connection check task end + +2025-09-24 11:02:14,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:16,301 INFO Connection check task start + +2025-09-24 11:02:16,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:16,301 INFO Out dated connection ,size=0 + +2025-09-24 11:02:16,301 INFO Connection check task end + +2025-09-24 11:02:17,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:19,302 INFO Connection check task start + +2025-09-24 11:02:19,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:19,302 INFO Out dated connection ,size=0 + +2025-09-24 11:02:19,302 INFO Connection check task end + +2025-09-24 11:02:20,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:22,304 INFO Connection check task start + +2025-09-24 11:02:22,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:22,304 INFO Out dated connection ,size=0 + +2025-09-24 11:02:22,304 INFO Connection check task end + +2025-09-24 11:02:23,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:25,306 INFO Connection check task start + +2025-09-24 11:02:25,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:25,307 INFO Out dated connection ,size=0 + +2025-09-24 11:02:25,307 INFO Connection check task end + +2025-09-24 11:02:26,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:28,307 INFO Connection check task start + +2025-09-24 11:02:28,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:28,307 INFO Out dated connection ,size=0 + +2025-09-24 11:02:28,307 INFO Connection check task end + +2025-09-24 11:02:29,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:31,308 INFO Connection check task start + +2025-09-24 11:02:31,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:31,308 INFO Out dated connection ,size=0 + +2025-09-24 11:02:31,308 INFO Connection check task end + +2025-09-24 11:02:32,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:34,309 INFO Connection check task start + +2025-09-24 11:02:34,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:34,309 INFO Out dated connection ,size=0 + +2025-09-24 11:02:34,309 INFO Connection check task end + +2025-09-24 11:02:35,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:37,310 INFO Connection check task start + +2025-09-24 11:02:37,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:37,310 INFO Out dated connection ,size=0 + +2025-09-24 11:02:37,310 INFO Connection check task end + +2025-09-24 11:02:38,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:40,312 INFO Connection check task start + +2025-09-24 11:02:40,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:40,312 INFO Out dated connection ,size=0 + +2025-09-24 11:02:40,312 INFO Connection check task end + +2025-09-24 11:02:41,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:43,313 INFO Connection check task start + +2025-09-24 11:02:43,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:43,313 INFO Out dated connection ,size=0 + +2025-09-24 11:02:43,313 INFO Connection check task end + +2025-09-24 11:02:44,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:46,314 INFO Connection check task start + +2025-09-24 11:02:46,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:46,314 INFO Out dated connection ,size=0 + +2025-09-24 11:02:46,314 INFO Connection check task end + +2025-09-24 11:02:47,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:49,314 INFO Connection check task start + +2025-09-24 11:02:49,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:49,314 INFO Out dated connection ,size=0 + +2025-09-24 11:02:49,314 INFO Connection check task end + +2025-09-24 11:02:50,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:52,316 INFO Connection check task start + +2025-09-24 11:02:52,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:52,317 INFO Out dated connection ,size=0 + +2025-09-24 11:02:52,317 INFO Connection check task end + +2025-09-24 11:02:53,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:55,317 INFO Connection check task start + +2025-09-24 11:02:55,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:55,317 INFO Out dated connection ,size=0 + +2025-09-24 11:02:55,317 INFO Connection check task end + +2025-09-24 11:02:56,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:02:58,319 INFO Connection check task start + +2025-09-24 11:02:58,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:02:58,320 INFO Out dated connection ,size=0 + +2025-09-24 11:02:58,320 INFO Connection check task end + +2025-09-24 11:02:59,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:01,321 INFO Connection check task start + +2025-09-24 11:03:01,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:01,322 INFO Out dated connection ,size=0 + +2025-09-24 11:03:01,322 INFO Connection check task end + +2025-09-24 11:03:02,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:04,324 INFO Connection check task start + +2025-09-24 11:03:04,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:04,324 INFO Out dated connection ,size=0 + +2025-09-24 11:03:04,324 INFO Connection check task end + +2025-09-24 11:03:05,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:07,326 INFO Connection check task start + +2025-09-24 11:03:07,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:07,326 INFO Out dated connection ,size=0 + +2025-09-24 11:03:07,326 INFO Connection check task end + +2025-09-24 11:03:08,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:10,328 INFO Connection check task start + +2025-09-24 11:03:10,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:10,328 INFO Out dated connection ,size=0 + +2025-09-24 11:03:10,328 INFO Connection check task end + +2025-09-24 11:03:11,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:13,329 INFO Connection check task start + +2025-09-24 11:03:13,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:13,329 INFO Out dated connection ,size=0 + +2025-09-24 11:03:13,329 INFO Connection check task end + +2025-09-24 11:03:14,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:16,330 INFO Connection check task start + +2025-09-24 11:03:16,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:16,330 INFO Out dated connection ,size=0 + +2025-09-24 11:03:16,330 INFO Connection check task end + +2025-09-24 11:03:17,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:19,330 INFO Connection check task start + +2025-09-24 11:03:19,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:19,331 INFO Out dated connection ,size=0 + +2025-09-24 11:03:19,331 INFO Connection check task end + +2025-09-24 11:03:20,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:22,331 INFO Connection check task start + +2025-09-24 11:03:22,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:22,332 INFO Out dated connection ,size=0 + +2025-09-24 11:03:22,332 INFO Connection check task end + +2025-09-24 11:03:23,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:25,333 INFO Connection check task start + +2025-09-24 11:03:25,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:25,333 INFO Out dated connection ,size=0 + +2025-09-24 11:03:25,333 INFO Connection check task end + +2025-09-24 11:03:26,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:28,333 INFO Connection check task start + +2025-09-24 11:03:28,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:28,334 INFO Out dated connection ,size=0 + +2025-09-24 11:03:28,334 INFO Connection check task end + +2025-09-24 11:03:29,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:31,335 INFO Connection check task start + +2025-09-24 11:03:31,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:31,335 INFO Out dated connection ,size=0 + +2025-09-24 11:03:31,335 INFO Connection check task end + +2025-09-24 11:03:32,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:34,335 INFO Connection check task start + +2025-09-24 11:03:34,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:34,335 INFO Out dated connection ,size=0 + +2025-09-24 11:03:34,336 INFO Connection check task end + +2025-09-24 11:03:35,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:37,337 INFO Connection check task start + +2025-09-24 11:03:37,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:37,337 INFO Out dated connection ,size=0 + +2025-09-24 11:03:37,337 INFO Connection check task end + +2025-09-24 11:03:38,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:40,338 INFO Connection check task start + +2025-09-24 11:03:40,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:40,339 INFO Out dated connection ,size=0 + +2025-09-24 11:03:40,339 INFO Connection check task end + +2025-09-24 11:03:41,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:43,341 INFO Connection check task start + +2025-09-24 11:03:43,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:43,341 INFO Out dated connection ,size=0 + +2025-09-24 11:03:43,341 INFO Connection check task end + +2025-09-24 11:03:44,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:46,342 INFO Connection check task start + +2025-09-24 11:03:46,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:46,342 INFO Out dated connection ,size=0 + +2025-09-24 11:03:46,342 INFO Connection check task end + +2025-09-24 11:03:47,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:49,344 INFO Connection check task start + +2025-09-24 11:03:49,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:49,344 INFO Out dated connection ,size=0 + +2025-09-24 11:03:49,344 INFO Connection check task end + +2025-09-24 11:03:50,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:52,345 INFO Connection check task start + +2025-09-24 11:03:52,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:52,345 INFO Out dated connection ,size=0 + +2025-09-24 11:03:52,345 INFO Connection check task end + +2025-09-24 11:03:53,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:55,345 INFO Connection check task start + +2025-09-24 11:03:55,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:55,345 INFO Out dated connection ,size=0 + +2025-09-24 11:03:55,345 INFO Connection check task end + +2025-09-24 11:03:56,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:03:58,347 INFO Connection check task start + +2025-09-24 11:03:58,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:03:58,348 INFO Out dated connection ,size=0 + +2025-09-24 11:03:58,348 INFO Connection check task end + +2025-09-24 11:03:59,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:01,348 INFO Connection check task start + +2025-09-24 11:04:01,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:01,348 INFO Out dated connection ,size=0 + +2025-09-24 11:04:01,349 INFO Connection check task end + +2025-09-24 11:04:02,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:04,350 INFO Connection check task start + +2025-09-24 11:04:04,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:04,350 INFO Out dated connection ,size=0 + +2025-09-24 11:04:04,350 INFO Connection check task end + +2025-09-24 11:04:05,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:07,352 INFO Connection check task start + +2025-09-24 11:04:07,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:07,352 INFO Out dated connection ,size=0 + +2025-09-24 11:04:07,352 INFO Connection check task end + +2025-09-24 11:04:08,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:10,354 INFO Connection check task start + +2025-09-24 11:04:10,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:10,355 INFO Out dated connection ,size=0 + +2025-09-24 11:04:10,355 INFO Connection check task end + +2025-09-24 11:04:11,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:13,355 INFO Connection check task start + +2025-09-24 11:04:13,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:13,355 INFO Out dated connection ,size=0 + +2025-09-24 11:04:13,355 INFO Connection check task end + +2025-09-24 11:04:14,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:16,357 INFO Connection check task start + +2025-09-24 11:04:16,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:16,357 INFO Out dated connection ,size=0 + +2025-09-24 11:04:16,357 INFO Connection check task end + +2025-09-24 11:04:17,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:19,358 INFO Connection check task start + +2025-09-24 11:04:19,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:19,358 INFO Out dated connection ,size=0 + +2025-09-24 11:04:19,358 INFO Connection check task end + +2025-09-24 11:04:20,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:22,359 INFO Connection check task start + +2025-09-24 11:04:22,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:22,359 INFO Out dated connection ,size=0 + +2025-09-24 11:04:22,359 INFO Connection check task end + +2025-09-24 11:04:23,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:25,360 INFO Connection check task start + +2025-09-24 11:04:25,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:25,360 INFO Out dated connection ,size=0 + +2025-09-24 11:04:25,360 INFO Connection check task end + +2025-09-24 11:04:26,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:28,362 INFO Connection check task start + +2025-09-24 11:04:28,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:28,363 INFO Out dated connection ,size=0 + +2025-09-24 11:04:28,363 INFO Connection check task end + +2025-09-24 11:04:29,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:31,364 INFO Connection check task start + +2025-09-24 11:04:31,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:31,364 INFO Out dated connection ,size=0 + +2025-09-24 11:04:31,364 INFO Connection check task end + +2025-09-24 11:04:32,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:34,367 INFO Connection check task start + +2025-09-24 11:04:34,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:34,367 INFO Out dated connection ,size=0 + +2025-09-24 11:04:34,367 INFO Connection check task end + +2025-09-24 11:04:35,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:37,367 INFO Connection check task start + +2025-09-24 11:04:37,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:37,367 INFO Out dated connection ,size=0 + +2025-09-24 11:04:37,367 INFO Connection check task end + +2025-09-24 11:04:38,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:40,369 INFO Connection check task start + +2025-09-24 11:04:40,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:40,369 INFO Out dated connection ,size=0 + +2025-09-24 11:04:40,369 INFO Connection check task end + +2025-09-24 11:04:41,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:43,371 INFO Connection check task start + +2025-09-24 11:04:43,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:43,371 INFO Out dated connection ,size=0 + +2025-09-24 11:04:43,371 INFO Connection check task end + +2025-09-24 11:04:44,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:46,373 INFO Connection check task start + +2025-09-24 11:04:46,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:46,373 INFO Out dated connection ,size=0 + +2025-09-24 11:04:46,373 INFO Connection check task end + +2025-09-24 11:04:47,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:49,373 INFO Connection check task start + +2025-09-24 11:04:49,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:49,374 INFO Out dated connection ,size=0 + +2025-09-24 11:04:49,374 INFO Connection check task end + +2025-09-24 11:04:50,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:52,374 INFO Connection check task start + +2025-09-24 11:04:52,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:52,374 INFO Out dated connection ,size=0 + +2025-09-24 11:04:52,374 INFO Connection check task end + +2025-09-24 11:04:53,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:55,376 INFO Connection check task start + +2025-09-24 11:04:55,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:55,376 INFO Out dated connection ,size=0 + +2025-09-24 11:04:55,377 INFO Connection check task end + +2025-09-24 11:04:56,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:04:58,379 INFO Connection check task start + +2025-09-24 11:04:58,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:04:58,379 INFO Out dated connection ,size=0 + +2025-09-24 11:04:58,379 INFO Connection check task end + +2025-09-24 11:04:59,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:01,379 INFO Connection check task start + +2025-09-24 11:05:01,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:01,380 INFO Out dated connection ,size=0 + +2025-09-24 11:05:01,380 INFO Connection check task end + +2025-09-24 11:05:02,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:04,380 INFO Connection check task start + +2025-09-24 11:05:04,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:04,380 INFO Out dated connection ,size=0 + +2025-09-24 11:05:04,380 INFO Connection check task end + +2025-09-24 11:05:05,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:07,381 INFO Connection check task start + +2025-09-24 11:05:07,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:07,381 INFO Out dated connection ,size=0 + +2025-09-24 11:05:07,381 INFO Connection check task end + +2025-09-24 11:05:08,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:10,384 INFO Connection check task start + +2025-09-24 11:05:10,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:10,384 INFO Out dated connection ,size=0 + +2025-09-24 11:05:10,384 INFO Connection check task end + +2025-09-24 11:05:11,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:13,385 INFO Connection check task start + +2025-09-24 11:05:13,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:13,386 INFO Out dated connection ,size=0 + +2025-09-24 11:05:13,386 INFO Connection check task end + +2025-09-24 11:05:14,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:16,387 INFO Connection check task start + +2025-09-24 11:05:16,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:16,387 INFO Out dated connection ,size=0 + +2025-09-24 11:05:16,387 INFO Connection check task end + +2025-09-24 11:05:17,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:19,389 INFO Connection check task start + +2025-09-24 11:05:19,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:19,389 INFO Out dated connection ,size=0 + +2025-09-24 11:05:19,389 INFO Connection check task end + +2025-09-24 11:05:20,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:22,390 INFO Connection check task start + +2025-09-24 11:05:22,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:22,390 INFO Out dated connection ,size=0 + +2025-09-24 11:05:22,390 INFO Connection check task end + +2025-09-24 11:05:23,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:25,392 INFO Connection check task start + +2025-09-24 11:05:25,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:25,392 INFO Out dated connection ,size=0 + +2025-09-24 11:05:25,393 INFO Connection check task end + +2025-09-24 11:05:26,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:28,395 INFO Connection check task start + +2025-09-24 11:05:28,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:28,395 INFO Out dated connection ,size=0 + +2025-09-24 11:05:28,395 INFO Connection check task end + +2025-09-24 11:05:29,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:31,397 INFO Connection check task start + +2025-09-24 11:05:31,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:31,397 INFO Out dated connection ,size=0 + +2025-09-24 11:05:31,397 INFO Connection check task end + +2025-09-24 11:05:32,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:34,398 INFO Connection check task start + +2025-09-24 11:05:34,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:34,398 INFO Out dated connection ,size=0 + +2025-09-24 11:05:34,398 INFO Connection check task end + +2025-09-24 11:05:35,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:37,398 INFO Connection check task start + +2025-09-24 11:05:37,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:37,398 INFO Out dated connection ,size=0 + +2025-09-24 11:05:37,398 INFO Connection check task end + +2025-09-24 11:05:38,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:40,399 INFO Connection check task start + +2025-09-24 11:05:40,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:40,399 INFO Out dated connection ,size=0 + +2025-09-24 11:05:40,399 INFO Connection check task end + +2025-09-24 11:05:41,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:43,401 INFO Connection check task start + +2025-09-24 11:05:43,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:43,401 INFO Out dated connection ,size=0 + +2025-09-24 11:05:43,401 INFO Connection check task end + +2025-09-24 11:05:44,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:46,401 INFO Connection check task start + +2025-09-24 11:05:46,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:46,401 INFO Out dated connection ,size=0 + +2025-09-24 11:05:46,401 INFO Connection check task end + +2025-09-24 11:05:47,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:49,403 INFO Connection check task start + +2025-09-24 11:05:49,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:49,403 INFO Out dated connection ,size=0 + +2025-09-24 11:05:49,403 INFO Connection check task end + +2025-09-24 11:05:50,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:52,405 INFO Connection check task start + +2025-09-24 11:05:52,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:52,405 INFO Out dated connection ,size=0 + +2025-09-24 11:05:52,405 INFO Connection check task end + +2025-09-24 11:05:53,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:55,405 INFO Connection check task start + +2025-09-24 11:05:55,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:55,406 INFO Out dated connection ,size=0 + +2025-09-24 11:05:55,406 INFO Connection check task end + +2025-09-24 11:05:56,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:05:58,406 INFO Connection check task start + +2025-09-24 11:05:58,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:05:58,406 INFO Out dated connection ,size=0 + +2025-09-24 11:05:58,406 INFO Connection check task end + +2025-09-24 11:05:59,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:01,406 INFO Connection check task start + +2025-09-24 11:06:01,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:01,407 INFO Out dated connection ,size=0 + +2025-09-24 11:06:01,407 INFO Connection check task end + +2025-09-24 11:06:02,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:04,407 INFO Connection check task start + +2025-09-24 11:06:04,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:04,407 INFO Out dated connection ,size=0 + +2025-09-24 11:06:04,407 INFO Connection check task end + +2025-09-24 11:06:05,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:07,408 INFO Connection check task start + +2025-09-24 11:06:07,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:07,408 INFO Out dated connection ,size=0 + +2025-09-24 11:06:07,408 INFO Connection check task end + +2025-09-24 11:06:08,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:10,409 INFO Connection check task start + +2025-09-24 11:06:10,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:10,409 INFO Out dated connection ,size=0 + +2025-09-24 11:06:10,409 INFO Connection check task end + +2025-09-24 11:06:11,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:13,410 INFO Connection check task start + +2025-09-24 11:06:13,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:13,410 INFO Out dated connection ,size=0 + +2025-09-24 11:06:13,410 INFO Connection check task end + +2025-09-24 11:06:14,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:16,412 INFO Connection check task start + +2025-09-24 11:06:16,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:16,412 INFO Out dated connection ,size=0 + +2025-09-24 11:06:16,412 INFO Connection check task end + +2025-09-24 11:06:17,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:19,415 INFO Connection check task start + +2025-09-24 11:06:19,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:19,417 INFO Out dated connection ,size=0 + +2025-09-24 11:06:19,417 INFO Connection check task end + +2025-09-24 11:06:20,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:22,418 INFO Connection check task start + +2025-09-24 11:06:22,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:22,418 INFO Out dated connection ,size=0 + +2025-09-24 11:06:22,418 INFO Connection check task end + +2025-09-24 11:06:23,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:25,418 INFO Connection check task start + +2025-09-24 11:06:25,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:25,418 INFO Out dated connection ,size=0 + +2025-09-24 11:06:25,418 INFO Connection check task end + +2025-09-24 11:06:26,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:28,419 INFO Connection check task start + +2025-09-24 11:06:28,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:28,419 INFO Out dated connection ,size=0 + +2025-09-24 11:06:28,419 INFO Connection check task end + +2025-09-24 11:06:29,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:31,419 INFO Connection check task start + +2025-09-24 11:06:31,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:31,420 INFO Out dated connection ,size=0 + +2025-09-24 11:06:31,420 INFO Connection check task end + +2025-09-24 11:06:32,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:34,420 INFO Connection check task start + +2025-09-24 11:06:34,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:34,420 INFO Out dated connection ,size=0 + +2025-09-24 11:06:34,420 INFO Connection check task end + +2025-09-24 11:06:35,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:37,420 INFO Connection check task start + +2025-09-24 11:06:37,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:37,420 INFO Out dated connection ,size=0 + +2025-09-24 11:06:37,421 INFO Connection check task end + +2025-09-24 11:06:38,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:40,422 INFO Connection check task start + +2025-09-24 11:06:40,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:40,422 INFO Out dated connection ,size=0 + +2025-09-24 11:06:40,422 INFO Connection check task end + +2025-09-24 11:06:41,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:43,423 INFO Connection check task start + +2025-09-24 11:06:43,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:43,423 INFO Out dated connection ,size=0 + +2025-09-24 11:06:43,423 INFO Connection check task end + +2025-09-24 11:06:44,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:46,424 INFO Connection check task start + +2025-09-24 11:06:46,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:46,424 INFO Out dated connection ,size=0 + +2025-09-24 11:06:46,424 INFO Connection check task end + +2025-09-24 11:06:47,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:49,426 INFO Connection check task start + +2025-09-24 11:06:49,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:49,426 INFO Out dated connection ,size=0 + +2025-09-24 11:06:49,426 INFO Connection check task end + +2025-09-24 11:06:50,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:52,427 INFO Connection check task start + +2025-09-24 11:06:52,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:52,427 INFO Out dated connection ,size=0 + +2025-09-24 11:06:52,427 INFO Connection check task end + +2025-09-24 11:06:53,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:55,427 INFO Connection check task start + +2025-09-24 11:06:55,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:55,428 INFO Out dated connection ,size=0 + +2025-09-24 11:06:55,428 INFO Connection check task end + +2025-09-24 11:06:56,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:06:58,428 INFO Connection check task start + +2025-09-24 11:06:58,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:06:58,428 INFO Out dated connection ,size=0 + +2025-09-24 11:06:58,428 INFO Connection check task end + +2025-09-24 11:06:59,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:01,429 INFO Connection check task start + +2025-09-24 11:07:01,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:01,429 INFO Out dated connection ,size=0 + +2025-09-24 11:07:01,429 INFO Connection check task end + +2025-09-24 11:07:02,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:04,429 INFO Connection check task start + +2025-09-24 11:07:04,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:04,430 INFO Out dated connection ,size=0 + +2025-09-24 11:07:04,430 INFO Connection check task end + +2025-09-24 11:07:05,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:07,431 INFO Connection check task start + +2025-09-24 11:07:07,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:07,432 INFO Out dated connection ,size=0 + +2025-09-24 11:07:07,432 INFO Connection check task end + +2025-09-24 11:07:08,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:10,433 INFO Connection check task start + +2025-09-24 11:07:10,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:10,433 INFO Out dated connection ,size=0 + +2025-09-24 11:07:10,434 INFO Connection check task end + +2025-09-24 11:07:11,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:13,436 INFO Connection check task start + +2025-09-24 11:07:13,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:13,436 INFO Out dated connection ,size=0 + +2025-09-24 11:07:13,436 INFO Connection check task end + +2025-09-24 11:07:14,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:16,436 INFO Connection check task start + +2025-09-24 11:07:16,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:16,436 INFO Out dated connection ,size=0 + +2025-09-24 11:07:16,436 INFO Connection check task end + +2025-09-24 11:07:17,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:19,436 INFO Connection check task start + +2025-09-24 11:07:19,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:19,437 INFO Out dated connection ,size=0 + +2025-09-24 11:07:19,437 INFO Connection check task end + +2025-09-24 11:07:20,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:22,437 INFO Connection check task start + +2025-09-24 11:07:22,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:22,437 INFO Out dated connection ,size=0 + +2025-09-24 11:07:22,437 INFO Connection check task end + +2025-09-24 11:07:23,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:25,438 INFO Connection check task start + +2025-09-24 11:07:25,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:25,439 INFO Out dated connection ,size=0 + +2025-09-24 11:07:25,439 INFO Connection check task end + +2025-09-24 11:07:26,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:28,439 INFO Connection check task start + +2025-09-24 11:07:28,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:28,439 INFO Out dated connection ,size=0 + +2025-09-24 11:07:28,439 INFO Connection check task end + +2025-09-24 11:07:29,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:31,440 INFO Connection check task start + +2025-09-24 11:07:31,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:31,440 INFO Out dated connection ,size=0 + +2025-09-24 11:07:31,440 INFO Connection check task end + +2025-09-24 11:07:32,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:34,441 INFO Connection check task start + +2025-09-24 11:07:34,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:34,441 INFO Out dated connection ,size=0 + +2025-09-24 11:07:34,441 INFO Connection check task end + +2025-09-24 11:07:35,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:37,443 INFO Connection check task start + +2025-09-24 11:07:37,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:37,444 INFO Out dated connection ,size=0 + +2025-09-24 11:07:37,444 INFO Connection check task end + +2025-09-24 11:07:38,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:40,444 INFO Connection check task start + +2025-09-24 11:07:40,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:40,444 INFO Out dated connection ,size=0 + +2025-09-24 11:07:40,445 INFO Connection check task end + +2025-09-24 11:07:41,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:43,445 INFO Connection check task start + +2025-09-24 11:07:43,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:43,445 INFO Out dated connection ,size=0 + +2025-09-24 11:07:43,445 INFO Connection check task end + +2025-09-24 11:07:44,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:46,446 INFO Connection check task start + +2025-09-24 11:07:46,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:46,447 INFO Out dated connection ,size=0 + +2025-09-24 11:07:46,447 INFO Connection check task end + +2025-09-24 11:07:47,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:49,447 INFO Connection check task start + +2025-09-24 11:07:49,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:49,447 INFO Out dated connection ,size=0 + +2025-09-24 11:07:49,447 INFO Connection check task end + +2025-09-24 11:07:50,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:52,449 INFO Connection check task start + +2025-09-24 11:07:52,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:52,449 INFO Out dated connection ,size=0 + +2025-09-24 11:07:52,449 INFO Connection check task end + +2025-09-24 11:07:53,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:55,451 INFO Connection check task start + +2025-09-24 11:07:55,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:55,451 INFO Out dated connection ,size=0 + +2025-09-24 11:07:55,451 INFO Connection check task end + +2025-09-24 11:07:56,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:07:58,452 INFO Connection check task start + +2025-09-24 11:07:58,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:07:58,452 INFO Out dated connection ,size=0 + +2025-09-24 11:07:58,452 INFO Connection check task end + +2025-09-24 11:07:59,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:01,453 INFO Connection check task start + +2025-09-24 11:08:01,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:01,453 INFO Out dated connection ,size=0 + +2025-09-24 11:08:01,453 INFO Connection check task end + +2025-09-24 11:08:02,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:04,454 INFO Connection check task start + +2025-09-24 11:08:04,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:04,454 INFO Out dated connection ,size=0 + +2025-09-24 11:08:04,455 INFO Connection check task end + +2025-09-24 11:08:05,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:07,456 INFO Connection check task start + +2025-09-24 11:08:07,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:07,457 INFO Out dated connection ,size=0 + +2025-09-24 11:08:07,457 INFO Connection check task end + +2025-09-24 11:08:08,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:10,457 INFO Connection check task start + +2025-09-24 11:08:10,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:10,457 INFO Out dated connection ,size=0 + +2025-09-24 11:08:10,457 INFO Connection check task end + +2025-09-24 11:08:11,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:13,459 INFO Connection check task start + +2025-09-24 11:08:13,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:13,459 INFO Out dated connection ,size=0 + +2025-09-24 11:08:13,459 INFO Connection check task end + +2025-09-24 11:08:14,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:16,459 INFO Connection check task start + +2025-09-24 11:08:16,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:16,459 INFO Out dated connection ,size=0 + +2025-09-24 11:08:16,459 INFO Connection check task end + +2025-09-24 11:08:17,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:19,459 INFO Connection check task start + +2025-09-24 11:08:19,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:19,459 INFO Out dated connection ,size=0 + +2025-09-24 11:08:19,460 INFO Connection check task end + +2025-09-24 11:08:20,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:22,460 INFO Connection check task start + +2025-09-24 11:08:22,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:22,461 INFO Out dated connection ,size=0 + +2025-09-24 11:08:22,461 INFO Connection check task end + +2025-09-24 11:08:23,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:25,462 INFO Connection check task start + +2025-09-24 11:08:25,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:25,462 INFO Out dated connection ,size=0 + +2025-09-24 11:08:25,462 INFO Connection check task end + +2025-09-24 11:08:26,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:28,463 INFO Connection check task start + +2025-09-24 11:08:28,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:28,463 INFO Out dated connection ,size=0 + +2025-09-24 11:08:28,464 INFO Connection check task end + +2025-09-24 11:08:29,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:31,464 INFO Connection check task start + +2025-09-24 11:08:31,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:31,464 INFO Out dated connection ,size=0 + +2025-09-24 11:08:31,464 INFO Connection check task end + +2025-09-24 11:08:32,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:34,465 INFO Connection check task start + +2025-09-24 11:08:34,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:34,466 INFO Out dated connection ,size=0 + +2025-09-24 11:08:34,466 INFO Connection check task end + +2025-09-24 11:08:35,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:37,466 INFO Connection check task start + +2025-09-24 11:08:37,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:37,466 INFO Out dated connection ,size=0 + +2025-09-24 11:08:37,467 INFO Connection check task end + +2025-09-24 11:08:38,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:40,469 INFO Connection check task start + +2025-09-24 11:08:40,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:40,469 INFO Out dated connection ,size=0 + +2025-09-24 11:08:40,469 INFO Connection check task end + +2025-09-24 11:08:41,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:43,470 INFO Connection check task start + +2025-09-24 11:08:43,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:43,470 INFO Out dated connection ,size=0 + +2025-09-24 11:08:43,470 INFO Connection check task end + +2025-09-24 11:08:44,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:46,472 INFO Connection check task start + +2025-09-24 11:08:46,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:46,472 INFO Out dated connection ,size=0 + +2025-09-24 11:08:46,472 INFO Connection check task end + +2025-09-24 11:08:47,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:49,473 INFO Connection check task start + +2025-09-24 11:08:49,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:49,474 INFO Out dated connection ,size=0 + +2025-09-24 11:08:49,474 INFO Connection check task end + +2025-09-24 11:08:50,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:52,476 INFO Connection check task start + +2025-09-24 11:08:52,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:52,476 INFO Out dated connection ,size=0 + +2025-09-24 11:08:52,476 INFO Connection check task end + +2025-09-24 11:08:53,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:55,476 INFO Connection check task start + +2025-09-24 11:08:55,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:55,476 INFO Out dated connection ,size=0 + +2025-09-24 11:08:55,476 INFO Connection check task end + +2025-09-24 11:08:56,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:08:58,476 INFO Connection check task start + +2025-09-24 11:08:58,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:08:58,477 INFO Out dated connection ,size=0 + +2025-09-24 11:08:58,477 INFO Connection check task end + +2025-09-24 11:08:59,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:01,477 INFO Connection check task start + +2025-09-24 11:09:01,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:01,477 INFO Out dated connection ,size=0 + +2025-09-24 11:09:01,477 INFO Connection check task end + +2025-09-24 11:09:02,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:04,480 INFO Connection check task start + +2025-09-24 11:09:04,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:04,480 INFO Out dated connection ,size=0 + +2025-09-24 11:09:04,480 INFO Connection check task end + +2025-09-24 11:09:05,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:07,480 INFO Connection check task start + +2025-09-24 11:09:07,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:07,481 INFO Out dated connection ,size=0 + +2025-09-24 11:09:07,481 INFO Connection check task end + +2025-09-24 11:09:08,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:10,483 INFO Connection check task start + +2025-09-24 11:09:10,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:10,483 INFO Out dated connection ,size=0 + +2025-09-24 11:09:10,483 INFO Connection check task end + +2025-09-24 11:09:11,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:13,485 INFO Connection check task start + +2025-09-24 11:09:13,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:13,485 INFO Out dated connection ,size=0 + +2025-09-24 11:09:13,485 INFO Connection check task end + +2025-09-24 11:09:14,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:16,485 INFO Connection check task start + +2025-09-24 11:09:16,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:16,485 INFO Out dated connection ,size=0 + +2025-09-24 11:09:16,485 INFO Connection check task end + +2025-09-24 11:09:17,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:19,487 INFO Connection check task start + +2025-09-24 11:09:19,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:19,487 INFO Out dated connection ,size=0 + +2025-09-24 11:09:19,487 INFO Connection check task end + +2025-09-24 11:09:20,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:22,488 INFO Connection check task start + +2025-09-24 11:09:22,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:22,488 INFO Out dated connection ,size=0 + +2025-09-24 11:09:22,488 INFO Connection check task end + +2025-09-24 11:09:23,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:25,489 INFO Connection check task start + +2025-09-24 11:09:25,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:25,490 INFO Out dated connection ,size=0 + +2025-09-24 11:09:25,490 INFO Connection check task end + +2025-09-24 11:09:26,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:28,492 INFO Connection check task start + +2025-09-24 11:09:28,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:28,492 INFO Out dated connection ,size=0 + +2025-09-24 11:09:28,492 INFO Connection check task end + +2025-09-24 11:09:29,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:31,492 INFO Connection check task start + +2025-09-24 11:09:31,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:31,493 INFO Out dated connection ,size=0 + +2025-09-24 11:09:31,493 INFO Connection check task end + +2025-09-24 11:09:32,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:34,493 INFO Connection check task start + +2025-09-24 11:09:34,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:34,493 INFO Out dated connection ,size=0 + +2025-09-24 11:09:34,494 INFO Connection check task end + +2025-09-24 11:09:35,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:37,494 INFO Connection check task start + +2025-09-24 11:09:37,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:37,494 INFO Out dated connection ,size=0 + +2025-09-24 11:09:37,494 INFO Connection check task end + +2025-09-24 11:09:38,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:40,496 INFO Connection check task start + +2025-09-24 11:09:40,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:40,496 INFO Out dated connection ,size=0 + +2025-09-24 11:09:40,496 INFO Connection check task end + +2025-09-24 11:09:41,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:43,497 INFO Connection check task start + +2025-09-24 11:09:43,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:43,498 INFO Out dated connection ,size=0 + +2025-09-24 11:09:43,498 INFO Connection check task end + +2025-09-24 11:09:44,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:46,499 INFO Connection check task start + +2025-09-24 11:09:46,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:46,499 INFO Out dated connection ,size=0 + +2025-09-24 11:09:46,499 INFO Connection check task end + +2025-09-24 11:09:47,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:49,500 INFO Connection check task start + +2025-09-24 11:09:49,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:49,500 INFO Out dated connection ,size=0 + +2025-09-24 11:09:49,501 INFO Connection check task end + +2025-09-24 11:09:50,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:52,503 INFO Connection check task start + +2025-09-24 11:09:52,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:52,503 INFO Out dated connection ,size=0 + +2025-09-24 11:09:52,503 INFO Connection check task end + +2025-09-24 11:09:53,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:55,505 INFO Connection check task start + +2025-09-24 11:09:55,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:55,505 INFO Out dated connection ,size=0 + +2025-09-24 11:09:55,505 INFO Connection check task end + +2025-09-24 11:09:56,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:09:58,505 INFO Connection check task start + +2025-09-24 11:09:58,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:09:58,505 INFO Out dated connection ,size=0 + +2025-09-24 11:09:58,505 INFO Connection check task end + +2025-09-24 11:09:59,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:01,506 INFO Connection check task start + +2025-09-24 11:10:01,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:01,506 INFO Out dated connection ,size=0 + +2025-09-24 11:10:01,506 INFO Connection check task end + +2025-09-24 11:10:02,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:04,508 INFO Connection check task start + +2025-09-24 11:10:04,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:04,508 INFO Out dated connection ,size=0 + +2025-09-24 11:10:04,508 INFO Connection check task end + +2025-09-24 11:10:05,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:07,508 INFO Connection check task start + +2025-09-24 11:10:07,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:07,509 INFO Out dated connection ,size=0 + +2025-09-24 11:10:07,509 INFO Connection check task end + +2025-09-24 11:10:08,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:10,510 INFO Connection check task start + +2025-09-24 11:10:10,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:10,511 INFO Out dated connection ,size=0 + +2025-09-24 11:10:10,511 INFO Connection check task end + +2025-09-24 11:10:11,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:13,512 INFO Connection check task start + +2025-09-24 11:10:13,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:13,513 INFO Out dated connection ,size=0 + +2025-09-24 11:10:13,513 INFO Connection check task end + +2025-09-24 11:10:14,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:16,513 INFO Connection check task start + +2025-09-24 11:10:16,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:16,513 INFO Out dated connection ,size=0 + +2025-09-24 11:10:16,513 INFO Connection check task end + +2025-09-24 11:10:17,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:19,515 INFO Connection check task start + +2025-09-24 11:10:19,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:19,517 INFO Out dated connection ,size=0 + +2025-09-24 11:10:19,518 INFO Connection check task end + +2025-09-24 11:10:20,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:22,518 INFO Connection check task start + +2025-09-24 11:10:22,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:22,518 INFO Out dated connection ,size=0 + +2025-09-24 11:10:22,518 INFO Connection check task end + +2025-09-24 11:10:23,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:25,519 INFO Connection check task start + +2025-09-24 11:10:25,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:25,520 INFO Out dated connection ,size=0 + +2025-09-24 11:10:25,520 INFO Connection check task end + +2025-09-24 11:10:26,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:28,522 INFO Connection check task start + +2025-09-24 11:10:28,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:28,522 INFO Out dated connection ,size=0 + +2025-09-24 11:10:28,522 INFO Connection check task end + +2025-09-24 11:10:29,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:31,522 INFO Connection check task start + +2025-09-24 11:10:31,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:31,522 INFO Out dated connection ,size=0 + +2025-09-24 11:10:31,522 INFO Connection check task end + +2025-09-24 11:10:32,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:34,523 INFO Connection check task start + +2025-09-24 11:10:34,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:34,523 INFO Out dated connection ,size=0 + +2025-09-24 11:10:34,523 INFO Connection check task end + +2025-09-24 11:10:35,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:37,523 INFO Connection check task start + +2025-09-24 11:10:37,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:37,523 INFO Out dated connection ,size=0 + +2025-09-24 11:10:37,523 INFO Connection check task end + +2025-09-24 11:10:38,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:40,524 INFO Connection check task start + +2025-09-24 11:10:40,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:40,524 INFO Out dated connection ,size=0 + +2025-09-24 11:10:40,524 INFO Connection check task end + +2025-09-24 11:10:41,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:43,525 INFO Connection check task start + +2025-09-24 11:10:43,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:43,525 INFO Out dated connection ,size=0 + +2025-09-24 11:10:43,525 INFO Connection check task end + +2025-09-24 11:10:44,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:46,525 INFO Connection check task start + +2025-09-24 11:10:46,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:46,526 INFO Out dated connection ,size=0 + +2025-09-24 11:10:46,526 INFO Connection check task end + +2025-09-24 11:10:47,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:49,526 INFO Connection check task start + +2025-09-24 11:10:49,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:49,526 INFO Out dated connection ,size=0 + +2025-09-24 11:10:49,526 INFO Connection check task end + +2025-09-24 11:10:50,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:52,527 INFO Connection check task start + +2025-09-24 11:10:52,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:52,527 INFO Out dated connection ,size=0 + +2025-09-24 11:10:52,527 INFO Connection check task end + +2025-09-24 11:10:53,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:55,527 INFO Connection check task start + +2025-09-24 11:10:55,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:55,528 INFO Out dated connection ,size=0 + +2025-09-24 11:10:55,528 INFO Connection check task end + +2025-09-24 11:10:56,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:10:58,528 INFO Connection check task start + +2025-09-24 11:10:58,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:10:58,528 INFO Out dated connection ,size=0 + +2025-09-24 11:10:58,528 INFO Connection check task end + +2025-09-24 11:10:59,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:01,528 INFO Connection check task start + +2025-09-24 11:11:01,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:01,528 INFO Out dated connection ,size=0 + +2025-09-24 11:11:01,528 INFO Connection check task end + +2025-09-24 11:11:02,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:04,529 INFO Connection check task start + +2025-09-24 11:11:04,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:04,529 INFO Out dated connection ,size=0 + +2025-09-24 11:11:04,529 INFO Connection check task end + +2025-09-24 11:11:05,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:07,530 INFO Connection check task start + +2025-09-24 11:11:07,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:07,530 INFO Out dated connection ,size=0 + +2025-09-24 11:11:07,530 INFO Connection check task end + +2025-09-24 11:11:08,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:10,530 INFO Connection check task start + +2025-09-24 11:11:10,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:10,530 INFO Out dated connection ,size=0 + +2025-09-24 11:11:10,530 INFO Connection check task end + +2025-09-24 11:11:11,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:13,531 INFO Connection check task start + +2025-09-24 11:11:13,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:13,531 INFO Out dated connection ,size=0 + +2025-09-24 11:11:13,531 INFO Connection check task end + +2025-09-24 11:11:14,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:16,531 INFO Connection check task start + +2025-09-24 11:11:16,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:16,532 INFO Out dated connection ,size=0 + +2025-09-24 11:11:16,532 INFO Connection check task end + +2025-09-24 11:11:17,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:19,533 INFO Connection check task start + +2025-09-24 11:11:19,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:19,533 INFO Out dated connection ,size=0 + +2025-09-24 11:11:19,533 INFO Connection check task end + +2025-09-24 11:11:20,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:22,534 INFO Connection check task start + +2025-09-24 11:11:22,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:22,534 INFO Out dated connection ,size=0 + +2025-09-24 11:11:22,534 INFO Connection check task end + +2025-09-24 11:11:23,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:25,534 INFO Connection check task start + +2025-09-24 11:11:25,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:25,534 INFO Out dated connection ,size=0 + +2025-09-24 11:11:25,534 INFO Connection check task end + +2025-09-24 11:11:26,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:28,534 INFO Connection check task start + +2025-09-24 11:11:28,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:28,535 INFO Out dated connection ,size=0 + +2025-09-24 11:11:28,535 INFO Connection check task end + +2025-09-24 11:11:29,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:31,535 INFO Connection check task start + +2025-09-24 11:11:31,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:31,535 INFO Out dated connection ,size=0 + +2025-09-24 11:11:31,535 INFO Connection check task end + +2025-09-24 11:11:32,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:34,535 INFO Connection check task start + +2025-09-24 11:11:34,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:34,535 INFO Out dated connection ,size=0 + +2025-09-24 11:11:34,535 INFO Connection check task end + +2025-09-24 11:11:35,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:37,536 INFO Connection check task start + +2025-09-24 11:11:37,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:37,536 INFO Out dated connection ,size=0 + +2025-09-24 11:11:37,536 INFO Connection check task end + +2025-09-24 11:11:38,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:40,536 INFO Connection check task start + +2025-09-24 11:11:40,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:40,536 INFO Out dated connection ,size=0 + +2025-09-24 11:11:40,536 INFO Connection check task end + +2025-09-24 11:11:41,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:43,536 INFO Connection check task start + +2025-09-24 11:11:43,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:43,537 INFO Out dated connection ,size=0 + +2025-09-24 11:11:43,537 INFO Connection check task end + +2025-09-24 11:11:44,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:46,537 INFO Connection check task start + +2025-09-24 11:11:46,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:46,537 INFO Out dated connection ,size=0 + +2025-09-24 11:11:46,537 INFO Connection check task end + +2025-09-24 11:11:47,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:49,537 INFO Connection check task start + +2025-09-24 11:11:49,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:49,537 INFO Out dated connection ,size=0 + +2025-09-24 11:11:49,537 INFO Connection check task end + +2025-09-24 11:11:50,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:52,538 INFO Connection check task start + +2025-09-24 11:11:52,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:52,538 INFO Out dated connection ,size=0 + +2025-09-24 11:11:52,538 INFO Connection check task end + +2025-09-24 11:11:53,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:55,539 INFO Connection check task start + +2025-09-24 11:11:55,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:55,539 INFO Out dated connection ,size=0 + +2025-09-24 11:11:55,539 INFO Connection check task end + +2025-09-24 11:11:56,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:11:58,541 INFO Connection check task start + +2025-09-24 11:11:58,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:11:58,541 INFO Out dated connection ,size=0 + +2025-09-24 11:11:58,541 INFO Connection check task end + +2025-09-24 11:11:59,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:01,541 INFO Connection check task start + +2025-09-24 11:12:01,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:01,541 INFO Out dated connection ,size=0 + +2025-09-24 11:12:01,541 INFO Connection check task end + +2025-09-24 11:12:02,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:04,541 INFO Connection check task start + +2025-09-24 11:12:04,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:04,541 INFO Out dated connection ,size=0 + +2025-09-24 11:12:04,541 INFO Connection check task end + +2025-09-24 11:12:05,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:07,542 INFO Connection check task start + +2025-09-24 11:12:07,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:07,542 INFO Out dated connection ,size=0 + +2025-09-24 11:12:07,542 INFO Connection check task end + +2025-09-24 11:12:08,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:10,542 INFO Connection check task start + +2025-09-24 11:12:10,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:10,542 INFO Out dated connection ,size=0 + +2025-09-24 11:12:10,542 INFO Connection check task end + +2025-09-24 11:12:11,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:13,543 INFO Connection check task start + +2025-09-24 11:12:13,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:13,543 INFO Out dated connection ,size=0 + +2025-09-24 11:12:13,543 INFO Connection check task end + +2025-09-24 11:12:14,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:16,543 INFO Connection check task start + +2025-09-24 11:12:16,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:16,543 INFO Out dated connection ,size=0 + +2025-09-24 11:12:16,543 INFO Connection check task end + +2025-09-24 11:12:17,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:19,543 INFO Connection check task start + +2025-09-24 11:12:19,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:19,544 INFO Out dated connection ,size=0 + +2025-09-24 11:12:19,544 INFO Connection check task end + +2025-09-24 11:12:20,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:22,544 INFO Connection check task start + +2025-09-24 11:12:22,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:22,545 INFO Out dated connection ,size=0 + +2025-09-24 11:12:22,545 INFO Connection check task end + +2025-09-24 11:12:23,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:25,546 INFO Connection check task start + +2025-09-24 11:12:25,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:25,546 INFO Out dated connection ,size=0 + +2025-09-24 11:12:25,546 INFO Connection check task end + +2025-09-24 11:12:26,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:28,546 INFO Connection check task start + +2025-09-24 11:12:28,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:28,547 INFO Out dated connection ,size=0 + +2025-09-24 11:12:28,547 INFO Connection check task end + +2025-09-24 11:12:29,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:31,548 INFO Connection check task start + +2025-09-24 11:12:31,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:31,548 INFO Out dated connection ,size=0 + +2025-09-24 11:12:31,548 INFO Connection check task end + +2025-09-24 11:12:32,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:34,548 INFO Connection check task start + +2025-09-24 11:12:34,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:34,549 INFO Out dated connection ,size=0 + +2025-09-24 11:12:34,549 INFO Connection check task end + +2025-09-24 11:12:35,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:37,550 INFO Connection check task start + +2025-09-24 11:12:37,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:37,550 INFO Out dated connection ,size=0 + +2025-09-24 11:12:37,550 INFO Connection check task end + +2025-09-24 11:12:38,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:40,550 INFO Connection check task start + +2025-09-24 11:12:40,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:40,550 INFO Out dated connection ,size=0 + +2025-09-24 11:12:40,550 INFO Connection check task end + +2025-09-24 11:12:41,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:43,551 INFO Connection check task start + +2025-09-24 11:12:43,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:43,551 INFO Out dated connection ,size=0 + +2025-09-24 11:12:43,551 INFO Connection check task end + +2025-09-24 11:12:44,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:46,551 INFO Connection check task start + +2025-09-24 11:12:46,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:46,551 INFO Out dated connection ,size=0 + +2025-09-24 11:12:46,551 INFO Connection check task end + +2025-09-24 11:12:47,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:49,551 INFO Connection check task start + +2025-09-24 11:12:49,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:49,552 INFO Out dated connection ,size=0 + +2025-09-24 11:12:49,552 INFO Connection check task end + +2025-09-24 11:12:50,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:52,552 INFO Connection check task start + +2025-09-24 11:12:52,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:52,552 INFO Out dated connection ,size=0 + +2025-09-24 11:12:52,552 INFO Connection check task end + +2025-09-24 11:12:53,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:55,553 INFO Connection check task start + +2025-09-24 11:12:55,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:55,553 INFO Out dated connection ,size=0 + +2025-09-24 11:12:55,553 INFO Connection check task end + +2025-09-24 11:12:56,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:12:58,553 INFO Connection check task start + +2025-09-24 11:12:58,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:12:58,554 INFO Out dated connection ,size=0 + +2025-09-24 11:12:58,554 INFO Connection check task end + +2025-09-24 11:12:59,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:01,554 INFO Connection check task start + +2025-09-24 11:13:01,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:01,554 INFO Out dated connection ,size=0 + +2025-09-24 11:13:01,554 INFO Connection check task end + +2025-09-24 11:13:02,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:04,554 INFO Connection check task start + +2025-09-24 11:13:04,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:04,555 INFO Out dated connection ,size=0 + +2025-09-24 11:13:04,555 INFO Connection check task end + +2025-09-24 11:13:05,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:07,555 INFO Connection check task start + +2025-09-24 11:13:07,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:07,555 INFO Out dated connection ,size=0 + +2025-09-24 11:13:07,555 INFO Connection check task end + +2025-09-24 11:13:08,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:10,555 INFO Connection check task start + +2025-09-24 11:13:10,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:10,555 INFO Out dated connection ,size=0 + +2025-09-24 11:13:10,555 INFO Connection check task end + +2025-09-24 11:13:11,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:13,556 INFO Connection check task start + +2025-09-24 11:13:13,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:13,556 INFO Out dated connection ,size=0 + +2025-09-24 11:13:13,556 INFO Connection check task end + +2025-09-24 11:13:14,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:16,557 INFO Connection check task start + +2025-09-24 11:13:16,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:16,557 INFO Out dated connection ,size=0 + +2025-09-24 11:13:16,557 INFO Connection check task end + +2025-09-24 11:13:17,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:19,557 INFO Connection check task start + +2025-09-24 11:13:19,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:19,557 INFO Out dated connection ,size=0 + +2025-09-24 11:13:19,557 INFO Connection check task end + +2025-09-24 11:13:20,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:22,558 INFO Connection check task start + +2025-09-24 11:13:22,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:22,558 INFO Out dated connection ,size=0 + +2025-09-24 11:13:22,558 INFO Connection check task end + +2025-09-24 11:13:23,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:25,560 INFO Connection check task start + +2025-09-24 11:13:25,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:25,560 INFO Out dated connection ,size=0 + +2025-09-24 11:13:25,560 INFO Connection check task end + +2025-09-24 11:13:26,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:28,561 INFO Connection check task start + +2025-09-24 11:13:28,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:28,561 INFO Out dated connection ,size=0 + +2025-09-24 11:13:28,561 INFO Connection check task end + +2025-09-24 11:13:29,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:31,562 INFO Connection check task start + +2025-09-24 11:13:31,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:31,562 INFO Out dated connection ,size=0 + +2025-09-24 11:13:31,562 INFO Connection check task end + +2025-09-24 11:13:32,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:34,564 INFO Connection check task start + +2025-09-24 11:13:34,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:34,564 INFO Out dated connection ,size=0 + +2025-09-24 11:13:34,564 INFO Connection check task end + +2025-09-24 11:13:35,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:37,564 INFO Connection check task start + +2025-09-24 11:13:37,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:37,564 INFO Out dated connection ,size=0 + +2025-09-24 11:13:37,564 INFO Connection check task end + +2025-09-24 11:13:38,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:40,565 INFO Connection check task start + +2025-09-24 11:13:40,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:40,565 INFO Out dated connection ,size=0 + +2025-09-24 11:13:40,565 INFO Connection check task end + +2025-09-24 11:13:41,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:43,567 INFO Connection check task start + +2025-09-24 11:13:43,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:43,567 INFO Out dated connection ,size=0 + +2025-09-24 11:13:43,567 INFO Connection check task end + +2025-09-24 11:13:44,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:46,569 INFO Connection check task start + +2025-09-24 11:13:46,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:46,569 INFO Out dated connection ,size=0 + +2025-09-24 11:13:46,569 INFO Connection check task end + +2025-09-24 11:13:47,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:49,569 INFO Connection check task start + +2025-09-24 11:13:49,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:49,569 INFO Out dated connection ,size=0 + +2025-09-24 11:13:49,570 INFO Connection check task end + +2025-09-24 11:13:50,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:52,570 INFO Connection check task start + +2025-09-24 11:13:52,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:52,570 INFO Out dated connection ,size=0 + +2025-09-24 11:13:52,570 INFO Connection check task end + +2025-09-24 11:13:53,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:55,572 INFO Connection check task start + +2025-09-24 11:13:55,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:55,573 INFO Out dated connection ,size=0 + +2025-09-24 11:13:55,573 INFO Connection check task end + +2025-09-24 11:13:56,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:13:58,573 INFO Connection check task start + +2025-09-24 11:13:58,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:13:58,573 INFO Out dated connection ,size=0 + +2025-09-24 11:13:58,573 INFO Connection check task end + +2025-09-24 11:13:59,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:01,573 INFO Connection check task start + +2025-09-24 11:14:01,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:01,573 INFO Out dated connection ,size=0 + +2025-09-24 11:14:01,574 INFO Connection check task end + +2025-09-24 11:14:02,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:04,576 INFO Connection check task start + +2025-09-24 11:14:04,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:04,576 INFO Out dated connection ,size=0 + +2025-09-24 11:14:04,576 INFO Connection check task end + +2025-09-24 11:14:05,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:07,576 INFO Connection check task start + +2025-09-24 11:14:07,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:07,576 INFO Out dated connection ,size=0 + +2025-09-24 11:14:07,576 INFO Connection check task end + +2025-09-24 11:14:08,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:10,576 INFO Connection check task start + +2025-09-24 11:14:10,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:10,577 INFO Out dated connection ,size=0 + +2025-09-24 11:14:10,577 INFO Connection check task end + +2025-09-24 11:14:11,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:13,577 INFO Connection check task start + +2025-09-24 11:14:13,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:13,577 INFO Out dated connection ,size=0 + +2025-09-24 11:14:13,577 INFO Connection check task end + +2025-09-24 11:14:14,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:16,577 INFO Connection check task start + +2025-09-24 11:14:16,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:16,577 INFO Out dated connection ,size=0 + +2025-09-24 11:14:16,578 INFO Connection check task end + +2025-09-24 11:14:17,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:19,578 INFO Connection check task start + +2025-09-24 11:14:19,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:19,578 INFO Out dated connection ,size=0 + +2025-09-24 11:14:19,578 INFO Connection check task end + +2025-09-24 11:14:20,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:22,579 INFO Connection check task start + +2025-09-24 11:14:22,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:22,579 INFO Out dated connection ,size=0 + +2025-09-24 11:14:22,579 INFO Connection check task end + +2025-09-24 11:14:23,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:25,581 INFO Connection check task start + +2025-09-24 11:14:25,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:25,582 INFO Out dated connection ,size=0 + +2025-09-24 11:14:25,582 INFO Connection check task end + +2025-09-24 11:14:26,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:28,582 INFO Connection check task start + +2025-09-24 11:14:28,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:28,583 INFO Out dated connection ,size=0 + +2025-09-24 11:14:28,583 INFO Connection check task end + +2025-09-24 11:14:29,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:31,584 INFO Connection check task start + +2025-09-24 11:14:31,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:31,585 INFO Out dated connection ,size=0 + +2025-09-24 11:14:31,585 INFO Connection check task end + +2025-09-24 11:14:32,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:34,586 INFO Connection check task start + +2025-09-24 11:14:34,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:34,586 INFO Out dated connection ,size=0 + +2025-09-24 11:14:34,586 INFO Connection check task end + +2025-09-24 11:14:35,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:37,588 INFO Connection check task start + +2025-09-24 11:14:37,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:37,588 INFO Out dated connection ,size=0 + +2025-09-24 11:14:37,588 INFO Connection check task end + +2025-09-24 11:14:38,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:40,589 INFO Connection check task start + +2025-09-24 11:14:40,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:40,589 INFO Out dated connection ,size=0 + +2025-09-24 11:14:40,589 INFO Connection check task end + +2025-09-24 11:14:41,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:43,591 INFO Connection check task start + +2025-09-24 11:14:43,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:43,591 INFO Out dated connection ,size=0 + +2025-09-24 11:14:43,591 INFO Connection check task end + +2025-09-24 11:14:44,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:46,591 INFO Connection check task start + +2025-09-24 11:14:46,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:46,592 INFO Out dated connection ,size=0 + +2025-09-24 11:14:46,592 INFO Connection check task end + +2025-09-24 11:14:47,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:49,592 INFO Connection check task start + +2025-09-24 11:14:49,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:49,592 INFO Out dated connection ,size=0 + +2025-09-24 11:14:49,592 INFO Connection check task end + +2025-09-24 11:14:50,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:52,593 INFO Connection check task start + +2025-09-24 11:14:52,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:52,593 INFO Out dated connection ,size=0 + +2025-09-24 11:14:52,593 INFO Connection check task end + +2025-09-24 11:14:53,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:55,594 INFO Connection check task start + +2025-09-24 11:14:55,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:55,594 INFO Out dated connection ,size=0 + +2025-09-24 11:14:55,594 INFO Connection check task end + +2025-09-24 11:14:56,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:14:58,594 INFO Connection check task start + +2025-09-24 11:14:58,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:14:58,595 INFO Out dated connection ,size=0 + +2025-09-24 11:14:58,595 INFO Connection check task end + +2025-09-24 11:14:59,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:01,599 INFO Connection check task start + +2025-09-24 11:15:01,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:01,600 INFO Out dated connection ,size=0 + +2025-09-24 11:15:01,600 INFO Connection check task end + +2025-09-24 11:15:02,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:04,602 INFO Connection check task start + +2025-09-24 11:15:04,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:04,602 INFO Out dated connection ,size=0 + +2025-09-24 11:15:04,602 INFO Connection check task end + +2025-09-24 11:15:05,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:07,602 INFO Connection check task start + +2025-09-24 11:15:07,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:07,602 INFO Out dated connection ,size=0 + +2025-09-24 11:15:07,602 INFO Connection check task end + +2025-09-24 11:15:08,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:10,605 INFO Connection check task start + +2025-09-24 11:15:10,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:10,605 INFO Out dated connection ,size=0 + +2025-09-24 11:15:10,605 INFO Connection check task end + +2025-09-24 11:15:11,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:13,605 INFO Connection check task start + +2025-09-24 11:15:13,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:13,605 INFO Out dated connection ,size=0 + +2025-09-24 11:15:13,605 INFO Connection check task end + +2025-09-24 11:15:14,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:16,606 INFO Connection check task start + +2025-09-24 11:15:16,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:16,606 INFO Out dated connection ,size=0 + +2025-09-24 11:15:16,606 INFO Connection check task end + +2025-09-24 11:15:17,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:19,607 INFO Connection check task start + +2025-09-24 11:15:19,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:19,607 INFO Out dated connection ,size=0 + +2025-09-24 11:15:19,607 INFO Connection check task end + +2025-09-24 11:15:20,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:22,607 INFO Connection check task start + +2025-09-24 11:15:22,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:22,608 INFO Out dated connection ,size=0 + +2025-09-24 11:15:22,608 INFO Connection check task end + +2025-09-24 11:15:23,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:25,608 INFO Connection check task start + +2025-09-24 11:15:25,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:25,608 INFO Out dated connection ,size=0 + +2025-09-24 11:15:25,608 INFO Connection check task end + +2025-09-24 11:15:26,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:28,609 INFO Connection check task start + +2025-09-24 11:15:28,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:28,609 INFO Out dated connection ,size=0 + +2025-09-24 11:15:28,609 INFO Connection check task end + +2025-09-24 11:15:29,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:31,609 INFO Connection check task start + +2025-09-24 11:15:31,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:31,610 INFO Out dated connection ,size=0 + +2025-09-24 11:15:31,610 INFO Connection check task end + +2025-09-24 11:15:32,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:34,611 INFO Connection check task start + +2025-09-24 11:15:34,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:34,611 INFO Out dated connection ,size=0 + +2025-09-24 11:15:34,611 INFO Connection check task end + +2025-09-24 11:15:35,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:37,613 INFO Connection check task start + +2025-09-24 11:15:37,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:37,614 INFO Out dated connection ,size=0 + +2025-09-24 11:15:37,614 INFO Connection check task end + +2025-09-24 11:15:38,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:40,616 INFO Connection check task start + +2025-09-24 11:15:40,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:40,616 INFO Out dated connection ,size=0 + +2025-09-24 11:15:40,616 INFO Connection check task end + +2025-09-24 11:15:41,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:43,616 INFO Connection check task start + +2025-09-24 11:15:43,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:43,616 INFO Out dated connection ,size=0 + +2025-09-24 11:15:43,616 INFO Connection check task end + +2025-09-24 11:15:44,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:46,617 INFO Connection check task start + +2025-09-24 11:15:46,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:46,617 INFO Out dated connection ,size=0 + +2025-09-24 11:15:46,617 INFO Connection check task end + +2025-09-24 11:15:47,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:49,617 INFO Connection check task start + +2025-09-24 11:15:49,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:49,617 INFO Out dated connection ,size=0 + +2025-09-24 11:15:49,617 INFO Connection check task end + +2025-09-24 11:15:50,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:52,619 INFO Connection check task start + +2025-09-24 11:15:52,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:52,620 INFO Out dated connection ,size=0 + +2025-09-24 11:15:52,620 INFO Connection check task end + +2025-09-24 11:15:53,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:55,620 INFO Connection check task start + +2025-09-24 11:15:55,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:55,621 INFO Out dated connection ,size=0 + +2025-09-24 11:15:55,621 INFO Connection check task end + +2025-09-24 11:15:56,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:15:58,623 INFO Connection check task start + +2025-09-24 11:15:58,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:15:58,623 INFO Out dated connection ,size=0 + +2025-09-24 11:15:58,623 INFO Connection check task end + +2025-09-24 11:15:59,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:01,625 INFO Connection check task start + +2025-09-24 11:16:01,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:01,625 INFO Out dated connection ,size=0 + +2025-09-24 11:16:01,625 INFO Connection check task end + +2025-09-24 11:16:02,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:04,626 INFO Connection check task start + +2025-09-24 11:16:04,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:04,626 INFO Out dated connection ,size=0 + +2025-09-24 11:16:04,626 INFO Connection check task end + +2025-09-24 11:16:05,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:07,626 INFO Connection check task start + +2025-09-24 11:16:07,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:07,627 INFO Out dated connection ,size=0 + +2025-09-24 11:16:07,627 INFO Connection check task end + +2025-09-24 11:16:08,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:10,628 INFO Connection check task start + +2025-09-24 11:16:10,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:10,629 INFO Out dated connection ,size=0 + +2025-09-24 11:16:10,629 INFO Connection check task end + +2025-09-24 11:16:11,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:13,629 INFO Connection check task start + +2025-09-24 11:16:13,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:13,629 INFO Out dated connection ,size=0 + +2025-09-24 11:16:13,629 INFO Connection check task end + +2025-09-24 11:16:14,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:16,630 INFO Connection check task start + +2025-09-24 11:16:16,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:16,631 INFO Out dated connection ,size=0 + +2025-09-24 11:16:16,631 INFO Connection check task end + +2025-09-24 11:16:17,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:19,632 INFO Connection check task start + +2025-09-24 11:16:19,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:19,632 INFO Out dated connection ,size=0 + +2025-09-24 11:16:19,632 INFO Connection check task end + +2025-09-24 11:16:20,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:22,634 INFO Connection check task start + +2025-09-24 11:16:22,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:22,634 INFO Out dated connection ,size=0 + +2025-09-24 11:16:22,634 INFO Connection check task end + +2025-09-24 11:16:23,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:25,634 INFO Connection check task start + +2025-09-24 11:16:25,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:25,635 INFO Out dated connection ,size=0 + +2025-09-24 11:16:25,635 INFO Connection check task end + +2025-09-24 11:16:26,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:28,636 INFO Connection check task start + +2025-09-24 11:16:28,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:28,636 INFO Out dated connection ,size=0 + +2025-09-24 11:16:28,636 INFO Connection check task end + +2025-09-24 11:16:29,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:31,637 INFO Connection check task start + +2025-09-24 11:16:31,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:31,637 INFO Out dated connection ,size=0 + +2025-09-24 11:16:31,637 INFO Connection check task end + +2025-09-24 11:16:32,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:34,639 INFO Connection check task start + +2025-09-24 11:16:34,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:34,639 INFO Out dated connection ,size=0 + +2025-09-24 11:16:34,639 INFO Connection check task end + +2025-09-24 11:16:35,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:37,640 INFO Connection check task start + +2025-09-24 11:16:37,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:37,640 INFO Out dated connection ,size=0 + +2025-09-24 11:16:37,640 INFO Connection check task end + +2025-09-24 11:16:38,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:40,641 INFO Connection check task start + +2025-09-24 11:16:40,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:40,641 INFO Out dated connection ,size=0 + +2025-09-24 11:16:40,641 INFO Connection check task end + +2025-09-24 11:16:41,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:43,642 INFO Connection check task start + +2025-09-24 11:16:43,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:43,642 INFO Out dated connection ,size=0 + +2025-09-24 11:16:43,642 INFO Connection check task end + +2025-09-24 11:16:44,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:46,644 INFO Connection check task start + +2025-09-24 11:16:46,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:46,644 INFO Out dated connection ,size=0 + +2025-09-24 11:16:46,644 INFO Connection check task end + +2025-09-24 11:16:47,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:49,645 INFO Connection check task start + +2025-09-24 11:16:49,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:49,645 INFO Out dated connection ,size=0 + +2025-09-24 11:16:49,645 INFO Connection check task end + +2025-09-24 11:16:50,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:52,645 INFO Connection check task start + +2025-09-24 11:16:52,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:52,645 INFO Out dated connection ,size=0 + +2025-09-24 11:16:52,645 INFO Connection check task end + +2025-09-24 11:16:53,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:55,646 INFO Connection check task start + +2025-09-24 11:16:55,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:55,646 INFO Out dated connection ,size=0 + +2025-09-24 11:16:55,646 INFO Connection check task end + +2025-09-24 11:16:56,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:16:58,648 INFO Connection check task start + +2025-09-24 11:16:58,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:16:58,648 INFO Out dated connection ,size=0 + +2025-09-24 11:16:58,648 INFO Connection check task end + +2025-09-24 11:16:59,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:01,649 INFO Connection check task start + +2025-09-24 11:17:01,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:01,649 INFO Out dated connection ,size=0 + +2025-09-24 11:17:01,649 INFO Connection check task end + +2025-09-24 11:17:02,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:04,650 INFO Connection check task start + +2025-09-24 11:17:04,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:04,650 INFO Out dated connection ,size=0 + +2025-09-24 11:17:04,650 INFO Connection check task end + +2025-09-24 11:17:05,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:07,651 INFO Connection check task start + +2025-09-24 11:17:07,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:07,651 INFO Out dated connection ,size=0 + +2025-09-24 11:17:07,651 INFO Connection check task end + +2025-09-24 11:17:08,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:10,653 INFO Connection check task start + +2025-09-24 11:17:10,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:10,653 INFO Out dated connection ,size=0 + +2025-09-24 11:17:10,653 INFO Connection check task end + +2025-09-24 11:17:11,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:13,656 INFO Connection check task start + +2025-09-24 11:17:13,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:13,656 INFO Out dated connection ,size=0 + +2025-09-24 11:17:13,656 INFO Connection check task end + +2025-09-24 11:17:14,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:16,657 INFO Connection check task start + +2025-09-24 11:17:16,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:16,657 INFO Out dated connection ,size=0 + +2025-09-24 11:17:16,657 INFO Connection check task end + +2025-09-24 11:17:17,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:19,657 INFO Connection check task start + +2025-09-24 11:17:19,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:19,658 INFO Out dated connection ,size=0 + +2025-09-24 11:17:19,658 INFO Connection check task end + +2025-09-24 11:17:20,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:22,660 INFO Connection check task start + +2025-09-24 11:17:22,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:22,660 INFO Out dated connection ,size=0 + +2025-09-24 11:17:22,660 INFO Connection check task end + +2025-09-24 11:17:23,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:25,660 INFO Connection check task start + +2025-09-24 11:17:25,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:25,660 INFO Out dated connection ,size=0 + +2025-09-24 11:17:25,660 INFO Connection check task end + +2025-09-24 11:17:26,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:28,663 INFO Connection check task start + +2025-09-24 11:17:28,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:28,663 INFO Out dated connection ,size=0 + +2025-09-24 11:17:28,663 INFO Connection check task end + +2025-09-24 11:17:29,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:31,665 INFO Connection check task start + +2025-09-24 11:17:31,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:31,665 INFO Out dated connection ,size=0 + +2025-09-24 11:17:31,665 INFO Connection check task end + +2025-09-24 11:17:32,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:34,667 INFO Connection check task start + +2025-09-24 11:17:34,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:34,667 INFO Out dated connection ,size=0 + +2025-09-24 11:17:34,667 INFO Connection check task end + +2025-09-24 11:17:35,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:37,668 INFO Connection check task start + +2025-09-24 11:17:37,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:37,668 INFO Out dated connection ,size=0 + +2025-09-24 11:17:37,668 INFO Connection check task end + +2025-09-24 11:17:38,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:40,670 INFO Connection check task start + +2025-09-24 11:17:40,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:40,670 INFO Out dated connection ,size=0 + +2025-09-24 11:17:40,670 INFO Connection check task end + +2025-09-24 11:17:41,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:43,671 INFO Connection check task start + +2025-09-24 11:17:43,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:43,671 INFO Out dated connection ,size=0 + +2025-09-24 11:17:43,671 INFO Connection check task end + +2025-09-24 11:17:44,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:46,672 INFO Connection check task start + +2025-09-24 11:17:46,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:46,672 INFO Out dated connection ,size=0 + +2025-09-24 11:17:46,672 INFO Connection check task end + +2025-09-24 11:17:47,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:49,674 INFO Connection check task start + +2025-09-24 11:17:49,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:49,675 INFO Out dated connection ,size=0 + +2025-09-24 11:17:49,675 INFO Connection check task end + +2025-09-24 11:17:50,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:52,675 INFO Connection check task start + +2025-09-24 11:17:52,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:52,675 INFO Out dated connection ,size=0 + +2025-09-24 11:17:52,675 INFO Connection check task end + +2025-09-24 11:17:53,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:55,676 INFO Connection check task start + +2025-09-24 11:17:55,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:55,676 INFO Out dated connection ,size=0 + +2025-09-24 11:17:55,676 INFO Connection check task end + +2025-09-24 11:17:56,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:17:58,676 INFO Connection check task start + +2025-09-24 11:17:58,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:17:58,676 INFO Out dated connection ,size=0 + +2025-09-24 11:17:58,676 INFO Connection check task end + +2025-09-24 11:17:59,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:01,678 INFO Connection check task start + +2025-09-24 11:18:01,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:01,678 INFO Out dated connection ,size=0 + +2025-09-24 11:18:01,679 INFO Connection check task end + +2025-09-24 11:18:02,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:04,679 INFO Connection check task start + +2025-09-24 11:18:04,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:04,679 INFO Out dated connection ,size=0 + +2025-09-24 11:18:04,679 INFO Connection check task end + +2025-09-24 11:18:05,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:07,681 INFO Connection check task start + +2025-09-24 11:18:07,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:07,681 INFO Out dated connection ,size=0 + +2025-09-24 11:18:07,681 INFO Connection check task end + +2025-09-24 11:18:08,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:10,683 INFO Connection check task start + +2025-09-24 11:18:10,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:10,683 INFO Out dated connection ,size=0 + +2025-09-24 11:18:10,683 INFO Connection check task end + +2025-09-24 11:18:11,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:13,683 INFO Connection check task start + +2025-09-24 11:18:13,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:13,683 INFO Out dated connection ,size=0 + +2025-09-24 11:18:13,684 INFO Connection check task end + +2025-09-24 11:18:14,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:16,684 INFO Connection check task start + +2025-09-24 11:18:16,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:16,684 INFO Out dated connection ,size=0 + +2025-09-24 11:18:16,684 INFO Connection check task end + +2025-09-24 11:18:17,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:19,685 INFO Connection check task start + +2025-09-24 11:18:19,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:19,685 INFO Out dated connection ,size=0 + +2025-09-24 11:18:19,685 INFO Connection check task end + +2025-09-24 11:18:20,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:22,685 INFO Connection check task start + +2025-09-24 11:18:22,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:22,686 INFO Out dated connection ,size=0 + +2025-09-24 11:18:22,686 INFO Connection check task end + +2025-09-24 11:18:23,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:25,686 INFO Connection check task start + +2025-09-24 11:18:25,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:25,686 INFO Out dated connection ,size=0 + +2025-09-24 11:18:25,686 INFO Connection check task end + +2025-09-24 11:18:26,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:28,687 INFO Connection check task start + +2025-09-24 11:18:28,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:28,687 INFO Out dated connection ,size=0 + +2025-09-24 11:18:28,687 INFO Connection check task end + +2025-09-24 11:18:29,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:31,687 INFO Connection check task start + +2025-09-24 11:18:31,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:31,687 INFO Out dated connection ,size=0 + +2025-09-24 11:18:31,687 INFO Connection check task end + +2025-09-24 11:18:32,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:34,689 INFO Connection check task start + +2025-09-24 11:18:34,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:34,690 INFO Out dated connection ,size=0 + +2025-09-24 11:18:34,690 INFO Connection check task end + +2025-09-24 11:18:35,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:37,690 INFO Connection check task start + +2025-09-24 11:18:37,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:37,690 INFO Out dated connection ,size=0 + +2025-09-24 11:18:37,690 INFO Connection check task end + +2025-09-24 11:18:38,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:40,691 INFO Connection check task start + +2025-09-24 11:18:40,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:40,692 INFO Out dated connection ,size=0 + +2025-09-24 11:18:40,692 INFO Connection check task end + +2025-09-24 11:18:41,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:43,692 INFO Connection check task start + +2025-09-24 11:18:43,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:43,692 INFO Out dated connection ,size=0 + +2025-09-24 11:18:43,692 INFO Connection check task end + +2025-09-24 11:18:44,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:46,693 INFO Connection check task start + +2025-09-24 11:18:46,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:46,693 INFO Out dated connection ,size=0 + +2025-09-24 11:18:46,693 INFO Connection check task end + +2025-09-24 11:18:47,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:49,695 INFO Connection check task start + +2025-09-24 11:18:49,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:49,695 INFO Out dated connection ,size=0 + +2025-09-24 11:18:49,695 INFO Connection check task end + +2025-09-24 11:18:50,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:52,696 INFO Connection check task start + +2025-09-24 11:18:52,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:52,696 INFO Out dated connection ,size=0 + +2025-09-24 11:18:52,696 INFO Connection check task end + +2025-09-24 11:18:53,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:55,696 INFO Connection check task start + +2025-09-24 11:18:55,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:55,696 INFO Out dated connection ,size=0 + +2025-09-24 11:18:55,696 INFO Connection check task end + +2025-09-24 11:18:56,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:18:58,698 INFO Connection check task start + +2025-09-24 11:18:58,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:18:58,698 INFO Out dated connection ,size=0 + +2025-09-24 11:18:58,698 INFO Connection check task end + +2025-09-24 11:18:59,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:01,699 INFO Connection check task start + +2025-09-24 11:19:01,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:01,699 INFO Out dated connection ,size=0 + +2025-09-24 11:19:01,699 INFO Connection check task end + +2025-09-24 11:19:02,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:04,699 INFO Connection check task start + +2025-09-24 11:19:04,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:04,699 INFO Out dated connection ,size=0 + +2025-09-24 11:19:04,699 INFO Connection check task end + +2025-09-24 11:19:05,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:07,701 INFO Connection check task start + +2025-09-24 11:19:07,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:07,701 INFO Out dated connection ,size=0 + +2025-09-24 11:19:07,702 INFO Connection check task end + +2025-09-24 11:19:08,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:10,704 INFO Connection check task start + +2025-09-24 11:19:10,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:10,704 INFO Out dated connection ,size=0 + +2025-09-24 11:19:10,704 INFO Connection check task end + +2025-09-24 11:19:11,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:13,706 INFO Connection check task start + +2025-09-24 11:19:13,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:13,713 INFO Out dated connection ,size=0 + +2025-09-24 11:19:13,713 INFO Connection check task end + +2025-09-24 11:19:14,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:16,715 INFO Connection check task start + +2025-09-24 11:19:16,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:16,715 INFO Out dated connection ,size=0 + +2025-09-24 11:19:16,716 INFO Connection check task end + +2025-09-24 11:19:17,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:19,717 INFO Connection check task start + +2025-09-24 11:19:19,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:19,717 INFO Out dated connection ,size=0 + +2025-09-24 11:19:19,717 INFO Connection check task end + +2025-09-24 11:19:20,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:22,718 INFO Connection check task start + +2025-09-24 11:19:22,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:22,718 INFO Out dated connection ,size=0 + +2025-09-24 11:19:22,718 INFO Connection check task end + +2025-09-24 11:19:23,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:25,718 INFO Connection check task start + +2025-09-24 11:19:25,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:25,719 INFO Out dated connection ,size=0 + +2025-09-24 11:19:25,719 INFO Connection check task end + +2025-09-24 11:19:26,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:28,720 INFO Connection check task start + +2025-09-24 11:19:28,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:28,720 INFO Out dated connection ,size=0 + +2025-09-24 11:19:28,720 INFO Connection check task end + +2025-09-24 11:19:29,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:31,722 INFO Connection check task start + +2025-09-24 11:19:31,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:31,722 INFO Out dated connection ,size=0 + +2025-09-24 11:19:31,722 INFO Connection check task end + +2025-09-24 11:19:32,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:34,722 INFO Connection check task start + +2025-09-24 11:19:34,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:34,723 INFO Out dated connection ,size=0 + +2025-09-24 11:19:34,723 INFO Connection check task end + +2025-09-24 11:19:35,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:37,723 INFO Connection check task start + +2025-09-24 11:19:37,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:37,723 INFO Out dated connection ,size=0 + +2025-09-24 11:19:37,723 INFO Connection check task end + +2025-09-24 11:19:38,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:40,724 INFO Connection check task start + +2025-09-24 11:19:40,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:40,724 INFO Out dated connection ,size=0 + +2025-09-24 11:19:40,724 INFO Connection check task end + +2025-09-24 11:19:41,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:43,724 INFO Connection check task start + +2025-09-24 11:19:43,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:43,724 INFO Out dated connection ,size=0 + +2025-09-24 11:19:43,724 INFO Connection check task end + +2025-09-24 11:19:44,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:46,725 INFO Connection check task start + +2025-09-24 11:19:46,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:46,726 INFO Out dated connection ,size=0 + +2025-09-24 11:19:46,726 INFO Connection check task end + +2025-09-24 11:19:47,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:49,728 INFO Connection check task start + +2025-09-24 11:19:49,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:49,728 INFO Out dated connection ,size=0 + +2025-09-24 11:19:49,728 INFO Connection check task end + +2025-09-24 11:19:50,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:52,728 INFO Connection check task start + +2025-09-24 11:19:52,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:52,728 INFO Out dated connection ,size=0 + +2025-09-24 11:19:52,728 INFO Connection check task end + +2025-09-24 11:19:53,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:55,729 INFO Connection check task start + +2025-09-24 11:19:55,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:55,729 INFO Out dated connection ,size=0 + +2025-09-24 11:19:55,729 INFO Connection check task end + +2025-09-24 11:19:56,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:19:58,731 INFO Connection check task start + +2025-09-24 11:19:58,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:19:58,731 INFO Out dated connection ,size=0 + +2025-09-24 11:19:58,731 INFO Connection check task end + +2025-09-24 11:19:59,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:01,731 INFO Connection check task start + +2025-09-24 11:20:01,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:01,732 INFO Out dated connection ,size=0 + +2025-09-24 11:20:01,732 INFO Connection check task end + +2025-09-24 11:20:02,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:04,732 INFO Connection check task start + +2025-09-24 11:20:04,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:04,732 INFO Out dated connection ,size=0 + +2025-09-24 11:20:04,732 INFO Connection check task end + +2025-09-24 11:20:05,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:07,733 INFO Connection check task start + +2025-09-24 11:20:07,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:07,733 INFO Out dated connection ,size=0 + +2025-09-24 11:20:07,733 INFO Connection check task end + +2025-09-24 11:20:08,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:10,735 INFO Connection check task start + +2025-09-24 11:20:10,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:10,735 INFO Out dated connection ,size=0 + +2025-09-24 11:20:10,735 INFO Connection check task end + +2025-09-24 11:20:11,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:13,737 INFO Connection check task start + +2025-09-24 11:20:13,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:13,738 INFO Out dated connection ,size=0 + +2025-09-24 11:20:13,738 INFO Connection check task end + +2025-09-24 11:20:14,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:16,738 INFO Connection check task start + +2025-09-24 11:20:16,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:16,738 INFO Out dated connection ,size=0 + +2025-09-24 11:20:16,738 INFO Connection check task end + +2025-09-24 11:20:17,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:19,739 INFO Connection check task start + +2025-09-24 11:20:19,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:19,739 INFO Out dated connection ,size=0 + +2025-09-24 11:20:19,739 INFO Connection check task end + +2025-09-24 11:20:20,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:22,739 INFO Connection check task start + +2025-09-24 11:20:22,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:22,739 INFO Out dated connection ,size=0 + +2025-09-24 11:20:22,739 INFO Connection check task end + +2025-09-24 11:20:24,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:25,741 INFO Connection check task start + +2025-09-24 11:20:25,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:25,741 INFO Out dated connection ,size=0 + +2025-09-24 11:20:25,741 INFO Connection check task end + +2025-09-24 11:20:27,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:28,743 INFO Connection check task start + +2025-09-24 11:20:28,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:28,743 INFO Out dated connection ,size=0 + +2025-09-24 11:20:28,743 INFO Connection check task end + +2025-09-24 11:20:30,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:31,745 INFO Connection check task start + +2025-09-24 11:20:31,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:31,745 INFO Out dated connection ,size=0 + +2025-09-24 11:20:31,745 INFO Connection check task end + +2025-09-24 11:20:33,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:34,747 INFO Connection check task start + +2025-09-24 11:20:34,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:34,747 INFO Out dated connection ,size=0 + +2025-09-24 11:20:34,747 INFO Connection check task end + +2025-09-24 11:20:36,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:37,747 INFO Connection check task start + +2025-09-24 11:20:37,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:37,747 INFO Out dated connection ,size=0 + +2025-09-24 11:20:37,748 INFO Connection check task end + +2025-09-24 11:20:39,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:40,750 INFO Connection check task start + +2025-09-24 11:20:40,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:40,750 INFO Out dated connection ,size=0 + +2025-09-24 11:20:40,750 INFO Connection check task end + +2025-09-24 11:20:42,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:43,752 INFO Connection check task start + +2025-09-24 11:20:43,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:43,752 INFO Out dated connection ,size=0 + +2025-09-24 11:20:43,752 INFO Connection check task end + +2025-09-24 11:20:45,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:46,753 INFO Connection check task start + +2025-09-24 11:20:46,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:46,753 INFO Out dated connection ,size=0 + +2025-09-24 11:20:46,753 INFO Connection check task end + +2025-09-24 11:20:48,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:49,754 INFO Connection check task start + +2025-09-24 11:20:49,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:49,754 INFO Out dated connection ,size=0 + +2025-09-24 11:20:49,754 INFO Connection check task end + +2025-09-24 11:20:51,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:52,756 INFO Connection check task start + +2025-09-24 11:20:52,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:52,756 INFO Out dated connection ,size=0 + +2025-09-24 11:20:52,756 INFO Connection check task end + +2025-09-24 11:20:54,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:55,757 INFO Connection check task start + +2025-09-24 11:20:55,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:55,757 INFO Out dated connection ,size=0 + +2025-09-24 11:20:55,757 INFO Connection check task end + +2025-09-24 11:20:57,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:20:58,758 INFO Connection check task start + +2025-09-24 11:20:58,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:20:58,758 INFO Out dated connection ,size=0 + +2025-09-24 11:20:58,758 INFO Connection check task end + +2025-09-24 11:21:00,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:01,758 INFO Connection check task start + +2025-09-24 11:21:01,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:01,759 INFO Out dated connection ,size=0 + +2025-09-24 11:21:01,759 INFO Connection check task end + +2025-09-24 11:21:03,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:04,760 INFO Connection check task start + +2025-09-24 11:21:04,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:04,760 INFO Out dated connection ,size=0 + +2025-09-24 11:21:04,760 INFO Connection check task end + +2025-09-24 11:21:06,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:07,761 INFO Connection check task start + +2025-09-24 11:21:07,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:07,761 INFO Out dated connection ,size=0 + +2025-09-24 11:21:07,761 INFO Connection check task end + +2025-09-24 11:21:09,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:10,763 INFO Connection check task start + +2025-09-24 11:21:10,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:10,763 INFO Out dated connection ,size=0 + +2025-09-24 11:21:10,763 INFO Connection check task end + +2025-09-24 11:21:12,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:13,765 INFO Connection check task start + +2025-09-24 11:21:13,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:13,765 INFO Out dated connection ,size=0 + +2025-09-24 11:21:13,765 INFO Connection check task end + +2025-09-24 11:21:15,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:16,767 INFO Connection check task start + +2025-09-24 11:21:16,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:16,767 INFO Out dated connection ,size=0 + +2025-09-24 11:21:16,768 INFO Connection check task end + +2025-09-24 11:21:18,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:19,768 INFO Connection check task start + +2025-09-24 11:21:19,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:19,768 INFO Out dated connection ,size=0 + +2025-09-24 11:21:19,768 INFO Connection check task end + +2025-09-24 11:21:21,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:22,769 INFO Connection check task start + +2025-09-24 11:21:22,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:22,769 INFO Out dated connection ,size=0 + +2025-09-24 11:21:22,769 INFO Connection check task end + +2025-09-24 11:21:24,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:25,770 INFO Connection check task start + +2025-09-24 11:21:25,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:25,770 INFO Out dated connection ,size=0 + +2025-09-24 11:21:25,770 INFO Connection check task end + +2025-09-24 11:21:27,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:28,770 INFO Connection check task start + +2025-09-24 11:21:28,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:28,770 INFO Out dated connection ,size=0 + +2025-09-24 11:21:28,770 INFO Connection check task end + +2025-09-24 11:21:30,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:31,771 INFO Connection check task start + +2025-09-24 11:21:31,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:31,771 INFO Out dated connection ,size=0 + +2025-09-24 11:21:31,771 INFO Connection check task end + +2025-09-24 11:21:33,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:34,772 INFO Connection check task start + +2025-09-24 11:21:34,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:34,772 INFO Out dated connection ,size=0 + +2025-09-24 11:21:34,772 INFO Connection check task end + +2025-09-24 11:21:36,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:37,772 INFO Connection check task start + +2025-09-24 11:21:37,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:37,772 INFO Out dated connection ,size=0 + +2025-09-24 11:21:37,772 INFO Connection check task end + +2025-09-24 11:21:39,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:40,773 INFO Connection check task start + +2025-09-24 11:21:40,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:40,773 INFO Out dated connection ,size=0 + +2025-09-24 11:21:40,773 INFO Connection check task end + +2025-09-24 11:21:42,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:43,775 INFO Connection check task start + +2025-09-24 11:21:43,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:43,775 INFO Out dated connection ,size=0 + +2025-09-24 11:21:43,775 INFO Connection check task end + +2025-09-24 11:21:45,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:46,777 INFO Connection check task start + +2025-09-24 11:21:46,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:46,777 INFO Out dated connection ,size=0 + +2025-09-24 11:21:46,777 INFO Connection check task end + +2025-09-24 11:21:48,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:49,778 INFO Connection check task start + +2025-09-24 11:21:49,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:49,778 INFO Out dated connection ,size=0 + +2025-09-24 11:21:49,778 INFO Connection check task end + +2025-09-24 11:21:51,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:52,778 INFO Connection check task start + +2025-09-24 11:21:52,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:52,778 INFO Out dated connection ,size=0 + +2025-09-24 11:21:52,778 INFO Connection check task end + +2025-09-24 11:21:54,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:55,779 INFO Connection check task start + +2025-09-24 11:21:55,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:55,779 INFO Out dated connection ,size=0 + +2025-09-24 11:21:55,779 INFO Connection check task end + +2025-09-24 11:21:57,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:21:58,780 INFO Connection check task start + +2025-09-24 11:21:58,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:21:58,780 INFO Out dated connection ,size=0 + +2025-09-24 11:21:58,780 INFO Connection check task end + +2025-09-24 11:22:00,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:01,781 INFO Connection check task start + +2025-09-24 11:22:01,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:01,782 INFO Out dated connection ,size=0 + +2025-09-24 11:22:01,782 INFO Connection check task end + +2025-09-24 11:22:03,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:04,784 INFO Connection check task start + +2025-09-24 11:22:04,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:04,784 INFO Out dated connection ,size=0 + +2025-09-24 11:22:04,784 INFO Connection check task end + +2025-09-24 11:22:06,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:07,786 INFO Connection check task start + +2025-09-24 11:22:07,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:07,786 INFO Out dated connection ,size=0 + +2025-09-24 11:22:07,786 INFO Connection check task end + +2025-09-24 11:22:09,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:10,789 INFO Connection check task start + +2025-09-24 11:22:10,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:10,789 INFO Out dated connection ,size=0 + +2025-09-24 11:22:10,789 INFO Connection check task end + +2025-09-24 11:22:12,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:13,789 INFO Connection check task start + +2025-09-24 11:22:13,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:13,790 INFO Out dated connection ,size=0 + +2025-09-24 11:22:13,790 INFO Connection check task end + +2025-09-24 11:22:15,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:16,790 INFO Connection check task start + +2025-09-24 11:22:16,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:16,790 INFO Out dated connection ,size=0 + +2025-09-24 11:22:16,790 INFO Connection check task end + +2025-09-24 11:22:18,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:19,791 INFO Connection check task start + +2025-09-24 11:22:19,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:19,791 INFO Out dated connection ,size=0 + +2025-09-24 11:22:19,791 INFO Connection check task end + +2025-09-24 11:22:21,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:22,791 INFO Connection check task start + +2025-09-24 11:22:22,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:22,792 INFO Out dated connection ,size=0 + +2025-09-24 11:22:22,792 INFO Connection check task end + +2025-09-24 11:22:24,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:25,794 INFO Connection check task start + +2025-09-24 11:22:25,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:25,794 INFO Out dated connection ,size=0 + +2025-09-24 11:22:25,794 INFO Connection check task end + +2025-09-24 11:22:27,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:28,794 INFO Connection check task start + +2025-09-24 11:22:28,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:28,795 INFO Out dated connection ,size=0 + +2025-09-24 11:22:28,795 INFO Connection check task end + +2025-09-24 11:22:30,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:31,795 INFO Connection check task start + +2025-09-24 11:22:31,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:31,795 INFO Out dated connection ,size=0 + +2025-09-24 11:22:31,795 INFO Connection check task end + +2025-09-24 11:22:33,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:34,796 INFO Connection check task start + +2025-09-24 11:22:34,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:34,796 INFO Out dated connection ,size=0 + +2025-09-24 11:22:34,796 INFO Connection check task end + +2025-09-24 11:22:36,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:37,796 INFO Connection check task start + +2025-09-24 11:22:37,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:37,797 INFO Out dated connection ,size=0 + +2025-09-24 11:22:37,797 INFO Connection check task end + +2025-09-24 11:22:39,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:40,797 INFO Connection check task start + +2025-09-24 11:22:40,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:40,797 INFO Out dated connection ,size=0 + +2025-09-24 11:22:40,797 INFO Connection check task end + +2025-09-24 11:22:42,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:43,799 INFO Connection check task start + +2025-09-24 11:22:43,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:43,799 INFO Out dated connection ,size=0 + +2025-09-24 11:22:43,799 INFO Connection check task end + +2025-09-24 11:22:45,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:46,801 INFO Connection check task start + +2025-09-24 11:22:46,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:46,801 INFO Out dated connection ,size=0 + +2025-09-24 11:22:46,801 INFO Connection check task end + +2025-09-24 11:22:48,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:49,801 INFO Connection check task start + +2025-09-24 11:22:49,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:49,802 INFO Out dated connection ,size=0 + +2025-09-24 11:22:49,802 INFO Connection check task end + +2025-09-24 11:22:51,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:52,802 INFO Connection check task start + +2025-09-24 11:22:52,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:52,802 INFO Out dated connection ,size=0 + +2025-09-24 11:22:52,802 INFO Connection check task end + +2025-09-24 11:22:54,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:55,803 INFO Connection check task start + +2025-09-24 11:22:55,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:55,803 INFO Out dated connection ,size=0 + +2025-09-24 11:22:55,803 INFO Connection check task end + +2025-09-24 11:22:57,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:22:58,805 INFO Connection check task start + +2025-09-24 11:22:58,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:22:58,805 INFO Out dated connection ,size=0 + +2025-09-24 11:22:58,805 INFO Connection check task end + +2025-09-24 11:23:00,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:01,805 INFO Connection check task start + +2025-09-24 11:23:01,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:01,806 INFO Out dated connection ,size=0 + +2025-09-24 11:23:01,806 INFO Connection check task end + +2025-09-24 11:23:03,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:04,807 INFO Connection check task start + +2025-09-24 11:23:04,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:04,807 INFO Out dated connection ,size=0 + +2025-09-24 11:23:04,807 INFO Connection check task end + +2025-09-24 11:23:06,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:07,807 INFO Connection check task start + +2025-09-24 11:23:07,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:07,807 INFO Out dated connection ,size=0 + +2025-09-24 11:23:07,807 INFO Connection check task end + +2025-09-24 11:23:09,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:10,808 INFO Connection check task start + +2025-09-24 11:23:10,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:10,808 INFO Out dated connection ,size=0 + +2025-09-24 11:23:10,808 INFO Connection check task end + +2025-09-24 11:23:12,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:13,808 INFO Connection check task start + +2025-09-24 11:23:13,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:13,808 INFO Out dated connection ,size=0 + +2025-09-24 11:23:13,808 INFO Connection check task end + +2025-09-24 11:23:15,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:16,810 INFO Connection check task start + +2025-09-24 11:23:16,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:16,810 INFO Out dated connection ,size=0 + +2025-09-24 11:23:16,810 INFO Connection check task end + +2025-09-24 11:23:18,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:19,812 INFO Connection check task start + +2025-09-24 11:23:19,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:19,812 INFO Out dated connection ,size=0 + +2025-09-24 11:23:19,812 INFO Connection check task end + +2025-09-24 11:23:21,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:22,814 INFO Connection check task start + +2025-09-24 11:23:22,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:22,814 INFO Out dated connection ,size=0 + +2025-09-24 11:23:22,814 INFO Connection check task end + +2025-09-24 11:23:24,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:25,815 INFO Connection check task start + +2025-09-24 11:23:25,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:25,815 INFO Out dated connection ,size=0 + +2025-09-24 11:23:25,815 INFO Connection check task end + +2025-09-24 11:23:27,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:28,816 INFO Connection check task start + +2025-09-24 11:23:28,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:28,816 INFO Out dated connection ,size=0 + +2025-09-24 11:23:28,816 INFO Connection check task end + +2025-09-24 11:23:30,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:31,817 INFO Connection check task start + +2025-09-24 11:23:31,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:31,817 INFO Out dated connection ,size=0 + +2025-09-24 11:23:31,817 INFO Connection check task end + +2025-09-24 11:23:33,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:34,819 INFO Connection check task start + +2025-09-24 11:23:34,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:34,820 INFO Out dated connection ,size=0 + +2025-09-24 11:23:34,820 INFO Connection check task end + +2025-09-24 11:23:36,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:37,820 INFO Connection check task start + +2025-09-24 11:23:37,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:37,820 INFO Out dated connection ,size=0 + +2025-09-24 11:23:37,820 INFO Connection check task end + +2025-09-24 11:23:39,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:40,822 INFO Connection check task start + +2025-09-24 11:23:40,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:40,822 INFO Out dated connection ,size=0 + +2025-09-24 11:23:40,822 INFO Connection check task end + +2025-09-24 11:23:42,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:43,824 INFO Connection check task start + +2025-09-24 11:23:43,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:43,824 INFO Out dated connection ,size=0 + +2025-09-24 11:23:43,824 INFO Connection check task end + +2025-09-24 11:23:45,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:46,825 INFO Connection check task start + +2025-09-24 11:23:46,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:46,825 INFO Out dated connection ,size=0 + +2025-09-24 11:23:46,825 INFO Connection check task end + +2025-09-24 11:23:48,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:49,827 INFO Connection check task start + +2025-09-24 11:23:49,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:49,827 INFO Out dated connection ,size=0 + +2025-09-24 11:23:49,827 INFO Connection check task end + +2025-09-24 11:23:51,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:52,828 INFO Connection check task start + +2025-09-24 11:23:52,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:52,828 INFO Out dated connection ,size=0 + +2025-09-24 11:23:52,828 INFO Connection check task end + +2025-09-24 11:23:54,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:55,830 INFO Connection check task start + +2025-09-24 11:23:55,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:55,830 INFO Out dated connection ,size=0 + +2025-09-24 11:23:55,830 INFO Connection check task end + +2025-09-24 11:23:57,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:23:58,831 INFO Connection check task start + +2025-09-24 11:23:58,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:23:58,831 INFO Out dated connection ,size=0 + +2025-09-24 11:23:58,831 INFO Connection check task end + +2025-09-24 11:24:00,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:01,832 INFO Connection check task start + +2025-09-24 11:24:01,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:01,832 INFO Out dated connection ,size=0 + +2025-09-24 11:24:01,832 INFO Connection check task end + +2025-09-24 11:24:03,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:04,833 INFO Connection check task start + +2025-09-24 11:24:04,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:04,833 INFO Out dated connection ,size=0 + +2025-09-24 11:24:04,833 INFO Connection check task end + +2025-09-24 11:24:06,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:07,834 INFO Connection check task start + +2025-09-24 11:24:07,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:07,834 INFO Out dated connection ,size=0 + +2025-09-24 11:24:07,834 INFO Connection check task end + +2025-09-24 11:24:09,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:10,834 INFO Connection check task start + +2025-09-24 11:24:10,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:10,834 INFO Out dated connection ,size=0 + +2025-09-24 11:24:10,834 INFO Connection check task end + +2025-09-24 11:24:12,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:13,836 INFO Connection check task start + +2025-09-24 11:24:13,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:13,837 INFO Out dated connection ,size=0 + +2025-09-24 11:24:13,837 INFO Connection check task end + +2025-09-24 11:24:15,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:16,837 INFO Connection check task start + +2025-09-24 11:24:16,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:16,837 INFO Out dated connection ,size=0 + +2025-09-24 11:24:16,837 INFO Connection check task end + +2025-09-24 11:24:18,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:19,837 INFO Connection check task start + +2025-09-24 11:24:19,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:19,837 INFO Out dated connection ,size=0 + +2025-09-24 11:24:19,837 INFO Connection check task end + +2025-09-24 11:24:21,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:22,838 INFO Connection check task start + +2025-09-24 11:24:22,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:22,838 INFO Out dated connection ,size=0 + +2025-09-24 11:24:22,838 INFO Connection check task end + +2025-09-24 11:24:24,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:25,839 INFO Connection check task start + +2025-09-24 11:24:25,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:25,841 INFO Out dated connection ,size=0 + +2025-09-24 11:24:25,841 INFO Connection check task end + +2025-09-24 11:24:27,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:28,843 INFO Connection check task start + +2025-09-24 11:24:28,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:28,843 INFO Out dated connection ,size=0 + +2025-09-24 11:24:28,843 INFO Connection check task end + +2025-09-24 11:24:30,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:31,843 INFO Connection check task start + +2025-09-24 11:24:31,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:31,843 INFO Out dated connection ,size=0 + +2025-09-24 11:24:31,843 INFO Connection check task end + +2025-09-24 11:24:33,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:34,844 INFO Connection check task start + +2025-09-24 11:24:34,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:34,844 INFO Out dated connection ,size=0 + +2025-09-24 11:24:34,844 INFO Connection check task end + +2025-09-24 11:24:36,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:37,846 INFO Connection check task start + +2025-09-24 11:24:37,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:37,846 INFO Out dated connection ,size=0 + +2025-09-24 11:24:37,846 INFO Connection check task end + +2025-09-24 11:24:39,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:40,847 INFO Connection check task start + +2025-09-24 11:24:40,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:40,847 INFO Out dated connection ,size=0 + +2025-09-24 11:24:40,847 INFO Connection check task end + +2025-09-24 11:24:42,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:43,848 INFO Connection check task start + +2025-09-24 11:24:43,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:43,848 INFO Out dated connection ,size=0 + +2025-09-24 11:24:43,848 INFO Connection check task end + +2025-09-24 11:24:45,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:46,848 INFO Connection check task start + +2025-09-24 11:24:46,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:46,849 INFO Out dated connection ,size=0 + +2025-09-24 11:24:46,849 INFO Connection check task end + +2025-09-24 11:24:48,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:49,849 INFO Connection check task start + +2025-09-24 11:24:49,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:49,849 INFO Out dated connection ,size=0 + +2025-09-24 11:24:49,849 INFO Connection check task end + +2025-09-24 11:24:51,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:52,849 INFO Connection check task start + +2025-09-24 11:24:52,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:52,850 INFO Out dated connection ,size=0 + +2025-09-24 11:24:52,850 INFO Connection check task end + +2025-09-24 11:24:54,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:55,852 INFO Connection check task start + +2025-09-24 11:24:55,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:55,852 INFO Out dated connection ,size=0 + +2025-09-24 11:24:55,852 INFO Connection check task end + +2025-09-24 11:24:57,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:24:58,852 INFO Connection check task start + +2025-09-24 11:24:58,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:24:58,853 INFO Out dated connection ,size=0 + +2025-09-24 11:24:58,853 INFO Connection check task end + +2025-09-24 11:25:00,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:01,855 INFO Connection check task start + +2025-09-24 11:25:01,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:01,855 INFO Out dated connection ,size=0 + +2025-09-24 11:25:01,855 INFO Connection check task end + +2025-09-24 11:25:03,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:04,855 INFO Connection check task start + +2025-09-24 11:25:04,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:04,855 INFO Out dated connection ,size=0 + +2025-09-24 11:25:04,855 INFO Connection check task end + +2025-09-24 11:25:06,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:07,856 INFO Connection check task start + +2025-09-24 11:25:07,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:07,856 INFO Out dated connection ,size=0 + +2025-09-24 11:25:07,856 INFO Connection check task end + +2025-09-24 11:25:09,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:10,858 INFO Connection check task start + +2025-09-24 11:25:10,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:10,858 INFO Out dated connection ,size=0 + +2025-09-24 11:25:10,858 INFO Connection check task end + +2025-09-24 11:25:12,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:13,858 INFO Connection check task start + +2025-09-24 11:25:13,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:13,860 INFO Out dated connection ,size=0 + +2025-09-24 11:25:13,860 INFO Connection check task end + +2025-09-24 11:25:15,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:16,860 INFO Connection check task start + +2025-09-24 11:25:16,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:16,860 INFO Out dated connection ,size=0 + +2025-09-24 11:25:16,860 INFO Connection check task end + +2025-09-24 11:25:18,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:19,861 INFO Connection check task start + +2025-09-24 11:25:19,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:19,861 INFO Out dated connection ,size=0 + +2025-09-24 11:25:19,861 INFO Connection check task end + +2025-09-24 11:25:21,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:22,861 INFO Connection check task start + +2025-09-24 11:25:22,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:22,861 INFO Out dated connection ,size=0 + +2025-09-24 11:25:22,861 INFO Connection check task end + +2025-09-24 11:25:24,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:25,863 INFO Connection check task start + +2025-09-24 11:25:25,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:25,863 INFO Out dated connection ,size=0 + +2025-09-24 11:25:25,863 INFO Connection check task end + +2025-09-24 11:25:27,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:28,866 INFO Connection check task start + +2025-09-24 11:25:28,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:28,866 INFO Out dated connection ,size=0 + +2025-09-24 11:25:28,866 INFO Connection check task end + +2025-09-24 11:25:30,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:31,866 INFO Connection check task start + +2025-09-24 11:25:31,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:31,866 INFO Out dated connection ,size=0 + +2025-09-24 11:25:31,866 INFO Connection check task end + +2025-09-24 11:25:33,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:34,867 INFO Connection check task start + +2025-09-24 11:25:34,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:34,867 INFO Out dated connection ,size=0 + +2025-09-24 11:25:34,867 INFO Connection check task end + +2025-09-24 11:25:36,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:37,868 INFO Connection check task start + +2025-09-24 11:25:37,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:37,869 INFO Out dated connection ,size=0 + +2025-09-24 11:25:37,869 INFO Connection check task end + +2025-09-24 11:25:39,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:40,869 INFO Connection check task start + +2025-09-24 11:25:40,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:40,869 INFO Out dated connection ,size=0 + +2025-09-24 11:25:40,869 INFO Connection check task end + +2025-09-24 11:25:42,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:43,870 INFO Connection check task start + +2025-09-24 11:25:43,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:43,870 INFO Out dated connection ,size=0 + +2025-09-24 11:25:43,870 INFO Connection check task end + +2025-09-24 11:25:45,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:46,871 INFO Connection check task start + +2025-09-24 11:25:46,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:46,871 INFO Out dated connection ,size=0 + +2025-09-24 11:25:46,871 INFO Connection check task end + +2025-09-24 11:25:48,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:49,871 INFO Connection check task start + +2025-09-24 11:25:49,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:49,872 INFO Out dated connection ,size=0 + +2025-09-24 11:25:49,872 INFO Connection check task end + +2025-09-24 11:25:51,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:52,873 INFO Connection check task start + +2025-09-24 11:25:52,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:52,873 INFO Out dated connection ,size=0 + +2025-09-24 11:25:52,874 INFO Connection check task end + +2025-09-24 11:25:54,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:55,874 INFO Connection check task start + +2025-09-24 11:25:55,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:55,874 INFO Out dated connection ,size=0 + +2025-09-24 11:25:55,874 INFO Connection check task end + +2025-09-24 11:25:57,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:25:58,875 INFO Connection check task start + +2025-09-24 11:25:58,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:25:58,875 INFO Out dated connection ,size=0 + +2025-09-24 11:25:58,875 INFO Connection check task end + +2025-09-24 11:26:00,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:01,877 INFO Connection check task start + +2025-09-24 11:26:01,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:01,878 INFO Out dated connection ,size=0 + +2025-09-24 11:26:01,878 INFO Connection check task end + +2025-09-24 11:26:03,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:04,880 INFO Connection check task start + +2025-09-24 11:26:04,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:04,880 INFO Out dated connection ,size=0 + +2025-09-24 11:26:04,880 INFO Connection check task end + +2025-09-24 11:26:06,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:07,881 INFO Connection check task start + +2025-09-24 11:26:07,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:07,881 INFO Out dated connection ,size=0 + +2025-09-24 11:26:07,882 INFO Connection check task end + +2025-09-24 11:26:09,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:10,882 INFO Connection check task start + +2025-09-24 11:26:10,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:10,882 INFO Out dated connection ,size=0 + +2025-09-24 11:26:10,882 INFO Connection check task end + +2025-09-24 11:26:12,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:13,882 INFO Connection check task start + +2025-09-24 11:26:13,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:13,882 INFO Out dated connection ,size=0 + +2025-09-24 11:26:13,883 INFO Connection check task end + +2025-09-24 11:26:15,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:16,883 INFO Connection check task start + +2025-09-24 11:26:16,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:16,883 INFO Out dated connection ,size=0 + +2025-09-24 11:26:16,883 INFO Connection check task end + +2025-09-24 11:26:18,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:19,884 INFO Connection check task start + +2025-09-24 11:26:19,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:19,884 INFO Out dated connection ,size=0 + +2025-09-24 11:26:19,884 INFO Connection check task end + +2025-09-24 11:26:21,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:22,884 INFO Connection check task start + +2025-09-24 11:26:22,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:22,884 INFO Out dated connection ,size=0 + +2025-09-24 11:26:22,884 INFO Connection check task end + +2025-09-24 11:26:24,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:25,885 INFO Connection check task start + +2025-09-24 11:26:25,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:25,885 INFO Out dated connection ,size=0 + +2025-09-24 11:26:25,885 INFO Connection check task end + +2025-09-24 11:26:27,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:28,886 INFO Connection check task start + +2025-09-24 11:26:28,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:28,886 INFO Out dated connection ,size=0 + +2025-09-24 11:26:28,886 INFO Connection check task end + +2025-09-24 11:26:30,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:31,887 INFO Connection check task start + +2025-09-24 11:26:31,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:31,887 INFO Out dated connection ,size=0 + +2025-09-24 11:26:31,887 INFO Connection check task end + +2025-09-24 11:26:33,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:34,887 INFO Connection check task start + +2025-09-24 11:26:34,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:34,887 INFO Out dated connection ,size=0 + +2025-09-24 11:26:34,888 INFO Connection check task end + +2025-09-24 11:26:36,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:37,888 INFO Connection check task start + +2025-09-24 11:26:37,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:37,889 INFO Out dated connection ,size=0 + +2025-09-24 11:26:37,889 INFO Connection check task end + +2025-09-24 11:26:39,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:40,891 INFO Connection check task start + +2025-09-24 11:26:40,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:40,891 INFO Out dated connection ,size=0 + +2025-09-24 11:26:40,891 INFO Connection check task end + +2025-09-24 11:26:42,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:43,892 INFO Connection check task start + +2025-09-24 11:26:43,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:43,892 INFO Out dated connection ,size=0 + +2025-09-24 11:26:43,892 INFO Connection check task end + +2025-09-24 11:26:45,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:46,893 INFO Connection check task start + +2025-09-24 11:26:46,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:46,894 INFO Out dated connection ,size=0 + +2025-09-24 11:26:46,894 INFO Connection check task end + +2025-09-24 11:26:48,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:49,894 INFO Connection check task start + +2025-09-24 11:26:49,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:49,894 INFO Out dated connection ,size=0 + +2025-09-24 11:26:49,894 INFO Connection check task end + +2025-09-24 11:26:51,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:52,894 INFO Connection check task start + +2025-09-24 11:26:52,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:52,895 INFO Out dated connection ,size=0 + +2025-09-24 11:26:52,895 INFO Connection check task end + +2025-09-24 11:26:54,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:55,895 INFO Connection check task start + +2025-09-24 11:26:55,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:55,896 INFO Out dated connection ,size=0 + +2025-09-24 11:26:55,896 INFO Connection check task end + +2025-09-24 11:26:57,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:26:58,896 INFO Connection check task start + +2025-09-24 11:26:58,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:26:58,896 INFO Out dated connection ,size=0 + +2025-09-24 11:26:58,896 INFO Connection check task end + +2025-09-24 11:27:00,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:01,897 INFO Connection check task start + +2025-09-24 11:27:01,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:01,897 INFO Out dated connection ,size=0 + +2025-09-24 11:27:01,897 INFO Connection check task end + +2025-09-24 11:27:03,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:04,899 INFO Connection check task start + +2025-09-24 11:27:04,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:04,899 INFO Out dated connection ,size=0 + +2025-09-24 11:27:04,899 INFO Connection check task end + +2025-09-24 11:27:06,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:07,899 INFO Connection check task start + +2025-09-24 11:27:07,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:07,899 INFO Out dated connection ,size=0 + +2025-09-24 11:27:07,899 INFO Connection check task end + +2025-09-24 11:27:09,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:10,900 INFO Connection check task start + +2025-09-24 11:27:10,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:10,900 INFO Out dated connection ,size=0 + +2025-09-24 11:27:10,900 INFO Connection check task end + +2025-09-24 11:27:12,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:13,900 INFO Connection check task start + +2025-09-24 11:27:13,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:13,901 INFO Out dated connection ,size=0 + +2025-09-24 11:27:13,901 INFO Connection check task end + +2025-09-24 11:27:15,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:16,901 INFO Connection check task start + +2025-09-24 11:27:16,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:16,901 INFO Out dated connection ,size=0 + +2025-09-24 11:27:16,901 INFO Connection check task end + +2025-09-24 11:27:18,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:19,902 INFO Connection check task start + +2025-09-24 11:27:19,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:19,902 INFO Out dated connection ,size=0 + +2025-09-24 11:27:19,902 INFO Connection check task end + +2025-09-24 11:27:21,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:22,903 INFO Connection check task start + +2025-09-24 11:27:22,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:22,904 INFO Out dated connection ,size=0 + +2025-09-24 11:27:22,904 INFO Connection check task end + +2025-09-24 11:27:24,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:25,906 INFO Connection check task start + +2025-09-24 11:27:25,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:25,906 INFO Out dated connection ,size=0 + +2025-09-24 11:27:25,906 INFO Connection check task end + +2025-09-24 11:27:27,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:28,907 INFO Connection check task start + +2025-09-24 11:27:28,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:28,907 INFO Out dated connection ,size=0 + +2025-09-24 11:27:28,907 INFO Connection check task end + +2025-09-24 11:27:30,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:31,908 INFO Connection check task start + +2025-09-24 11:27:31,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:31,908 INFO Out dated connection ,size=0 + +2025-09-24 11:27:31,908 INFO Connection check task end + +2025-09-24 11:27:33,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:34,908 INFO Connection check task start + +2025-09-24 11:27:34,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:34,908 INFO Out dated connection ,size=0 + +2025-09-24 11:27:34,908 INFO Connection check task end + +2025-09-24 11:27:36,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:37,909 INFO Connection check task start + +2025-09-24 11:27:37,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:37,909 INFO Out dated connection ,size=0 + +2025-09-24 11:27:37,909 INFO Connection check task end + +2025-09-24 11:27:39,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:40,909 INFO Connection check task start + +2025-09-24 11:27:40,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:40,909 INFO Out dated connection ,size=0 + +2025-09-24 11:27:40,909 INFO Connection check task end + +2025-09-24 11:27:42,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:43,910 INFO Connection check task start + +2025-09-24 11:27:43,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:43,910 INFO Out dated connection ,size=0 + +2025-09-24 11:27:43,910 INFO Connection check task end + +2025-09-24 11:27:45,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:46,911 INFO Connection check task start + +2025-09-24 11:27:46,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:46,911 INFO Out dated connection ,size=0 + +2025-09-24 11:27:46,911 INFO Connection check task end + +2025-09-24 11:27:48,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:49,912 INFO Connection check task start + +2025-09-24 11:27:49,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:49,913 INFO Out dated connection ,size=0 + +2025-09-24 11:27:49,913 INFO Connection check task end + +2025-09-24 11:27:51,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:52,913 INFO Connection check task start + +2025-09-24 11:27:52,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:52,914 INFO Out dated connection ,size=0 + +2025-09-24 11:27:52,914 INFO Connection check task end + +2025-09-24 11:27:54,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:55,914 INFO Connection check task start + +2025-09-24 11:27:55,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:55,914 INFO Out dated connection ,size=0 + +2025-09-24 11:27:55,914 INFO Connection check task end + +2025-09-24 11:27:57,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:27:58,916 INFO Connection check task start + +2025-09-24 11:27:58,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:27:58,916 INFO Out dated connection ,size=0 + +2025-09-24 11:27:58,916 INFO Connection check task end + +2025-09-24 11:28:00,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:01,919 INFO Connection check task start + +2025-09-24 11:28:01,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:01,919 INFO Out dated connection ,size=0 + +2025-09-24 11:28:01,919 INFO Connection check task end + +2025-09-24 11:28:03,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:04,919 INFO Connection check task start + +2025-09-24 11:28:04,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:04,919 INFO Out dated connection ,size=0 + +2025-09-24 11:28:04,919 INFO Connection check task end + +2025-09-24 11:28:06,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:07,922 INFO Connection check task start + +2025-09-24 11:28:07,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:07,922 INFO Out dated connection ,size=0 + +2025-09-24 11:28:07,922 INFO Connection check task end + +2025-09-24 11:28:09,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:10,922 INFO Connection check task start + +2025-09-24 11:28:10,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:10,922 INFO Out dated connection ,size=0 + +2025-09-24 11:28:10,923 INFO Connection check task end + +2025-09-24 11:28:12,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:13,923 INFO Connection check task start + +2025-09-24 11:28:13,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:13,923 INFO Out dated connection ,size=0 + +2025-09-24 11:28:13,923 INFO Connection check task end + +2025-09-24 11:28:15,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:16,924 INFO Connection check task start + +2025-09-24 11:28:16,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:16,924 INFO Out dated connection ,size=0 + +2025-09-24 11:28:16,924 INFO Connection check task end + +2025-09-24 11:28:18,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:19,926 INFO Connection check task start + +2025-09-24 11:28:19,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:19,926 INFO Out dated connection ,size=0 + +2025-09-24 11:28:19,926 INFO Connection check task end + +2025-09-24 11:28:21,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:22,927 INFO Connection check task start + +2025-09-24 11:28:22,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:22,928 INFO Out dated connection ,size=0 + +2025-09-24 11:28:22,928 INFO Connection check task end + +2025-09-24 11:28:24,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:25,930 INFO Connection check task start + +2025-09-24 11:28:25,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:25,930 INFO Out dated connection ,size=0 + +2025-09-24 11:28:25,930 INFO Connection check task end + +2025-09-24 11:28:27,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:28,930 INFO Connection check task start + +2025-09-24 11:28:28,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:28,931 INFO Out dated connection ,size=0 + +2025-09-24 11:28:28,931 INFO Connection check task end + +2025-09-24 11:28:30,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:31,933 INFO Connection check task start + +2025-09-24 11:28:31,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:31,933 INFO Out dated connection ,size=0 + +2025-09-24 11:28:31,933 INFO Connection check task end + +2025-09-24 11:28:33,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:34,933 INFO Connection check task start + +2025-09-24 11:28:34,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:34,933 INFO Out dated connection ,size=0 + +2025-09-24 11:28:34,933 INFO Connection check task end + +2025-09-24 11:28:36,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:37,934 INFO Connection check task start + +2025-09-24 11:28:37,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:37,934 INFO Out dated connection ,size=0 + +2025-09-24 11:28:37,934 INFO Connection check task end + +2025-09-24 11:28:39,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:40,936 INFO Connection check task start + +2025-09-24 11:28:40,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:40,937 INFO Out dated connection ,size=0 + +2025-09-24 11:28:40,937 INFO Connection check task end + +2025-09-24 11:28:42,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:43,938 INFO Connection check task start + +2025-09-24 11:28:43,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:43,939 INFO Out dated connection ,size=0 + +2025-09-24 11:28:43,939 INFO Connection check task end + +2025-09-24 11:28:45,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:46,939 INFO Connection check task start + +2025-09-24 11:28:46,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:46,939 INFO Out dated connection ,size=0 + +2025-09-24 11:28:46,939 INFO Connection check task end + +2025-09-24 11:28:48,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:49,941 INFO Connection check task start + +2025-09-24 11:28:49,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:49,941 INFO Out dated connection ,size=0 + +2025-09-24 11:28:49,941 INFO Connection check task end + +2025-09-24 11:28:51,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:52,941 INFO Connection check task start + +2025-09-24 11:28:52,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:52,942 INFO Out dated connection ,size=0 + +2025-09-24 11:28:52,942 INFO Connection check task end + +2025-09-24 11:28:54,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:55,943 INFO Connection check task start + +2025-09-24 11:28:55,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:55,943 INFO Out dated connection ,size=0 + +2025-09-24 11:28:55,943 INFO Connection check task end + +2025-09-24 11:28:57,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:28:58,944 INFO Connection check task start + +2025-09-24 11:28:58,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:28:58,944 INFO Out dated connection ,size=0 + +2025-09-24 11:28:58,944 INFO Connection check task end + +2025-09-24 11:29:00,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:01,946 INFO Connection check task start + +2025-09-24 11:29:01,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:01,946 INFO Out dated connection ,size=0 + +2025-09-24 11:29:01,946 INFO Connection check task end + +2025-09-24 11:29:03,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:04,946 INFO Connection check task start + +2025-09-24 11:29:04,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:04,946 INFO Out dated connection ,size=0 + +2025-09-24 11:29:04,946 INFO Connection check task end + +2025-09-24 11:29:06,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:07,946 INFO Connection check task start + +2025-09-24 11:29:07,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:07,946 INFO Out dated connection ,size=0 + +2025-09-24 11:29:07,947 INFO Connection check task end + +2025-09-24 11:29:09,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:10,947 INFO Connection check task start + +2025-09-24 11:29:10,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:10,947 INFO Out dated connection ,size=0 + +2025-09-24 11:29:10,947 INFO Connection check task end + +2025-09-24 11:29:12,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:13,949 INFO Connection check task start + +2025-09-24 11:29:13,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:13,949 INFO Out dated connection ,size=0 + +2025-09-24 11:29:13,949 INFO Connection check task end + +2025-09-24 11:29:15,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:16,951 INFO Connection check task start + +2025-09-24 11:29:16,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:16,951 INFO Out dated connection ,size=0 + +2025-09-24 11:29:16,951 INFO Connection check task end + +2025-09-24 11:29:18,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:19,952 INFO Connection check task start + +2025-09-24 11:29:19,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:19,952 INFO Out dated connection ,size=0 + +2025-09-24 11:29:19,952 INFO Connection check task end + +2025-09-24 11:29:21,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:22,954 INFO Connection check task start + +2025-09-24 11:29:22,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:22,954 INFO Out dated connection ,size=0 + +2025-09-24 11:29:22,954 INFO Connection check task end + +2025-09-24 11:29:24,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:25,954 INFO Connection check task start + +2025-09-24 11:29:25,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:25,954 INFO Out dated connection ,size=0 + +2025-09-24 11:29:25,954 INFO Connection check task end + +2025-09-24 11:29:27,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:28,955 INFO Connection check task start + +2025-09-24 11:29:28,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:28,955 INFO Out dated connection ,size=0 + +2025-09-24 11:29:28,955 INFO Connection check task end + +2025-09-24 11:29:30,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:31,956 INFO Connection check task start + +2025-09-24 11:29:31,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:31,957 INFO Out dated connection ,size=0 + +2025-09-24 11:29:31,957 INFO Connection check task end + +2025-09-24 11:29:33,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:34,957 INFO Connection check task start + +2025-09-24 11:29:34,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:34,957 INFO Out dated connection ,size=0 + +2025-09-24 11:29:34,957 INFO Connection check task end + +2025-09-24 11:29:36,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:37,958 INFO Connection check task start + +2025-09-24 11:29:37,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:37,958 INFO Out dated connection ,size=0 + +2025-09-24 11:29:37,958 INFO Connection check task end + +2025-09-24 11:29:39,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:40,959 INFO Connection check task start + +2025-09-24 11:29:40,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:40,959 INFO Out dated connection ,size=0 + +2025-09-24 11:29:40,959 INFO Connection check task end + +2025-09-24 11:29:42,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:43,959 INFO Connection check task start + +2025-09-24 11:29:43,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:43,960 INFO Out dated connection ,size=0 + +2025-09-24 11:29:43,960 INFO Connection check task end + +2025-09-24 11:29:45,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:46,960 INFO Connection check task start + +2025-09-24 11:29:46,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:46,960 INFO Out dated connection ,size=0 + +2025-09-24 11:29:46,960 INFO Connection check task end + +2025-09-24 11:29:48,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:49,962 INFO Connection check task start + +2025-09-24 11:29:49,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:49,963 INFO Out dated connection ,size=0 + +2025-09-24 11:29:49,963 INFO Connection check task end + +2025-09-24 11:29:51,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:52,963 INFO Connection check task start + +2025-09-24 11:29:52,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:52,963 INFO Out dated connection ,size=0 + +2025-09-24 11:29:52,963 INFO Connection check task end + +2025-09-24 11:29:54,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:55,963 INFO Connection check task start + +2025-09-24 11:29:55,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:55,964 INFO Out dated connection ,size=0 + +2025-09-24 11:29:55,964 INFO Connection check task end + +2025-09-24 11:29:57,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:29:58,964 INFO Connection check task start + +2025-09-24 11:29:58,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:29:58,964 INFO Out dated connection ,size=0 + +2025-09-24 11:29:58,964 INFO Connection check task end + +2025-09-24 11:30:00,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:01,966 INFO Connection check task start + +2025-09-24 11:30:01,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:01,967 INFO Out dated connection ,size=0 + +2025-09-24 11:30:01,967 INFO Connection check task end + +2025-09-24 11:30:03,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:04,969 INFO Connection check task start + +2025-09-24 11:30:04,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:04,969 INFO Out dated connection ,size=0 + +2025-09-24 11:30:04,969 INFO Connection check task end + +2025-09-24 11:30:06,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:07,969 INFO Connection check task start + +2025-09-24 11:30:07,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:07,969 INFO Out dated connection ,size=0 + +2025-09-24 11:30:07,970 INFO Connection check task end + +2025-09-24 11:30:09,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:10,970 INFO Connection check task start + +2025-09-24 11:30:10,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:10,970 INFO Out dated connection ,size=0 + +2025-09-24 11:30:10,970 INFO Connection check task end + +2025-09-24 11:30:12,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:13,971 INFO Connection check task start + +2025-09-24 11:30:13,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:13,971 INFO Out dated connection ,size=0 + +2025-09-24 11:30:13,971 INFO Connection check task end + +2025-09-24 11:30:15,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:16,971 INFO Connection check task start + +2025-09-24 11:30:16,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:16,972 INFO Out dated connection ,size=0 + +2025-09-24 11:30:16,972 INFO Connection check task end + +2025-09-24 11:30:18,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:19,973 INFO Connection check task start + +2025-09-24 11:30:19,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:19,973 INFO Out dated connection ,size=0 + +2025-09-24 11:30:19,973 INFO Connection check task end + +2025-09-24 11:30:21,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:22,975 INFO Connection check task start + +2025-09-24 11:30:22,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:22,976 INFO Out dated connection ,size=0 + +2025-09-24 11:30:22,976 INFO Connection check task end + +2025-09-24 11:30:24,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:25,977 INFO Connection check task start + +2025-09-24 11:30:25,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:25,977 INFO Out dated connection ,size=0 + +2025-09-24 11:30:25,977 INFO Connection check task end + +2025-09-24 11:30:27,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:28,979 INFO Connection check task start + +2025-09-24 11:30:28,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:28,979 INFO Out dated connection ,size=0 + +2025-09-24 11:30:28,979 INFO Connection check task end + +2025-09-24 11:30:30,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:31,979 INFO Connection check task start + +2025-09-24 11:30:31,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:31,980 INFO Out dated connection ,size=0 + +2025-09-24 11:30:31,980 INFO Connection check task end + +2025-09-24 11:30:33,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:34,980 INFO Connection check task start + +2025-09-24 11:30:34,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:34,980 INFO Out dated connection ,size=0 + +2025-09-24 11:30:34,980 INFO Connection check task end + +2025-09-24 11:30:36,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:37,982 INFO Connection check task start + +2025-09-24 11:30:37,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:37,983 INFO Out dated connection ,size=0 + +2025-09-24 11:30:37,983 INFO Connection check task end + +2025-09-24 11:30:39,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:40,985 INFO Connection check task start + +2025-09-24 11:30:40,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:40,985 INFO Out dated connection ,size=0 + +2025-09-24 11:30:40,985 INFO Connection check task end + +2025-09-24 11:30:42,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:43,987 INFO Connection check task start + +2025-09-24 11:30:43,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:43,987 INFO Out dated connection ,size=0 + +2025-09-24 11:30:43,987 INFO Connection check task end + +2025-09-24 11:30:45,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:46,990 INFO Connection check task start + +2025-09-24 11:30:46,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:46,990 INFO Out dated connection ,size=0 + +2025-09-24 11:30:46,990 INFO Connection check task end + +2025-09-24 11:30:48,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:49,990 INFO Connection check task start + +2025-09-24 11:30:49,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:49,990 INFO Out dated connection ,size=0 + +2025-09-24 11:30:49,990 INFO Connection check task end + +2025-09-24 11:30:51,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:52,991 INFO Connection check task start + +2025-09-24 11:30:52,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:52,991 INFO Out dated connection ,size=0 + +2025-09-24 11:30:52,991 INFO Connection check task end + +2025-09-24 11:30:54,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:55,991 INFO Connection check task start + +2025-09-24 11:30:55,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:55,992 INFO Out dated connection ,size=0 + +2025-09-24 11:30:55,992 INFO Connection check task end + +2025-09-24 11:30:57,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:30:58,994 INFO Connection check task start + +2025-09-24 11:30:58,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:30:58,994 INFO Out dated connection ,size=0 + +2025-09-24 11:30:58,994 INFO Connection check task end + +2025-09-24 11:31:00,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:01,994 INFO Connection check task start + +2025-09-24 11:31:01,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:01,994 INFO Out dated connection ,size=0 + +2025-09-24 11:31:01,994 INFO Connection check task end + +2025-09-24 11:31:03,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:04,996 INFO Connection check task start + +2025-09-24 11:31:04,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:04,997 INFO Out dated connection ,size=0 + +2025-09-24 11:31:04,997 INFO Connection check task end + +2025-09-24 11:31:06,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:07,997 INFO Connection check task start + +2025-09-24 11:31:07,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:07,997 INFO Out dated connection ,size=0 + +2025-09-24 11:31:07,997 INFO Connection check task end + +2025-09-24 11:31:09,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:10,998 INFO Connection check task start + +2025-09-24 11:31:10,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:10,998 INFO Out dated connection ,size=0 + +2025-09-24 11:31:10,998 INFO Connection check task end + +2025-09-24 11:31:12,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:13,999 INFO Connection check task start + +2025-09-24 11:31:13,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:14,000 INFO Out dated connection ,size=0 + +2025-09-24 11:31:14,000 INFO Connection check task end + +2025-09-24 11:31:15,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:17,000 INFO Connection check task start + +2025-09-24 11:31:17,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:17,000 INFO Out dated connection ,size=0 + +2025-09-24 11:31:17,000 INFO Connection check task end + +2025-09-24 11:31:18,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:20,001 INFO Connection check task start + +2025-09-24 11:31:20,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:20,001 INFO Out dated connection ,size=0 + +2025-09-24 11:31:20,002 INFO Connection check task end + +2025-09-24 11:31:21,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:23,003 INFO Connection check task start + +2025-09-24 11:31:23,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:23,004 INFO Out dated connection ,size=0 + +2025-09-24 11:31:23,004 INFO Connection check task end + +2025-09-24 11:31:24,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:26,006 INFO Connection check task start + +2025-09-24 11:31:26,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:26,006 INFO Out dated connection ,size=0 + +2025-09-24 11:31:26,006 INFO Connection check task end + +2025-09-24 11:31:27,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:29,006 INFO Connection check task start + +2025-09-24 11:31:29,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:29,006 INFO Out dated connection ,size=0 + +2025-09-24 11:31:29,006 INFO Connection check task end + +2025-09-24 11:31:30,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:32,008 INFO Connection check task start + +2025-09-24 11:31:32,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:32,008 INFO Out dated connection ,size=0 + +2025-09-24 11:31:32,008 INFO Connection check task end + +2025-09-24 11:31:33,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:35,008 INFO Connection check task start + +2025-09-24 11:31:35,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:35,008 INFO Out dated connection ,size=0 + +2025-09-24 11:31:35,009 INFO Connection check task end + +2025-09-24 11:31:36,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:38,009 INFO Connection check task start + +2025-09-24 11:31:38,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:38,009 INFO Out dated connection ,size=0 + +2025-09-24 11:31:38,009 INFO Connection check task end + +2025-09-24 11:31:39,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:41,010 INFO Connection check task start + +2025-09-24 11:31:41,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:41,010 INFO Out dated connection ,size=0 + +2025-09-24 11:31:41,010 INFO Connection check task end + +2025-09-24 11:31:42,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:44,011 INFO Connection check task start + +2025-09-24 11:31:44,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:44,011 INFO Out dated connection ,size=0 + +2025-09-24 11:31:44,011 INFO Connection check task end + +2025-09-24 11:31:45,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:47,012 INFO Connection check task start + +2025-09-24 11:31:47,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:47,012 INFO Out dated connection ,size=0 + +2025-09-24 11:31:47,012 INFO Connection check task end + +2025-09-24 11:31:48,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:50,013 INFO Connection check task start + +2025-09-24 11:31:50,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:50,014 INFO Out dated connection ,size=0 + +2025-09-24 11:31:50,014 INFO Connection check task end + +2025-09-24 11:31:51,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:53,015 INFO Connection check task start + +2025-09-24 11:31:53,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:53,015 INFO Out dated connection ,size=0 + +2025-09-24 11:31:53,015 INFO Connection check task end + +2025-09-24 11:31:54,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:56,015 INFO Connection check task start + +2025-09-24 11:31:56,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:56,015 INFO Out dated connection ,size=0 + +2025-09-24 11:31:56,015 INFO Connection check task end + +2025-09-24 11:31:57,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:31:59,015 INFO Connection check task start + +2025-09-24 11:31:59,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:31:59,016 INFO Out dated connection ,size=0 + +2025-09-24 11:31:59,016 INFO Connection check task end + +2025-09-24 11:32:00,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:02,016 INFO Connection check task start + +2025-09-24 11:32:02,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:02,016 INFO Out dated connection ,size=0 + +2025-09-24 11:32:02,016 INFO Connection check task end + +2025-09-24 11:32:03,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:05,018 INFO Connection check task start + +2025-09-24 11:32:05,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:05,018 INFO Out dated connection ,size=0 + +2025-09-24 11:32:05,018 INFO Connection check task end + +2025-09-24 11:32:06,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:08,019 INFO Connection check task start + +2025-09-24 11:32:08,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:08,019 INFO Out dated connection ,size=0 + +2025-09-24 11:32:08,019 INFO Connection check task end + +2025-09-24 11:32:09,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:11,021 INFO Connection check task start + +2025-09-24 11:32:11,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:11,021 INFO Out dated connection ,size=0 + +2025-09-24 11:32:11,021 INFO Connection check task end + +2025-09-24 11:32:12,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:14,022 INFO Connection check task start + +2025-09-24 11:32:14,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:14,022 INFO Out dated connection ,size=0 + +2025-09-24 11:32:14,022 INFO Connection check task end + +2025-09-24 11:32:15,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:17,024 INFO Connection check task start + +2025-09-24 11:32:17,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:17,024 INFO Out dated connection ,size=0 + +2025-09-24 11:32:17,024 INFO Connection check task end + +2025-09-24 11:32:18,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:20,026 INFO Connection check task start + +2025-09-24 11:32:20,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:20,026 INFO Out dated connection ,size=0 + +2025-09-24 11:32:20,026 INFO Connection check task end + +2025-09-24 11:32:21,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:23,028 INFO Connection check task start + +2025-09-24 11:32:23,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:23,029 INFO Out dated connection ,size=0 + +2025-09-24 11:32:23,029 INFO Connection check task end + +2025-09-24 11:32:24,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:26,030 INFO Connection check task start + +2025-09-24 11:32:26,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:26,030 INFO Out dated connection ,size=0 + +2025-09-24 11:32:26,030 INFO Connection check task end + +2025-09-24 11:32:27,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:29,030 INFO Connection check task start + +2025-09-24 11:32:29,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:29,031 INFO Out dated connection ,size=0 + +2025-09-24 11:32:29,031 INFO Connection check task end + +2025-09-24 11:32:30,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:32,031 INFO Connection check task start + +2025-09-24 11:32:32,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:32,031 INFO Out dated connection ,size=0 + +2025-09-24 11:32:32,031 INFO Connection check task end + +2025-09-24 11:32:33,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:35,032 INFO Connection check task start + +2025-09-24 11:32:35,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:35,032 INFO Out dated connection ,size=0 + +2025-09-24 11:32:35,032 INFO Connection check task end + +2025-09-24 11:32:36,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:38,033 INFO Connection check task start + +2025-09-24 11:32:38,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:38,033 INFO Out dated connection ,size=0 + +2025-09-24 11:32:38,033 INFO Connection check task end + +2025-09-24 11:32:39,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:41,033 INFO Connection check task start + +2025-09-24 11:32:41,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:41,034 INFO Out dated connection ,size=0 + +2025-09-24 11:32:41,034 INFO Connection check task end + +2025-09-24 11:32:42,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:44,034 INFO Connection check task start + +2025-09-24 11:32:44,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:44,034 INFO Out dated connection ,size=0 + +2025-09-24 11:32:44,034 INFO Connection check task end + +2025-09-24 11:32:45,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:47,034 INFO Connection check task start + +2025-09-24 11:32:47,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:47,035 INFO Out dated connection ,size=0 + +2025-09-24 11:32:47,035 INFO Connection check task end + +2025-09-24 11:32:48,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:50,036 INFO Connection check task start + +2025-09-24 11:32:50,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:50,036 INFO Out dated connection ,size=0 + +2025-09-24 11:32:50,036 INFO Connection check task end + +2025-09-24 11:32:51,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:53,036 INFO Connection check task start + +2025-09-24 11:32:53,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:53,036 INFO Out dated connection ,size=0 + +2025-09-24 11:32:53,036 INFO Connection check task end + +2025-09-24 11:32:54,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:56,038 INFO Connection check task start + +2025-09-24 11:32:56,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:56,038 INFO Out dated connection ,size=0 + +2025-09-24 11:32:56,038 INFO Connection check task end + +2025-09-24 11:32:57,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:32:59,038 INFO Connection check task start + +2025-09-24 11:32:59,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:32:59,039 INFO Out dated connection ,size=0 + +2025-09-24 11:32:59,039 INFO Connection check task end + +2025-09-24 11:33:00,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:02,039 INFO Connection check task start + +2025-09-24 11:33:02,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:02,039 INFO Out dated connection ,size=0 + +2025-09-24 11:33:02,039 INFO Connection check task end + +2025-09-24 11:33:03,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:05,040 INFO Connection check task start + +2025-09-24 11:33:05,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:05,040 INFO Out dated connection ,size=0 + +2025-09-24 11:33:05,041 INFO Connection check task end + +2025-09-24 11:33:06,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:08,041 INFO Connection check task start + +2025-09-24 11:33:08,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:08,041 INFO Out dated connection ,size=0 + +2025-09-24 11:33:08,041 INFO Connection check task end + +2025-09-24 11:33:09,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:11,043 INFO Connection check task start + +2025-09-24 11:33:11,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:11,043 INFO Out dated connection ,size=0 + +2025-09-24 11:33:11,044 INFO Connection check task end + +2025-09-24 11:33:12,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:14,046 INFO Connection check task start + +2025-09-24 11:33:14,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:14,046 INFO Out dated connection ,size=0 + +2025-09-24 11:33:14,046 INFO Connection check task end + +2025-09-24 11:33:15,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:17,047 INFO Connection check task start + +2025-09-24 11:33:17,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:17,047 INFO Out dated connection ,size=0 + +2025-09-24 11:33:17,047 INFO Connection check task end + +2025-09-24 11:33:18,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:20,048 INFO Connection check task start + +2025-09-24 11:33:20,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:20,048 INFO Out dated connection ,size=0 + +2025-09-24 11:33:20,048 INFO Connection check task end + +2025-09-24 11:33:21,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:23,048 INFO Connection check task start + +2025-09-24 11:33:23,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:23,049 INFO Out dated connection ,size=0 + +2025-09-24 11:33:23,049 INFO Connection check task end + +2025-09-24 11:33:24,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:26,049 INFO Connection check task start + +2025-09-24 11:33:26,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:26,049 INFO Out dated connection ,size=0 + +2025-09-24 11:33:26,049 INFO Connection check task end + +2025-09-24 11:33:27,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:29,050 INFO Connection check task start + +2025-09-24 11:33:29,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:29,050 INFO Out dated connection ,size=0 + +2025-09-24 11:33:29,051 INFO Connection check task end + +2025-09-24 11:33:30,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:32,051 INFO Connection check task start + +2025-09-24 11:33:32,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:32,051 INFO Out dated connection ,size=0 + +2025-09-24 11:33:32,051 INFO Connection check task end + +2025-09-24 11:33:33,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:35,052 INFO Connection check task start + +2025-09-24 11:33:35,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:35,052 INFO Out dated connection ,size=0 + +2025-09-24 11:33:35,052 INFO Connection check task end + +2025-09-24 11:33:36,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:38,053 INFO Connection check task start + +2025-09-24 11:33:38,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:38,054 INFO Out dated connection ,size=0 + +2025-09-24 11:33:38,054 INFO Connection check task end + +2025-09-24 11:33:39,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:41,054 INFO Connection check task start + +2025-09-24 11:33:41,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:41,055 INFO Out dated connection ,size=0 + +2025-09-24 11:33:41,055 INFO Connection check task end + +2025-09-24 11:33:42,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:44,055 INFO Connection check task start + +2025-09-24 11:33:44,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:44,055 INFO Out dated connection ,size=0 + +2025-09-24 11:33:44,055 INFO Connection check task end + +2025-09-24 11:33:45,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:47,056 INFO Connection check task start + +2025-09-24 11:33:47,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:47,056 INFO Out dated connection ,size=0 + +2025-09-24 11:33:47,056 INFO Connection check task end + +2025-09-24 11:33:48,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:50,056 INFO Connection check task start + +2025-09-24 11:33:50,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:50,057 INFO Out dated connection ,size=0 + +2025-09-24 11:33:50,057 INFO Connection check task end + +2025-09-24 11:33:51,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:53,058 INFO Connection check task start + +2025-09-24 11:33:53,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:53,059 INFO Out dated connection ,size=0 + +2025-09-24 11:33:53,059 INFO Connection check task end + +2025-09-24 11:33:54,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:56,061 INFO Connection check task start + +2025-09-24 11:33:56,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:56,061 INFO Out dated connection ,size=0 + +2025-09-24 11:33:56,061 INFO Connection check task end + +2025-09-24 11:33:57,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:33:59,061 INFO Connection check task start + +2025-09-24 11:33:59,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:33:59,061 INFO Out dated connection ,size=0 + +2025-09-24 11:33:59,062 INFO Connection check task end + +2025-09-24 11:34:00,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:02,063 INFO Connection check task start + +2025-09-24 11:34:02,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:02,063 INFO Out dated connection ,size=0 + +2025-09-24 11:34:02,063 INFO Connection check task end + +2025-09-24 11:34:03,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:05,063 INFO Connection check task start + +2025-09-24 11:34:05,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:05,063 INFO Out dated connection ,size=0 + +2025-09-24 11:34:05,063 INFO Connection check task end + +2025-09-24 11:34:06,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:08,065 INFO Connection check task start + +2025-09-24 11:34:08,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:08,065 INFO Out dated connection ,size=0 + +2025-09-24 11:34:08,065 INFO Connection check task end + +2025-09-24 11:34:09,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:11,066 INFO Connection check task start + +2025-09-24 11:34:11,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:11,066 INFO Out dated connection ,size=0 + +2025-09-24 11:34:11,066 INFO Connection check task end + +2025-09-24 11:34:12,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:14,067 INFO Connection check task start + +2025-09-24 11:34:14,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:14,067 INFO Out dated connection ,size=0 + +2025-09-24 11:34:14,067 INFO Connection check task end + +2025-09-24 11:34:15,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:17,068 INFO Connection check task start + +2025-09-24 11:34:17,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:17,068 INFO Out dated connection ,size=0 + +2025-09-24 11:34:17,068 INFO Connection check task end + +2025-09-24 11:34:18,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:20,071 INFO Connection check task start + +2025-09-24 11:34:20,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:20,071 INFO Out dated connection ,size=0 + +2025-09-24 11:34:20,071 INFO Connection check task end + +2025-09-24 11:34:21,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:23,072 INFO Connection check task start + +2025-09-24 11:34:23,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:23,073 INFO Out dated connection ,size=0 + +2025-09-24 11:34:23,073 INFO Connection check task end + +2025-09-24 11:34:24,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:26,074 INFO Connection check task start + +2025-09-24 11:34:26,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:26,074 INFO Out dated connection ,size=0 + +2025-09-24 11:34:26,074 INFO Connection check task end + +2025-09-24 11:34:27,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:29,075 INFO Connection check task start + +2025-09-24 11:34:29,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:29,075 INFO Out dated connection ,size=0 + +2025-09-24 11:34:29,075 INFO Connection check task end + +2025-09-24 11:34:30,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:32,076 INFO Connection check task start + +2025-09-24 11:34:32,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:32,076 INFO Out dated connection ,size=0 + +2025-09-24 11:34:32,076 INFO Connection check task end + +2025-09-24 11:34:33,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:35,077 INFO Connection check task start + +2025-09-24 11:34:35,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:35,077 INFO Out dated connection ,size=0 + +2025-09-24 11:34:35,077 INFO Connection check task end + +2025-09-24 11:34:36,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:38,078 INFO Connection check task start + +2025-09-24 11:34:38,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:38,078 INFO Out dated connection ,size=0 + +2025-09-24 11:34:38,078 INFO Connection check task end + +2025-09-24 11:34:39,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:41,080 INFO Connection check task start + +2025-09-24 11:34:41,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:41,080 INFO Out dated connection ,size=0 + +2025-09-24 11:34:41,080 INFO Connection check task end + +2025-09-24 11:34:42,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:44,081 INFO Connection check task start + +2025-09-24 11:34:44,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:44,081 INFO Out dated connection ,size=0 + +2025-09-24 11:34:44,081 INFO Connection check task end + +2025-09-24 11:34:45,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:47,081 INFO Connection check task start + +2025-09-24 11:34:47,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:47,082 INFO Out dated connection ,size=0 + +2025-09-24 11:34:47,082 INFO Connection check task end + +2025-09-24 11:34:48,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:50,082 INFO Connection check task start + +2025-09-24 11:34:50,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:50,082 INFO Out dated connection ,size=0 + +2025-09-24 11:34:50,082 INFO Connection check task end + +2025-09-24 11:34:51,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:53,082 INFO Connection check task start + +2025-09-24 11:34:53,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:53,083 INFO Out dated connection ,size=0 + +2025-09-24 11:34:53,083 INFO Connection check task end + +2025-09-24 11:34:54,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:56,083 INFO Connection check task start + +2025-09-24 11:34:56,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:56,083 INFO Out dated connection ,size=0 + +2025-09-24 11:34:56,083 INFO Connection check task end + +2025-09-24 11:34:57,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:34:59,083 INFO Connection check task start + +2025-09-24 11:34:59,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:34:59,084 INFO Out dated connection ,size=0 + +2025-09-24 11:34:59,084 INFO Connection check task end + +2025-09-24 11:35:00,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:02,085 INFO Connection check task start + +2025-09-24 11:35:02,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:02,085 INFO Out dated connection ,size=0 + +2025-09-24 11:35:02,085 INFO Connection check task end + +2025-09-24 11:35:03,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:05,085 INFO Connection check task start + +2025-09-24 11:35:05,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:05,085 INFO Out dated connection ,size=0 + +2025-09-24 11:35:05,085 INFO Connection check task end + +2025-09-24 11:35:06,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:08,086 INFO Connection check task start + +2025-09-24 11:35:08,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:08,086 INFO Out dated connection ,size=0 + +2025-09-24 11:35:08,086 INFO Connection check task end + +2025-09-24 11:35:09,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:11,086 INFO Connection check task start + +2025-09-24 11:35:11,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:11,086 INFO Out dated connection ,size=0 + +2025-09-24 11:35:11,086 INFO Connection check task end + +2025-09-24 11:35:12,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:14,088 INFO Connection check task start + +2025-09-24 11:35:14,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:14,088 INFO Out dated connection ,size=0 + +2025-09-24 11:35:14,088 INFO Connection check task end + +2025-09-24 11:35:15,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:17,091 INFO Connection check task start + +2025-09-24 11:35:17,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:17,091 INFO Out dated connection ,size=0 + +2025-09-24 11:35:17,091 INFO Connection check task end + +2025-09-24 11:35:18,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:20,091 INFO Connection check task start + +2025-09-24 11:35:20,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:20,091 INFO Out dated connection ,size=0 + +2025-09-24 11:35:20,091 INFO Connection check task end + +2025-09-24 11:35:21,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:23,093 INFO Connection check task start + +2025-09-24 11:35:23,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:23,094 INFO Out dated connection ,size=0 + +2025-09-24 11:35:23,095 INFO Connection check task end + +2025-09-24 11:35:24,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:26,095 INFO Connection check task start + +2025-09-24 11:35:26,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:26,095 INFO Out dated connection ,size=0 + +2025-09-24 11:35:26,095 INFO Connection check task end + +2025-09-24 11:35:27,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:29,097 INFO Connection check task start + +2025-09-24 11:35:29,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:29,098 INFO Out dated connection ,size=0 + +2025-09-24 11:35:29,098 INFO Connection check task end + +2025-09-24 11:35:30,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:32,098 INFO Connection check task start + +2025-09-24 11:35:32,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:32,099 INFO Out dated connection ,size=0 + +2025-09-24 11:35:32,099 INFO Connection check task end + +2025-09-24 11:35:33,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:35,099 INFO Connection check task start + +2025-09-24 11:35:35,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:35,099 INFO Out dated connection ,size=0 + +2025-09-24 11:35:35,099 INFO Connection check task end + +2025-09-24 11:35:36,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:38,100 INFO Connection check task start + +2025-09-24 11:35:38,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:38,100 INFO Out dated connection ,size=0 + +2025-09-24 11:35:38,101 INFO Connection check task end + +2025-09-24 11:35:39,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:41,102 INFO Connection check task start + +2025-09-24 11:35:41,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:41,102 INFO Out dated connection ,size=0 + +2025-09-24 11:35:41,102 INFO Connection check task end + +2025-09-24 11:35:42,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:44,102 INFO Connection check task start + +2025-09-24 11:35:44,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:44,102 INFO Out dated connection ,size=0 + +2025-09-24 11:35:44,102 INFO Connection check task end + +2025-09-24 11:35:45,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:47,105 INFO Connection check task start + +2025-09-24 11:35:47,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:47,105 INFO Out dated connection ,size=0 + +2025-09-24 11:35:47,105 INFO Connection check task end + +2025-09-24 11:35:48,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:50,105 INFO Connection check task start + +2025-09-24 11:35:50,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:50,105 INFO Out dated connection ,size=0 + +2025-09-24 11:35:50,105 INFO Connection check task end + +2025-09-24 11:35:51,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:53,107 INFO Connection check task start + +2025-09-24 11:35:53,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:53,107 INFO Out dated connection ,size=0 + +2025-09-24 11:35:53,108 INFO Connection check task end + +2025-09-24 11:35:54,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:56,108 INFO Connection check task start + +2025-09-24 11:35:56,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:56,108 INFO Out dated connection ,size=0 + +2025-09-24 11:35:56,108 INFO Connection check task end + +2025-09-24 11:35:57,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:35:59,109 INFO Connection check task start + +2025-09-24 11:35:59,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:35:59,110 INFO Out dated connection ,size=0 + +2025-09-24 11:35:59,110 INFO Connection check task end + +2025-09-24 11:36:00,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:02,110 INFO Connection check task start + +2025-09-24 11:36:02,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:02,110 INFO Out dated connection ,size=0 + +2025-09-24 11:36:02,111 INFO Connection check task end + +2025-09-24 11:36:03,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:05,113 INFO Connection check task start + +2025-09-24 11:36:05,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:05,113 INFO Out dated connection ,size=0 + +2025-09-24 11:36:05,113 INFO Connection check task end + +2025-09-24 11:36:06,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:08,114 INFO Connection check task start + +2025-09-24 11:36:08,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:08,114 INFO Out dated connection ,size=0 + +2025-09-24 11:36:08,115 INFO Connection check task end + +2025-09-24 11:36:09,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:11,116 INFO Connection check task start + +2025-09-24 11:36:11,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:11,116 INFO Out dated connection ,size=0 + +2025-09-24 11:36:11,116 INFO Connection check task end + +2025-09-24 11:36:12,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:14,117 INFO Connection check task start + +2025-09-24 11:36:14,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:14,117 INFO Out dated connection ,size=0 + +2025-09-24 11:36:14,117 INFO Connection check task end + +2025-09-24 11:36:15,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:17,117 INFO Connection check task start + +2025-09-24 11:36:17,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:17,118 INFO Out dated connection ,size=0 + +2025-09-24 11:36:17,118 INFO Connection check task end + +2025-09-24 11:36:18,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:20,118 INFO Connection check task start + +2025-09-24 11:36:20,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:20,118 INFO Out dated connection ,size=0 + +2025-09-24 11:36:20,118 INFO Connection check task end + +2025-09-24 11:36:21,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:23,119 INFO Connection check task start + +2025-09-24 11:36:23,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:23,120 INFO Out dated connection ,size=0 + +2025-09-24 11:36:23,120 INFO Connection check task end + +2025-09-24 11:36:24,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:26,122 INFO Connection check task start + +2025-09-24 11:36:26,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:26,122 INFO Out dated connection ,size=0 + +2025-09-24 11:36:26,122 INFO Connection check task end + +2025-09-24 11:36:27,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:29,122 INFO Connection check task start + +2025-09-24 11:36:29,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:29,122 INFO Out dated connection ,size=0 + +2025-09-24 11:36:29,122 INFO Connection check task end + +2025-09-24 11:36:30,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:32,123 INFO Connection check task start + +2025-09-24 11:36:32,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:32,123 INFO Out dated connection ,size=0 + +2025-09-24 11:36:32,123 INFO Connection check task end + +2025-09-24 11:36:33,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:35,124 INFO Connection check task start + +2025-09-24 11:36:35,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:35,124 INFO Out dated connection ,size=0 + +2025-09-24 11:36:35,125 INFO Connection check task end + +2025-09-24 11:36:36,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:38,125 INFO Connection check task start + +2025-09-24 11:36:38,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:38,125 INFO Out dated connection ,size=0 + +2025-09-24 11:36:38,125 INFO Connection check task end + +2025-09-24 11:36:39,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:41,126 INFO Connection check task start + +2025-09-24 11:36:41,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:41,126 INFO Out dated connection ,size=0 + +2025-09-24 11:36:41,126 INFO Connection check task end + +2025-09-24 11:36:42,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:44,127 INFO Connection check task start + +2025-09-24 11:36:44,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:44,127 INFO Out dated connection ,size=0 + +2025-09-24 11:36:44,127 INFO Connection check task end + +2025-09-24 11:36:45,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:47,127 INFO Connection check task start + +2025-09-24 11:36:47,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:47,127 INFO Out dated connection ,size=0 + +2025-09-24 11:36:47,127 INFO Connection check task end + +2025-09-24 11:36:48,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:50,128 INFO Connection check task start + +2025-09-24 11:36:50,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:50,128 INFO Out dated connection ,size=0 + +2025-09-24 11:36:50,128 INFO Connection check task end + +2025-09-24 11:36:51,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:53,128 INFO Connection check task start + +2025-09-24 11:36:53,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:53,128 INFO Out dated connection ,size=0 + +2025-09-24 11:36:53,129 INFO Connection check task end + +2025-09-24 11:36:54,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:56,129 INFO Connection check task start + +2025-09-24 11:36:56,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:56,129 INFO Out dated connection ,size=0 + +2025-09-24 11:36:56,129 INFO Connection check task end + +2025-09-24 11:36:57,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:36:59,130 INFO Connection check task start + +2025-09-24 11:36:59,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:36:59,131 INFO Out dated connection ,size=0 + +2025-09-24 11:36:59,131 INFO Connection check task end + +2025-09-24 11:37:00,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:02,131 INFO Connection check task start + +2025-09-24 11:37:02,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:02,131 INFO Out dated connection ,size=0 + +2025-09-24 11:37:02,131 INFO Connection check task end + +2025-09-24 11:37:03,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:05,132 INFO Connection check task start + +2025-09-24 11:37:05,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:05,132 INFO Out dated connection ,size=0 + +2025-09-24 11:37:05,132 INFO Connection check task end + +2025-09-24 11:37:06,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:08,133 INFO Connection check task start + +2025-09-24 11:37:08,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:08,133 INFO Out dated connection ,size=0 + +2025-09-24 11:37:08,133 INFO Connection check task end + +2025-09-24 11:37:09,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:11,133 INFO Connection check task start + +2025-09-24 11:37:11,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:11,133 INFO Out dated connection ,size=0 + +2025-09-24 11:37:11,133 INFO Connection check task end + +2025-09-24 11:37:12,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:14,134 INFO Connection check task start + +2025-09-24 11:37:14,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:14,134 INFO Out dated connection ,size=0 + +2025-09-24 11:37:14,134 INFO Connection check task end + +2025-09-24 11:37:15,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:17,134 INFO Connection check task start + +2025-09-24 11:37:17,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:17,134 INFO Out dated connection ,size=0 + +2025-09-24 11:37:17,135 INFO Connection check task end + +2025-09-24 11:37:18,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:20,135 INFO Connection check task start + +2025-09-24 11:37:20,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:20,135 INFO Out dated connection ,size=0 + +2025-09-24 11:37:20,135 INFO Connection check task end + +2025-09-24 11:37:21,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:23,135 INFO Connection check task start + +2025-09-24 11:37:23,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:23,135 INFO Out dated connection ,size=0 + +2025-09-24 11:37:23,135 INFO Connection check task end + +2025-09-24 11:37:24,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:26,136 INFO Connection check task start + +2025-09-24 11:37:26,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:26,137 INFO Out dated connection ,size=0 + +2025-09-24 11:37:26,137 INFO Connection check task end + +2025-09-24 11:37:27,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:29,139 INFO Connection check task start + +2025-09-24 11:37:29,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:29,139 INFO Out dated connection ,size=0 + +2025-09-24 11:37:29,139 INFO Connection check task end + +2025-09-24 11:37:30,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:32,140 INFO Connection check task start + +2025-09-24 11:37:32,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:32,140 INFO Out dated connection ,size=0 + +2025-09-24 11:37:32,140 INFO Connection check task end + +2025-09-24 11:37:33,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:35,141 INFO Connection check task start + +2025-09-24 11:37:35,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:35,141 INFO Out dated connection ,size=0 + +2025-09-24 11:37:35,141 INFO Connection check task end + +2025-09-24 11:37:36,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:38,141 INFO Connection check task start + +2025-09-24 11:37:38,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:38,141 INFO Out dated connection ,size=0 + +2025-09-24 11:37:38,142 INFO Connection check task end + +2025-09-24 11:37:39,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:41,142 INFO Connection check task start + +2025-09-24 11:37:41,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:41,142 INFO Out dated connection ,size=0 + +2025-09-24 11:37:41,142 INFO Connection check task end + +2025-09-24 11:37:42,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:44,143 INFO Connection check task start + +2025-09-24 11:37:44,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:44,143 INFO Out dated connection ,size=0 + +2025-09-24 11:37:44,143 INFO Connection check task end + +2025-09-24 11:37:45,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:47,143 INFO Connection check task start + +2025-09-24 11:37:47,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:47,144 INFO Out dated connection ,size=0 + +2025-09-24 11:37:47,144 INFO Connection check task end + +2025-09-24 11:37:48,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:50,144 INFO Connection check task start + +2025-09-24 11:37:50,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:50,145 INFO Out dated connection ,size=0 + +2025-09-24 11:37:50,145 INFO Connection check task end + +2025-09-24 11:37:51,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:53,145 INFO Connection check task start + +2025-09-24 11:37:53,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:53,145 INFO Out dated connection ,size=0 + +2025-09-24 11:37:53,145 INFO Connection check task end + +2025-09-24 11:37:54,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:56,145 INFO Connection check task start + +2025-09-24 11:37:56,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:56,145 INFO Out dated connection ,size=0 + +2025-09-24 11:37:56,146 INFO Connection check task end + +2025-09-24 11:37:57,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:37:59,146 INFO Connection check task start + +2025-09-24 11:37:59,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:37:59,146 INFO Out dated connection ,size=0 + +2025-09-24 11:37:59,146 INFO Connection check task end + +2025-09-24 11:38:00,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:02,146 INFO Connection check task start + +2025-09-24 11:38:02,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:02,147 INFO Out dated connection ,size=0 + +2025-09-24 11:38:02,147 INFO Connection check task end + +2025-09-24 11:38:03,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:05,147 INFO Connection check task start + +2025-09-24 11:38:05,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:05,147 INFO Out dated connection ,size=0 + +2025-09-24 11:38:05,147 INFO Connection check task end + +2025-09-24 11:38:06,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:08,147 INFO Connection check task start + +2025-09-24 11:38:08,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:08,147 INFO Out dated connection ,size=0 + +2025-09-24 11:38:08,147 INFO Connection check task end + +2025-09-24 11:38:09,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:11,149 INFO Connection check task start + +2025-09-24 11:38:11,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:11,149 INFO Out dated connection ,size=0 + +2025-09-24 11:38:11,149 INFO Connection check task end + +2025-09-24 11:38:12,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:14,149 INFO Connection check task start + +2025-09-24 11:38:14,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:14,150 INFO Out dated connection ,size=0 + +2025-09-24 11:38:14,150 INFO Connection check task end + +2025-09-24 11:38:15,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:17,150 INFO Connection check task start + +2025-09-24 11:38:17,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:17,150 INFO Out dated connection ,size=0 + +2025-09-24 11:38:17,150 INFO Connection check task end + +2025-09-24 11:38:18,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:20,152 INFO Connection check task start + +2025-09-24 11:38:20,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:20,152 INFO Out dated connection ,size=0 + +2025-09-24 11:38:20,152 INFO Connection check task end + +2025-09-24 11:38:21,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:23,154 INFO Connection check task start + +2025-09-24 11:38:23,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:23,154 INFO Out dated connection ,size=0 + +2025-09-24 11:38:23,154 INFO Connection check task end + +2025-09-24 11:38:24,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:26,155 INFO Connection check task start + +2025-09-24 11:38:26,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:26,155 INFO Out dated connection ,size=0 + +2025-09-24 11:38:26,156 INFO Connection check task end + +2025-09-24 11:38:27,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:29,158 INFO Connection check task start + +2025-09-24 11:38:29,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:29,158 INFO Out dated connection ,size=0 + +2025-09-24 11:38:29,158 INFO Connection check task end + +2025-09-24 11:38:30,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:32,158 INFO Connection check task start + +2025-09-24 11:38:32,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:32,159 INFO Out dated connection ,size=0 + +2025-09-24 11:38:32,159 INFO Connection check task end + +2025-09-24 11:38:33,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:35,161 INFO Connection check task start + +2025-09-24 11:38:35,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:35,161 INFO Out dated connection ,size=0 + +2025-09-24 11:38:35,161 INFO Connection check task end + +2025-09-24 11:38:36,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:38,161 INFO Connection check task start + +2025-09-24 11:38:38,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:38,161 INFO Out dated connection ,size=0 + +2025-09-24 11:38:38,161 INFO Connection check task end + +2025-09-24 11:38:39,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:41,162 INFO Connection check task start + +2025-09-24 11:38:41,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:41,163 INFO Out dated connection ,size=0 + +2025-09-24 11:38:41,163 INFO Connection check task end + +2025-09-24 11:38:42,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:44,163 INFO Connection check task start + +2025-09-24 11:38:44,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:44,163 INFO Out dated connection ,size=0 + +2025-09-24 11:38:44,163 INFO Connection check task end + +2025-09-24 11:38:45,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:47,164 INFO Connection check task start + +2025-09-24 11:38:47,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:47,164 INFO Out dated connection ,size=0 + +2025-09-24 11:38:47,164 INFO Connection check task end + +2025-09-24 11:38:48,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:50,166 INFO Connection check task start + +2025-09-24 11:38:50,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:50,166 INFO Out dated connection ,size=0 + +2025-09-24 11:38:50,166 INFO Connection check task end + +2025-09-24 11:38:51,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:53,168 INFO Connection check task start + +2025-09-24 11:38:53,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:53,168 INFO Out dated connection ,size=0 + +2025-09-24 11:38:53,168 INFO Connection check task end + +2025-09-24 11:38:54,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:56,169 INFO Connection check task start + +2025-09-24 11:38:56,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:56,169 INFO Out dated connection ,size=0 + +2025-09-24 11:38:56,169 INFO Connection check task end + +2025-09-24 11:38:57,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:38:59,170 INFO Connection check task start + +2025-09-24 11:38:59,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:38:59,170 INFO Out dated connection ,size=0 + +2025-09-24 11:38:59,170 INFO Connection check task end + +2025-09-24 11:39:00,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:02,172 INFO Connection check task start + +2025-09-24 11:39:02,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:02,173 INFO Out dated connection ,size=0 + +2025-09-24 11:39:02,173 INFO Connection check task end + +2025-09-24 11:39:03,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:05,175 INFO Connection check task start + +2025-09-24 11:39:05,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:05,175 INFO Out dated connection ,size=0 + +2025-09-24 11:39:05,175 INFO Connection check task end + +2025-09-24 11:39:06,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:08,176 INFO Connection check task start + +2025-09-24 11:39:08,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:08,176 INFO Out dated connection ,size=0 + +2025-09-24 11:39:08,176 INFO Connection check task end + +2025-09-24 11:39:09,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:11,176 INFO Connection check task start + +2025-09-24 11:39:11,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:11,177 INFO Out dated connection ,size=0 + +2025-09-24 11:39:11,177 INFO Connection check task end + +2025-09-24 11:39:12,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:14,177 INFO Connection check task start + +2025-09-24 11:39:14,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:14,177 INFO Out dated connection ,size=0 + +2025-09-24 11:39:14,177 INFO Connection check task end + +2025-09-24 11:39:15,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:17,177 INFO Connection check task start + +2025-09-24 11:39:17,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:17,178 INFO Out dated connection ,size=0 + +2025-09-24 11:39:17,178 INFO Connection check task end + +2025-09-24 11:39:18,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:20,180 INFO Connection check task start + +2025-09-24 11:39:20,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:20,180 INFO Out dated connection ,size=0 + +2025-09-24 11:39:20,180 INFO Connection check task end + +2025-09-24 11:39:21,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:23,181 INFO Connection check task start + +2025-09-24 11:39:23,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:23,182 INFO Out dated connection ,size=0 + +2025-09-24 11:39:23,182 INFO Connection check task end + +2025-09-24 11:39:24,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:26,182 INFO Connection check task start + +2025-09-24 11:39:26,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:26,182 INFO Out dated connection ,size=0 + +2025-09-24 11:39:26,182 INFO Connection check task end + +2025-09-24 11:39:27,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:29,182 INFO Connection check task start + +2025-09-24 11:39:29,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:29,183 INFO Out dated connection ,size=0 + +2025-09-24 11:39:29,183 INFO Connection check task end + +2025-09-24 11:39:30,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:32,184 INFO Connection check task start + +2025-09-24 11:39:32,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:32,185 INFO Out dated connection ,size=0 + +2025-09-24 11:39:32,185 INFO Connection check task end + +2025-09-24 11:39:33,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:35,187 INFO Connection check task start + +2025-09-24 11:39:35,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:35,187 INFO Out dated connection ,size=0 + +2025-09-24 11:39:35,187 INFO Connection check task end + +2025-09-24 11:39:36,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:38,188 INFO Connection check task start + +2025-09-24 11:39:38,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:38,188 INFO Out dated connection ,size=0 + +2025-09-24 11:39:38,188 INFO Connection check task end + +2025-09-24 11:39:39,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:41,188 INFO Connection check task start + +2025-09-24 11:39:41,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:41,189 INFO Out dated connection ,size=0 + +2025-09-24 11:39:41,189 INFO Connection check task end + +2025-09-24 11:39:42,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:44,189 INFO Connection check task start + +2025-09-24 11:39:44,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:44,189 INFO Out dated connection ,size=0 + +2025-09-24 11:39:44,189 INFO Connection check task end + +2025-09-24 11:39:45,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:47,190 INFO Connection check task start + +2025-09-24 11:39:47,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:47,190 INFO Out dated connection ,size=0 + +2025-09-24 11:39:47,190 INFO Connection check task end + +2025-09-24 11:39:48,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:50,192 INFO Connection check task start + +2025-09-24 11:39:50,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:50,192 INFO Out dated connection ,size=0 + +2025-09-24 11:39:50,192 INFO Connection check task end + +2025-09-24 11:39:51,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:53,192 INFO Connection check task start + +2025-09-24 11:39:53,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:53,193 INFO Out dated connection ,size=0 + +2025-09-24 11:39:53,193 INFO Connection check task end + +2025-09-24 11:39:54,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:56,193 INFO Connection check task start + +2025-09-24 11:39:56,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:56,193 INFO Out dated connection ,size=0 + +2025-09-24 11:39:56,193 INFO Connection check task end + +2025-09-24 11:39:57,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:39:59,194 INFO Connection check task start + +2025-09-24 11:39:59,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:39:59,194 INFO Out dated connection ,size=0 + +2025-09-24 11:39:59,194 INFO Connection check task end + +2025-09-24 11:40:00,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:02,194 INFO Connection check task start + +2025-09-24 11:40:02,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:02,194 INFO Out dated connection ,size=0 + +2025-09-24 11:40:02,194 INFO Connection check task end + +2025-09-24 11:40:03,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:05,195 INFO Connection check task start + +2025-09-24 11:40:05,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:05,195 INFO Out dated connection ,size=0 + +2025-09-24 11:40:05,195 INFO Connection check task end + +2025-09-24 11:40:06,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:08,195 INFO Connection check task start + +2025-09-24 11:40:08,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:08,195 INFO Out dated connection ,size=0 + +2025-09-24 11:40:08,196 INFO Connection check task end + +2025-09-24 11:40:09,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:11,196 INFO Connection check task start + +2025-09-24 11:40:11,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:11,196 INFO Out dated connection ,size=0 + +2025-09-24 11:40:11,196 INFO Connection check task end + +2025-09-24 11:40:12,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:14,196 INFO Connection check task start + +2025-09-24 11:40:14,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:14,197 INFO Out dated connection ,size=0 + +2025-09-24 11:40:14,197 INFO Connection check task end + +2025-09-24 11:40:15,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:17,197 INFO Connection check task start + +2025-09-24 11:40:17,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:17,197 INFO Out dated connection ,size=0 + +2025-09-24 11:40:17,197 INFO Connection check task end + +2025-09-24 11:40:18,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:20,198 INFO Connection check task start + +2025-09-24 11:40:20,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:20,198 INFO Out dated connection ,size=0 + +2025-09-24 11:40:20,198 INFO Connection check task end + +2025-09-24 11:40:21,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:23,198 INFO Connection check task start + +2025-09-24 11:40:23,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:23,198 INFO Out dated connection ,size=0 + +2025-09-24 11:40:23,198 INFO Connection check task end + +2025-09-24 11:40:24,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:26,199 INFO Connection check task start + +2025-09-24 11:40:26,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:26,200 INFO Out dated connection ,size=0 + +2025-09-24 11:40:26,200 INFO Connection check task end + +2025-09-24 11:40:27,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:29,200 INFO Connection check task start + +2025-09-24 11:40:29,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:29,200 INFO Out dated connection ,size=0 + +2025-09-24 11:40:29,200 INFO Connection check task end + +2025-09-24 11:40:30,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:32,201 INFO Connection check task start + +2025-09-24 11:40:32,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:32,201 INFO Out dated connection ,size=0 + +2025-09-24 11:40:32,201 INFO Connection check task end + +2025-09-24 11:40:33,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:35,202 INFO Connection check task start + +2025-09-24 11:40:35,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:35,202 INFO Out dated connection ,size=0 + +2025-09-24 11:40:35,202 INFO Connection check task end + +2025-09-24 11:40:36,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:38,204 INFO Connection check task start + +2025-09-24 11:40:38,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:38,204 INFO Out dated connection ,size=0 + +2025-09-24 11:40:38,204 INFO Connection check task end + +2025-09-24 11:40:39,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:41,205 INFO Connection check task start + +2025-09-24 11:40:41,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:41,205 INFO Out dated connection ,size=0 + +2025-09-24 11:40:41,205 INFO Connection check task end + +2025-09-24 11:40:42,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:44,206 INFO Connection check task start + +2025-09-24 11:40:44,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:44,206 INFO Out dated connection ,size=0 + +2025-09-24 11:40:44,206 INFO Connection check task end + +2025-09-24 11:40:45,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:47,208 INFO Connection check task start + +2025-09-24 11:40:47,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:47,208 INFO Out dated connection ,size=0 + +2025-09-24 11:40:47,208 INFO Connection check task end + +2025-09-24 11:40:48,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:50,208 INFO Connection check task start + +2025-09-24 11:40:50,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:50,208 INFO Out dated connection ,size=0 + +2025-09-24 11:40:50,208 INFO Connection check task end + +2025-09-24 11:40:51,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:53,209 INFO Connection check task start + +2025-09-24 11:40:53,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:53,209 INFO Out dated connection ,size=0 + +2025-09-24 11:40:53,209 INFO Connection check task end + +2025-09-24 11:40:54,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:56,210 INFO Connection check task start + +2025-09-24 11:40:56,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:56,210 INFO Out dated connection ,size=0 + +2025-09-24 11:40:56,210 INFO Connection check task end + +2025-09-24 11:40:57,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:40:59,212 INFO Connection check task start + +2025-09-24 11:40:59,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:40:59,213 INFO Out dated connection ,size=0 + +2025-09-24 11:40:59,213 INFO Connection check task end + +2025-09-24 11:41:00,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:02,213 INFO Connection check task start + +2025-09-24 11:41:02,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:02,213 INFO Out dated connection ,size=0 + +2025-09-24 11:41:02,213 INFO Connection check task end + +2025-09-24 11:41:03,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:05,214 INFO Connection check task start + +2025-09-24 11:41:05,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:05,214 INFO Out dated connection ,size=0 + +2025-09-24 11:41:05,214 INFO Connection check task end + +2025-09-24 11:41:06,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:08,216 INFO Connection check task start + +2025-09-24 11:41:08,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:08,217 INFO Out dated connection ,size=0 + +2025-09-24 11:41:08,217 INFO Connection check task end + +2025-09-24 11:41:09,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:11,217 INFO Connection check task start + +2025-09-24 11:41:11,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:11,217 INFO Out dated connection ,size=0 + +2025-09-24 11:41:11,217 INFO Connection check task end + +2025-09-24 11:41:12,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:14,219 INFO Connection check task start + +2025-09-24 11:41:14,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:14,220 INFO Out dated connection ,size=0 + +2025-09-24 11:41:14,220 INFO Connection check task end + +2025-09-24 11:41:15,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:17,220 INFO Connection check task start + +2025-09-24 11:41:17,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:17,220 INFO Out dated connection ,size=0 + +2025-09-24 11:41:17,220 INFO Connection check task end + +2025-09-24 11:41:18,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:20,220 INFO Connection check task start + +2025-09-24 11:41:20,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:20,221 INFO Out dated connection ,size=0 + +2025-09-24 11:41:20,221 INFO Connection check task end + +2025-09-24 11:41:21,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:23,221 INFO Connection check task start + +2025-09-24 11:41:23,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:23,221 INFO Out dated connection ,size=0 + +2025-09-24 11:41:23,221 INFO Connection check task end + +2025-09-24 11:41:24,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:26,222 INFO Connection check task start + +2025-09-24 11:41:26,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:26,222 INFO Out dated connection ,size=0 + +2025-09-24 11:41:26,222 INFO Connection check task end + +2025-09-24 11:41:27,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:29,222 INFO Connection check task start + +2025-09-24 11:41:29,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:29,223 INFO Out dated connection ,size=0 + +2025-09-24 11:41:29,223 INFO Connection check task end + +2025-09-24 11:41:30,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:32,224 INFO Connection check task start + +2025-09-24 11:41:32,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:32,224 INFO Out dated connection ,size=0 + +2025-09-24 11:41:32,224 INFO Connection check task end + +2025-09-24 11:41:33,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:35,225 INFO Connection check task start + +2025-09-24 11:41:35,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:35,225 INFO Out dated connection ,size=0 + +2025-09-24 11:41:35,225 INFO Connection check task end + +2025-09-24 11:41:36,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:38,225 INFO Connection check task start + +2025-09-24 11:41:38,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:38,226 INFO Out dated connection ,size=0 + +2025-09-24 11:41:38,226 INFO Connection check task end + +2025-09-24 11:41:39,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:41,226 INFO Connection check task start + +2025-09-24 11:41:41,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:41,226 INFO Out dated connection ,size=0 + +2025-09-24 11:41:41,227 INFO Connection check task end + +2025-09-24 11:41:42,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:44,228 INFO Connection check task start + +2025-09-24 11:41:44,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:44,229 INFO Out dated connection ,size=0 + +2025-09-24 11:41:44,229 INFO Connection check task end + +2025-09-24 11:41:45,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:47,229 INFO Connection check task start + +2025-09-24 11:41:47,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:47,229 INFO Out dated connection ,size=0 + +2025-09-24 11:41:47,229 INFO Connection check task end + +2025-09-24 11:41:48,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:50,230 INFO Connection check task start + +2025-09-24 11:41:50,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:50,251 INFO Out dated connection ,size=0 + +2025-09-24 11:41:50,251 INFO Connection check task end + +2025-09-24 11:41:51,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:53,251 INFO Connection check task start + +2025-09-24 11:41:53,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:53,251 INFO Out dated connection ,size=0 + +2025-09-24 11:41:53,251 INFO Connection check task end + +2025-09-24 11:41:54,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:56,252 INFO Connection check task start + +2025-09-24 11:41:56,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:56,252 INFO Out dated connection ,size=0 + +2025-09-24 11:41:56,252 INFO Connection check task end + +2025-09-24 11:41:57,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:41:59,253 INFO Connection check task start + +2025-09-24 11:41:59,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:41:59,253 INFO Out dated connection ,size=0 + +2025-09-24 11:41:59,253 INFO Connection check task end + +2025-09-24 11:42:00,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:02,253 INFO Connection check task start + +2025-09-24 11:42:02,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:02,254 INFO Out dated connection ,size=0 + +2025-09-24 11:42:02,254 INFO Connection check task end + +2025-09-24 11:42:03,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:05,254 INFO Connection check task start + +2025-09-24 11:42:05,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:05,254 INFO Out dated connection ,size=0 + +2025-09-24 11:42:05,254 INFO Connection check task end + +2025-09-24 11:42:06,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:08,255 INFO Connection check task start + +2025-09-24 11:42:08,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:08,255 INFO Out dated connection ,size=0 + +2025-09-24 11:42:08,255 INFO Connection check task end + +2025-09-24 11:42:09,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:11,257 INFO Connection check task start + +2025-09-24 11:42:11,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:11,257 INFO Out dated connection ,size=0 + +2025-09-24 11:42:11,257 INFO Connection check task end + +2025-09-24 11:42:12,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:14,259 INFO Connection check task start + +2025-09-24 11:42:14,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:14,259 INFO Out dated connection ,size=0 + +2025-09-24 11:42:14,260 INFO Connection check task end + +2025-09-24 11:42:15,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:17,262 INFO Connection check task start + +2025-09-24 11:42:17,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:17,262 INFO Out dated connection ,size=0 + +2025-09-24 11:42:17,262 INFO Connection check task end + +2025-09-24 11:42:18,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:20,262 INFO Connection check task start + +2025-09-24 11:42:20,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:20,262 INFO Out dated connection ,size=0 + +2025-09-24 11:42:20,262 INFO Connection check task end + +2025-09-24 11:42:21,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:23,263 INFO Connection check task start + +2025-09-24 11:42:23,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:23,263 INFO Out dated connection ,size=0 + +2025-09-24 11:42:23,263 INFO Connection check task end + +2025-09-24 11:42:24,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:26,263 INFO Connection check task start + +2025-09-24 11:42:26,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:26,264 INFO Out dated connection ,size=0 + +2025-09-24 11:42:26,264 INFO Connection check task end + +2025-09-24 11:42:27,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:29,264 INFO Connection check task start + +2025-09-24 11:42:29,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:29,265 INFO Out dated connection ,size=0 + +2025-09-24 11:42:29,265 INFO Connection check task end + +2025-09-24 11:42:30,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:32,265 INFO Connection check task start + +2025-09-24 11:42:32,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:32,265 INFO Out dated connection ,size=0 + +2025-09-24 11:42:32,265 INFO Connection check task end + +2025-09-24 11:42:33,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:35,267 INFO Connection check task start + +2025-09-24 11:42:35,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:35,267 INFO Out dated connection ,size=0 + +2025-09-24 11:42:35,267 INFO Connection check task end + +2025-09-24 11:42:36,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:38,268 INFO Connection check task start + +2025-09-24 11:42:38,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:38,268 INFO Out dated connection ,size=0 + +2025-09-24 11:42:38,268 INFO Connection check task end + +2025-09-24 11:42:39,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:41,268 INFO Connection check task start + +2025-09-24 11:42:41,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:41,269 INFO Out dated connection ,size=0 + +2025-09-24 11:42:41,269 INFO Connection check task end + +2025-09-24 11:42:42,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:44,270 INFO Connection check task start + +2025-09-24 11:42:44,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:44,271 INFO Out dated connection ,size=0 + +2025-09-24 11:42:44,271 INFO Connection check task end + +2025-09-24 11:42:45,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:47,271 INFO Connection check task start + +2025-09-24 11:42:47,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:47,271 INFO Out dated connection ,size=0 + +2025-09-24 11:42:47,272 INFO Connection check task end + +2025-09-24 11:42:48,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:50,274 INFO Connection check task start + +2025-09-24 11:42:50,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:50,274 INFO Out dated connection ,size=0 + +2025-09-24 11:42:50,274 INFO Connection check task end + +2025-09-24 11:42:51,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:53,276 INFO Connection check task start + +2025-09-24 11:42:53,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:53,277 INFO Out dated connection ,size=0 + +2025-09-24 11:42:53,277 INFO Connection check task end + +2025-09-24 11:42:54,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:56,278 INFO Connection check task start + +2025-09-24 11:42:56,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:56,278 INFO Out dated connection ,size=0 + +2025-09-24 11:42:56,278 INFO Connection check task end + +2025-09-24 11:42:57,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:42:59,279 INFO Connection check task start + +2025-09-24 11:42:59,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:42:59,280 INFO Out dated connection ,size=0 + +2025-09-24 11:42:59,280 INFO Connection check task end + +2025-09-24 11:43:00,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:02,282 INFO Connection check task start + +2025-09-24 11:43:02,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:02,282 INFO Out dated connection ,size=0 + +2025-09-24 11:43:02,282 INFO Connection check task end + +2025-09-24 11:43:03,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:05,284 INFO Connection check task start + +2025-09-24 11:43:05,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:05,284 INFO Out dated connection ,size=0 + +2025-09-24 11:43:05,284 INFO Connection check task end + +2025-09-24 11:43:06,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:08,286 INFO Connection check task start + +2025-09-24 11:43:08,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:08,286 INFO Out dated connection ,size=0 + +2025-09-24 11:43:08,286 INFO Connection check task end + +2025-09-24 11:43:09,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:11,287 INFO Connection check task start + +2025-09-24 11:43:11,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:11,287 INFO Out dated connection ,size=0 + +2025-09-24 11:43:11,287 INFO Connection check task end + +2025-09-24 11:43:12,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:14,287 INFO Connection check task start + +2025-09-24 11:43:14,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:14,287 INFO Out dated connection ,size=0 + +2025-09-24 11:43:14,287 INFO Connection check task end + +2025-09-24 11:43:15,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:17,288 INFO Connection check task start + +2025-09-24 11:43:17,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:17,288 INFO Out dated connection ,size=0 + +2025-09-24 11:43:17,288 INFO Connection check task end + +2025-09-24 11:43:18,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:20,288 INFO Connection check task start + +2025-09-24 11:43:20,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:20,288 INFO Out dated connection ,size=0 + +2025-09-24 11:43:20,288 INFO Connection check task end + +2025-09-24 11:43:21,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:23,289 INFO Connection check task start + +2025-09-24 11:43:23,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:23,289 INFO Out dated connection ,size=0 + +2025-09-24 11:43:23,289 INFO Connection check task end + +2025-09-24 11:43:24,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:26,289 INFO Connection check task start + +2025-09-24 11:43:26,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:26,289 INFO Out dated connection ,size=0 + +2025-09-24 11:43:26,289 INFO Connection check task end + +2025-09-24 11:43:27,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:29,290 INFO Connection check task start + +2025-09-24 11:43:29,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:29,290 INFO Out dated connection ,size=0 + +2025-09-24 11:43:29,290 INFO Connection check task end + +2025-09-24 11:43:30,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:32,290 INFO Connection check task start + +2025-09-24 11:43:32,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:32,291 INFO Out dated connection ,size=0 + +2025-09-24 11:43:32,291 INFO Connection check task end + +2025-09-24 11:43:33,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:35,291 INFO Connection check task start + +2025-09-24 11:43:35,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:35,291 INFO Out dated connection ,size=0 + +2025-09-24 11:43:35,291 INFO Connection check task end + +2025-09-24 11:43:36,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:38,293 INFO Connection check task start + +2025-09-24 11:43:38,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:38,293 INFO Out dated connection ,size=0 + +2025-09-24 11:43:38,293 INFO Connection check task end + +2025-09-24 11:43:39,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:41,293 INFO Connection check task start + +2025-09-24 11:43:41,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:41,293 INFO Out dated connection ,size=0 + +2025-09-24 11:43:41,293 INFO Connection check task end + +2025-09-24 11:43:42,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:44,294 INFO Connection check task start + +2025-09-24 11:43:44,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:44,294 INFO Out dated connection ,size=0 + +2025-09-24 11:43:44,294 INFO Connection check task end + +2025-09-24 11:43:45,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:47,294 INFO Connection check task start + +2025-09-24 11:43:47,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:47,294 INFO Out dated connection ,size=0 + +2025-09-24 11:43:47,294 INFO Connection check task end + +2025-09-24 11:43:48,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:50,294 INFO Connection check task start + +2025-09-24 11:43:50,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:50,294 INFO Out dated connection ,size=0 + +2025-09-24 11:43:50,294 INFO Connection check task end + +2025-09-24 11:43:51,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:53,295 INFO Connection check task start + +2025-09-24 11:43:53,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:53,295 INFO Out dated connection ,size=0 + +2025-09-24 11:43:53,295 INFO Connection check task end + +2025-09-24 11:43:54,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:56,295 INFO Connection check task start + +2025-09-24 11:43:56,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:56,295 INFO Out dated connection ,size=0 + +2025-09-24 11:43:56,295 INFO Connection check task end + +2025-09-24 11:43:57,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:43:59,296 INFO Connection check task start + +2025-09-24 11:43:59,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:43:59,296 INFO Out dated connection ,size=0 + +2025-09-24 11:43:59,296 INFO Connection check task end + +2025-09-24 11:44:00,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:02,296 INFO Connection check task start + +2025-09-24 11:44:02,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:02,296 INFO Out dated connection ,size=0 + +2025-09-24 11:44:02,296 INFO Connection check task end + +2025-09-24 11:44:03,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:05,298 INFO Connection check task start + +2025-09-24 11:44:05,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:05,298 INFO Out dated connection ,size=0 + +2025-09-24 11:44:05,298 INFO Connection check task end + +2025-09-24 11:44:06,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:08,299 INFO Connection check task start + +2025-09-24 11:44:08,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:08,299 INFO Out dated connection ,size=0 + +2025-09-24 11:44:08,299 INFO Connection check task end + +2025-09-24 11:44:09,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:11,302 INFO Connection check task start + +2025-09-24 11:44:11,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:11,302 INFO Out dated connection ,size=0 + +2025-09-24 11:44:11,302 INFO Connection check task end + +2025-09-24 11:44:12,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:14,302 INFO Connection check task start + +2025-09-24 11:44:14,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:14,302 INFO Out dated connection ,size=0 + +2025-09-24 11:44:14,303 INFO Connection check task end + +2025-09-24 11:44:15,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:17,303 INFO Connection check task start + +2025-09-24 11:44:17,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:17,303 INFO Out dated connection ,size=0 + +2025-09-24 11:44:17,303 INFO Connection check task end + +2025-09-24 11:44:18,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:20,303 INFO Connection check task start + +2025-09-24 11:44:20,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:20,303 INFO Out dated connection ,size=0 + +2025-09-24 11:44:20,303 INFO Connection check task end + +2025-09-24 11:44:21,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:23,304 INFO Connection check task start + +2025-09-24 11:44:23,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:23,304 INFO Out dated connection ,size=0 + +2025-09-24 11:44:23,304 INFO Connection check task end + +2025-09-24 11:44:24,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:26,305 INFO Connection check task start + +2025-09-24 11:44:26,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:26,305 INFO Out dated connection ,size=0 + +2025-09-24 11:44:26,305 INFO Connection check task end + +2025-09-24 11:44:27,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:29,306 INFO Connection check task start + +2025-09-24 11:44:29,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:29,306 INFO Out dated connection ,size=0 + +2025-09-24 11:44:29,306 INFO Connection check task end + +2025-09-24 11:44:30,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:32,307 INFO Connection check task start + +2025-09-24 11:44:32,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:32,307 INFO Out dated connection ,size=0 + +2025-09-24 11:44:32,307 INFO Connection check task end + +2025-09-24 11:44:33,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:35,309 INFO Connection check task start + +2025-09-24 11:44:35,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:35,309 INFO Out dated connection ,size=0 + +2025-09-24 11:44:35,309 INFO Connection check task end + +2025-09-24 11:44:36,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:38,309 INFO Connection check task start + +2025-09-24 11:44:38,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:38,309 INFO Out dated connection ,size=0 + +2025-09-24 11:44:38,310 INFO Connection check task end + +2025-09-24 11:44:39,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:41,310 INFO Connection check task start + +2025-09-24 11:44:41,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:41,310 INFO Out dated connection ,size=0 + +2025-09-24 11:44:41,310 INFO Connection check task end + +2025-09-24 11:44:42,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:44,311 INFO Connection check task start + +2025-09-24 11:44:44,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:44,312 INFO Out dated connection ,size=0 + +2025-09-24 11:44:44,312 INFO Connection check task end + +2025-09-24 11:44:45,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:47,312 INFO Connection check task start + +2025-09-24 11:44:47,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:47,312 INFO Out dated connection ,size=0 + +2025-09-24 11:44:47,312 INFO Connection check task end + +2025-09-24 11:44:48,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:50,313 INFO Connection check task start + +2025-09-24 11:44:50,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:50,313 INFO Out dated connection ,size=0 + +2025-09-24 11:44:50,313 INFO Connection check task end + +2025-09-24 11:44:51,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:53,313 INFO Connection check task start + +2025-09-24 11:44:53,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:53,314 INFO Out dated connection ,size=0 + +2025-09-24 11:44:53,314 INFO Connection check task end + +2025-09-24 11:44:54,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:56,316 INFO Connection check task start + +2025-09-24 11:44:56,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:56,316 INFO Out dated connection ,size=0 + +2025-09-24 11:44:56,316 INFO Connection check task end + +2025-09-24 11:44:57,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:44:59,316 INFO Connection check task start + +2025-09-24 11:44:59,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:44:59,316 INFO Out dated connection ,size=0 + +2025-09-24 11:44:59,316 INFO Connection check task end + +2025-09-24 11:45:00,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:02,317 INFO Connection check task start + +2025-09-24 11:45:02,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:02,318 INFO Out dated connection ,size=0 + +2025-09-24 11:45:02,318 INFO Connection check task end + +2025-09-24 11:45:03,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:05,318 INFO Connection check task start + +2025-09-24 11:45:05,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:05,318 INFO Out dated connection ,size=0 + +2025-09-24 11:45:05,318 INFO Connection check task end + +2025-09-24 11:45:06,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:08,319 INFO Connection check task start + +2025-09-24 11:45:08,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:08,319 INFO Out dated connection ,size=0 + +2025-09-24 11:45:08,319 INFO Connection check task end + +2025-09-24 11:45:09,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:11,320 INFO Connection check task start + +2025-09-24 11:45:11,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:11,320 INFO Out dated connection ,size=0 + +2025-09-24 11:45:11,320 INFO Connection check task end + +2025-09-24 11:45:12,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:14,322 INFO Connection check task start + +2025-09-24 11:45:14,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:14,322 INFO Out dated connection ,size=0 + +2025-09-24 11:45:14,322 INFO Connection check task end + +2025-09-24 11:45:15,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:17,324 INFO Connection check task start + +2025-09-24 11:45:17,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:17,324 INFO Out dated connection ,size=0 + +2025-09-24 11:45:17,324 INFO Connection check task end + +2025-09-24 11:45:18,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:20,324 INFO Connection check task start + +2025-09-24 11:45:20,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:20,325 INFO Out dated connection ,size=0 + +2025-09-24 11:45:20,325 INFO Connection check task end + +2025-09-24 11:45:21,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:23,325 INFO Connection check task start + +2025-09-24 11:45:23,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:23,326 INFO Out dated connection ,size=0 + +2025-09-24 11:45:23,326 INFO Connection check task end + +2025-09-24 11:45:24,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:26,327 INFO Connection check task start + +2025-09-24 11:45:26,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:26,327 INFO Out dated connection ,size=0 + +2025-09-24 11:45:26,327 INFO Connection check task end + +2025-09-24 11:45:27,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:29,327 INFO Connection check task start + +2025-09-24 11:45:29,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:29,328 INFO Out dated connection ,size=0 + +2025-09-24 11:45:29,328 INFO Connection check task end + +2025-09-24 11:45:30,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:32,329 INFO Connection check task start + +2025-09-24 11:45:32,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:32,329 INFO Out dated connection ,size=0 + +2025-09-24 11:45:32,330 INFO Connection check task end + +2025-09-24 11:45:33,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:35,331 INFO Connection check task start + +2025-09-24 11:45:35,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:35,332 INFO Out dated connection ,size=0 + +2025-09-24 11:45:35,332 INFO Connection check task end + +2025-09-24 11:45:36,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:38,332 INFO Connection check task start + +2025-09-24 11:45:38,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:38,333 INFO Out dated connection ,size=0 + +2025-09-24 11:45:38,333 INFO Connection check task end + +2025-09-24 11:45:39,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:41,333 INFO Connection check task start + +2025-09-24 11:45:41,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:41,334 INFO Out dated connection ,size=0 + +2025-09-24 11:45:41,334 INFO Connection check task end + +2025-09-24 11:45:42,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:44,334 INFO Connection check task start + +2025-09-24 11:45:44,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:44,334 INFO Out dated connection ,size=0 + +2025-09-24 11:45:44,335 INFO Connection check task end + +2025-09-24 11:45:45,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:47,335 INFO Connection check task start + +2025-09-24 11:45:47,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:47,335 INFO Out dated connection ,size=0 + +2025-09-24 11:45:47,335 INFO Connection check task end + +2025-09-24 11:45:48,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:50,337 INFO Connection check task start + +2025-09-24 11:45:50,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:50,337 INFO Out dated connection ,size=0 + +2025-09-24 11:45:50,337 INFO Connection check task end + +2025-09-24 11:45:51,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:53,338 INFO Connection check task start + +2025-09-24 11:45:53,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:53,338 INFO Out dated connection ,size=0 + +2025-09-24 11:45:53,338 INFO Connection check task end + +2025-09-24 11:45:54,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:56,339 INFO Connection check task start + +2025-09-24 11:45:56,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:56,339 INFO Out dated connection ,size=0 + +2025-09-24 11:45:56,339 INFO Connection check task end + +2025-09-24 11:45:57,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:45:59,341 INFO Connection check task start + +2025-09-24 11:45:59,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:45:59,341 INFO Out dated connection ,size=0 + +2025-09-24 11:45:59,341 INFO Connection check task end + +2025-09-24 11:46:00,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:02,343 INFO Connection check task start + +2025-09-24 11:46:02,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:02,343 INFO Out dated connection ,size=0 + +2025-09-24 11:46:02,344 INFO Connection check task end + +2025-09-24 11:46:03,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:05,344 INFO Connection check task start + +2025-09-24 11:46:05,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:05,344 INFO Out dated connection ,size=0 + +2025-09-24 11:46:05,344 INFO Connection check task end + +2025-09-24 11:46:06,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:08,347 INFO Connection check task start + +2025-09-24 11:46:08,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:08,347 INFO Out dated connection ,size=0 + +2025-09-24 11:46:08,347 INFO Connection check task end + +2025-09-24 11:46:09,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:11,348 INFO Connection check task start + +2025-09-24 11:46:11,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:11,348 INFO Out dated connection ,size=0 + +2025-09-24 11:46:11,349 INFO Connection check task end + +2025-09-24 11:46:12,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:14,351 INFO Connection check task start + +2025-09-24 11:46:14,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:14,351 INFO Out dated connection ,size=0 + +2025-09-24 11:46:14,351 INFO Connection check task end + +2025-09-24 11:46:15,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:17,351 INFO Connection check task start + +2025-09-24 11:46:17,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:17,352 INFO Out dated connection ,size=0 + +2025-09-24 11:46:17,352 INFO Connection check task end + +2025-09-24 11:46:18,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:20,352 INFO Connection check task start + +2025-09-24 11:46:20,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:20,352 INFO Out dated connection ,size=0 + +2025-09-24 11:46:20,353 INFO Connection check task end + +2025-09-24 11:46:21,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:23,354 INFO Connection check task start + +2025-09-24 11:46:23,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:23,354 INFO Out dated connection ,size=0 + +2025-09-24 11:46:23,354 INFO Connection check task end + +2025-09-24 11:46:24,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:26,357 INFO Connection check task start + +2025-09-24 11:46:26,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:26,357 INFO Out dated connection ,size=0 + +2025-09-24 11:46:26,357 INFO Connection check task end + +2025-09-24 11:46:27,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:29,359 INFO Connection check task start + +2025-09-24 11:46:29,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:29,359 INFO Out dated connection ,size=0 + +2025-09-24 11:46:29,359 INFO Connection check task end + +2025-09-24 11:46:30,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:32,360 INFO Connection check task start + +2025-09-24 11:46:32,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:32,361 INFO Out dated connection ,size=0 + +2025-09-24 11:46:32,361 INFO Connection check task end + +2025-09-24 11:46:33,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:35,361 INFO Connection check task start + +2025-09-24 11:46:35,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:35,362 INFO Out dated connection ,size=0 + +2025-09-24 11:46:35,362 INFO Connection check task end + +2025-09-24 11:46:36,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:38,364 INFO Connection check task start + +2025-09-24 11:46:38,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:38,364 INFO Out dated connection ,size=0 + +2025-09-24 11:46:38,364 INFO Connection check task end + +2025-09-24 11:46:39,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:41,366 INFO Connection check task start + +2025-09-24 11:46:41,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:41,367 INFO Out dated connection ,size=0 + +2025-09-24 11:46:41,367 INFO Connection check task end + +2025-09-24 11:46:42,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:44,369 INFO Connection check task start + +2025-09-24 11:46:44,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:44,369 INFO Out dated connection ,size=0 + +2025-09-24 11:46:44,369 INFO Connection check task end + +2025-09-24 11:46:45,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:47,370 INFO Connection check task start + +2025-09-24 11:46:47,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:47,370 INFO Out dated connection ,size=0 + +2025-09-24 11:46:47,370 INFO Connection check task end + +2025-09-24 11:46:48,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:50,373 INFO Connection check task start + +2025-09-24 11:46:50,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:50,373 INFO Out dated connection ,size=0 + +2025-09-24 11:46:50,373 INFO Connection check task end + +2025-09-24 11:46:51,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:53,375 INFO Connection check task start + +2025-09-24 11:46:53,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:53,376 INFO Out dated connection ,size=0 + +2025-09-24 11:46:53,376 INFO Connection check task end + +2025-09-24 11:46:54,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:56,378 INFO Connection check task start + +2025-09-24 11:46:56,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:56,378 INFO Out dated connection ,size=0 + +2025-09-24 11:46:56,378 INFO Connection check task end + +2025-09-24 11:46:57,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:46:59,380 INFO Connection check task start + +2025-09-24 11:46:59,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:46:59,380 INFO Out dated connection ,size=0 + +2025-09-24 11:46:59,381 INFO Connection check task end + +2025-09-24 11:47:00,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:02,383 INFO Connection check task start + +2025-09-24 11:47:02,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:02,383 INFO Out dated connection ,size=0 + +2025-09-24 11:47:02,383 INFO Connection check task end + +2025-09-24 11:47:03,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:05,385 INFO Connection check task start + +2025-09-24 11:47:05,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:05,386 INFO Out dated connection ,size=0 + +2025-09-24 11:47:05,386 INFO Connection check task end + +2025-09-24 11:47:06,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:08,388 INFO Connection check task start + +2025-09-24 11:47:08,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:08,388 INFO Out dated connection ,size=0 + +2025-09-24 11:47:08,388 INFO Connection check task end + +2025-09-24 11:47:09,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:11,391 INFO Connection check task start + +2025-09-24 11:47:11,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:11,391 INFO Out dated connection ,size=0 + +2025-09-24 11:47:11,391 INFO Connection check task end + +2025-09-24 11:47:12,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:14,393 INFO Connection check task start + +2025-09-24 11:47:14,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:14,393 INFO Out dated connection ,size=0 + +2025-09-24 11:47:14,394 INFO Connection check task end + +2025-09-24 11:47:15,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:17,396 INFO Connection check task start + +2025-09-24 11:47:17,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:17,396 INFO Out dated connection ,size=0 + +2025-09-24 11:47:17,396 INFO Connection check task end + +2025-09-24 11:47:18,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:20,398 INFO Connection check task start + +2025-09-24 11:47:20,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:20,398 INFO Out dated connection ,size=0 + +2025-09-24 11:47:20,399 INFO Connection check task end + +2025-09-24 11:47:21,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:23,400 INFO Connection check task start + +2025-09-24 11:47:23,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:23,400 INFO Out dated connection ,size=0 + +2025-09-24 11:47:23,400 INFO Connection check task end + +2025-09-24 11:47:24,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:26,401 INFO Connection check task start + +2025-09-24 11:47:26,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:26,401 INFO Out dated connection ,size=0 + +2025-09-24 11:47:26,401 INFO Connection check task end + +2025-09-24 11:47:27,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:29,403 INFO Connection check task start + +2025-09-24 11:47:29,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:29,403 INFO Out dated connection ,size=0 + +2025-09-24 11:47:29,403 INFO Connection check task end + +2025-09-24 11:47:30,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:32,403 INFO Connection check task start + +2025-09-24 11:47:32,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:32,403 INFO Out dated connection ,size=0 + +2025-09-24 11:47:32,403 INFO Connection check task end + +2025-09-24 11:47:33,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:35,403 INFO Connection check task start + +2025-09-24 11:47:35,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:35,404 INFO Out dated connection ,size=0 + +2025-09-24 11:47:35,404 INFO Connection check task end + +2025-09-24 11:47:36,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:38,405 INFO Connection check task start + +2025-09-24 11:47:38,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:38,406 INFO Out dated connection ,size=0 + +2025-09-24 11:47:38,406 INFO Connection check task end + +2025-09-24 11:47:39,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:41,406 INFO Connection check task start + +2025-09-24 11:47:41,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:41,406 INFO Out dated connection ,size=0 + +2025-09-24 11:47:41,406 INFO Connection check task end + +2025-09-24 11:47:42,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:44,408 INFO Connection check task start + +2025-09-24 11:47:44,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:44,408 INFO Out dated connection ,size=0 + +2025-09-24 11:47:44,408 INFO Connection check task end + +2025-09-24 11:47:45,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:47,409 INFO Connection check task start + +2025-09-24 11:47:47,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:47,409 INFO Out dated connection ,size=0 + +2025-09-24 11:47:47,409 INFO Connection check task end + +2025-09-24 11:47:48,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:50,411 INFO Connection check task start + +2025-09-24 11:47:50,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:50,411 INFO Out dated connection ,size=0 + +2025-09-24 11:47:50,412 INFO Connection check task end + +2025-09-24 11:47:51,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:53,412 INFO Connection check task start + +2025-09-24 11:47:53,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:53,412 INFO Out dated connection ,size=0 + +2025-09-24 11:47:53,412 INFO Connection check task end + +2025-09-24 11:47:54,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:56,414 INFO Connection check task start + +2025-09-24 11:47:56,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:56,414 INFO Out dated connection ,size=0 + +2025-09-24 11:47:56,414 INFO Connection check task end + +2025-09-24 11:47:57,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:47:59,416 INFO Connection check task start + +2025-09-24 11:47:59,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:47:59,416 INFO Out dated connection ,size=0 + +2025-09-24 11:47:59,416 INFO Connection check task end + +2025-09-24 11:48:00,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:02,418 INFO Connection check task start + +2025-09-24 11:48:02,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:02,418 INFO Out dated connection ,size=0 + +2025-09-24 11:48:02,418 INFO Connection check task end + +2025-09-24 11:48:03,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:05,420 INFO Connection check task start + +2025-09-24 11:48:05,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:05,420 INFO Out dated connection ,size=0 + +2025-09-24 11:48:05,420 INFO Connection check task end + +2025-09-24 11:48:06,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:08,420 INFO Connection check task start + +2025-09-24 11:48:08,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:08,421 INFO Out dated connection ,size=0 + +2025-09-24 11:48:08,421 INFO Connection check task end + +2025-09-24 11:48:09,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:11,421 INFO Connection check task start + +2025-09-24 11:48:11,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:11,421 INFO Out dated connection ,size=0 + +2025-09-24 11:48:11,421 INFO Connection check task end + +2025-09-24 11:48:12,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:14,423 INFO Connection check task start + +2025-09-24 11:48:14,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:14,423 INFO Out dated connection ,size=0 + +2025-09-24 11:48:14,423 INFO Connection check task end + +2025-09-24 11:48:15,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:17,423 INFO Connection check task start + +2025-09-24 11:48:17,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:17,423 INFO Out dated connection ,size=0 + +2025-09-24 11:48:17,423 INFO Connection check task end + +2025-09-24 11:48:18,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:20,423 INFO Connection check task start + +2025-09-24 11:48:20,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:20,424 INFO Out dated connection ,size=0 + +2025-09-24 11:48:20,424 INFO Connection check task end + +2025-09-24 11:48:21,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:23,426 INFO Connection check task start + +2025-09-24 11:48:23,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:23,426 INFO Out dated connection ,size=0 + +2025-09-24 11:48:23,426 INFO Connection check task end + +2025-09-24 11:48:24,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:26,426 INFO Connection check task start + +2025-09-24 11:48:26,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:26,427 INFO Out dated connection ,size=0 + +2025-09-24 11:48:26,427 INFO Connection check task end + +2025-09-24 11:48:27,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:29,428 INFO Connection check task start + +2025-09-24 11:48:29,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:29,428 INFO Out dated connection ,size=0 + +2025-09-24 11:48:29,428 INFO Connection check task end + +2025-09-24 11:48:30,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:32,429 INFO Connection check task start + +2025-09-24 11:48:32,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:32,429 INFO Out dated connection ,size=0 + +2025-09-24 11:48:32,429 INFO Connection check task end + +2025-09-24 11:48:33,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:35,430 INFO Connection check task start + +2025-09-24 11:48:35,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:35,430 INFO Out dated connection ,size=0 + +2025-09-24 11:48:35,431 INFO Connection check task end + +2025-09-24 11:48:36,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:38,432 INFO Connection check task start + +2025-09-24 11:48:38,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:38,433 INFO Out dated connection ,size=0 + +2025-09-24 11:48:38,433 INFO Connection check task end + +2025-09-24 11:48:39,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:41,433 INFO Connection check task start + +2025-09-24 11:48:41,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:41,433 INFO Out dated connection ,size=0 + +2025-09-24 11:48:41,433 INFO Connection check task end + +2025-09-24 11:48:42,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:44,435 INFO Connection check task start + +2025-09-24 11:48:44,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:44,435 INFO Out dated connection ,size=0 + +2025-09-24 11:48:44,435 INFO Connection check task end + +2025-09-24 11:48:45,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:47,437 INFO Connection check task start + +2025-09-24 11:48:47,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:47,437 INFO Out dated connection ,size=0 + +2025-09-24 11:48:47,437 INFO Connection check task end + +2025-09-24 11:48:48,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:50,439 INFO Connection check task start + +2025-09-24 11:48:50,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:50,440 INFO Out dated connection ,size=0 + +2025-09-24 11:48:50,440 INFO Connection check task end + +2025-09-24 11:48:51,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:53,440 INFO Connection check task start + +2025-09-24 11:48:53,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:53,440 INFO Out dated connection ,size=0 + +2025-09-24 11:48:53,440 INFO Connection check task end + +2025-09-24 11:48:54,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:56,441 INFO Connection check task start + +2025-09-24 11:48:56,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:56,441 INFO Out dated connection ,size=0 + +2025-09-24 11:48:56,441 INFO Connection check task end + +2025-09-24 11:48:57,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:48:59,441 INFO Connection check task start + +2025-09-24 11:48:59,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:48:59,441 INFO Out dated connection ,size=0 + +2025-09-24 11:48:59,441 INFO Connection check task end + +2025-09-24 11:49:00,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:02,442 INFO Connection check task start + +2025-09-24 11:49:02,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:02,442 INFO Out dated connection ,size=0 + +2025-09-24 11:49:02,442 INFO Connection check task end + +2025-09-24 11:49:03,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:05,443 INFO Connection check task start + +2025-09-24 11:49:05,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:05,443 INFO Out dated connection ,size=0 + +2025-09-24 11:49:05,443 INFO Connection check task end + +2025-09-24 11:49:06,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:08,443 INFO Connection check task start + +2025-09-24 11:49:08,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:08,443 INFO Out dated connection ,size=0 + +2025-09-24 11:49:08,443 INFO Connection check task end + +2025-09-24 11:49:09,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:11,445 INFO Connection check task start + +2025-09-24 11:49:11,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:11,446 INFO Out dated connection ,size=0 + +2025-09-24 11:49:11,446 INFO Connection check task end + +2025-09-24 11:49:12,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:14,446 INFO Connection check task start + +2025-09-24 11:49:14,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:14,446 INFO Out dated connection ,size=0 + +2025-09-24 11:49:14,446 INFO Connection check task end + +2025-09-24 11:49:15,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:17,447 INFO Connection check task start + +2025-09-24 11:49:17,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:17,447 INFO Out dated connection ,size=0 + +2025-09-24 11:49:17,447 INFO Connection check task end + +2025-09-24 11:49:18,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:20,449 INFO Connection check task start + +2025-09-24 11:49:20,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:20,449 INFO Out dated connection ,size=0 + +2025-09-24 11:49:20,449 INFO Connection check task end + +2025-09-24 11:49:21,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:23,451 INFO Connection check task start + +2025-09-24 11:49:23,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:23,451 INFO Out dated connection ,size=0 + +2025-09-24 11:49:23,451 INFO Connection check task end + +2025-09-24 11:49:24,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:26,452 INFO Connection check task start + +2025-09-24 11:49:26,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:26,452 INFO Out dated connection ,size=0 + +2025-09-24 11:49:26,452 INFO Connection check task end + +2025-09-24 11:49:27,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:29,454 INFO Connection check task start + +2025-09-24 11:49:29,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:29,454 INFO Out dated connection ,size=0 + +2025-09-24 11:49:29,454 INFO Connection check task end + +2025-09-24 11:49:30,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:32,456 INFO Connection check task start + +2025-09-24 11:49:32,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:32,456 INFO Out dated connection ,size=0 + +2025-09-24 11:49:32,456 INFO Connection check task end + +2025-09-24 11:49:33,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:35,457 INFO Connection check task start + +2025-09-24 11:49:35,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:35,457 INFO Out dated connection ,size=0 + +2025-09-24 11:49:35,457 INFO Connection check task end + +2025-09-24 11:49:36,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:38,457 INFO Connection check task start + +2025-09-24 11:49:38,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:38,458 INFO Out dated connection ,size=0 + +2025-09-24 11:49:38,458 INFO Connection check task end + +2025-09-24 11:49:39,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:41,460 INFO Connection check task start + +2025-09-24 11:49:41,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:41,460 INFO Out dated connection ,size=0 + +2025-09-24 11:49:41,460 INFO Connection check task end + +2025-09-24 11:49:42,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:44,461 INFO Connection check task start + +2025-09-24 11:49:44,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:44,461 INFO Out dated connection ,size=0 + +2025-09-24 11:49:44,461 INFO Connection check task end + +2025-09-24 11:49:45,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:47,462 INFO Connection check task start + +2025-09-24 11:49:47,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:47,462 INFO Out dated connection ,size=0 + +2025-09-24 11:49:47,462 INFO Connection check task end + +2025-09-24 11:49:48,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:50,463 INFO Connection check task start + +2025-09-24 11:49:50,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:50,463 INFO Out dated connection ,size=0 + +2025-09-24 11:49:50,463 INFO Connection check task end + +2025-09-24 11:49:51,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:53,465 INFO Connection check task start + +2025-09-24 11:49:53,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:53,466 INFO Out dated connection ,size=0 + +2025-09-24 11:49:53,466 INFO Connection check task end + +2025-09-24 11:49:54,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:56,466 INFO Connection check task start + +2025-09-24 11:49:56,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:56,466 INFO Out dated connection ,size=0 + +2025-09-24 11:49:56,466 INFO Connection check task end + +2025-09-24 11:49:57,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:49:59,467 INFO Connection check task start + +2025-09-24 11:49:59,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:49:59,468 INFO Out dated connection ,size=0 + +2025-09-24 11:49:59,468 INFO Connection check task end + +2025-09-24 11:50:00,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:02,468 INFO Connection check task start + +2025-09-24 11:50:02,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:02,469 INFO Out dated connection ,size=0 + +2025-09-24 11:50:02,469 INFO Connection check task end + +2025-09-24 11:50:03,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:05,471 INFO Connection check task start + +2025-09-24 11:50:05,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:05,471 INFO Out dated connection ,size=0 + +2025-09-24 11:50:05,471 INFO Connection check task end + +2025-09-24 11:50:06,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:08,473 INFO Connection check task start + +2025-09-24 11:50:08,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:08,473 INFO Out dated connection ,size=0 + +2025-09-24 11:50:08,473 INFO Connection check task end + +2025-09-24 11:50:09,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:11,475 INFO Connection check task start + +2025-09-24 11:50:11,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:11,476 INFO Out dated connection ,size=0 + +2025-09-24 11:50:11,476 INFO Connection check task end + +2025-09-24 11:50:12,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:14,476 INFO Connection check task start + +2025-09-24 11:50:14,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:14,476 INFO Out dated connection ,size=0 + +2025-09-24 11:50:14,476 INFO Connection check task end + +2025-09-24 11:50:15,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:17,477 INFO Connection check task start + +2025-09-24 11:50:17,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:17,477 INFO Out dated connection ,size=0 + +2025-09-24 11:50:17,477 INFO Connection check task end + +2025-09-24 11:50:18,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:20,477 INFO Connection check task start + +2025-09-24 11:50:20,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:20,478 INFO Out dated connection ,size=0 + +2025-09-24 11:50:20,478 INFO Connection check task end + +2025-09-24 11:50:21,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:23,478 INFO Connection check task start + +2025-09-24 11:50:23,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:23,479 INFO Out dated connection ,size=0 + +2025-09-24 11:50:23,479 INFO Connection check task end + +2025-09-24 11:50:24,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:26,479 INFO Connection check task start + +2025-09-24 11:50:26,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:26,479 INFO Out dated connection ,size=0 + +2025-09-24 11:50:26,479 INFO Connection check task end + +2025-09-24 11:50:27,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:29,481 INFO Connection check task start + +2025-09-24 11:50:29,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:29,481 INFO Out dated connection ,size=0 + +2025-09-24 11:50:29,481 INFO Connection check task end + +2025-09-24 11:50:30,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:32,482 INFO Connection check task start + +2025-09-24 11:50:32,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:32,482 INFO Out dated connection ,size=0 + +2025-09-24 11:50:32,482 INFO Connection check task end + +2025-09-24 11:50:33,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:35,483 INFO Connection check task start + +2025-09-24 11:50:35,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:35,483 INFO Out dated connection ,size=0 + +2025-09-24 11:50:35,483 INFO Connection check task end + +2025-09-24 11:50:36,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:38,484 INFO Connection check task start + +2025-09-24 11:50:38,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:38,484 INFO Out dated connection ,size=0 + +2025-09-24 11:50:38,484 INFO Connection check task end + +2025-09-24 11:50:39,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:41,486 INFO Connection check task start + +2025-09-24 11:50:41,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:41,486 INFO Out dated connection ,size=0 + +2025-09-24 11:50:41,486 INFO Connection check task end + +2025-09-24 11:50:42,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:44,487 INFO Connection check task start + +2025-09-24 11:50:44,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:44,487 INFO Out dated connection ,size=0 + +2025-09-24 11:50:44,487 INFO Connection check task end + +2025-09-24 11:50:45,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:47,488 INFO Connection check task start + +2025-09-24 11:50:47,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:47,488 INFO Out dated connection ,size=0 + +2025-09-24 11:50:47,488 INFO Connection check task end + +2025-09-24 11:50:48,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:50,488 INFO Connection check task start + +2025-09-24 11:50:50,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:50,489 INFO Out dated connection ,size=0 + +2025-09-24 11:50:50,489 INFO Connection check task end + +2025-09-24 11:50:51,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:53,491 INFO Connection check task start + +2025-09-24 11:50:53,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:53,491 INFO Out dated connection ,size=0 + +2025-09-24 11:50:53,491 INFO Connection check task end + +2025-09-24 11:50:54,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:56,491 INFO Connection check task start + +2025-09-24 11:50:56,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:56,492 INFO Out dated connection ,size=0 + +2025-09-24 11:50:56,492 INFO Connection check task end + +2025-09-24 11:50:57,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:50:59,492 INFO Connection check task start + +2025-09-24 11:50:59,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:50:59,492 INFO Out dated connection ,size=0 + +2025-09-24 11:50:59,492 INFO Connection check task end + +2025-09-24 11:51:00,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:02,494 INFO Connection check task start + +2025-09-24 11:51:02,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:02,494 INFO Out dated connection ,size=0 + +2025-09-24 11:51:02,494 INFO Connection check task end + +2025-09-24 11:51:03,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:05,495 INFO Connection check task start + +2025-09-24 11:51:05,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:05,495 INFO Out dated connection ,size=0 + +2025-09-24 11:51:05,495 INFO Connection check task end + +2025-09-24 11:51:06,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:08,496 INFO Connection check task start + +2025-09-24 11:51:08,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:08,496 INFO Out dated connection ,size=0 + +2025-09-24 11:51:08,496 INFO Connection check task end + +2025-09-24 11:51:09,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:11,498 INFO Connection check task start + +2025-09-24 11:51:11,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:11,498 INFO Out dated connection ,size=0 + +2025-09-24 11:51:11,498 INFO Connection check task end + +2025-09-24 11:51:12,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:14,498 INFO Connection check task start + +2025-09-24 11:51:14,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:14,498 INFO Out dated connection ,size=0 + +2025-09-24 11:51:14,498 INFO Connection check task end + +2025-09-24 11:51:15,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:17,499 INFO Connection check task start + +2025-09-24 11:51:17,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:17,499 INFO Out dated connection ,size=0 + +2025-09-24 11:51:17,499 INFO Connection check task end + +2025-09-24 11:51:18,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:20,499 INFO Connection check task start + +2025-09-24 11:51:20,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:20,500 INFO Out dated connection ,size=0 + +2025-09-24 11:51:20,500 INFO Connection check task end + +2025-09-24 11:51:21,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:23,502 INFO Connection check task start + +2025-09-24 11:51:23,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:23,502 INFO Out dated connection ,size=0 + +2025-09-24 11:51:23,502 INFO Connection check task end + +2025-09-24 11:51:24,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:26,503 INFO Connection check task start + +2025-09-24 11:51:26,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:26,503 INFO Out dated connection ,size=0 + +2025-09-24 11:51:26,503 INFO Connection check task end + +2025-09-24 11:51:27,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:29,504 INFO Connection check task start + +2025-09-24 11:51:29,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:29,504 INFO Out dated connection ,size=0 + +2025-09-24 11:51:29,504 INFO Connection check task end + +2025-09-24 11:51:30,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:32,504 INFO Connection check task start + +2025-09-24 11:51:32,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:32,505 INFO Out dated connection ,size=0 + +2025-09-24 11:51:32,505 INFO Connection check task end + +2025-09-24 11:51:33,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:35,506 INFO Connection check task start + +2025-09-24 11:51:35,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:35,506 INFO Out dated connection ,size=0 + +2025-09-24 11:51:35,506 INFO Connection check task end + +2025-09-24 11:51:36,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:38,508 INFO Connection check task start + +2025-09-24 11:51:38,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:38,508 INFO Out dated connection ,size=0 + +2025-09-24 11:51:38,508 INFO Connection check task end + +2025-09-24 11:51:39,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:41,508 INFO Connection check task start + +2025-09-24 11:51:41,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:41,508 INFO Out dated connection ,size=0 + +2025-09-24 11:51:41,508 INFO Connection check task end + +2025-09-24 11:51:42,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:44,510 INFO Connection check task start + +2025-09-24 11:51:44,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:44,510 INFO Out dated connection ,size=0 + +2025-09-24 11:51:44,511 INFO Connection check task end + +2025-09-24 11:51:45,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:47,511 INFO Connection check task start + +2025-09-24 11:51:47,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:47,512 INFO Out dated connection ,size=0 + +2025-09-24 11:51:47,512 INFO Connection check task end + +2025-09-24 11:51:48,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:50,512 INFO Connection check task start + +2025-09-24 11:51:50,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:50,513 INFO Out dated connection ,size=0 + +2025-09-24 11:51:50,513 INFO Connection check task end + +2025-09-24 11:51:51,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:53,513 INFO Connection check task start + +2025-09-24 11:51:53,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:53,513 INFO Out dated connection ,size=0 + +2025-09-24 11:51:53,513 INFO Connection check task end + +2025-09-24 11:51:54,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:56,514 INFO Connection check task start + +2025-09-24 11:51:56,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:56,514 INFO Out dated connection ,size=0 + +2025-09-24 11:51:56,514 INFO Connection check task end + +2025-09-24 11:51:57,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:51:59,516 INFO Connection check task start + +2025-09-24 11:51:59,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:51:59,516 INFO Out dated connection ,size=0 + +2025-09-24 11:51:59,516 INFO Connection check task end + +2025-09-24 11:52:00,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:02,517 INFO Connection check task start + +2025-09-24 11:52:02,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:02,517 INFO Out dated connection ,size=0 + +2025-09-24 11:52:02,517 INFO Connection check task end + +2025-09-24 11:52:03,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:05,518 INFO Connection check task start + +2025-09-24 11:52:05,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:05,519 INFO Out dated connection ,size=0 + +2025-09-24 11:52:05,519 INFO Connection check task end + +2025-09-24 11:52:06,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:08,520 INFO Connection check task start + +2025-09-24 11:52:08,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:08,520 INFO Out dated connection ,size=0 + +2025-09-24 11:52:08,520 INFO Connection check task end + +2025-09-24 11:52:09,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:11,521 INFO Connection check task start + +2025-09-24 11:52:11,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:11,521 INFO Out dated connection ,size=0 + +2025-09-24 11:52:11,521 INFO Connection check task end + +2025-09-24 11:52:12,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:14,523 INFO Connection check task start + +2025-09-24 11:52:14,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:14,523 INFO Out dated connection ,size=0 + +2025-09-24 11:52:14,523 INFO Connection check task end + +2025-09-24 11:52:15,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:17,526 INFO Connection check task start + +2025-09-24 11:52:17,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:17,526 INFO Out dated connection ,size=0 + +2025-09-24 11:52:17,526 INFO Connection check task end + +2025-09-24 11:52:18,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:20,526 INFO Connection check task start + +2025-09-24 11:52:20,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:20,526 INFO Out dated connection ,size=0 + +2025-09-24 11:52:20,526 INFO Connection check task end + +2025-09-24 11:52:21,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:23,528 INFO Connection check task start + +2025-09-24 11:52:23,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:23,529 INFO Out dated connection ,size=0 + +2025-09-24 11:52:23,529 INFO Connection check task end + +2025-09-24 11:52:24,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:26,530 INFO Connection check task start + +2025-09-24 11:52:26,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:26,530 INFO Out dated connection ,size=0 + +2025-09-24 11:52:26,530 INFO Connection check task end + +2025-09-24 11:52:27,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:29,532 INFO Connection check task start + +2025-09-24 11:52:29,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:29,532 INFO Out dated connection ,size=0 + +2025-09-24 11:52:29,532 INFO Connection check task end + +2025-09-24 11:52:30,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:32,534 INFO Connection check task start + +2025-09-24 11:52:32,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:32,534 INFO Out dated connection ,size=0 + +2025-09-24 11:52:32,534 INFO Connection check task end + +2025-09-24 11:52:33,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:35,535 INFO Connection check task start + +2025-09-24 11:52:35,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:35,535 INFO Out dated connection ,size=0 + +2025-09-24 11:52:35,535 INFO Connection check task end + +2025-09-24 11:52:36,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:38,536 INFO Connection check task start + +2025-09-24 11:52:38,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:38,536 INFO Out dated connection ,size=0 + +2025-09-24 11:52:38,536 INFO Connection check task end + +2025-09-24 11:52:39,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:41,537 INFO Connection check task start + +2025-09-24 11:52:41,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:41,537 INFO Out dated connection ,size=0 + +2025-09-24 11:52:41,537 INFO Connection check task end + +2025-09-24 11:52:42,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:44,539 INFO Connection check task start + +2025-09-24 11:52:44,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:44,539 INFO Out dated connection ,size=0 + +2025-09-24 11:52:44,539 INFO Connection check task end + +2025-09-24 11:52:45,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:47,540 INFO Connection check task start + +2025-09-24 11:52:47,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:47,540 INFO Out dated connection ,size=0 + +2025-09-24 11:52:47,540 INFO Connection check task end + +2025-09-24 11:52:48,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:50,542 INFO Connection check task start + +2025-09-24 11:52:50,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:50,542 INFO Out dated connection ,size=0 + +2025-09-24 11:52:50,542 INFO Connection check task end + +2025-09-24 11:52:51,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:53,543 INFO Connection check task start + +2025-09-24 11:52:53,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:53,543 INFO Out dated connection ,size=0 + +2025-09-24 11:52:53,543 INFO Connection check task end + +2025-09-24 11:52:54,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:56,544 INFO Connection check task start + +2025-09-24 11:52:56,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:56,544 INFO Out dated connection ,size=0 + +2025-09-24 11:52:56,544 INFO Connection check task end + +2025-09-24 11:52:57,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:52:59,545 INFO Connection check task start + +2025-09-24 11:52:59,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:52:59,545 INFO Out dated connection ,size=0 + +2025-09-24 11:52:59,545 INFO Connection check task end + +2025-09-24 11:53:00,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:02,546 INFO Connection check task start + +2025-09-24 11:53:02,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:02,546 INFO Out dated connection ,size=0 + +2025-09-24 11:53:02,546 INFO Connection check task end + +2025-09-24 11:53:03,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:05,546 INFO Connection check task start + +2025-09-24 11:53:05,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:05,546 INFO Out dated connection ,size=0 + +2025-09-24 11:53:05,546 INFO Connection check task end + +2025-09-24 11:53:06,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:08,547 INFO Connection check task start + +2025-09-24 11:53:08,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:08,547 INFO Out dated connection ,size=0 + +2025-09-24 11:53:08,547 INFO Connection check task end + +2025-09-24 11:53:09,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:11,550 INFO Connection check task start + +2025-09-24 11:53:11,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:11,550 INFO Out dated connection ,size=0 + +2025-09-24 11:53:11,550 INFO Connection check task end + +2025-09-24 11:53:12,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:14,550 INFO Connection check task start + +2025-09-24 11:53:14,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:14,550 INFO Out dated connection ,size=0 + +2025-09-24 11:53:14,551 INFO Connection check task end + +2025-09-24 11:53:15,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:17,552 INFO Connection check task start + +2025-09-24 11:53:17,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:17,552 INFO Out dated connection ,size=0 + +2025-09-24 11:53:17,552 INFO Connection check task end + +2025-09-24 11:53:18,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:20,553 INFO Connection check task start + +2025-09-24 11:53:20,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:20,553 INFO Out dated connection ,size=0 + +2025-09-24 11:53:20,553 INFO Connection check task end + +2025-09-24 11:53:21,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:23,554 INFO Connection check task start + +2025-09-24 11:53:23,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:23,554 INFO Out dated connection ,size=0 + +2025-09-24 11:53:23,554 INFO Connection check task end + +2025-09-24 11:53:24,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:26,554 INFO Connection check task start + +2025-09-24 11:53:26,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:26,555 INFO Out dated connection ,size=0 + +2025-09-24 11:53:26,555 INFO Connection check task end + +2025-09-24 11:53:27,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:29,556 INFO Connection check task start + +2025-09-24 11:53:29,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:29,556 INFO Out dated connection ,size=0 + +2025-09-24 11:53:29,556 INFO Connection check task end + +2025-09-24 11:53:30,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:32,557 INFO Connection check task start + +2025-09-24 11:53:32,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:32,557 INFO Out dated connection ,size=0 + +2025-09-24 11:53:32,557 INFO Connection check task end + +2025-09-24 11:53:33,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:35,558 INFO Connection check task start + +2025-09-24 11:53:35,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:35,558 INFO Out dated connection ,size=0 + +2025-09-24 11:53:35,558 INFO Connection check task end + +2025-09-24 11:53:36,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:38,558 INFO Connection check task start + +2025-09-24 11:53:38,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:38,559 INFO Out dated connection ,size=0 + +2025-09-24 11:53:38,559 INFO Connection check task end + +2025-09-24 11:53:39,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:41,559 INFO Connection check task start + +2025-09-24 11:53:41,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:41,559 INFO Out dated connection ,size=0 + +2025-09-24 11:53:41,559 INFO Connection check task end + +2025-09-24 11:53:42,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:44,561 INFO Connection check task start + +2025-09-24 11:53:44,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:44,562 INFO Out dated connection ,size=0 + +2025-09-24 11:53:44,562 INFO Connection check task end + +2025-09-24 11:53:45,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:47,562 INFO Connection check task start + +2025-09-24 11:53:47,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:47,562 INFO Out dated connection ,size=0 + +2025-09-24 11:53:47,562 INFO Connection check task end + +2025-09-24 11:53:48,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:50,564 INFO Connection check task start + +2025-09-24 11:53:50,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:50,564 INFO Out dated connection ,size=0 + +2025-09-24 11:53:50,564 INFO Connection check task end + +2025-09-24 11:53:51,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:53,565 INFO Connection check task start + +2025-09-24 11:53:53,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:53,565 INFO Out dated connection ,size=0 + +2025-09-24 11:53:53,565 INFO Connection check task end + +2025-09-24 11:53:54,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:56,566 INFO Connection check task start + +2025-09-24 11:53:56,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:56,566 INFO Out dated connection ,size=0 + +2025-09-24 11:53:56,566 INFO Connection check task end + +2025-09-24 11:53:57,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:53:59,566 INFO Connection check task start + +2025-09-24 11:53:59,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:53:59,566 INFO Out dated connection ,size=0 + +2025-09-24 11:53:59,566 INFO Connection check task end + +2025-09-24 11:54:00,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:02,567 INFO Connection check task start + +2025-09-24 11:54:02,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:02,568 INFO Out dated connection ,size=0 + +2025-09-24 11:54:02,568 INFO Connection check task end + +2025-09-24 11:54:03,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:05,569 INFO Connection check task start + +2025-09-24 11:54:05,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:05,569 INFO Out dated connection ,size=0 + +2025-09-24 11:54:05,569 INFO Connection check task end + +2025-09-24 11:54:06,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:08,569 INFO Connection check task start + +2025-09-24 11:54:08,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:08,570 INFO Out dated connection ,size=0 + +2025-09-24 11:54:08,570 INFO Connection check task end + +2025-09-24 11:54:09,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:11,572 INFO Connection check task start + +2025-09-24 11:54:11,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:11,572 INFO Out dated connection ,size=0 + +2025-09-24 11:54:11,572 INFO Connection check task end + +2025-09-24 11:54:12,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:14,574 INFO Connection check task start + +2025-09-24 11:54:14,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:14,575 INFO Out dated connection ,size=0 + +2025-09-24 11:54:14,575 INFO Connection check task end + +2025-09-24 11:54:15,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:17,576 INFO Connection check task start + +2025-09-24 11:54:17,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:17,576 INFO Out dated connection ,size=0 + +2025-09-24 11:54:17,576 INFO Connection check task end + +2025-09-24 11:54:18,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:20,577 INFO Connection check task start + +2025-09-24 11:54:20,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:20,578 INFO Out dated connection ,size=0 + +2025-09-24 11:54:20,578 INFO Connection check task end + +2025-09-24 11:54:21,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:23,578 INFO Connection check task start + +2025-09-24 11:54:23,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:23,578 INFO Out dated connection ,size=0 + +2025-09-24 11:54:23,578 INFO Connection check task end + +2025-09-24 11:54:24,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:26,580 INFO Connection check task start + +2025-09-24 11:54:26,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:26,580 INFO Out dated connection ,size=0 + +2025-09-24 11:54:26,580 INFO Connection check task end + +2025-09-24 11:54:27,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:29,582 INFO Connection check task start + +2025-09-24 11:54:29,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:29,582 INFO Out dated connection ,size=0 + +2025-09-24 11:54:29,582 INFO Connection check task end + +2025-09-24 11:54:30,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:32,584 INFO Connection check task start + +2025-09-24 11:54:32,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:32,584 INFO Out dated connection ,size=0 + +2025-09-24 11:54:32,585 INFO Connection check task end + +2025-09-24 11:54:33,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:35,585 INFO Connection check task start + +2025-09-24 11:54:35,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:35,585 INFO Out dated connection ,size=0 + +2025-09-24 11:54:35,585 INFO Connection check task end + +2025-09-24 11:54:36,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:38,585 INFO Connection check task start + +2025-09-24 11:54:38,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:38,586 INFO Out dated connection ,size=0 + +2025-09-24 11:54:38,586 INFO Connection check task end + +2025-09-24 11:54:39,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:41,586 INFO Connection check task start + +2025-09-24 11:54:41,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:41,586 INFO Out dated connection ,size=0 + +2025-09-24 11:54:41,586 INFO Connection check task end + +2025-09-24 11:54:42,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:44,587 INFO Connection check task start + +2025-09-24 11:54:44,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:44,587 INFO Out dated connection ,size=0 + +2025-09-24 11:54:44,587 INFO Connection check task end + +2025-09-24 11:54:45,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:47,589 INFO Connection check task start + +2025-09-24 11:54:47,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:47,589 INFO Out dated connection ,size=0 + +2025-09-24 11:54:47,589 INFO Connection check task end + +2025-09-24 11:54:48,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:50,590 INFO Connection check task start + +2025-09-24 11:54:50,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:50,590 INFO Out dated connection ,size=0 + +2025-09-24 11:54:50,590 INFO Connection check task end + +2025-09-24 11:54:51,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:53,590 INFO Connection check task start + +2025-09-24 11:54:53,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:53,590 INFO Out dated connection ,size=0 + +2025-09-24 11:54:53,590 INFO Connection check task end + +2025-09-24 11:54:54,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:56,590 INFO Connection check task start + +2025-09-24 11:54:56,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:56,591 INFO Out dated connection ,size=0 + +2025-09-24 11:54:56,591 INFO Connection check task end + +2025-09-24 11:54:57,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:54:59,592 INFO Connection check task start + +2025-09-24 11:54:59,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:54:59,592 INFO Out dated connection ,size=0 + +2025-09-24 11:54:59,592 INFO Connection check task end + +2025-09-24 11:55:00,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:02,593 INFO Connection check task start + +2025-09-24 11:55:02,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:02,593 INFO Out dated connection ,size=0 + +2025-09-24 11:55:02,593 INFO Connection check task end + +2025-09-24 11:55:03,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:05,593 INFO Connection check task start + +2025-09-24 11:55:05,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:05,593 INFO Out dated connection ,size=0 + +2025-09-24 11:55:05,593 INFO Connection check task end + +2025-09-24 11:55:06,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:08,594 INFO Connection check task start + +2025-09-24 11:55:08,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:08,594 INFO Out dated connection ,size=0 + +2025-09-24 11:55:08,594 INFO Connection check task end + +2025-09-24 11:55:09,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:11,594 INFO Connection check task start + +2025-09-24 11:55:11,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:11,609 INFO Out dated connection ,size=0 + +2025-09-24 11:55:11,609 INFO Connection check task end + +2025-09-24 11:55:12,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:14,609 INFO Connection check task start + +2025-09-24 11:55:14,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:14,609 INFO Out dated connection ,size=0 + +2025-09-24 11:55:14,609 INFO Connection check task end + +2025-09-24 11:55:15,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:17,610 INFO Connection check task start + +2025-09-24 11:55:17,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:17,610 INFO Out dated connection ,size=0 + +2025-09-24 11:55:17,610 INFO Connection check task end + +2025-09-24 11:55:18,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:20,610 INFO Connection check task start + +2025-09-24 11:55:20,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:20,610 INFO Out dated connection ,size=0 + +2025-09-24 11:55:20,610 INFO Connection check task end + +2025-09-24 11:55:21,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:23,611 INFO Connection check task start + +2025-09-24 11:55:23,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:23,611 INFO Out dated connection ,size=0 + +2025-09-24 11:55:23,611 INFO Connection check task end + +2025-09-24 11:55:24,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:26,612 INFO Connection check task start + +2025-09-24 11:55:26,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:26,612 INFO Out dated connection ,size=0 + +2025-09-24 11:55:26,612 INFO Connection check task end + +2025-09-24 11:55:27,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:29,614 INFO Connection check task start + +2025-09-24 11:55:29,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:29,614 INFO Out dated connection ,size=0 + +2025-09-24 11:55:29,614 INFO Connection check task end + +2025-09-24 11:55:30,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:32,616 INFO Connection check task start + +2025-09-24 11:55:32,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:32,616 INFO Out dated connection ,size=0 + +2025-09-24 11:55:32,617 INFO Connection check task end + +2025-09-24 11:55:33,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:35,618 INFO Connection check task start + +2025-09-24 11:55:35,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:35,619 INFO Out dated connection ,size=0 + +2025-09-24 11:55:35,619 INFO Connection check task end + +2025-09-24 11:55:36,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:38,620 INFO Connection check task start + +2025-09-24 11:55:38,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:38,621 INFO Out dated connection ,size=0 + +2025-09-24 11:55:38,621 INFO Connection check task end + +2025-09-24 11:55:39,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:41,621 INFO Connection check task start + +2025-09-24 11:55:41,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:41,636 INFO Out dated connection ,size=0 + +2025-09-24 11:55:41,636 INFO Connection check task end + +2025-09-24 11:55:42,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:44,638 INFO Connection check task start + +2025-09-24 11:55:44,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:44,638 INFO Out dated connection ,size=0 + +2025-09-24 11:55:44,638 INFO Connection check task end + +2025-09-24 11:55:45,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:47,639 INFO Connection check task start + +2025-09-24 11:55:47,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:47,640 INFO Out dated connection ,size=0 + +2025-09-24 11:55:47,640 INFO Connection check task end + +2025-09-24 11:55:48,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:50,640 INFO Connection check task start + +2025-09-24 11:55:50,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:50,640 INFO Out dated connection ,size=0 + +2025-09-24 11:55:50,640 INFO Connection check task end + +2025-09-24 11:55:51,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:53,640 INFO Connection check task start + +2025-09-24 11:55:53,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:53,641 INFO Out dated connection ,size=0 + +2025-09-24 11:55:53,641 INFO Connection check task end + +2025-09-24 11:55:54,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:56,642 INFO Connection check task start + +2025-09-24 11:55:56,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:56,642 INFO Out dated connection ,size=0 + +2025-09-24 11:55:56,643 INFO Connection check task end + +2025-09-24 11:55:57,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:55:59,644 INFO Connection check task start + +2025-09-24 11:55:59,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:55:59,644 INFO Out dated connection ,size=0 + +2025-09-24 11:55:59,644 INFO Connection check task end + +2025-09-24 11:56:00,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:02,645 INFO Connection check task start + +2025-09-24 11:56:02,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:02,645 INFO Out dated connection ,size=0 + +2025-09-24 11:56:02,645 INFO Connection check task end + +2025-09-24 11:56:03,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:05,645 INFO Connection check task start + +2025-09-24 11:56:05,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:05,646 INFO Out dated connection ,size=0 + +2025-09-24 11:56:05,646 INFO Connection check task end + +2025-09-24 11:56:06,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:08,647 INFO Connection check task start + +2025-09-24 11:56:08,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:08,648 INFO Out dated connection ,size=0 + +2025-09-24 11:56:08,648 INFO Connection check task end + +2025-09-24 11:56:09,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:11,648 INFO Connection check task start + +2025-09-24 11:56:11,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:11,648 INFO Out dated connection ,size=0 + +2025-09-24 11:56:11,649 INFO Connection check task end + +2025-09-24 11:56:12,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:14,650 INFO Connection check task start + +2025-09-24 11:56:14,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:14,650 INFO Out dated connection ,size=0 + +2025-09-24 11:56:14,650 INFO Connection check task end + +2025-09-24 11:56:15,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:17,652 INFO Connection check task start + +2025-09-24 11:56:17,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:17,652 INFO Out dated connection ,size=0 + +2025-09-24 11:56:17,652 INFO Connection check task end + +2025-09-24 11:56:18,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:20,653 INFO Connection check task start + +2025-09-24 11:56:20,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:20,653 INFO Out dated connection ,size=0 + +2025-09-24 11:56:20,653 INFO Connection check task end + +2025-09-24 11:56:21,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:23,653 INFO Connection check task start + +2025-09-24 11:56:23,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:23,654 INFO Out dated connection ,size=0 + +2025-09-24 11:56:23,654 INFO Connection check task end + +2025-09-24 11:56:24,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:26,654 INFO Connection check task start + +2025-09-24 11:56:26,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:26,654 INFO Out dated connection ,size=0 + +2025-09-24 11:56:26,654 INFO Connection check task end + +2025-09-24 11:56:27,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:29,656 INFO Connection check task start + +2025-09-24 11:56:29,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:29,656 INFO Out dated connection ,size=0 + +2025-09-24 11:56:29,656 INFO Connection check task end + +2025-09-24 11:56:30,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:32,657 INFO Connection check task start + +2025-09-24 11:56:32,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:32,657 INFO Out dated connection ,size=0 + +2025-09-24 11:56:32,657 INFO Connection check task end + +2025-09-24 11:56:33,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:35,658 INFO Connection check task start + +2025-09-24 11:56:35,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:35,658 INFO Out dated connection ,size=0 + +2025-09-24 11:56:35,658 INFO Connection check task end + +2025-09-24 11:56:36,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:38,658 INFO Connection check task start + +2025-09-24 11:56:38,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:38,659 INFO Out dated connection ,size=0 + +2025-09-24 11:56:38,659 INFO Connection check task end + +2025-09-24 11:56:39,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:41,661 INFO Connection check task start + +2025-09-24 11:56:41,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:41,661 INFO Out dated connection ,size=0 + +2025-09-24 11:56:41,661 INFO Connection check task end + +2025-09-24 11:56:42,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:44,661 INFO Connection check task start + +2025-09-24 11:56:44,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:44,661 INFO Out dated connection ,size=0 + +2025-09-24 11:56:44,662 INFO Connection check task end + +2025-09-24 11:56:45,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:47,663 INFO Connection check task start + +2025-09-24 11:56:47,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:47,663 INFO Out dated connection ,size=0 + +2025-09-24 11:56:47,663 INFO Connection check task end + +2025-09-24 11:56:48,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:50,664 INFO Connection check task start + +2025-09-24 11:56:50,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:50,664 INFO Out dated connection ,size=0 + +2025-09-24 11:56:50,664 INFO Connection check task end + +2025-09-24 11:56:51,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:53,664 INFO Connection check task start + +2025-09-24 11:56:53,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:53,665 INFO Out dated connection ,size=0 + +2025-09-24 11:56:53,665 INFO Connection check task end + +2025-09-24 11:56:54,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:56,665 INFO Connection check task start + +2025-09-24 11:56:56,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:56,665 INFO Out dated connection ,size=0 + +2025-09-24 11:56:56,665 INFO Connection check task end + +2025-09-24 11:56:57,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:56:59,665 INFO Connection check task start + +2025-09-24 11:56:59,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:56:59,666 INFO Out dated connection ,size=0 + +2025-09-24 11:56:59,666 INFO Connection check task end + +2025-09-24 11:57:00,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:02,666 INFO Connection check task start + +2025-09-24 11:57:02,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:02,666 INFO Out dated connection ,size=0 + +2025-09-24 11:57:02,666 INFO Connection check task end + +2025-09-24 11:57:03,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:05,666 INFO Connection check task start + +2025-09-24 11:57:05,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:05,667 INFO Out dated connection ,size=0 + +2025-09-24 11:57:05,667 INFO Connection check task end + +2025-09-24 11:57:06,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:08,667 INFO Connection check task start + +2025-09-24 11:57:08,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:08,667 INFO Out dated connection ,size=0 + +2025-09-24 11:57:08,667 INFO Connection check task end + +2025-09-24 11:57:09,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:11,667 INFO Connection check task start + +2025-09-24 11:57:11,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:11,667 INFO Out dated connection ,size=0 + +2025-09-24 11:57:11,667 INFO Connection check task end + +2025-09-24 11:57:12,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:14,668 INFO Connection check task start + +2025-09-24 11:57:14,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:14,674 INFO Out dated connection ,size=0 + +2025-09-24 11:57:14,674 INFO Connection check task end + +2025-09-24 11:57:15,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:17,674 INFO Connection check task start + +2025-09-24 11:57:17,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:17,674 INFO Out dated connection ,size=0 + +2025-09-24 11:57:17,674 INFO Connection check task end + +2025-09-24 11:57:18,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:20,675 INFO Connection check task start + +2025-09-24 11:57:20,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:20,675 INFO Out dated connection ,size=0 + +2025-09-24 11:57:20,675 INFO Connection check task end + +2025-09-24 11:57:21,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:23,675 INFO Connection check task start + +2025-09-24 11:57:23,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:23,675 INFO Out dated connection ,size=0 + +2025-09-24 11:57:23,675 INFO Connection check task end + +2025-09-24 11:57:24,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:26,676 INFO Connection check task start + +2025-09-24 11:57:26,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:26,676 INFO Out dated connection ,size=0 + +2025-09-24 11:57:26,676 INFO Connection check task end + +2025-09-24 11:57:27,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:29,676 INFO Connection check task start + +2025-09-24 11:57:29,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:29,676 INFO Out dated connection ,size=0 + +2025-09-24 11:57:29,676 INFO Connection check task end + +2025-09-24 11:57:30,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:32,677 INFO Connection check task start + +2025-09-24 11:57:32,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:32,677 INFO Out dated connection ,size=0 + +2025-09-24 11:57:32,677 INFO Connection check task end + +2025-09-24 11:57:33,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:35,677 INFO Connection check task start + +2025-09-24 11:57:35,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:35,678 INFO Out dated connection ,size=0 + +2025-09-24 11:57:35,678 INFO Connection check task end + +2025-09-24 11:57:36,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:38,678 INFO Connection check task start + +2025-09-24 11:57:38,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:38,678 INFO Out dated connection ,size=0 + +2025-09-24 11:57:38,678 INFO Connection check task end + +2025-09-24 11:57:39,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:41,679 INFO Connection check task start + +2025-09-24 11:57:41,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:41,679 INFO Out dated connection ,size=0 + +2025-09-24 11:57:41,679 INFO Connection check task end + +2025-09-24 11:57:42,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:44,680 INFO Connection check task start + +2025-09-24 11:57:44,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:44,680 INFO Out dated connection ,size=0 + +2025-09-24 11:57:44,680 INFO Connection check task end + +2025-09-24 11:57:45,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:47,680 INFO Connection check task start + +2025-09-24 11:57:47,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:47,680 INFO Out dated connection ,size=0 + +2025-09-24 11:57:47,680 INFO Connection check task end + +2025-09-24 11:57:48,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:50,681 INFO Connection check task start + +2025-09-24 11:57:50,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:50,681 INFO Out dated connection ,size=0 + +2025-09-24 11:57:50,681 INFO Connection check task end + +2025-09-24 11:57:51,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:53,682 INFO Connection check task start + +2025-09-24 11:57:53,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:53,682 INFO Out dated connection ,size=0 + +2025-09-24 11:57:53,682 INFO Connection check task end + +2025-09-24 11:57:54,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:56,682 INFO Connection check task start + +2025-09-24 11:57:56,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:56,682 INFO Out dated connection ,size=0 + +2025-09-24 11:57:56,682 INFO Connection check task end + +2025-09-24 11:57:57,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:57:59,683 INFO Connection check task start + +2025-09-24 11:57:59,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:57:59,683 INFO Out dated connection ,size=0 + +2025-09-24 11:57:59,683 INFO Connection check task end + +2025-09-24 11:58:00,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:02,683 INFO Connection check task start + +2025-09-24 11:58:02,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:02,684 INFO Out dated connection ,size=0 + +2025-09-24 11:58:02,684 INFO Connection check task end + +2025-09-24 11:58:03,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:05,684 INFO Connection check task start + +2025-09-24 11:58:05,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:05,684 INFO Out dated connection ,size=0 + +2025-09-24 11:58:05,684 INFO Connection check task end + +2025-09-24 11:58:06,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:08,684 INFO Connection check task start + +2025-09-24 11:58:08,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:08,685 INFO Out dated connection ,size=0 + +2025-09-24 11:58:08,685 INFO Connection check task end + +2025-09-24 11:58:09,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:11,685 INFO Connection check task start + +2025-09-24 11:58:11,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:11,685 INFO Out dated connection ,size=0 + +2025-09-24 11:58:11,685 INFO Connection check task end + +2025-09-24 11:58:12,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:14,685 INFO Connection check task start + +2025-09-24 11:58:14,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:14,685 INFO Out dated connection ,size=0 + +2025-09-24 11:58:14,686 INFO Connection check task end + +2025-09-24 11:58:15,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:17,686 INFO Connection check task start + +2025-09-24 11:58:17,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:17,686 INFO Out dated connection ,size=0 + +2025-09-24 11:58:17,686 INFO Connection check task end + +2025-09-24 11:58:18,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:20,686 INFO Connection check task start + +2025-09-24 11:58:20,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:20,687 INFO Out dated connection ,size=0 + +2025-09-24 11:58:20,687 INFO Connection check task end + +2025-09-24 11:58:21,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:23,687 INFO Connection check task start + +2025-09-24 11:58:23,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:23,687 INFO Out dated connection ,size=0 + +2025-09-24 11:58:23,687 INFO Connection check task end + +2025-09-24 11:58:24,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:26,687 INFO Connection check task start + +2025-09-24 11:58:26,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:26,687 INFO Out dated connection ,size=0 + +2025-09-24 11:58:26,687 INFO Connection check task end + +2025-09-24 11:58:27,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:29,688 INFO Connection check task start + +2025-09-24 11:58:29,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:29,688 INFO Out dated connection ,size=0 + +2025-09-24 11:58:29,688 INFO Connection check task end + +2025-09-24 11:58:30,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:32,688 INFO Connection check task start + +2025-09-24 11:58:32,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:32,688 INFO Out dated connection ,size=0 + +2025-09-24 11:58:32,688 INFO Connection check task end + +2025-09-24 11:58:33,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:35,688 INFO Connection check task start + +2025-09-24 11:58:35,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:35,689 INFO Out dated connection ,size=0 + +2025-09-24 11:58:35,689 INFO Connection check task end + +2025-09-24 11:58:36,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:38,689 INFO Connection check task start + +2025-09-24 11:58:38,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:38,689 INFO Out dated connection ,size=0 + +2025-09-24 11:58:38,689 INFO Connection check task end + +2025-09-24 11:58:39,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:41,690 INFO Connection check task start + +2025-09-24 11:58:41,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:41,690 INFO Out dated connection ,size=0 + +2025-09-24 11:58:41,690 INFO Connection check task end + +2025-09-24 11:58:42,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:44,690 INFO Connection check task start + +2025-09-24 11:58:44,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:44,690 INFO Out dated connection ,size=0 + +2025-09-24 11:58:44,690 INFO Connection check task end + +2025-09-24 11:58:45,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:47,690 INFO Connection check task start + +2025-09-24 11:58:47,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:47,690 INFO Out dated connection ,size=0 + +2025-09-24 11:58:47,691 INFO Connection check task end + +2025-09-24 11:58:48,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:50,691 INFO Connection check task start + +2025-09-24 11:58:50,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:50,691 INFO Out dated connection ,size=0 + +2025-09-24 11:58:50,691 INFO Connection check task end + +2025-09-24 11:58:51,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:53,691 INFO Connection check task start + +2025-09-24 11:58:53,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:53,692 INFO Out dated connection ,size=0 + +2025-09-24 11:58:53,692 INFO Connection check task end + +2025-09-24 11:58:54,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:56,692 INFO Connection check task start + +2025-09-24 11:58:56,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:56,693 INFO Out dated connection ,size=0 + +2025-09-24 11:58:56,693 INFO Connection check task end + +2025-09-24 11:58:57,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:58:59,693 INFO Connection check task start + +2025-09-24 11:58:59,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:58:59,693 INFO Out dated connection ,size=0 + +2025-09-24 11:58:59,693 INFO Connection check task end + +2025-09-24 11:59:00,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:02,694 INFO Connection check task start + +2025-09-24 11:59:02,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:02,694 INFO Out dated connection ,size=0 + +2025-09-24 11:59:02,694 INFO Connection check task end + +2025-09-24 11:59:03,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:05,695 INFO Connection check task start + +2025-09-24 11:59:05,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:05,696 INFO Out dated connection ,size=0 + +2025-09-24 11:59:05,696 INFO Connection check task end + +2025-09-24 11:59:06,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:08,696 INFO Connection check task start + +2025-09-24 11:59:08,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:08,696 INFO Out dated connection ,size=0 + +2025-09-24 11:59:08,696 INFO Connection check task end + +2025-09-24 11:59:09,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:11,696 INFO Connection check task start + +2025-09-24 11:59:11,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:11,696 INFO Out dated connection ,size=0 + +2025-09-24 11:59:11,696 INFO Connection check task end + +2025-09-24 11:59:12,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:14,697 INFO Connection check task start + +2025-09-24 11:59:14,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:14,697 INFO Out dated connection ,size=0 + +2025-09-24 11:59:14,697 INFO Connection check task end + +2025-09-24 11:59:15,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:17,697 INFO Connection check task start + +2025-09-24 11:59:17,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:17,697 INFO Out dated connection ,size=0 + +2025-09-24 11:59:17,697 INFO Connection check task end + +2025-09-24 11:59:18,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:20,698 INFO Connection check task start + +2025-09-24 11:59:20,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:20,698 INFO Out dated connection ,size=0 + +2025-09-24 11:59:20,698 INFO Connection check task end + +2025-09-24 11:59:21,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:23,698 INFO Connection check task start + +2025-09-24 11:59:23,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:23,699 INFO Out dated connection ,size=0 + +2025-09-24 11:59:23,699 INFO Connection check task end + +2025-09-24 11:59:24,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:26,699 INFO Connection check task start + +2025-09-24 11:59:26,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:26,699 INFO Out dated connection ,size=0 + +2025-09-24 11:59:26,699 INFO Connection check task end + +2025-09-24 11:59:27,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:29,699 INFO Connection check task start + +2025-09-24 11:59:29,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:29,700 INFO Out dated connection ,size=0 + +2025-09-24 11:59:29,700 INFO Connection check task end + +2025-09-24 11:59:30,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:32,700 INFO Connection check task start + +2025-09-24 11:59:32,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:32,700 INFO Out dated connection ,size=0 + +2025-09-24 11:59:32,700 INFO Connection check task end + +2025-09-24 11:59:33,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:35,701 INFO Connection check task start + +2025-09-24 11:59:35,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:35,701 INFO Out dated connection ,size=0 + +2025-09-24 11:59:35,701 INFO Connection check task end + +2025-09-24 11:59:36,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:38,701 INFO Connection check task start + +2025-09-24 11:59:38,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:38,701 INFO Out dated connection ,size=0 + +2025-09-24 11:59:38,701 INFO Connection check task end + +2025-09-24 11:59:39,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:41,702 INFO Connection check task start + +2025-09-24 11:59:41,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:41,702 INFO Out dated connection ,size=0 + +2025-09-24 11:59:41,702 INFO Connection check task end + +2025-09-24 11:59:42,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:44,702 INFO Connection check task start + +2025-09-24 11:59:44,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:44,702 INFO Out dated connection ,size=0 + +2025-09-24 11:59:44,702 INFO Connection check task end + +2025-09-24 11:59:45,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:47,703 INFO Connection check task start + +2025-09-24 11:59:47,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:47,703 INFO Out dated connection ,size=0 + +2025-09-24 11:59:47,703 INFO Connection check task end + +2025-09-24 11:59:48,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:50,703 INFO Connection check task start + +2025-09-24 11:59:50,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:50,703 INFO Out dated connection ,size=0 + +2025-09-24 11:59:50,704 INFO Connection check task end + +2025-09-24 11:59:51,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:53,704 INFO Connection check task start + +2025-09-24 11:59:53,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:53,704 INFO Out dated connection ,size=0 + +2025-09-24 11:59:53,704 INFO Connection check task end + +2025-09-24 11:59:54,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:56,704 INFO Connection check task start + +2025-09-24 11:59:56,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:56,705 INFO Out dated connection ,size=0 + +2025-09-24 11:59:56,705 INFO Connection check task end + +2025-09-24 11:59:57,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 11:59:59,705 INFO Connection check task start + +2025-09-24 11:59:59,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 11:59:59,705 INFO Out dated connection ,size=0 + +2025-09-24 11:59:59,705 INFO Connection check task end + +2025-09-24 12:00:00,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:02,705 INFO Connection check task start + +2025-09-24 12:00:02,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:02,705 INFO Out dated connection ,size=0 + +2025-09-24 12:00:02,705 INFO Connection check task end + +2025-09-24 12:00:03,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:05,706 INFO Connection check task start + +2025-09-24 12:00:05,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:05,706 INFO Out dated connection ,size=0 + +2025-09-24 12:00:05,706 INFO Connection check task end + +2025-09-24 12:00:06,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:08,708 INFO Connection check task start + +2025-09-24 12:00:08,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:08,708 INFO Out dated connection ,size=0 + +2025-09-24 12:00:08,708 INFO Connection check task end + +2025-09-24 12:00:09,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:11,709 INFO Connection check task start + +2025-09-24 12:00:11,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:11,709 INFO Out dated connection ,size=0 + +2025-09-24 12:00:11,709 INFO Connection check task end + +2025-09-24 12:00:12,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:14,711 INFO Connection check task start + +2025-09-24 12:00:14,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:14,711 INFO Out dated connection ,size=0 + +2025-09-24 12:00:14,711 INFO Connection check task end + +2025-09-24 12:00:15,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:17,712 INFO Connection check task start + +2025-09-24 12:00:17,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:17,712 INFO Out dated connection ,size=0 + +2025-09-24 12:00:17,712 INFO Connection check task end + +2025-09-24 12:00:18,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:20,713 INFO Connection check task start + +2025-09-24 12:00:20,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:20,713 INFO Out dated connection ,size=0 + +2025-09-24 12:00:20,713 INFO Connection check task end + +2025-09-24 12:00:21,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:23,713 INFO Connection check task start + +2025-09-24 12:00:23,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:23,713 INFO Out dated connection ,size=0 + +2025-09-24 12:00:23,714 INFO Connection check task end + +2025-09-24 12:00:24,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:26,714 INFO Connection check task start + +2025-09-24 12:00:26,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:26,715 INFO Out dated connection ,size=0 + +2025-09-24 12:00:26,715 INFO Connection check task end + +2025-09-24 12:00:27,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:29,716 INFO Connection check task start + +2025-09-24 12:00:29,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:29,716 INFO Out dated connection ,size=0 + +2025-09-24 12:00:29,716 INFO Connection check task end + +2025-09-24 12:00:30,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:32,718 INFO Connection check task start + +2025-09-24 12:00:32,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:32,718 INFO Out dated connection ,size=0 + +2025-09-24 12:00:32,718 INFO Connection check task end + +2025-09-24 12:00:33,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:35,719 INFO Connection check task start + +2025-09-24 12:00:35,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:35,719 INFO Out dated connection ,size=0 + +2025-09-24 12:00:35,719 INFO Connection check task end + +2025-09-24 12:00:36,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:38,719 INFO Connection check task start + +2025-09-24 12:00:38,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:38,719 INFO Out dated connection ,size=0 + +2025-09-24 12:00:38,719 INFO Connection check task end + +2025-09-24 12:00:39,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:41,720 INFO Connection check task start + +2025-09-24 12:00:41,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:41,720 INFO Out dated connection ,size=0 + +2025-09-24 12:00:41,720 INFO Connection check task end + +2025-09-24 12:00:42,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:44,721 INFO Connection check task start + +2025-09-24 12:00:44,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:44,721 INFO Out dated connection ,size=0 + +2025-09-24 12:00:44,721 INFO Connection check task end + +2025-09-24 12:00:45,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:47,722 INFO Connection check task start + +2025-09-24 12:00:47,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:47,722 INFO Out dated connection ,size=0 + +2025-09-24 12:00:47,722 INFO Connection check task end + +2025-09-24 12:00:48,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:50,724 INFO Connection check task start + +2025-09-24 12:00:50,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:50,724 INFO Out dated connection ,size=0 + +2025-09-24 12:00:50,724 INFO Connection check task end + +2025-09-24 12:00:51,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:53,725 INFO Connection check task start + +2025-09-24 12:00:53,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:53,725 INFO Out dated connection ,size=0 + +2025-09-24 12:00:53,725 INFO Connection check task end + +2025-09-24 12:00:54,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:56,727 INFO Connection check task start + +2025-09-24 12:00:56,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:56,728 INFO Out dated connection ,size=0 + +2025-09-24 12:00:56,728 INFO Connection check task end + +2025-09-24 12:00:57,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:00:59,729 INFO Connection check task start + +2025-09-24 12:00:59,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:00:59,730 INFO Out dated connection ,size=0 + +2025-09-24 12:00:59,730 INFO Connection check task end + +2025-09-24 12:01:00,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:02,731 INFO Connection check task start + +2025-09-24 12:01:02,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:02,731 INFO Out dated connection ,size=0 + +2025-09-24 12:01:02,731 INFO Connection check task end + +2025-09-24 12:01:03,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:05,731 INFO Connection check task start + +2025-09-24 12:01:05,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:05,731 INFO Out dated connection ,size=0 + +2025-09-24 12:01:05,732 INFO Connection check task end + +2025-09-24 12:01:06,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:08,732 INFO Connection check task start + +2025-09-24 12:01:08,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:08,732 INFO Out dated connection ,size=0 + +2025-09-24 12:01:08,732 INFO Connection check task end + +2025-09-24 12:01:09,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:11,734 INFO Connection check task start + +2025-09-24 12:01:11,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:11,734 INFO Out dated connection ,size=0 + +2025-09-24 12:01:11,734 INFO Connection check task end + +2025-09-24 12:01:12,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:14,735 INFO Connection check task start + +2025-09-24 12:01:14,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:14,735 INFO Out dated connection ,size=0 + +2025-09-24 12:01:14,735 INFO Connection check task end + +2025-09-24 12:01:15,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:17,737 INFO Connection check task start + +2025-09-24 12:01:17,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:17,737 INFO Out dated connection ,size=0 + +2025-09-24 12:01:17,737 INFO Connection check task end + +2025-09-24 12:01:18,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:20,738 INFO Connection check task start + +2025-09-24 12:01:20,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:20,739 INFO Out dated connection ,size=0 + +2025-09-24 12:01:20,739 INFO Connection check task end + +2025-09-24 12:01:21,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:23,739 INFO Connection check task start + +2025-09-24 12:01:23,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:23,740 INFO Out dated connection ,size=0 + +2025-09-24 12:01:23,740 INFO Connection check task end + +2025-09-24 12:01:24,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:26,742 INFO Connection check task start + +2025-09-24 12:01:26,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:26,742 INFO Out dated connection ,size=0 + +2025-09-24 12:01:26,742 INFO Connection check task end + +2025-09-24 12:01:27,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:29,743 INFO Connection check task start + +2025-09-24 12:01:29,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:29,743 INFO Out dated connection ,size=0 + +2025-09-24 12:01:29,743 INFO Connection check task end + +2025-09-24 12:01:30,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:32,745 INFO Connection check task start + +2025-09-24 12:01:32,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:32,745 INFO Out dated connection ,size=0 + +2025-09-24 12:01:32,745 INFO Connection check task end + +2025-09-24 12:01:33,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:35,746 INFO Connection check task start + +2025-09-24 12:01:35,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:35,746 INFO Out dated connection ,size=0 + +2025-09-24 12:01:35,746 INFO Connection check task end + +2025-09-24 12:01:36,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:38,747 INFO Connection check task start + +2025-09-24 12:01:38,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:38,747 INFO Out dated connection ,size=0 + +2025-09-24 12:01:38,747 INFO Connection check task end + +2025-09-24 12:01:39,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:41,748 INFO Connection check task start + +2025-09-24 12:01:41,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:41,748 INFO Out dated connection ,size=0 + +2025-09-24 12:01:41,748 INFO Connection check task end + +2025-09-24 12:01:42,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:44,749 INFO Connection check task start + +2025-09-24 12:01:44,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:44,749 INFO Out dated connection ,size=0 + +2025-09-24 12:01:44,750 INFO Connection check task end + +2025-09-24 12:01:45,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:47,750 INFO Connection check task start + +2025-09-24 12:01:47,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:47,750 INFO Out dated connection ,size=0 + +2025-09-24 12:01:47,750 INFO Connection check task end + +2025-09-24 12:01:48,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:50,751 INFO Connection check task start + +2025-09-24 12:01:50,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:50,751 INFO Out dated connection ,size=0 + +2025-09-24 12:01:50,751 INFO Connection check task end + +2025-09-24 12:01:51,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:53,751 INFO Connection check task start + +2025-09-24 12:01:53,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:53,752 INFO Out dated connection ,size=0 + +2025-09-24 12:01:53,752 INFO Connection check task end + +2025-09-24 12:01:54,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:56,752 INFO Connection check task start + +2025-09-24 12:01:56,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:56,752 INFO Out dated connection ,size=0 + +2025-09-24 12:01:56,752 INFO Connection check task end + +2025-09-24 12:01:57,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:01:59,753 INFO Connection check task start + +2025-09-24 12:01:59,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:01:59,753 INFO Out dated connection ,size=0 + +2025-09-24 12:01:59,753 INFO Connection check task end + +2025-09-24 12:02:00,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:02,754 INFO Connection check task start + +2025-09-24 12:02:02,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:02,754 INFO Out dated connection ,size=0 + +2025-09-24 12:02:02,754 INFO Connection check task end + +2025-09-24 12:02:03,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:05,756 INFO Connection check task start + +2025-09-24 12:02:05,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:05,756 INFO Out dated connection ,size=0 + +2025-09-24 12:02:05,756 INFO Connection check task end + +2025-09-24 12:02:06,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:08,756 INFO Connection check task start + +2025-09-24 12:02:08,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:08,757 INFO Out dated connection ,size=0 + +2025-09-24 12:02:08,757 INFO Connection check task end + +2025-09-24 12:02:09,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:11,759 INFO Connection check task start + +2025-09-24 12:02:11,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:11,759 INFO Out dated connection ,size=0 + +2025-09-24 12:02:11,759 INFO Connection check task end + +2025-09-24 12:02:12,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:14,760 INFO Connection check task start + +2025-09-24 12:02:14,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:14,760 INFO Out dated connection ,size=0 + +2025-09-24 12:02:14,760 INFO Connection check task end + +2025-09-24 12:02:15,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:17,761 INFO Connection check task start + +2025-09-24 12:02:17,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:17,761 INFO Out dated connection ,size=0 + +2025-09-24 12:02:17,761 INFO Connection check task end + +2025-09-24 12:02:18,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:20,762 INFO Connection check task start + +2025-09-24 12:02:20,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:20,762 INFO Out dated connection ,size=0 + +2025-09-24 12:02:20,762 INFO Connection check task end + +2025-09-24 12:02:21,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:23,762 INFO Connection check task start + +2025-09-24 12:02:23,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:23,763 INFO Out dated connection ,size=0 + +2025-09-24 12:02:23,763 INFO Connection check task end + +2025-09-24 12:02:24,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:26,763 INFO Connection check task start + +2025-09-24 12:02:26,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:26,763 INFO Out dated connection ,size=0 + +2025-09-24 12:02:26,763 INFO Connection check task end + +2025-09-24 12:02:27,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:29,764 INFO Connection check task start + +2025-09-24 12:02:29,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:29,764 INFO Out dated connection ,size=0 + +2025-09-24 12:02:29,764 INFO Connection check task end + +2025-09-24 12:02:30,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:32,765 INFO Connection check task start + +2025-09-24 12:02:32,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:32,765 INFO Out dated connection ,size=0 + +2025-09-24 12:02:32,766 INFO Connection check task end + +2025-09-24 12:02:33,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:35,767 INFO Connection check task start + +2025-09-24 12:02:35,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:35,767 INFO Out dated connection ,size=0 + +2025-09-24 12:02:35,767 INFO Connection check task end + +2025-09-24 12:02:36,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:38,767 INFO Connection check task start + +2025-09-24 12:02:38,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:38,767 INFO Out dated connection ,size=0 + +2025-09-24 12:02:38,768 INFO Connection check task end + +2025-09-24 12:02:39,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:41,769 INFO Connection check task start + +2025-09-24 12:02:41,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:41,769 INFO Out dated connection ,size=0 + +2025-09-24 12:02:41,769 INFO Connection check task end + +2025-09-24 12:02:42,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:44,770 INFO Connection check task start + +2025-09-24 12:02:44,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:44,770 INFO Out dated connection ,size=0 + +2025-09-24 12:02:44,770 INFO Connection check task end + +2025-09-24 12:02:45,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:47,772 INFO Connection check task start + +2025-09-24 12:02:47,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:47,772 INFO Out dated connection ,size=0 + +2025-09-24 12:02:47,772 INFO Connection check task end + +2025-09-24 12:02:48,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:50,774 INFO Connection check task start + +2025-09-24 12:02:50,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:50,774 INFO Out dated connection ,size=0 + +2025-09-24 12:02:50,774 INFO Connection check task end + +2025-09-24 12:02:51,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:53,775 INFO Connection check task start + +2025-09-24 12:02:53,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:53,775 INFO Out dated connection ,size=0 + +2025-09-24 12:02:53,775 INFO Connection check task end + +2025-09-24 12:02:54,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:56,777 INFO Connection check task start + +2025-09-24 12:02:56,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:56,778 INFO Out dated connection ,size=0 + +2025-09-24 12:02:56,778 INFO Connection check task end + +2025-09-24 12:02:57,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:02:59,779 INFO Connection check task start + +2025-09-24 12:02:59,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:02:59,780 INFO Out dated connection ,size=0 + +2025-09-24 12:02:59,780 INFO Connection check task end + +2025-09-24 12:03:00,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:02,781 INFO Connection check task start + +2025-09-24 12:03:02,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:02,782 INFO Out dated connection ,size=0 + +2025-09-24 12:03:02,782 INFO Connection check task end + +2025-09-24 12:03:03,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:05,783 INFO Connection check task start + +2025-09-24 12:03:05,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:05,783 INFO Out dated connection ,size=0 + +2025-09-24 12:03:05,784 INFO Connection check task end + +2025-09-24 12:03:06,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:08,785 INFO Connection check task start + +2025-09-24 12:03:08,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:08,786 INFO Out dated connection ,size=0 + +2025-09-24 12:03:08,786 INFO Connection check task end + +2025-09-24 12:03:09,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:11,786 INFO Connection check task start + +2025-09-24 12:03:11,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:11,786 INFO Out dated connection ,size=0 + +2025-09-24 12:03:11,786 INFO Connection check task end + +2025-09-24 12:03:12,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:14,787 INFO Connection check task start + +2025-09-24 12:03:14,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:14,787 INFO Out dated connection ,size=0 + +2025-09-24 12:03:14,787 INFO Connection check task end + +2025-09-24 12:03:15,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:17,788 INFO Connection check task start + +2025-09-24 12:03:17,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:17,788 INFO Out dated connection ,size=0 + +2025-09-24 12:03:17,788 INFO Connection check task end + +2025-09-24 12:03:18,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:20,790 INFO Connection check task start + +2025-09-24 12:03:20,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:20,790 INFO Out dated connection ,size=0 + +2025-09-24 12:03:20,791 INFO Connection check task end + +2025-09-24 12:03:21,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:23,791 INFO Connection check task start + +2025-09-24 12:03:23,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:23,791 INFO Out dated connection ,size=0 + +2025-09-24 12:03:23,791 INFO Connection check task end + +2025-09-24 12:03:24,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:26,793 INFO Connection check task start + +2025-09-24 12:03:26,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:26,793 INFO Out dated connection ,size=0 + +2025-09-24 12:03:26,793 INFO Connection check task end + +2025-09-24 12:03:27,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:29,794 INFO Connection check task start + +2025-09-24 12:03:29,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:29,794 INFO Out dated connection ,size=0 + +2025-09-24 12:03:29,794 INFO Connection check task end + +2025-09-24 12:03:30,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:32,794 INFO Connection check task start + +2025-09-24 12:03:32,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:32,795 INFO Out dated connection ,size=0 + +2025-09-24 12:03:32,795 INFO Connection check task end + +2025-09-24 12:03:33,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:35,795 INFO Connection check task start + +2025-09-24 12:03:35,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:35,795 INFO Out dated connection ,size=0 + +2025-09-24 12:03:35,795 INFO Connection check task end + +2025-09-24 12:03:36,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:38,797 INFO Connection check task start + +2025-09-24 12:03:38,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:38,797 INFO Out dated connection ,size=0 + +2025-09-24 12:03:38,797 INFO Connection check task end + +2025-09-24 12:03:39,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:41,797 INFO Connection check task start + +2025-09-24 12:03:41,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:41,798 INFO Out dated connection ,size=0 + +2025-09-24 12:03:41,798 INFO Connection check task end + +2025-09-24 12:03:42,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:44,798 INFO Connection check task start + +2025-09-24 12:03:44,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:44,798 INFO Out dated connection ,size=0 + +2025-09-24 12:03:44,798 INFO Connection check task end + +2025-09-24 12:03:45,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:47,799 INFO Connection check task start + +2025-09-24 12:03:47,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:47,800 INFO Out dated connection ,size=0 + +2025-09-24 12:03:47,800 INFO Connection check task end + +2025-09-24 12:03:48,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:50,800 INFO Connection check task start + +2025-09-24 12:03:50,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:50,801 INFO Out dated connection ,size=0 + +2025-09-24 12:03:50,801 INFO Connection check task end + +2025-09-24 12:03:51,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:53,803 INFO Connection check task start + +2025-09-24 12:03:53,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:53,803 INFO Out dated connection ,size=0 + +2025-09-24 12:03:53,803 INFO Connection check task end + +2025-09-24 12:03:54,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:56,805 INFO Connection check task start + +2025-09-24 12:03:56,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:56,805 INFO Out dated connection ,size=0 + +2025-09-24 12:03:56,805 INFO Connection check task end + +2025-09-24 12:03:57,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:03:59,807 INFO Connection check task start + +2025-09-24 12:03:59,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:03:59,807 INFO Out dated connection ,size=0 + +2025-09-24 12:03:59,807 INFO Connection check task end + +2025-09-24 12:04:00,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:02,807 INFO Connection check task start + +2025-09-24 12:04:02,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:02,807 INFO Out dated connection ,size=0 + +2025-09-24 12:04:02,808 INFO Connection check task end + +2025-09-24 12:04:03,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:05,808 INFO Connection check task start + +2025-09-24 12:04:05,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:05,809 INFO Out dated connection ,size=0 + +2025-09-24 12:04:05,809 INFO Connection check task end + +2025-09-24 12:04:06,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:08,809 INFO Connection check task start + +2025-09-24 12:04:08,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:08,809 INFO Out dated connection ,size=0 + +2025-09-24 12:04:08,809 INFO Connection check task end + +2025-09-24 12:04:09,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:11,810 INFO Connection check task start + +2025-09-24 12:04:11,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:11,810 INFO Out dated connection ,size=0 + +2025-09-24 12:04:11,810 INFO Connection check task end + +2025-09-24 12:04:12,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:14,811 INFO Connection check task start + +2025-09-24 12:04:14,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:14,811 INFO Out dated connection ,size=0 + +2025-09-24 12:04:14,811 INFO Connection check task end + +2025-09-24 12:04:15,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:17,814 INFO Connection check task start + +2025-09-24 12:04:17,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:17,814 INFO Out dated connection ,size=0 + +2025-09-24 12:04:17,814 INFO Connection check task end + +2025-09-24 12:04:18,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:20,814 INFO Connection check task start + +2025-09-24 12:04:20,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:20,814 INFO Out dated connection ,size=0 + +2025-09-24 12:04:20,815 INFO Connection check task end + +2025-09-24 12:04:21,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:23,815 INFO Connection check task start + +2025-09-24 12:04:23,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:23,815 INFO Out dated connection ,size=0 + +2025-09-24 12:04:23,815 INFO Connection check task end + +2025-09-24 12:04:24,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:26,817 INFO Connection check task start + +2025-09-24 12:04:26,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:26,817 INFO Out dated connection ,size=0 + +2025-09-24 12:04:26,817 INFO Connection check task end + +2025-09-24 12:04:27,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:29,818 INFO Connection check task start + +2025-09-24 12:04:29,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:29,818 INFO Out dated connection ,size=0 + +2025-09-24 12:04:29,818 INFO Connection check task end + +2025-09-24 12:04:30,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:32,818 INFO Connection check task start + +2025-09-24 12:04:32,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:32,818 INFO Out dated connection ,size=0 + +2025-09-24 12:04:32,818 INFO Connection check task end + +2025-09-24 12:04:33,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:35,819 INFO Connection check task start + +2025-09-24 12:04:35,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:35,819 INFO Out dated connection ,size=0 + +2025-09-24 12:04:35,819 INFO Connection check task end + +2025-09-24 12:04:36,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:38,820 INFO Connection check task start + +2025-09-24 12:04:38,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:38,820 INFO Out dated connection ,size=0 + +2025-09-24 12:04:38,820 INFO Connection check task end + +2025-09-24 12:04:39,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:41,821 INFO Connection check task start + +2025-09-24 12:04:41,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:41,821 INFO Out dated connection ,size=0 + +2025-09-24 12:04:41,821 INFO Connection check task end + +2025-09-24 12:04:42,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:44,822 INFO Connection check task start + +2025-09-24 12:04:44,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:44,822 INFO Out dated connection ,size=0 + +2025-09-24 12:04:44,822 INFO Connection check task end + +2025-09-24 12:04:45,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:47,824 INFO Connection check task start + +2025-09-24 12:04:47,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:47,824 INFO Out dated connection ,size=0 + +2025-09-24 12:04:47,824 INFO Connection check task end + +2025-09-24 12:04:48,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:50,824 INFO Connection check task start + +2025-09-24 12:04:50,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:50,825 INFO Out dated connection ,size=0 + +2025-09-24 12:04:50,825 INFO Connection check task end + +2025-09-24 12:04:51,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:53,827 INFO Connection check task start + +2025-09-24 12:04:53,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:53,827 INFO Out dated connection ,size=0 + +2025-09-24 12:04:53,827 INFO Connection check task end + +2025-09-24 12:04:55,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:56,829 INFO Connection check task start + +2025-09-24 12:04:56,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:56,829 INFO Out dated connection ,size=0 + +2025-09-24 12:04:56,830 INFO Connection check task end + +2025-09-24 12:04:58,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:04:59,830 INFO Connection check task start + +2025-09-24 12:04:59,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:04:59,830 INFO Out dated connection ,size=0 + +2025-09-24 12:04:59,830 INFO Connection check task end + +2025-09-24 12:05:01,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:02,831 INFO Connection check task start + +2025-09-24 12:05:02,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:02,831 INFO Out dated connection ,size=0 + +2025-09-24 12:05:02,831 INFO Connection check task end + +2025-09-24 12:05:04,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:05,831 INFO Connection check task start + +2025-09-24 12:05:05,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:05,831 INFO Out dated connection ,size=0 + +2025-09-24 12:05:05,831 INFO Connection check task end + +2025-09-24 12:05:07,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:08,832 INFO Connection check task start + +2025-09-24 12:05:08,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:08,832 INFO Out dated connection ,size=0 + +2025-09-24 12:05:08,832 INFO Connection check task end + +2025-09-24 12:05:10,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:11,833 INFO Connection check task start + +2025-09-24 12:05:11,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:11,833 INFO Out dated connection ,size=0 + +2025-09-24 12:05:11,833 INFO Connection check task end + +2025-09-24 12:05:13,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:14,834 INFO Connection check task start + +2025-09-24 12:05:14,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:14,834 INFO Out dated connection ,size=0 + +2025-09-24 12:05:14,834 INFO Connection check task end + +2025-09-24 12:05:16,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:17,835 INFO Connection check task start + +2025-09-24 12:05:17,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:17,836 INFO Out dated connection ,size=0 + +2025-09-24 12:05:17,836 INFO Connection check task end + +2025-09-24 12:05:19,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:20,836 INFO Connection check task start + +2025-09-24 12:05:20,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:20,836 INFO Out dated connection ,size=0 + +2025-09-24 12:05:20,836 INFO Connection check task end + +2025-09-24 12:05:22,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:23,837 INFO Connection check task start + +2025-09-24 12:05:23,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:23,837 INFO Out dated connection ,size=0 + +2025-09-24 12:05:23,837 INFO Connection check task end + +2025-09-24 12:05:25,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:26,839 INFO Connection check task start + +2025-09-24 12:05:26,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:26,839 INFO Out dated connection ,size=0 + +2025-09-24 12:05:26,839 INFO Connection check task end + +2025-09-24 12:05:28,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:29,839 INFO Connection check task start + +2025-09-24 12:05:29,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:29,840 INFO Out dated connection ,size=0 + +2025-09-24 12:05:29,840 INFO Connection check task end + +2025-09-24 12:05:31,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:32,842 INFO Connection check task start + +2025-09-24 12:05:32,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:32,842 INFO Out dated connection ,size=0 + +2025-09-24 12:05:32,842 INFO Connection check task end + +2025-09-24 12:05:34,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:35,843 INFO Connection check task start + +2025-09-24 12:05:35,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:35,843 INFO Out dated connection ,size=0 + +2025-09-24 12:05:35,843 INFO Connection check task end + +2025-09-24 12:05:37,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:38,844 INFO Connection check task start + +2025-09-24 12:05:38,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:38,844 INFO Out dated connection ,size=0 + +2025-09-24 12:05:38,844 INFO Connection check task end + +2025-09-24 12:05:40,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:41,846 INFO Connection check task start + +2025-09-24 12:05:41,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:41,847 INFO Out dated connection ,size=0 + +2025-09-24 12:05:41,847 INFO Connection check task end + +2025-09-24 12:05:43,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:44,849 INFO Connection check task start + +2025-09-24 12:05:44,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:44,849 INFO Out dated connection ,size=0 + +2025-09-24 12:05:44,849 INFO Connection check task end + +2025-09-24 12:05:46,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:47,851 INFO Connection check task start + +2025-09-24 12:05:47,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:47,851 INFO Out dated connection ,size=0 + +2025-09-24 12:05:47,851 INFO Connection check task end + +2025-09-24 12:05:49,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:50,851 INFO Connection check task start + +2025-09-24 12:05:50,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:50,852 INFO Out dated connection ,size=0 + +2025-09-24 12:05:50,852 INFO Connection check task end + +2025-09-24 12:05:52,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:53,853 INFO Connection check task start + +2025-09-24 12:05:53,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:53,854 INFO Out dated connection ,size=0 + +2025-09-24 12:05:53,854 INFO Connection check task end + +2025-09-24 12:05:55,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:56,854 INFO Connection check task start + +2025-09-24 12:05:56,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:56,854 INFO Out dated connection ,size=0 + +2025-09-24 12:05:56,854 INFO Connection check task end + +2025-09-24 12:05:58,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:05:59,855 INFO Connection check task start + +2025-09-24 12:05:59,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:05:59,855 INFO Out dated connection ,size=0 + +2025-09-24 12:05:59,855 INFO Connection check task end + +2025-09-24 12:06:01,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:02,857 INFO Connection check task start + +2025-09-24 12:06:02,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:02,858 INFO Out dated connection ,size=0 + +2025-09-24 12:06:02,858 INFO Connection check task end + +2025-09-24 12:06:04,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:05,860 INFO Connection check task start + +2025-09-24 12:06:05,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:05,860 INFO Out dated connection ,size=0 + +2025-09-24 12:06:05,860 INFO Connection check task end + +2025-09-24 12:06:07,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:08,862 INFO Connection check task start + +2025-09-24 12:06:08,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:08,862 INFO Out dated connection ,size=0 + +2025-09-24 12:06:08,862 INFO Connection check task end + +2025-09-24 12:06:10,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:11,863 INFO Connection check task start + +2025-09-24 12:06:11,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:11,863 INFO Out dated connection ,size=0 + +2025-09-24 12:06:11,863 INFO Connection check task end + +2025-09-24 12:06:13,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:14,864 INFO Connection check task start + +2025-09-24 12:06:14,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:14,864 INFO Out dated connection ,size=0 + +2025-09-24 12:06:14,864 INFO Connection check task end + +2025-09-24 12:06:16,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:17,865 INFO Connection check task start + +2025-09-24 12:06:17,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:17,865 INFO Out dated connection ,size=0 + +2025-09-24 12:06:17,865 INFO Connection check task end + +2025-09-24 12:06:19,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:20,867 INFO Connection check task start + +2025-09-24 12:06:20,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:20,867 INFO Out dated connection ,size=0 + +2025-09-24 12:06:20,867 INFO Connection check task end + +2025-09-24 12:06:22,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:23,867 INFO Connection check task start + +2025-09-24 12:06:23,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:23,867 INFO Out dated connection ,size=0 + +2025-09-24 12:06:23,867 INFO Connection check task end + +2025-09-24 12:06:25,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:26,869 INFO Connection check task start + +2025-09-24 12:06:26,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:26,869 INFO Out dated connection ,size=0 + +2025-09-24 12:06:26,869 INFO Connection check task end + +2025-09-24 12:06:28,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:29,870 INFO Connection check task start + +2025-09-24 12:06:29,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:29,870 INFO Out dated connection ,size=0 + +2025-09-24 12:06:29,870 INFO Connection check task end + +2025-09-24 12:06:31,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:32,871 INFO Connection check task start + +2025-09-24 12:06:32,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:32,871 INFO Out dated connection ,size=0 + +2025-09-24 12:06:32,871 INFO Connection check task end + +2025-09-24 12:06:34,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:35,872 INFO Connection check task start + +2025-09-24 12:06:35,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:35,872 INFO Out dated connection ,size=0 + +2025-09-24 12:06:35,872 INFO Connection check task end + +2025-09-24 12:06:37,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:38,874 INFO Connection check task start + +2025-09-24 12:06:38,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:38,874 INFO Out dated connection ,size=0 + +2025-09-24 12:06:38,874 INFO Connection check task end + +2025-09-24 12:06:40,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:41,876 INFO Connection check task start + +2025-09-24 12:06:41,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:41,877 INFO Out dated connection ,size=0 + +2025-09-24 12:06:41,877 INFO Connection check task end + +2025-09-24 12:06:43,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:44,879 INFO Connection check task start + +2025-09-24 12:06:44,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:44,879 INFO Out dated connection ,size=0 + +2025-09-24 12:06:44,879 INFO Connection check task end + +2025-09-24 12:06:46,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:47,881 INFO Connection check task start + +2025-09-24 12:06:47,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:47,881 INFO Out dated connection ,size=0 + +2025-09-24 12:06:47,881 INFO Connection check task end + +2025-09-24 12:06:49,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:50,882 INFO Connection check task start + +2025-09-24 12:06:50,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:50,882 INFO Out dated connection ,size=0 + +2025-09-24 12:06:50,882 INFO Connection check task end + +2025-09-24 12:06:52,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:53,883 INFO Connection check task start + +2025-09-24 12:06:53,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:53,883 INFO Out dated connection ,size=0 + +2025-09-24 12:06:53,883 INFO Connection check task end + +2025-09-24 12:06:55,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:56,885 INFO Connection check task start + +2025-09-24 12:06:56,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:56,885 INFO Out dated connection ,size=0 + +2025-09-24 12:06:56,886 INFO Connection check task end + +2025-09-24 12:06:58,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:06:59,888 INFO Connection check task start + +2025-09-24 12:06:59,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:06:59,888 INFO Out dated connection ,size=0 + +2025-09-24 12:06:59,888 INFO Connection check task end + +2025-09-24 12:07:01,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:02,890 INFO Connection check task start + +2025-09-24 12:07:02,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:02,890 INFO Out dated connection ,size=0 + +2025-09-24 12:07:02,890 INFO Connection check task end + +2025-09-24 12:07:04,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:05,892 INFO Connection check task start + +2025-09-24 12:07:05,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:05,892 INFO Out dated connection ,size=0 + +2025-09-24 12:07:05,892 INFO Connection check task end + +2025-09-24 12:07:07,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:08,893 INFO Connection check task start + +2025-09-24 12:07:08,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:08,893 INFO Out dated connection ,size=0 + +2025-09-24 12:07:08,893 INFO Connection check task end + +2025-09-24 12:07:10,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:11,894 INFO Connection check task start + +2025-09-24 12:07:11,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:11,894 INFO Out dated connection ,size=0 + +2025-09-24 12:07:11,894 INFO Connection check task end + +2025-09-24 12:07:13,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:14,894 INFO Connection check task start + +2025-09-24 12:07:14,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:14,894 INFO Out dated connection ,size=0 + +2025-09-24 12:07:14,894 INFO Connection check task end + +2025-09-24 12:07:16,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:17,895 INFO Connection check task start + +2025-09-24 12:07:17,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:17,895 INFO Out dated connection ,size=0 + +2025-09-24 12:07:17,895 INFO Connection check task end + +2025-09-24 12:07:19,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:20,896 INFO Connection check task start + +2025-09-24 12:07:20,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:20,896 INFO Out dated connection ,size=0 + +2025-09-24 12:07:20,896 INFO Connection check task end + +2025-09-24 12:07:22,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:23,898 INFO Connection check task start + +2025-09-24 12:07:23,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:23,899 INFO Out dated connection ,size=0 + +2025-09-24 12:07:23,899 INFO Connection check task end + +2025-09-24 12:07:25,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:26,901 INFO Connection check task start + +2025-09-24 12:07:26,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:26,901 INFO Out dated connection ,size=0 + +2025-09-24 12:07:26,901 INFO Connection check task end + +2025-09-24 12:07:28,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:29,902 INFO Connection check task start + +2025-09-24 12:07:29,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:29,902 INFO Out dated connection ,size=0 + +2025-09-24 12:07:29,902 INFO Connection check task end + +2025-09-24 12:07:31,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:32,904 INFO Connection check task start + +2025-09-24 12:07:32,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:32,904 INFO Out dated connection ,size=0 + +2025-09-24 12:07:32,904 INFO Connection check task end + +2025-09-24 12:07:34,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:35,905 INFO Connection check task start + +2025-09-24 12:07:35,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:35,905 INFO Out dated connection ,size=0 + +2025-09-24 12:07:35,905 INFO Connection check task end + +2025-09-24 12:07:37,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:38,906 INFO Connection check task start + +2025-09-24 12:07:38,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:38,906 INFO Out dated connection ,size=0 + +2025-09-24 12:07:38,906 INFO Connection check task end + +2025-09-24 12:07:40,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:41,908 INFO Connection check task start + +2025-09-24 12:07:41,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:41,908 INFO Out dated connection ,size=0 + +2025-09-24 12:07:41,908 INFO Connection check task end + +2025-09-24 12:07:43,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:44,909 INFO Connection check task start + +2025-09-24 12:07:44,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:44,909 INFO Out dated connection ,size=0 + +2025-09-24 12:07:44,910 INFO Connection check task end + +2025-09-24 12:07:46,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:47,910 INFO Connection check task start + +2025-09-24 12:07:47,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:47,910 INFO Out dated connection ,size=0 + +2025-09-24 12:07:47,910 INFO Connection check task end + +2025-09-24 12:07:49,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:50,911 INFO Connection check task start + +2025-09-24 12:07:50,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:50,911 INFO Out dated connection ,size=0 + +2025-09-24 12:07:50,911 INFO Connection check task end + +2025-09-24 12:07:52,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:53,912 INFO Connection check task start + +2025-09-24 12:07:53,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:53,913 INFO Out dated connection ,size=0 + +2025-09-24 12:07:53,913 INFO Connection check task end + +2025-09-24 12:07:55,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:56,913 INFO Connection check task start + +2025-09-24 12:07:56,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:56,913 INFO Out dated connection ,size=0 + +2025-09-24 12:07:56,913 INFO Connection check task end + +2025-09-24 12:07:58,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:07:59,915 INFO Connection check task start + +2025-09-24 12:07:59,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:07:59,915 INFO Out dated connection ,size=0 + +2025-09-24 12:07:59,915 INFO Connection check task end + +2025-09-24 12:08:01,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:02,916 INFO Connection check task start + +2025-09-24 12:08:02,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:02,916 INFO Out dated connection ,size=0 + +2025-09-24 12:08:02,916 INFO Connection check task end + +2025-09-24 12:08:04,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:05,917 INFO Connection check task start + +2025-09-24 12:08:05,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:05,917 INFO Out dated connection ,size=0 + +2025-09-24 12:08:05,917 INFO Connection check task end + +2025-09-24 12:08:07,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:08,917 INFO Connection check task start + +2025-09-24 12:08:08,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:08,918 INFO Out dated connection ,size=0 + +2025-09-24 12:08:08,918 INFO Connection check task end + +2025-09-24 12:08:10,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:11,918 INFO Connection check task start + +2025-09-24 12:08:11,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:11,918 INFO Out dated connection ,size=0 + +2025-09-24 12:08:11,918 INFO Connection check task end + +2025-09-24 12:08:13,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:14,919 INFO Connection check task start + +2025-09-24 12:08:14,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:14,919 INFO Out dated connection ,size=0 + +2025-09-24 12:08:14,919 INFO Connection check task end + +2025-09-24 12:08:16,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:17,919 INFO Connection check task start + +2025-09-24 12:08:17,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:17,919 INFO Out dated connection ,size=0 + +2025-09-24 12:08:17,919 INFO Connection check task end + +2025-09-24 12:08:19,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:20,921 INFO Connection check task start + +2025-09-24 12:08:20,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:20,921 INFO Out dated connection ,size=0 + +2025-09-24 12:08:20,921 INFO Connection check task end + +2025-09-24 12:08:22,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:23,923 INFO Connection check task start + +2025-09-24 12:08:23,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:23,923 INFO Out dated connection ,size=0 + +2025-09-24 12:08:23,923 INFO Connection check task end + +2025-09-24 12:08:25,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:26,925 INFO Connection check task start + +2025-09-24 12:08:26,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:26,925 INFO Out dated connection ,size=0 + +2025-09-24 12:08:26,925 INFO Connection check task end + +2025-09-24 12:08:28,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:29,926 INFO Connection check task start + +2025-09-24 12:08:29,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:29,926 INFO Out dated connection ,size=0 + +2025-09-24 12:08:29,926 INFO Connection check task end + +2025-09-24 12:08:31,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:32,927 INFO Connection check task start + +2025-09-24 12:08:32,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:32,927 INFO Out dated connection ,size=0 + +2025-09-24 12:08:32,927 INFO Connection check task end + +2025-09-24 12:08:34,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:35,927 INFO Connection check task start + +2025-09-24 12:08:35,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:35,928 INFO Out dated connection ,size=0 + +2025-09-24 12:08:35,928 INFO Connection check task end + +2025-09-24 12:08:37,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:38,929 INFO Connection check task start + +2025-09-24 12:08:38,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:38,929 INFO Out dated connection ,size=0 + +2025-09-24 12:08:38,929 INFO Connection check task end + +2025-09-24 12:08:40,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:41,931 INFO Connection check task start + +2025-09-24 12:08:41,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:41,931 INFO Out dated connection ,size=0 + +2025-09-24 12:08:41,931 INFO Connection check task end + +2025-09-24 12:08:43,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:44,931 INFO Connection check task start + +2025-09-24 12:08:44,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:44,932 INFO Out dated connection ,size=0 + +2025-09-24 12:08:44,932 INFO Connection check task end + +2025-09-24 12:08:46,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:47,934 INFO Connection check task start + +2025-09-24 12:08:47,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:47,934 INFO Out dated connection ,size=0 + +2025-09-24 12:08:47,934 INFO Connection check task end + +2025-09-24 12:08:49,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:50,936 INFO Connection check task start + +2025-09-24 12:08:50,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:50,936 INFO Out dated connection ,size=0 + +2025-09-24 12:08:50,936 INFO Connection check task end + +2025-09-24 12:08:52,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:53,938 INFO Connection check task start + +2025-09-24 12:08:53,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:53,938 INFO Out dated connection ,size=0 + +2025-09-24 12:08:53,938 INFO Connection check task end + +2025-09-24 12:08:55,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:56,940 INFO Connection check task start + +2025-09-24 12:08:56,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:56,941 INFO Out dated connection ,size=0 + +2025-09-24 12:08:56,941 INFO Connection check task end + +2025-09-24 12:08:58,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:08:59,941 INFO Connection check task start + +2025-09-24 12:08:59,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:08:59,941 INFO Out dated connection ,size=0 + +2025-09-24 12:08:59,941 INFO Connection check task end + +2025-09-24 12:09:01,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:02,943 INFO Connection check task start + +2025-09-24 12:09:02,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:02,943 INFO Out dated connection ,size=0 + +2025-09-24 12:09:02,943 INFO Connection check task end + +2025-09-24 12:09:04,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:05,945 INFO Connection check task start + +2025-09-24 12:09:05,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:05,945 INFO Out dated connection ,size=0 + +2025-09-24 12:09:05,945 INFO Connection check task end + +2025-09-24 12:09:07,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:08,946 INFO Connection check task start + +2025-09-24 12:09:08,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:08,946 INFO Out dated connection ,size=0 + +2025-09-24 12:09:08,946 INFO Connection check task end + +2025-09-24 12:09:10,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:11,947 INFO Connection check task start + +2025-09-24 12:09:11,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:11,947 INFO Out dated connection ,size=0 + +2025-09-24 12:09:11,947 INFO Connection check task end + +2025-09-24 12:09:13,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:14,949 INFO Connection check task start + +2025-09-24 12:09:14,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:14,950 INFO Out dated connection ,size=0 + +2025-09-24 12:09:14,950 INFO Connection check task end + +2025-09-24 12:09:16,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:17,951 INFO Connection check task start + +2025-09-24 12:09:17,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:17,951 INFO Out dated connection ,size=0 + +2025-09-24 12:09:17,952 INFO Connection check task end + +2025-09-24 12:09:19,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:20,952 INFO Connection check task start + +2025-09-24 12:09:20,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:20,952 INFO Out dated connection ,size=0 + +2025-09-24 12:09:20,952 INFO Connection check task end + +2025-09-24 12:09:22,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:23,953 INFO Connection check task start + +2025-09-24 12:09:23,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:23,953 INFO Out dated connection ,size=0 + +2025-09-24 12:09:23,953 INFO Connection check task end + +2025-09-24 12:09:25,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:26,954 INFO Connection check task start + +2025-09-24 12:09:26,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:26,954 INFO Out dated connection ,size=0 + +2025-09-24 12:09:26,954 INFO Connection check task end + +2025-09-24 12:09:28,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:29,954 INFO Connection check task start + +2025-09-24 12:09:29,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:29,954 INFO Out dated connection ,size=0 + +2025-09-24 12:09:29,954 INFO Connection check task end + +2025-09-24 12:09:31,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:32,956 INFO Connection check task start + +2025-09-24 12:09:32,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:32,956 INFO Out dated connection ,size=0 + +2025-09-24 12:09:32,956 INFO Connection check task end + +2025-09-24 12:09:34,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:35,956 INFO Connection check task start + +2025-09-24 12:09:35,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:35,957 INFO Out dated connection ,size=0 + +2025-09-24 12:09:35,957 INFO Connection check task end + +2025-09-24 12:09:37,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:38,958 INFO Connection check task start + +2025-09-24 12:09:38,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:38,958 INFO Out dated connection ,size=0 + +2025-09-24 12:09:38,959 INFO Connection check task end + +2025-09-24 12:09:40,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:41,959 INFO Connection check task start + +2025-09-24 12:09:41,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:41,960 INFO Out dated connection ,size=0 + +2025-09-24 12:09:41,960 INFO Connection check task end + +2025-09-24 12:09:43,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:44,961 INFO Connection check task start + +2025-09-24 12:09:44,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:44,961 INFO Out dated connection ,size=0 + +2025-09-24 12:09:44,961 INFO Connection check task end + +2025-09-24 12:09:46,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:47,962 INFO Connection check task start + +2025-09-24 12:09:47,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:47,962 INFO Out dated connection ,size=0 + +2025-09-24 12:09:47,963 INFO Connection check task end + +2025-09-24 12:09:49,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:50,963 INFO Connection check task start + +2025-09-24 12:09:50,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:50,963 INFO Out dated connection ,size=0 + +2025-09-24 12:09:50,963 INFO Connection check task end + +2025-09-24 12:09:52,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:53,963 INFO Connection check task start + +2025-09-24 12:09:53,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:53,964 INFO Out dated connection ,size=0 + +2025-09-24 12:09:53,964 INFO Connection check task end + +2025-09-24 12:09:55,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:56,964 INFO Connection check task start + +2025-09-24 12:09:56,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:56,964 INFO Out dated connection ,size=0 + +2025-09-24 12:09:56,964 INFO Connection check task end + +2025-09-24 12:09:58,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:09:59,964 INFO Connection check task start + +2025-09-24 12:09:59,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:09:59,965 INFO Out dated connection ,size=0 + +2025-09-24 12:09:59,965 INFO Connection check task end + +2025-09-24 12:10:01,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:02,965 INFO Connection check task start + +2025-09-24 12:10:02,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:02,965 INFO Out dated connection ,size=0 + +2025-09-24 12:10:02,965 INFO Connection check task end + +2025-09-24 12:10:04,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:05,966 INFO Connection check task start + +2025-09-24 12:10:05,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:05,966 INFO Out dated connection ,size=0 + +2025-09-24 12:10:05,966 INFO Connection check task end + +2025-09-24 12:10:07,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:08,968 INFO Connection check task start + +2025-09-24 12:10:08,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:08,968 INFO Out dated connection ,size=0 + +2025-09-24 12:10:08,968 INFO Connection check task end + +2025-09-24 12:10:10,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:11,969 INFO Connection check task start + +2025-09-24 12:10:11,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:11,969 INFO Out dated connection ,size=0 + +2025-09-24 12:10:11,969 INFO Connection check task end + +2025-09-24 12:10:13,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:14,971 INFO Connection check task start + +2025-09-24 12:10:14,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:14,971 INFO Out dated connection ,size=0 + +2025-09-24 12:10:14,971 INFO Connection check task end + +2025-09-24 12:10:16,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:17,972 INFO Connection check task start + +2025-09-24 12:10:17,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:17,972 INFO Out dated connection ,size=0 + +2025-09-24 12:10:17,972 INFO Connection check task end + +2025-09-24 12:10:19,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:20,974 INFO Connection check task start + +2025-09-24 12:10:20,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:20,974 INFO Out dated connection ,size=0 + +2025-09-24 12:10:20,974 INFO Connection check task end + +2025-09-24 12:10:22,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:23,974 INFO Connection check task start + +2025-09-24 12:10:23,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:23,975 INFO Out dated connection ,size=0 + +2025-09-24 12:10:23,975 INFO Connection check task end + +2025-09-24 12:10:25,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:26,975 INFO Connection check task start + +2025-09-24 12:10:26,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:26,975 INFO Out dated connection ,size=0 + +2025-09-24 12:10:26,975 INFO Connection check task end + +2025-09-24 12:10:28,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:29,976 INFO Connection check task start + +2025-09-24 12:10:29,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:29,976 INFO Out dated connection ,size=0 + +2025-09-24 12:10:29,976 INFO Connection check task end + +2025-09-24 12:10:31,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:32,977 INFO Connection check task start + +2025-09-24 12:10:32,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:32,977 INFO Out dated connection ,size=0 + +2025-09-24 12:10:32,977 INFO Connection check task end + +2025-09-24 12:10:34,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:35,979 INFO Connection check task start + +2025-09-24 12:10:35,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:35,979 INFO Out dated connection ,size=0 + +2025-09-24 12:10:35,979 INFO Connection check task end + +2025-09-24 12:10:37,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:38,980 INFO Connection check task start + +2025-09-24 12:10:38,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:38,980 INFO Out dated connection ,size=0 + +2025-09-24 12:10:38,980 INFO Connection check task end + +2025-09-24 12:10:40,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:41,981 INFO Connection check task start + +2025-09-24 12:10:41,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:41,981 INFO Out dated connection ,size=0 + +2025-09-24 12:10:41,981 INFO Connection check task end + +2025-09-24 12:10:43,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:44,982 INFO Connection check task start + +2025-09-24 12:10:44,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:44,982 INFO Out dated connection ,size=0 + +2025-09-24 12:10:44,982 INFO Connection check task end + +2025-09-24 12:10:46,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:47,984 INFO Connection check task start + +2025-09-24 12:10:47,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:47,984 INFO Out dated connection ,size=0 + +2025-09-24 12:10:47,984 INFO Connection check task end + +2025-09-24 12:10:49,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:50,986 INFO Connection check task start + +2025-09-24 12:10:50,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:50,986 INFO Out dated connection ,size=0 + +2025-09-24 12:10:50,986 INFO Connection check task end + +2025-09-24 12:10:52,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:53,987 INFO Connection check task start + +2025-09-24 12:10:53,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:53,988 INFO Out dated connection ,size=0 + +2025-09-24 12:10:53,988 INFO Connection check task end + +2025-09-24 12:10:55,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:56,988 INFO Connection check task start + +2025-09-24 12:10:56,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:56,988 INFO Out dated connection ,size=0 + +2025-09-24 12:10:56,988 INFO Connection check task end + +2025-09-24 12:10:58,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:10:59,988 INFO Connection check task start + +2025-09-24 12:10:59,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:10:59,989 INFO Out dated connection ,size=0 + +2025-09-24 12:10:59,989 INFO Connection check task end + +2025-09-24 12:11:01,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:02,991 INFO Connection check task start + +2025-09-24 12:11:02,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:02,991 INFO Out dated connection ,size=0 + +2025-09-24 12:11:02,991 INFO Connection check task end + +2025-09-24 12:11:04,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:05,993 INFO Connection check task start + +2025-09-24 12:11:05,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:05,993 INFO Out dated connection ,size=0 + +2025-09-24 12:11:05,994 INFO Connection check task end + +2025-09-24 12:11:07,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:08,996 INFO Connection check task start + +2025-09-24 12:11:08,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:08,996 INFO Out dated connection ,size=0 + +2025-09-24 12:11:08,996 INFO Connection check task end + +2025-09-24 12:11:10,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:11,996 INFO Connection check task start + +2025-09-24 12:11:11,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:11,996 INFO Out dated connection ,size=0 + +2025-09-24 12:11:11,996 INFO Connection check task end + +2025-09-24 12:11:13,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:14,997 INFO Connection check task start + +2025-09-24 12:11:14,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:14,997 INFO Out dated connection ,size=0 + +2025-09-24 12:11:14,997 INFO Connection check task end + +2025-09-24 12:11:16,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:18,000 INFO Connection check task start + +2025-09-24 12:11:18,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:18,002 INFO Out dated connection ,size=0 + +2025-09-24 12:11:18,002 INFO Connection check task end + +2025-09-24 12:11:19,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:21,004 INFO Connection check task start + +2025-09-24 12:11:21,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:21,005 INFO Out dated connection ,size=0 + +2025-09-24 12:11:21,005 INFO Connection check task end + +2025-09-24 12:11:22,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:24,007 INFO Connection check task start + +2025-09-24 12:11:24,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:24,007 INFO Out dated connection ,size=0 + +2025-09-24 12:11:24,007 INFO Connection check task end + +2025-09-24 12:11:25,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:27,007 INFO Connection check task start + +2025-09-24 12:11:27,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:27,007 INFO Out dated connection ,size=0 + +2025-09-24 12:11:27,008 INFO Connection check task end + +2025-09-24 12:11:28,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:30,008 INFO Connection check task start + +2025-09-24 12:11:30,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:30,009 INFO Out dated connection ,size=0 + +2025-09-24 12:11:30,009 INFO Connection check task end + +2025-09-24 12:11:31,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:33,010 INFO Connection check task start + +2025-09-24 12:11:33,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:33,010 INFO Out dated connection ,size=0 + +2025-09-24 12:11:33,010 INFO Connection check task end + +2025-09-24 12:11:34,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:36,010 INFO Connection check task start + +2025-09-24 12:11:36,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:36,011 INFO Out dated connection ,size=0 + +2025-09-24 12:11:36,011 INFO Connection check task end + +2025-09-24 12:11:37,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:39,013 INFO Connection check task start + +2025-09-24 12:11:39,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:39,013 INFO Out dated connection ,size=0 + +2025-09-24 12:11:39,013 INFO Connection check task end + +2025-09-24 12:11:40,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:42,014 INFO Connection check task start + +2025-09-24 12:11:42,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:42,014 INFO Out dated connection ,size=0 + +2025-09-24 12:11:42,014 INFO Connection check task end + +2025-09-24 12:11:43,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:45,014 INFO Connection check task start + +2025-09-24 12:11:45,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:45,015 INFO Out dated connection ,size=0 + +2025-09-24 12:11:45,015 INFO Connection check task end + +2025-09-24 12:11:46,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:48,016 INFO Connection check task start + +2025-09-24 12:11:48,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:48,017 INFO Out dated connection ,size=0 + +2025-09-24 12:11:48,017 INFO Connection check task end + +2025-09-24 12:11:49,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:51,018 INFO Connection check task start + +2025-09-24 12:11:51,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:51,018 INFO Out dated connection ,size=0 + +2025-09-24 12:11:51,018 INFO Connection check task end + +2025-09-24 12:11:52,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:54,018 INFO Connection check task start + +2025-09-24 12:11:54,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:54,019 INFO Out dated connection ,size=0 + +2025-09-24 12:11:54,019 INFO Connection check task end + +2025-09-24 12:11:55,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:11:57,021 INFO Connection check task start + +2025-09-24 12:11:57,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:11:57,021 INFO Out dated connection ,size=0 + +2025-09-24 12:11:57,021 INFO Connection check task end + +2025-09-24 12:11:58,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:00,021 INFO Connection check task start + +2025-09-24 12:12:00,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:00,022 INFO Out dated connection ,size=0 + +2025-09-24 12:12:00,022 INFO Connection check task end + +2025-09-24 12:12:01,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:03,022 INFO Connection check task start + +2025-09-24 12:12:03,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:03,023 INFO Out dated connection ,size=0 + +2025-09-24 12:12:03,023 INFO Connection check task end + +2025-09-24 12:12:04,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:06,025 INFO Connection check task start + +2025-09-24 12:12:06,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:06,025 INFO Out dated connection ,size=0 + +2025-09-24 12:12:06,025 INFO Connection check task end + +2025-09-24 12:12:07,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:09,025 INFO Connection check task start + +2025-09-24 12:12:09,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:09,025 INFO Out dated connection ,size=0 + +2025-09-24 12:12:09,025 INFO Connection check task end + +2025-09-24 12:12:10,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:12,026 INFO Connection check task start + +2025-09-24 12:12:12,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:12,026 INFO Out dated connection ,size=0 + +2025-09-24 12:12:12,026 INFO Connection check task end + +2025-09-24 12:12:13,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:15,027 INFO Connection check task start + +2025-09-24 12:12:15,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:15,027 INFO Out dated connection ,size=0 + +2025-09-24 12:12:15,027 INFO Connection check task end + +2025-09-24 12:12:16,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:18,027 INFO Connection check task start + +2025-09-24 12:12:18,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:18,028 INFO Out dated connection ,size=0 + +2025-09-24 12:12:18,028 INFO Connection check task end + +2025-09-24 12:12:19,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:21,030 INFO Connection check task start + +2025-09-24 12:12:21,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:21,030 INFO Out dated connection ,size=0 + +2025-09-24 12:12:21,030 INFO Connection check task end + +2025-09-24 12:12:22,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:24,031 INFO Connection check task start + +2025-09-24 12:12:24,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:24,031 INFO Out dated connection ,size=0 + +2025-09-24 12:12:24,031 INFO Connection check task end + +2025-09-24 12:12:25,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:27,032 INFO Connection check task start + +2025-09-24 12:12:27,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:27,032 INFO Out dated connection ,size=0 + +2025-09-24 12:12:27,032 INFO Connection check task end + +2025-09-24 12:12:28,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:30,033 INFO Connection check task start + +2025-09-24 12:12:30,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:30,033 INFO Out dated connection ,size=0 + +2025-09-24 12:12:30,033 INFO Connection check task end + +2025-09-24 12:12:31,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:33,034 INFO Connection check task start + +2025-09-24 12:12:33,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:33,034 INFO Out dated connection ,size=0 + +2025-09-24 12:12:33,034 INFO Connection check task end + +2025-09-24 12:12:34,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:36,034 INFO Connection check task start + +2025-09-24 12:12:36,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:36,034 INFO Out dated connection ,size=0 + +2025-09-24 12:12:36,034 INFO Connection check task end + +2025-09-24 12:12:37,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:39,036 INFO Connection check task start + +2025-09-24 12:12:39,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:39,036 INFO Out dated connection ,size=0 + +2025-09-24 12:12:39,036 INFO Connection check task end + +2025-09-24 12:12:40,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:42,037 INFO Connection check task start + +2025-09-24 12:12:42,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:42,037 INFO Out dated connection ,size=0 + +2025-09-24 12:12:42,037 INFO Connection check task end + +2025-09-24 12:12:43,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:45,037 INFO Connection check task start + +2025-09-24 12:12:45,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:45,038 INFO Out dated connection ,size=0 + +2025-09-24 12:12:45,038 INFO Connection check task end + +2025-09-24 12:12:46,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:48,038 INFO Connection check task start + +2025-09-24 12:12:48,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:48,038 INFO Out dated connection ,size=0 + +2025-09-24 12:12:48,038 INFO Connection check task end + +2025-09-24 12:12:49,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:51,039 INFO Connection check task start + +2025-09-24 12:12:51,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:51,040 INFO Out dated connection ,size=0 + +2025-09-24 12:12:51,040 INFO Connection check task end + +2025-09-24 12:12:52,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:54,041 INFO Connection check task start + +2025-09-24 12:12:54,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:54,041 INFO Out dated connection ,size=0 + +2025-09-24 12:12:54,041 INFO Connection check task end + +2025-09-24 12:12:55,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:12:57,041 INFO Connection check task start + +2025-09-24 12:12:57,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:12:57,042 INFO Out dated connection ,size=0 + +2025-09-24 12:12:57,042 INFO Connection check task end + +2025-09-24 12:12:58,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:00,042 INFO Connection check task start + +2025-09-24 12:13:00,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:00,043 INFO Out dated connection ,size=0 + +2025-09-24 12:13:00,043 INFO Connection check task end + +2025-09-24 12:13:01,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:03,043 INFO Connection check task start + +2025-09-24 12:13:03,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:03,043 INFO Out dated connection ,size=0 + +2025-09-24 12:13:03,043 INFO Connection check task end + +2025-09-24 12:13:04,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:06,044 INFO Connection check task start + +2025-09-24 12:13:06,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:06,044 INFO Out dated connection ,size=0 + +2025-09-24 12:13:06,044 INFO Connection check task end + +2025-09-24 12:13:07,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:09,045 INFO Connection check task start + +2025-09-24 12:13:09,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:09,045 INFO Out dated connection ,size=0 + +2025-09-24 12:13:09,045 INFO Connection check task end + +2025-09-24 12:13:10,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:12,045 INFO Connection check task start + +2025-09-24 12:13:12,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:12,046 INFO Out dated connection ,size=0 + +2025-09-24 12:13:12,046 INFO Connection check task end + +2025-09-24 12:13:13,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:15,046 INFO Connection check task start + +2025-09-24 12:13:15,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:15,046 INFO Out dated connection ,size=0 + +2025-09-24 12:13:15,046 INFO Connection check task end + +2025-09-24 12:13:16,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:18,048 INFO Connection check task start + +2025-09-24 12:13:18,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:18,048 INFO Out dated connection ,size=0 + +2025-09-24 12:13:18,048 INFO Connection check task end + +2025-09-24 12:13:19,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:21,048 INFO Connection check task start + +2025-09-24 12:13:21,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:21,049 INFO Out dated connection ,size=0 + +2025-09-24 12:13:21,049 INFO Connection check task end + +2025-09-24 12:13:22,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:24,049 INFO Connection check task start + +2025-09-24 12:13:24,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:24,049 INFO Out dated connection ,size=0 + +2025-09-24 12:13:24,049 INFO Connection check task end + +2025-09-24 12:13:25,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:27,050 INFO Connection check task start + +2025-09-24 12:13:27,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:27,050 INFO Out dated connection ,size=0 + +2025-09-24 12:13:27,050 INFO Connection check task end + +2025-09-24 12:13:28,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:30,051 INFO Connection check task start + +2025-09-24 12:13:30,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:30,051 INFO Out dated connection ,size=0 + +2025-09-24 12:13:30,051 INFO Connection check task end + +2025-09-24 12:13:31,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:33,051 INFO Connection check task start + +2025-09-24 12:13:33,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:33,051 INFO Out dated connection ,size=0 + +2025-09-24 12:13:33,052 INFO Connection check task end + +2025-09-24 12:13:34,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:36,052 INFO Connection check task start + +2025-09-24 12:13:36,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:36,052 INFO Out dated connection ,size=0 + +2025-09-24 12:13:36,052 INFO Connection check task end + +2025-09-24 12:13:37,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:39,053 INFO Connection check task start + +2025-09-24 12:13:39,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:39,053 INFO Out dated connection ,size=0 + +2025-09-24 12:13:39,053 INFO Connection check task end + +2025-09-24 12:13:40,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:42,055 INFO Connection check task start + +2025-09-24 12:13:42,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:42,055 INFO Out dated connection ,size=0 + +2025-09-24 12:13:42,056 INFO Connection check task end + +2025-09-24 12:13:43,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:45,056 INFO Connection check task start + +2025-09-24 12:13:45,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:45,056 INFO Out dated connection ,size=0 + +2025-09-24 12:13:45,056 INFO Connection check task end + +2025-09-24 12:13:46,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:48,057 INFO Connection check task start + +2025-09-24 12:13:48,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:48,057 INFO Out dated connection ,size=0 + +2025-09-24 12:13:48,057 INFO Connection check task end + +2025-09-24 12:13:49,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:51,057 INFO Connection check task start + +2025-09-24 12:13:51,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:51,057 INFO Out dated connection ,size=0 + +2025-09-24 12:13:51,057 INFO Connection check task end + +2025-09-24 12:13:52,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:54,058 INFO Connection check task start + +2025-09-24 12:13:54,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:54,058 INFO Out dated connection ,size=0 + +2025-09-24 12:13:54,058 INFO Connection check task end + +2025-09-24 12:13:55,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:13:57,059 INFO Connection check task start + +2025-09-24 12:13:57,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:13:57,059 INFO Out dated connection ,size=0 + +2025-09-24 12:13:57,060 INFO Connection check task end + +2025-09-24 12:13:58,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:00,061 INFO Connection check task start + +2025-09-24 12:14:00,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:00,061 INFO Out dated connection ,size=0 + +2025-09-24 12:14:00,061 INFO Connection check task end + +2025-09-24 12:14:01,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:03,062 INFO Connection check task start + +2025-09-24 12:14:03,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:03,062 INFO Out dated connection ,size=0 + +2025-09-24 12:14:03,062 INFO Connection check task end + +2025-09-24 12:14:04,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:06,063 INFO Connection check task start + +2025-09-24 12:14:06,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:06,063 INFO Out dated connection ,size=0 + +2025-09-24 12:14:06,063 INFO Connection check task end + +2025-09-24 12:14:07,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:09,063 INFO Connection check task start + +2025-09-24 12:14:09,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:09,064 INFO Out dated connection ,size=0 + +2025-09-24 12:14:09,064 INFO Connection check task end + +2025-09-24 12:14:10,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:12,065 INFO Connection check task start + +2025-09-24 12:14:12,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:12,065 INFO Out dated connection ,size=0 + +2025-09-24 12:14:12,065 INFO Connection check task end + +2025-09-24 12:14:13,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:15,065 INFO Connection check task start + +2025-09-24 12:14:15,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:15,066 INFO Out dated connection ,size=0 + +2025-09-24 12:14:15,066 INFO Connection check task end + +2025-09-24 12:14:16,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:18,066 INFO Connection check task start + +2025-09-24 12:14:18,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:18,066 INFO Out dated connection ,size=0 + +2025-09-24 12:14:18,066 INFO Connection check task end + +2025-09-24 12:14:19,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:21,067 INFO Connection check task start + +2025-09-24 12:14:21,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:21,067 INFO Out dated connection ,size=0 + +2025-09-24 12:14:21,067 INFO Connection check task end + +2025-09-24 12:14:22,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:24,069 INFO Connection check task start + +2025-09-24 12:14:24,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:24,069 INFO Out dated connection ,size=0 + +2025-09-24 12:14:24,069 INFO Connection check task end + +2025-09-24 12:14:25,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:27,070 INFO Connection check task start + +2025-09-24 12:14:27,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:27,071 INFO Out dated connection ,size=0 + +2025-09-24 12:14:27,071 INFO Connection check task end + +2025-09-24 12:14:28,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:30,072 INFO Connection check task start + +2025-09-24 12:14:30,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:30,073 INFO Out dated connection ,size=0 + +2025-09-24 12:14:30,073 INFO Connection check task end + +2025-09-24 12:14:31,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:33,073 INFO Connection check task start + +2025-09-24 12:14:33,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:33,073 INFO Out dated connection ,size=0 + +2025-09-24 12:14:33,073 INFO Connection check task end + +2025-09-24 12:14:34,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:36,074 INFO Connection check task start + +2025-09-24 12:14:36,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:36,074 INFO Out dated connection ,size=0 + +2025-09-24 12:14:36,074 INFO Connection check task end + +2025-09-24 12:14:37,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:39,074 INFO Connection check task start + +2025-09-24 12:14:39,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:39,074 INFO Out dated connection ,size=0 + +2025-09-24 12:14:39,075 INFO Connection check task end + +2025-09-24 12:14:40,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:42,076 INFO Connection check task start + +2025-09-24 12:14:42,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:42,076 INFO Out dated connection ,size=0 + +2025-09-24 12:14:42,076 INFO Connection check task end + +2025-09-24 12:14:43,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:45,077 INFO Connection check task start + +2025-09-24 12:14:45,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:45,077 INFO Out dated connection ,size=0 + +2025-09-24 12:14:45,077 INFO Connection check task end + +2025-09-24 12:14:46,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:48,078 INFO Connection check task start + +2025-09-24 12:14:48,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:48,078 INFO Out dated connection ,size=0 + +2025-09-24 12:14:48,078 INFO Connection check task end + +2025-09-24 12:14:49,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:51,078 INFO Connection check task start + +2025-09-24 12:14:51,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:51,078 INFO Out dated connection ,size=0 + +2025-09-24 12:14:51,078 INFO Connection check task end + +2025-09-24 12:14:52,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:54,079 INFO Connection check task start + +2025-09-24 12:14:54,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:54,079 INFO Out dated connection ,size=0 + +2025-09-24 12:14:54,079 INFO Connection check task end + +2025-09-24 12:14:55,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:14:57,081 INFO Connection check task start + +2025-09-24 12:14:57,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:14:57,082 INFO Out dated connection ,size=0 + +2025-09-24 12:14:57,082 INFO Connection check task end + +2025-09-24 12:14:58,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:00,082 INFO Connection check task start + +2025-09-24 12:15:00,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:00,082 INFO Out dated connection ,size=0 + +2025-09-24 12:15:00,082 INFO Connection check task end + +2025-09-24 12:15:01,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:03,082 INFO Connection check task start + +2025-09-24 12:15:03,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:03,082 INFO Out dated connection ,size=0 + +2025-09-24 12:15:03,083 INFO Connection check task end + +2025-09-24 12:15:04,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:06,084 INFO Connection check task start + +2025-09-24 12:15:06,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:06,084 INFO Out dated connection ,size=0 + +2025-09-24 12:15:06,084 INFO Connection check task end + +2025-09-24 12:15:07,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:09,085 INFO Connection check task start + +2025-09-24 12:15:09,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:09,085 INFO Out dated connection ,size=0 + +2025-09-24 12:15:09,085 INFO Connection check task end + +2025-09-24 12:15:10,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:12,086 INFO Connection check task start + +2025-09-24 12:15:12,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:12,087 INFO Out dated connection ,size=0 + +2025-09-24 12:15:12,087 INFO Connection check task end + +2025-09-24 12:15:13,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:15,088 INFO Connection check task start + +2025-09-24 12:15:15,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:15,089 INFO Out dated connection ,size=0 + +2025-09-24 12:15:15,089 INFO Connection check task end + +2025-09-24 12:15:16,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:18,090 INFO Connection check task start + +2025-09-24 12:15:18,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:18,090 INFO Out dated connection ,size=0 + +2025-09-24 12:15:18,090 INFO Connection check task end + +2025-09-24 12:15:19,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:21,091 INFO Connection check task start + +2025-09-24 12:15:21,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:21,092 INFO Out dated connection ,size=0 + +2025-09-24 12:15:21,092 INFO Connection check task end + +2025-09-24 12:15:22,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:24,092 INFO Connection check task start + +2025-09-24 12:15:24,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:24,092 INFO Out dated connection ,size=0 + +2025-09-24 12:15:24,092 INFO Connection check task end + +2025-09-24 12:15:25,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:27,093 INFO Connection check task start + +2025-09-24 12:15:27,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:27,093 INFO Out dated connection ,size=0 + +2025-09-24 12:15:27,093 INFO Connection check task end + +2025-09-24 12:15:28,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:30,095 INFO Connection check task start + +2025-09-24 12:15:30,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:30,095 INFO Out dated connection ,size=0 + +2025-09-24 12:15:30,095 INFO Connection check task end + +2025-09-24 12:15:31,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:33,097 INFO Connection check task start + +2025-09-24 12:15:33,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:33,097 INFO Out dated connection ,size=0 + +2025-09-24 12:15:33,098 INFO Connection check task end + +2025-09-24 12:15:34,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:36,098 INFO Connection check task start + +2025-09-24 12:15:36,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:36,098 INFO Out dated connection ,size=0 + +2025-09-24 12:15:36,098 INFO Connection check task end + +2025-09-24 12:15:37,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:39,099 INFO Connection check task start + +2025-09-24 12:15:39,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:39,099 INFO Out dated connection ,size=0 + +2025-09-24 12:15:39,099 INFO Connection check task end + +2025-09-24 12:15:40,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:42,099 INFO Connection check task start + +2025-09-24 12:15:42,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:42,100 INFO Out dated connection ,size=0 + +2025-09-24 12:15:42,100 INFO Connection check task end + +2025-09-24 12:15:43,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:45,100 INFO Connection check task start + +2025-09-24 12:15:45,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:45,100 INFO Out dated connection ,size=0 + +2025-09-24 12:15:45,100 INFO Connection check task end + +2025-09-24 12:15:46,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:48,100 INFO Connection check task start + +2025-09-24 12:15:48,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:48,100 INFO Out dated connection ,size=0 + +2025-09-24 12:15:48,100 INFO Connection check task end + +2025-09-24 12:15:49,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:51,101 INFO Connection check task start + +2025-09-24 12:15:51,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:51,101 INFO Out dated connection ,size=0 + +2025-09-24 12:15:51,101 INFO Connection check task end + +2025-09-24 12:15:52,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:54,103 INFO Connection check task start + +2025-09-24 12:15:54,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:54,103 INFO Out dated connection ,size=0 + +2025-09-24 12:15:54,103 INFO Connection check task end + +2025-09-24 12:15:55,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:15:57,105 INFO Connection check task start + +2025-09-24 12:15:57,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:15:57,105 INFO Out dated connection ,size=0 + +2025-09-24 12:15:57,105 INFO Connection check task end + +2025-09-24 12:15:58,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:00,107 INFO Connection check task start + +2025-09-24 12:16:00,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:00,107 INFO Out dated connection ,size=0 + +2025-09-24 12:16:00,107 INFO Connection check task end + +2025-09-24 12:16:01,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:03,108 INFO Connection check task start + +2025-09-24 12:16:03,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:03,108 INFO Out dated connection ,size=0 + +2025-09-24 12:16:03,108 INFO Connection check task end + +2025-09-24 12:16:04,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:06,108 INFO Connection check task start + +2025-09-24 12:16:06,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:06,108 INFO Out dated connection ,size=0 + +2025-09-24 12:16:06,108 INFO Connection check task end + +2025-09-24 12:16:07,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:09,110 INFO Connection check task start + +2025-09-24 12:16:09,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:09,111 INFO Out dated connection ,size=0 + +2025-09-24 12:16:09,111 INFO Connection check task end + +2025-09-24 12:16:10,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:12,112 INFO Connection check task start + +2025-09-24 12:16:12,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:12,112 INFO Out dated connection ,size=0 + +2025-09-24 12:16:12,112 INFO Connection check task end + +2025-09-24 12:16:13,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:15,112 INFO Connection check task start + +2025-09-24 12:16:15,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:15,112 INFO Out dated connection ,size=0 + +2025-09-24 12:16:15,112 INFO Connection check task end + +2025-09-24 12:16:16,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:18,113 INFO Connection check task start + +2025-09-24 12:16:18,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:18,113 INFO Out dated connection ,size=0 + +2025-09-24 12:16:18,113 INFO Connection check task end + +2025-09-24 12:16:19,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:21,115 INFO Connection check task start + +2025-09-24 12:16:21,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:21,115 INFO Out dated connection ,size=0 + +2025-09-24 12:16:21,115 INFO Connection check task end + +2025-09-24 12:16:22,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:24,115 INFO Connection check task start + +2025-09-24 12:16:24,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:24,115 INFO Out dated connection ,size=0 + +2025-09-24 12:16:24,115 INFO Connection check task end + +2025-09-24 12:16:25,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:27,117 INFO Connection check task start + +2025-09-24 12:16:27,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:27,118 INFO Out dated connection ,size=0 + +2025-09-24 12:16:27,118 INFO Connection check task end + +2025-09-24 12:16:28,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:30,118 INFO Connection check task start + +2025-09-24 12:16:30,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:30,118 INFO Out dated connection ,size=0 + +2025-09-24 12:16:30,118 INFO Connection check task end + +2025-09-24 12:16:31,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:33,118 INFO Connection check task start + +2025-09-24 12:16:33,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:33,119 INFO Out dated connection ,size=0 + +2025-09-24 12:16:33,119 INFO Connection check task end + +2025-09-24 12:16:34,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:36,119 INFO Connection check task start + +2025-09-24 12:16:36,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:36,119 INFO Out dated connection ,size=0 + +2025-09-24 12:16:36,119 INFO Connection check task end + +2025-09-24 12:16:37,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:39,119 INFO Connection check task start + +2025-09-24 12:16:39,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:39,120 INFO Out dated connection ,size=0 + +2025-09-24 12:16:39,120 INFO Connection check task end + +2025-09-24 12:16:40,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:42,121 INFO Connection check task start + +2025-09-24 12:16:42,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:42,122 INFO Out dated connection ,size=0 + +2025-09-24 12:16:42,122 INFO Connection check task end + +2025-09-24 12:16:43,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:45,122 INFO Connection check task start + +2025-09-24 12:16:45,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:45,122 INFO Out dated connection ,size=0 + +2025-09-24 12:16:45,122 INFO Connection check task end + +2025-09-24 12:16:46,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:48,122 INFO Connection check task start + +2025-09-24 12:16:48,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:48,122 INFO Out dated connection ,size=0 + +2025-09-24 12:16:48,122 INFO Connection check task end + +2025-09-24 12:16:49,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:51,124 INFO Connection check task start + +2025-09-24 12:16:51,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:51,125 INFO Out dated connection ,size=0 + +2025-09-24 12:16:51,125 INFO Connection check task end + +2025-09-24 12:16:52,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:54,127 INFO Connection check task start + +2025-09-24 12:16:54,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:54,127 INFO Out dated connection ,size=0 + +2025-09-24 12:16:54,127 INFO Connection check task end + +2025-09-24 12:16:55,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:16:57,128 INFO Connection check task start + +2025-09-24 12:16:57,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:16:57,128 INFO Out dated connection ,size=0 + +2025-09-24 12:16:57,128 INFO Connection check task end + +2025-09-24 12:16:58,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:00,128 INFO Connection check task start + +2025-09-24 12:17:00,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:00,129 INFO Out dated connection ,size=0 + +2025-09-24 12:17:00,129 INFO Connection check task end + +2025-09-24 12:17:01,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:03,129 INFO Connection check task start + +2025-09-24 12:17:03,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:03,129 INFO Out dated connection ,size=0 + +2025-09-24 12:17:03,129 INFO Connection check task end + +2025-09-24 12:17:04,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:06,131 INFO Connection check task start + +2025-09-24 12:17:06,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:06,131 INFO Out dated connection ,size=0 + +2025-09-24 12:17:06,131 INFO Connection check task end + +2025-09-24 12:17:07,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:09,133 INFO Connection check task start + +2025-09-24 12:17:09,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:09,133 INFO Out dated connection ,size=0 + +2025-09-24 12:17:09,133 INFO Connection check task end + +2025-09-24 12:17:10,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:12,135 INFO Connection check task start + +2025-09-24 12:17:12,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:12,135 INFO Out dated connection ,size=0 + +2025-09-24 12:17:12,135 INFO Connection check task end + +2025-09-24 12:17:13,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:15,135 INFO Connection check task start + +2025-09-24 12:17:15,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:15,135 INFO Out dated connection ,size=0 + +2025-09-24 12:17:15,135 INFO Connection check task end + +2025-09-24 12:17:16,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:18,135 INFO Connection check task start + +2025-09-24 12:17:18,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:18,136 INFO Out dated connection ,size=0 + +2025-09-24 12:17:18,136 INFO Connection check task end + +2025-09-24 12:17:19,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:21,138 INFO Connection check task start + +2025-09-24 12:17:21,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:21,138 INFO Out dated connection ,size=0 + +2025-09-24 12:17:21,138 INFO Connection check task end + +2025-09-24 12:17:22,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:24,140 INFO Connection check task start + +2025-09-24 12:17:24,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:24,140 INFO Out dated connection ,size=0 + +2025-09-24 12:17:24,140 INFO Connection check task end + +2025-09-24 12:17:25,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:27,141 INFO Connection check task start + +2025-09-24 12:17:27,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:27,141 INFO Out dated connection ,size=0 + +2025-09-24 12:17:27,141 INFO Connection check task end + +2025-09-24 12:17:28,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:30,142 INFO Connection check task start + +2025-09-24 12:17:30,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:30,143 INFO Out dated connection ,size=0 + +2025-09-24 12:17:30,143 INFO Connection check task end + +2025-09-24 12:17:31,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:33,144 INFO Connection check task start + +2025-09-24 12:17:33,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:33,144 INFO Out dated connection ,size=0 + +2025-09-24 12:17:33,144 INFO Connection check task end + +2025-09-24 12:17:34,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:36,144 INFO Connection check task start + +2025-09-24 12:17:36,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:36,145 INFO Out dated connection ,size=0 + +2025-09-24 12:17:36,145 INFO Connection check task end + +2025-09-24 12:17:37,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:39,145 INFO Connection check task start + +2025-09-24 12:17:39,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:39,145 INFO Out dated connection ,size=0 + +2025-09-24 12:17:39,145 INFO Connection check task end + +2025-09-24 12:17:40,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:42,147 INFO Connection check task start + +2025-09-24 12:17:42,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:42,148 INFO Out dated connection ,size=0 + +2025-09-24 12:17:42,148 INFO Connection check task end + +2025-09-24 12:17:43,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:45,148 INFO Connection check task start + +2025-09-24 12:17:45,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:45,148 INFO Out dated connection ,size=0 + +2025-09-24 12:17:45,148 INFO Connection check task end + +2025-09-24 12:17:46,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:48,148 INFO Connection check task start + +2025-09-24 12:17:48,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:48,148 INFO Out dated connection ,size=0 + +2025-09-24 12:17:48,148 INFO Connection check task end + +2025-09-24 12:17:49,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:51,150 INFO Connection check task start + +2025-09-24 12:17:51,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:51,150 INFO Out dated connection ,size=0 + +2025-09-24 12:17:51,150 INFO Connection check task end + +2025-09-24 12:17:52,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:54,150 INFO Connection check task start + +2025-09-24 12:17:54,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:54,150 INFO Out dated connection ,size=0 + +2025-09-24 12:17:54,150 INFO Connection check task end + +2025-09-24 12:17:55,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:17:57,151 INFO Connection check task start + +2025-09-24 12:17:57,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:17:57,151 INFO Out dated connection ,size=0 + +2025-09-24 12:17:57,151 INFO Connection check task end + +2025-09-24 12:17:58,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:00,153 INFO Connection check task start + +2025-09-24 12:18:00,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:00,153 INFO Out dated connection ,size=0 + +2025-09-24 12:18:00,153 INFO Connection check task end + +2025-09-24 12:18:01,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:03,153 INFO Connection check task start + +2025-09-24 12:18:03,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:03,153 INFO Out dated connection ,size=0 + +2025-09-24 12:18:03,154 INFO Connection check task end + +2025-09-24 12:18:04,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:06,154 INFO Connection check task start + +2025-09-24 12:18:06,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:06,154 INFO Out dated connection ,size=0 + +2025-09-24 12:18:06,154 INFO Connection check task end + +2025-09-24 12:18:07,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:09,156 INFO Connection check task start + +2025-09-24 12:18:09,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:09,156 INFO Out dated connection ,size=0 + +2025-09-24 12:18:09,156 INFO Connection check task end + +2025-09-24 12:18:10,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:12,157 INFO Connection check task start + +2025-09-24 12:18:12,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:12,157 INFO Out dated connection ,size=0 + +2025-09-24 12:18:12,157 INFO Connection check task end + +2025-09-24 12:18:13,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:15,157 INFO Connection check task start + +2025-09-24 12:18:15,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:15,158 INFO Out dated connection ,size=0 + +2025-09-24 12:18:15,158 INFO Connection check task end + +2025-09-24 12:18:16,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:18,158 INFO Connection check task start + +2025-09-24 12:18:18,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:18,158 INFO Out dated connection ,size=0 + +2025-09-24 12:18:18,158 INFO Connection check task end + +2025-09-24 12:18:19,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:21,158 INFO Connection check task start + +2025-09-24 12:18:21,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:21,158 INFO Out dated connection ,size=0 + +2025-09-24 12:18:21,158 INFO Connection check task end + +2025-09-24 12:18:22,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:24,159 INFO Connection check task start + +2025-09-24 12:18:24,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:24,159 INFO Out dated connection ,size=0 + +2025-09-24 12:18:24,159 INFO Connection check task end + +2025-09-24 12:18:25,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:27,161 INFO Connection check task start + +2025-09-24 12:18:27,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:27,161 INFO Out dated connection ,size=0 + +2025-09-24 12:18:27,161 INFO Connection check task end + +2025-09-24 12:18:28,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:30,162 INFO Connection check task start + +2025-09-24 12:18:30,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:30,162 INFO Out dated connection ,size=0 + +2025-09-24 12:18:30,162 INFO Connection check task end + +2025-09-24 12:18:31,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:33,163 INFO Connection check task start + +2025-09-24 12:18:33,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:33,163 INFO Out dated connection ,size=0 + +2025-09-24 12:18:33,163 INFO Connection check task end + +2025-09-24 12:18:34,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:36,164 INFO Connection check task start + +2025-09-24 12:18:36,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:36,164 INFO Out dated connection ,size=0 + +2025-09-24 12:18:36,164 INFO Connection check task end + +2025-09-24 12:18:37,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:39,164 INFO Connection check task start + +2025-09-24 12:18:39,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:39,165 INFO Out dated connection ,size=0 + +2025-09-24 12:18:39,165 INFO Connection check task end + +2025-09-24 12:18:40,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:42,165 INFO Connection check task start + +2025-09-24 12:18:42,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:42,165 INFO Out dated connection ,size=0 + +2025-09-24 12:18:42,165 INFO Connection check task end + +2025-09-24 12:18:43,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:45,165 INFO Connection check task start + +2025-09-24 12:18:45,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:45,166 INFO Out dated connection ,size=0 + +2025-09-24 12:18:45,166 INFO Connection check task end + +2025-09-24 12:18:46,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:48,166 INFO Connection check task start + +2025-09-24 12:18:48,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:48,167 INFO Out dated connection ,size=0 + +2025-09-24 12:18:48,167 INFO Connection check task end + +2025-09-24 12:18:49,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:51,169 INFO Connection check task start + +2025-09-24 12:18:51,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:51,169 INFO Out dated connection ,size=0 + +2025-09-24 12:18:51,169 INFO Connection check task end + +2025-09-24 12:18:52,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:54,169 INFO Connection check task start + +2025-09-24 12:18:54,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:54,169 INFO Out dated connection ,size=0 + +2025-09-24 12:18:54,169 INFO Connection check task end + +2025-09-24 12:18:55,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:18:57,171 INFO Connection check task start + +2025-09-24 12:18:57,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:18:57,171 INFO Out dated connection ,size=0 + +2025-09-24 12:18:57,171 INFO Connection check task end + +2025-09-24 12:18:58,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:00,173 INFO Connection check task start + +2025-09-24 12:19:00,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:00,173 INFO Out dated connection ,size=0 + +2025-09-24 12:19:00,173 INFO Connection check task end + +2025-09-24 12:19:01,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:03,175 INFO Connection check task start + +2025-09-24 12:19:03,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:03,175 INFO Out dated connection ,size=0 + +2025-09-24 12:19:03,175 INFO Connection check task end + +2025-09-24 12:19:04,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:06,175 INFO Connection check task start + +2025-09-24 12:19:06,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:06,175 INFO Out dated connection ,size=0 + +2025-09-24 12:19:06,175 INFO Connection check task end + +2025-09-24 12:19:07,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:09,176 INFO Connection check task start + +2025-09-24 12:19:09,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:09,176 INFO Out dated connection ,size=0 + +2025-09-24 12:19:09,176 INFO Connection check task end + +2025-09-24 12:19:10,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:12,178 INFO Connection check task start + +2025-09-24 12:19:12,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:12,178 INFO Out dated connection ,size=0 + +2025-09-24 12:19:12,178 INFO Connection check task end + +2025-09-24 12:19:13,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:15,178 INFO Connection check task start + +2025-09-24 12:19:15,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:15,178 INFO Out dated connection ,size=0 + +2025-09-24 12:19:15,178 INFO Connection check task end + +2025-09-24 12:19:16,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:18,180 INFO Connection check task start + +2025-09-24 12:19:18,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:18,180 INFO Out dated connection ,size=0 + +2025-09-24 12:19:18,180 INFO Connection check task end + +2025-09-24 12:19:19,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:21,182 INFO Connection check task start + +2025-09-24 12:19:21,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:21,182 INFO Out dated connection ,size=0 + +2025-09-24 12:19:21,182 INFO Connection check task end + +2025-09-24 12:19:22,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:24,182 INFO Connection check task start + +2025-09-24 12:19:24,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:24,183 INFO Out dated connection ,size=0 + +2025-09-24 12:19:24,183 INFO Connection check task end + +2025-09-24 12:19:25,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:27,184 INFO Connection check task start + +2025-09-24 12:19:27,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:27,184 INFO Out dated connection ,size=0 + +2025-09-24 12:19:27,184 INFO Connection check task end + +2025-09-24 12:19:28,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:30,186 INFO Connection check task start + +2025-09-24 12:19:30,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:30,186 INFO Out dated connection ,size=0 + +2025-09-24 12:19:30,186 INFO Connection check task end + +2025-09-24 12:19:31,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:33,187 INFO Connection check task start + +2025-09-24 12:19:33,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:33,187 INFO Out dated connection ,size=0 + +2025-09-24 12:19:33,187 INFO Connection check task end + +2025-09-24 12:19:34,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:36,188 INFO Connection check task start + +2025-09-24 12:19:36,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:36,188 INFO Out dated connection ,size=0 + +2025-09-24 12:19:36,188 INFO Connection check task end + +2025-09-24 12:19:37,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:39,190 INFO Connection check task start + +2025-09-24 12:19:39,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:39,190 INFO Out dated connection ,size=0 + +2025-09-24 12:19:39,190 INFO Connection check task end + +2025-09-24 12:19:40,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:42,191 INFO Connection check task start + +2025-09-24 12:19:42,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:42,191 INFO Out dated connection ,size=0 + +2025-09-24 12:19:42,191 INFO Connection check task end + +2025-09-24 12:19:43,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:45,193 INFO Connection check task start + +2025-09-24 12:19:45,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:45,193 INFO Out dated connection ,size=0 + +2025-09-24 12:19:45,193 INFO Connection check task end + +2025-09-24 12:19:46,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:48,194 INFO Connection check task start + +2025-09-24 12:19:48,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:48,194 INFO Out dated connection ,size=0 + +2025-09-24 12:19:48,194 INFO Connection check task end + +2025-09-24 12:19:49,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:51,195 INFO Connection check task start + +2025-09-24 12:19:51,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:51,195 INFO Out dated connection ,size=0 + +2025-09-24 12:19:51,195 INFO Connection check task end + +2025-09-24 12:19:52,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:54,196 INFO Connection check task start + +2025-09-24 12:19:54,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:54,196 INFO Out dated connection ,size=0 + +2025-09-24 12:19:54,196 INFO Connection check task end + +2025-09-24 12:19:55,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:19:57,197 INFO Connection check task start + +2025-09-24 12:19:57,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:19:57,197 INFO Out dated connection ,size=0 + +2025-09-24 12:19:57,197 INFO Connection check task end + +2025-09-24 12:19:58,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:00,199 INFO Connection check task start + +2025-09-24 12:20:00,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:00,199 INFO Out dated connection ,size=0 + +2025-09-24 12:20:00,200 INFO Connection check task end + +2025-09-24 12:20:01,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:03,202 INFO Connection check task start + +2025-09-24 12:20:03,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:03,202 INFO Out dated connection ,size=0 + +2025-09-24 12:20:03,202 INFO Connection check task end + +2025-09-24 12:20:04,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:06,204 INFO Connection check task start + +2025-09-24 12:20:06,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:06,204 INFO Out dated connection ,size=0 + +2025-09-24 12:20:06,204 INFO Connection check task end + +2025-09-24 12:20:07,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:09,206 INFO Connection check task start + +2025-09-24 12:20:09,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:09,206 INFO Out dated connection ,size=0 + +2025-09-24 12:20:09,206 INFO Connection check task end + +2025-09-24 12:20:10,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:12,206 INFO Connection check task start + +2025-09-24 12:20:12,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:12,207 INFO Out dated connection ,size=0 + +2025-09-24 12:20:12,207 INFO Connection check task end + +2025-09-24 12:20:13,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:15,208 INFO Connection check task start + +2025-09-24 12:20:15,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:15,208 INFO Out dated connection ,size=0 + +2025-09-24 12:20:15,208 INFO Connection check task end + +2025-09-24 12:20:16,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:18,208 INFO Connection check task start + +2025-09-24 12:20:18,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:18,209 INFO Out dated connection ,size=0 + +2025-09-24 12:20:18,209 INFO Connection check task end + +2025-09-24 12:20:19,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:21,209 INFO Connection check task start + +2025-09-24 12:20:21,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:21,209 INFO Out dated connection ,size=0 + +2025-09-24 12:20:21,209 INFO Connection check task end + +2025-09-24 12:20:22,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:24,210 INFO Connection check task start + +2025-09-24 12:20:24,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:24,210 INFO Out dated connection ,size=0 + +2025-09-24 12:20:24,210 INFO Connection check task end + +2025-09-24 12:20:25,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:27,211 INFO Connection check task start + +2025-09-24 12:20:27,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:27,211 INFO Out dated connection ,size=0 + +2025-09-24 12:20:27,211 INFO Connection check task end + +2025-09-24 12:20:28,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:30,211 INFO Connection check task start + +2025-09-24 12:20:30,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:30,212 INFO Out dated connection ,size=0 + +2025-09-24 12:20:30,212 INFO Connection check task end + +2025-09-24 12:20:31,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:33,212 INFO Connection check task start + +2025-09-24 12:20:33,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:33,212 INFO Out dated connection ,size=0 + +2025-09-24 12:20:33,212 INFO Connection check task end + +2025-09-24 12:20:34,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:36,213 INFO Connection check task start + +2025-09-24 12:20:36,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:36,213 INFO Out dated connection ,size=0 + +2025-09-24 12:20:36,213 INFO Connection check task end + +2025-09-24 12:20:37,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:39,215 INFO Connection check task start + +2025-09-24 12:20:39,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:39,215 INFO Out dated connection ,size=0 + +2025-09-24 12:20:39,215 INFO Connection check task end + +2025-09-24 12:20:40,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:42,215 INFO Connection check task start + +2025-09-24 12:20:42,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:42,216 INFO Out dated connection ,size=0 + +2025-09-24 12:20:42,216 INFO Connection check task end + +2025-09-24 12:20:43,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:45,217 INFO Connection check task start + +2025-09-24 12:20:45,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:45,217 INFO Out dated connection ,size=0 + +2025-09-24 12:20:45,217 INFO Connection check task end + +2025-09-24 12:20:46,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:48,218 INFO Connection check task start + +2025-09-24 12:20:48,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:48,218 INFO Out dated connection ,size=0 + +2025-09-24 12:20:48,218 INFO Connection check task end + +2025-09-24 12:20:49,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:51,218 INFO Connection check task start + +2025-09-24 12:20:51,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:51,219 INFO Out dated connection ,size=0 + +2025-09-24 12:20:51,219 INFO Connection check task end + +2025-09-24 12:20:52,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:54,220 INFO Connection check task start + +2025-09-24 12:20:54,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:54,220 INFO Out dated connection ,size=0 + +2025-09-24 12:20:54,220 INFO Connection check task end + +2025-09-24 12:20:55,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:20:57,220 INFO Connection check task start + +2025-09-24 12:20:57,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:20:57,221 INFO Out dated connection ,size=0 + +2025-09-24 12:20:57,221 INFO Connection check task end + +2025-09-24 12:20:58,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:00,221 INFO Connection check task start + +2025-09-24 12:21:00,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:00,221 INFO Out dated connection ,size=0 + +2025-09-24 12:21:00,221 INFO Connection check task end + +2025-09-24 12:21:01,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:03,223 INFO Connection check task start + +2025-09-24 12:21:03,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:03,223 INFO Out dated connection ,size=0 + +2025-09-24 12:21:03,223 INFO Connection check task end + +2025-09-24 12:21:04,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:06,225 INFO Connection check task start + +2025-09-24 12:21:06,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:06,225 INFO Out dated connection ,size=0 + +2025-09-24 12:21:06,225 INFO Connection check task end + +2025-09-24 12:21:07,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:09,225 INFO Connection check task start + +2025-09-24 12:21:09,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:09,225 INFO Out dated connection ,size=0 + +2025-09-24 12:21:09,225 INFO Connection check task end + +2025-09-24 12:21:10,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:12,227 INFO Connection check task start + +2025-09-24 12:21:12,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:12,227 INFO Out dated connection ,size=0 + +2025-09-24 12:21:12,227 INFO Connection check task end + +2025-09-24 12:21:13,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:15,227 INFO Connection check task start + +2025-09-24 12:21:15,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:15,228 INFO Out dated connection ,size=0 + +2025-09-24 12:21:15,228 INFO Connection check task end + +2025-09-24 12:21:16,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:18,228 INFO Connection check task start + +2025-09-24 12:21:18,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:18,228 INFO Out dated connection ,size=0 + +2025-09-24 12:21:18,228 INFO Connection check task end + +2025-09-24 12:21:19,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:21,230 INFO Connection check task start + +2025-09-24 12:21:21,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:21,231 INFO Out dated connection ,size=0 + +2025-09-24 12:21:21,231 INFO Connection check task end + +2025-09-24 12:21:22,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:24,231 INFO Connection check task start + +2025-09-24 12:21:24,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:24,231 INFO Out dated connection ,size=0 + +2025-09-24 12:21:24,231 INFO Connection check task end + +2025-09-24 12:21:25,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:27,232 INFO Connection check task start + +2025-09-24 12:21:27,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:27,232 INFO Out dated connection ,size=0 + +2025-09-24 12:21:27,232 INFO Connection check task end + +2025-09-24 12:21:28,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:30,234 INFO Connection check task start + +2025-09-24 12:21:30,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:30,234 INFO Out dated connection ,size=0 + +2025-09-24 12:21:30,234 INFO Connection check task end + +2025-09-24 12:21:31,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:33,237 INFO Connection check task start + +2025-09-24 12:21:33,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:33,237 INFO Out dated connection ,size=0 + +2025-09-24 12:21:33,237 INFO Connection check task end + +2025-09-24 12:21:34,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:36,239 INFO Connection check task start + +2025-09-24 12:21:36,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:36,239 INFO Out dated connection ,size=0 + +2025-09-24 12:21:36,239 INFO Connection check task end + +2025-09-24 12:21:37,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:39,241 INFO Connection check task start + +2025-09-24 12:21:39,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:39,241 INFO Out dated connection ,size=0 + +2025-09-24 12:21:39,241 INFO Connection check task end + +2025-09-24 12:21:40,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:42,242 INFO Connection check task start + +2025-09-24 12:21:42,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:42,242 INFO Out dated connection ,size=0 + +2025-09-24 12:21:42,242 INFO Connection check task end + +2025-09-24 12:21:43,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:45,242 INFO Connection check task start + +2025-09-24 12:21:45,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:45,243 INFO Out dated connection ,size=0 + +2025-09-24 12:21:45,243 INFO Connection check task end + +2025-09-24 12:21:46,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:48,243 INFO Connection check task start + +2025-09-24 12:21:48,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:48,243 INFO Out dated connection ,size=0 + +2025-09-24 12:21:48,243 INFO Connection check task end + +2025-09-24 12:21:49,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:51,245 INFO Connection check task start + +2025-09-24 12:21:51,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:51,245 INFO Out dated connection ,size=0 + +2025-09-24 12:21:51,245 INFO Connection check task end + +2025-09-24 12:21:52,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:54,247 INFO Connection check task start + +2025-09-24 12:21:54,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:54,247 INFO Out dated connection ,size=0 + +2025-09-24 12:21:54,247 INFO Connection check task end + +2025-09-24 12:21:55,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:21:57,248 INFO Connection check task start + +2025-09-24 12:21:57,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:21:57,248 INFO Out dated connection ,size=0 + +2025-09-24 12:21:57,248 INFO Connection check task end + +2025-09-24 12:21:58,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:00,249 INFO Connection check task start + +2025-09-24 12:22:00,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:00,250 INFO Out dated connection ,size=0 + +2025-09-24 12:22:00,250 INFO Connection check task end + +2025-09-24 12:22:01,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:03,250 INFO Connection check task start + +2025-09-24 12:22:03,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:03,250 INFO Out dated connection ,size=0 + +2025-09-24 12:22:03,250 INFO Connection check task end + +2025-09-24 12:22:04,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:06,252 INFO Connection check task start + +2025-09-24 12:22:06,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:06,252 INFO Out dated connection ,size=0 + +2025-09-24 12:22:06,252 INFO Connection check task end + +2025-09-24 12:22:07,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:09,254 INFO Connection check task start + +2025-09-24 12:22:09,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:09,255 INFO Out dated connection ,size=0 + +2025-09-24 12:22:09,255 INFO Connection check task end + +2025-09-24 12:22:10,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:12,256 INFO Connection check task start + +2025-09-24 12:22:12,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:12,257 INFO Out dated connection ,size=0 + +2025-09-24 12:22:12,257 INFO Connection check task end + +2025-09-24 12:22:13,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:15,257 INFO Connection check task start + +2025-09-24 12:22:15,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:15,257 INFO Out dated connection ,size=0 + +2025-09-24 12:22:15,257 INFO Connection check task end + +2025-09-24 12:22:16,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:18,258 INFO Connection check task start + +2025-09-24 12:22:18,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:18,258 INFO Out dated connection ,size=0 + +2025-09-24 12:22:18,258 INFO Connection check task end + +2025-09-24 12:22:19,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:21,258 INFO Connection check task start + +2025-09-24 12:22:21,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:21,259 INFO Out dated connection ,size=0 + +2025-09-24 12:22:21,259 INFO Connection check task end + +2025-09-24 12:22:22,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:24,259 INFO Connection check task start + +2025-09-24 12:22:24,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:24,259 INFO Out dated connection ,size=0 + +2025-09-24 12:22:24,259 INFO Connection check task end + +2025-09-24 12:22:25,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:27,262 INFO Connection check task start + +2025-09-24 12:22:27,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:27,262 INFO Out dated connection ,size=0 + +2025-09-24 12:22:27,262 INFO Connection check task end + +2025-09-24 12:22:28,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:30,262 INFO Connection check task start + +2025-09-24 12:22:30,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:30,262 INFO Out dated connection ,size=0 + +2025-09-24 12:22:30,263 INFO Connection check task end + +2025-09-24 12:22:31,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:33,263 INFO Connection check task start + +2025-09-24 12:22:33,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:33,263 INFO Out dated connection ,size=0 + +2025-09-24 12:22:33,263 INFO Connection check task end + +2025-09-24 12:22:34,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:36,264 INFO Connection check task start + +2025-09-24 12:22:36,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:36,264 INFO Out dated connection ,size=0 + +2025-09-24 12:22:36,264 INFO Connection check task end + +2025-09-24 12:22:37,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:39,266 INFO Connection check task start + +2025-09-24 12:22:39,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:39,267 INFO Out dated connection ,size=0 + +2025-09-24 12:22:39,267 INFO Connection check task end + +2025-09-24 12:22:40,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:42,267 INFO Connection check task start + +2025-09-24 12:22:42,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:42,267 INFO Out dated connection ,size=0 + +2025-09-24 12:22:42,267 INFO Connection check task end + +2025-09-24 12:22:43,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:45,268 INFO Connection check task start + +2025-09-24 12:22:45,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:45,268 INFO Out dated connection ,size=0 + +2025-09-24 12:22:45,268 INFO Connection check task end + +2025-09-24 12:22:46,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:48,268 INFO Connection check task start + +2025-09-24 12:22:48,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:48,269 INFO Out dated connection ,size=0 + +2025-09-24 12:22:48,269 INFO Connection check task end + +2025-09-24 12:22:49,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:51,270 INFO Connection check task start + +2025-09-24 12:22:51,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:51,270 INFO Out dated connection ,size=0 + +2025-09-24 12:22:51,270 INFO Connection check task end + +2025-09-24 12:22:52,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:54,271 INFO Connection check task start + +2025-09-24 12:22:54,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:54,271 INFO Out dated connection ,size=0 + +2025-09-24 12:22:54,271 INFO Connection check task end + +2025-09-24 12:22:55,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:22:57,272 INFO Connection check task start + +2025-09-24 12:22:57,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:22:57,272 INFO Out dated connection ,size=0 + +2025-09-24 12:22:57,272 INFO Connection check task end + +2025-09-24 12:22:58,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:00,273 INFO Connection check task start + +2025-09-24 12:23:00,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:00,274 INFO Out dated connection ,size=0 + +2025-09-24 12:23:00,274 INFO Connection check task end + +2025-09-24 12:23:01,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:03,275 INFO Connection check task start + +2025-09-24 12:23:03,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:03,275 INFO Out dated connection ,size=0 + +2025-09-24 12:23:03,275 INFO Connection check task end + +2025-09-24 12:23:04,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:06,276 INFO Connection check task start + +2025-09-24 12:23:06,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:06,276 INFO Out dated connection ,size=0 + +2025-09-24 12:23:06,276 INFO Connection check task end + +2025-09-24 12:23:07,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:09,278 INFO Connection check task start + +2025-09-24 12:23:09,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:09,278 INFO Out dated connection ,size=0 + +2025-09-24 12:23:09,278 INFO Connection check task end + +2025-09-24 12:23:10,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:12,278 INFO Connection check task start + +2025-09-24 12:23:12,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:12,279 INFO Out dated connection ,size=0 + +2025-09-24 12:23:12,279 INFO Connection check task end + +2025-09-24 12:23:13,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:15,279 INFO Connection check task start + +2025-09-24 12:23:15,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:15,279 INFO Out dated connection ,size=0 + +2025-09-24 12:23:15,280 INFO Connection check task end + +2025-09-24 12:23:16,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:18,280 INFO Connection check task start + +2025-09-24 12:23:18,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:18,280 INFO Out dated connection ,size=0 + +2025-09-24 12:23:18,280 INFO Connection check task end + +2025-09-24 12:23:19,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:21,282 INFO Connection check task start + +2025-09-24 12:23:21,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:21,282 INFO Out dated connection ,size=0 + +2025-09-24 12:23:21,282 INFO Connection check task end + +2025-09-24 12:23:22,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:24,282 INFO Connection check task start + +2025-09-24 12:23:24,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:24,282 INFO Out dated connection ,size=0 + +2025-09-24 12:23:24,283 INFO Connection check task end + +2025-09-24 12:23:25,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:27,283 INFO Connection check task start + +2025-09-24 12:23:27,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:27,283 INFO Out dated connection ,size=0 + +2025-09-24 12:23:27,283 INFO Connection check task end + +2025-09-24 12:23:28,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:30,284 INFO Connection check task start + +2025-09-24 12:23:30,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:30,285 INFO Out dated connection ,size=0 + +2025-09-24 12:23:30,285 INFO Connection check task end + +2025-09-24 12:23:31,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:33,286 INFO Connection check task start + +2025-09-24 12:23:33,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:33,286 INFO Out dated connection ,size=0 + +2025-09-24 12:23:33,286 INFO Connection check task end + +2025-09-24 12:23:34,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:36,288 INFO Connection check task start + +2025-09-24 12:23:36,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:36,288 INFO Out dated connection ,size=0 + +2025-09-24 12:23:36,289 INFO Connection check task end + +2025-09-24 12:23:37,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:39,290 INFO Connection check task start + +2025-09-24 12:23:39,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:39,290 INFO Out dated connection ,size=0 + +2025-09-24 12:23:39,290 INFO Connection check task end + +2025-09-24 12:23:40,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:42,290 INFO Connection check task start + +2025-09-24 12:23:42,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:42,290 INFO Out dated connection ,size=0 + +2025-09-24 12:23:42,290 INFO Connection check task end + +2025-09-24 12:23:43,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:45,291 INFO Connection check task start + +2025-09-24 12:23:45,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:45,291 INFO Out dated connection ,size=0 + +2025-09-24 12:23:45,291 INFO Connection check task end + +2025-09-24 12:23:46,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:48,292 INFO Connection check task start + +2025-09-24 12:23:48,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:48,292 INFO Out dated connection ,size=0 + +2025-09-24 12:23:48,292 INFO Connection check task end + +2025-09-24 12:23:49,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:51,294 INFO Connection check task start + +2025-09-24 12:23:51,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:51,294 INFO Out dated connection ,size=0 + +2025-09-24 12:23:51,294 INFO Connection check task end + +2025-09-24 12:23:52,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:54,295 INFO Connection check task start + +2025-09-24 12:23:54,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:54,296 INFO Out dated connection ,size=0 + +2025-09-24 12:23:54,296 INFO Connection check task end + +2025-09-24 12:23:55,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:23:57,296 INFO Connection check task start + +2025-09-24 12:23:57,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:23:57,296 INFO Out dated connection ,size=0 + +2025-09-24 12:23:57,296 INFO Connection check task end + +2025-09-24 12:23:58,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:00,298 INFO Connection check task start + +2025-09-24 12:24:00,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:00,298 INFO Out dated connection ,size=0 + +2025-09-24 12:24:00,298 INFO Connection check task end + +2025-09-24 12:24:01,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:03,303 INFO Connection check task start + +2025-09-24 12:24:03,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:03,303 INFO Out dated connection ,size=0 + +2025-09-24 12:24:03,303 INFO Connection check task end + +2025-09-24 12:24:04,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:06,305 INFO Connection check task start + +2025-09-24 12:24:06,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:06,306 INFO Out dated connection ,size=0 + +2025-09-24 12:24:06,306 INFO Connection check task end + +2025-09-24 12:24:07,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:09,306 INFO Connection check task start + +2025-09-24 12:24:09,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:09,306 INFO Out dated connection ,size=0 + +2025-09-24 12:24:09,306 INFO Connection check task end + +2025-09-24 12:24:10,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:12,306 INFO Connection check task start + +2025-09-24 12:24:12,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:12,307 INFO Out dated connection ,size=0 + +2025-09-24 12:24:12,307 INFO Connection check task end + +2025-09-24 12:24:13,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:15,307 INFO Connection check task start + +2025-09-24 12:24:15,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:15,307 INFO Out dated connection ,size=0 + +2025-09-24 12:24:15,307 INFO Connection check task end + +2025-09-24 12:24:16,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:18,308 INFO Connection check task start + +2025-09-24 12:24:18,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:18,308 INFO Out dated connection ,size=0 + +2025-09-24 12:24:18,308 INFO Connection check task end + +2025-09-24 12:24:19,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:21,308 INFO Connection check task start + +2025-09-24 12:24:21,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:21,308 INFO Out dated connection ,size=0 + +2025-09-24 12:24:21,308 INFO Connection check task end + +2025-09-24 12:24:22,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:24,309 INFO Connection check task start + +2025-09-24 12:24:24,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:24,309 INFO Out dated connection ,size=0 + +2025-09-24 12:24:24,309 INFO Connection check task end + +2025-09-24 12:24:25,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:27,311 INFO Connection check task start + +2025-09-24 12:24:27,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:27,311 INFO Out dated connection ,size=0 + +2025-09-24 12:24:27,311 INFO Connection check task end + +2025-09-24 12:24:28,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:30,311 INFO Connection check task start + +2025-09-24 12:24:30,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:30,312 INFO Out dated connection ,size=0 + +2025-09-24 12:24:30,312 INFO Connection check task end + +2025-09-24 12:24:31,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:33,313 INFO Connection check task start + +2025-09-24 12:24:33,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:33,314 INFO Out dated connection ,size=0 + +2025-09-24 12:24:33,314 INFO Connection check task end + +2025-09-24 12:24:34,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:36,315 INFO Connection check task start + +2025-09-24 12:24:36,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:36,316 INFO Out dated connection ,size=0 + +2025-09-24 12:24:36,316 INFO Connection check task end + +2025-09-24 12:24:37,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:39,317 INFO Connection check task start + +2025-09-24 12:24:39,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:39,317 INFO Out dated connection ,size=0 + +2025-09-24 12:24:39,317 INFO Connection check task end + +2025-09-24 12:24:40,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:42,317 INFO Connection check task start + +2025-09-24 12:24:42,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:42,318 INFO Out dated connection ,size=0 + +2025-09-24 12:24:42,318 INFO Connection check task end + +2025-09-24 12:24:43,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:45,319 INFO Connection check task start + +2025-09-24 12:24:45,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:45,319 INFO Out dated connection ,size=0 + +2025-09-24 12:24:45,319 INFO Connection check task end + +2025-09-24 12:24:46,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:48,319 INFO Connection check task start + +2025-09-24 12:24:48,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:48,320 INFO Out dated connection ,size=0 + +2025-09-24 12:24:48,320 INFO Connection check task end + +2025-09-24 12:24:49,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:51,321 INFO Connection check task start + +2025-09-24 12:24:51,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:51,321 INFO Out dated connection ,size=0 + +2025-09-24 12:24:51,321 INFO Connection check task end + +2025-09-24 12:24:52,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:54,323 INFO Connection check task start + +2025-09-24 12:24:54,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:54,323 INFO Out dated connection ,size=0 + +2025-09-24 12:24:54,323 INFO Connection check task end + +2025-09-24 12:24:55,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:24:57,323 INFO Connection check task start + +2025-09-24 12:24:57,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:24:57,324 INFO Out dated connection ,size=0 + +2025-09-24 12:24:57,324 INFO Connection check task end + +2025-09-24 12:24:58,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:00,324 INFO Connection check task start + +2025-09-24 12:25:00,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:00,325 INFO Out dated connection ,size=0 + +2025-09-24 12:25:00,325 INFO Connection check task end + +2025-09-24 12:25:01,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:03,325 INFO Connection check task start + +2025-09-24 12:25:03,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:03,325 INFO Out dated connection ,size=0 + +2025-09-24 12:25:03,325 INFO Connection check task end + +2025-09-24 12:25:04,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:06,326 INFO Connection check task start + +2025-09-24 12:25:06,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:06,326 INFO Out dated connection ,size=0 + +2025-09-24 12:25:06,326 INFO Connection check task end + +2025-09-24 12:25:07,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:09,327 INFO Connection check task start + +2025-09-24 12:25:09,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:09,327 INFO Out dated connection ,size=0 + +2025-09-24 12:25:09,327 INFO Connection check task end + +2025-09-24 12:25:10,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:12,327 INFO Connection check task start + +2025-09-24 12:25:12,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:12,327 INFO Out dated connection ,size=0 + +2025-09-24 12:25:12,327 INFO Connection check task end + +2025-09-24 12:25:13,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:15,328 INFO Connection check task start + +2025-09-24 12:25:15,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:15,328 INFO Out dated connection ,size=0 + +2025-09-24 12:25:15,328 INFO Connection check task end + +2025-09-24 12:25:16,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:18,331 INFO Connection check task start + +2025-09-24 12:25:18,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:18,333 INFO Out dated connection ,size=0 + +2025-09-24 12:25:18,333 INFO Connection check task end + +2025-09-24 12:25:19,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:21,335 INFO Connection check task start + +2025-09-24 12:25:21,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:21,335 INFO Out dated connection ,size=0 + +2025-09-24 12:25:21,335 INFO Connection check task end + +2025-09-24 12:25:22,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:24,337 INFO Connection check task start + +2025-09-24 12:25:24,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:24,337 INFO Out dated connection ,size=0 + +2025-09-24 12:25:24,337 INFO Connection check task end + +2025-09-24 12:25:25,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:27,338 INFO Connection check task start + +2025-09-24 12:25:27,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:27,338 INFO Out dated connection ,size=0 + +2025-09-24 12:25:27,338 INFO Connection check task end + +2025-09-24 12:25:28,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:30,339 INFO Connection check task start + +2025-09-24 12:25:30,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:30,339 INFO Out dated connection ,size=0 + +2025-09-24 12:25:30,340 INFO Connection check task end + +2025-09-24 12:25:31,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:33,340 INFO Connection check task start + +2025-09-24 12:25:33,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:33,341 INFO Out dated connection ,size=0 + +2025-09-24 12:25:33,341 INFO Connection check task end + +2025-09-24 12:25:34,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:36,341 INFO Connection check task start + +2025-09-24 12:25:36,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:36,341 INFO Out dated connection ,size=0 + +2025-09-24 12:25:36,341 INFO Connection check task end + +2025-09-24 12:25:37,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:39,342 INFO Connection check task start + +2025-09-24 12:25:39,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:39,342 INFO Out dated connection ,size=0 + +2025-09-24 12:25:39,342 INFO Connection check task end + +2025-09-24 12:25:40,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:42,344 INFO Connection check task start + +2025-09-24 12:25:42,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:42,345 INFO Out dated connection ,size=0 + +2025-09-24 12:25:42,345 INFO Connection check task end + +2025-09-24 12:25:43,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:45,345 INFO Connection check task start + +2025-09-24 12:25:45,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:45,345 INFO Out dated connection ,size=0 + +2025-09-24 12:25:45,345 INFO Connection check task end + +2025-09-24 12:25:46,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:48,347 INFO Connection check task start + +2025-09-24 12:25:48,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:48,347 INFO Out dated connection ,size=0 + +2025-09-24 12:25:48,347 INFO Connection check task end + +2025-09-24 12:25:49,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:51,349 INFO Connection check task start + +2025-09-24 12:25:51,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:51,349 INFO Out dated connection ,size=0 + +2025-09-24 12:25:51,349 INFO Connection check task end + +2025-09-24 12:25:52,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:54,351 INFO Connection check task start + +2025-09-24 12:25:54,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:54,351 INFO Out dated connection ,size=0 + +2025-09-24 12:25:54,351 INFO Connection check task end + +2025-09-24 12:25:55,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:25:57,351 INFO Connection check task start + +2025-09-24 12:25:57,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:25:57,351 INFO Out dated connection ,size=0 + +2025-09-24 12:25:57,351 INFO Connection check task end + +2025-09-24 12:25:58,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:00,353 INFO Connection check task start + +2025-09-24 12:26:00,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:00,353 INFO Out dated connection ,size=0 + +2025-09-24 12:26:00,353 INFO Connection check task end + +2025-09-24 12:26:01,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:03,353 INFO Connection check task start + +2025-09-24 12:26:03,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:03,353 INFO Out dated connection ,size=0 + +2025-09-24 12:26:03,353 INFO Connection check task end + +2025-09-24 12:26:04,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:06,354 INFO Connection check task start + +2025-09-24 12:26:06,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:06,354 INFO Out dated connection ,size=0 + +2025-09-24 12:26:06,354 INFO Connection check task end + +2025-09-24 12:26:07,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:09,355 INFO Connection check task start + +2025-09-24 12:26:09,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:09,355 INFO Out dated connection ,size=0 + +2025-09-24 12:26:09,355 INFO Connection check task end + +2025-09-24 12:26:10,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:12,356 INFO Connection check task start + +2025-09-24 12:26:12,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:12,356 INFO Out dated connection ,size=0 + +2025-09-24 12:26:12,356 INFO Connection check task end + +2025-09-24 12:26:13,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:15,357 INFO Connection check task start + +2025-09-24 12:26:15,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:15,357 INFO Out dated connection ,size=0 + +2025-09-24 12:26:15,357 INFO Connection check task end + +2025-09-24 12:26:16,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:18,359 INFO Connection check task start + +2025-09-24 12:26:18,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:18,359 INFO Out dated connection ,size=0 + +2025-09-24 12:26:18,359 INFO Connection check task end + +2025-09-24 12:26:19,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:21,361 INFO Connection check task start + +2025-09-24 12:26:21,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:21,361 INFO Out dated connection ,size=0 + +2025-09-24 12:26:21,361 INFO Connection check task end + +2025-09-24 12:26:22,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:24,362 INFO Connection check task start + +2025-09-24 12:26:24,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:24,362 INFO Out dated connection ,size=0 + +2025-09-24 12:26:24,362 INFO Connection check task end + +2025-09-24 12:26:25,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:27,363 INFO Connection check task start + +2025-09-24 12:26:27,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:27,363 INFO Out dated connection ,size=0 + +2025-09-24 12:26:27,363 INFO Connection check task end + +2025-09-24 12:26:28,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:30,364 INFO Connection check task start + +2025-09-24 12:26:30,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:30,364 INFO Out dated connection ,size=0 + +2025-09-24 12:26:30,364 INFO Connection check task end + +2025-09-24 12:26:31,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:33,364 INFO Connection check task start + +2025-09-24 12:26:33,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:33,364 INFO Out dated connection ,size=0 + +2025-09-24 12:26:33,364 INFO Connection check task end + +2025-09-24 12:26:34,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:36,365 INFO Connection check task start + +2025-09-24 12:26:36,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:36,365 INFO Out dated connection ,size=0 + +2025-09-24 12:26:36,365 INFO Connection check task end + +2025-09-24 12:26:37,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:39,366 INFO Connection check task start + +2025-09-24 12:26:39,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:39,366 INFO Out dated connection ,size=0 + +2025-09-24 12:26:39,366 INFO Connection check task end + +2025-09-24 12:26:40,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:42,368 INFO Connection check task start + +2025-09-24 12:26:42,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:42,368 INFO Out dated connection ,size=0 + +2025-09-24 12:26:42,368 INFO Connection check task end + +2025-09-24 12:26:43,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:45,369 INFO Connection check task start + +2025-09-24 12:26:45,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:45,369 INFO Out dated connection ,size=0 + +2025-09-24 12:26:45,370 INFO Connection check task end + +2025-09-24 12:26:46,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:48,370 INFO Connection check task start + +2025-09-24 12:26:48,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:48,370 INFO Out dated connection ,size=0 + +2025-09-24 12:26:48,370 INFO Connection check task end + +2025-09-24 12:26:49,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:51,370 INFO Connection check task start + +2025-09-24 12:26:51,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:51,371 INFO Out dated connection ,size=0 + +2025-09-24 12:26:51,371 INFO Connection check task end + +2025-09-24 12:26:52,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:54,373 INFO Connection check task start + +2025-09-24 12:26:54,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:54,373 INFO Out dated connection ,size=0 + +2025-09-24 12:26:54,373 INFO Connection check task end + +2025-09-24 12:26:55,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:26:57,373 INFO Connection check task start + +2025-09-24 12:26:57,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:26:57,374 INFO Out dated connection ,size=0 + +2025-09-24 12:26:57,374 INFO Connection check task end + +2025-09-24 12:26:58,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:00,374 INFO Connection check task start + +2025-09-24 12:27:00,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:00,374 INFO Out dated connection ,size=0 + +2025-09-24 12:27:00,374 INFO Connection check task end + +2025-09-24 12:27:01,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:03,375 INFO Connection check task start + +2025-09-24 12:27:03,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:03,375 INFO Out dated connection ,size=0 + +2025-09-24 12:27:03,375 INFO Connection check task end + +2025-09-24 12:27:04,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:06,377 INFO Connection check task start + +2025-09-24 12:27:06,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:06,378 INFO Out dated connection ,size=0 + +2025-09-24 12:27:06,378 INFO Connection check task end + +2025-09-24 12:27:07,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:09,378 INFO Connection check task start + +2025-09-24 12:27:09,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:09,379 INFO Out dated connection ,size=0 + +2025-09-24 12:27:09,379 INFO Connection check task end + +2025-09-24 12:27:10,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:12,379 INFO Connection check task start + +2025-09-24 12:27:12,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:12,379 INFO Out dated connection ,size=0 + +2025-09-24 12:27:12,379 INFO Connection check task end + +2025-09-24 12:27:13,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:15,380 INFO Connection check task start + +2025-09-24 12:27:15,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:15,381 INFO Out dated connection ,size=0 + +2025-09-24 12:27:15,381 INFO Connection check task end + +2025-09-24 12:27:16,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:18,383 INFO Connection check task start + +2025-09-24 12:27:18,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:18,383 INFO Out dated connection ,size=0 + +2025-09-24 12:27:18,383 INFO Connection check task end + +2025-09-24 12:27:19,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:21,383 INFO Connection check task start + +2025-09-24 12:27:21,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:21,384 INFO Out dated connection ,size=0 + +2025-09-24 12:27:21,384 INFO Connection check task end + +2025-09-24 12:27:22,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:24,384 INFO Connection check task start + +2025-09-24 12:27:24,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:24,384 INFO Out dated connection ,size=0 + +2025-09-24 12:27:24,384 INFO Connection check task end + +2025-09-24 12:27:25,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:27,385 INFO Connection check task start + +2025-09-24 12:27:27,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:27,385 INFO Out dated connection ,size=0 + +2025-09-24 12:27:27,385 INFO Connection check task end + +2025-09-24 12:27:28,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:30,387 INFO Connection check task start + +2025-09-24 12:27:30,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:30,387 INFO Out dated connection ,size=0 + +2025-09-24 12:27:30,387 INFO Connection check task end + +2025-09-24 12:27:31,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:33,388 INFO Connection check task start + +2025-09-24 12:27:33,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:33,389 INFO Out dated connection ,size=0 + +2025-09-24 12:27:33,389 INFO Connection check task end + +2025-09-24 12:27:34,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:36,391 INFO Connection check task start + +2025-09-24 12:27:36,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:36,391 INFO Out dated connection ,size=0 + +2025-09-24 12:27:36,391 INFO Connection check task end + +2025-09-24 12:27:37,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:39,391 INFO Connection check task start + +2025-09-24 12:27:39,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:39,392 INFO Out dated connection ,size=0 + +2025-09-24 12:27:39,392 INFO Connection check task end + +2025-09-24 12:27:40,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:42,393 INFO Connection check task start + +2025-09-24 12:27:42,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:42,393 INFO Out dated connection ,size=0 + +2025-09-24 12:27:42,393 INFO Connection check task end + +2025-09-24 12:27:43,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:45,395 INFO Connection check task start + +2025-09-24 12:27:45,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:45,396 INFO Out dated connection ,size=0 + +2025-09-24 12:27:45,396 INFO Connection check task end + +2025-09-24 12:27:46,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:48,397 INFO Connection check task start + +2025-09-24 12:27:48,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:48,398 INFO Out dated connection ,size=0 + +2025-09-24 12:27:48,398 INFO Connection check task end + +2025-09-24 12:27:49,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:51,398 INFO Connection check task start + +2025-09-24 12:27:51,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:51,398 INFO Out dated connection ,size=0 + +2025-09-24 12:27:51,398 INFO Connection check task end + +2025-09-24 12:27:52,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:54,399 INFO Connection check task start + +2025-09-24 12:27:54,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:54,399 INFO Out dated connection ,size=0 + +2025-09-24 12:27:54,399 INFO Connection check task end + +2025-09-24 12:27:55,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:27:57,399 INFO Connection check task start + +2025-09-24 12:27:57,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:27:57,400 INFO Out dated connection ,size=0 + +2025-09-24 12:27:57,400 INFO Connection check task end + +2025-09-24 12:27:58,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:00,400 INFO Connection check task start + +2025-09-24 12:28:00,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:00,400 INFO Out dated connection ,size=0 + +2025-09-24 12:28:00,400 INFO Connection check task end + +2025-09-24 12:28:01,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:03,401 INFO Connection check task start + +2025-09-24 12:28:03,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:03,401 INFO Out dated connection ,size=0 + +2025-09-24 12:28:03,401 INFO Connection check task end + +2025-09-24 12:28:04,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:06,402 INFO Connection check task start + +2025-09-24 12:28:06,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:06,402 INFO Out dated connection ,size=0 + +2025-09-24 12:28:06,402 INFO Connection check task end + +2025-09-24 12:28:07,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:09,402 INFO Connection check task start + +2025-09-24 12:28:09,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:09,403 INFO Out dated connection ,size=0 + +2025-09-24 12:28:09,403 INFO Connection check task end + +2025-09-24 12:28:10,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:12,405 INFO Connection check task start + +2025-09-24 12:28:12,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:12,405 INFO Out dated connection ,size=0 + +2025-09-24 12:28:12,405 INFO Connection check task end + +2025-09-24 12:28:13,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:15,407 INFO Connection check task start + +2025-09-24 12:28:15,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:15,407 INFO Out dated connection ,size=0 + +2025-09-24 12:28:15,407 INFO Connection check task end + +2025-09-24 12:28:16,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:18,409 INFO Connection check task start + +2025-09-24 12:28:18,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:18,409 INFO Out dated connection ,size=0 + +2025-09-24 12:28:18,409 INFO Connection check task end + +2025-09-24 12:28:19,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:21,409 INFO Connection check task start + +2025-09-24 12:28:21,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:21,410 INFO Out dated connection ,size=0 + +2025-09-24 12:28:21,410 INFO Connection check task end + +2025-09-24 12:28:22,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:24,412 INFO Connection check task start + +2025-09-24 12:28:24,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:24,412 INFO Out dated connection ,size=0 + +2025-09-24 12:28:24,412 INFO Connection check task end + +2025-09-24 12:28:25,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:27,414 INFO Connection check task start + +2025-09-24 12:28:27,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:27,414 INFO Out dated connection ,size=0 + +2025-09-24 12:28:27,414 INFO Connection check task end + +2025-09-24 12:28:28,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:30,414 INFO Connection check task start + +2025-09-24 12:28:30,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:30,414 INFO Out dated connection ,size=0 + +2025-09-24 12:28:30,414 INFO Connection check task end + +2025-09-24 12:28:31,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:33,416 INFO Connection check task start + +2025-09-24 12:28:33,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:33,416 INFO Out dated connection ,size=0 + +2025-09-24 12:28:33,416 INFO Connection check task end + +2025-09-24 12:28:34,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:36,416 INFO Connection check task start + +2025-09-24 12:28:36,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:36,417 INFO Out dated connection ,size=0 + +2025-09-24 12:28:36,417 INFO Connection check task end + +2025-09-24 12:28:37,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:39,419 INFO Connection check task start + +2025-09-24 12:28:39,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:39,419 INFO Out dated connection ,size=0 + +2025-09-24 12:28:39,419 INFO Connection check task end + +2025-09-24 12:28:40,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:42,421 INFO Connection check task start + +2025-09-24 12:28:42,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:42,421 INFO Out dated connection ,size=0 + +2025-09-24 12:28:42,421 INFO Connection check task end + +2025-09-24 12:28:43,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:45,421 INFO Connection check task start + +2025-09-24 12:28:45,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:45,421 INFO Out dated connection ,size=0 + +2025-09-24 12:28:45,421 INFO Connection check task end + +2025-09-24 12:28:46,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:48,422 INFO Connection check task start + +2025-09-24 12:28:48,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:48,422 INFO Out dated connection ,size=0 + +2025-09-24 12:28:48,422 INFO Connection check task end + +2025-09-24 12:28:49,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:51,422 INFO Connection check task start + +2025-09-24 12:28:51,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:51,423 INFO Out dated connection ,size=0 + +2025-09-24 12:28:51,423 INFO Connection check task end + +2025-09-24 12:28:52,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:54,425 INFO Connection check task start + +2025-09-24 12:28:54,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:54,425 INFO Out dated connection ,size=0 + +2025-09-24 12:28:54,425 INFO Connection check task end + +2025-09-24 12:28:55,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:28:57,425 INFO Connection check task start + +2025-09-24 12:28:57,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:28:57,426 INFO Out dated connection ,size=0 + +2025-09-24 12:28:57,426 INFO Connection check task end + +2025-09-24 12:28:58,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:00,427 INFO Connection check task start + +2025-09-24 12:29:00,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:00,427 INFO Out dated connection ,size=0 + +2025-09-24 12:29:00,427 INFO Connection check task end + +2025-09-24 12:29:01,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:03,428 INFO Connection check task start + +2025-09-24 12:29:03,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:03,428 INFO Out dated connection ,size=0 + +2025-09-24 12:29:03,428 INFO Connection check task end + +2025-09-24 12:29:04,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:06,428 INFO Connection check task start + +2025-09-24 12:29:06,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:06,428 INFO Out dated connection ,size=0 + +2025-09-24 12:29:06,428 INFO Connection check task end + +2025-09-24 12:29:07,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:09,431 INFO Connection check task start + +2025-09-24 12:29:09,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:09,431 INFO Out dated connection ,size=0 + +2025-09-24 12:29:09,431 INFO Connection check task end + +2025-09-24 12:29:10,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:12,431 INFO Connection check task start + +2025-09-24 12:29:12,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:12,431 INFO Out dated connection ,size=0 + +2025-09-24 12:29:12,431 INFO Connection check task end + +2025-09-24 12:29:13,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:15,436 INFO Connection check task start + +2025-09-24 12:29:15,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:15,436 INFO Out dated connection ,size=0 + +2025-09-24 12:29:15,436 INFO Connection check task end + +2025-09-24 12:29:16,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:18,437 INFO Connection check task start + +2025-09-24 12:29:18,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:18,437 INFO Out dated connection ,size=0 + +2025-09-24 12:29:18,437 INFO Connection check task end + +2025-09-24 12:29:19,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:21,438 INFO Connection check task start + +2025-09-24 12:29:21,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:21,438 INFO Out dated connection ,size=0 + +2025-09-24 12:29:21,438 INFO Connection check task end + +2025-09-24 12:29:22,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:24,439 INFO Connection check task start + +2025-09-24 12:29:24,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:24,440 INFO Out dated connection ,size=0 + +2025-09-24 12:29:24,440 INFO Connection check task end + +2025-09-24 12:29:25,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:27,442 INFO Connection check task start + +2025-09-24 12:29:27,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:27,442 INFO Out dated connection ,size=0 + +2025-09-24 12:29:27,442 INFO Connection check task end + +2025-09-24 12:29:28,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:30,444 INFO Connection check task start + +2025-09-24 12:29:30,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:30,444 INFO Out dated connection ,size=0 + +2025-09-24 12:29:30,444 INFO Connection check task end + +2025-09-24 12:29:31,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:33,444 INFO Connection check task start + +2025-09-24 12:29:33,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:33,444 INFO Out dated connection ,size=0 + +2025-09-24 12:29:33,444 INFO Connection check task end + +2025-09-24 12:29:34,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:36,445 INFO Connection check task start + +2025-09-24 12:29:36,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:36,445 INFO Out dated connection ,size=0 + +2025-09-24 12:29:36,445 INFO Connection check task end + +2025-09-24 12:29:37,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:39,446 INFO Connection check task start + +2025-09-24 12:29:39,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:39,447 INFO Out dated connection ,size=0 + +2025-09-24 12:29:39,447 INFO Connection check task end + +2025-09-24 12:29:40,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:42,447 INFO Connection check task start + +2025-09-24 12:29:42,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:42,447 INFO Out dated connection ,size=0 + +2025-09-24 12:29:42,447 INFO Connection check task end + +2025-09-24 12:29:43,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:45,449 INFO Connection check task start + +2025-09-24 12:29:45,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:45,449 INFO Out dated connection ,size=0 + +2025-09-24 12:29:45,449 INFO Connection check task end + +2025-09-24 12:29:46,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:48,450 INFO Connection check task start + +2025-09-24 12:29:48,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:48,450 INFO Out dated connection ,size=0 + +2025-09-24 12:29:48,450 INFO Connection check task end + +2025-09-24 12:29:49,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:51,450 INFO Connection check task start + +2025-09-24 12:29:51,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:51,451 INFO Out dated connection ,size=0 + +2025-09-24 12:29:51,451 INFO Connection check task end + +2025-09-24 12:29:52,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:54,451 INFO Connection check task start + +2025-09-24 12:29:54,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:54,451 INFO Out dated connection ,size=0 + +2025-09-24 12:29:54,451 INFO Connection check task end + +2025-09-24 12:29:55,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:29:57,453 INFO Connection check task start + +2025-09-24 12:29:57,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:29:57,453 INFO Out dated connection ,size=0 + +2025-09-24 12:29:57,453 INFO Connection check task end + +2025-09-24 12:29:58,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:00,453 INFO Connection check task start + +2025-09-24 12:30:00,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:00,453 INFO Out dated connection ,size=0 + +2025-09-24 12:30:00,453 INFO Connection check task end + +2025-09-24 12:30:01,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:03,454 INFO Connection check task start + +2025-09-24 12:30:03,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:03,454 INFO Out dated connection ,size=0 + +2025-09-24 12:30:03,454 INFO Connection check task end + +2025-09-24 12:30:04,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:06,455 INFO Connection check task start + +2025-09-24 12:30:06,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:06,455 INFO Out dated connection ,size=0 + +2025-09-24 12:30:06,455 INFO Connection check task end + +2025-09-24 12:30:07,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:09,456 INFO Connection check task start + +2025-09-24 12:30:09,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:09,456 INFO Out dated connection ,size=0 + +2025-09-24 12:30:09,456 INFO Connection check task end + +2025-09-24 12:30:10,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:12,458 INFO Connection check task start + +2025-09-24 12:30:12,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:12,458 INFO Out dated connection ,size=0 + +2025-09-24 12:30:12,458 INFO Connection check task end + +2025-09-24 12:30:13,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:15,460 INFO Connection check task start + +2025-09-24 12:30:15,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:15,460 INFO Out dated connection ,size=0 + +2025-09-24 12:30:15,460 INFO Connection check task end + +2025-09-24 12:30:16,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:18,462 INFO Connection check task start + +2025-09-24 12:30:18,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:18,462 INFO Out dated connection ,size=0 + +2025-09-24 12:30:18,462 INFO Connection check task end + +2025-09-24 12:30:19,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:21,463 INFO Connection check task start + +2025-09-24 12:30:21,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:21,463 INFO Out dated connection ,size=0 + +2025-09-24 12:30:21,463 INFO Connection check task end + +2025-09-24 12:30:22,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:24,465 INFO Connection check task start + +2025-09-24 12:30:24,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:24,465 INFO Out dated connection ,size=0 + +2025-09-24 12:30:24,465 INFO Connection check task end + +2025-09-24 12:30:25,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:27,466 INFO Connection check task start + +2025-09-24 12:30:27,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:27,467 INFO Out dated connection ,size=0 + +2025-09-24 12:30:27,467 INFO Connection check task end + +2025-09-24 12:30:28,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:30,467 INFO Connection check task start + +2025-09-24 12:30:30,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:30,467 INFO Out dated connection ,size=0 + +2025-09-24 12:30:30,467 INFO Connection check task end + +2025-09-24 12:30:31,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:33,469 INFO Connection check task start + +2025-09-24 12:30:33,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:33,469 INFO Out dated connection ,size=0 + +2025-09-24 12:30:33,469 INFO Connection check task end + +2025-09-24 12:30:34,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:36,470 INFO Connection check task start + +2025-09-24 12:30:36,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:36,470 INFO Out dated connection ,size=0 + +2025-09-24 12:30:36,470 INFO Connection check task end + +2025-09-24 12:30:37,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:39,471 INFO Connection check task start + +2025-09-24 12:30:39,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:39,471 INFO Out dated connection ,size=0 + +2025-09-24 12:30:39,471 INFO Connection check task end + +2025-09-24 12:30:40,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:42,473 INFO Connection check task start + +2025-09-24 12:30:42,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:42,473 INFO Out dated connection ,size=0 + +2025-09-24 12:30:42,473 INFO Connection check task end + +2025-09-24 12:30:43,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:45,474 INFO Connection check task start + +2025-09-24 12:30:45,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:45,474 INFO Out dated connection ,size=0 + +2025-09-24 12:30:45,474 INFO Connection check task end + +2025-09-24 12:30:46,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:48,476 INFO Connection check task start + +2025-09-24 12:30:48,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:48,477 INFO Out dated connection ,size=0 + +2025-09-24 12:30:48,477 INFO Connection check task end + +2025-09-24 12:30:49,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:51,477 INFO Connection check task start + +2025-09-24 12:30:51,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:51,477 INFO Out dated connection ,size=0 + +2025-09-24 12:30:51,477 INFO Connection check task end + +2025-09-24 12:30:52,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:54,479 INFO Connection check task start + +2025-09-24 12:30:54,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:54,479 INFO Out dated connection ,size=0 + +2025-09-24 12:30:54,479 INFO Connection check task end + +2025-09-24 12:30:55,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:30:57,481 INFO Connection check task start + +2025-09-24 12:30:57,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:30:57,482 INFO Out dated connection ,size=0 + +2025-09-24 12:30:57,482 INFO Connection check task end + +2025-09-24 12:30:58,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:00,483 INFO Connection check task start + +2025-09-24 12:31:00,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:00,483 INFO Out dated connection ,size=0 + +2025-09-24 12:31:00,483 INFO Connection check task end + +2025-09-24 12:31:01,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:03,484 INFO Connection check task start + +2025-09-24 12:31:03,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:03,484 INFO Out dated connection ,size=0 + +2025-09-24 12:31:03,484 INFO Connection check task end + +2025-09-24 12:31:04,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:06,486 INFO Connection check task start + +2025-09-24 12:31:06,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:06,486 INFO Out dated connection ,size=0 + +2025-09-24 12:31:06,486 INFO Connection check task end + +2025-09-24 12:31:07,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:09,486 INFO Connection check task start + +2025-09-24 12:31:09,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:09,486 INFO Out dated connection ,size=0 + +2025-09-24 12:31:09,486 INFO Connection check task end + +2025-09-24 12:31:10,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:12,487 INFO Connection check task start + +2025-09-24 12:31:12,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:12,488 INFO Out dated connection ,size=0 + +2025-09-24 12:31:12,488 INFO Connection check task end + +2025-09-24 12:31:13,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:15,489 INFO Connection check task start + +2025-09-24 12:31:15,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:15,489 INFO Out dated connection ,size=0 + +2025-09-24 12:31:15,489 INFO Connection check task end + +2025-09-24 12:31:16,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:18,490 INFO Connection check task start + +2025-09-24 12:31:18,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:18,490 INFO Out dated connection ,size=0 + +2025-09-24 12:31:18,490 INFO Connection check task end + +2025-09-24 12:31:19,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:21,492 INFO Connection check task start + +2025-09-24 12:31:21,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:21,492 INFO Out dated connection ,size=0 + +2025-09-24 12:31:21,492 INFO Connection check task end + +2025-09-24 12:31:22,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:24,492 INFO Connection check task start + +2025-09-24 12:31:24,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:24,493 INFO Out dated connection ,size=0 + +2025-09-24 12:31:24,493 INFO Connection check task end + +2025-09-24 12:31:25,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:27,495 INFO Connection check task start + +2025-09-24 12:31:27,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:27,495 INFO Out dated connection ,size=0 + +2025-09-24 12:31:27,495 INFO Connection check task end + +2025-09-24 12:31:28,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:30,495 INFO Connection check task start + +2025-09-24 12:31:30,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:30,495 INFO Out dated connection ,size=0 + +2025-09-24 12:31:30,495 INFO Connection check task end + +2025-09-24 12:31:31,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:33,496 INFO Connection check task start + +2025-09-24 12:31:33,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:33,496 INFO Out dated connection ,size=0 + +2025-09-24 12:31:33,496 INFO Connection check task end + +2025-09-24 12:31:34,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:36,497 INFO Connection check task start + +2025-09-24 12:31:36,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:36,497 INFO Out dated connection ,size=0 + +2025-09-24 12:31:36,497 INFO Connection check task end + +2025-09-24 12:31:37,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:39,497 INFO Connection check task start + +2025-09-24 12:31:39,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:39,498 INFO Out dated connection ,size=0 + +2025-09-24 12:31:39,498 INFO Connection check task end + +2025-09-24 12:31:40,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:42,498 INFO Connection check task start + +2025-09-24 12:31:42,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:42,498 INFO Out dated connection ,size=0 + +2025-09-24 12:31:42,498 INFO Connection check task end + +2025-09-24 12:31:43,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:45,499 INFO Connection check task start + +2025-09-24 12:31:45,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:45,499 INFO Out dated connection ,size=0 + +2025-09-24 12:31:45,499 INFO Connection check task end + +2025-09-24 12:31:46,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:48,500 INFO Connection check task start + +2025-09-24 12:31:48,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:48,500 INFO Out dated connection ,size=0 + +2025-09-24 12:31:48,500 INFO Connection check task end + +2025-09-24 12:31:49,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:51,501 INFO Connection check task start + +2025-09-24 12:31:51,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:51,501 INFO Out dated connection ,size=0 + +2025-09-24 12:31:51,501 INFO Connection check task end + +2025-09-24 12:31:52,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:54,503 INFO Connection check task start + +2025-09-24 12:31:54,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:54,503 INFO Out dated connection ,size=0 + +2025-09-24 12:31:54,503 INFO Connection check task end + +2025-09-24 12:31:55,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:31:57,503 INFO Connection check task start + +2025-09-24 12:31:57,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:31:57,503 INFO Out dated connection ,size=0 + +2025-09-24 12:31:57,503 INFO Connection check task end + +2025-09-24 12:31:58,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:00,506 INFO Connection check task start + +2025-09-24 12:32:00,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:00,506 INFO Out dated connection ,size=0 + +2025-09-24 12:32:00,506 INFO Connection check task end + +2025-09-24 12:32:01,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:03,508 INFO Connection check task start + +2025-09-24 12:32:03,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:03,508 INFO Out dated connection ,size=0 + +2025-09-24 12:32:03,508 INFO Connection check task end + +2025-09-24 12:32:04,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:06,509 INFO Connection check task start + +2025-09-24 12:32:06,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:06,509 INFO Out dated connection ,size=0 + +2025-09-24 12:32:06,509 INFO Connection check task end + +2025-09-24 12:32:07,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:09,512 INFO Connection check task start + +2025-09-24 12:32:09,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:09,512 INFO Out dated connection ,size=0 + +2025-09-24 12:32:09,512 INFO Connection check task end + +2025-09-24 12:32:10,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:12,512 INFO Connection check task start + +2025-09-24 12:32:12,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:12,512 INFO Out dated connection ,size=0 + +2025-09-24 12:32:12,512 INFO Connection check task end + +2025-09-24 12:32:13,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:15,512 INFO Connection check task start + +2025-09-24 12:32:15,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:15,512 INFO Out dated connection ,size=0 + +2025-09-24 12:32:15,512 INFO Connection check task end + +2025-09-24 12:32:16,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:18,513 INFO Connection check task start + +2025-09-24 12:32:18,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:18,513 INFO Out dated connection ,size=0 + +2025-09-24 12:32:18,513 INFO Connection check task end + +2025-09-24 12:32:19,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:21,518 INFO Connection check task start + +2025-09-24 12:32:21,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:21,518 INFO Out dated connection ,size=0 + +2025-09-24 12:32:21,518 INFO Connection check task end + +2025-09-24 12:32:22,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:24,518 INFO Connection check task start + +2025-09-24 12:32:24,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:24,518 INFO Out dated connection ,size=0 + +2025-09-24 12:32:24,518 INFO Connection check task end + +2025-09-24 12:32:25,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:27,520 INFO Connection check task start + +2025-09-24 12:32:27,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:27,520 INFO Out dated connection ,size=0 + +2025-09-24 12:32:27,520 INFO Connection check task end + +2025-09-24 12:32:28,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:30,522 INFO Connection check task start + +2025-09-24 12:32:30,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:30,522 INFO Out dated connection ,size=0 + +2025-09-24 12:32:30,522 INFO Connection check task end + +2025-09-24 12:32:31,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:33,522 INFO Connection check task start + +2025-09-24 12:32:33,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:33,522 INFO Out dated connection ,size=0 + +2025-09-24 12:32:33,523 INFO Connection check task end + +2025-09-24 12:32:34,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:36,523 INFO Connection check task start + +2025-09-24 12:32:36,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:36,523 INFO Out dated connection ,size=0 + +2025-09-24 12:32:36,523 INFO Connection check task end + +2025-09-24 12:32:37,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:39,525 INFO Connection check task start + +2025-09-24 12:32:39,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:39,525 INFO Out dated connection ,size=0 + +2025-09-24 12:32:39,525 INFO Connection check task end + +2025-09-24 12:32:40,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:42,525 INFO Connection check task start + +2025-09-24 12:32:42,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:42,526 INFO Out dated connection ,size=0 + +2025-09-24 12:32:42,526 INFO Connection check task end + +2025-09-24 12:32:43,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:45,527 INFO Connection check task start + +2025-09-24 12:32:45,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:45,527 INFO Out dated connection ,size=0 + +2025-09-24 12:32:45,527 INFO Connection check task end + +2025-09-24 12:32:46,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:48,527 INFO Connection check task start + +2025-09-24 12:32:48,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:48,527 INFO Out dated connection ,size=0 + +2025-09-24 12:32:48,527 INFO Connection check task end + +2025-09-24 12:32:49,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:51,529 INFO Connection check task start + +2025-09-24 12:32:51,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:51,529 INFO Out dated connection ,size=0 + +2025-09-24 12:32:51,529 INFO Connection check task end + +2025-09-24 12:32:52,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:54,531 INFO Connection check task start + +2025-09-24 12:32:54,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:54,531 INFO Out dated connection ,size=0 + +2025-09-24 12:32:54,531 INFO Connection check task end + +2025-09-24 12:32:55,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:32:57,531 INFO Connection check task start + +2025-09-24 12:32:57,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:32:57,532 INFO Out dated connection ,size=0 + +2025-09-24 12:32:57,532 INFO Connection check task end + +2025-09-24 12:32:58,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:00,532 INFO Connection check task start + +2025-09-24 12:33:00,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:00,532 INFO Out dated connection ,size=0 + +2025-09-24 12:33:00,532 INFO Connection check task end + +2025-09-24 12:33:01,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:03,534 INFO Connection check task start + +2025-09-24 12:33:03,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:03,534 INFO Out dated connection ,size=0 + +2025-09-24 12:33:03,534 INFO Connection check task end + +2025-09-24 12:33:04,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:06,535 INFO Connection check task start + +2025-09-24 12:33:06,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:06,535 INFO Out dated connection ,size=0 + +2025-09-24 12:33:06,535 INFO Connection check task end + +2025-09-24 12:33:07,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:09,535 INFO Connection check task start + +2025-09-24 12:33:09,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:09,535 INFO Out dated connection ,size=0 + +2025-09-24 12:33:09,535 INFO Connection check task end + +2025-09-24 12:33:10,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:12,537 INFO Connection check task start + +2025-09-24 12:33:12,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:12,537 INFO Out dated connection ,size=0 + +2025-09-24 12:33:12,537 INFO Connection check task end + +2025-09-24 12:33:13,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:15,540 INFO Connection check task start + +2025-09-24 12:33:15,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:15,540 INFO Out dated connection ,size=0 + +2025-09-24 12:33:15,540 INFO Connection check task end + +2025-09-24 12:33:16,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:18,541 INFO Connection check task start + +2025-09-24 12:33:18,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:18,541 INFO Out dated connection ,size=0 + +2025-09-24 12:33:18,541 INFO Connection check task end + +2025-09-24 12:33:19,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:21,542 INFO Connection check task start + +2025-09-24 12:33:21,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:21,542 INFO Out dated connection ,size=0 + +2025-09-24 12:33:21,542 INFO Connection check task end + +2025-09-24 12:33:22,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:24,543 INFO Connection check task start + +2025-09-24 12:33:24,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:24,543 INFO Out dated connection ,size=0 + +2025-09-24 12:33:24,543 INFO Connection check task end + +2025-09-24 12:33:25,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:27,545 INFO Connection check task start + +2025-09-24 12:33:27,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:27,546 INFO Out dated connection ,size=0 + +2025-09-24 12:33:27,546 INFO Connection check task end + +2025-09-24 12:33:28,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:30,548 INFO Connection check task start + +2025-09-24 12:33:30,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:30,548 INFO Out dated connection ,size=0 + +2025-09-24 12:33:30,548 INFO Connection check task end + +2025-09-24 12:33:31,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:33,548 INFO Connection check task start + +2025-09-24 12:33:33,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:33,549 INFO Out dated connection ,size=0 + +2025-09-24 12:33:33,549 INFO Connection check task end + +2025-09-24 12:33:34,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:36,550 INFO Connection check task start + +2025-09-24 12:33:36,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:36,550 INFO Out dated connection ,size=0 + +2025-09-24 12:33:36,550 INFO Connection check task end + +2025-09-24 12:33:37,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:39,551 INFO Connection check task start + +2025-09-24 12:33:39,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:39,551 INFO Out dated connection ,size=0 + +2025-09-24 12:33:39,551 INFO Connection check task end + +2025-09-24 12:33:40,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:42,552 INFO Connection check task start + +2025-09-24 12:33:42,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:42,552 INFO Out dated connection ,size=0 + +2025-09-24 12:33:42,552 INFO Connection check task end + +2025-09-24 12:33:43,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:45,553 INFO Connection check task start + +2025-09-24 12:33:45,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:45,554 INFO Out dated connection ,size=0 + +2025-09-24 12:33:45,554 INFO Connection check task end + +2025-09-24 12:33:46,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:48,554 INFO Connection check task start + +2025-09-24 12:33:48,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:48,554 INFO Out dated connection ,size=0 + +2025-09-24 12:33:48,554 INFO Connection check task end + +2025-09-24 12:33:49,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:51,556 INFO Connection check task start + +2025-09-24 12:33:51,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:51,556 INFO Out dated connection ,size=0 + +2025-09-24 12:33:51,556 INFO Connection check task end + +2025-09-24 12:33:52,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:54,557 INFO Connection check task start + +2025-09-24 12:33:54,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:54,557 INFO Out dated connection ,size=0 + +2025-09-24 12:33:54,557 INFO Connection check task end + +2025-09-24 12:33:55,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:33:57,558 INFO Connection check task start + +2025-09-24 12:33:57,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:33:57,559 INFO Out dated connection ,size=0 + +2025-09-24 12:33:57,559 INFO Connection check task end + +2025-09-24 12:33:58,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:00,560 INFO Connection check task start + +2025-09-24 12:34:00,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:00,560 INFO Out dated connection ,size=0 + +2025-09-24 12:34:00,560 INFO Connection check task end + +2025-09-24 12:34:01,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:03,562 INFO Connection check task start + +2025-09-24 12:34:03,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:03,562 INFO Out dated connection ,size=0 + +2025-09-24 12:34:03,562 INFO Connection check task end + +2025-09-24 12:34:04,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:06,564 INFO Connection check task start + +2025-09-24 12:34:06,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:06,564 INFO Out dated connection ,size=0 + +2025-09-24 12:34:06,564 INFO Connection check task end + +2025-09-24 12:34:07,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:09,564 INFO Connection check task start + +2025-09-24 12:34:09,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:09,565 INFO Out dated connection ,size=0 + +2025-09-24 12:34:09,565 INFO Connection check task end + +2025-09-24 12:34:10,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:12,565 INFO Connection check task start + +2025-09-24 12:34:12,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:12,565 INFO Out dated connection ,size=0 + +2025-09-24 12:34:12,565 INFO Connection check task end + +2025-09-24 12:34:13,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:15,567 INFO Connection check task start + +2025-09-24 12:34:15,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:15,567 INFO Out dated connection ,size=0 + +2025-09-24 12:34:15,567 INFO Connection check task end + +2025-09-24 12:34:16,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:18,568 INFO Connection check task start + +2025-09-24 12:34:18,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:18,568 INFO Out dated connection ,size=0 + +2025-09-24 12:34:18,568 INFO Connection check task end + +2025-09-24 12:34:19,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:21,568 INFO Connection check task start + +2025-09-24 12:34:21,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:21,568 INFO Out dated connection ,size=0 + +2025-09-24 12:34:21,568 INFO Connection check task end + +2025-09-24 12:34:22,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:24,568 INFO Connection check task start + +2025-09-24 12:34:24,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:24,569 INFO Out dated connection ,size=0 + +2025-09-24 12:34:24,569 INFO Connection check task end + +2025-09-24 12:34:25,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:27,569 INFO Connection check task start + +2025-09-24 12:34:27,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:27,569 INFO Out dated connection ,size=0 + +2025-09-24 12:34:27,569 INFO Connection check task end + +2025-09-24 12:34:28,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:30,570 INFO Connection check task start + +2025-09-24 12:34:30,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:30,570 INFO Out dated connection ,size=0 + +2025-09-24 12:34:30,570 INFO Connection check task end + +2025-09-24 12:34:31,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:33,572 INFO Connection check task start + +2025-09-24 12:34:33,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:33,572 INFO Out dated connection ,size=0 + +2025-09-24 12:34:33,572 INFO Connection check task end + +2025-09-24 12:34:34,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:36,574 INFO Connection check task start + +2025-09-24 12:34:36,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:36,574 INFO Out dated connection ,size=0 + +2025-09-24 12:34:36,574 INFO Connection check task end + +2025-09-24 12:34:37,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:39,574 INFO Connection check task start + +2025-09-24 12:34:39,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:39,574 INFO Out dated connection ,size=0 + +2025-09-24 12:34:39,574 INFO Connection check task end + +2025-09-24 12:34:40,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:42,576 INFO Connection check task start + +2025-09-24 12:34:42,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:42,576 INFO Out dated connection ,size=0 + +2025-09-24 12:34:42,576 INFO Connection check task end + +2025-09-24 12:34:43,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:45,578 INFO Connection check task start + +2025-09-24 12:34:45,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:45,578 INFO Out dated connection ,size=0 + +2025-09-24 12:34:45,578 INFO Connection check task end + +2025-09-24 12:34:46,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:48,578 INFO Connection check task start + +2025-09-24 12:34:48,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:48,579 INFO Out dated connection ,size=0 + +2025-09-24 12:34:48,579 INFO Connection check task end + +2025-09-24 12:34:49,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:51,580 INFO Connection check task start + +2025-09-24 12:34:51,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:51,581 INFO Out dated connection ,size=0 + +2025-09-24 12:34:51,581 INFO Connection check task end + +2025-09-24 12:34:52,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:54,583 INFO Connection check task start + +2025-09-24 12:34:54,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:54,583 INFO Out dated connection ,size=0 + +2025-09-24 12:34:54,583 INFO Connection check task end + +2025-09-24 12:34:55,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:34:57,585 INFO Connection check task start + +2025-09-24 12:34:57,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:34:57,585 INFO Out dated connection ,size=0 + +2025-09-24 12:34:57,585 INFO Connection check task end + +2025-09-24 12:34:58,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:00,586 INFO Connection check task start + +2025-09-24 12:35:00,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:00,586 INFO Out dated connection ,size=0 + +2025-09-24 12:35:00,586 INFO Connection check task end + +2025-09-24 12:35:01,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:03,588 INFO Connection check task start + +2025-09-24 12:35:03,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:03,588 INFO Out dated connection ,size=0 + +2025-09-24 12:35:03,588 INFO Connection check task end + +2025-09-24 12:35:04,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:06,590 INFO Connection check task start + +2025-09-24 12:35:06,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:06,590 INFO Out dated connection ,size=0 + +2025-09-24 12:35:06,590 INFO Connection check task end + +2025-09-24 12:35:07,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:09,590 INFO Connection check task start + +2025-09-24 12:35:09,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:09,591 INFO Out dated connection ,size=0 + +2025-09-24 12:35:09,591 INFO Connection check task end + +2025-09-24 12:35:10,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:12,591 INFO Connection check task start + +2025-09-24 12:35:12,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:12,591 INFO Out dated connection ,size=0 + +2025-09-24 12:35:12,591 INFO Connection check task end + +2025-09-24 12:35:13,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:15,593 INFO Connection check task start + +2025-09-24 12:35:15,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:15,593 INFO Out dated connection ,size=0 + +2025-09-24 12:35:15,593 INFO Connection check task end + +2025-09-24 12:35:16,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:18,593 INFO Connection check task start + +2025-09-24 12:35:18,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:18,607 INFO Out dated connection ,size=0 + +2025-09-24 12:35:18,607 INFO Connection check task end + +2025-09-24 12:35:19,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:21,608 INFO Connection check task start + +2025-09-24 12:35:21,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:21,608 INFO Out dated connection ,size=0 + +2025-09-24 12:35:21,608 INFO Connection check task end + +2025-09-24 12:35:22,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:24,609 INFO Connection check task start + +2025-09-24 12:35:24,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:24,609 INFO Out dated connection ,size=0 + +2025-09-24 12:35:24,609 INFO Connection check task end + +2025-09-24 12:35:25,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:27,611 INFO Connection check task start + +2025-09-24 12:35:27,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:27,611 INFO Out dated connection ,size=0 + +2025-09-24 12:35:27,611 INFO Connection check task end + +2025-09-24 12:35:28,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:30,612 INFO Connection check task start + +2025-09-24 12:35:30,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:30,612 INFO Out dated connection ,size=0 + +2025-09-24 12:35:30,612 INFO Connection check task end + +2025-09-24 12:35:31,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:33,612 INFO Connection check task start + +2025-09-24 12:35:33,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:33,613 INFO Out dated connection ,size=0 + +2025-09-24 12:35:33,613 INFO Connection check task end + +2025-09-24 12:35:34,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:36,615 INFO Connection check task start + +2025-09-24 12:35:36,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:36,615 INFO Out dated connection ,size=0 + +2025-09-24 12:35:36,615 INFO Connection check task end + +2025-09-24 12:35:38,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:39,616 INFO Connection check task start + +2025-09-24 12:35:39,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:39,616 INFO Out dated connection ,size=0 + +2025-09-24 12:35:39,616 INFO Connection check task end + +2025-09-24 12:35:41,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:42,616 INFO Connection check task start + +2025-09-24 12:35:42,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:42,617 INFO Out dated connection ,size=0 + +2025-09-24 12:35:42,617 INFO Connection check task end + +2025-09-24 12:35:44,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:45,617 INFO Connection check task start + +2025-09-24 12:35:45,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:45,617 INFO Out dated connection ,size=0 + +2025-09-24 12:35:45,617 INFO Connection check task end + +2025-09-24 12:35:47,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:48,618 INFO Connection check task start + +2025-09-24 12:35:48,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:48,618 INFO Out dated connection ,size=0 + +2025-09-24 12:35:48,618 INFO Connection check task end + +2025-09-24 12:35:50,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:51,620 INFO Connection check task start + +2025-09-24 12:35:51,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:51,620 INFO Out dated connection ,size=0 + +2025-09-24 12:35:51,620 INFO Connection check task end + +2025-09-24 12:35:53,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:54,622 INFO Connection check task start + +2025-09-24 12:35:54,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:54,622 INFO Out dated connection ,size=0 + +2025-09-24 12:35:54,622 INFO Connection check task end + +2025-09-24 12:35:56,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:35:57,624 INFO Connection check task start + +2025-09-24 12:35:57,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:35:57,624 INFO Out dated connection ,size=0 + +2025-09-24 12:35:57,624 INFO Connection check task end + +2025-09-24 12:35:59,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:00,624 INFO Connection check task start + +2025-09-24 12:36:00,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:00,625 INFO Out dated connection ,size=0 + +2025-09-24 12:36:00,625 INFO Connection check task end + +2025-09-24 12:36:02,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:03,625 INFO Connection check task start + +2025-09-24 12:36:03,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:03,625 INFO Out dated connection ,size=0 + +2025-09-24 12:36:03,625 INFO Connection check task end + +2025-09-24 12:36:05,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:06,626 INFO Connection check task start + +2025-09-24 12:36:06,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:06,626 INFO Out dated connection ,size=0 + +2025-09-24 12:36:06,626 INFO Connection check task end + +2025-09-24 12:36:08,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:09,626 INFO Connection check task start + +2025-09-24 12:36:09,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:09,627 INFO Out dated connection ,size=0 + +2025-09-24 12:36:09,627 INFO Connection check task end + +2025-09-24 12:36:11,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:12,627 INFO Connection check task start + +2025-09-24 12:36:12,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:12,627 INFO Out dated connection ,size=0 + +2025-09-24 12:36:12,627 INFO Connection check task end + +2025-09-24 12:36:14,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:15,628 INFO Connection check task start + +2025-09-24 12:36:15,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:15,628 INFO Out dated connection ,size=0 + +2025-09-24 12:36:15,628 INFO Connection check task end + +2025-09-24 12:36:17,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:18,628 INFO Connection check task start + +2025-09-24 12:36:18,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:18,628 INFO Out dated connection ,size=0 + +2025-09-24 12:36:18,628 INFO Connection check task end + +2025-09-24 12:36:20,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:21,628 INFO Connection check task start + +2025-09-24 12:36:21,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:21,629 INFO Out dated connection ,size=0 + +2025-09-24 12:36:21,629 INFO Connection check task end + +2025-09-24 12:36:23,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:24,629 INFO Connection check task start + +2025-09-24 12:36:24,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:24,629 INFO Out dated connection ,size=0 + +2025-09-24 12:36:24,629 INFO Connection check task end + +2025-09-24 12:36:26,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:27,629 INFO Connection check task start + +2025-09-24 12:36:27,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:27,630 INFO Out dated connection ,size=0 + +2025-09-24 12:36:27,630 INFO Connection check task end + +2025-09-24 12:36:29,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:30,630 INFO Connection check task start + +2025-09-24 12:36:30,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:30,630 INFO Out dated connection ,size=0 + +2025-09-24 12:36:30,630 INFO Connection check task end + +2025-09-24 12:36:32,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:33,631 INFO Connection check task start + +2025-09-24 12:36:33,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:33,631 INFO Out dated connection ,size=0 + +2025-09-24 12:36:33,631 INFO Connection check task end + +2025-09-24 12:36:35,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:36,632 INFO Connection check task start + +2025-09-24 12:36:36,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:36,632 INFO Out dated connection ,size=0 + +2025-09-24 12:36:36,632 INFO Connection check task end + +2025-09-24 12:36:38,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:39,632 INFO Connection check task start + +2025-09-24 12:36:39,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:39,633 INFO Out dated connection ,size=0 + +2025-09-24 12:36:39,633 INFO Connection check task end + +2025-09-24 12:36:41,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:42,635 INFO Connection check task start + +2025-09-24 12:36:42,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:42,635 INFO Out dated connection ,size=0 + +2025-09-24 12:36:42,635 INFO Connection check task end + +2025-09-24 12:36:44,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:45,635 INFO Connection check task start + +2025-09-24 12:36:45,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:45,635 INFO Out dated connection ,size=0 + +2025-09-24 12:36:45,635 INFO Connection check task end + +2025-09-24 12:36:47,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:48,636 INFO Connection check task start + +2025-09-24 12:36:48,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:48,636 INFO Out dated connection ,size=0 + +2025-09-24 12:36:48,636 INFO Connection check task end + +2025-09-24 12:36:50,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:51,637 INFO Connection check task start + +2025-09-24 12:36:51,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:51,637 INFO Out dated connection ,size=0 + +2025-09-24 12:36:51,637 INFO Connection check task end + +2025-09-24 12:36:53,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:54,637 INFO Connection check task start + +2025-09-24 12:36:54,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:54,638 INFO Out dated connection ,size=0 + +2025-09-24 12:36:54,638 INFO Connection check task end + +2025-09-24 12:36:56,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:36:57,639 INFO Connection check task start + +2025-09-24 12:36:57,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:36:57,639 INFO Out dated connection ,size=0 + +2025-09-24 12:36:57,639 INFO Connection check task end + +2025-09-24 12:36:59,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:00,639 INFO Connection check task start + +2025-09-24 12:37:00,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:00,639 INFO Out dated connection ,size=0 + +2025-09-24 12:37:00,640 INFO Connection check task end + +2025-09-24 12:37:02,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:03,640 INFO Connection check task start + +2025-09-24 12:37:03,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:03,640 INFO Out dated connection ,size=0 + +2025-09-24 12:37:03,640 INFO Connection check task end + +2025-09-24 12:37:05,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:06,641 INFO Connection check task start + +2025-09-24 12:37:06,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:06,641 INFO Out dated connection ,size=0 + +2025-09-24 12:37:06,641 INFO Connection check task end + +2025-09-24 12:37:08,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:09,642 INFO Connection check task start + +2025-09-24 12:37:09,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:09,642 INFO Out dated connection ,size=0 + +2025-09-24 12:37:09,642 INFO Connection check task end + +2025-09-24 12:37:11,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:12,642 INFO Connection check task start + +2025-09-24 12:37:12,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:12,643 INFO Out dated connection ,size=0 + +2025-09-24 12:37:12,643 INFO Connection check task end + +2025-09-24 12:37:14,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:15,643 INFO Connection check task start + +2025-09-24 12:37:15,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:15,643 INFO Out dated connection ,size=0 + +2025-09-24 12:37:15,643 INFO Connection check task end + +2025-09-24 12:37:17,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:18,645 INFO Connection check task start + +2025-09-24 12:37:18,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:18,645 INFO Out dated connection ,size=0 + +2025-09-24 12:37:18,645 INFO Connection check task end + +2025-09-24 12:37:20,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:21,647 INFO Connection check task start + +2025-09-24 12:37:21,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:21,647 INFO Out dated connection ,size=0 + +2025-09-24 12:37:21,647 INFO Connection check task end + +2025-09-24 12:37:23,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:24,648 INFO Connection check task start + +2025-09-24 12:37:24,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:24,648 INFO Out dated connection ,size=0 + +2025-09-24 12:37:24,648 INFO Connection check task end + +2025-09-24 12:37:26,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:27,648 INFO Connection check task start + +2025-09-24 12:37:27,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:27,648 INFO Out dated connection ,size=0 + +2025-09-24 12:37:27,648 INFO Connection check task end + +2025-09-24 12:37:29,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:30,649 INFO Connection check task start + +2025-09-24 12:37:30,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:30,649 INFO Out dated connection ,size=0 + +2025-09-24 12:37:30,649 INFO Connection check task end + +2025-09-24 12:37:32,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:33,649 INFO Connection check task start + +2025-09-24 12:37:33,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:33,649 INFO Out dated connection ,size=0 + +2025-09-24 12:37:33,649 INFO Connection check task end + +2025-09-24 12:37:35,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:36,650 INFO Connection check task start + +2025-09-24 12:37:36,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:36,650 INFO Out dated connection ,size=0 + +2025-09-24 12:37:36,650 INFO Connection check task end + +2025-09-24 12:37:38,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:39,651 INFO Connection check task start + +2025-09-24 12:37:39,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:39,651 INFO Out dated connection ,size=0 + +2025-09-24 12:37:39,651 INFO Connection check task end + +2025-09-24 12:37:41,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:42,651 INFO Connection check task start + +2025-09-24 12:37:42,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:42,651 INFO Out dated connection ,size=0 + +2025-09-24 12:37:42,651 INFO Connection check task end + +2025-09-24 12:37:44,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:45,652 INFO Connection check task start + +2025-09-24 12:37:45,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:45,652 INFO Out dated connection ,size=0 + +2025-09-24 12:37:45,652 INFO Connection check task end + +2025-09-24 12:37:47,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:48,652 INFO Connection check task start + +2025-09-24 12:37:48,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:48,652 INFO Out dated connection ,size=0 + +2025-09-24 12:37:48,652 INFO Connection check task end + +2025-09-24 12:37:50,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:51,652 INFO Connection check task start + +2025-09-24 12:37:51,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:51,654 INFO Out dated connection ,size=0 + +2025-09-24 12:37:51,654 INFO Connection check task end + +2025-09-24 12:37:53,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:54,655 INFO Connection check task start + +2025-09-24 12:37:54,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:54,655 INFO Out dated connection ,size=0 + +2025-09-24 12:37:54,655 INFO Connection check task end + +2025-09-24 12:37:56,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:37:57,655 INFO Connection check task start + +2025-09-24 12:37:57,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:37:57,655 INFO Out dated connection ,size=0 + +2025-09-24 12:37:57,655 INFO Connection check task end + +2025-09-24 12:37:59,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:00,656 INFO Connection check task start + +2025-09-24 12:38:00,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:00,656 INFO Out dated connection ,size=0 + +2025-09-24 12:38:00,656 INFO Connection check task end + +2025-09-24 12:38:02,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:03,656 INFO Connection check task start + +2025-09-24 12:38:03,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:03,657 INFO Out dated connection ,size=0 + +2025-09-24 12:38:03,657 INFO Connection check task end + +2025-09-24 12:38:05,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:06,657 INFO Connection check task start + +2025-09-24 12:38:06,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:06,660 INFO Out dated connection ,size=0 + +2025-09-24 12:38:06,660 INFO Connection check task end + +2025-09-24 12:38:08,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:09,661 INFO Connection check task start + +2025-09-24 12:38:09,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:09,661 INFO Out dated connection ,size=0 + +2025-09-24 12:38:09,661 INFO Connection check task end + +2025-09-24 12:38:11,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:12,662 INFO Connection check task start + +2025-09-24 12:38:12,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:12,662 INFO Out dated connection ,size=0 + +2025-09-24 12:38:12,662 INFO Connection check task end + +2025-09-24 12:38:14,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:15,662 INFO Connection check task start + +2025-09-24 12:38:15,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:15,662 INFO Out dated connection ,size=0 + +2025-09-24 12:38:15,662 INFO Connection check task end + +2025-09-24 12:38:17,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:18,663 INFO Connection check task start + +2025-09-24 12:38:18,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:18,663 INFO Out dated connection ,size=0 + +2025-09-24 12:38:18,663 INFO Connection check task end + +2025-09-24 12:38:20,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:21,663 INFO Connection check task start + +2025-09-24 12:38:21,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:21,663 INFO Out dated connection ,size=0 + +2025-09-24 12:38:21,663 INFO Connection check task end + +2025-09-24 12:38:23,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:24,663 INFO Connection check task start + +2025-09-24 12:38:24,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:24,663 INFO Out dated connection ,size=0 + +2025-09-24 12:38:24,663 INFO Connection check task end + +2025-09-24 12:38:26,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:27,664 INFO Connection check task start + +2025-09-24 12:38:27,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:27,665 INFO Out dated connection ,size=0 + +2025-09-24 12:38:27,665 INFO Connection check task end + +2025-09-24 12:38:29,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:30,665 INFO Connection check task start + +2025-09-24 12:38:30,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:30,665 INFO Out dated connection ,size=0 + +2025-09-24 12:38:30,665 INFO Connection check task end + +2025-09-24 12:38:32,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:33,666 INFO Connection check task start + +2025-09-24 12:38:33,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:33,666 INFO Out dated connection ,size=0 + +2025-09-24 12:38:33,667 INFO Connection check task end + +2025-09-24 12:38:35,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:36,667 INFO Connection check task start + +2025-09-24 12:38:36,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:36,667 INFO Out dated connection ,size=0 + +2025-09-24 12:38:36,667 INFO Connection check task end + +2025-09-24 12:38:38,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:39,668 INFO Connection check task start + +2025-09-24 12:38:39,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:39,668 INFO Out dated connection ,size=0 + +2025-09-24 12:38:39,668 INFO Connection check task end + +2025-09-24 12:38:41,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:42,670 INFO Connection check task start + +2025-09-24 12:38:42,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:42,670 INFO Out dated connection ,size=0 + +2025-09-24 12:38:42,670 INFO Connection check task end + +2025-09-24 12:38:44,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:45,671 INFO Connection check task start + +2025-09-24 12:38:45,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:45,671 INFO Out dated connection ,size=0 + +2025-09-24 12:38:45,671 INFO Connection check task end + +2025-09-24 12:38:47,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:48,672 INFO Connection check task start + +2025-09-24 12:38:48,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:48,672 INFO Out dated connection ,size=0 + +2025-09-24 12:38:48,673 INFO Connection check task end + +2025-09-24 12:38:50,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:51,673 INFO Connection check task start + +2025-09-24 12:38:51,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:51,673 INFO Out dated connection ,size=0 + +2025-09-24 12:38:51,673 INFO Connection check task end + +2025-09-24 12:38:53,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:54,673 INFO Connection check task start + +2025-09-24 12:38:54,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:54,674 INFO Out dated connection ,size=0 + +2025-09-24 12:38:54,674 INFO Connection check task end + +2025-09-24 12:38:56,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:38:57,674 INFO Connection check task start + +2025-09-24 12:38:57,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:38:57,674 INFO Out dated connection ,size=0 + +2025-09-24 12:38:57,674 INFO Connection check task end + +2025-09-24 12:38:59,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:00,674 INFO Connection check task start + +2025-09-24 12:39:00,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:00,674 INFO Out dated connection ,size=0 + +2025-09-24 12:39:00,674 INFO Connection check task end + +2025-09-24 12:39:02,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:03,675 INFO Connection check task start + +2025-09-24 12:39:03,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:03,675 INFO Out dated connection ,size=0 + +2025-09-24 12:39:03,675 INFO Connection check task end + +2025-09-24 12:39:05,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:06,676 INFO Connection check task start + +2025-09-24 12:39:06,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:06,676 INFO Out dated connection ,size=0 + +2025-09-24 12:39:06,676 INFO Connection check task end + +2025-09-24 12:39:08,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:09,676 INFO Connection check task start + +2025-09-24 12:39:09,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:09,676 INFO Out dated connection ,size=0 + +2025-09-24 12:39:09,676 INFO Connection check task end + +2025-09-24 12:39:11,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:12,677 INFO Connection check task start + +2025-09-24 12:39:12,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:12,677 INFO Out dated connection ,size=0 + +2025-09-24 12:39:12,677 INFO Connection check task end + +2025-09-24 12:39:14,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:15,677 INFO Connection check task start + +2025-09-24 12:39:15,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:15,677 INFO Out dated connection ,size=0 + +2025-09-24 12:39:15,677 INFO Connection check task end + +2025-09-24 12:39:17,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:18,677 INFO Connection check task start + +2025-09-24 12:39:18,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:18,678 INFO Out dated connection ,size=0 + +2025-09-24 12:39:18,678 INFO Connection check task end + +2025-09-24 12:39:20,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:21,678 INFO Connection check task start + +2025-09-24 12:39:21,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:21,678 INFO Out dated connection ,size=0 + +2025-09-24 12:39:21,678 INFO Connection check task end + +2025-09-24 12:39:23,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:24,678 INFO Connection check task start + +2025-09-24 12:39:24,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:24,678 INFO Out dated connection ,size=0 + +2025-09-24 12:39:24,678 INFO Connection check task end + +2025-09-24 12:39:26,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:27,679 INFO Connection check task start + +2025-09-24 12:39:27,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:27,679 INFO Out dated connection ,size=0 + +2025-09-24 12:39:27,679 INFO Connection check task end + +2025-09-24 12:39:29,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:30,681 INFO Connection check task start + +2025-09-24 12:39:30,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:30,681 INFO Out dated connection ,size=0 + +2025-09-24 12:39:30,681 INFO Connection check task end + +2025-09-24 12:39:32,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:33,682 INFO Connection check task start + +2025-09-24 12:39:33,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:33,682 INFO Out dated connection ,size=0 + +2025-09-24 12:39:33,682 INFO Connection check task end + +2025-09-24 12:39:35,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:36,683 INFO Connection check task start + +2025-09-24 12:39:36,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:36,683 INFO Out dated connection ,size=0 + +2025-09-24 12:39:36,683 INFO Connection check task end + +2025-09-24 12:39:38,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:39,683 INFO Connection check task start + +2025-09-24 12:39:39,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:39,684 INFO Out dated connection ,size=0 + +2025-09-24 12:39:39,684 INFO Connection check task end + +2025-09-24 12:39:41,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:42,684 INFO Connection check task start + +2025-09-24 12:39:42,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:42,684 INFO Out dated connection ,size=0 + +2025-09-24 12:39:42,684 INFO Connection check task end + +2025-09-24 12:39:44,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:45,685 INFO Connection check task start + +2025-09-24 12:39:45,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:45,685 INFO Out dated connection ,size=0 + +2025-09-24 12:39:45,685 INFO Connection check task end + +2025-09-24 12:39:47,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:48,685 INFO Connection check task start + +2025-09-24 12:39:48,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:48,685 INFO Out dated connection ,size=0 + +2025-09-24 12:39:48,685 INFO Connection check task end + +2025-09-24 12:39:50,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:51,686 INFO Connection check task start + +2025-09-24 12:39:51,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:51,686 INFO Out dated connection ,size=0 + +2025-09-24 12:39:51,686 INFO Connection check task end + +2025-09-24 12:39:53,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:54,687 INFO Connection check task start + +2025-09-24 12:39:54,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:54,687 INFO Out dated connection ,size=0 + +2025-09-24 12:39:54,687 INFO Connection check task end + +2025-09-24 12:39:56,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:39:57,687 INFO Connection check task start + +2025-09-24 12:39:57,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:39:57,687 INFO Out dated connection ,size=0 + +2025-09-24 12:39:57,687 INFO Connection check task end + +2025-09-24 12:39:59,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:00,688 INFO Connection check task start + +2025-09-24 12:40:00,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:00,688 INFO Out dated connection ,size=0 + +2025-09-24 12:40:00,688 INFO Connection check task end + +2025-09-24 12:40:02,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:03,689 INFO Connection check task start + +2025-09-24 12:40:03,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:03,689 INFO Out dated connection ,size=0 + +2025-09-24 12:40:03,689 INFO Connection check task end + +2025-09-24 12:40:05,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:06,690 INFO Connection check task start + +2025-09-24 12:40:06,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:06,690 INFO Out dated connection ,size=0 + +2025-09-24 12:40:06,690 INFO Connection check task end + +2025-09-24 12:40:08,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:09,690 INFO Connection check task start + +2025-09-24 12:40:09,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:09,691 INFO Out dated connection ,size=0 + +2025-09-24 12:40:09,691 INFO Connection check task end + +2025-09-24 12:40:11,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:12,691 INFO Connection check task start + +2025-09-24 12:40:12,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:12,691 INFO Out dated connection ,size=0 + +2025-09-24 12:40:12,692 INFO Connection check task end + +2025-09-24 12:40:14,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:15,694 INFO Connection check task start + +2025-09-24 12:40:15,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:15,694 INFO Out dated connection ,size=0 + +2025-09-24 12:40:15,694 INFO Connection check task end + +2025-09-24 12:40:17,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:18,694 INFO Connection check task start + +2025-09-24 12:40:18,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:18,708 INFO Out dated connection ,size=0 + +2025-09-24 12:40:18,708 INFO Connection check task end + +2025-09-24 12:40:20,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:21,709 INFO Connection check task start + +2025-09-24 12:40:21,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:21,709 INFO Out dated connection ,size=0 + +2025-09-24 12:40:21,709 INFO Connection check task end + +2025-09-24 12:40:23,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:24,711 INFO Connection check task start + +2025-09-24 12:40:24,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:24,711 INFO Out dated connection ,size=0 + +2025-09-24 12:40:24,711 INFO Connection check task end + +2025-09-24 12:40:26,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:27,712 INFO Connection check task start + +2025-09-24 12:40:27,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:27,713 INFO Out dated connection ,size=0 + +2025-09-24 12:40:27,713 INFO Connection check task end + +2025-09-24 12:40:29,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:30,713 INFO Connection check task start + +2025-09-24 12:40:30,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:30,713 INFO Out dated connection ,size=0 + +2025-09-24 12:40:30,713 INFO Connection check task end + +2025-09-24 12:40:32,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:33,715 INFO Connection check task start + +2025-09-24 12:40:33,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:33,715 INFO Out dated connection ,size=0 + +2025-09-24 12:40:33,715 INFO Connection check task end + +2025-09-24 12:40:35,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:36,718 INFO Connection check task start + +2025-09-24 12:40:36,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:36,718 INFO Out dated connection ,size=0 + +2025-09-24 12:40:36,718 INFO Connection check task end + +2025-09-24 12:40:38,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:39,720 INFO Connection check task start + +2025-09-24 12:40:39,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:39,720 INFO Out dated connection ,size=0 + +2025-09-24 12:40:39,720 INFO Connection check task end + +2025-09-24 12:40:41,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:42,721 INFO Connection check task start + +2025-09-24 12:40:42,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:42,721 INFO Out dated connection ,size=0 + +2025-09-24 12:40:42,721 INFO Connection check task end + +2025-09-24 12:40:44,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:45,723 INFO Connection check task start + +2025-09-24 12:40:45,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:45,724 INFO Out dated connection ,size=0 + +2025-09-24 12:40:45,724 INFO Connection check task end + +2025-09-24 12:40:47,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:48,724 INFO Connection check task start + +2025-09-24 12:40:48,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:48,724 INFO Out dated connection ,size=0 + +2025-09-24 12:40:48,724 INFO Connection check task end + +2025-09-24 12:40:50,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:51,724 INFO Connection check task start + +2025-09-24 12:40:51,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:51,725 INFO Out dated connection ,size=0 + +2025-09-24 12:40:51,725 INFO Connection check task end + +2025-09-24 12:40:53,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:54,725 INFO Connection check task start + +2025-09-24 12:40:54,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:54,725 INFO Out dated connection ,size=0 + +2025-09-24 12:40:54,725 INFO Connection check task end + +2025-09-24 12:40:56,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:40:57,726 INFO Connection check task start + +2025-09-24 12:40:57,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:40:57,726 INFO Out dated connection ,size=0 + +2025-09-24 12:40:57,726 INFO Connection check task end + +2025-09-24 12:40:59,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:00,728 INFO Connection check task start + +2025-09-24 12:41:00,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:00,728 INFO Out dated connection ,size=0 + +2025-09-24 12:41:00,728 INFO Connection check task end + +2025-09-24 12:41:02,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:03,729 INFO Connection check task start + +2025-09-24 12:41:03,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:03,729 INFO Out dated connection ,size=0 + +2025-09-24 12:41:03,729 INFO Connection check task end + +2025-09-24 12:41:05,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:06,730 INFO Connection check task start + +2025-09-24 12:41:06,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:06,730 INFO Out dated connection ,size=0 + +2025-09-24 12:41:06,730 INFO Connection check task end + +2025-09-24 12:41:08,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:09,730 INFO Connection check task start + +2025-09-24 12:41:09,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:09,731 INFO Out dated connection ,size=0 + +2025-09-24 12:41:09,731 INFO Connection check task end + +2025-09-24 12:41:11,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:12,731 INFO Connection check task start + +2025-09-24 12:41:12,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:12,731 INFO Out dated connection ,size=0 + +2025-09-24 12:41:12,731 INFO Connection check task end + +2025-09-24 12:41:14,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:15,732 INFO Connection check task start + +2025-09-24 12:41:15,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:15,732 INFO Out dated connection ,size=0 + +2025-09-24 12:41:15,732 INFO Connection check task end + +2025-09-24 12:41:17,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:18,732 INFO Connection check task start + +2025-09-24 12:41:18,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:18,732 INFO Out dated connection ,size=0 + +2025-09-24 12:41:18,732 INFO Connection check task end + +2025-09-24 12:41:20,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:21,733 INFO Connection check task start + +2025-09-24 12:41:21,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:21,733 INFO Out dated connection ,size=0 + +2025-09-24 12:41:21,733 INFO Connection check task end + +2025-09-24 12:41:23,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:24,733 INFO Connection check task start + +2025-09-24 12:41:24,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:24,733 INFO Out dated connection ,size=0 + +2025-09-24 12:41:24,733 INFO Connection check task end + +2025-09-24 12:41:26,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:27,735 INFO Connection check task start + +2025-09-24 12:41:27,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:27,736 INFO Out dated connection ,size=0 + +2025-09-24 12:41:27,736 INFO Connection check task end + +2025-09-24 12:41:29,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:30,736 INFO Connection check task start + +2025-09-24 12:41:30,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:30,736 INFO Out dated connection ,size=0 + +2025-09-24 12:41:30,736 INFO Connection check task end + +2025-09-24 12:41:32,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:33,736 INFO Connection check task start + +2025-09-24 12:41:33,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:33,737 INFO Out dated connection ,size=0 + +2025-09-24 12:41:33,737 INFO Connection check task end + +2025-09-24 12:41:35,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:36,737 INFO Connection check task start + +2025-09-24 12:41:36,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:36,737 INFO Out dated connection ,size=0 + +2025-09-24 12:41:36,737 INFO Connection check task end + +2025-09-24 12:41:38,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:39,739 INFO Connection check task start + +2025-09-24 12:41:39,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:39,739 INFO Out dated connection ,size=0 + +2025-09-24 12:41:39,739 INFO Connection check task end + +2025-09-24 12:41:41,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:42,739 INFO Connection check task start + +2025-09-24 12:41:42,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:42,740 INFO Out dated connection ,size=0 + +2025-09-24 12:41:42,740 INFO Connection check task end + +2025-09-24 12:41:44,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:45,740 INFO Connection check task start + +2025-09-24 12:41:45,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:45,740 INFO Out dated connection ,size=0 + +2025-09-24 12:41:45,740 INFO Connection check task end + +2025-09-24 12:41:47,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:48,741 INFO Connection check task start + +2025-09-24 12:41:48,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:48,741 INFO Out dated connection ,size=0 + +2025-09-24 12:41:48,741 INFO Connection check task end + +2025-09-24 12:41:50,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:51,742 INFO Connection check task start + +2025-09-24 12:41:51,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:51,742 INFO Out dated connection ,size=0 + +2025-09-24 12:41:51,742 INFO Connection check task end + +2025-09-24 12:41:53,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:54,744 INFO Connection check task start + +2025-09-24 12:41:54,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:54,744 INFO Out dated connection ,size=0 + +2025-09-24 12:41:54,744 INFO Connection check task end + +2025-09-24 12:41:56,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:41:57,745 INFO Connection check task start + +2025-09-24 12:41:57,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:41:57,746 INFO Out dated connection ,size=0 + +2025-09-24 12:41:57,746 INFO Connection check task end + +2025-09-24 12:41:59,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:00,748 INFO Connection check task start + +2025-09-24 12:42:00,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:00,748 INFO Out dated connection ,size=0 + +2025-09-24 12:42:00,748 INFO Connection check task end + +2025-09-24 12:42:02,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:03,749 INFO Connection check task start + +2025-09-24 12:42:03,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:03,749 INFO Out dated connection ,size=0 + +2025-09-24 12:42:03,749 INFO Connection check task end + +2025-09-24 12:42:05,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:06,749 INFO Connection check task start + +2025-09-24 12:42:06,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:06,749 INFO Out dated connection ,size=0 + +2025-09-24 12:42:06,749 INFO Connection check task end + +2025-09-24 12:42:08,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:09,751 INFO Connection check task start + +2025-09-24 12:42:09,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:09,751 INFO Out dated connection ,size=0 + +2025-09-24 12:42:09,751 INFO Connection check task end + +2025-09-24 12:42:11,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:12,751 INFO Connection check task start + +2025-09-24 12:42:12,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:12,752 INFO Out dated connection ,size=0 + +2025-09-24 12:42:12,752 INFO Connection check task end + +2025-09-24 12:42:14,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:15,753 INFO Connection check task start + +2025-09-24 12:42:15,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:15,753 INFO Out dated connection ,size=0 + +2025-09-24 12:42:15,753 INFO Connection check task end + +2025-09-24 12:42:17,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:18,753 INFO Connection check task start + +2025-09-24 12:42:18,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:18,754 INFO Out dated connection ,size=0 + +2025-09-24 12:42:18,754 INFO Connection check task end + +2025-09-24 12:42:20,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:21,754 INFO Connection check task start + +2025-09-24 12:42:21,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:21,754 INFO Out dated connection ,size=0 + +2025-09-24 12:42:21,754 INFO Connection check task end + +2025-09-24 12:42:23,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:24,755 INFO Connection check task start + +2025-09-24 12:42:24,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:24,755 INFO Out dated connection ,size=0 + +2025-09-24 12:42:24,755 INFO Connection check task end + +2025-09-24 12:42:26,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:27,755 INFO Connection check task start + +2025-09-24 12:42:27,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:27,755 INFO Out dated connection ,size=0 + +2025-09-24 12:42:27,755 INFO Connection check task end + +2025-09-24 12:42:29,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:30,756 INFO Connection check task start + +2025-09-24 12:42:30,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:30,756 INFO Out dated connection ,size=0 + +2025-09-24 12:42:30,756 INFO Connection check task end + +2025-09-24 12:42:32,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:33,757 INFO Connection check task start + +2025-09-24 12:42:33,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:33,757 INFO Out dated connection ,size=0 + +2025-09-24 12:42:33,757 INFO Connection check task end + +2025-09-24 12:42:35,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:36,759 INFO Connection check task start + +2025-09-24 12:42:36,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:36,759 INFO Out dated connection ,size=0 + +2025-09-24 12:42:36,759 INFO Connection check task end + +2025-09-24 12:42:38,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:39,759 INFO Connection check task start + +2025-09-24 12:42:39,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:39,760 INFO Out dated connection ,size=0 + +2025-09-24 12:42:39,760 INFO Connection check task end + +2025-09-24 12:42:41,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:42,760 INFO Connection check task start + +2025-09-24 12:42:42,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:42,760 INFO Out dated connection ,size=0 + +2025-09-24 12:42:42,760 INFO Connection check task end + +2025-09-24 12:42:44,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:45,761 INFO Connection check task start + +2025-09-24 12:42:45,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:45,761 INFO Out dated connection ,size=0 + +2025-09-24 12:42:45,761 INFO Connection check task end + +2025-09-24 12:42:47,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:48,761 INFO Connection check task start + +2025-09-24 12:42:48,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:48,761 INFO Out dated connection ,size=0 + +2025-09-24 12:42:48,761 INFO Connection check task end + +2025-09-24 12:42:50,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:51,762 INFO Connection check task start + +2025-09-24 12:42:51,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:51,770 INFO Out dated connection ,size=0 + +2025-09-24 12:42:51,771 INFO Connection check task end + +2025-09-24 12:42:53,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:54,771 INFO Connection check task start + +2025-09-24 12:42:54,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:54,771 INFO Out dated connection ,size=0 + +2025-09-24 12:42:54,771 INFO Connection check task end + +2025-09-24 12:42:56,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:42:57,772 INFO Connection check task start + +2025-09-24 12:42:57,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:42:57,773 INFO Out dated connection ,size=0 + +2025-09-24 12:42:57,773 INFO Connection check task end + +2025-09-24 12:42:59,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:00,773 INFO Connection check task start + +2025-09-24 12:43:00,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:00,773 INFO Out dated connection ,size=0 + +2025-09-24 12:43:00,773 INFO Connection check task end + +2025-09-24 12:43:02,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:03,774 INFO Connection check task start + +2025-09-24 12:43:03,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:03,775 INFO Out dated connection ,size=0 + +2025-09-24 12:43:03,775 INFO Connection check task end + +2025-09-24 12:43:05,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:06,776 INFO Connection check task start + +2025-09-24 12:43:06,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:06,776 INFO Out dated connection ,size=0 + +2025-09-24 12:43:06,776 INFO Connection check task end + +2025-09-24 12:43:08,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:09,776 INFO Connection check task start + +2025-09-24 12:43:09,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:09,776 INFO Out dated connection ,size=0 + +2025-09-24 12:43:09,776 INFO Connection check task end + +2025-09-24 12:43:11,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:12,776 INFO Connection check task start + +2025-09-24 12:43:12,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:12,777 INFO Out dated connection ,size=0 + +2025-09-24 12:43:12,777 INFO Connection check task end + +2025-09-24 12:43:14,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:15,777 INFO Connection check task start + +2025-09-24 12:43:15,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:15,777 INFO Out dated connection ,size=0 + +2025-09-24 12:43:15,777 INFO Connection check task end + +2025-09-24 12:43:17,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:18,777 INFO Connection check task start + +2025-09-24 12:43:18,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:18,777 INFO Out dated connection ,size=0 + +2025-09-24 12:43:18,777 INFO Connection check task end + +2025-09-24 12:43:20,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:21,778 INFO Connection check task start + +2025-09-24 12:43:21,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:21,778 INFO Out dated connection ,size=0 + +2025-09-24 12:43:21,778 INFO Connection check task end + +2025-09-24 12:43:23,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:24,778 INFO Connection check task start + +2025-09-24 12:43:24,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:24,778 INFO Out dated connection ,size=0 + +2025-09-24 12:43:24,778 INFO Connection check task end + +2025-09-24 12:43:26,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:27,779 INFO Connection check task start + +2025-09-24 12:43:27,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:27,779 INFO Out dated connection ,size=0 + +2025-09-24 12:43:27,779 INFO Connection check task end + +2025-09-24 12:43:29,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:30,779 INFO Connection check task start + +2025-09-24 12:43:30,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:30,780 INFO Out dated connection ,size=0 + +2025-09-24 12:43:30,780 INFO Connection check task end + +2025-09-24 12:43:32,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:33,780 INFO Connection check task start + +2025-09-24 12:43:33,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:33,780 INFO Out dated connection ,size=0 + +2025-09-24 12:43:33,780 INFO Connection check task end + +2025-09-24 12:43:35,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:36,780 INFO Connection check task start + +2025-09-24 12:43:36,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:36,781 INFO Out dated connection ,size=0 + +2025-09-24 12:43:36,781 INFO Connection check task end + +2025-09-24 12:43:38,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:39,781 INFO Connection check task start + +2025-09-24 12:43:39,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:39,781 INFO Out dated connection ,size=0 + +2025-09-24 12:43:39,781 INFO Connection check task end + +2025-09-24 12:43:41,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:42,782 INFO Connection check task start + +2025-09-24 12:43:42,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:42,782 INFO Out dated connection ,size=0 + +2025-09-24 12:43:42,782 INFO Connection check task end + +2025-09-24 12:43:44,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:45,782 INFO Connection check task start + +2025-09-24 12:43:45,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:45,782 INFO Out dated connection ,size=0 + +2025-09-24 12:43:45,782 INFO Connection check task end + +2025-09-24 12:43:47,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:48,784 INFO Connection check task start + +2025-09-24 12:43:48,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:48,784 INFO Out dated connection ,size=0 + +2025-09-24 12:43:48,784 INFO Connection check task end + +2025-09-24 12:43:50,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:51,786 INFO Connection check task start + +2025-09-24 12:43:51,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:51,786 INFO Out dated connection ,size=0 + +2025-09-24 12:43:51,786 INFO Connection check task end + +2025-09-24 12:43:53,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:54,786 INFO Connection check task start + +2025-09-24 12:43:54,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:54,787 INFO Out dated connection ,size=0 + +2025-09-24 12:43:54,787 INFO Connection check task end + +2025-09-24 12:43:56,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:43:57,787 INFO Connection check task start + +2025-09-24 12:43:57,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:43:57,787 INFO Out dated connection ,size=0 + +2025-09-24 12:43:57,787 INFO Connection check task end + +2025-09-24 12:43:59,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:00,789 INFO Connection check task start + +2025-09-24 12:44:00,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:00,789 INFO Out dated connection ,size=0 + +2025-09-24 12:44:00,789 INFO Connection check task end + +2025-09-24 12:44:02,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:03,791 INFO Connection check task start + +2025-09-24 12:44:03,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:03,791 INFO Out dated connection ,size=0 + +2025-09-24 12:44:03,791 INFO Connection check task end + +2025-09-24 12:44:05,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:06,791 INFO Connection check task start + +2025-09-24 12:44:06,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:06,792 INFO Out dated connection ,size=0 + +2025-09-24 12:44:06,792 INFO Connection check task end + +2025-09-24 12:44:08,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:09,792 INFO Connection check task start + +2025-09-24 12:44:09,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:09,792 INFO Out dated connection ,size=0 + +2025-09-24 12:44:09,792 INFO Connection check task end + +2025-09-24 12:44:11,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:12,795 INFO Connection check task start + +2025-09-24 12:44:12,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:12,795 INFO Out dated connection ,size=0 + +2025-09-24 12:44:12,795 INFO Connection check task end + +2025-09-24 12:44:14,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:15,795 INFO Connection check task start + +2025-09-24 12:44:15,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:15,795 INFO Out dated connection ,size=0 + +2025-09-24 12:44:15,795 INFO Connection check task end + +2025-09-24 12:44:17,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:18,795 INFO Connection check task start + +2025-09-24 12:44:18,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:18,796 INFO Out dated connection ,size=0 + +2025-09-24 12:44:18,796 INFO Connection check task end + +2025-09-24 12:44:20,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:21,796 INFO Connection check task start + +2025-09-24 12:44:21,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:21,797 INFO Out dated connection ,size=0 + +2025-09-24 12:44:21,797 INFO Connection check task end + +2025-09-24 12:44:23,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:24,799 INFO Connection check task start + +2025-09-24 12:44:24,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:24,799 INFO Out dated connection ,size=0 + +2025-09-24 12:44:24,799 INFO Connection check task end + +2025-09-24 12:44:26,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:27,801 INFO Connection check task start + +2025-09-24 12:44:27,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:27,801 INFO Out dated connection ,size=0 + +2025-09-24 12:44:27,801 INFO Connection check task end + +2025-09-24 12:44:29,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:30,802 INFO Connection check task start + +2025-09-24 12:44:30,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:30,802 INFO Out dated connection ,size=0 + +2025-09-24 12:44:30,802 INFO Connection check task end + +2025-09-24 12:44:32,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:33,803 INFO Connection check task start + +2025-09-24 12:44:33,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:33,803 INFO Out dated connection ,size=0 + +2025-09-24 12:44:33,803 INFO Connection check task end + +2025-09-24 12:44:35,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:36,805 INFO Connection check task start + +2025-09-24 12:44:36,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:36,805 INFO Out dated connection ,size=0 + +2025-09-24 12:44:36,805 INFO Connection check task end + +2025-09-24 12:44:38,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:39,806 INFO Connection check task start + +2025-09-24 12:44:39,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:39,806 INFO Out dated connection ,size=0 + +2025-09-24 12:44:39,806 INFO Connection check task end + +2025-09-24 12:44:41,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:42,808 INFO Connection check task start + +2025-09-24 12:44:42,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:42,808 INFO Out dated connection ,size=0 + +2025-09-24 12:44:42,808 INFO Connection check task end + +2025-09-24 12:44:44,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:45,809 INFO Connection check task start + +2025-09-24 12:44:45,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:45,810 INFO Out dated connection ,size=0 + +2025-09-24 12:44:45,810 INFO Connection check task end + +2025-09-24 12:44:47,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:48,810 INFO Connection check task start + +2025-09-24 12:44:48,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:48,810 INFO Out dated connection ,size=0 + +2025-09-24 12:44:48,810 INFO Connection check task end + +2025-09-24 12:44:50,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:51,811 INFO Connection check task start + +2025-09-24 12:44:51,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:51,811 INFO Out dated connection ,size=0 + +2025-09-24 12:44:51,811 INFO Connection check task end + +2025-09-24 12:44:53,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:54,813 INFO Connection check task start + +2025-09-24 12:44:54,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:54,813 INFO Out dated connection ,size=0 + +2025-09-24 12:44:54,813 INFO Connection check task end + +2025-09-24 12:44:56,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:44:57,815 INFO Connection check task start + +2025-09-24 12:44:57,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:44:57,816 INFO Out dated connection ,size=0 + +2025-09-24 12:44:57,816 INFO Connection check task end + +2025-09-24 12:44:59,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:00,816 INFO Connection check task start + +2025-09-24 12:45:00,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:00,816 INFO Out dated connection ,size=0 + +2025-09-24 12:45:00,817 INFO Connection check task end + +2025-09-24 12:45:02,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:03,818 INFO Connection check task start + +2025-09-24 12:45:03,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:03,818 INFO Out dated connection ,size=0 + +2025-09-24 12:45:03,818 INFO Connection check task end + +2025-09-24 12:45:05,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:06,818 INFO Connection check task start + +2025-09-24 12:45:06,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:06,818 INFO Out dated connection ,size=0 + +2025-09-24 12:45:06,818 INFO Connection check task end + +2025-09-24 12:45:08,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:09,820 INFO Connection check task start + +2025-09-24 12:45:09,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:09,820 INFO Out dated connection ,size=0 + +2025-09-24 12:45:09,820 INFO Connection check task end + +2025-09-24 12:45:11,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:12,821 INFO Connection check task start + +2025-09-24 12:45:12,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:12,821 INFO Out dated connection ,size=0 + +2025-09-24 12:45:12,821 INFO Connection check task end + +2025-09-24 12:45:14,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:15,822 INFO Connection check task start + +2025-09-24 12:45:15,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:15,822 INFO Out dated connection ,size=0 + +2025-09-24 12:45:15,822 INFO Connection check task end + +2025-09-24 12:45:17,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:18,823 INFO Connection check task start + +2025-09-24 12:45:18,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:18,823 INFO Out dated connection ,size=0 + +2025-09-24 12:45:18,823 INFO Connection check task end + +2025-09-24 12:45:20,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:21,824 INFO Connection check task start + +2025-09-24 12:45:21,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:21,824 INFO Out dated connection ,size=0 + +2025-09-24 12:45:21,824 INFO Connection check task end + +2025-09-24 12:45:23,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:24,826 INFO Connection check task start + +2025-09-24 12:45:24,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:24,826 INFO Out dated connection ,size=0 + +2025-09-24 12:45:24,826 INFO Connection check task end + +2025-09-24 12:45:26,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:27,826 INFO Connection check task start + +2025-09-24 12:45:27,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:27,826 INFO Out dated connection ,size=0 + +2025-09-24 12:45:27,826 INFO Connection check task end + +2025-09-24 12:45:29,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:30,826 INFO Connection check task start + +2025-09-24 12:45:30,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:30,827 INFO Out dated connection ,size=0 + +2025-09-24 12:45:30,827 INFO Connection check task end + +2025-09-24 12:45:32,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:33,827 INFO Connection check task start + +2025-09-24 12:45:33,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:33,827 INFO Out dated connection ,size=0 + +2025-09-24 12:45:33,827 INFO Connection check task end + +2025-09-24 12:45:35,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:36,828 INFO Connection check task start + +2025-09-24 12:45:36,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:36,828 INFO Out dated connection ,size=0 + +2025-09-24 12:45:36,828 INFO Connection check task end + +2025-09-24 12:45:38,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:39,830 INFO Connection check task start + +2025-09-24 12:45:39,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:39,831 INFO Out dated connection ,size=0 + +2025-09-24 12:45:39,831 INFO Connection check task end + +2025-09-24 12:45:41,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:42,831 INFO Connection check task start + +2025-09-24 12:45:42,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:42,831 INFO Out dated connection ,size=0 + +2025-09-24 12:45:42,831 INFO Connection check task end + +2025-09-24 12:45:44,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:45,831 INFO Connection check task start + +2025-09-24 12:45:45,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:45,832 INFO Out dated connection ,size=0 + +2025-09-24 12:45:45,832 INFO Connection check task end + +2025-09-24 12:45:47,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:48,832 INFO Connection check task start + +2025-09-24 12:45:48,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:48,833 INFO Out dated connection ,size=0 + +2025-09-24 12:45:48,833 INFO Connection check task end + +2025-09-24 12:45:50,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:51,835 INFO Connection check task start + +2025-09-24 12:45:51,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:51,835 INFO Out dated connection ,size=0 + +2025-09-24 12:45:51,835 INFO Connection check task end + +2025-09-24 12:45:53,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:54,836 INFO Connection check task start + +2025-09-24 12:45:54,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:54,836 INFO Out dated connection ,size=0 + +2025-09-24 12:45:54,836 INFO Connection check task end + +2025-09-24 12:45:56,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:45:57,837 INFO Connection check task start + +2025-09-24 12:45:57,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:45:57,837 INFO Out dated connection ,size=0 + +2025-09-24 12:45:57,838 INFO Connection check task end + +2025-09-24 12:45:59,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:00,838 INFO Connection check task start + +2025-09-24 12:46:00,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:00,838 INFO Out dated connection ,size=0 + +2025-09-24 12:46:00,838 INFO Connection check task end + +2025-09-24 12:46:02,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:03,839 INFO Connection check task start + +2025-09-24 12:46:03,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:03,839 INFO Out dated connection ,size=0 + +2025-09-24 12:46:03,839 INFO Connection check task end + +2025-09-24 12:46:05,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:06,840 INFO Connection check task start + +2025-09-24 12:46:06,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:06,840 INFO Out dated connection ,size=0 + +2025-09-24 12:46:06,840 INFO Connection check task end + +2025-09-24 12:46:08,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:09,840 INFO Connection check task start + +2025-09-24 12:46:09,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:09,840 INFO Out dated connection ,size=0 + +2025-09-24 12:46:09,840 INFO Connection check task end + +2025-09-24 12:46:11,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:12,841 INFO Connection check task start + +2025-09-24 12:46:12,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:12,841 INFO Out dated connection ,size=0 + +2025-09-24 12:46:12,841 INFO Connection check task end + +2025-09-24 12:46:14,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:15,843 INFO Connection check task start + +2025-09-24 12:46:15,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:15,843 INFO Out dated connection ,size=0 + +2025-09-24 12:46:15,844 INFO Connection check task end + +2025-09-24 12:46:17,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:18,844 INFO Connection check task start + +2025-09-24 12:46:18,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:18,844 INFO Out dated connection ,size=0 + +2025-09-24 12:46:18,844 INFO Connection check task end + +2025-09-24 12:46:20,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:21,846 INFO Connection check task start + +2025-09-24 12:46:21,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:21,847 INFO Out dated connection ,size=0 + +2025-09-24 12:46:21,847 INFO Connection check task end + +2025-09-24 12:46:23,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:24,848 INFO Connection check task start + +2025-09-24 12:46:24,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:24,849 INFO Out dated connection ,size=0 + +2025-09-24 12:46:24,849 INFO Connection check task end + +2025-09-24 12:46:26,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:27,851 INFO Connection check task start + +2025-09-24 12:46:27,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:27,851 INFO Out dated connection ,size=0 + +2025-09-24 12:46:27,851 INFO Connection check task end + +2025-09-24 12:46:29,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:30,853 INFO Connection check task start + +2025-09-24 12:46:30,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:30,853 INFO Out dated connection ,size=0 + +2025-09-24 12:46:30,853 INFO Connection check task end + +2025-09-24 12:46:32,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:33,854 INFO Connection check task start + +2025-09-24 12:46:33,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:33,854 INFO Out dated connection ,size=0 + +2025-09-24 12:46:33,854 INFO Connection check task end + +2025-09-24 12:46:35,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:36,856 INFO Connection check task start + +2025-09-24 12:46:36,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:36,856 INFO Out dated connection ,size=0 + +2025-09-24 12:46:36,856 INFO Connection check task end + +2025-09-24 12:46:38,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:39,856 INFO Connection check task start + +2025-09-24 12:46:39,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:39,857 INFO Out dated connection ,size=0 + +2025-09-24 12:46:39,857 INFO Connection check task end + +2025-09-24 12:46:41,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:42,857 INFO Connection check task start + +2025-09-24 12:46:42,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:42,857 INFO Out dated connection ,size=0 + +2025-09-24 12:46:42,857 INFO Connection check task end + +2025-09-24 12:46:44,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:45,858 INFO Connection check task start + +2025-09-24 12:46:45,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:45,858 INFO Out dated connection ,size=0 + +2025-09-24 12:46:45,858 INFO Connection check task end + +2025-09-24 12:46:47,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:48,859 INFO Connection check task start + +2025-09-24 12:46:48,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:48,859 INFO Out dated connection ,size=0 + +2025-09-24 12:46:48,860 INFO Connection check task end + +2025-09-24 12:46:50,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:51,860 INFO Connection check task start + +2025-09-24 12:46:51,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:51,860 INFO Out dated connection ,size=0 + +2025-09-24 12:46:51,860 INFO Connection check task end + +2025-09-24 12:46:53,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:54,862 INFO Connection check task start + +2025-09-24 12:46:54,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:54,862 INFO Out dated connection ,size=0 + +2025-09-24 12:46:54,862 INFO Connection check task end + +2025-09-24 12:46:56,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:46:57,862 INFO Connection check task start + +2025-09-24 12:46:57,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:46:57,863 INFO Out dated connection ,size=0 + +2025-09-24 12:46:57,863 INFO Connection check task end + +2025-09-24 12:46:59,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:00,863 INFO Connection check task start + +2025-09-24 12:47:00,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:00,863 INFO Out dated connection ,size=0 + +2025-09-24 12:47:00,863 INFO Connection check task end + +2025-09-24 12:47:02,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:03,864 INFO Connection check task start + +2025-09-24 12:47:03,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:03,864 INFO Out dated connection ,size=0 + +2025-09-24 12:47:03,864 INFO Connection check task end + +2025-09-24 12:47:05,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:06,865 INFO Connection check task start + +2025-09-24 12:47:06,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:06,865 INFO Out dated connection ,size=0 + +2025-09-24 12:47:06,865 INFO Connection check task end + +2025-09-24 12:47:08,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:09,865 INFO Connection check task start + +2025-09-24 12:47:09,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:09,865 INFO Out dated connection ,size=0 + +2025-09-24 12:47:09,865 INFO Connection check task end + +2025-09-24 12:47:11,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:12,866 INFO Connection check task start + +2025-09-24 12:47:12,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:12,866 INFO Out dated connection ,size=0 + +2025-09-24 12:47:12,867 INFO Connection check task end + +2025-09-24 12:47:14,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:15,867 INFO Connection check task start + +2025-09-24 12:47:15,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:15,867 INFO Out dated connection ,size=0 + +2025-09-24 12:47:15,867 INFO Connection check task end + +2025-09-24 12:47:17,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:18,867 INFO Connection check task start + +2025-09-24 12:47:18,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:18,867 INFO Out dated connection ,size=0 + +2025-09-24 12:47:18,868 INFO Connection check task end + +2025-09-24 12:47:20,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:21,878 INFO Connection check task start + +2025-09-24 12:47:21,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:21,878 INFO Out dated connection ,size=0 + +2025-09-24 12:47:21,878 INFO Connection check task end + +2025-09-24 12:47:23,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:24,879 INFO Connection check task start + +2025-09-24 12:47:24,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:24,879 INFO Out dated connection ,size=0 + +2025-09-24 12:47:24,879 INFO Connection check task end + +2025-09-24 12:47:26,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:27,879 INFO Connection check task start + +2025-09-24 12:47:27,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:27,880 INFO Out dated connection ,size=0 + +2025-09-24 12:47:27,880 INFO Connection check task end + +2025-09-24 12:47:29,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:30,880 INFO Connection check task start + +2025-09-24 12:47:30,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:30,881 INFO Out dated connection ,size=0 + +2025-09-24 12:47:30,881 INFO Connection check task end + +2025-09-24 12:47:32,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:33,881 INFO Connection check task start + +2025-09-24 12:47:33,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:33,881 INFO Out dated connection ,size=0 + +2025-09-24 12:47:33,881 INFO Connection check task end + +2025-09-24 12:47:35,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:36,882 INFO Connection check task start + +2025-09-24 12:47:36,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:36,882 INFO Out dated connection ,size=0 + +2025-09-24 12:47:36,882 INFO Connection check task end + +2025-09-24 12:47:38,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:39,882 INFO Connection check task start + +2025-09-24 12:47:39,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:39,883 INFO Out dated connection ,size=0 + +2025-09-24 12:47:39,883 INFO Connection check task end + +2025-09-24 12:47:41,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:42,885 INFO Connection check task start + +2025-09-24 12:47:42,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:42,885 INFO Out dated connection ,size=0 + +2025-09-24 12:47:42,885 INFO Connection check task end + +2025-09-24 12:47:44,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:45,888 INFO Connection check task start + +2025-09-24 12:47:45,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:45,888 INFO Out dated connection ,size=0 + +2025-09-24 12:47:45,888 INFO Connection check task end + +2025-09-24 12:47:47,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:48,888 INFO Connection check task start + +2025-09-24 12:47:48,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:48,889 INFO Out dated connection ,size=0 + +2025-09-24 12:47:48,889 INFO Connection check task end + +2025-09-24 12:47:50,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:51,890 INFO Connection check task start + +2025-09-24 12:47:51,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:51,890 INFO Out dated connection ,size=0 + +2025-09-24 12:47:51,890 INFO Connection check task end + +2025-09-24 12:47:53,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:54,892 INFO Connection check task start + +2025-09-24 12:47:54,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:54,892 INFO Out dated connection ,size=0 + +2025-09-24 12:47:54,892 INFO Connection check task end + +2025-09-24 12:47:56,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:47:57,893 INFO Connection check task start + +2025-09-24 12:47:57,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:47:57,893 INFO Out dated connection ,size=0 + +2025-09-24 12:47:57,893 INFO Connection check task end + +2025-09-24 12:47:59,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:00,894 INFO Connection check task start + +2025-09-24 12:48:00,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:00,895 INFO Out dated connection ,size=0 + +2025-09-24 12:48:00,895 INFO Connection check task end + +2025-09-24 12:48:02,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:03,895 INFO Connection check task start + +2025-09-24 12:48:03,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:03,895 INFO Out dated connection ,size=0 + +2025-09-24 12:48:03,896 INFO Connection check task end + +2025-09-24 12:48:05,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:06,898 INFO Connection check task start + +2025-09-24 12:48:06,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:06,898 INFO Out dated connection ,size=0 + +2025-09-24 12:48:06,898 INFO Connection check task end + +2025-09-24 12:48:08,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:09,899 INFO Connection check task start + +2025-09-24 12:48:09,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:09,899 INFO Out dated connection ,size=0 + +2025-09-24 12:48:09,900 INFO Connection check task end + +2025-09-24 12:48:11,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:12,900 INFO Connection check task start + +2025-09-24 12:48:12,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:12,900 INFO Out dated connection ,size=0 + +2025-09-24 12:48:12,900 INFO Connection check task end + +2025-09-24 12:48:14,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:15,903 INFO Connection check task start + +2025-09-24 12:48:15,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:15,903 INFO Out dated connection ,size=0 + +2025-09-24 12:48:15,903 INFO Connection check task end + +2025-09-24 12:48:17,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:18,905 INFO Connection check task start + +2025-09-24 12:48:18,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:18,906 INFO Out dated connection ,size=0 + +2025-09-24 12:48:18,906 INFO Connection check task end + +2025-09-24 12:48:20,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:21,910 INFO Connection check task start + +2025-09-24 12:48:21,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:21,910 INFO Out dated connection ,size=0 + +2025-09-24 12:48:21,910 INFO Connection check task end + +2025-09-24 12:48:23,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:24,910 INFO Connection check task start + +2025-09-24 12:48:24,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:24,911 INFO Out dated connection ,size=0 + +2025-09-24 12:48:24,911 INFO Connection check task end + +2025-09-24 12:48:26,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:27,911 INFO Connection check task start + +2025-09-24 12:48:27,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:27,911 INFO Out dated connection ,size=0 + +2025-09-24 12:48:27,911 INFO Connection check task end + +2025-09-24 12:48:29,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:30,912 INFO Connection check task start + +2025-09-24 12:48:30,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:30,912 INFO Out dated connection ,size=0 + +2025-09-24 12:48:30,912 INFO Connection check task end + +2025-09-24 12:48:32,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:33,913 INFO Connection check task start + +2025-09-24 12:48:33,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:33,913 INFO Out dated connection ,size=0 + +2025-09-24 12:48:33,913 INFO Connection check task end + +2025-09-24 12:48:35,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:36,914 INFO Connection check task start + +2025-09-24 12:48:36,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:36,914 INFO Out dated connection ,size=0 + +2025-09-24 12:48:36,914 INFO Connection check task end + +2025-09-24 12:48:38,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:39,915 INFO Connection check task start + +2025-09-24 12:48:39,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:39,915 INFO Out dated connection ,size=0 + +2025-09-24 12:48:39,915 INFO Connection check task end + +2025-09-24 12:48:41,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:42,915 INFO Connection check task start + +2025-09-24 12:48:42,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:42,916 INFO Out dated connection ,size=0 + +2025-09-24 12:48:42,916 INFO Connection check task end + +2025-09-24 12:48:44,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:45,916 INFO Connection check task start + +2025-09-24 12:48:45,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:45,917 INFO Out dated connection ,size=0 + +2025-09-24 12:48:45,917 INFO Connection check task end + +2025-09-24 12:48:47,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:48,917 INFO Connection check task start + +2025-09-24 12:48:48,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:48,917 INFO Out dated connection ,size=0 + +2025-09-24 12:48:48,917 INFO Connection check task end + +2025-09-24 12:48:50,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:51,918 INFO Connection check task start + +2025-09-24 12:48:51,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:51,918 INFO Out dated connection ,size=0 + +2025-09-24 12:48:51,918 INFO Connection check task end + +2025-09-24 12:48:53,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:54,919 INFO Connection check task start + +2025-09-24 12:48:54,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:54,919 INFO Out dated connection ,size=0 + +2025-09-24 12:48:54,919 INFO Connection check task end + +2025-09-24 12:48:56,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:48:57,920 INFO Connection check task start + +2025-09-24 12:48:57,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:48:57,920 INFO Out dated connection ,size=0 + +2025-09-24 12:48:57,920 INFO Connection check task end + +2025-09-24 12:48:59,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:00,922 INFO Connection check task start + +2025-09-24 12:49:00,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:00,922 INFO Out dated connection ,size=0 + +2025-09-24 12:49:00,922 INFO Connection check task end + +2025-09-24 12:49:02,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:03,922 INFO Connection check task start + +2025-09-24 12:49:03,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:03,923 INFO Out dated connection ,size=0 + +2025-09-24 12:49:03,923 INFO Connection check task end + +2025-09-24 12:49:05,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:06,923 INFO Connection check task start + +2025-09-24 12:49:06,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:06,923 INFO Out dated connection ,size=0 + +2025-09-24 12:49:06,923 INFO Connection check task end + +2025-09-24 12:49:08,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:09,924 INFO Connection check task start + +2025-09-24 12:49:09,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:09,925 INFO Out dated connection ,size=0 + +2025-09-24 12:49:09,925 INFO Connection check task end + +2025-09-24 12:49:11,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:12,925 INFO Connection check task start + +2025-09-24 12:49:12,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:12,925 INFO Out dated connection ,size=0 + +2025-09-24 12:49:12,925 INFO Connection check task end + +2025-09-24 12:49:14,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:15,926 INFO Connection check task start + +2025-09-24 12:49:15,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:15,927 INFO Out dated connection ,size=0 + +2025-09-24 12:49:15,927 INFO Connection check task end + +2025-09-24 12:49:17,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:18,928 INFO Connection check task start + +2025-09-24 12:49:18,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:18,928 INFO Out dated connection ,size=0 + +2025-09-24 12:49:18,928 INFO Connection check task end + +2025-09-24 12:49:20,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:21,928 INFO Connection check task start + +2025-09-24 12:49:21,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:21,928 INFO Out dated connection ,size=0 + +2025-09-24 12:49:21,928 INFO Connection check task end + +2025-09-24 12:49:23,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:24,929 INFO Connection check task start + +2025-09-24 12:49:24,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:24,929 INFO Out dated connection ,size=0 + +2025-09-24 12:49:24,929 INFO Connection check task end + +2025-09-24 12:49:26,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:27,929 INFO Connection check task start + +2025-09-24 12:49:27,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:27,930 INFO Out dated connection ,size=0 + +2025-09-24 12:49:27,930 INFO Connection check task end + +2025-09-24 12:49:29,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:30,930 INFO Connection check task start + +2025-09-24 12:49:30,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:30,931 INFO Out dated connection ,size=0 + +2025-09-24 12:49:30,931 INFO Connection check task end + +2025-09-24 12:49:32,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:33,933 INFO Connection check task start + +2025-09-24 12:49:33,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:33,933 INFO Out dated connection ,size=0 + +2025-09-24 12:49:33,933 INFO Connection check task end + +2025-09-24 12:49:35,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:36,935 INFO Connection check task start + +2025-09-24 12:49:36,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:36,936 INFO Out dated connection ,size=0 + +2025-09-24 12:49:36,936 INFO Connection check task end + +2025-09-24 12:49:38,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:39,936 INFO Connection check task start + +2025-09-24 12:49:39,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:39,937 INFO Out dated connection ,size=0 + +2025-09-24 12:49:39,937 INFO Connection check task end + +2025-09-24 12:49:41,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:42,939 INFO Connection check task start + +2025-09-24 12:49:42,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:42,939 INFO Out dated connection ,size=0 + +2025-09-24 12:49:42,940 INFO Connection check task end + +2025-09-24 12:49:44,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:45,940 INFO Connection check task start + +2025-09-24 12:49:45,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:45,940 INFO Out dated connection ,size=0 + +2025-09-24 12:49:45,940 INFO Connection check task end + +2025-09-24 12:49:47,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:48,941 INFO Connection check task start + +2025-09-24 12:49:48,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:48,941 INFO Out dated connection ,size=0 + +2025-09-24 12:49:48,941 INFO Connection check task end + +2025-09-24 12:49:50,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:51,942 INFO Connection check task start + +2025-09-24 12:49:51,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:51,942 INFO Out dated connection ,size=0 + +2025-09-24 12:49:51,942 INFO Connection check task end + +2025-09-24 12:49:53,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:54,943 INFO Connection check task start + +2025-09-24 12:49:54,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:54,944 INFO Out dated connection ,size=0 + +2025-09-24 12:49:54,944 INFO Connection check task end + +2025-09-24 12:49:56,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:49:57,944 INFO Connection check task start + +2025-09-24 12:49:57,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:49:57,944 INFO Out dated connection ,size=0 + +2025-09-24 12:49:57,944 INFO Connection check task end + +2025-09-24 12:49:59,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:00,945 INFO Connection check task start + +2025-09-24 12:50:00,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:00,945 INFO Out dated connection ,size=0 + +2025-09-24 12:50:00,945 INFO Connection check task end + +2025-09-24 12:50:02,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:03,946 INFO Connection check task start + +2025-09-24 12:50:03,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:03,946 INFO Out dated connection ,size=0 + +2025-09-24 12:50:03,946 INFO Connection check task end + +2025-09-24 12:50:05,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:06,946 INFO Connection check task start + +2025-09-24 12:50:06,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:06,946 INFO Out dated connection ,size=0 + +2025-09-24 12:50:06,947 INFO Connection check task end + +2025-09-24 12:50:08,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:09,947 INFO Connection check task start + +2025-09-24 12:50:09,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:09,948 INFO Out dated connection ,size=0 + +2025-09-24 12:50:09,948 INFO Connection check task end + +2025-09-24 12:50:11,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:12,948 INFO Connection check task start + +2025-09-24 12:50:12,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:12,948 INFO Out dated connection ,size=0 + +2025-09-24 12:50:12,948 INFO Connection check task end + +2025-09-24 12:50:14,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:15,950 INFO Connection check task start + +2025-09-24 12:50:15,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:15,950 INFO Out dated connection ,size=0 + +2025-09-24 12:50:15,950 INFO Connection check task end + +2025-09-24 12:50:17,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:18,950 INFO Connection check task start + +2025-09-24 12:50:18,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:18,951 INFO Out dated connection ,size=0 + +2025-09-24 12:50:18,951 INFO Connection check task end + +2025-09-24 12:50:20,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:21,952 INFO Connection check task start + +2025-09-24 12:50:21,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:21,952 INFO Out dated connection ,size=0 + +2025-09-24 12:50:21,952 INFO Connection check task end + +2025-09-24 12:50:23,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:24,952 INFO Connection check task start + +2025-09-24 12:50:24,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:24,952 INFO Out dated connection ,size=0 + +2025-09-24 12:50:24,953 INFO Connection check task end + +2025-09-24 12:50:26,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:27,954 INFO Connection check task start + +2025-09-24 12:50:27,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:27,954 INFO Out dated connection ,size=0 + +2025-09-24 12:50:27,954 INFO Connection check task end + +2025-09-24 12:50:29,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:30,954 INFO Connection check task start + +2025-09-24 12:50:30,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:30,955 INFO Out dated connection ,size=0 + +2025-09-24 12:50:30,955 INFO Connection check task end + +2025-09-24 12:50:32,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:33,955 INFO Connection check task start + +2025-09-24 12:50:33,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:33,956 INFO Out dated connection ,size=0 + +2025-09-24 12:50:33,956 INFO Connection check task end + +2025-09-24 12:50:35,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:36,957 INFO Connection check task start + +2025-09-24 12:50:36,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:36,957 INFO Out dated connection ,size=0 + +2025-09-24 12:50:36,957 INFO Connection check task end + +2025-09-24 12:50:38,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:39,958 INFO Connection check task start + +2025-09-24 12:50:39,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:39,958 INFO Out dated connection ,size=0 + +2025-09-24 12:50:39,958 INFO Connection check task end + +2025-09-24 12:50:41,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:42,958 INFO Connection check task start + +2025-09-24 12:50:42,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:42,958 INFO Out dated connection ,size=0 + +2025-09-24 12:50:42,959 INFO Connection check task end + +2025-09-24 12:50:44,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:45,961 INFO Connection check task start + +2025-09-24 12:50:45,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:45,961 INFO Out dated connection ,size=0 + +2025-09-24 12:50:45,961 INFO Connection check task end + +2025-09-24 12:50:47,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:48,961 INFO Connection check task start + +2025-09-24 12:50:48,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:48,962 INFO Out dated connection ,size=0 + +2025-09-24 12:50:48,962 INFO Connection check task end + +2025-09-24 12:50:50,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:51,962 INFO Connection check task start + +2025-09-24 12:50:51,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:51,962 INFO Out dated connection ,size=0 + +2025-09-24 12:50:51,963 INFO Connection check task end + +2025-09-24 12:50:53,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:54,964 INFO Connection check task start + +2025-09-24 12:50:54,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:54,964 INFO Out dated connection ,size=0 + +2025-09-24 12:50:54,964 INFO Connection check task end + +2025-09-24 12:50:56,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:50:57,964 INFO Connection check task start + +2025-09-24 12:50:57,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:50:57,965 INFO Out dated connection ,size=0 + +2025-09-24 12:50:57,965 INFO Connection check task end + +2025-09-24 12:50:59,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:00,965 INFO Connection check task start + +2025-09-24 12:51:00,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:00,965 INFO Out dated connection ,size=0 + +2025-09-24 12:51:00,965 INFO Connection check task end + +2025-09-24 12:51:02,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:03,966 INFO Connection check task start + +2025-09-24 12:51:03,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:03,966 INFO Out dated connection ,size=0 + +2025-09-24 12:51:03,966 INFO Connection check task end + +2025-09-24 12:51:05,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:06,967 INFO Connection check task start + +2025-09-24 12:51:06,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:06,967 INFO Out dated connection ,size=0 + +2025-09-24 12:51:06,967 INFO Connection check task end + +2025-09-24 12:51:08,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:09,968 INFO Connection check task start + +2025-09-24 12:51:09,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:09,969 INFO Out dated connection ,size=0 + +2025-09-24 12:51:09,969 INFO Connection check task end + +2025-09-24 12:51:11,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:12,970 INFO Connection check task start + +2025-09-24 12:51:12,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:12,970 INFO Out dated connection ,size=0 + +2025-09-24 12:51:12,970 INFO Connection check task end + +2025-09-24 12:51:14,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:15,971 INFO Connection check task start + +2025-09-24 12:51:15,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:15,971 INFO Out dated connection ,size=0 + +2025-09-24 12:51:15,971 INFO Connection check task end + +2025-09-24 12:51:17,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:18,973 INFO Connection check task start + +2025-09-24 12:51:18,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:18,973 INFO Out dated connection ,size=0 + +2025-09-24 12:51:18,973 INFO Connection check task end + +2025-09-24 12:51:20,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:21,973 INFO Connection check task start + +2025-09-24 12:51:21,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:21,974 INFO Out dated connection ,size=0 + +2025-09-24 12:51:21,974 INFO Connection check task end + +2025-09-24 12:51:23,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:24,974 INFO Connection check task start + +2025-09-24 12:51:24,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:24,974 INFO Out dated connection ,size=0 + +2025-09-24 12:51:24,974 INFO Connection check task end + +2025-09-24 12:51:26,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:27,975 INFO Connection check task start + +2025-09-24 12:51:27,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:27,975 INFO Out dated connection ,size=0 + +2025-09-24 12:51:27,975 INFO Connection check task end + +2025-09-24 12:51:29,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:30,976 INFO Connection check task start + +2025-09-24 12:51:30,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:30,976 INFO Out dated connection ,size=0 + +2025-09-24 12:51:30,976 INFO Connection check task end + +2025-09-24 12:51:32,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:33,977 INFO Connection check task start + +2025-09-24 12:51:33,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:33,978 INFO Out dated connection ,size=0 + +2025-09-24 12:51:33,978 INFO Connection check task end + +2025-09-24 12:51:35,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:36,978 INFO Connection check task start + +2025-09-24 12:51:36,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:36,978 INFO Out dated connection ,size=0 + +2025-09-24 12:51:36,978 INFO Connection check task end + +2025-09-24 12:51:38,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:39,980 INFO Connection check task start + +2025-09-24 12:51:39,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:39,980 INFO Out dated connection ,size=0 + +2025-09-24 12:51:39,980 INFO Connection check task end + +2025-09-24 12:51:41,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:42,982 INFO Connection check task start + +2025-09-24 12:51:42,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:42,983 INFO Out dated connection ,size=0 + +2025-09-24 12:51:42,983 INFO Connection check task end + +2025-09-24 12:51:44,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:45,984 INFO Connection check task start + +2025-09-24 12:51:45,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:45,984 INFO Out dated connection ,size=0 + +2025-09-24 12:51:45,984 INFO Connection check task end + +2025-09-24 12:51:47,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:48,984 INFO Connection check task start + +2025-09-24 12:51:48,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:48,985 INFO Out dated connection ,size=0 + +2025-09-24 12:51:48,985 INFO Connection check task end + +2025-09-24 12:51:50,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:51,986 INFO Connection check task start + +2025-09-24 12:51:51,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:51,986 INFO Out dated connection ,size=0 + +2025-09-24 12:51:51,986 INFO Connection check task end + +2025-09-24 12:51:53,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:54,988 INFO Connection check task start + +2025-09-24 12:51:54,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:54,989 INFO Out dated connection ,size=0 + +2025-09-24 12:51:54,989 INFO Connection check task end + +2025-09-24 12:51:56,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:51:57,991 INFO Connection check task start + +2025-09-24 12:51:57,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:51:57,991 INFO Out dated connection ,size=0 + +2025-09-24 12:51:57,992 INFO Connection check task end + +2025-09-24 12:51:59,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:00,994 INFO Connection check task start + +2025-09-24 12:52:00,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:00,994 INFO Out dated connection ,size=0 + +2025-09-24 12:52:00,994 INFO Connection check task end + +2025-09-24 12:52:02,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:03,997 INFO Connection check task start + +2025-09-24 12:52:03,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:03,997 INFO Out dated connection ,size=0 + +2025-09-24 12:52:03,997 INFO Connection check task end + +2025-09-24 12:52:05,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:06,999 INFO Connection check task start + +2025-09-24 12:52:06,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:06,999 INFO Out dated connection ,size=0 + +2025-09-24 12:52:06,999 INFO Connection check task end + +2025-09-24 12:52:08,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:10,000 INFO Connection check task start + +2025-09-24 12:52:10,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:10,001 INFO Out dated connection ,size=0 + +2025-09-24 12:52:10,001 INFO Connection check task end + +2025-09-24 12:52:11,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:13,001 INFO Connection check task start + +2025-09-24 12:52:13,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:13,002 INFO Out dated connection ,size=0 + +2025-09-24 12:52:13,002 INFO Connection check task end + +2025-09-24 12:52:14,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:16,002 INFO Connection check task start + +2025-09-24 12:52:16,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:16,002 INFO Out dated connection ,size=0 + +2025-09-24 12:52:16,002 INFO Connection check task end + +2025-09-24 12:52:17,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:19,002 INFO Connection check task start + +2025-09-24 12:52:19,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:19,002 INFO Out dated connection ,size=0 + +2025-09-24 12:52:19,002 INFO Connection check task end + +2025-09-24 12:52:20,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:22,013 INFO Connection check task start + +2025-09-24 12:52:22,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:22,014 INFO Out dated connection ,size=0 + +2025-09-24 12:52:22,014 INFO Connection check task end + +2025-09-24 12:52:23,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:25,014 INFO Connection check task start + +2025-09-24 12:52:25,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:25,015 INFO Out dated connection ,size=0 + +2025-09-24 12:52:25,015 INFO Connection check task end + +2025-09-24 12:52:26,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:28,016 INFO Connection check task start + +2025-09-24 12:52:28,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:28,016 INFO Out dated connection ,size=0 + +2025-09-24 12:52:28,016 INFO Connection check task end + +2025-09-24 12:52:29,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:31,016 INFO Connection check task start + +2025-09-24 12:52:31,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:31,016 INFO Out dated connection ,size=0 + +2025-09-24 12:52:31,016 INFO Connection check task end + +2025-09-24 12:52:32,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:34,018 INFO Connection check task start + +2025-09-24 12:52:34,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:34,018 INFO Out dated connection ,size=0 + +2025-09-24 12:52:34,018 INFO Connection check task end + +2025-09-24 12:52:35,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:37,018 INFO Connection check task start + +2025-09-24 12:52:37,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:37,019 INFO Out dated connection ,size=0 + +2025-09-24 12:52:37,019 INFO Connection check task end + +2025-09-24 12:52:38,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:40,020 INFO Connection check task start + +2025-09-24 12:52:40,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:40,020 INFO Out dated connection ,size=0 + +2025-09-24 12:52:40,020 INFO Connection check task end + +2025-09-24 12:52:41,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:43,021 INFO Connection check task start + +2025-09-24 12:52:43,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:43,021 INFO Out dated connection ,size=0 + +2025-09-24 12:52:43,021 INFO Connection check task end + +2025-09-24 12:52:44,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:46,022 INFO Connection check task start + +2025-09-24 12:52:46,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:46,022 INFO Out dated connection ,size=0 + +2025-09-24 12:52:46,022 INFO Connection check task end + +2025-09-24 12:52:47,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:49,022 INFO Connection check task start + +2025-09-24 12:52:49,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:49,022 INFO Out dated connection ,size=0 + +2025-09-24 12:52:49,022 INFO Connection check task end + +2025-09-24 12:52:50,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:52,023 INFO Connection check task start + +2025-09-24 12:52:52,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:52,023 INFO Out dated connection ,size=0 + +2025-09-24 12:52:52,023 INFO Connection check task end + +2025-09-24 12:52:53,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:55,024 INFO Connection check task start + +2025-09-24 12:52:55,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:55,024 INFO Out dated connection ,size=0 + +2025-09-24 12:52:55,024 INFO Connection check task end + +2025-09-24 12:52:56,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:52:58,024 INFO Connection check task start + +2025-09-24 12:52:58,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:52:58,025 INFO Out dated connection ,size=0 + +2025-09-24 12:52:58,025 INFO Connection check task end + +2025-09-24 12:52:59,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:01,025 INFO Connection check task start + +2025-09-24 12:53:01,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:01,026 INFO Out dated connection ,size=0 + +2025-09-24 12:53:01,026 INFO Connection check task end + +2025-09-24 12:53:02,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:04,026 INFO Connection check task start + +2025-09-24 12:53:04,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:04,026 INFO Out dated connection ,size=0 + +2025-09-24 12:53:04,026 INFO Connection check task end + +2025-09-24 12:53:05,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:07,027 INFO Connection check task start + +2025-09-24 12:53:07,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:07,027 INFO Out dated connection ,size=0 + +2025-09-24 12:53:07,027 INFO Connection check task end + +2025-09-24 12:53:08,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:10,027 INFO Connection check task start + +2025-09-24 12:53:10,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:10,028 INFO Out dated connection ,size=0 + +2025-09-24 12:53:10,028 INFO Connection check task end + +2025-09-24 12:53:11,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:13,028 INFO Connection check task start + +2025-09-24 12:53:13,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:13,029 INFO Out dated connection ,size=0 + +2025-09-24 12:53:13,029 INFO Connection check task end + +2025-09-24 12:53:14,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:16,029 INFO Connection check task start + +2025-09-24 12:53:16,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:16,029 INFO Out dated connection ,size=0 + +2025-09-24 12:53:16,029 INFO Connection check task end + +2025-09-24 12:53:17,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:19,030 INFO Connection check task start + +2025-09-24 12:53:19,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:19,030 INFO Out dated connection ,size=0 + +2025-09-24 12:53:19,030 INFO Connection check task end + +2025-09-24 12:53:20,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:22,030 INFO Connection check task start + +2025-09-24 12:53:22,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:22,030 INFO Out dated connection ,size=0 + +2025-09-24 12:53:22,030 INFO Connection check task end + +2025-09-24 12:53:23,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:25,031 INFO Connection check task start + +2025-09-24 12:53:25,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:25,031 INFO Out dated connection ,size=0 + +2025-09-24 12:53:25,031 INFO Connection check task end + +2025-09-24 12:53:26,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:28,032 INFO Connection check task start + +2025-09-24 12:53:28,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:28,032 INFO Out dated connection ,size=0 + +2025-09-24 12:53:28,032 INFO Connection check task end + +2025-09-24 12:53:29,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:31,032 INFO Connection check task start + +2025-09-24 12:53:31,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:31,033 INFO Out dated connection ,size=0 + +2025-09-24 12:53:31,033 INFO Connection check task end + +2025-09-24 12:53:32,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:34,035 INFO Connection check task start + +2025-09-24 12:53:34,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:34,035 INFO Out dated connection ,size=0 + +2025-09-24 12:53:34,035 INFO Connection check task end + +2025-09-24 12:53:35,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:37,037 INFO Connection check task start + +2025-09-24 12:53:37,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:37,038 INFO Out dated connection ,size=0 + +2025-09-24 12:53:37,038 INFO Connection check task end + +2025-09-24 12:53:38,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:40,038 INFO Connection check task start + +2025-09-24 12:53:40,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:40,038 INFO Out dated connection ,size=0 + +2025-09-24 12:53:40,038 INFO Connection check task end + +2025-09-24 12:53:41,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:43,040 INFO Connection check task start + +2025-09-24 12:53:43,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:43,041 INFO Out dated connection ,size=0 + +2025-09-24 12:53:43,041 INFO Connection check task end + +2025-09-24 12:53:44,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:46,041 INFO Connection check task start + +2025-09-24 12:53:46,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:46,041 INFO Out dated connection ,size=0 + +2025-09-24 12:53:46,041 INFO Connection check task end + +2025-09-24 12:53:47,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:49,043 INFO Connection check task start + +2025-09-24 12:53:49,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:49,043 INFO Out dated connection ,size=0 + +2025-09-24 12:53:49,043 INFO Connection check task end + +2025-09-24 12:53:50,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:52,045 INFO Connection check task start + +2025-09-24 12:53:52,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:52,045 INFO Out dated connection ,size=0 + +2025-09-24 12:53:52,046 INFO Connection check task end + +2025-09-24 12:53:53,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:55,048 INFO Connection check task start + +2025-09-24 12:53:55,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:55,048 INFO Out dated connection ,size=0 + +2025-09-24 12:53:55,048 INFO Connection check task end + +2025-09-24 12:53:56,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:53:58,050 INFO Connection check task start + +2025-09-24 12:53:58,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:53:58,051 INFO Out dated connection ,size=0 + +2025-09-24 12:53:58,051 INFO Connection check task end + +2025-09-24 12:53:59,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:01,051 INFO Connection check task start + +2025-09-24 12:54:01,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:01,052 INFO Out dated connection ,size=0 + +2025-09-24 12:54:01,052 INFO Connection check task end + +2025-09-24 12:54:02,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:04,054 INFO Connection check task start + +2025-09-24 12:54:04,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:04,055 INFO Out dated connection ,size=0 + +2025-09-24 12:54:04,055 INFO Connection check task end + +2025-09-24 12:54:05,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:07,055 INFO Connection check task start + +2025-09-24 12:54:07,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:07,056 INFO Out dated connection ,size=0 + +2025-09-24 12:54:07,056 INFO Connection check task end + +2025-09-24 12:54:08,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:10,057 INFO Connection check task start + +2025-09-24 12:54:10,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:10,057 INFO Out dated connection ,size=0 + +2025-09-24 12:54:10,057 INFO Connection check task end + +2025-09-24 12:54:11,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:13,059 INFO Connection check task start + +2025-09-24 12:54:13,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:13,059 INFO Out dated connection ,size=0 + +2025-09-24 12:54:13,059 INFO Connection check task end + +2025-09-24 12:54:14,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:16,060 INFO Connection check task start + +2025-09-24 12:54:16,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:16,060 INFO Out dated connection ,size=0 + +2025-09-24 12:54:16,060 INFO Connection check task end + +2025-09-24 12:54:17,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:19,060 INFO Connection check task start + +2025-09-24 12:54:19,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:19,060 INFO Out dated connection ,size=0 + +2025-09-24 12:54:19,061 INFO Connection check task end + +2025-09-24 12:54:20,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:22,062 INFO Connection check task start + +2025-09-24 12:54:22,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:22,072 INFO Out dated connection ,size=0 + +2025-09-24 12:54:22,072 INFO Connection check task end + +2025-09-24 12:54:23,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:25,073 INFO Connection check task start + +2025-09-24 12:54:25,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:25,073 INFO Out dated connection ,size=0 + +2025-09-24 12:54:25,073 INFO Connection check task end + +2025-09-24 12:54:26,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:28,073 INFO Connection check task start + +2025-09-24 12:54:28,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:28,074 INFO Out dated connection ,size=0 + +2025-09-24 12:54:28,074 INFO Connection check task end + +2025-09-24 12:54:29,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:31,074 INFO Connection check task start + +2025-09-24 12:54:31,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:31,074 INFO Out dated connection ,size=0 + +2025-09-24 12:54:31,074 INFO Connection check task end + +2025-09-24 12:54:32,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:34,075 INFO Connection check task start + +2025-09-24 12:54:34,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:34,075 INFO Out dated connection ,size=0 + +2025-09-24 12:54:34,075 INFO Connection check task end + +2025-09-24 12:54:35,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:37,076 INFO Connection check task start + +2025-09-24 12:54:37,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:37,076 INFO Out dated connection ,size=0 + +2025-09-24 12:54:37,076 INFO Connection check task end + +2025-09-24 12:54:38,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:40,076 INFO Connection check task start + +2025-09-24 12:54:40,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:40,077 INFO Out dated connection ,size=0 + +2025-09-24 12:54:40,077 INFO Connection check task end + +2025-09-24 12:54:41,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:43,077 INFO Connection check task start + +2025-09-24 12:54:43,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:43,078 INFO Out dated connection ,size=0 + +2025-09-24 12:54:43,078 INFO Connection check task end + +2025-09-24 12:54:44,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:46,079 INFO Connection check task start + +2025-09-24 12:54:46,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:46,080 INFO Out dated connection ,size=0 + +2025-09-24 12:54:46,080 INFO Connection check task end + +2025-09-24 12:54:47,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:49,081 INFO Connection check task start + +2025-09-24 12:54:49,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:49,081 INFO Out dated connection ,size=0 + +2025-09-24 12:54:49,081 INFO Connection check task end + +2025-09-24 12:54:50,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:52,081 INFO Connection check task start + +2025-09-24 12:54:52,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:52,082 INFO Out dated connection ,size=0 + +2025-09-24 12:54:52,082 INFO Connection check task end + +2025-09-24 12:54:53,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:55,082 INFO Connection check task start + +2025-09-24 12:54:55,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:55,082 INFO Out dated connection ,size=0 + +2025-09-24 12:54:55,083 INFO Connection check task end + +2025-09-24 12:54:56,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:54:58,083 INFO Connection check task start + +2025-09-24 12:54:58,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:54:58,083 INFO Out dated connection ,size=0 + +2025-09-24 12:54:58,083 INFO Connection check task end + +2025-09-24 12:54:59,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:01,084 INFO Connection check task start + +2025-09-24 12:55:01,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:01,084 INFO Out dated connection ,size=0 + +2025-09-24 12:55:01,084 INFO Connection check task end + +2025-09-24 12:55:02,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:04,085 INFO Connection check task start + +2025-09-24 12:55:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:04,085 INFO Out dated connection ,size=0 + +2025-09-24 12:55:04,085 INFO Connection check task end + +2025-09-24 12:55:05,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:07,086 INFO Connection check task start + +2025-09-24 12:55:07,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:07,086 INFO Out dated connection ,size=0 + +2025-09-24 12:55:07,086 INFO Connection check task end + +2025-09-24 12:55:08,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:10,086 INFO Connection check task start + +2025-09-24 12:55:10,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:10,087 INFO Out dated connection ,size=0 + +2025-09-24 12:55:10,087 INFO Connection check task end + +2025-09-24 12:55:11,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:13,088 INFO Connection check task start + +2025-09-24 12:55:13,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:13,088 INFO Out dated connection ,size=0 + +2025-09-24 12:55:13,089 INFO Connection check task end + +2025-09-24 12:55:14,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:16,089 INFO Connection check task start + +2025-09-24 12:55:16,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:16,089 INFO Out dated connection ,size=0 + +2025-09-24 12:55:16,089 INFO Connection check task end + +2025-09-24 12:55:17,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:19,090 INFO Connection check task start + +2025-09-24 12:55:19,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:19,090 INFO Out dated connection ,size=0 + +2025-09-24 12:55:19,090 INFO Connection check task end + +2025-09-24 12:55:20,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:22,090 INFO Connection check task start + +2025-09-24 12:55:22,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:22,090 INFO Out dated connection ,size=0 + +2025-09-24 12:55:22,090 INFO Connection check task end + +2025-09-24 12:55:23,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:25,091 INFO Connection check task start + +2025-09-24 12:55:25,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:25,092 INFO Out dated connection ,size=0 + +2025-09-24 12:55:25,092 INFO Connection check task end + +2025-09-24 12:55:26,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:28,092 INFO Connection check task start + +2025-09-24 12:55:28,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:28,092 INFO Out dated connection ,size=0 + +2025-09-24 12:55:28,092 INFO Connection check task end + +2025-09-24 12:55:29,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:31,093 INFO Connection check task start + +2025-09-24 12:55:31,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:31,093 INFO Out dated connection ,size=0 + +2025-09-24 12:55:31,094 INFO Connection check task end + +2025-09-24 12:55:32,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:34,095 INFO Connection check task start + +2025-09-24 12:55:34,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:34,095 INFO Out dated connection ,size=0 + +2025-09-24 12:55:34,095 INFO Connection check task end + +2025-09-24 12:55:35,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:37,096 INFO Connection check task start + +2025-09-24 12:55:37,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:37,097 INFO Out dated connection ,size=0 + +2025-09-24 12:55:37,097 INFO Connection check task end + +2025-09-24 12:55:38,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:40,099 INFO Connection check task start + +2025-09-24 12:55:40,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:40,099 INFO Out dated connection ,size=0 + +2025-09-24 12:55:40,099 INFO Connection check task end + +2025-09-24 12:55:41,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:43,100 INFO Connection check task start + +2025-09-24 12:55:43,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:43,100 INFO Out dated connection ,size=0 + +2025-09-24 12:55:43,101 INFO Connection check task end + +2025-09-24 12:55:44,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:46,103 INFO Connection check task start + +2025-09-24 12:55:46,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:46,103 INFO Out dated connection ,size=0 + +2025-09-24 12:55:46,103 INFO Connection check task end + +2025-09-24 12:55:47,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:49,104 INFO Connection check task start + +2025-09-24 12:55:49,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:49,104 INFO Out dated connection ,size=0 + +2025-09-24 12:55:49,104 INFO Connection check task end + +2025-09-24 12:55:50,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:52,106 INFO Connection check task start + +2025-09-24 12:55:52,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:52,106 INFO Out dated connection ,size=0 + +2025-09-24 12:55:52,106 INFO Connection check task end + +2025-09-24 12:55:53,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:55,108 INFO Connection check task start + +2025-09-24 12:55:55,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:55,109 INFO Out dated connection ,size=0 + +2025-09-24 12:55:55,109 INFO Connection check task end + +2025-09-24 12:55:56,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:55:58,111 INFO Connection check task start + +2025-09-24 12:55:58,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:55:58,111 INFO Out dated connection ,size=0 + +2025-09-24 12:55:58,111 INFO Connection check task end + +2025-09-24 12:55:59,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:01,112 INFO Connection check task start + +2025-09-24 12:56:01,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:01,113 INFO Out dated connection ,size=0 + +2025-09-24 12:56:01,113 INFO Connection check task end + +2025-09-24 12:56:02,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:04,113 INFO Connection check task start + +2025-09-24 12:56:04,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:04,113 INFO Out dated connection ,size=0 + +2025-09-24 12:56:04,113 INFO Connection check task end + +2025-09-24 12:56:05,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:07,114 INFO Connection check task start + +2025-09-24 12:56:07,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:07,114 INFO Out dated connection ,size=0 + +2025-09-24 12:56:07,114 INFO Connection check task end + +2025-09-24 12:56:08,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:10,115 INFO Connection check task start + +2025-09-24 12:56:10,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:10,115 INFO Out dated connection ,size=0 + +2025-09-24 12:56:10,115 INFO Connection check task end + +2025-09-24 12:56:11,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:13,117 INFO Connection check task start + +2025-09-24 12:56:13,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:13,117 INFO Out dated connection ,size=0 + +2025-09-24 12:56:13,117 INFO Connection check task end + +2025-09-24 12:56:14,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:16,118 INFO Connection check task start + +2025-09-24 12:56:16,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:16,119 INFO Out dated connection ,size=0 + +2025-09-24 12:56:16,119 INFO Connection check task end + +2025-09-24 12:56:17,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:19,119 INFO Connection check task start + +2025-09-24 12:56:19,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:19,119 INFO Out dated connection ,size=0 + +2025-09-24 12:56:19,119 INFO Connection check task end + +2025-09-24 12:56:20,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:22,120 INFO Connection check task start + +2025-09-24 12:56:22,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:22,120 INFO Out dated connection ,size=0 + +2025-09-24 12:56:22,120 INFO Connection check task end + +2025-09-24 12:56:23,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:25,121 INFO Connection check task start + +2025-09-24 12:56:25,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:25,121 INFO Out dated connection ,size=0 + +2025-09-24 12:56:25,121 INFO Connection check task end + +2025-09-24 12:56:26,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:28,121 INFO Connection check task start + +2025-09-24 12:56:28,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:28,121 INFO Out dated connection ,size=0 + +2025-09-24 12:56:28,121 INFO Connection check task end + +2025-09-24 12:56:29,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:31,122 INFO Connection check task start + +2025-09-24 12:56:31,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:31,122 INFO Out dated connection ,size=0 + +2025-09-24 12:56:31,122 INFO Connection check task end + +2025-09-24 12:56:32,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:34,123 INFO Connection check task start + +2025-09-24 12:56:34,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:34,123 INFO Out dated connection ,size=0 + +2025-09-24 12:56:34,123 INFO Connection check task end + +2025-09-24 12:56:35,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:37,124 INFO Connection check task start + +2025-09-24 12:56:37,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:37,124 INFO Out dated connection ,size=0 + +2025-09-24 12:56:37,124 INFO Connection check task end + +2025-09-24 12:56:38,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:40,125 INFO Connection check task start + +2025-09-24 12:56:40,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:40,125 INFO Out dated connection ,size=0 + +2025-09-24 12:56:40,125 INFO Connection check task end + +2025-09-24 12:56:41,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:43,126 INFO Connection check task start + +2025-09-24 12:56:43,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:43,127 INFO Out dated connection ,size=0 + +2025-09-24 12:56:43,127 INFO Connection check task end + +2025-09-24 12:56:44,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:46,127 INFO Connection check task start + +2025-09-24 12:56:46,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:46,127 INFO Out dated connection ,size=0 + +2025-09-24 12:56:46,127 INFO Connection check task end + +2025-09-24 12:56:47,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:49,128 INFO Connection check task start + +2025-09-24 12:56:49,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:49,128 INFO Out dated connection ,size=0 + +2025-09-24 12:56:49,128 INFO Connection check task end + +2025-09-24 12:56:50,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:52,130 INFO Connection check task start + +2025-09-24 12:56:52,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:52,130 INFO Out dated connection ,size=0 + +2025-09-24 12:56:52,130 INFO Connection check task end + +2025-09-24 12:56:53,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:55,131 INFO Connection check task start + +2025-09-24 12:56:55,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:55,131 INFO Out dated connection ,size=0 + +2025-09-24 12:56:55,131 INFO Connection check task end + +2025-09-24 12:56:56,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:56:58,132 INFO Connection check task start + +2025-09-24 12:56:58,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:56:58,132 INFO Out dated connection ,size=0 + +2025-09-24 12:56:58,132 INFO Connection check task end + +2025-09-24 12:56:59,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:01,133 INFO Connection check task start + +2025-09-24 12:57:01,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:01,134 INFO Out dated connection ,size=0 + +2025-09-24 12:57:01,134 INFO Connection check task end + +2025-09-24 12:57:02,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:04,135 INFO Connection check task start + +2025-09-24 12:57:04,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:04,135 INFO Out dated connection ,size=0 + +2025-09-24 12:57:04,136 INFO Connection check task end + +2025-09-24 12:57:05,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:07,136 INFO Connection check task start + +2025-09-24 12:57:07,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:07,136 INFO Out dated connection ,size=0 + +2025-09-24 12:57:07,136 INFO Connection check task end + +2025-09-24 12:57:08,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:10,137 INFO Connection check task start + +2025-09-24 12:57:10,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:10,137 INFO Out dated connection ,size=0 + +2025-09-24 12:57:10,137 INFO Connection check task end + +2025-09-24 12:57:11,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:13,138 INFO Connection check task start + +2025-09-24 12:57:13,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:13,138 INFO Out dated connection ,size=0 + +2025-09-24 12:57:13,138 INFO Connection check task end + +2025-09-24 12:57:14,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:16,140 INFO Connection check task start + +2025-09-24 12:57:16,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:16,140 INFO Out dated connection ,size=0 + +2025-09-24 12:57:16,140 INFO Connection check task end + +2025-09-24 12:57:17,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:19,142 INFO Connection check task start + +2025-09-24 12:57:19,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:19,142 INFO Out dated connection ,size=0 + +2025-09-24 12:57:19,142 INFO Connection check task end + +2025-09-24 12:57:20,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:22,143 INFO Connection check task start + +2025-09-24 12:57:22,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:22,143 INFO Out dated connection ,size=0 + +2025-09-24 12:57:22,143 INFO Connection check task end + +2025-09-24 12:57:23,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:25,144 INFO Connection check task start + +2025-09-24 12:57:25,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:25,145 INFO Out dated connection ,size=0 + +2025-09-24 12:57:25,145 INFO Connection check task end + +2025-09-24 12:57:26,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:28,146 INFO Connection check task start + +2025-09-24 12:57:28,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:28,146 INFO Out dated connection ,size=0 + +2025-09-24 12:57:28,146 INFO Connection check task end + +2025-09-24 12:57:29,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:31,148 INFO Connection check task start + +2025-09-24 12:57:31,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:31,149 INFO Out dated connection ,size=0 + +2025-09-24 12:57:31,149 INFO Connection check task end + +2025-09-24 12:57:32,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:34,150 INFO Connection check task start + +2025-09-24 12:57:34,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:34,150 INFO Out dated connection ,size=0 + +2025-09-24 12:57:34,150 INFO Connection check task end + +2025-09-24 12:57:35,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:37,152 INFO Connection check task start + +2025-09-24 12:57:37,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:37,153 INFO Out dated connection ,size=0 + +2025-09-24 12:57:37,153 INFO Connection check task end + +2025-09-24 12:57:38,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:40,155 INFO Connection check task start + +2025-09-24 12:57:40,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:40,155 INFO Out dated connection ,size=0 + +2025-09-24 12:57:40,155 INFO Connection check task end + +2025-09-24 12:57:41,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:43,156 INFO Connection check task start + +2025-09-24 12:57:43,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:43,156 INFO Out dated connection ,size=0 + +2025-09-24 12:57:43,156 INFO Connection check task end + +2025-09-24 12:57:44,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:46,157 INFO Connection check task start + +2025-09-24 12:57:46,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:46,157 INFO Out dated connection ,size=0 + +2025-09-24 12:57:46,157 INFO Connection check task end + +2025-09-24 12:57:47,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:49,158 INFO Connection check task start + +2025-09-24 12:57:49,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:49,158 INFO Out dated connection ,size=0 + +2025-09-24 12:57:49,158 INFO Connection check task end + +2025-09-24 12:57:50,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:52,160 INFO Connection check task start + +2025-09-24 12:57:52,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:52,160 INFO Out dated connection ,size=0 + +2025-09-24 12:57:52,160 INFO Connection check task end + +2025-09-24 12:57:53,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:55,160 INFO Connection check task start + +2025-09-24 12:57:55,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:55,161 INFO Out dated connection ,size=0 + +2025-09-24 12:57:55,161 INFO Connection check task end + +2025-09-24 12:57:56,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:57:58,161 INFO Connection check task start + +2025-09-24 12:57:58,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:57:58,161 INFO Out dated connection ,size=0 + +2025-09-24 12:57:58,161 INFO Connection check task end + +2025-09-24 12:57:59,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:01,162 INFO Connection check task start + +2025-09-24 12:58:01,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:01,162 INFO Out dated connection ,size=0 + +2025-09-24 12:58:01,162 INFO Connection check task end + +2025-09-24 12:58:02,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:04,162 INFO Connection check task start + +2025-09-24 12:58:04,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:04,163 INFO Out dated connection ,size=0 + +2025-09-24 12:58:04,163 INFO Connection check task end + +2025-09-24 12:58:05,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:07,163 INFO Connection check task start + +2025-09-24 12:58:07,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:07,163 INFO Out dated connection ,size=0 + +2025-09-24 12:58:07,164 INFO Connection check task end + +2025-09-24 12:58:08,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:10,164 INFO Connection check task start + +2025-09-24 12:58:10,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:10,164 INFO Out dated connection ,size=0 + +2025-09-24 12:58:10,164 INFO Connection check task end + +2025-09-24 12:58:11,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:13,165 INFO Connection check task start + +2025-09-24 12:58:13,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:13,165 INFO Out dated connection ,size=0 + +2025-09-24 12:58:13,165 INFO Connection check task end + +2025-09-24 12:58:14,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:16,166 INFO Connection check task start + +2025-09-24 12:58:16,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:16,166 INFO Out dated connection ,size=0 + +2025-09-24 12:58:16,166 INFO Connection check task end + +2025-09-24 12:58:17,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:19,482 INFO Connection check task start + +2025-09-24 12:58:19,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:19,482 INFO Out dated connection ,size=0 + +2025-09-24 12:58:19,482 INFO Connection check task end + +2025-09-24 12:58:20,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:22,483 INFO Connection check task start + +2025-09-24 12:58:22,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:22,484 INFO Out dated connection ,size=0 + +2025-09-24 12:58:22,485 INFO Connection check task end + +2025-09-24 12:58:23,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:25,485 INFO Connection check task start + +2025-09-24 12:58:25,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:25,485 INFO Out dated connection ,size=0 + +2025-09-24 12:58:25,485 INFO Connection check task end + +2025-09-24 12:58:26,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:28,486 INFO Connection check task start + +2025-09-24 12:58:28,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:28,486 INFO Out dated connection ,size=0 + +2025-09-24 12:58:28,486 INFO Connection check task end + +2025-09-24 12:58:29,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:31,487 INFO Connection check task start + +2025-09-24 12:58:31,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:31,487 INFO Out dated connection ,size=0 + +2025-09-24 12:58:31,487 INFO Connection check task end + +2025-09-24 12:58:32,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:34,489 INFO Connection check task start + +2025-09-24 12:58:34,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:34,489 INFO Out dated connection ,size=0 + +2025-09-24 12:58:34,489 INFO Connection check task end + +2025-09-24 12:58:35,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:37,490 INFO Connection check task start + +2025-09-24 12:58:37,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:37,490 INFO Out dated connection ,size=0 + +2025-09-24 12:58:37,490 INFO Connection check task end + +2025-09-24 12:58:38,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:40,492 INFO Connection check task start + +2025-09-24 12:58:40,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:40,492 INFO Out dated connection ,size=0 + +2025-09-24 12:58:40,492 INFO Connection check task end + +2025-09-24 12:58:41,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:43,492 INFO Connection check task start + +2025-09-24 12:58:43,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:43,493 INFO Out dated connection ,size=0 + +2025-09-24 12:58:43,493 INFO Connection check task end + +2025-09-24 12:58:44,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:46,494 INFO Connection check task start + +2025-09-24 12:58:46,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:46,494 INFO Out dated connection ,size=0 + +2025-09-24 12:58:46,494 INFO Connection check task end + +2025-09-24 12:58:47,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:49,496 INFO Connection check task start + +2025-09-24 12:58:49,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:49,496 INFO Out dated connection ,size=0 + +2025-09-24 12:58:49,496 INFO Connection check task end + +2025-09-24 12:58:50,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:52,498 INFO Connection check task start + +2025-09-24 12:58:52,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:52,499 INFO Out dated connection ,size=0 + +2025-09-24 12:58:52,499 INFO Connection check task end + +2025-09-24 12:58:53,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:55,500 INFO Connection check task start + +2025-09-24 12:58:55,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:55,501 INFO Out dated connection ,size=0 + +2025-09-24 12:58:55,501 INFO Connection check task end + +2025-09-24 12:58:56,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:58:58,502 INFO Connection check task start + +2025-09-24 12:58:58,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:58:58,502 INFO Out dated connection ,size=0 + +2025-09-24 12:58:58,502 INFO Connection check task end + +2025-09-24 12:58:59,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:01,503 INFO Connection check task start + +2025-09-24 12:59:01,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:01,504 INFO Out dated connection ,size=0 + +2025-09-24 12:59:01,504 INFO Connection check task end + +2025-09-24 12:59:02,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:04,504 INFO Connection check task start + +2025-09-24 12:59:04,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:04,505 INFO Out dated connection ,size=0 + +2025-09-24 12:59:04,505 INFO Connection check task end + +2025-09-24 12:59:05,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:07,505 INFO Connection check task start + +2025-09-24 12:59:07,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:07,505 INFO Out dated connection ,size=0 + +2025-09-24 12:59:07,505 INFO Connection check task end + +2025-09-24 12:59:08,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:10,506 INFO Connection check task start + +2025-09-24 12:59:10,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:10,506 INFO Out dated connection ,size=0 + +2025-09-24 12:59:10,506 INFO Connection check task end + +2025-09-24 12:59:11,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:13,507 INFO Connection check task start + +2025-09-24 12:59:13,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:13,507 INFO Out dated connection ,size=0 + +2025-09-24 12:59:13,507 INFO Connection check task end + +2025-09-24 12:59:14,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:16,507 INFO Connection check task start + +2025-09-24 12:59:16,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:16,508 INFO Out dated connection ,size=0 + +2025-09-24 12:59:16,508 INFO Connection check task end + +2025-09-24 12:59:17,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:19,509 INFO Connection check task start + +2025-09-24 12:59:19,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:19,509 INFO Out dated connection ,size=0 + +2025-09-24 12:59:19,509 INFO Connection check task end + +2025-09-24 12:59:20,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:22,509 INFO Connection check task start + +2025-09-24 12:59:22,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:22,510 INFO Out dated connection ,size=0 + +2025-09-24 12:59:22,510 INFO Connection check task end + +2025-09-24 12:59:23,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:25,510 INFO Connection check task start + +2025-09-24 12:59:25,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:25,510 INFO Out dated connection ,size=0 + +2025-09-24 12:59:25,510 INFO Connection check task end + +2025-09-24 12:59:26,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:28,511 INFO Connection check task start + +2025-09-24 12:59:28,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:28,511 INFO Out dated connection ,size=0 + +2025-09-24 12:59:28,511 INFO Connection check task end + +2025-09-24 12:59:29,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:31,513 INFO Connection check task start + +2025-09-24 12:59:31,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:31,513 INFO Out dated connection ,size=0 + +2025-09-24 12:59:31,513 INFO Connection check task end + +2025-09-24 12:59:32,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:34,515 INFO Connection check task start + +2025-09-24 12:59:34,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:34,515 INFO Out dated connection ,size=0 + +2025-09-24 12:59:34,515 INFO Connection check task end + +2025-09-24 12:59:35,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:37,516 INFO Connection check task start + +2025-09-24 12:59:37,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:37,516 INFO Out dated connection ,size=0 + +2025-09-24 12:59:37,516 INFO Connection check task end + +2025-09-24 12:59:38,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:40,517 INFO Connection check task start + +2025-09-24 12:59:40,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:40,518 INFO Out dated connection ,size=0 + +2025-09-24 12:59:40,518 INFO Connection check task end + +2025-09-24 12:59:41,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:43,518 INFO Connection check task start + +2025-09-24 12:59:43,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:43,519 INFO Out dated connection ,size=0 + +2025-09-24 12:59:43,519 INFO Connection check task end + +2025-09-24 12:59:44,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:46,519 INFO Connection check task start + +2025-09-24 12:59:46,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:46,519 INFO Out dated connection ,size=0 + +2025-09-24 12:59:46,519 INFO Connection check task end + +2025-09-24 12:59:47,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:49,520 INFO Connection check task start + +2025-09-24 12:59:49,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:49,520 INFO Out dated connection ,size=0 + +2025-09-24 12:59:49,520 INFO Connection check task end + +2025-09-24 12:59:50,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:52,520 INFO Connection check task start + +2025-09-24 12:59:52,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:52,520 INFO Out dated connection ,size=0 + +2025-09-24 12:59:52,520 INFO Connection check task end + +2025-09-24 12:59:53,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:55,521 INFO Connection check task start + +2025-09-24 12:59:55,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:55,521 INFO Out dated connection ,size=0 + +2025-09-24 12:59:55,521 INFO Connection check task end + +2025-09-24 12:59:56,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 12:59:58,522 INFO Connection check task start + +2025-09-24 12:59:58,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 12:59:58,522 INFO Out dated connection ,size=0 + +2025-09-24 12:59:58,522 INFO Connection check task end + +2025-09-24 12:59:59,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:01,523 INFO Connection check task start + +2025-09-24 13:00:01,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:01,523 INFO Out dated connection ,size=0 + +2025-09-24 13:00:01,523 INFO Connection check task end + +2025-09-24 13:00:02,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:04,524 INFO Connection check task start + +2025-09-24 13:00:04,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:04,525 INFO Out dated connection ,size=0 + +2025-09-24 13:00:04,525 INFO Connection check task end + +2025-09-24 13:00:05,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:07,525 INFO Connection check task start + +2025-09-24 13:00:07,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:07,525 INFO Out dated connection ,size=0 + +2025-09-24 13:00:07,525 INFO Connection check task end + +2025-09-24 13:00:08,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:10,526 INFO Connection check task start + +2025-09-24 13:00:10,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:10,526 INFO Out dated connection ,size=0 + +2025-09-24 13:00:10,526 INFO Connection check task end + +2025-09-24 13:00:11,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:13,527 INFO Connection check task start + +2025-09-24 13:00:13,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:13,527 INFO Out dated connection ,size=0 + +2025-09-24 13:00:13,527 INFO Connection check task end + +2025-09-24 13:00:14,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:16,527 INFO Connection check task start + +2025-09-24 13:00:16,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:16,527 INFO Out dated connection ,size=0 + +2025-09-24 13:00:16,527 INFO Connection check task end + +2025-09-24 13:00:17,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:19,529 INFO Connection check task start + +2025-09-24 13:00:19,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:19,529 INFO Out dated connection ,size=0 + +2025-09-24 13:00:19,529 INFO Connection check task end + +2025-09-24 13:00:20,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:22,531 INFO Connection check task start + +2025-09-24 13:00:22,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:22,532 INFO Out dated connection ,size=0 + +2025-09-24 13:00:22,532 INFO Connection check task end + +2025-09-24 13:00:23,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:25,533 INFO Connection check task start + +2025-09-24 13:00:25,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:25,533 INFO Out dated connection ,size=0 + +2025-09-24 13:00:25,533 INFO Connection check task end + +2025-09-24 13:00:26,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:28,535 INFO Connection check task start + +2025-09-24 13:00:28,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:28,535 INFO Out dated connection ,size=0 + +2025-09-24 13:00:28,535 INFO Connection check task end + +2025-09-24 13:00:29,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:31,536 INFO Connection check task start + +2025-09-24 13:00:31,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:31,536 INFO Out dated connection ,size=0 + +2025-09-24 13:00:31,536 INFO Connection check task end + +2025-09-24 13:00:32,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:34,538 INFO Connection check task start + +2025-09-24 13:00:34,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:34,539 INFO Out dated connection ,size=0 + +2025-09-24 13:00:34,539 INFO Connection check task end + +2025-09-24 13:00:35,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:37,539 INFO Connection check task start + +2025-09-24 13:00:37,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:37,539 INFO Out dated connection ,size=0 + +2025-09-24 13:00:37,539 INFO Connection check task end + +2025-09-24 13:00:38,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:40,542 INFO Connection check task start + +2025-09-24 13:00:40,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:40,542 INFO Out dated connection ,size=0 + +2025-09-24 13:00:40,542 INFO Connection check task end + +2025-09-24 13:00:41,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:43,543 INFO Connection check task start + +2025-09-24 13:00:43,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:43,543 INFO Out dated connection ,size=0 + +2025-09-24 13:00:43,543 INFO Connection check task end + +2025-09-24 13:00:44,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:46,544 INFO Connection check task start + +2025-09-24 13:00:46,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:46,544 INFO Out dated connection ,size=0 + +2025-09-24 13:00:46,544 INFO Connection check task end + +2025-09-24 13:00:47,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:49,545 INFO Connection check task start + +2025-09-24 13:00:49,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:49,545 INFO Out dated connection ,size=0 + +2025-09-24 13:00:49,545 INFO Connection check task end + +2025-09-24 13:00:50,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:52,546 INFO Connection check task start + +2025-09-24 13:00:52,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:52,546 INFO Out dated connection ,size=0 + +2025-09-24 13:00:52,546 INFO Connection check task end + +2025-09-24 13:00:53,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:55,548 INFO Connection check task start + +2025-09-24 13:00:55,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:55,548 INFO Out dated connection ,size=0 + +2025-09-24 13:00:55,548 INFO Connection check task end + +2025-09-24 13:00:56,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:00:58,550 INFO Connection check task start + +2025-09-24 13:00:58,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:00:58,550 INFO Out dated connection ,size=0 + +2025-09-24 13:00:58,550 INFO Connection check task end + +2025-09-24 13:00:59,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:01,552 INFO Connection check task start + +2025-09-24 13:01:01,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:01,552 INFO Out dated connection ,size=0 + +2025-09-24 13:01:01,552 INFO Connection check task end + +2025-09-24 13:01:02,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:04,555 INFO Connection check task start + +2025-09-24 13:01:04,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:04,555 INFO Out dated connection ,size=0 + +2025-09-24 13:01:04,555 INFO Connection check task end + +2025-09-24 13:01:05,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:07,556 INFO Connection check task start + +2025-09-24 13:01:07,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:07,556 INFO Out dated connection ,size=0 + +2025-09-24 13:01:07,556 INFO Connection check task end + +2025-09-24 13:01:08,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:10,558 INFO Connection check task start + +2025-09-24 13:01:10,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:10,558 INFO Out dated connection ,size=0 + +2025-09-24 13:01:10,558 INFO Connection check task end + +2025-09-24 13:01:11,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:13,559 INFO Connection check task start + +2025-09-24 13:01:13,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:13,559 INFO Out dated connection ,size=0 + +2025-09-24 13:01:13,559 INFO Connection check task end + +2025-09-24 13:01:14,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:16,560 INFO Connection check task start + +2025-09-24 13:01:16,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:16,561 INFO Out dated connection ,size=0 + +2025-09-24 13:01:16,561 INFO Connection check task end + +2025-09-24 13:01:17,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:19,561 INFO Connection check task start + +2025-09-24 13:01:19,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:19,561 INFO Out dated connection ,size=0 + +2025-09-24 13:01:19,561 INFO Connection check task end + +2025-09-24 13:01:20,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:22,563 INFO Connection check task start + +2025-09-24 13:01:22,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:22,563 INFO Out dated connection ,size=0 + +2025-09-24 13:01:22,564 INFO Connection check task end + +2025-09-24 13:01:23,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:25,564 INFO Connection check task start + +2025-09-24 13:01:25,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:25,565 INFO Out dated connection ,size=0 + +2025-09-24 13:01:25,565 INFO Connection check task end + +2025-09-24 13:01:26,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:28,567 INFO Connection check task start + +2025-09-24 13:01:28,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:28,567 INFO Out dated connection ,size=0 + +2025-09-24 13:01:28,567 INFO Connection check task end + +2025-09-24 13:01:29,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:31,568 INFO Connection check task start + +2025-09-24 13:01:31,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:31,568 INFO Out dated connection ,size=0 + +2025-09-24 13:01:31,569 INFO Connection check task end + +2025-09-24 13:01:32,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:34,571 INFO Connection check task start + +2025-09-24 13:01:34,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:34,571 INFO Out dated connection ,size=0 + +2025-09-24 13:01:34,571 INFO Connection check task end + +2025-09-24 13:01:35,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:37,573 INFO Connection check task start + +2025-09-24 13:01:37,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:37,574 INFO Out dated connection ,size=0 + +2025-09-24 13:01:37,574 INFO Connection check task end + +2025-09-24 13:01:38,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:40,574 INFO Connection check task start + +2025-09-24 13:01:40,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:40,574 INFO Out dated connection ,size=0 + +2025-09-24 13:01:40,574 INFO Connection check task end + +2025-09-24 13:01:41,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:43,575 INFO Connection check task start + +2025-09-24 13:01:43,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:43,575 INFO Out dated connection ,size=0 + +2025-09-24 13:01:43,575 INFO Connection check task end + +2025-09-24 13:01:44,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:46,576 INFO Connection check task start + +2025-09-24 13:01:46,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:46,576 INFO Out dated connection ,size=0 + +2025-09-24 13:01:46,576 INFO Connection check task end + +2025-09-24 13:01:47,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:49,577 INFO Connection check task start + +2025-09-24 13:01:49,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:49,577 INFO Out dated connection ,size=0 + +2025-09-24 13:01:49,577 INFO Connection check task end + +2025-09-24 13:01:50,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:52,578 INFO Connection check task start + +2025-09-24 13:01:52,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:52,579 INFO Out dated connection ,size=0 + +2025-09-24 13:01:52,579 INFO Connection check task end + +2025-09-24 13:01:53,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:55,582 INFO Connection check task start + +2025-09-24 13:01:55,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:55,582 INFO Out dated connection ,size=0 + +2025-09-24 13:01:55,582 INFO Connection check task end + +2025-09-24 13:01:56,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:01:58,584 INFO Connection check task start + +2025-09-24 13:01:58,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:01:58,585 INFO Out dated connection ,size=0 + +2025-09-24 13:01:58,585 INFO Connection check task end + +2025-09-24 13:01:59,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:01,587 INFO Connection check task start + +2025-09-24 13:02:01,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:01,587 INFO Out dated connection ,size=0 + +2025-09-24 13:02:01,587 INFO Connection check task end + +2025-09-24 13:02:02,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:04,587 INFO Connection check task start + +2025-09-24 13:02:04,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:04,588 INFO Out dated connection ,size=0 + +2025-09-24 13:02:04,588 INFO Connection check task end + +2025-09-24 13:02:05,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:07,588 INFO Connection check task start + +2025-09-24 13:02:07,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:07,588 INFO Out dated connection ,size=0 + +2025-09-24 13:02:07,588 INFO Connection check task end + +2025-09-24 13:02:08,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:10,589 INFO Connection check task start + +2025-09-24 13:02:10,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:10,589 INFO Out dated connection ,size=0 + +2025-09-24 13:02:10,590 INFO Connection check task end + +2025-09-24 13:02:11,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:13,591 INFO Connection check task start + +2025-09-24 13:02:13,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:13,592 INFO Out dated connection ,size=0 + +2025-09-24 13:02:13,592 INFO Connection check task end + +2025-09-24 13:02:14,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:16,594 INFO Connection check task start + +2025-09-24 13:02:16,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:16,594 INFO Out dated connection ,size=0 + +2025-09-24 13:02:16,594 INFO Connection check task end + +2025-09-24 13:02:17,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:19,596 INFO Connection check task start + +2025-09-24 13:02:19,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:19,597 INFO Out dated connection ,size=0 + +2025-09-24 13:02:19,597 INFO Connection check task end + +2025-09-24 13:02:20,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:22,598 INFO Connection check task start + +2025-09-24 13:02:22,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:22,598 INFO Out dated connection ,size=0 + +2025-09-24 13:02:22,598 INFO Connection check task end + +2025-09-24 13:02:23,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:25,598 INFO Connection check task start + +2025-09-24 13:02:25,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:25,598 INFO Out dated connection ,size=0 + +2025-09-24 13:02:25,599 INFO Connection check task end + +2025-09-24 13:02:26,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:28,599 INFO Connection check task start + +2025-09-24 13:02:28,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:28,599 INFO Out dated connection ,size=0 + +2025-09-24 13:02:28,599 INFO Connection check task end + +2025-09-24 13:02:29,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:31,600 INFO Connection check task start + +2025-09-24 13:02:31,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:31,600 INFO Out dated connection ,size=0 + +2025-09-24 13:02:31,600 INFO Connection check task end + +2025-09-24 13:02:32,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:34,602 INFO Connection check task start + +2025-09-24 13:02:34,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:34,602 INFO Out dated connection ,size=0 + +2025-09-24 13:02:34,602 INFO Connection check task end + +2025-09-24 13:02:35,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:37,604 INFO Connection check task start + +2025-09-24 13:02:37,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:37,605 INFO Out dated connection ,size=0 + +2025-09-24 13:02:37,605 INFO Connection check task end + +2025-09-24 13:02:38,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:40,605 INFO Connection check task start + +2025-09-24 13:02:40,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:40,606 INFO Out dated connection ,size=0 + +2025-09-24 13:02:40,606 INFO Connection check task end + +2025-09-24 13:02:41,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:43,607 INFO Connection check task start + +2025-09-24 13:02:43,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:43,608 INFO Out dated connection ,size=0 + +2025-09-24 13:02:43,608 INFO Connection check task end + +2025-09-24 13:02:44,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:46,608 INFO Connection check task start + +2025-09-24 13:02:46,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:46,609 INFO Out dated connection ,size=0 + +2025-09-24 13:02:46,609 INFO Connection check task end + +2025-09-24 13:02:47,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:49,611 INFO Connection check task start + +2025-09-24 13:02:49,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:49,611 INFO Out dated connection ,size=0 + +2025-09-24 13:02:49,611 INFO Connection check task end + +2025-09-24 13:02:50,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:52,613 INFO Connection check task start + +2025-09-24 13:02:52,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:52,614 INFO Out dated connection ,size=0 + +2025-09-24 13:02:52,614 INFO Connection check task end + +2025-09-24 13:02:53,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:55,614 INFO Connection check task start + +2025-09-24 13:02:55,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:55,614 INFO Out dated connection ,size=0 + +2025-09-24 13:02:55,614 INFO Connection check task end + +2025-09-24 13:02:56,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:02:58,615 INFO Connection check task start + +2025-09-24 13:02:58,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:02:58,615 INFO Out dated connection ,size=0 + +2025-09-24 13:02:58,616 INFO Connection check task end + +2025-09-24 13:02:59,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:01,616 INFO Connection check task start + +2025-09-24 13:03:01,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:01,616 INFO Out dated connection ,size=0 + +2025-09-24 13:03:01,616 INFO Connection check task end + +2025-09-24 13:03:02,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:04,617 INFO Connection check task start + +2025-09-24 13:03:04,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:04,617 INFO Out dated connection ,size=0 + +2025-09-24 13:03:04,617 INFO Connection check task end + +2025-09-24 13:03:05,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:07,618 INFO Connection check task start + +2025-09-24 13:03:07,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:07,618 INFO Out dated connection ,size=0 + +2025-09-24 13:03:07,618 INFO Connection check task end + +2025-09-24 13:03:08,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:10,618 INFO Connection check task start + +2025-09-24 13:03:10,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:10,619 INFO Out dated connection ,size=0 + +2025-09-24 13:03:10,619 INFO Connection check task end + +2025-09-24 13:03:11,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:13,619 INFO Connection check task start + +2025-09-24 13:03:13,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:13,620 INFO Out dated connection ,size=0 + +2025-09-24 13:03:13,620 INFO Connection check task end + +2025-09-24 13:03:14,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:16,620 INFO Connection check task start + +2025-09-24 13:03:16,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:16,620 INFO Out dated connection ,size=0 + +2025-09-24 13:03:16,620 INFO Connection check task end + +2025-09-24 13:03:17,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:19,622 INFO Connection check task start + +2025-09-24 13:03:19,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:19,622 INFO Out dated connection ,size=0 + +2025-09-24 13:03:19,622 INFO Connection check task end + +2025-09-24 13:03:20,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:22,622 INFO Connection check task start + +2025-09-24 13:03:22,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:22,622 INFO Out dated connection ,size=0 + +2025-09-24 13:03:22,622 INFO Connection check task end + +2025-09-24 13:03:23,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:25,622 INFO Connection check task start + +2025-09-24 13:03:25,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:25,622 INFO Out dated connection ,size=0 + +2025-09-24 13:03:25,623 INFO Connection check task end + +2025-09-24 13:03:26,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:28,623 INFO Connection check task start + +2025-09-24 13:03:28,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:28,623 INFO Out dated connection ,size=0 + +2025-09-24 13:03:28,623 INFO Connection check task end + +2025-09-24 13:03:29,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:31,623 INFO Connection check task start + +2025-09-24 13:03:31,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:31,623 INFO Out dated connection ,size=0 + +2025-09-24 13:03:31,624 INFO Connection check task end + +2025-09-24 13:03:32,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:34,626 INFO Connection check task start + +2025-09-24 13:03:34,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:34,626 INFO Out dated connection ,size=0 + +2025-09-24 13:03:34,626 INFO Connection check task end + +2025-09-24 13:03:35,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:37,626 INFO Connection check task start + +2025-09-24 13:03:37,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:37,626 INFO Out dated connection ,size=0 + +2025-09-24 13:03:37,626 INFO Connection check task end + +2025-09-24 13:03:38,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:40,628 INFO Connection check task start + +2025-09-24 13:03:40,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:40,628 INFO Out dated connection ,size=0 + +2025-09-24 13:03:40,628 INFO Connection check task end + +2025-09-24 13:03:41,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:43,629 INFO Connection check task start + +2025-09-24 13:03:43,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:43,629 INFO Out dated connection ,size=0 + +2025-09-24 13:03:43,629 INFO Connection check task end + +2025-09-24 13:03:44,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:46,629 INFO Connection check task start + +2025-09-24 13:03:46,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:46,630 INFO Out dated connection ,size=0 + +2025-09-24 13:03:46,630 INFO Connection check task end + +2025-09-24 13:03:47,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:49,630 INFO Connection check task start + +2025-09-24 13:03:49,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:49,630 INFO Out dated connection ,size=0 + +2025-09-24 13:03:49,630 INFO Connection check task end + +2025-09-24 13:03:50,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:52,632 INFO Connection check task start + +2025-09-24 13:03:52,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:52,633 INFO Out dated connection ,size=0 + +2025-09-24 13:03:52,633 INFO Connection check task end + +2025-09-24 13:03:53,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:55,633 INFO Connection check task start + +2025-09-24 13:03:55,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:55,633 INFO Out dated connection ,size=0 + +2025-09-24 13:03:55,633 INFO Connection check task end + +2025-09-24 13:03:56,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:03:58,633 INFO Connection check task start + +2025-09-24 13:03:58,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:03:58,633 INFO Out dated connection ,size=0 + +2025-09-24 13:03:58,633 INFO Connection check task end + +2025-09-24 13:03:59,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:01,634 INFO Connection check task start + +2025-09-24 13:04:01,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:01,634 INFO Out dated connection ,size=0 + +2025-09-24 13:04:01,634 INFO Connection check task end + +2025-09-24 13:04:02,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:04,634 INFO Connection check task start + +2025-09-24 13:04:04,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:04,635 INFO Out dated connection ,size=0 + +2025-09-24 13:04:04,635 INFO Connection check task end + +2025-09-24 13:04:05,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:07,635 INFO Connection check task start + +2025-09-24 13:04:07,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:07,635 INFO Out dated connection ,size=0 + +2025-09-24 13:04:07,635 INFO Connection check task end + +2025-09-24 13:04:08,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:10,635 INFO Connection check task start + +2025-09-24 13:04:10,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:10,635 INFO Out dated connection ,size=0 + +2025-09-24 13:04:10,635 INFO Connection check task end + +2025-09-24 13:04:11,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:13,636 INFO Connection check task start + +2025-09-24 13:04:13,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:13,636 INFO Out dated connection ,size=0 + +2025-09-24 13:04:13,636 INFO Connection check task end + +2025-09-24 13:04:14,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:16,637 INFO Connection check task start + +2025-09-24 13:04:16,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:16,637 INFO Out dated connection ,size=0 + +2025-09-24 13:04:16,637 INFO Connection check task end + +2025-09-24 13:04:17,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:19,638 INFO Connection check task start + +2025-09-24 13:04:19,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:19,638 INFO Out dated connection ,size=0 + +2025-09-24 13:04:19,638 INFO Connection check task end + +2025-09-24 13:04:20,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:22,639 INFO Connection check task start + +2025-09-24 13:04:22,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:22,639 INFO Out dated connection ,size=0 + +2025-09-24 13:04:22,639 INFO Connection check task end + +2025-09-24 13:04:23,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:25,639 INFO Connection check task start + +2025-09-24 13:04:25,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:25,639 INFO Out dated connection ,size=0 + +2025-09-24 13:04:25,639 INFO Connection check task end + +2025-09-24 13:04:26,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:28,639 INFO Connection check task start + +2025-09-24 13:04:28,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:28,639 INFO Out dated connection ,size=0 + +2025-09-24 13:04:28,639 INFO Connection check task end + +2025-09-24 13:04:29,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:31,640 INFO Connection check task start + +2025-09-24 13:04:31,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:31,640 INFO Out dated connection ,size=0 + +2025-09-24 13:04:31,640 INFO Connection check task end + +2025-09-24 13:04:32,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:34,640 INFO Connection check task start + +2025-09-24 13:04:34,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:34,640 INFO Out dated connection ,size=0 + +2025-09-24 13:04:34,640 INFO Connection check task end + +2025-09-24 13:04:35,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:37,641 INFO Connection check task start + +2025-09-24 13:04:37,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:37,641 INFO Out dated connection ,size=0 + +2025-09-24 13:04:37,641 INFO Connection check task end + +2025-09-24 13:04:38,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:40,641 INFO Connection check task start + +2025-09-24 13:04:40,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:40,642 INFO Out dated connection ,size=0 + +2025-09-24 13:04:40,642 INFO Connection check task end + +2025-09-24 13:04:41,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:43,642 INFO Connection check task start + +2025-09-24 13:04:43,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:43,642 INFO Out dated connection ,size=0 + +2025-09-24 13:04:43,642 INFO Connection check task end + +2025-09-24 13:04:44,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:46,643 INFO Connection check task start + +2025-09-24 13:04:46,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:46,643 INFO Out dated connection ,size=0 + +2025-09-24 13:04:46,643 INFO Connection check task end + +2025-09-24 13:04:47,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:49,644 INFO Connection check task start + +2025-09-24 13:04:49,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:49,644 INFO Out dated connection ,size=0 + +2025-09-24 13:04:49,644 INFO Connection check task end + +2025-09-24 13:04:50,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:52,644 INFO Connection check task start + +2025-09-24 13:04:52,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:52,644 INFO Out dated connection ,size=0 + +2025-09-24 13:04:52,644 INFO Connection check task end + +2025-09-24 13:04:53,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:55,645 INFO Connection check task start + +2025-09-24 13:04:55,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:55,645 INFO Out dated connection ,size=0 + +2025-09-24 13:04:55,645 INFO Connection check task end + +2025-09-24 13:04:56,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:04:58,646 INFO Connection check task start + +2025-09-24 13:04:58,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:04:58,646 INFO Out dated connection ,size=0 + +2025-09-24 13:04:58,646 INFO Connection check task end + +2025-09-24 13:04:59,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:01,646 INFO Connection check task start + +2025-09-24 13:05:01,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:01,646 INFO Out dated connection ,size=0 + +2025-09-24 13:05:01,646 INFO Connection check task end + +2025-09-24 13:05:02,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:04,646 INFO Connection check task start + +2025-09-24 13:05:04,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:04,647 INFO Out dated connection ,size=0 + +2025-09-24 13:05:04,647 INFO Connection check task end + +2025-09-24 13:05:05,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:07,647 INFO Connection check task start + +2025-09-24 13:05:07,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:07,647 INFO Out dated connection ,size=0 + +2025-09-24 13:05:07,647 INFO Connection check task end + +2025-09-24 13:05:08,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:10,648 INFO Connection check task start + +2025-09-24 13:05:10,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:10,648 INFO Out dated connection ,size=0 + +2025-09-24 13:05:10,648 INFO Connection check task end + +2025-09-24 13:05:11,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:13,649 INFO Connection check task start + +2025-09-24 13:05:13,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:13,649 INFO Out dated connection ,size=0 + +2025-09-24 13:05:13,649 INFO Connection check task end + +2025-09-24 13:05:14,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:16,649 INFO Connection check task start + +2025-09-24 13:05:16,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:16,650 INFO Out dated connection ,size=0 + +2025-09-24 13:05:16,650 INFO Connection check task end + +2025-09-24 13:05:17,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:19,650 INFO Connection check task start + +2025-09-24 13:05:19,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:19,650 INFO Out dated connection ,size=0 + +2025-09-24 13:05:19,650 INFO Connection check task end + +2025-09-24 13:05:20,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:22,650 INFO Connection check task start + +2025-09-24 13:05:22,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:22,651 INFO Out dated connection ,size=0 + +2025-09-24 13:05:22,651 INFO Connection check task end + +2025-09-24 13:05:23,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:25,651 INFO Connection check task start + +2025-09-24 13:05:25,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:25,651 INFO Out dated connection ,size=0 + +2025-09-24 13:05:25,652 INFO Connection check task end + +2025-09-24 13:05:26,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:28,652 INFO Connection check task start + +2025-09-24 13:05:28,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:28,652 INFO Out dated connection ,size=0 + +2025-09-24 13:05:28,652 INFO Connection check task end + +2025-09-24 13:05:29,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:31,652 INFO Connection check task start + +2025-09-24 13:05:31,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:31,652 INFO Out dated connection ,size=0 + +2025-09-24 13:05:31,652 INFO Connection check task end + +2025-09-24 13:05:32,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:34,652 INFO Connection check task start + +2025-09-24 13:05:34,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:34,653 INFO Out dated connection ,size=0 + +2025-09-24 13:05:34,653 INFO Connection check task end + +2025-09-24 13:05:35,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:37,653 INFO Connection check task start + +2025-09-24 13:05:37,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:37,653 INFO Out dated connection ,size=0 + +2025-09-24 13:05:37,653 INFO Connection check task end + +2025-09-24 13:05:38,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:40,654 INFO Connection check task start + +2025-09-24 13:05:40,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:40,655 INFO Out dated connection ,size=0 + +2025-09-24 13:05:40,655 INFO Connection check task end + +2025-09-24 13:05:41,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:43,656 INFO Connection check task start + +2025-09-24 13:05:43,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:43,656 INFO Out dated connection ,size=0 + +2025-09-24 13:05:43,656 INFO Connection check task end + +2025-09-24 13:05:44,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:46,657 INFO Connection check task start + +2025-09-24 13:05:46,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:46,657 INFO Out dated connection ,size=0 + +2025-09-24 13:05:46,657 INFO Connection check task end + +2025-09-24 13:05:47,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:49,659 INFO Connection check task start + +2025-09-24 13:05:49,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:49,659 INFO Out dated connection ,size=0 + +2025-09-24 13:05:49,659 INFO Connection check task end + +2025-09-24 13:05:50,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:52,659 INFO Connection check task start + +2025-09-24 13:05:52,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:52,659 INFO Out dated connection ,size=0 + +2025-09-24 13:05:52,659 INFO Connection check task end + +2025-09-24 13:05:53,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:55,659 INFO Connection check task start + +2025-09-24 13:05:55,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:55,660 INFO Out dated connection ,size=0 + +2025-09-24 13:05:55,660 INFO Connection check task end + +2025-09-24 13:05:56,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:05:58,661 INFO Connection check task start + +2025-09-24 13:05:58,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:05:58,661 INFO Out dated connection ,size=0 + +2025-09-24 13:05:58,661 INFO Connection check task end + +2025-09-24 13:05:59,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:01,661 INFO Connection check task start + +2025-09-24 13:06:01,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:01,661 INFO Out dated connection ,size=0 + +2025-09-24 13:06:01,661 INFO Connection check task end + +2025-09-24 13:06:02,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:04,662 INFO Connection check task start + +2025-09-24 13:06:04,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:04,662 INFO Out dated connection ,size=0 + +2025-09-24 13:06:04,662 INFO Connection check task end + +2025-09-24 13:06:05,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:07,663 INFO Connection check task start + +2025-09-24 13:06:07,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:07,663 INFO Out dated connection ,size=0 + +2025-09-24 13:06:07,663 INFO Connection check task end + +2025-09-24 13:06:08,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:10,664 INFO Connection check task start + +2025-09-24 13:06:10,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:10,664 INFO Out dated connection ,size=0 + +2025-09-24 13:06:10,664 INFO Connection check task end + +2025-09-24 13:06:11,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:13,666 INFO Connection check task start + +2025-09-24 13:06:13,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:13,666 INFO Out dated connection ,size=0 + +2025-09-24 13:06:13,666 INFO Connection check task end + +2025-09-24 13:06:14,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:16,666 INFO Connection check task start + +2025-09-24 13:06:16,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:16,667 INFO Out dated connection ,size=0 + +2025-09-24 13:06:16,667 INFO Connection check task end + +2025-09-24 13:06:17,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:19,667 INFO Connection check task start + +2025-09-24 13:06:19,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:19,667 INFO Out dated connection ,size=0 + +2025-09-24 13:06:19,667 INFO Connection check task end + +2025-09-24 13:06:20,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:22,669 INFO Connection check task start + +2025-09-24 13:06:22,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:22,669 INFO Out dated connection ,size=0 + +2025-09-24 13:06:22,669 INFO Connection check task end + +2025-09-24 13:06:23,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:25,670 INFO Connection check task start + +2025-09-24 13:06:25,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:25,670 INFO Out dated connection ,size=0 + +2025-09-24 13:06:25,670 INFO Connection check task end + +2025-09-24 13:06:26,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:28,672 INFO Connection check task start + +2025-09-24 13:06:28,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:28,673 INFO Out dated connection ,size=0 + +2025-09-24 13:06:28,673 INFO Connection check task end + +2025-09-24 13:06:29,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:31,673 INFO Connection check task start + +2025-09-24 13:06:31,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:31,673 INFO Out dated connection ,size=0 + +2025-09-24 13:06:31,673 INFO Connection check task end + +2025-09-24 13:06:32,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:34,674 INFO Connection check task start + +2025-09-24 13:06:34,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:34,674 INFO Out dated connection ,size=0 + +2025-09-24 13:06:34,674 INFO Connection check task end + +2025-09-24 13:06:35,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:37,676 INFO Connection check task start + +2025-09-24 13:06:37,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:37,676 INFO Out dated connection ,size=0 + +2025-09-24 13:06:37,676 INFO Connection check task end + +2025-09-24 13:06:38,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:40,676 INFO Connection check task start + +2025-09-24 13:06:40,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:40,677 INFO Out dated connection ,size=0 + +2025-09-24 13:06:40,677 INFO Connection check task end + +2025-09-24 13:06:41,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:43,679 INFO Connection check task start + +2025-09-24 13:06:43,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:43,679 INFO Out dated connection ,size=0 + +2025-09-24 13:06:43,679 INFO Connection check task end + +2025-09-24 13:06:44,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:46,680 INFO Connection check task start + +2025-09-24 13:06:46,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:46,680 INFO Out dated connection ,size=0 + +2025-09-24 13:06:46,680 INFO Connection check task end + +2025-09-24 13:06:47,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:49,680 INFO Connection check task start + +2025-09-24 13:06:49,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:49,681 INFO Out dated connection ,size=0 + +2025-09-24 13:06:49,681 INFO Connection check task end + +2025-09-24 13:06:50,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:52,682 INFO Connection check task start + +2025-09-24 13:06:52,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:52,682 INFO Out dated connection ,size=0 + +2025-09-24 13:06:52,682 INFO Connection check task end + +2025-09-24 13:06:53,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:55,683 INFO Connection check task start + +2025-09-24 13:06:55,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:55,683 INFO Out dated connection ,size=0 + +2025-09-24 13:06:55,683 INFO Connection check task end + +2025-09-24 13:06:56,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:06:58,686 INFO Connection check task start + +2025-09-24 13:06:58,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:06:58,686 INFO Out dated connection ,size=0 + +2025-09-24 13:06:58,686 INFO Connection check task end + +2025-09-24 13:06:59,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:01,687 INFO Connection check task start + +2025-09-24 13:07:01,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:01,687 INFO Out dated connection ,size=0 + +2025-09-24 13:07:01,687 INFO Connection check task end + +2025-09-24 13:07:02,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:04,688 INFO Connection check task start + +2025-09-24 13:07:04,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:04,688 INFO Out dated connection ,size=0 + +2025-09-24 13:07:04,688 INFO Connection check task end + +2025-09-24 13:07:05,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:07,690 INFO Connection check task start + +2025-09-24 13:07:07,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:07,690 INFO Out dated connection ,size=0 + +2025-09-24 13:07:07,690 INFO Connection check task end + +2025-09-24 13:07:08,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:10,693 INFO Connection check task start + +2025-09-24 13:07:10,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:10,693 INFO Out dated connection ,size=0 + +2025-09-24 13:07:10,693 INFO Connection check task end + +2025-09-24 13:07:11,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:13,693 INFO Connection check task start + +2025-09-24 13:07:13,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:13,693 INFO Out dated connection ,size=0 + +2025-09-24 13:07:13,694 INFO Connection check task end + +2025-09-24 13:07:14,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:16,695 INFO Connection check task start + +2025-09-24 13:07:16,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:16,696 INFO Out dated connection ,size=0 + +2025-09-24 13:07:16,696 INFO Connection check task end + +2025-09-24 13:07:17,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:19,696 INFO Connection check task start + +2025-09-24 13:07:19,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:19,696 INFO Out dated connection ,size=0 + +2025-09-24 13:07:19,696 INFO Connection check task end + +2025-09-24 13:07:20,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:22,697 INFO Connection check task start + +2025-09-24 13:07:22,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:22,697 INFO Out dated connection ,size=0 + +2025-09-24 13:07:22,697 INFO Connection check task end + +2025-09-24 13:07:23,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:25,698 INFO Connection check task start + +2025-09-24 13:07:25,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:25,698 INFO Out dated connection ,size=0 + +2025-09-24 13:07:25,698 INFO Connection check task end + +2025-09-24 13:07:26,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:28,699 INFO Connection check task start + +2025-09-24 13:07:28,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:28,699 INFO Out dated connection ,size=0 + +2025-09-24 13:07:28,699 INFO Connection check task end + +2025-09-24 13:07:29,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:31,700 INFO Connection check task start + +2025-09-24 13:07:31,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:31,700 INFO Out dated connection ,size=0 + +2025-09-24 13:07:31,700 INFO Connection check task end + +2025-09-24 13:07:32,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:34,701 INFO Connection check task start + +2025-09-24 13:07:34,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:34,701 INFO Out dated connection ,size=0 + +2025-09-24 13:07:34,701 INFO Connection check task end + +2025-09-24 13:07:35,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:37,704 INFO Connection check task start + +2025-09-24 13:07:37,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:37,704 INFO Out dated connection ,size=0 + +2025-09-24 13:07:37,704 INFO Connection check task end + +2025-09-24 13:07:38,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:40,704 INFO Connection check task start + +2025-09-24 13:07:40,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:40,704 INFO Out dated connection ,size=0 + +2025-09-24 13:07:40,704 INFO Connection check task end + +2025-09-24 13:07:41,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:43,706 INFO Connection check task start + +2025-09-24 13:07:43,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:43,707 INFO Out dated connection ,size=0 + +2025-09-24 13:07:43,707 INFO Connection check task end + +2025-09-24 13:07:44,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:46,709 INFO Connection check task start + +2025-09-24 13:07:46,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:46,709 INFO Out dated connection ,size=0 + +2025-09-24 13:07:46,709 INFO Connection check task end + +2025-09-24 13:07:47,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:49,711 INFO Connection check task start + +2025-09-24 13:07:49,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:49,711 INFO Out dated connection ,size=0 + +2025-09-24 13:07:49,711 INFO Connection check task end + +2025-09-24 13:07:50,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:52,712 INFO Connection check task start + +2025-09-24 13:07:52,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:52,712 INFO Out dated connection ,size=0 + +2025-09-24 13:07:52,712 INFO Connection check task end + +2025-09-24 13:07:53,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:55,714 INFO Connection check task start + +2025-09-24 13:07:55,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:55,714 INFO Out dated connection ,size=0 + +2025-09-24 13:07:55,714 INFO Connection check task end + +2025-09-24 13:07:56,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:07:58,716 INFO Connection check task start + +2025-09-24 13:07:58,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:07:58,716 INFO Out dated connection ,size=0 + +2025-09-24 13:07:58,716 INFO Connection check task end + +2025-09-24 13:07:59,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:01,718 INFO Connection check task start + +2025-09-24 13:08:01,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:01,718 INFO Out dated connection ,size=0 + +2025-09-24 13:08:01,718 INFO Connection check task end + +2025-09-24 13:08:02,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:04,718 INFO Connection check task start + +2025-09-24 13:08:04,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:04,718 INFO Out dated connection ,size=0 + +2025-09-24 13:08:04,719 INFO Connection check task end + +2025-09-24 13:08:05,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:07,719 INFO Connection check task start + +2025-09-24 13:08:07,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:07,719 INFO Out dated connection ,size=0 + +2025-09-24 13:08:07,719 INFO Connection check task end + +2025-09-24 13:08:08,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:10,720 INFO Connection check task start + +2025-09-24 13:08:10,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:10,720 INFO Out dated connection ,size=0 + +2025-09-24 13:08:10,720 INFO Connection check task end + +2025-09-24 13:08:11,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:13,722 INFO Connection check task start + +2025-09-24 13:08:13,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:13,722 INFO Out dated connection ,size=0 + +2025-09-24 13:08:13,722 INFO Connection check task end + +2025-09-24 13:08:14,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:16,723 INFO Connection check task start + +2025-09-24 13:08:16,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:16,723 INFO Out dated connection ,size=0 + +2025-09-24 13:08:16,723 INFO Connection check task end + +2025-09-24 13:08:17,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:19,724 INFO Connection check task start + +2025-09-24 13:08:19,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:19,724 INFO Out dated connection ,size=0 + +2025-09-24 13:08:19,724 INFO Connection check task end + +2025-09-24 13:08:20,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:22,724 INFO Connection check task start + +2025-09-24 13:08:22,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:22,724 INFO Out dated connection ,size=0 + +2025-09-24 13:08:22,724 INFO Connection check task end + +2025-09-24 13:08:23,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:25,726 INFO Connection check task start + +2025-09-24 13:08:25,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:25,726 INFO Out dated connection ,size=0 + +2025-09-24 13:08:25,726 INFO Connection check task end + +2025-09-24 13:08:26,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:28,727 INFO Connection check task start + +2025-09-24 13:08:28,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:28,727 INFO Out dated connection ,size=0 + +2025-09-24 13:08:28,727 INFO Connection check task end + +2025-09-24 13:08:29,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:31,728 INFO Connection check task start + +2025-09-24 13:08:31,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:31,728 INFO Out dated connection ,size=0 + +2025-09-24 13:08:31,728 INFO Connection check task end + +2025-09-24 13:08:32,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:34,729 INFO Connection check task start + +2025-09-24 13:08:34,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:34,729 INFO Out dated connection ,size=0 + +2025-09-24 13:08:34,729 INFO Connection check task end + +2025-09-24 13:08:35,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:37,730 INFO Connection check task start + +2025-09-24 13:08:37,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:37,730 INFO Out dated connection ,size=0 + +2025-09-24 13:08:37,730 INFO Connection check task end + +2025-09-24 13:08:38,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:40,730 INFO Connection check task start + +2025-09-24 13:08:40,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:40,730 INFO Out dated connection ,size=0 + +2025-09-24 13:08:40,730 INFO Connection check task end + +2025-09-24 13:08:41,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:43,731 INFO Connection check task start + +2025-09-24 13:08:43,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:43,731 INFO Out dated connection ,size=0 + +2025-09-24 13:08:43,731 INFO Connection check task end + +2025-09-24 13:08:44,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:46,732 INFO Connection check task start + +2025-09-24 13:08:46,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:46,732 INFO Out dated connection ,size=0 + +2025-09-24 13:08:46,732 INFO Connection check task end + +2025-09-24 13:08:47,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:49,734 INFO Connection check task start + +2025-09-24 13:08:49,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:49,734 INFO Out dated connection ,size=0 + +2025-09-24 13:08:49,734 INFO Connection check task end + +2025-09-24 13:08:50,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:52,736 INFO Connection check task start + +2025-09-24 13:08:52,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:52,736 INFO Out dated connection ,size=0 + +2025-09-24 13:08:52,736 INFO Connection check task end + +2025-09-24 13:08:53,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:55,737 INFO Connection check task start + +2025-09-24 13:08:55,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:55,737 INFO Out dated connection ,size=0 + +2025-09-24 13:08:55,737 INFO Connection check task end + +2025-09-24 13:08:56,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:08:58,738 INFO Connection check task start + +2025-09-24 13:08:58,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:08:58,738 INFO Out dated connection ,size=0 + +2025-09-24 13:08:58,738 INFO Connection check task end + +2025-09-24 13:08:59,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:01,739 INFO Connection check task start + +2025-09-24 13:09:01,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:01,739 INFO Out dated connection ,size=0 + +2025-09-24 13:09:01,740 INFO Connection check task end + +2025-09-24 13:09:02,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:04,741 INFO Connection check task start + +2025-09-24 13:09:04,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:04,741 INFO Out dated connection ,size=0 + +2025-09-24 13:09:04,741 INFO Connection check task end + +2025-09-24 13:09:05,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:07,743 INFO Connection check task start + +2025-09-24 13:09:07,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:07,743 INFO Out dated connection ,size=0 + +2025-09-24 13:09:07,743 INFO Connection check task end + +2025-09-24 13:09:08,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:10,744 INFO Connection check task start + +2025-09-24 13:09:10,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:10,744 INFO Out dated connection ,size=0 + +2025-09-24 13:09:10,744 INFO Connection check task end + +2025-09-24 13:09:11,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:13,745 INFO Connection check task start + +2025-09-24 13:09:13,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:13,745 INFO Out dated connection ,size=0 + +2025-09-24 13:09:13,745 INFO Connection check task end + +2025-09-24 13:09:14,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:16,747 INFO Connection check task start + +2025-09-24 13:09:16,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:16,747 INFO Out dated connection ,size=0 + +2025-09-24 13:09:16,747 INFO Connection check task end + +2025-09-24 13:09:17,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:19,748 INFO Connection check task start + +2025-09-24 13:09:19,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:19,748 INFO Out dated connection ,size=0 + +2025-09-24 13:09:19,748 INFO Connection check task end + +2025-09-24 13:09:20,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:22,750 INFO Connection check task start + +2025-09-24 13:09:22,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:22,750 INFO Out dated connection ,size=0 + +2025-09-24 13:09:22,750 INFO Connection check task end + +2025-09-24 13:09:23,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:25,750 INFO Connection check task start + +2025-09-24 13:09:25,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:25,751 INFO Out dated connection ,size=0 + +2025-09-24 13:09:25,751 INFO Connection check task end + +2025-09-24 13:09:26,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:28,753 INFO Connection check task start + +2025-09-24 13:09:28,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:28,753 INFO Out dated connection ,size=0 + +2025-09-24 13:09:28,753 INFO Connection check task end + +2025-09-24 13:09:29,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:31,755 INFO Connection check task start + +2025-09-24 13:09:31,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:31,755 INFO Out dated connection ,size=0 + +2025-09-24 13:09:31,755 INFO Connection check task end + +2025-09-24 13:09:32,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:34,758 INFO Connection check task start + +2025-09-24 13:09:34,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:34,758 INFO Out dated connection ,size=0 + +2025-09-24 13:09:34,758 INFO Connection check task end + +2025-09-24 13:09:35,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:37,760 INFO Connection check task start + +2025-09-24 13:09:37,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:37,760 INFO Out dated connection ,size=0 + +2025-09-24 13:09:37,760 INFO Connection check task end + +2025-09-24 13:09:38,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:40,760 INFO Connection check task start + +2025-09-24 13:09:40,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:40,761 INFO Out dated connection ,size=0 + +2025-09-24 13:09:40,761 INFO Connection check task end + +2025-09-24 13:09:41,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:43,763 INFO Connection check task start + +2025-09-24 13:09:43,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:43,763 INFO Out dated connection ,size=0 + +2025-09-24 13:09:43,763 INFO Connection check task end + +2025-09-24 13:09:44,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:46,763 INFO Connection check task start + +2025-09-24 13:09:46,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:46,763 INFO Out dated connection ,size=0 + +2025-09-24 13:09:46,763 INFO Connection check task end + +2025-09-24 13:09:47,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:49,765 INFO Connection check task start + +2025-09-24 13:09:49,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:49,765 INFO Out dated connection ,size=0 + +2025-09-24 13:09:49,765 INFO Connection check task end + +2025-09-24 13:09:50,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:52,767 INFO Connection check task start + +2025-09-24 13:09:52,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:52,767 INFO Out dated connection ,size=0 + +2025-09-24 13:09:52,767 INFO Connection check task end + +2025-09-24 13:09:53,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:55,767 INFO Connection check task start + +2025-09-24 13:09:55,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:55,767 INFO Out dated connection ,size=0 + +2025-09-24 13:09:55,767 INFO Connection check task end + +2025-09-24 13:09:56,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:09:58,768 INFO Connection check task start + +2025-09-24 13:09:58,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:09:58,768 INFO Out dated connection ,size=0 + +2025-09-24 13:09:58,768 INFO Connection check task end + +2025-09-24 13:09:59,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:01,768 INFO Connection check task start + +2025-09-24 13:10:01,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:01,769 INFO Out dated connection ,size=0 + +2025-09-24 13:10:01,769 INFO Connection check task end + +2025-09-24 13:10:02,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:04,771 INFO Connection check task start + +2025-09-24 13:10:04,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:04,771 INFO Out dated connection ,size=0 + +2025-09-24 13:10:04,771 INFO Connection check task end + +2025-09-24 13:10:05,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:07,771 INFO Connection check task start + +2025-09-24 13:10:07,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:07,771 INFO Out dated connection ,size=0 + +2025-09-24 13:10:07,772 INFO Connection check task end + +2025-09-24 13:10:08,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:10,772 INFO Connection check task start + +2025-09-24 13:10:10,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:10,772 INFO Out dated connection ,size=0 + +2025-09-24 13:10:10,772 INFO Connection check task end + +2025-09-24 13:10:11,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:13,774 INFO Connection check task start + +2025-09-24 13:10:13,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:13,774 INFO Out dated connection ,size=0 + +2025-09-24 13:10:13,774 INFO Connection check task end + +2025-09-24 13:10:14,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:16,775 INFO Connection check task start + +2025-09-24 13:10:16,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:16,775 INFO Out dated connection ,size=0 + +2025-09-24 13:10:16,775 INFO Connection check task end + +2025-09-24 13:10:17,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:19,775 INFO Connection check task start + +2025-09-24 13:10:19,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:19,775 INFO Out dated connection ,size=0 + +2025-09-24 13:10:19,775 INFO Connection check task end + +2025-09-24 13:10:20,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:22,776 INFO Connection check task start + +2025-09-24 13:10:22,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:22,777 INFO Out dated connection ,size=0 + +2025-09-24 13:10:22,777 INFO Connection check task end + +2025-09-24 13:10:23,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:25,779 INFO Connection check task start + +2025-09-24 13:10:25,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:25,779 INFO Out dated connection ,size=0 + +2025-09-24 13:10:25,779 INFO Connection check task end + +2025-09-24 13:10:26,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:28,780 INFO Connection check task start + +2025-09-24 13:10:28,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:28,780 INFO Out dated connection ,size=0 + +2025-09-24 13:10:28,780 INFO Connection check task end + +2025-09-24 13:10:29,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:31,780 INFO Connection check task start + +2025-09-24 13:10:31,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:31,780 INFO Out dated connection ,size=0 + +2025-09-24 13:10:31,781 INFO Connection check task end + +2025-09-24 13:10:32,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:34,781 INFO Connection check task start + +2025-09-24 13:10:34,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:34,781 INFO Out dated connection ,size=0 + +2025-09-24 13:10:34,781 INFO Connection check task end + +2025-09-24 13:10:35,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:37,781 INFO Connection check task start + +2025-09-24 13:10:37,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:37,782 INFO Out dated connection ,size=0 + +2025-09-24 13:10:37,782 INFO Connection check task end + +2025-09-24 13:10:38,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:40,782 INFO Connection check task start + +2025-09-24 13:10:40,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:40,782 INFO Out dated connection ,size=0 + +2025-09-24 13:10:40,782 INFO Connection check task end + +2025-09-24 13:10:41,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:43,783 INFO Connection check task start + +2025-09-24 13:10:43,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:43,783 INFO Out dated connection ,size=0 + +2025-09-24 13:10:43,783 INFO Connection check task end + +2025-09-24 13:10:44,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:46,783 INFO Connection check task start + +2025-09-24 13:10:46,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:46,783 INFO Out dated connection ,size=0 + +2025-09-24 13:10:46,783 INFO Connection check task end + +2025-09-24 13:10:47,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:49,784 INFO Connection check task start + +2025-09-24 13:10:49,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:49,784 INFO Out dated connection ,size=0 + +2025-09-24 13:10:49,784 INFO Connection check task end + +2025-09-24 13:10:50,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:52,787 INFO Connection check task start + +2025-09-24 13:10:52,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:52,787 INFO Out dated connection ,size=0 + +2025-09-24 13:10:52,787 INFO Connection check task end + +2025-09-24 13:10:53,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:55,789 INFO Connection check task start + +2025-09-24 13:10:55,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:55,789 INFO Out dated connection ,size=0 + +2025-09-24 13:10:55,789 INFO Connection check task end + +2025-09-24 13:10:56,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:10:58,791 INFO Connection check task start + +2025-09-24 13:10:58,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:10:58,791 INFO Out dated connection ,size=0 + +2025-09-24 13:10:58,791 INFO Connection check task end + +2025-09-24 13:10:59,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:01,792 INFO Connection check task start + +2025-09-24 13:11:01,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:01,792 INFO Out dated connection ,size=0 + +2025-09-24 13:11:01,792 INFO Connection check task end + +2025-09-24 13:11:02,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:04,794 INFO Connection check task start + +2025-09-24 13:11:04,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:04,794 INFO Out dated connection ,size=0 + +2025-09-24 13:11:04,794 INFO Connection check task end + +2025-09-24 13:11:05,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:07,795 INFO Connection check task start + +2025-09-24 13:11:07,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:07,795 INFO Out dated connection ,size=0 + +2025-09-24 13:11:07,795 INFO Connection check task end + +2025-09-24 13:11:08,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:10,796 INFO Connection check task start + +2025-09-24 13:11:10,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:10,796 INFO Out dated connection ,size=0 + +2025-09-24 13:11:10,796 INFO Connection check task end + +2025-09-24 13:11:11,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:13,797 INFO Connection check task start + +2025-09-24 13:11:13,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:13,798 INFO Out dated connection ,size=0 + +2025-09-24 13:11:13,798 INFO Connection check task end + +2025-09-24 13:11:14,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:16,798 INFO Connection check task start + +2025-09-24 13:11:16,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:16,798 INFO Out dated connection ,size=0 + +2025-09-24 13:11:16,798 INFO Connection check task end + +2025-09-24 13:11:17,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:19,803 INFO Connection check task start + +2025-09-24 13:11:19,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:19,803 INFO Out dated connection ,size=0 + +2025-09-24 13:11:19,803 INFO Connection check task end + +2025-09-24 13:11:20,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:22,804 INFO Connection check task start + +2025-09-24 13:11:22,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:22,804 INFO Out dated connection ,size=0 + +2025-09-24 13:11:22,804 INFO Connection check task end + +2025-09-24 13:11:23,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:25,805 INFO Connection check task start + +2025-09-24 13:11:25,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:25,805 INFO Out dated connection ,size=0 + +2025-09-24 13:11:25,805 INFO Connection check task end + +2025-09-24 13:11:26,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:28,805 INFO Connection check task start + +2025-09-24 13:11:28,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:28,805 INFO Out dated connection ,size=0 + +2025-09-24 13:11:28,805 INFO Connection check task end + +2025-09-24 13:11:29,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:31,807 INFO Connection check task start + +2025-09-24 13:11:31,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:31,807 INFO Out dated connection ,size=0 + +2025-09-24 13:11:31,807 INFO Connection check task end + +2025-09-24 13:11:32,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:34,807 INFO Connection check task start + +2025-09-24 13:11:34,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:34,808 INFO Out dated connection ,size=0 + +2025-09-24 13:11:34,808 INFO Connection check task end + +2025-09-24 13:11:35,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:37,808 INFO Connection check task start + +2025-09-24 13:11:37,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:37,808 INFO Out dated connection ,size=0 + +2025-09-24 13:11:37,808 INFO Connection check task end + +2025-09-24 13:11:38,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:40,809 INFO Connection check task start + +2025-09-24 13:11:40,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:40,809 INFO Out dated connection ,size=0 + +2025-09-24 13:11:40,809 INFO Connection check task end + +2025-09-24 13:11:41,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:43,811 INFO Connection check task start + +2025-09-24 13:11:43,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:43,811 INFO Out dated connection ,size=0 + +2025-09-24 13:11:43,811 INFO Connection check task end + +2025-09-24 13:11:44,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:46,811 INFO Connection check task start + +2025-09-24 13:11:46,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:46,812 INFO Out dated connection ,size=0 + +2025-09-24 13:11:46,812 INFO Connection check task end + +2025-09-24 13:11:47,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:49,812 INFO Connection check task start + +2025-09-24 13:11:49,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:49,812 INFO Out dated connection ,size=0 + +2025-09-24 13:11:49,812 INFO Connection check task end + +2025-09-24 13:11:50,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:52,813 INFO Connection check task start + +2025-09-24 13:11:52,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:52,813 INFO Out dated connection ,size=0 + +2025-09-24 13:11:52,813 INFO Connection check task end + +2025-09-24 13:11:53,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:55,814 INFO Connection check task start + +2025-09-24 13:11:55,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:55,814 INFO Out dated connection ,size=0 + +2025-09-24 13:11:55,814 INFO Connection check task end + +2025-09-24 13:11:56,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:11:58,815 INFO Connection check task start + +2025-09-24 13:11:58,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:11:58,815 INFO Out dated connection ,size=0 + +2025-09-24 13:11:58,815 INFO Connection check task end + +2025-09-24 13:11:59,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:01,816 INFO Connection check task start + +2025-09-24 13:12:01,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:01,816 INFO Out dated connection ,size=0 + +2025-09-24 13:12:01,816 INFO Connection check task end + +2025-09-24 13:12:02,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:04,818 INFO Connection check task start + +2025-09-24 13:12:04,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:04,819 INFO Out dated connection ,size=0 + +2025-09-24 13:12:04,819 INFO Connection check task end + +2025-09-24 13:12:05,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:07,820 INFO Connection check task start + +2025-09-24 13:12:07,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:07,820 INFO Out dated connection ,size=0 + +2025-09-24 13:12:07,820 INFO Connection check task end + +2025-09-24 13:12:08,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:10,820 INFO Connection check task start + +2025-09-24 13:12:10,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:10,820 INFO Out dated connection ,size=0 + +2025-09-24 13:12:10,820 INFO Connection check task end + +2025-09-24 13:12:11,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:13,823 INFO Connection check task start + +2025-09-24 13:12:13,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:13,823 INFO Out dated connection ,size=0 + +2025-09-24 13:12:13,823 INFO Connection check task end + +2025-09-24 13:12:14,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:16,825 INFO Connection check task start + +2025-09-24 13:12:16,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:16,825 INFO Out dated connection ,size=0 + +2025-09-24 13:12:16,825 INFO Connection check task end + +2025-09-24 13:12:17,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:19,825 INFO Connection check task start + +2025-09-24 13:12:19,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:19,826 INFO Out dated connection ,size=0 + +2025-09-24 13:12:19,826 INFO Connection check task end + +2025-09-24 13:12:20,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:22,826 INFO Connection check task start + +2025-09-24 13:12:22,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:22,826 INFO Out dated connection ,size=0 + +2025-09-24 13:12:22,826 INFO Connection check task end + +2025-09-24 13:12:23,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:25,828 INFO Connection check task start + +2025-09-24 13:12:25,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:25,828 INFO Out dated connection ,size=0 + +2025-09-24 13:12:25,828 INFO Connection check task end + +2025-09-24 13:12:26,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:28,829 INFO Connection check task start + +2025-09-24 13:12:28,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:28,829 INFO Out dated connection ,size=0 + +2025-09-24 13:12:28,829 INFO Connection check task end + +2025-09-24 13:12:29,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:31,830 INFO Connection check task start + +2025-09-24 13:12:31,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:31,830 INFO Out dated connection ,size=0 + +2025-09-24 13:12:31,830 INFO Connection check task end + +2025-09-24 13:12:32,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:34,830 INFO Connection check task start + +2025-09-24 13:12:34,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:34,831 INFO Out dated connection ,size=0 + +2025-09-24 13:12:34,831 INFO Connection check task end + +2025-09-24 13:12:35,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:37,831 INFO Connection check task start + +2025-09-24 13:12:37,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:37,831 INFO Out dated connection ,size=0 + +2025-09-24 13:12:37,831 INFO Connection check task end + +2025-09-24 13:12:38,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:40,833 INFO Connection check task start + +2025-09-24 13:12:40,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:40,834 INFO Out dated connection ,size=0 + +2025-09-24 13:12:40,834 INFO Connection check task end + +2025-09-24 13:12:41,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:43,834 INFO Connection check task start + +2025-09-24 13:12:43,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:43,834 INFO Out dated connection ,size=0 + +2025-09-24 13:12:43,834 INFO Connection check task end + +2025-09-24 13:12:44,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:46,835 INFO Connection check task start + +2025-09-24 13:12:46,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:46,835 INFO Out dated connection ,size=0 + +2025-09-24 13:12:46,835 INFO Connection check task end + +2025-09-24 13:12:47,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:49,835 INFO Connection check task start + +2025-09-24 13:12:49,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:49,835 INFO Out dated connection ,size=0 + +2025-09-24 13:12:49,835 INFO Connection check task end + +2025-09-24 13:12:50,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:52,838 INFO Connection check task start + +2025-09-24 13:12:52,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:52,838 INFO Out dated connection ,size=0 + +2025-09-24 13:12:52,838 INFO Connection check task end + +2025-09-24 13:12:53,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:55,839 INFO Connection check task start + +2025-09-24 13:12:55,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:55,839 INFO Out dated connection ,size=0 + +2025-09-24 13:12:55,839 INFO Connection check task end + +2025-09-24 13:12:56,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:12:58,841 INFO Connection check task start + +2025-09-24 13:12:58,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:12:58,841 INFO Out dated connection ,size=0 + +2025-09-24 13:12:58,842 INFO Connection check task end + +2025-09-24 13:12:59,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:01,842 INFO Connection check task start + +2025-09-24 13:13:01,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:01,842 INFO Out dated connection ,size=0 + +2025-09-24 13:13:01,842 INFO Connection check task end + +2025-09-24 13:13:02,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:04,842 INFO Connection check task start + +2025-09-24 13:13:04,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:04,842 INFO Out dated connection ,size=0 + +2025-09-24 13:13:04,842 INFO Connection check task end + +2025-09-24 13:13:05,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:07,844 INFO Connection check task start + +2025-09-24 13:13:07,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:07,844 INFO Out dated connection ,size=0 + +2025-09-24 13:13:07,844 INFO Connection check task end + +2025-09-24 13:13:08,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:10,846 INFO Connection check task start + +2025-09-24 13:13:10,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:10,846 INFO Out dated connection ,size=0 + +2025-09-24 13:13:10,846 INFO Connection check task end + +2025-09-24 13:13:11,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:13,848 INFO Connection check task start + +2025-09-24 13:13:13,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:13,849 INFO Out dated connection ,size=0 + +2025-09-24 13:13:13,849 INFO Connection check task end + +2025-09-24 13:13:14,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:16,850 INFO Connection check task start + +2025-09-24 13:13:16,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:16,850 INFO Out dated connection ,size=0 + +2025-09-24 13:13:16,850 INFO Connection check task end + +2025-09-24 13:13:17,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:19,851 INFO Connection check task start + +2025-09-24 13:13:19,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:19,851 INFO Out dated connection ,size=0 + +2025-09-24 13:13:19,851 INFO Connection check task end + +2025-09-24 13:13:20,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:22,852 INFO Connection check task start + +2025-09-24 13:13:22,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:22,852 INFO Out dated connection ,size=0 + +2025-09-24 13:13:22,852 INFO Connection check task end + +2025-09-24 13:13:23,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:25,854 INFO Connection check task start + +2025-09-24 13:13:25,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:25,854 INFO Out dated connection ,size=0 + +2025-09-24 13:13:25,854 INFO Connection check task end + +2025-09-24 13:13:26,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:28,854 INFO Connection check task start + +2025-09-24 13:13:28,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:28,854 INFO Out dated connection ,size=0 + +2025-09-24 13:13:28,854 INFO Connection check task end + +2025-09-24 13:13:29,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:31,855 INFO Connection check task start + +2025-09-24 13:13:31,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:31,855 INFO Out dated connection ,size=0 + +2025-09-24 13:13:31,855 INFO Connection check task end + +2025-09-24 13:13:32,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:34,855 INFO Connection check task start + +2025-09-24 13:13:34,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:34,855 INFO Out dated connection ,size=0 + +2025-09-24 13:13:34,855 INFO Connection check task end + +2025-09-24 13:13:35,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:37,856 INFO Connection check task start + +2025-09-24 13:13:37,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:37,856 INFO Out dated connection ,size=0 + +2025-09-24 13:13:37,856 INFO Connection check task end + +2025-09-24 13:13:38,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:40,857 INFO Connection check task start + +2025-09-24 13:13:40,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:40,857 INFO Out dated connection ,size=0 + +2025-09-24 13:13:40,857 INFO Connection check task end + +2025-09-24 13:13:41,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:43,859 INFO Connection check task start + +2025-09-24 13:13:43,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:43,859 INFO Out dated connection ,size=0 + +2025-09-24 13:13:43,859 INFO Connection check task end + +2025-09-24 13:13:44,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:46,860 INFO Connection check task start + +2025-09-24 13:13:46,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:46,860 INFO Out dated connection ,size=0 + +2025-09-24 13:13:46,860 INFO Connection check task end + +2025-09-24 13:13:47,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:49,861 INFO Connection check task start + +2025-09-24 13:13:49,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:49,861 INFO Out dated connection ,size=0 + +2025-09-24 13:13:49,861 INFO Connection check task end + +2025-09-24 13:13:50,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:52,863 INFO Connection check task start + +2025-09-24 13:13:52,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:52,863 INFO Out dated connection ,size=0 + +2025-09-24 13:13:52,863 INFO Connection check task end + +2025-09-24 13:13:53,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:55,865 INFO Connection check task start + +2025-09-24 13:13:55,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:55,865 INFO Out dated connection ,size=0 + +2025-09-24 13:13:55,865 INFO Connection check task end + +2025-09-24 13:13:56,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:13:58,867 INFO Connection check task start + +2025-09-24 13:13:58,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:13:58,867 INFO Out dated connection ,size=0 + +2025-09-24 13:13:58,867 INFO Connection check task end + +2025-09-24 13:13:59,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:01,870 INFO Connection check task start + +2025-09-24 13:14:01,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:01,870 INFO Out dated connection ,size=0 + +2025-09-24 13:14:01,870 INFO Connection check task end + +2025-09-24 13:14:02,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:04,871 INFO Connection check task start + +2025-09-24 13:14:04,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:04,872 INFO Out dated connection ,size=0 + +2025-09-24 13:14:04,872 INFO Connection check task end + +2025-09-24 13:14:05,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:07,872 INFO Connection check task start + +2025-09-24 13:14:07,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:07,873 INFO Out dated connection ,size=0 + +2025-09-24 13:14:07,873 INFO Connection check task end + +2025-09-24 13:14:08,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:10,873 INFO Connection check task start + +2025-09-24 13:14:10,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:10,874 INFO Out dated connection ,size=0 + +2025-09-24 13:14:10,874 INFO Connection check task end + +2025-09-24 13:14:11,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:13,874 INFO Connection check task start + +2025-09-24 13:14:13,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:13,874 INFO Out dated connection ,size=0 + +2025-09-24 13:14:13,874 INFO Connection check task end + +2025-09-24 13:14:14,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:16,875 INFO Connection check task start + +2025-09-24 13:14:16,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:16,875 INFO Out dated connection ,size=0 + +2025-09-24 13:14:16,875 INFO Connection check task end + +2025-09-24 13:14:17,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:19,876 INFO Connection check task start + +2025-09-24 13:14:19,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:19,876 INFO Out dated connection ,size=0 + +2025-09-24 13:14:19,876 INFO Connection check task end + +2025-09-24 13:14:20,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:22,876 INFO Connection check task start + +2025-09-24 13:14:22,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:22,876 INFO Out dated connection ,size=0 + +2025-09-24 13:14:22,876 INFO Connection check task end + +2025-09-24 13:14:23,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:25,878 INFO Connection check task start + +2025-09-24 13:14:25,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:25,879 INFO Out dated connection ,size=0 + +2025-09-24 13:14:25,879 INFO Connection check task end + +2025-09-24 13:14:26,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:28,881 INFO Connection check task start + +2025-09-24 13:14:28,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:28,881 INFO Out dated connection ,size=0 + +2025-09-24 13:14:28,881 INFO Connection check task end + +2025-09-24 13:14:29,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:31,881 INFO Connection check task start + +2025-09-24 13:14:31,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:31,882 INFO Out dated connection ,size=0 + +2025-09-24 13:14:31,882 INFO Connection check task end + +2025-09-24 13:14:32,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:34,882 INFO Connection check task start + +2025-09-24 13:14:34,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:34,882 INFO Out dated connection ,size=0 + +2025-09-24 13:14:34,882 INFO Connection check task end + +2025-09-24 13:14:35,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:37,884 INFO Connection check task start + +2025-09-24 13:14:37,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:37,884 INFO Out dated connection ,size=0 + +2025-09-24 13:14:37,884 INFO Connection check task end + +2025-09-24 13:14:38,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:40,884 INFO Connection check task start + +2025-09-24 13:14:40,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:40,884 INFO Out dated connection ,size=0 + +2025-09-24 13:14:40,884 INFO Connection check task end + +2025-09-24 13:14:41,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:43,886 INFO Connection check task start + +2025-09-24 13:14:43,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:43,886 INFO Out dated connection ,size=0 + +2025-09-24 13:14:43,887 INFO Connection check task end + +2025-09-24 13:14:44,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:46,887 INFO Connection check task start + +2025-09-24 13:14:46,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:46,887 INFO Out dated connection ,size=0 + +2025-09-24 13:14:46,887 INFO Connection check task end + +2025-09-24 13:14:47,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:49,889 INFO Connection check task start + +2025-09-24 13:14:49,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:49,889 INFO Out dated connection ,size=0 + +2025-09-24 13:14:49,889 INFO Connection check task end + +2025-09-24 13:14:50,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:52,890 INFO Connection check task start + +2025-09-24 13:14:52,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:52,890 INFO Out dated connection ,size=0 + +2025-09-24 13:14:52,890 INFO Connection check task end + +2025-09-24 13:14:53,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:55,891 INFO Connection check task start + +2025-09-24 13:14:55,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:55,892 INFO Out dated connection ,size=0 + +2025-09-24 13:14:55,892 INFO Connection check task end + +2025-09-24 13:14:56,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:14:58,893 INFO Connection check task start + +2025-09-24 13:14:58,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:14:58,893 INFO Out dated connection ,size=0 + +2025-09-24 13:14:58,893 INFO Connection check task end + +2025-09-24 13:14:59,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:01,894 INFO Connection check task start + +2025-09-24 13:15:01,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:01,894 INFO Out dated connection ,size=0 + +2025-09-24 13:15:01,894 INFO Connection check task end + +2025-09-24 13:15:02,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:04,896 INFO Connection check task start + +2025-09-24 13:15:04,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:04,896 INFO Out dated connection ,size=0 + +2025-09-24 13:15:04,896 INFO Connection check task end + +2025-09-24 13:15:05,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:07,897 INFO Connection check task start + +2025-09-24 13:15:07,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:07,897 INFO Out dated connection ,size=0 + +2025-09-24 13:15:07,898 INFO Connection check task end + +2025-09-24 13:15:08,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:10,900 INFO Connection check task start + +2025-09-24 13:15:10,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:10,900 INFO Out dated connection ,size=0 + +2025-09-24 13:15:10,900 INFO Connection check task end + +2025-09-24 13:15:11,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:13,901 INFO Connection check task start + +2025-09-24 13:15:13,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:13,901 INFO Out dated connection ,size=0 + +2025-09-24 13:15:13,901 INFO Connection check task end + +2025-09-24 13:15:14,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:16,903 INFO Connection check task start + +2025-09-24 13:15:16,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:16,904 INFO Out dated connection ,size=0 + +2025-09-24 13:15:16,904 INFO Connection check task end + +2025-09-24 13:15:17,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:19,904 INFO Connection check task start + +2025-09-24 13:15:19,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:19,904 INFO Out dated connection ,size=0 + +2025-09-24 13:15:19,904 INFO Connection check task end + +2025-09-24 13:15:20,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:22,905 INFO Connection check task start + +2025-09-24 13:15:22,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:22,905 INFO Out dated connection ,size=0 + +2025-09-24 13:15:22,905 INFO Connection check task end + +2025-09-24 13:15:23,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:25,906 INFO Connection check task start + +2025-09-24 13:15:25,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:25,907 INFO Out dated connection ,size=0 + +2025-09-24 13:15:25,907 INFO Connection check task end + +2025-09-24 13:15:26,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:28,907 INFO Connection check task start + +2025-09-24 13:15:28,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:28,907 INFO Out dated connection ,size=0 + +2025-09-24 13:15:28,907 INFO Connection check task end + +2025-09-24 13:15:29,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:31,909 INFO Connection check task start + +2025-09-24 13:15:31,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:31,909 INFO Out dated connection ,size=0 + +2025-09-24 13:15:31,909 INFO Connection check task end + +2025-09-24 13:15:32,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:34,909 INFO Connection check task start + +2025-09-24 13:15:34,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:34,910 INFO Out dated connection ,size=0 + +2025-09-24 13:15:34,910 INFO Connection check task end + +2025-09-24 13:15:35,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:37,910 INFO Connection check task start + +2025-09-24 13:15:37,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:37,910 INFO Out dated connection ,size=0 + +2025-09-24 13:15:37,910 INFO Connection check task end + +2025-09-24 13:15:38,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:40,910 INFO Connection check task start + +2025-09-24 13:15:40,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:40,911 INFO Out dated connection ,size=0 + +2025-09-24 13:15:40,911 INFO Connection check task end + +2025-09-24 13:15:41,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:43,911 INFO Connection check task start + +2025-09-24 13:15:43,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:43,912 INFO Out dated connection ,size=0 + +2025-09-24 13:15:43,912 INFO Connection check task end + +2025-09-24 13:15:44,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:46,912 INFO Connection check task start + +2025-09-24 13:15:46,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:46,913 INFO Out dated connection ,size=0 + +2025-09-24 13:15:46,913 INFO Connection check task end + +2025-09-24 13:15:47,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:49,914 INFO Connection check task start + +2025-09-24 13:15:49,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:49,914 INFO Out dated connection ,size=0 + +2025-09-24 13:15:49,914 INFO Connection check task end + +2025-09-24 13:15:50,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:52,915 INFO Connection check task start + +2025-09-24 13:15:52,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:52,915 INFO Out dated connection ,size=0 + +2025-09-24 13:15:52,915 INFO Connection check task end + +2025-09-24 13:15:53,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:55,916 INFO Connection check task start + +2025-09-24 13:15:55,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:55,916 INFO Out dated connection ,size=0 + +2025-09-24 13:15:55,916 INFO Connection check task end + +2025-09-24 13:15:56,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:15:58,917 INFO Connection check task start + +2025-09-24 13:15:58,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:15:58,917 INFO Out dated connection ,size=0 + +2025-09-24 13:15:58,917 INFO Connection check task end + +2025-09-24 13:15:59,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:01,919 INFO Connection check task start + +2025-09-24 13:16:01,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:01,919 INFO Out dated connection ,size=0 + +2025-09-24 13:16:01,919 INFO Connection check task end + +2025-09-24 13:16:02,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:04,919 INFO Connection check task start + +2025-09-24 13:16:04,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:04,920 INFO Out dated connection ,size=0 + +2025-09-24 13:16:04,920 INFO Connection check task end + +2025-09-24 13:16:05,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:07,921 INFO Connection check task start + +2025-09-24 13:16:07,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:07,921 INFO Out dated connection ,size=0 + +2025-09-24 13:16:07,921 INFO Connection check task end + +2025-09-24 13:16:08,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:10,922 INFO Connection check task start + +2025-09-24 13:16:10,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:10,922 INFO Out dated connection ,size=0 + +2025-09-24 13:16:10,922 INFO Connection check task end + +2025-09-24 13:16:11,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:13,924 INFO Connection check task start + +2025-09-24 13:16:13,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:13,924 INFO Out dated connection ,size=0 + +2025-09-24 13:16:13,924 INFO Connection check task end + +2025-09-24 13:16:14,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:16,924 INFO Connection check task start + +2025-09-24 13:16:16,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:16,925 INFO Out dated connection ,size=0 + +2025-09-24 13:16:16,925 INFO Connection check task end + +2025-09-24 13:16:17,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:19,925 INFO Connection check task start + +2025-09-24 13:16:19,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:19,925 INFO Out dated connection ,size=0 + +2025-09-24 13:16:19,925 INFO Connection check task end + +2025-09-24 13:16:20,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:22,925 INFO Connection check task start + +2025-09-24 13:16:22,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:22,926 INFO Out dated connection ,size=0 + +2025-09-24 13:16:22,926 INFO Connection check task end + +2025-09-24 13:16:23,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:25,928 INFO Connection check task start + +2025-09-24 13:16:25,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:25,929 INFO Out dated connection ,size=0 + +2025-09-24 13:16:25,929 INFO Connection check task end + +2025-09-24 13:16:26,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:28,929 INFO Connection check task start + +2025-09-24 13:16:28,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:28,929 INFO Out dated connection ,size=0 + +2025-09-24 13:16:28,929 INFO Connection check task end + +2025-09-24 13:16:29,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:31,931 INFO Connection check task start + +2025-09-24 13:16:31,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:31,932 INFO Out dated connection ,size=0 + +2025-09-24 13:16:31,932 INFO Connection check task end + +2025-09-24 13:16:32,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:34,934 INFO Connection check task start + +2025-09-24 13:16:34,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:34,934 INFO Out dated connection ,size=0 + +2025-09-24 13:16:34,934 INFO Connection check task end + +2025-09-24 13:16:35,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:37,936 INFO Connection check task start + +2025-09-24 13:16:37,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:37,936 INFO Out dated connection ,size=0 + +2025-09-24 13:16:37,936 INFO Connection check task end + +2025-09-24 13:16:38,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:40,936 INFO Connection check task start + +2025-09-24 13:16:40,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:40,937 INFO Out dated connection ,size=0 + +2025-09-24 13:16:40,937 INFO Connection check task end + +2025-09-24 13:16:41,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:43,939 INFO Connection check task start + +2025-09-24 13:16:43,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:43,939 INFO Out dated connection ,size=0 + +2025-09-24 13:16:43,939 INFO Connection check task end + +2025-09-24 13:16:44,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:46,941 INFO Connection check task start + +2025-09-24 13:16:46,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:46,941 INFO Out dated connection ,size=0 + +2025-09-24 13:16:46,941 INFO Connection check task end + +2025-09-24 13:16:47,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:49,941 INFO Connection check task start + +2025-09-24 13:16:49,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:49,941 INFO Out dated connection ,size=0 + +2025-09-24 13:16:49,941 INFO Connection check task end + +2025-09-24 13:16:50,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:52,942 INFO Connection check task start + +2025-09-24 13:16:52,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:52,942 INFO Out dated connection ,size=0 + +2025-09-24 13:16:52,942 INFO Connection check task end + +2025-09-24 13:16:53,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:55,943 INFO Connection check task start + +2025-09-24 13:16:55,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:55,943 INFO Out dated connection ,size=0 + +2025-09-24 13:16:55,943 INFO Connection check task end + +2025-09-24 13:16:56,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:16:58,944 INFO Connection check task start + +2025-09-24 13:16:58,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:16:58,944 INFO Out dated connection ,size=0 + +2025-09-24 13:16:58,944 INFO Connection check task end + +2025-09-24 13:16:59,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:01,944 INFO Connection check task start + +2025-09-24 13:17:01,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:01,945 INFO Out dated connection ,size=0 + +2025-09-24 13:17:01,945 INFO Connection check task end + +2025-09-24 13:17:02,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:04,947 INFO Connection check task start + +2025-09-24 13:17:04,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:04,947 INFO Out dated connection ,size=0 + +2025-09-24 13:17:04,947 INFO Connection check task end + +2025-09-24 13:17:05,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:07,947 INFO Connection check task start + +2025-09-24 13:17:07,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:07,948 INFO Out dated connection ,size=0 + +2025-09-24 13:17:07,948 INFO Connection check task end + +2025-09-24 13:17:08,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:10,948 INFO Connection check task start + +2025-09-24 13:17:10,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:10,948 INFO Out dated connection ,size=0 + +2025-09-24 13:17:10,948 INFO Connection check task end + +2025-09-24 13:17:11,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:13,949 INFO Connection check task start + +2025-09-24 13:17:13,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:13,950 INFO Out dated connection ,size=0 + +2025-09-24 13:17:13,950 INFO Connection check task end + +2025-09-24 13:17:14,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:16,952 INFO Connection check task start + +2025-09-24 13:17:16,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:16,952 INFO Out dated connection ,size=0 + +2025-09-24 13:17:16,952 INFO Connection check task end + +2025-09-24 13:17:17,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:19,952 INFO Connection check task start + +2025-09-24 13:17:19,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:19,952 INFO Out dated connection ,size=0 + +2025-09-24 13:17:19,952 INFO Connection check task end + +2025-09-24 13:17:20,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:22,953 INFO Connection check task start + +2025-09-24 13:17:22,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:22,953 INFO Out dated connection ,size=0 + +2025-09-24 13:17:22,953 INFO Connection check task end + +2025-09-24 13:17:23,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:25,954 INFO Connection check task start + +2025-09-24 13:17:25,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:25,954 INFO Out dated connection ,size=0 + +2025-09-24 13:17:25,954 INFO Connection check task end + +2025-09-24 13:17:26,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:28,956 INFO Connection check task start + +2025-09-24 13:17:28,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:28,956 INFO Out dated connection ,size=0 + +2025-09-24 13:17:28,956 INFO Connection check task end + +2025-09-24 13:17:29,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:31,956 INFO Connection check task start + +2025-09-24 13:17:31,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:31,956 INFO Out dated connection ,size=0 + +2025-09-24 13:17:31,956 INFO Connection check task end + +2025-09-24 13:17:32,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:34,957 INFO Connection check task start + +2025-09-24 13:17:34,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:34,957 INFO Out dated connection ,size=0 + +2025-09-24 13:17:34,957 INFO Connection check task end + +2025-09-24 13:17:35,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:37,958 INFO Connection check task start + +2025-09-24 13:17:37,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:37,958 INFO Out dated connection ,size=0 + +2025-09-24 13:17:37,958 INFO Connection check task end + +2025-09-24 13:17:38,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:40,959 INFO Connection check task start + +2025-09-24 13:17:40,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:40,960 INFO Out dated connection ,size=0 + +2025-09-24 13:17:40,960 INFO Connection check task end + +2025-09-24 13:17:41,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:43,961 INFO Connection check task start + +2025-09-24 13:17:43,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:43,961 INFO Out dated connection ,size=0 + +2025-09-24 13:17:43,961 INFO Connection check task end + +2025-09-24 13:17:44,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:46,963 INFO Connection check task start + +2025-09-24 13:17:46,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:46,963 INFO Out dated connection ,size=0 + +2025-09-24 13:17:46,963 INFO Connection check task end + +2025-09-24 13:17:47,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:49,963 INFO Connection check task start + +2025-09-24 13:17:49,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:49,963 INFO Out dated connection ,size=0 + +2025-09-24 13:17:49,963 INFO Connection check task end + +2025-09-24 13:17:50,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:52,966 INFO Connection check task start + +2025-09-24 13:17:52,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:52,966 INFO Out dated connection ,size=0 + +2025-09-24 13:17:52,966 INFO Connection check task end + +2025-09-24 13:17:53,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:55,966 INFO Connection check task start + +2025-09-24 13:17:55,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:55,966 INFO Out dated connection ,size=0 + +2025-09-24 13:17:55,966 INFO Connection check task end + +2025-09-24 13:17:56,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:17:58,968 INFO Connection check task start + +2025-09-24 13:17:58,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:17:58,969 INFO Out dated connection ,size=0 + +2025-09-24 13:17:58,969 INFO Connection check task end + +2025-09-24 13:17:59,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:01,969 INFO Connection check task start + +2025-09-24 13:18:01,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:01,969 INFO Out dated connection ,size=0 + +2025-09-24 13:18:01,969 INFO Connection check task end + +2025-09-24 13:18:02,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:04,970 INFO Connection check task start + +2025-09-24 13:18:04,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:04,970 INFO Out dated connection ,size=0 + +2025-09-24 13:18:04,970 INFO Connection check task end + +2025-09-24 13:18:05,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:07,971 INFO Connection check task start + +2025-09-24 13:18:07,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:07,971 INFO Out dated connection ,size=0 + +2025-09-24 13:18:07,971 INFO Connection check task end + +2025-09-24 13:18:08,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:10,973 INFO Connection check task start + +2025-09-24 13:18:10,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:10,973 INFO Out dated connection ,size=0 + +2025-09-24 13:18:10,973 INFO Connection check task end + +2025-09-24 13:18:11,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:13,973 INFO Connection check task start + +2025-09-24 13:18:13,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:13,974 INFO Out dated connection ,size=0 + +2025-09-24 13:18:13,974 INFO Connection check task end + +2025-09-24 13:18:14,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:16,974 INFO Connection check task start + +2025-09-24 13:18:16,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:16,974 INFO Out dated connection ,size=0 + +2025-09-24 13:18:16,974 INFO Connection check task end + +2025-09-24 13:18:17,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:19,976 INFO Connection check task start + +2025-09-24 13:18:19,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:19,976 INFO Out dated connection ,size=0 + +2025-09-24 13:18:19,976 INFO Connection check task end + +2025-09-24 13:18:20,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:22,977 INFO Connection check task start + +2025-09-24 13:18:22,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:22,979 INFO Out dated connection ,size=0 + +2025-09-24 13:18:22,979 INFO Connection check task end + +2025-09-24 13:18:23,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:25,979 INFO Connection check task start + +2025-09-24 13:18:25,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:25,979 INFO Out dated connection ,size=0 + +2025-09-24 13:18:25,979 INFO Connection check task end + +2025-09-24 13:18:26,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:28,981 INFO Connection check task start + +2025-09-24 13:18:28,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:28,981 INFO Out dated connection ,size=0 + +2025-09-24 13:18:28,981 INFO Connection check task end + +2025-09-24 13:18:29,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:31,983 INFO Connection check task start + +2025-09-24 13:18:31,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:31,984 INFO Out dated connection ,size=0 + +2025-09-24 13:18:31,984 INFO Connection check task end + +2025-09-24 13:18:32,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:34,984 INFO Connection check task start + +2025-09-24 13:18:34,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:34,985 INFO Out dated connection ,size=0 + +2025-09-24 13:18:34,985 INFO Connection check task end + +2025-09-24 13:18:35,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:37,985 INFO Connection check task start + +2025-09-24 13:18:37,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:37,986 INFO Out dated connection ,size=0 + +2025-09-24 13:18:37,986 INFO Connection check task end + +2025-09-24 13:18:38,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:40,986 INFO Connection check task start + +2025-09-24 13:18:40,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:40,987 INFO Out dated connection ,size=0 + +2025-09-24 13:18:40,987 INFO Connection check task end + +2025-09-24 13:18:41,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:43,987 INFO Connection check task start + +2025-09-24 13:18:43,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:43,987 INFO Out dated connection ,size=0 + +2025-09-24 13:18:43,987 INFO Connection check task end + +2025-09-24 13:18:44,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:46,989 INFO Connection check task start + +2025-09-24 13:18:46,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:46,989 INFO Out dated connection ,size=0 + +2025-09-24 13:18:46,989 INFO Connection check task end + +2025-09-24 13:18:47,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:49,990 INFO Connection check task start + +2025-09-24 13:18:49,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:49,990 INFO Out dated connection ,size=0 + +2025-09-24 13:18:49,990 INFO Connection check task end + +2025-09-24 13:18:50,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:52,990 INFO Connection check task start + +2025-09-24 13:18:52,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:52,990 INFO Out dated connection ,size=0 + +2025-09-24 13:18:52,990 INFO Connection check task end + +2025-09-24 13:18:53,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:55,991 INFO Connection check task start + +2025-09-24 13:18:55,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:55,991 INFO Out dated connection ,size=0 + +2025-09-24 13:18:55,991 INFO Connection check task end + +2025-09-24 13:18:56,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:18:58,993 INFO Connection check task start + +2025-09-24 13:18:58,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:18:58,993 INFO Out dated connection ,size=0 + +2025-09-24 13:18:58,993 INFO Connection check task end + +2025-09-24 13:18:59,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:01,995 INFO Connection check task start + +2025-09-24 13:19:01,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:01,995 INFO Out dated connection ,size=0 + +2025-09-24 13:19:01,995 INFO Connection check task end + +2025-09-24 13:19:02,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:04,995 INFO Connection check task start + +2025-09-24 13:19:04,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:04,995 INFO Out dated connection ,size=0 + +2025-09-24 13:19:04,995 INFO Connection check task end + +2025-09-24 13:19:05,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:07,996 INFO Connection check task start + +2025-09-24 13:19:07,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:07,996 INFO Out dated connection ,size=0 + +2025-09-24 13:19:07,996 INFO Connection check task end + +2025-09-24 13:19:08,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:10,997 INFO Connection check task start + +2025-09-24 13:19:10,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:10,997 INFO Out dated connection ,size=0 + +2025-09-24 13:19:10,997 INFO Connection check task end + +2025-09-24 13:19:11,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:13,998 INFO Connection check task start + +2025-09-24 13:19:13,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:13,998 INFO Out dated connection ,size=0 + +2025-09-24 13:19:13,998 INFO Connection check task end + +2025-09-24 13:19:14,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:16,999 INFO Connection check task start + +2025-09-24 13:19:16,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:16,999 INFO Out dated connection ,size=0 + +2025-09-24 13:19:16,999 INFO Connection check task end + +2025-09-24 13:19:17,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:20,000 INFO Connection check task start + +2025-09-24 13:19:20,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:20,000 INFO Out dated connection ,size=0 + +2025-09-24 13:19:20,000 INFO Connection check task end + +2025-09-24 13:19:20,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:23,002 INFO Connection check task start + +2025-09-24 13:19:23,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:23,003 INFO Out dated connection ,size=0 + +2025-09-24 13:19:23,003 INFO Connection check task end + +2025-09-24 13:19:23,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:26,003 INFO Connection check task start + +2025-09-24 13:19:26,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:26,003 INFO Out dated connection ,size=0 + +2025-09-24 13:19:26,003 INFO Connection check task end + +2025-09-24 13:19:26,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:29,005 INFO Connection check task start + +2025-09-24 13:19:29,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:29,005 INFO Out dated connection ,size=0 + +2025-09-24 13:19:29,005 INFO Connection check task end + +2025-09-24 13:19:29,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:32,005 INFO Connection check task start + +2025-09-24 13:19:32,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:32,005 INFO Out dated connection ,size=0 + +2025-09-24 13:19:32,005 INFO Connection check task end + +2025-09-24 13:19:32,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:35,006 INFO Connection check task start + +2025-09-24 13:19:35,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:35,006 INFO Out dated connection ,size=0 + +2025-09-24 13:19:35,006 INFO Connection check task end + +2025-09-24 13:19:35,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:38,007 INFO Connection check task start + +2025-09-24 13:19:38,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:38,007 INFO Out dated connection ,size=0 + +2025-09-24 13:19:38,007 INFO Connection check task end + +2025-09-24 13:19:38,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:41,008 INFO Connection check task start + +2025-09-24 13:19:41,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:41,008 INFO Out dated connection ,size=0 + +2025-09-24 13:19:41,008 INFO Connection check task end + +2025-09-24 13:19:41,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:44,008 INFO Connection check task start + +2025-09-24 13:19:44,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:44,009 INFO Out dated connection ,size=0 + +2025-09-24 13:19:44,009 INFO Connection check task end + +2025-09-24 13:19:44,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:47,009 INFO Connection check task start + +2025-09-24 13:19:47,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:47,009 INFO Out dated connection ,size=0 + +2025-09-24 13:19:47,009 INFO Connection check task end + +2025-09-24 13:19:47,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:50,010 INFO Connection check task start + +2025-09-24 13:19:50,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:50,010 INFO Out dated connection ,size=0 + +2025-09-24 13:19:50,010 INFO Connection check task end + +2025-09-24 13:19:50,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:53,011 INFO Connection check task start + +2025-09-24 13:19:53,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:53,012 INFO Out dated connection ,size=0 + +2025-09-24 13:19:53,012 INFO Connection check task end + +2025-09-24 13:19:53,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:56,014 INFO Connection check task start + +2025-09-24 13:19:56,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:56,014 INFO Out dated connection ,size=0 + +2025-09-24 13:19:56,014 INFO Connection check task end + +2025-09-24 13:19:56,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:19:59,016 INFO Connection check task start + +2025-09-24 13:19:59,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:19:59,016 INFO Out dated connection ,size=0 + +2025-09-24 13:19:59,016 INFO Connection check task end + +2025-09-24 13:19:59,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:02,017 INFO Connection check task start + +2025-09-24 13:20:02,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:02,017 INFO Out dated connection ,size=0 + +2025-09-24 13:20:02,017 INFO Connection check task end + +2025-09-24 13:20:02,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:05,019 INFO Connection check task start + +2025-09-24 13:20:05,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:05,019 INFO Out dated connection ,size=0 + +2025-09-24 13:20:05,019 INFO Connection check task end + +2025-09-24 13:20:05,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:08,021 INFO Connection check task start + +2025-09-24 13:20:08,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:08,021 INFO Out dated connection ,size=0 + +2025-09-24 13:20:08,022 INFO Connection check task end + +2025-09-24 13:20:08,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:11,024 INFO Connection check task start + +2025-09-24 13:20:11,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:11,024 INFO Out dated connection ,size=0 + +2025-09-24 13:20:11,024 INFO Connection check task end + +2025-09-24 13:20:11,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:14,024 INFO Connection check task start + +2025-09-24 13:20:14,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:14,024 INFO Out dated connection ,size=0 + +2025-09-24 13:20:14,024 INFO Connection check task end + +2025-09-24 13:20:14,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:17,026 INFO Connection check task start + +2025-09-24 13:20:17,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:17,026 INFO Out dated connection ,size=0 + +2025-09-24 13:20:17,026 INFO Connection check task end + +2025-09-24 13:20:17,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:20,028 INFO Connection check task start + +2025-09-24 13:20:20,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:20,028 INFO Out dated connection ,size=0 + +2025-09-24 13:20:20,028 INFO Connection check task end + +2025-09-24 13:20:20,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:23,029 INFO Connection check task start + +2025-09-24 13:20:23,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:23,029 INFO Out dated connection ,size=0 + +2025-09-24 13:20:23,029 INFO Connection check task end + +2025-09-24 13:20:23,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:26,029 INFO Connection check task start + +2025-09-24 13:20:26,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:26,029 INFO Out dated connection ,size=0 + +2025-09-24 13:20:26,030 INFO Connection check task end + +2025-09-24 13:20:26,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:29,030 INFO Connection check task start + +2025-09-24 13:20:29,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:29,030 INFO Out dated connection ,size=0 + +2025-09-24 13:20:29,030 INFO Connection check task end + +2025-09-24 13:20:29,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:32,030 INFO Connection check task start + +2025-09-24 13:20:32,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:32,031 INFO Out dated connection ,size=0 + +2025-09-24 13:20:32,031 INFO Connection check task end + +2025-09-24 13:20:32,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:35,033 INFO Connection check task start + +2025-09-24 13:20:35,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:35,033 INFO Out dated connection ,size=0 + +2025-09-24 13:20:35,033 INFO Connection check task end + +2025-09-24 13:20:35,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:38,033 INFO Connection check task start + +2025-09-24 13:20:38,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:38,034 INFO Out dated connection ,size=0 + +2025-09-24 13:20:38,034 INFO Connection check task end + +2025-09-24 13:20:38,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:41,034 INFO Connection check task start + +2025-09-24 13:20:41,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:41,034 INFO Out dated connection ,size=0 + +2025-09-24 13:20:41,034 INFO Connection check task end + +2025-09-24 13:20:41,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:44,034 INFO Connection check task start + +2025-09-24 13:20:44,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:44,035 INFO Out dated connection ,size=0 + +2025-09-24 13:20:44,035 INFO Connection check task end + +2025-09-24 13:20:44,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:47,036 INFO Connection check task start + +2025-09-24 13:20:47,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:47,036 INFO Out dated connection ,size=0 + +2025-09-24 13:20:47,036 INFO Connection check task end + +2025-09-24 13:20:47,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:50,036 INFO Connection check task start + +2025-09-24 13:20:50,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:50,036 INFO Out dated connection ,size=0 + +2025-09-24 13:20:50,036 INFO Connection check task end + +2025-09-24 13:20:50,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:53,037 INFO Connection check task start + +2025-09-24 13:20:53,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:53,037 INFO Out dated connection ,size=0 + +2025-09-24 13:20:53,037 INFO Connection check task end + +2025-09-24 13:20:53,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:56,037 INFO Connection check task start + +2025-09-24 13:20:56,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:56,037 INFO Out dated connection ,size=0 + +2025-09-24 13:20:56,037 INFO Connection check task end + +2025-09-24 13:20:56,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:20:59,039 INFO Connection check task start + +2025-09-24 13:20:59,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:20:59,039 INFO Out dated connection ,size=0 + +2025-09-24 13:20:59,040 INFO Connection check task end + +2025-09-24 13:20:59,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:02,040 INFO Connection check task start + +2025-09-24 13:21:02,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:02,040 INFO Out dated connection ,size=0 + +2025-09-24 13:21:02,040 INFO Connection check task end + +2025-09-24 13:21:02,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:05,041 INFO Connection check task start + +2025-09-24 13:21:05,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:05,041 INFO Out dated connection ,size=0 + +2025-09-24 13:21:05,041 INFO Connection check task end + +2025-09-24 13:21:05,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:08,041 INFO Connection check task start + +2025-09-24 13:21:08,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:08,042 INFO Out dated connection ,size=0 + +2025-09-24 13:21:08,042 INFO Connection check task end + +2025-09-24 13:21:08,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:11,044 INFO Connection check task start + +2025-09-24 13:21:11,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:11,044 INFO Out dated connection ,size=0 + +2025-09-24 13:21:11,044 INFO Connection check task end + +2025-09-24 13:21:11,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:14,046 INFO Connection check task start + +2025-09-24 13:21:14,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:14,046 INFO Out dated connection ,size=0 + +2025-09-24 13:21:14,046 INFO Connection check task end + +2025-09-24 13:21:14,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:17,047 INFO Connection check task start + +2025-09-24 13:21:17,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:17,047 INFO Out dated connection ,size=0 + +2025-09-24 13:21:17,047 INFO Connection check task end + +2025-09-24 13:21:17,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:20,048 INFO Connection check task start + +2025-09-24 13:21:20,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:20,048 INFO Out dated connection ,size=0 + +2025-09-24 13:21:20,048 INFO Connection check task end + +2025-09-24 13:21:20,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:23,050 INFO Connection check task start + +2025-09-24 13:21:23,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:23,051 INFO Out dated connection ,size=0 + +2025-09-24 13:21:23,051 INFO Connection check task end + +2025-09-24 13:21:24,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:26,052 INFO Connection check task start + +2025-09-24 13:21:26,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:26,052 INFO Out dated connection ,size=0 + +2025-09-24 13:21:26,052 INFO Connection check task end + +2025-09-24 13:21:27,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:29,053 INFO Connection check task start + +2025-09-24 13:21:29,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:29,053 INFO Out dated connection ,size=0 + +2025-09-24 13:21:29,053 INFO Connection check task end + +2025-09-24 13:21:30,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:32,054 INFO Connection check task start + +2025-09-24 13:21:32,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:32,054 INFO Out dated connection ,size=0 + +2025-09-24 13:21:32,054 INFO Connection check task end + +2025-09-24 13:21:33,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:35,056 INFO Connection check task start + +2025-09-24 13:21:35,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:35,056 INFO Out dated connection ,size=0 + +2025-09-24 13:21:35,056 INFO Connection check task end + +2025-09-24 13:21:36,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:38,056 INFO Connection check task start + +2025-09-24 13:21:38,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:38,057 INFO Out dated connection ,size=0 + +2025-09-24 13:21:38,057 INFO Connection check task end + +2025-09-24 13:21:39,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:41,057 INFO Connection check task start + +2025-09-24 13:21:41,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:41,057 INFO Out dated connection ,size=0 + +2025-09-24 13:21:41,057 INFO Connection check task end + +2025-09-24 13:21:42,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:44,059 INFO Connection check task start + +2025-09-24 13:21:44,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:44,059 INFO Out dated connection ,size=0 + +2025-09-24 13:21:44,059 INFO Connection check task end + +2025-09-24 13:21:45,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:47,061 INFO Connection check task start + +2025-09-24 13:21:47,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:47,061 INFO Out dated connection ,size=0 + +2025-09-24 13:21:47,061 INFO Connection check task end + +2025-09-24 13:21:48,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:50,061 INFO Connection check task start + +2025-09-24 13:21:50,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:50,061 INFO Out dated connection ,size=0 + +2025-09-24 13:21:50,062 INFO Connection check task end + +2025-09-24 13:21:51,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:53,064 INFO Connection check task start + +2025-09-24 13:21:53,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:53,064 INFO Out dated connection ,size=0 + +2025-09-24 13:21:53,064 INFO Connection check task end + +2025-09-24 13:21:54,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:56,064 INFO Connection check task start + +2025-09-24 13:21:56,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:56,065 INFO Out dated connection ,size=0 + +2025-09-24 13:21:56,065 INFO Connection check task end + +2025-09-24 13:21:57,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:21:59,066 INFO Connection check task start + +2025-09-24 13:21:59,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:21:59,066 INFO Out dated connection ,size=0 + +2025-09-24 13:21:59,066 INFO Connection check task end + +2025-09-24 13:22:00,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:02,067 INFO Connection check task start + +2025-09-24 13:22:02,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:02,067 INFO Out dated connection ,size=0 + +2025-09-24 13:22:02,067 INFO Connection check task end + +2025-09-24 13:22:03,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:05,069 INFO Connection check task start + +2025-09-24 13:22:05,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:05,069 INFO Out dated connection ,size=0 + +2025-09-24 13:22:05,069 INFO Connection check task end + +2025-09-24 13:22:06,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:08,071 INFO Connection check task start + +2025-09-24 13:22:08,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:08,071 INFO Out dated connection ,size=0 + +2025-09-24 13:22:08,071 INFO Connection check task end + +2025-09-24 13:22:09,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:11,073 INFO Connection check task start + +2025-09-24 13:22:11,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:11,074 INFO Out dated connection ,size=0 + +2025-09-24 13:22:11,074 INFO Connection check task end + +2025-09-24 13:22:12,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:14,076 INFO Connection check task start + +2025-09-24 13:22:14,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:14,076 INFO Out dated connection ,size=0 + +2025-09-24 13:22:14,076 INFO Connection check task end + +2025-09-24 13:22:15,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:17,076 INFO Connection check task start + +2025-09-24 13:22:17,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:17,076 INFO Out dated connection ,size=0 + +2025-09-24 13:22:17,076 INFO Connection check task end + +2025-09-24 13:22:18,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:20,077 INFO Connection check task start + +2025-09-24 13:22:20,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:20,077 INFO Out dated connection ,size=0 + +2025-09-24 13:22:20,077 INFO Connection check task end + +2025-09-24 13:22:21,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:23,077 INFO Connection check task start + +2025-09-24 13:22:23,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:23,077 INFO Out dated connection ,size=0 + +2025-09-24 13:22:23,077 INFO Connection check task end + +2025-09-24 13:22:24,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:26,079 INFO Connection check task start + +2025-09-24 13:22:26,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:26,079 INFO Out dated connection ,size=0 + +2025-09-24 13:22:26,079 INFO Connection check task end + +2025-09-24 13:22:27,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:29,079 INFO Connection check task start + +2025-09-24 13:22:29,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:29,079 INFO Out dated connection ,size=0 + +2025-09-24 13:22:29,079 INFO Connection check task end + +2025-09-24 13:22:30,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:32,082 INFO Connection check task start + +2025-09-24 13:22:32,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:32,082 INFO Out dated connection ,size=0 + +2025-09-24 13:22:32,082 INFO Connection check task end + +2025-09-24 13:22:33,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:35,082 INFO Connection check task start + +2025-09-24 13:22:35,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:35,082 INFO Out dated connection ,size=0 + +2025-09-24 13:22:35,082 INFO Connection check task end + +2025-09-24 13:22:36,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:38,084 INFO Connection check task start + +2025-09-24 13:22:38,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:38,084 INFO Out dated connection ,size=0 + +2025-09-24 13:22:38,085 INFO Connection check task end + +2025-09-24 13:22:39,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:41,087 INFO Connection check task start + +2025-09-24 13:22:41,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:41,087 INFO Out dated connection ,size=0 + +2025-09-24 13:22:41,087 INFO Connection check task end + +2025-09-24 13:22:42,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:44,088 INFO Connection check task start + +2025-09-24 13:22:44,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:44,088 INFO Out dated connection ,size=0 + +2025-09-24 13:22:44,088 INFO Connection check task end + +2025-09-24 13:22:45,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:47,088 INFO Connection check task start + +2025-09-24 13:22:47,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:47,089 INFO Out dated connection ,size=0 + +2025-09-24 13:22:47,089 INFO Connection check task end + +2025-09-24 13:22:48,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:50,089 INFO Connection check task start + +2025-09-24 13:22:50,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:50,089 INFO Out dated connection ,size=0 + +2025-09-24 13:22:50,089 INFO Connection check task end + +2025-09-24 13:22:51,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:53,089 INFO Connection check task start + +2025-09-24 13:22:53,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:53,089 INFO Out dated connection ,size=0 + +2025-09-24 13:22:53,089 INFO Connection check task end + +2025-09-24 13:22:54,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:56,092 INFO Connection check task start + +2025-09-24 13:22:56,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:56,092 INFO Out dated connection ,size=0 + +2025-09-24 13:22:56,092 INFO Connection check task end + +2025-09-24 13:22:57,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:22:59,094 INFO Connection check task start + +2025-09-24 13:22:59,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:22:59,094 INFO Out dated connection ,size=0 + +2025-09-24 13:22:59,094 INFO Connection check task end + +2025-09-24 13:23:00,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:02,095 INFO Connection check task start + +2025-09-24 13:23:02,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:02,095 INFO Out dated connection ,size=0 + +2025-09-24 13:23:02,095 INFO Connection check task end + +2025-09-24 13:23:03,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:05,096 INFO Connection check task start + +2025-09-24 13:23:05,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:05,096 INFO Out dated connection ,size=0 + +2025-09-24 13:23:05,096 INFO Connection check task end + +2025-09-24 13:23:06,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:08,097 INFO Connection check task start + +2025-09-24 13:23:08,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:08,097 INFO Out dated connection ,size=0 + +2025-09-24 13:23:08,097 INFO Connection check task end + +2025-09-24 13:23:09,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:11,097 INFO Connection check task start + +2025-09-24 13:23:11,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:11,098 INFO Out dated connection ,size=0 + +2025-09-24 13:23:11,098 INFO Connection check task end + +2025-09-24 13:23:12,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:14,098 INFO Connection check task start + +2025-09-24 13:23:14,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:14,098 INFO Out dated connection ,size=0 + +2025-09-24 13:23:14,098 INFO Connection check task end + +2025-09-24 13:23:15,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:17,098 INFO Connection check task start + +2025-09-24 13:23:17,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:17,098 INFO Out dated connection ,size=0 + +2025-09-24 13:23:17,098 INFO Connection check task end + +2025-09-24 13:23:18,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:20,099 INFO Connection check task start + +2025-09-24 13:23:20,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:20,101 INFO Out dated connection ,size=0 + +2025-09-24 13:23:20,101 INFO Connection check task end + +2025-09-24 13:23:21,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:23,101 INFO Connection check task start + +2025-09-24 13:23:23,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:23,102 INFO Out dated connection ,size=0 + +2025-09-24 13:23:23,102 INFO Connection check task end + +2025-09-24 13:23:24,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:26,103 INFO Connection check task start + +2025-09-24 13:23:26,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:26,103 INFO Out dated connection ,size=0 + +2025-09-24 13:23:26,103 INFO Connection check task end + +2025-09-24 13:23:27,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:29,104 INFO Connection check task start + +2025-09-24 13:23:29,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:29,104 INFO Out dated connection ,size=0 + +2025-09-24 13:23:29,104 INFO Connection check task end + +2025-09-24 13:23:30,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:32,105 INFO Connection check task start + +2025-09-24 13:23:32,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:32,105 INFO Out dated connection ,size=0 + +2025-09-24 13:23:32,105 INFO Connection check task end + +2025-09-24 13:23:33,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:35,106 INFO Connection check task start + +2025-09-24 13:23:35,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:35,106 INFO Out dated connection ,size=0 + +2025-09-24 13:23:35,106 INFO Connection check task end + +2025-09-24 13:23:36,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:38,106 INFO Connection check task start + +2025-09-24 13:23:38,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:38,106 INFO Out dated connection ,size=0 + +2025-09-24 13:23:38,106 INFO Connection check task end + +2025-09-24 13:23:39,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:41,107 INFO Connection check task start + +2025-09-24 13:23:41,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:41,107 INFO Out dated connection ,size=0 + +2025-09-24 13:23:41,107 INFO Connection check task end + +2025-09-24 13:23:42,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:44,108 INFO Connection check task start + +2025-09-24 13:23:44,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:44,109 INFO Out dated connection ,size=0 + +2025-09-24 13:23:44,109 INFO Connection check task end + +2025-09-24 13:23:45,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:47,110 INFO Connection check task start + +2025-09-24 13:23:47,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:47,110 INFO Out dated connection ,size=0 + +2025-09-24 13:23:47,110 INFO Connection check task end + +2025-09-24 13:23:48,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:50,112 INFO Connection check task start + +2025-09-24 13:23:50,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:50,112 INFO Out dated connection ,size=0 + +2025-09-24 13:23:50,112 INFO Connection check task end + +2025-09-24 13:23:51,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:53,113 INFO Connection check task start + +2025-09-24 13:23:53,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:53,113 INFO Out dated connection ,size=0 + +2025-09-24 13:23:53,113 INFO Connection check task end + +2025-09-24 13:23:54,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:56,114 INFO Connection check task start + +2025-09-24 13:23:56,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:56,114 INFO Out dated connection ,size=0 + +2025-09-24 13:23:56,114 INFO Connection check task end + +2025-09-24 13:23:57,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:23:59,115 INFO Connection check task start + +2025-09-24 13:23:59,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:23:59,115 INFO Out dated connection ,size=0 + +2025-09-24 13:23:59,115 INFO Connection check task end + +2025-09-24 13:24:00,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:02,115 INFO Connection check task start + +2025-09-24 13:24:02,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:02,115 INFO Out dated connection ,size=0 + +2025-09-24 13:24:02,116 INFO Connection check task end + +2025-09-24 13:24:03,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:05,116 INFO Connection check task start + +2025-09-24 13:24:05,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:05,116 INFO Out dated connection ,size=0 + +2025-09-24 13:24:05,116 INFO Connection check task end + +2025-09-24 13:24:06,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:08,118 INFO Connection check task start + +2025-09-24 13:24:08,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:08,119 INFO Out dated connection ,size=0 + +2025-09-24 13:24:08,119 INFO Connection check task end + +2025-09-24 13:24:09,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:11,120 INFO Connection check task start + +2025-09-24 13:24:11,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:11,120 INFO Out dated connection ,size=0 + +2025-09-24 13:24:11,120 INFO Connection check task end + +2025-09-24 13:24:12,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:14,122 INFO Connection check task start + +2025-09-24 13:24:14,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:14,122 INFO Out dated connection ,size=0 + +2025-09-24 13:24:14,122 INFO Connection check task end + +2025-09-24 13:24:15,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:17,123 INFO Connection check task start + +2025-09-24 13:24:17,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:17,123 INFO Out dated connection ,size=0 + +2025-09-24 13:24:17,123 INFO Connection check task end + +2025-09-24 13:24:18,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:20,123 INFO Connection check task start + +2025-09-24 13:24:20,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:20,123 INFO Out dated connection ,size=0 + +2025-09-24 13:24:20,123 INFO Connection check task end + +2025-09-24 13:24:21,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:23,124 INFO Connection check task start + +2025-09-24 13:24:23,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:23,124 INFO Out dated connection ,size=0 + +2025-09-24 13:24:23,124 INFO Connection check task end + +2025-09-24 13:24:24,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:26,124 INFO Connection check task start + +2025-09-24 13:24:26,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:26,124 INFO Out dated connection ,size=0 + +2025-09-24 13:24:26,124 INFO Connection check task end + +2025-09-24 13:24:27,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:29,124 INFO Connection check task start + +2025-09-24 13:24:29,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:29,125 INFO Out dated connection ,size=0 + +2025-09-24 13:24:29,125 INFO Connection check task end + +2025-09-24 13:24:30,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:32,126 INFO Connection check task start + +2025-09-24 13:24:32,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:32,127 INFO Out dated connection ,size=0 + +2025-09-24 13:24:32,127 INFO Connection check task end + +2025-09-24 13:24:33,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:35,129 INFO Connection check task start + +2025-09-24 13:24:35,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:35,129 INFO Out dated connection ,size=0 + +2025-09-24 13:24:35,129 INFO Connection check task end + +2025-09-24 13:24:36,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:38,129 INFO Connection check task start + +2025-09-24 13:24:38,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:38,130 INFO Out dated connection ,size=0 + +2025-09-24 13:24:38,130 INFO Connection check task end + +2025-09-24 13:24:39,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:41,130 INFO Connection check task start + +2025-09-24 13:24:41,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:41,131 INFO Out dated connection ,size=0 + +2025-09-24 13:24:41,131 INFO Connection check task end + +2025-09-24 13:24:42,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:44,133 INFO Connection check task start + +2025-09-24 13:24:44,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:44,133 INFO Out dated connection ,size=0 + +2025-09-24 13:24:44,133 INFO Connection check task end + +2025-09-24 13:24:45,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:47,134 INFO Connection check task start + +2025-09-24 13:24:47,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:47,134 INFO Out dated connection ,size=0 + +2025-09-24 13:24:47,134 INFO Connection check task end + +2025-09-24 13:24:48,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:50,136 INFO Connection check task start + +2025-09-24 13:24:50,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:50,136 INFO Out dated connection ,size=0 + +2025-09-24 13:24:50,136 INFO Connection check task end + +2025-09-24 13:24:51,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:53,137 INFO Connection check task start + +2025-09-24 13:24:53,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:53,137 INFO Out dated connection ,size=0 + +2025-09-24 13:24:53,137 INFO Connection check task end + +2025-09-24 13:24:54,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:56,138 INFO Connection check task start + +2025-09-24 13:24:56,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:56,138 INFO Out dated connection ,size=0 + +2025-09-24 13:24:56,138 INFO Connection check task end + +2025-09-24 13:24:57,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:24:59,138 INFO Connection check task start + +2025-09-24 13:24:59,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:24:59,138 INFO Out dated connection ,size=0 + +2025-09-24 13:24:59,138 INFO Connection check task end + +2025-09-24 13:25:00,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:02,138 INFO Connection check task start + +2025-09-24 13:25:02,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:02,139 INFO Out dated connection ,size=0 + +2025-09-24 13:25:02,139 INFO Connection check task end + +2025-09-24 13:25:03,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:05,141 INFO Connection check task start + +2025-09-24 13:25:05,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:05,141 INFO Out dated connection ,size=0 + +2025-09-24 13:25:05,141 INFO Connection check task end + +2025-09-24 13:25:06,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:08,142 INFO Connection check task start + +2025-09-24 13:25:08,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:08,142 INFO Out dated connection ,size=0 + +2025-09-24 13:25:08,142 INFO Connection check task end + +2025-09-24 13:25:09,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:11,144 INFO Connection check task start + +2025-09-24 13:25:11,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:11,144 INFO Out dated connection ,size=0 + +2025-09-24 13:25:11,144 INFO Connection check task end + +2025-09-24 13:25:12,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:14,145 INFO Connection check task start + +2025-09-24 13:25:14,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:14,145 INFO Out dated connection ,size=0 + +2025-09-24 13:25:14,145 INFO Connection check task end + +2025-09-24 13:25:15,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:17,146 INFO Connection check task start + +2025-09-24 13:25:17,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:17,146 INFO Out dated connection ,size=0 + +2025-09-24 13:25:17,146 INFO Connection check task end + +2025-09-24 13:25:18,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:20,146 INFO Connection check task start + +2025-09-24 13:25:20,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:20,146 INFO Out dated connection ,size=0 + +2025-09-24 13:25:20,146 INFO Connection check task end + +2025-09-24 13:25:21,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:23,147 INFO Connection check task start + +2025-09-24 13:25:23,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:23,147 INFO Out dated connection ,size=0 + +2025-09-24 13:25:23,147 INFO Connection check task end + +2025-09-24 13:25:24,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:26,148 INFO Connection check task start + +2025-09-24 13:25:26,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:26,148 INFO Out dated connection ,size=0 + +2025-09-24 13:25:26,148 INFO Connection check task end + +2025-09-24 13:25:27,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:29,148 INFO Connection check task start + +2025-09-24 13:25:29,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:29,149 INFO Out dated connection ,size=0 + +2025-09-24 13:25:29,149 INFO Connection check task end + +2025-09-24 13:25:30,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:32,151 INFO Connection check task start + +2025-09-24 13:25:32,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:32,151 INFO Out dated connection ,size=0 + +2025-09-24 13:25:32,151 INFO Connection check task end + +2025-09-24 13:25:33,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:35,153 INFO Connection check task start + +2025-09-24 13:25:35,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:35,153 INFO Out dated connection ,size=0 + +2025-09-24 13:25:35,154 INFO Connection check task end + +2025-09-24 13:25:36,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:38,154 INFO Connection check task start + +2025-09-24 13:25:38,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:38,154 INFO Out dated connection ,size=0 + +2025-09-24 13:25:38,154 INFO Connection check task end + +2025-09-24 13:25:39,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:41,154 INFO Connection check task start + +2025-09-24 13:25:41,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:41,154 INFO Out dated connection ,size=0 + +2025-09-24 13:25:41,154 INFO Connection check task end + +2025-09-24 13:25:42,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:44,155 INFO Connection check task start + +2025-09-24 13:25:44,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:44,156 INFO Out dated connection ,size=0 + +2025-09-24 13:25:44,156 INFO Connection check task end + +2025-09-24 13:25:45,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:47,156 INFO Connection check task start + +2025-09-24 13:25:47,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:47,156 INFO Out dated connection ,size=0 + +2025-09-24 13:25:47,156 INFO Connection check task end + +2025-09-24 13:25:48,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:50,156 INFO Connection check task start + +2025-09-24 13:25:50,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:50,157 INFO Out dated connection ,size=0 + +2025-09-24 13:25:50,157 INFO Connection check task end + +2025-09-24 13:25:51,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:53,157 INFO Connection check task start + +2025-09-24 13:25:53,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:53,157 INFO Out dated connection ,size=0 + +2025-09-24 13:25:53,157 INFO Connection check task end + +2025-09-24 13:25:54,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:56,158 INFO Connection check task start + +2025-09-24 13:25:56,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:56,158 INFO Out dated connection ,size=0 + +2025-09-24 13:25:56,158 INFO Connection check task end + +2025-09-24 13:25:57,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:25:59,160 INFO Connection check task start + +2025-09-24 13:25:59,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:25:59,161 INFO Out dated connection ,size=0 + +2025-09-24 13:25:59,161 INFO Connection check task end + +2025-09-24 13:26:00,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:02,161 INFO Connection check task start + +2025-09-24 13:26:02,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:02,161 INFO Out dated connection ,size=0 + +2025-09-24 13:26:02,161 INFO Connection check task end + +2025-09-24 13:26:03,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:05,162 INFO Connection check task start + +2025-09-24 13:26:05,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:05,162 INFO Out dated connection ,size=0 + +2025-09-24 13:26:05,162 INFO Connection check task end + +2025-09-24 13:26:06,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:08,164 INFO Connection check task start + +2025-09-24 13:26:08,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:08,164 INFO Out dated connection ,size=0 + +2025-09-24 13:26:08,164 INFO Connection check task end + +2025-09-24 13:26:09,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:11,164 INFO Connection check task start + +2025-09-24 13:26:11,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:11,164 INFO Out dated connection ,size=0 + +2025-09-24 13:26:11,164 INFO Connection check task end + +2025-09-24 13:26:12,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:14,165 INFO Connection check task start + +2025-09-24 13:26:14,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:14,165 INFO Out dated connection ,size=0 + +2025-09-24 13:26:14,165 INFO Connection check task end + +2025-09-24 13:26:15,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:17,166 INFO Connection check task start + +2025-09-24 13:26:17,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:17,166 INFO Out dated connection ,size=0 + +2025-09-24 13:26:17,166 INFO Connection check task end + +2025-09-24 13:26:18,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:20,166 INFO Connection check task start + +2025-09-24 13:26:20,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:20,166 INFO Out dated connection ,size=0 + +2025-09-24 13:26:20,166 INFO Connection check task end + +2025-09-24 13:26:21,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:23,168 INFO Connection check task start + +2025-09-24 13:26:23,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:23,168 INFO Out dated connection ,size=0 + +2025-09-24 13:26:23,168 INFO Connection check task end + +2025-09-24 13:26:24,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:26,168 INFO Connection check task start + +2025-09-24 13:26:26,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:26,168 INFO Out dated connection ,size=0 + +2025-09-24 13:26:26,168 INFO Connection check task end + +2025-09-24 13:26:27,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:29,170 INFO Connection check task start + +2025-09-24 13:26:29,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:29,170 INFO Out dated connection ,size=0 + +2025-09-24 13:26:29,170 INFO Connection check task end + +2025-09-24 13:26:30,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:32,171 INFO Connection check task start + +2025-09-24 13:26:32,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:32,171 INFO Out dated connection ,size=0 + +2025-09-24 13:26:32,171 INFO Connection check task end + +2025-09-24 13:26:33,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:35,171 INFO Connection check task start + +2025-09-24 13:26:35,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:35,172 INFO Out dated connection ,size=0 + +2025-09-24 13:26:35,172 INFO Connection check task end + +2025-09-24 13:26:36,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:38,172 INFO Connection check task start + +2025-09-24 13:26:38,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:38,172 INFO Out dated connection ,size=0 + +2025-09-24 13:26:38,172 INFO Connection check task end + +2025-09-24 13:26:39,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:41,174 INFO Connection check task start + +2025-09-24 13:26:41,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:41,174 INFO Out dated connection ,size=0 + +2025-09-24 13:26:41,174 INFO Connection check task end + +2025-09-24 13:26:42,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:44,176 INFO Connection check task start + +2025-09-24 13:26:44,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:44,176 INFO Out dated connection ,size=0 + +2025-09-24 13:26:44,176 INFO Connection check task end + +2025-09-24 13:26:45,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:47,177 INFO Connection check task start + +2025-09-24 13:26:47,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:47,177 INFO Out dated connection ,size=0 + +2025-09-24 13:26:47,177 INFO Connection check task end + +2025-09-24 13:26:48,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:50,179 INFO Connection check task start + +2025-09-24 13:26:50,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:50,179 INFO Out dated connection ,size=0 + +2025-09-24 13:26:50,179 INFO Connection check task end + +2025-09-24 13:26:51,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:53,179 INFO Connection check task start + +2025-09-24 13:26:53,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:53,179 INFO Out dated connection ,size=0 + +2025-09-24 13:26:53,179 INFO Connection check task end + +2025-09-24 13:26:54,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:56,181 INFO Connection check task start + +2025-09-24 13:26:56,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:56,182 INFO Out dated connection ,size=0 + +2025-09-24 13:26:56,182 INFO Connection check task end + +2025-09-24 13:26:57,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:26:59,182 INFO Connection check task start + +2025-09-24 13:26:59,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:26:59,182 INFO Out dated connection ,size=0 + +2025-09-24 13:26:59,182 INFO Connection check task end + +2025-09-24 13:27:00,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:02,182 INFO Connection check task start + +2025-09-24 13:27:02,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:02,183 INFO Out dated connection ,size=0 + +2025-09-24 13:27:02,183 INFO Connection check task end + +2025-09-24 13:27:03,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:05,183 INFO Connection check task start + +2025-09-24 13:27:05,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:05,183 INFO Out dated connection ,size=0 + +2025-09-24 13:27:05,183 INFO Connection check task end + +2025-09-24 13:27:06,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:08,185 INFO Connection check task start + +2025-09-24 13:27:08,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:08,185 INFO Out dated connection ,size=0 + +2025-09-24 13:27:08,185 INFO Connection check task end + +2025-09-24 13:27:09,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:11,186 INFO Connection check task start + +2025-09-24 13:27:11,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:11,186 INFO Out dated connection ,size=0 + +2025-09-24 13:27:11,186 INFO Connection check task end + +2025-09-24 13:27:12,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:14,186 INFO Connection check task start + +2025-09-24 13:27:14,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:14,186 INFO Out dated connection ,size=0 + +2025-09-24 13:27:14,186 INFO Connection check task end + +2025-09-24 13:27:15,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:17,189 INFO Connection check task start + +2025-09-24 13:27:17,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:17,189 INFO Out dated connection ,size=0 + +2025-09-24 13:27:17,189 INFO Connection check task end + +2025-09-24 13:27:18,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:20,189 INFO Connection check task start + +2025-09-24 13:27:20,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:20,189 INFO Out dated connection ,size=0 + +2025-09-24 13:27:20,189 INFO Connection check task end + +2025-09-24 13:27:21,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:23,191 INFO Connection check task start + +2025-09-24 13:27:23,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:23,192 INFO Out dated connection ,size=0 + +2025-09-24 13:27:23,192 INFO Connection check task end + +2025-09-24 13:27:24,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:26,192 INFO Connection check task start + +2025-09-24 13:27:26,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:26,192 INFO Out dated connection ,size=0 + +2025-09-24 13:27:26,192 INFO Connection check task end + +2025-09-24 13:27:27,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:29,192 INFO Connection check task start + +2025-09-24 13:27:29,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:29,193 INFO Out dated connection ,size=0 + +2025-09-24 13:27:29,193 INFO Connection check task end + +2025-09-24 13:27:30,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:32,195 INFO Connection check task start + +2025-09-24 13:27:32,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:32,195 INFO Out dated connection ,size=0 + +2025-09-24 13:27:32,195 INFO Connection check task end + +2025-09-24 13:27:33,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:35,197 INFO Connection check task start + +2025-09-24 13:27:35,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:35,197 INFO Out dated connection ,size=0 + +2025-09-24 13:27:35,198 INFO Connection check task end + +2025-09-24 13:27:36,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:38,198 INFO Connection check task start + +2025-09-24 13:27:38,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:38,198 INFO Out dated connection ,size=0 + +2025-09-24 13:27:38,199 INFO Connection check task end + +2025-09-24 13:27:39,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:41,201 INFO Connection check task start + +2025-09-24 13:27:41,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:41,201 INFO Out dated connection ,size=0 + +2025-09-24 13:27:41,201 INFO Connection check task end + +2025-09-24 13:27:42,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:44,201 INFO Connection check task start + +2025-09-24 13:27:44,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:44,202 INFO Out dated connection ,size=0 + +2025-09-24 13:27:44,202 INFO Connection check task end + +2025-09-24 13:27:45,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:47,204 INFO Connection check task start + +2025-09-24 13:27:47,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:47,204 INFO Out dated connection ,size=0 + +2025-09-24 13:27:47,204 INFO Connection check task end + +2025-09-24 13:27:48,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:50,205 INFO Connection check task start + +2025-09-24 13:27:50,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:50,205 INFO Out dated connection ,size=0 + +2025-09-24 13:27:50,205 INFO Connection check task end + +2025-09-24 13:27:51,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:53,207 INFO Connection check task start + +2025-09-24 13:27:53,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:53,207 INFO Out dated connection ,size=0 + +2025-09-24 13:27:53,208 INFO Connection check task end + +2025-09-24 13:27:54,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:56,209 INFO Connection check task start + +2025-09-24 13:27:56,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:56,209 INFO Out dated connection ,size=0 + +2025-09-24 13:27:56,209 INFO Connection check task end + +2025-09-24 13:27:57,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:27:59,211 INFO Connection check task start + +2025-09-24 13:27:59,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:27:59,212 INFO Out dated connection ,size=0 + +2025-09-24 13:27:59,212 INFO Connection check task end + +2025-09-24 13:28:00,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:02,214 INFO Connection check task start + +2025-09-24 13:28:02,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:02,214 INFO Out dated connection ,size=0 + +2025-09-24 13:28:02,214 INFO Connection check task end + +2025-09-24 13:28:03,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:05,216 INFO Connection check task start + +2025-09-24 13:28:05,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:05,216 INFO Out dated connection ,size=0 + +2025-09-24 13:28:05,216 INFO Connection check task end + +2025-09-24 13:28:06,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:08,217 INFO Connection check task start + +2025-09-24 13:28:08,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:08,217 INFO Out dated connection ,size=0 + +2025-09-24 13:28:08,217 INFO Connection check task end + +2025-09-24 13:28:09,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:11,218 INFO Connection check task start + +2025-09-24 13:28:11,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:11,218 INFO Out dated connection ,size=0 + +2025-09-24 13:28:11,218 INFO Connection check task end + +2025-09-24 13:28:12,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:14,219 INFO Connection check task start + +2025-09-24 13:28:14,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:14,220 INFO Out dated connection ,size=0 + +2025-09-24 13:28:14,220 INFO Connection check task end + +2025-09-24 13:28:15,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:17,220 INFO Connection check task start + +2025-09-24 13:28:17,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:17,220 INFO Out dated connection ,size=0 + +2025-09-24 13:28:17,220 INFO Connection check task end + +2025-09-24 13:28:18,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:20,220 INFO Connection check task start + +2025-09-24 13:28:20,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:20,220 INFO Out dated connection ,size=0 + +2025-09-24 13:28:20,221 INFO Connection check task end + +2025-09-24 13:28:21,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:23,221 INFO Connection check task start + +2025-09-24 13:28:23,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:23,221 INFO Out dated connection ,size=0 + +2025-09-24 13:28:23,221 INFO Connection check task end + +2025-09-24 13:28:24,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:26,221 INFO Connection check task start + +2025-09-24 13:28:26,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:26,221 INFO Out dated connection ,size=0 + +2025-09-24 13:28:26,221 INFO Connection check task end + +2025-09-24 13:28:27,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:29,223 INFO Connection check task start + +2025-09-24 13:28:29,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:29,223 INFO Out dated connection ,size=0 + +2025-09-24 13:28:29,223 INFO Connection check task end + +2025-09-24 13:28:30,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:32,225 INFO Connection check task start + +2025-09-24 13:28:32,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:32,225 INFO Out dated connection ,size=0 + +2025-09-24 13:28:32,225 INFO Connection check task end + +2025-09-24 13:28:33,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:35,226 INFO Connection check task start + +2025-09-24 13:28:35,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:35,227 INFO Out dated connection ,size=0 + +2025-09-24 13:28:35,227 INFO Connection check task end + +2025-09-24 13:28:36,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:38,227 INFO Connection check task start + +2025-09-24 13:28:38,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:38,227 INFO Out dated connection ,size=0 + +2025-09-24 13:28:38,227 INFO Connection check task end + +2025-09-24 13:28:39,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:41,229 INFO Connection check task start + +2025-09-24 13:28:41,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:41,229 INFO Out dated connection ,size=0 + +2025-09-24 13:28:41,229 INFO Connection check task end + +2025-09-24 13:28:42,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:44,229 INFO Connection check task start + +2025-09-24 13:28:44,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:44,230 INFO Out dated connection ,size=0 + +2025-09-24 13:28:44,230 INFO Connection check task end + +2025-09-24 13:28:45,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:47,230 INFO Connection check task start + +2025-09-24 13:28:47,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:47,230 INFO Out dated connection ,size=0 + +2025-09-24 13:28:47,230 INFO Connection check task end + +2025-09-24 13:28:48,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:50,231 INFO Connection check task start + +2025-09-24 13:28:50,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:50,232 INFO Out dated connection ,size=0 + +2025-09-24 13:28:50,232 INFO Connection check task end + +2025-09-24 13:28:51,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:53,233 INFO Connection check task start + +2025-09-24 13:28:53,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:53,233 INFO Out dated connection ,size=0 + +2025-09-24 13:28:53,233 INFO Connection check task end + +2025-09-24 13:28:54,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:56,233 INFO Connection check task start + +2025-09-24 13:28:56,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:56,234 INFO Out dated connection ,size=0 + +2025-09-24 13:28:56,234 INFO Connection check task end + +2025-09-24 13:28:57,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:28:59,234 INFO Connection check task start + +2025-09-24 13:28:59,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:28:59,235 INFO Out dated connection ,size=0 + +2025-09-24 13:28:59,235 INFO Connection check task end + +2025-09-24 13:29:00,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:02,235 INFO Connection check task start + +2025-09-24 13:29:02,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:02,235 INFO Out dated connection ,size=0 + +2025-09-24 13:29:02,235 INFO Connection check task end + +2025-09-24 13:29:03,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:05,237 INFO Connection check task start + +2025-09-24 13:29:05,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:05,237 INFO Out dated connection ,size=0 + +2025-09-24 13:29:05,237 INFO Connection check task end + +2025-09-24 13:29:06,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:08,238 INFO Connection check task start + +2025-09-24 13:29:08,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:08,238 INFO Out dated connection ,size=0 + +2025-09-24 13:29:08,238 INFO Connection check task end + +2025-09-24 13:29:09,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:11,239 INFO Connection check task start + +2025-09-24 13:29:11,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:11,239 INFO Out dated connection ,size=0 + +2025-09-24 13:29:11,239 INFO Connection check task end + +2025-09-24 13:29:12,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:14,241 INFO Connection check task start + +2025-09-24 13:29:14,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:14,241 INFO Out dated connection ,size=0 + +2025-09-24 13:29:14,241 INFO Connection check task end + +2025-09-24 13:29:15,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:17,242 INFO Connection check task start + +2025-09-24 13:29:17,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:17,242 INFO Out dated connection ,size=0 + +2025-09-24 13:29:17,242 INFO Connection check task end + +2025-09-24 13:29:18,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:20,242 INFO Connection check task start + +2025-09-24 13:29:20,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:20,242 INFO Out dated connection ,size=0 + +2025-09-24 13:29:20,242 INFO Connection check task end + +2025-09-24 13:29:21,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:23,242 INFO Connection check task start + +2025-09-24 13:29:23,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:23,243 INFO Out dated connection ,size=0 + +2025-09-24 13:29:23,243 INFO Connection check task end + +2025-09-24 13:29:24,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:26,243 INFO Connection check task start + +2025-09-24 13:29:26,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:26,243 INFO Out dated connection ,size=0 + +2025-09-24 13:29:26,243 INFO Connection check task end + +2025-09-24 13:29:27,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:29,245 INFO Connection check task start + +2025-09-24 13:29:29,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:29,245 INFO Out dated connection ,size=0 + +2025-09-24 13:29:29,245 INFO Connection check task end + +2025-09-24 13:29:30,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:32,247 INFO Connection check task start + +2025-09-24 13:29:32,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:32,248 INFO Out dated connection ,size=0 + +2025-09-24 13:29:32,248 INFO Connection check task end + +2025-09-24 13:29:33,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:35,248 INFO Connection check task start + +2025-09-24 13:29:35,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:35,248 INFO Out dated connection ,size=0 + +2025-09-24 13:29:35,248 INFO Connection check task end + +2025-09-24 13:29:36,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:38,248 INFO Connection check task start + +2025-09-24 13:29:38,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:38,249 INFO Out dated connection ,size=0 + +2025-09-24 13:29:38,249 INFO Connection check task end + +2025-09-24 13:29:39,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:41,249 INFO Connection check task start + +2025-09-24 13:29:41,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:41,249 INFO Out dated connection ,size=0 + +2025-09-24 13:29:41,249 INFO Connection check task end + +2025-09-24 13:29:42,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:44,249 INFO Connection check task start + +2025-09-24 13:29:44,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:44,250 INFO Out dated connection ,size=0 + +2025-09-24 13:29:44,250 INFO Connection check task end + +2025-09-24 13:29:45,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:47,250 INFO Connection check task start + +2025-09-24 13:29:47,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:47,250 INFO Out dated connection ,size=0 + +2025-09-24 13:29:47,250 INFO Connection check task end + +2025-09-24 13:29:48,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:50,252 INFO Connection check task start + +2025-09-24 13:29:50,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:50,254 INFO Out dated connection ,size=0 + +2025-09-24 13:29:50,254 INFO Connection check task end + +2025-09-24 13:29:51,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:53,254 INFO Connection check task start + +2025-09-24 13:29:53,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:53,255 INFO Out dated connection ,size=0 + +2025-09-24 13:29:53,255 INFO Connection check task end + +2025-09-24 13:29:54,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:56,257 INFO Connection check task start + +2025-09-24 13:29:56,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:56,257 INFO Out dated connection ,size=0 + +2025-09-24 13:29:56,257 INFO Connection check task end + +2025-09-24 13:29:57,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:29:59,259 INFO Connection check task start + +2025-09-24 13:29:59,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:29:59,259 INFO Out dated connection ,size=0 + +2025-09-24 13:29:59,259 INFO Connection check task end + +2025-09-24 13:30:00,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:02,261 INFO Connection check task start + +2025-09-24 13:30:02,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:02,261 INFO Out dated connection ,size=0 + +2025-09-24 13:30:02,261 INFO Connection check task end + +2025-09-24 13:30:03,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:05,262 INFO Connection check task start + +2025-09-24 13:30:05,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:05,262 INFO Out dated connection ,size=0 + +2025-09-24 13:30:05,262 INFO Connection check task end + +2025-09-24 13:30:06,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:08,264 INFO Connection check task start + +2025-09-24 13:30:08,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:08,264 INFO Out dated connection ,size=0 + +2025-09-24 13:30:08,264 INFO Connection check task end + +2025-09-24 13:30:09,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:11,265 INFO Connection check task start + +2025-09-24 13:30:11,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:11,266 INFO Out dated connection ,size=0 + +2025-09-24 13:30:11,266 INFO Connection check task end + +2025-09-24 13:30:12,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:14,266 INFO Connection check task start + +2025-09-24 13:30:14,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:14,266 INFO Out dated connection ,size=0 + +2025-09-24 13:30:14,266 INFO Connection check task end + +2025-09-24 13:30:15,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:17,268 INFO Connection check task start + +2025-09-24 13:30:17,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:17,268 INFO Out dated connection ,size=0 + +2025-09-24 13:30:17,268 INFO Connection check task end + +2025-09-24 13:30:18,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:20,268 INFO Connection check task start + +2025-09-24 13:30:20,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:20,269 INFO Out dated connection ,size=0 + +2025-09-24 13:30:20,269 INFO Connection check task end + +2025-09-24 13:30:21,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:23,270 INFO Connection check task start + +2025-09-24 13:30:23,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:23,271 INFO Out dated connection ,size=0 + +2025-09-24 13:30:23,271 INFO Connection check task end + +2025-09-24 13:30:24,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:26,271 INFO Connection check task start + +2025-09-24 13:30:26,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:26,271 INFO Out dated connection ,size=0 + +2025-09-24 13:30:26,271 INFO Connection check task end + +2025-09-24 13:30:27,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:29,274 INFO Connection check task start + +2025-09-24 13:30:29,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:29,274 INFO Out dated connection ,size=0 + +2025-09-24 13:30:29,274 INFO Connection check task end + +2025-09-24 13:30:30,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:32,276 INFO Connection check task start + +2025-09-24 13:30:32,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:32,276 INFO Out dated connection ,size=0 + +2025-09-24 13:30:32,276 INFO Connection check task end + +2025-09-24 13:30:33,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:35,280 INFO Connection check task start + +2025-09-24 13:30:35,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:35,280 INFO Out dated connection ,size=0 + +2025-09-24 13:30:35,280 INFO Connection check task end + +2025-09-24 13:30:36,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:38,282 INFO Connection check task start + +2025-09-24 13:30:38,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:38,283 INFO Out dated connection ,size=0 + +2025-09-24 13:30:38,283 INFO Connection check task end + +2025-09-24 13:30:39,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:41,285 INFO Connection check task start + +2025-09-24 13:30:41,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:41,285 INFO Out dated connection ,size=0 + +2025-09-24 13:30:41,285 INFO Connection check task end + +2025-09-24 13:30:42,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:44,287 INFO Connection check task start + +2025-09-24 13:30:44,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:44,287 INFO Out dated connection ,size=0 + +2025-09-24 13:30:44,287 INFO Connection check task end + +2025-09-24 13:30:45,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:47,288 INFO Connection check task start + +2025-09-24 13:30:47,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:47,288 INFO Out dated connection ,size=0 + +2025-09-24 13:30:47,288 INFO Connection check task end + +2025-09-24 13:30:48,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:50,289 INFO Connection check task start + +2025-09-24 13:30:50,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:50,289 INFO Out dated connection ,size=0 + +2025-09-24 13:30:50,289 INFO Connection check task end + +2025-09-24 13:30:51,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:53,289 INFO Connection check task start + +2025-09-24 13:30:53,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:53,290 INFO Out dated connection ,size=0 + +2025-09-24 13:30:53,290 INFO Connection check task end + +2025-09-24 13:30:54,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:56,291 INFO Connection check task start + +2025-09-24 13:30:56,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:56,292 INFO Out dated connection ,size=0 + +2025-09-24 13:30:56,292 INFO Connection check task end + +2025-09-24 13:30:57,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:30:59,292 INFO Connection check task start + +2025-09-24 13:30:59,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:30:59,292 INFO Out dated connection ,size=0 + +2025-09-24 13:30:59,292 INFO Connection check task end + +2025-09-24 13:31:00,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:02,292 INFO Connection check task start + +2025-09-24 13:31:02,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:02,293 INFO Out dated connection ,size=0 + +2025-09-24 13:31:02,293 INFO Connection check task end + +2025-09-24 13:31:03,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:05,295 INFO Connection check task start + +2025-09-24 13:31:05,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:05,295 INFO Out dated connection ,size=0 + +2025-09-24 13:31:05,295 INFO Connection check task end + +2025-09-24 13:31:06,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:08,296 INFO Connection check task start + +2025-09-24 13:31:08,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:08,296 INFO Out dated connection ,size=0 + +2025-09-24 13:31:08,296 INFO Connection check task end + +2025-09-24 13:31:09,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:11,298 INFO Connection check task start + +2025-09-24 13:31:11,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:11,298 INFO Out dated connection ,size=0 + +2025-09-24 13:31:11,299 INFO Connection check task end + +2025-09-24 13:31:12,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:14,300 INFO Connection check task start + +2025-09-24 13:31:14,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:14,300 INFO Out dated connection ,size=0 + +2025-09-24 13:31:14,300 INFO Connection check task end + +2025-09-24 13:31:15,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:17,302 INFO Connection check task start + +2025-09-24 13:31:17,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:17,302 INFO Out dated connection ,size=0 + +2025-09-24 13:31:17,302 INFO Connection check task end + +2025-09-24 13:31:18,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:20,304 INFO Connection check task start + +2025-09-24 13:31:20,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:20,310 INFO Out dated connection ,size=0 + +2025-09-24 13:31:20,311 INFO Connection check task end + +2025-09-24 13:31:21,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:23,312 INFO Connection check task start + +2025-09-24 13:31:23,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:23,312 INFO Out dated connection ,size=0 + +2025-09-24 13:31:23,312 INFO Connection check task end + +2025-09-24 13:31:24,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:26,314 INFO Connection check task start + +2025-09-24 13:31:26,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:26,314 INFO Out dated connection ,size=0 + +2025-09-24 13:31:26,314 INFO Connection check task end + +2025-09-24 13:31:27,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:29,316 INFO Connection check task start + +2025-09-24 13:31:29,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:29,316 INFO Out dated connection ,size=0 + +2025-09-24 13:31:29,316 INFO Connection check task end + +2025-09-24 13:31:30,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:32,318 INFO Connection check task start + +2025-09-24 13:31:32,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:32,318 INFO Out dated connection ,size=0 + +2025-09-24 13:31:32,318 INFO Connection check task end + +2025-09-24 13:31:33,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:35,319 INFO Connection check task start + +2025-09-24 13:31:35,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:35,319 INFO Out dated connection ,size=0 + +2025-09-24 13:31:35,319 INFO Connection check task end + +2025-09-24 13:31:36,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:38,321 INFO Connection check task start + +2025-09-24 13:31:38,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:38,321 INFO Out dated connection ,size=0 + +2025-09-24 13:31:38,321 INFO Connection check task end + +2025-09-24 13:31:39,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:41,323 INFO Connection check task start + +2025-09-24 13:31:41,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:41,323 INFO Out dated connection ,size=0 + +2025-09-24 13:31:41,323 INFO Connection check task end + +2025-09-24 13:31:42,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:44,324 INFO Connection check task start + +2025-09-24 13:31:44,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:44,324 INFO Out dated connection ,size=0 + +2025-09-24 13:31:44,324 INFO Connection check task end + +2025-09-24 13:31:45,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:47,325 INFO Connection check task start + +2025-09-24 13:31:47,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:47,325 INFO Out dated connection ,size=0 + +2025-09-24 13:31:47,325 INFO Connection check task end + +2025-09-24 13:31:48,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:50,328 INFO Connection check task start + +2025-09-24 13:31:50,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:50,328 INFO Out dated connection ,size=0 + +2025-09-24 13:31:50,328 INFO Connection check task end + +2025-09-24 13:31:51,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:53,328 INFO Connection check task start + +2025-09-24 13:31:53,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:53,328 INFO Out dated connection ,size=0 + +2025-09-24 13:31:53,328 INFO Connection check task end + +2025-09-24 13:31:54,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:56,329 INFO Connection check task start + +2025-09-24 13:31:56,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:56,329 INFO Out dated connection ,size=0 + +2025-09-24 13:31:56,329 INFO Connection check task end + +2025-09-24 13:31:57,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:31:59,330 INFO Connection check task start + +2025-09-24 13:31:59,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:31:59,330 INFO Out dated connection ,size=0 + +2025-09-24 13:31:59,330 INFO Connection check task end + +2025-09-24 13:32:00,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:02,331 INFO Connection check task start + +2025-09-24 13:32:02,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:02,332 INFO Out dated connection ,size=0 + +2025-09-24 13:32:02,332 INFO Connection check task end + +2025-09-24 13:32:03,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:05,332 INFO Connection check task start + +2025-09-24 13:32:05,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:05,332 INFO Out dated connection ,size=0 + +2025-09-24 13:32:05,332 INFO Connection check task end + +2025-09-24 13:32:06,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:08,334 INFO Connection check task start + +2025-09-24 13:32:08,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:08,335 INFO Out dated connection ,size=0 + +2025-09-24 13:32:08,335 INFO Connection check task end + +2025-09-24 13:32:09,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:11,336 INFO Connection check task start + +2025-09-24 13:32:11,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:11,336 INFO Out dated connection ,size=0 + +2025-09-24 13:32:11,336 INFO Connection check task end + +2025-09-24 13:32:12,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:14,337 INFO Connection check task start + +2025-09-24 13:32:14,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:14,338 INFO Out dated connection ,size=0 + +2025-09-24 13:32:14,338 INFO Connection check task end + +2025-09-24 13:32:15,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:17,338 INFO Connection check task start + +2025-09-24 13:32:17,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:17,338 INFO Out dated connection ,size=0 + +2025-09-24 13:32:17,338 INFO Connection check task end + +2025-09-24 13:32:18,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:20,339 INFO Connection check task start + +2025-09-24 13:32:20,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:20,339 INFO Out dated connection ,size=0 + +2025-09-24 13:32:20,339 INFO Connection check task end + +2025-09-24 13:32:21,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:23,339 INFO Connection check task start + +2025-09-24 13:32:23,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:23,339 INFO Out dated connection ,size=0 + +2025-09-24 13:32:23,339 INFO Connection check task end + +2025-09-24 13:32:24,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:26,341 INFO Connection check task start + +2025-09-24 13:32:26,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:26,341 INFO Out dated connection ,size=0 + +2025-09-24 13:32:26,341 INFO Connection check task end + +2025-09-24 13:32:27,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:29,341 INFO Connection check task start + +2025-09-24 13:32:29,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:29,341 INFO Out dated connection ,size=0 + +2025-09-24 13:32:29,341 INFO Connection check task end + +2025-09-24 13:32:30,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:32,341 INFO Connection check task start + +2025-09-24 13:32:32,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:32,342 INFO Out dated connection ,size=0 + +2025-09-24 13:32:32,342 INFO Connection check task end + +2025-09-24 13:32:33,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:35,344 INFO Connection check task start + +2025-09-24 13:32:35,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:35,344 INFO Out dated connection ,size=0 + +2025-09-24 13:32:35,344 INFO Connection check task end + +2025-09-24 13:32:36,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:38,345 INFO Connection check task start + +2025-09-24 13:32:38,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:38,346 INFO Out dated connection ,size=0 + +2025-09-24 13:32:38,346 INFO Connection check task end + +2025-09-24 13:32:39,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:41,348 INFO Connection check task start + +2025-09-24 13:32:41,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:41,348 INFO Out dated connection ,size=0 + +2025-09-24 13:32:41,348 INFO Connection check task end + +2025-09-24 13:32:42,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:44,348 INFO Connection check task start + +2025-09-24 13:32:44,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:44,348 INFO Out dated connection ,size=0 + +2025-09-24 13:32:44,348 INFO Connection check task end + +2025-09-24 13:32:45,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:47,350 INFO Connection check task start + +2025-09-24 13:32:47,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:47,350 INFO Out dated connection ,size=0 + +2025-09-24 13:32:47,350 INFO Connection check task end + +2025-09-24 13:32:48,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:50,350 INFO Connection check task start + +2025-09-24 13:32:50,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:50,350 INFO Out dated connection ,size=0 + +2025-09-24 13:32:50,350 INFO Connection check task end + +2025-09-24 13:32:51,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:53,351 INFO Connection check task start + +2025-09-24 13:32:53,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:53,351 INFO Out dated connection ,size=0 + +2025-09-24 13:32:53,351 INFO Connection check task end + +2025-09-24 13:32:54,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:56,351 INFO Connection check task start + +2025-09-24 13:32:56,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:56,351 INFO Out dated connection ,size=0 + +2025-09-24 13:32:56,351 INFO Connection check task end + +2025-09-24 13:32:57,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:32:59,352 INFO Connection check task start + +2025-09-24 13:32:59,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:32:59,352 INFO Out dated connection ,size=0 + +2025-09-24 13:32:59,352 INFO Connection check task end + +2025-09-24 13:33:00,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:02,353 INFO Connection check task start + +2025-09-24 13:33:02,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:02,353 INFO Out dated connection ,size=0 + +2025-09-24 13:33:02,353 INFO Connection check task end + +2025-09-24 13:33:03,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:05,356 INFO Connection check task start + +2025-09-24 13:33:05,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:05,356 INFO Out dated connection ,size=0 + +2025-09-24 13:33:05,356 INFO Connection check task end + +2025-09-24 13:33:06,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:08,357 INFO Connection check task start + +2025-09-24 13:33:08,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:08,357 INFO Out dated connection ,size=0 + +2025-09-24 13:33:08,357 INFO Connection check task end + +2025-09-24 13:33:09,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:11,359 INFO Connection check task start + +2025-09-24 13:33:11,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:11,359 INFO Out dated connection ,size=0 + +2025-09-24 13:33:11,359 INFO Connection check task end + +2025-09-24 13:33:12,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:14,359 INFO Connection check task start + +2025-09-24 13:33:14,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:14,359 INFO Out dated connection ,size=0 + +2025-09-24 13:33:14,359 INFO Connection check task end + +2025-09-24 13:33:15,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:17,360 INFO Connection check task start + +2025-09-24 13:33:17,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:17,360 INFO Out dated connection ,size=0 + +2025-09-24 13:33:17,360 INFO Connection check task end + +2025-09-24 13:33:18,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:20,360 INFO Connection check task start + +2025-09-24 13:33:20,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:20,360 INFO Out dated connection ,size=0 + +2025-09-24 13:33:20,360 INFO Connection check task end + +2025-09-24 13:33:21,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:23,362 INFO Connection check task start + +2025-09-24 13:33:23,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:23,362 INFO Out dated connection ,size=0 + +2025-09-24 13:33:23,362 INFO Connection check task end + +2025-09-24 13:33:24,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:26,363 INFO Connection check task start + +2025-09-24 13:33:26,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:26,363 INFO Out dated connection ,size=0 + +2025-09-24 13:33:26,363 INFO Connection check task end + +2025-09-24 13:33:27,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:29,363 INFO Connection check task start + +2025-09-24 13:33:29,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:29,364 INFO Out dated connection ,size=0 + +2025-09-24 13:33:29,364 INFO Connection check task end + +2025-09-24 13:33:30,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:32,364 INFO Connection check task start + +2025-09-24 13:33:32,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:32,364 INFO Out dated connection ,size=0 + +2025-09-24 13:33:32,364 INFO Connection check task end + +2025-09-24 13:33:33,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:35,365 INFO Connection check task start + +2025-09-24 13:33:35,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:35,365 INFO Out dated connection ,size=0 + +2025-09-24 13:33:35,365 INFO Connection check task end + +2025-09-24 13:33:36,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:38,367 INFO Connection check task start + +2025-09-24 13:33:38,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:38,367 INFO Out dated connection ,size=0 + +2025-09-24 13:33:38,367 INFO Connection check task end + +2025-09-24 13:33:39,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:41,369 INFO Connection check task start + +2025-09-24 13:33:41,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:41,370 INFO Out dated connection ,size=0 + +2025-09-24 13:33:41,370 INFO Connection check task end + +2025-09-24 13:33:42,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:44,371 INFO Connection check task start + +2025-09-24 13:33:44,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:44,371 INFO Out dated connection ,size=0 + +2025-09-24 13:33:44,371 INFO Connection check task end + +2025-09-24 13:33:45,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:47,371 INFO Connection check task start + +2025-09-24 13:33:47,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:47,372 INFO Out dated connection ,size=0 + +2025-09-24 13:33:47,372 INFO Connection check task end + +2025-09-24 13:33:48,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:50,372 INFO Connection check task start + +2025-09-24 13:33:50,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:50,372 INFO Out dated connection ,size=0 + +2025-09-24 13:33:50,372 INFO Connection check task end + +2025-09-24 13:33:51,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:53,373 INFO Connection check task start + +2025-09-24 13:33:53,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:53,373 INFO Out dated connection ,size=0 + +2025-09-24 13:33:53,373 INFO Connection check task end + +2025-09-24 13:33:54,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:56,374 INFO Connection check task start + +2025-09-24 13:33:56,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:56,374 INFO Out dated connection ,size=0 + +2025-09-24 13:33:56,374 INFO Connection check task end + +2025-09-24 13:33:57,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:33:59,376 INFO Connection check task start + +2025-09-24 13:33:59,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:33:59,376 INFO Out dated connection ,size=0 + +2025-09-24 13:33:59,376 INFO Connection check task end + +2025-09-24 13:34:00,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:02,376 INFO Connection check task start + +2025-09-24 13:34:02,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:02,376 INFO Out dated connection ,size=0 + +2025-09-24 13:34:02,376 INFO Connection check task end + +2025-09-24 13:34:03,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:05,377 INFO Connection check task start + +2025-09-24 13:34:05,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:05,377 INFO Out dated connection ,size=0 + +2025-09-24 13:34:05,377 INFO Connection check task end + +2025-09-24 13:34:06,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:08,379 INFO Connection check task start + +2025-09-24 13:34:08,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:08,379 INFO Out dated connection ,size=0 + +2025-09-24 13:34:08,379 INFO Connection check task end + +2025-09-24 13:34:09,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:11,379 INFO Connection check task start + +2025-09-24 13:34:11,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:11,379 INFO Out dated connection ,size=0 + +2025-09-24 13:34:11,379 INFO Connection check task end + +2025-09-24 13:34:12,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:14,380 INFO Connection check task start + +2025-09-24 13:34:14,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:14,380 INFO Out dated connection ,size=0 + +2025-09-24 13:34:14,380 INFO Connection check task end + +2025-09-24 13:34:15,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:17,380 INFO Connection check task start + +2025-09-24 13:34:17,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:17,380 INFO Out dated connection ,size=0 + +2025-09-24 13:34:17,380 INFO Connection check task end + +2025-09-24 13:34:18,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:20,381 INFO Connection check task start + +2025-09-24 13:34:20,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:20,381 INFO Out dated connection ,size=0 + +2025-09-24 13:34:20,381 INFO Connection check task end + +2025-09-24 13:34:21,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:23,383 INFO Connection check task start + +2025-09-24 13:34:23,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:23,383 INFO Out dated connection ,size=0 + +2025-09-24 13:34:23,383 INFO Connection check task end + +2025-09-24 13:34:24,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:26,386 INFO Connection check task start + +2025-09-24 13:34:26,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:26,386 INFO Out dated connection ,size=0 + +2025-09-24 13:34:26,386 INFO Connection check task end + +2025-09-24 13:34:27,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:29,386 INFO Connection check task start + +2025-09-24 13:34:29,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:29,386 INFO Out dated connection ,size=0 + +2025-09-24 13:34:29,387 INFO Connection check task end + +2025-09-24 13:34:30,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:32,387 INFO Connection check task start + +2025-09-24 13:34:32,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:32,387 INFO Out dated connection ,size=0 + +2025-09-24 13:34:32,387 INFO Connection check task end + +2025-09-24 13:34:33,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:35,389 INFO Connection check task start + +2025-09-24 13:34:35,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:35,389 INFO Out dated connection ,size=0 + +2025-09-24 13:34:35,390 INFO Connection check task end + +2025-09-24 13:34:36,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:38,391 INFO Connection check task start + +2025-09-24 13:34:38,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:38,391 INFO Out dated connection ,size=0 + +2025-09-24 13:34:38,391 INFO Connection check task end + +2025-09-24 13:34:39,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:41,392 INFO Connection check task start + +2025-09-24 13:34:41,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:41,392 INFO Out dated connection ,size=0 + +2025-09-24 13:34:41,392 INFO Connection check task end + +2025-09-24 13:34:42,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:44,395 INFO Connection check task start + +2025-09-24 13:34:44,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:44,395 INFO Out dated connection ,size=0 + +2025-09-24 13:34:44,395 INFO Connection check task end + +2025-09-24 13:34:45,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:47,397 INFO Connection check task start + +2025-09-24 13:34:47,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:47,397 INFO Out dated connection ,size=0 + +2025-09-24 13:34:47,397 INFO Connection check task end + +2025-09-24 13:34:48,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:50,398 INFO Connection check task start + +2025-09-24 13:34:50,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:50,398 INFO Out dated connection ,size=0 + +2025-09-24 13:34:50,398 INFO Connection check task end + +2025-09-24 13:34:51,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:53,400 INFO Connection check task start + +2025-09-24 13:34:53,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:53,400 INFO Out dated connection ,size=0 + +2025-09-24 13:34:53,400 INFO Connection check task end + +2025-09-24 13:34:54,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:56,402 INFO Connection check task start + +2025-09-24 13:34:56,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:56,402 INFO Out dated connection ,size=0 + +2025-09-24 13:34:56,402 INFO Connection check task end + +2025-09-24 13:34:57,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:34:59,402 INFO Connection check task start + +2025-09-24 13:34:59,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:34:59,403 INFO Out dated connection ,size=0 + +2025-09-24 13:34:59,403 INFO Connection check task end + +2025-09-24 13:35:00,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:02,404 INFO Connection check task start + +2025-09-24 13:35:02,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:02,404 INFO Out dated connection ,size=0 + +2025-09-24 13:35:02,404 INFO Connection check task end + +2025-09-24 13:35:03,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:05,406 INFO Connection check task start + +2025-09-24 13:35:05,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:05,407 INFO Out dated connection ,size=0 + +2025-09-24 13:35:05,407 INFO Connection check task end + +2025-09-24 13:35:06,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:08,407 INFO Connection check task start + +2025-09-24 13:35:08,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:08,408 INFO Out dated connection ,size=0 + +2025-09-24 13:35:08,408 INFO Connection check task end + +2025-09-24 13:35:09,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:11,408 INFO Connection check task start + +2025-09-24 13:35:11,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:11,408 INFO Out dated connection ,size=0 + +2025-09-24 13:35:11,408 INFO Connection check task end + +2025-09-24 13:35:12,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:14,409 INFO Connection check task start + +2025-09-24 13:35:14,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:14,409 INFO Out dated connection ,size=0 + +2025-09-24 13:35:14,409 INFO Connection check task end + +2025-09-24 13:35:15,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:17,410 INFO Connection check task start + +2025-09-24 13:35:17,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:17,410 INFO Out dated connection ,size=0 + +2025-09-24 13:35:17,410 INFO Connection check task end + +2025-09-24 13:35:18,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:20,410 INFO Connection check task start + +2025-09-24 13:35:20,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:20,411 INFO Out dated connection ,size=0 + +2025-09-24 13:35:20,411 INFO Connection check task end + +2025-09-24 13:35:21,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:23,412 INFO Connection check task start + +2025-09-24 13:35:23,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:23,412 INFO Out dated connection ,size=0 + +2025-09-24 13:35:23,412 INFO Connection check task end + +2025-09-24 13:35:24,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:26,413 INFO Connection check task start + +2025-09-24 13:35:26,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:26,413 INFO Out dated connection ,size=0 + +2025-09-24 13:35:26,413 INFO Connection check task end + +2025-09-24 13:35:27,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:29,414 INFO Connection check task start + +2025-09-24 13:35:29,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:29,414 INFO Out dated connection ,size=0 + +2025-09-24 13:35:29,414 INFO Connection check task end + +2025-09-24 13:35:30,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:32,415 INFO Connection check task start + +2025-09-24 13:35:32,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:32,415 INFO Out dated connection ,size=0 + +2025-09-24 13:35:32,415 INFO Connection check task end + +2025-09-24 13:35:33,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:35,415 INFO Connection check task start + +2025-09-24 13:35:35,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:35,415 INFO Out dated connection ,size=0 + +2025-09-24 13:35:35,415 INFO Connection check task end + +2025-09-24 13:35:36,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:38,417 INFO Connection check task start + +2025-09-24 13:35:38,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:38,417 INFO Out dated connection ,size=0 + +2025-09-24 13:35:38,417 INFO Connection check task end + +2025-09-24 13:35:39,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:41,419 INFO Connection check task start + +2025-09-24 13:35:41,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:41,419 INFO Out dated connection ,size=0 + +2025-09-24 13:35:41,419 INFO Connection check task end + +2025-09-24 13:35:42,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:44,419 INFO Connection check task start + +2025-09-24 13:35:44,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:44,420 INFO Out dated connection ,size=0 + +2025-09-24 13:35:44,420 INFO Connection check task end + +2025-09-24 13:35:45,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:47,421 INFO Connection check task start + +2025-09-24 13:35:47,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:47,421 INFO Out dated connection ,size=0 + +2025-09-24 13:35:47,421 INFO Connection check task end + +2025-09-24 13:35:48,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:50,423 INFO Connection check task start + +2025-09-24 13:35:50,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:50,423 INFO Out dated connection ,size=0 + +2025-09-24 13:35:50,423 INFO Connection check task end + +2025-09-24 13:35:51,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:53,424 INFO Connection check task start + +2025-09-24 13:35:53,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:53,424 INFO Out dated connection ,size=0 + +2025-09-24 13:35:53,424 INFO Connection check task end + +2025-09-24 13:35:54,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:56,424 INFO Connection check task start + +2025-09-24 13:35:56,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:56,424 INFO Out dated connection ,size=0 + +2025-09-24 13:35:56,425 INFO Connection check task end + +2025-09-24 13:35:57,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:35:59,425 INFO Connection check task start + +2025-09-24 13:35:59,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:35:59,425 INFO Out dated connection ,size=0 + +2025-09-24 13:35:59,425 INFO Connection check task end + +2025-09-24 13:36:00,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:02,427 INFO Connection check task start + +2025-09-24 13:36:02,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:02,427 INFO Out dated connection ,size=0 + +2025-09-24 13:36:02,427 INFO Connection check task end + +2025-09-24 13:36:03,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:05,429 INFO Connection check task start + +2025-09-24 13:36:05,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:05,429 INFO Out dated connection ,size=0 + +2025-09-24 13:36:05,429 INFO Connection check task end + +2025-09-24 13:36:06,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:08,430 INFO Connection check task start + +2025-09-24 13:36:08,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:08,430 INFO Out dated connection ,size=0 + +2025-09-24 13:36:08,430 INFO Connection check task end + +2025-09-24 13:36:09,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:11,430 INFO Connection check task start + +2025-09-24 13:36:11,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:11,430 INFO Out dated connection ,size=0 + +2025-09-24 13:36:11,430 INFO Connection check task end + +2025-09-24 13:36:12,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:14,431 INFO Connection check task start + +2025-09-24 13:36:14,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:14,431 INFO Out dated connection ,size=0 + +2025-09-24 13:36:14,431 INFO Connection check task end + +2025-09-24 13:36:15,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:17,432 INFO Connection check task start + +2025-09-24 13:36:17,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:17,432 INFO Out dated connection ,size=0 + +2025-09-24 13:36:17,432 INFO Connection check task end + +2025-09-24 13:36:18,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:20,434 INFO Connection check task start + +2025-09-24 13:36:20,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:20,434 INFO Out dated connection ,size=0 + +2025-09-24 13:36:20,434 INFO Connection check task end + +2025-09-24 13:36:21,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:23,435 INFO Connection check task start + +2025-09-24 13:36:23,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:23,435 INFO Out dated connection ,size=0 + +2025-09-24 13:36:23,435 INFO Connection check task end + +2025-09-24 13:36:24,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:26,436 INFO Connection check task start + +2025-09-24 13:36:26,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:26,436 INFO Out dated connection ,size=0 + +2025-09-24 13:36:26,436 INFO Connection check task end + +2025-09-24 13:36:27,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:29,437 INFO Connection check task start + +2025-09-24 13:36:29,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:29,438 INFO Out dated connection ,size=0 + +2025-09-24 13:36:29,438 INFO Connection check task end + +2025-09-24 13:36:30,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:32,439 INFO Connection check task start + +2025-09-24 13:36:32,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:32,439 INFO Out dated connection ,size=0 + +2025-09-24 13:36:32,439 INFO Connection check task end + +2025-09-24 13:36:33,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:35,440 INFO Connection check task start + +2025-09-24 13:36:35,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:35,440 INFO Out dated connection ,size=0 + +2025-09-24 13:36:35,440 INFO Connection check task end + +2025-09-24 13:36:36,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:38,440 INFO Connection check task start + +2025-09-24 13:36:38,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:38,441 INFO Out dated connection ,size=0 + +2025-09-24 13:36:38,441 INFO Connection check task end + +2025-09-24 13:36:39,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:41,442 INFO Connection check task start + +2025-09-24 13:36:41,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:41,443 INFO Out dated connection ,size=0 + +2025-09-24 13:36:41,443 INFO Connection check task end + +2025-09-24 13:36:42,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:44,443 INFO Connection check task start + +2025-09-24 13:36:44,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:44,444 INFO Out dated connection ,size=0 + +2025-09-24 13:36:44,444 INFO Connection check task end + +2025-09-24 13:36:45,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:47,445 INFO Connection check task start + +2025-09-24 13:36:47,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:47,445 INFO Out dated connection ,size=0 + +2025-09-24 13:36:47,445 INFO Connection check task end + +2025-09-24 13:36:48,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:50,445 INFO Connection check task start + +2025-09-24 13:36:50,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:50,446 INFO Out dated connection ,size=0 + +2025-09-24 13:36:50,446 INFO Connection check task end + +2025-09-24 13:36:51,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:53,446 INFO Connection check task start + +2025-09-24 13:36:53,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:53,446 INFO Out dated connection ,size=0 + +2025-09-24 13:36:53,446 INFO Connection check task end + +2025-09-24 13:36:54,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:56,449 INFO Connection check task start + +2025-09-24 13:36:56,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:56,449 INFO Out dated connection ,size=0 + +2025-09-24 13:36:56,449 INFO Connection check task end + +2025-09-24 13:36:57,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:36:59,451 INFO Connection check task start + +2025-09-24 13:36:59,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:36:59,451 INFO Out dated connection ,size=0 + +2025-09-24 13:36:59,451 INFO Connection check task end + +2025-09-24 13:37:00,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:02,451 INFO Connection check task start + +2025-09-24 13:37:02,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:02,451 INFO Out dated connection ,size=0 + +2025-09-24 13:37:02,451 INFO Connection check task end + +2025-09-24 13:37:03,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:05,452 INFO Connection check task start + +2025-09-24 13:37:05,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:05,452 INFO Out dated connection ,size=0 + +2025-09-24 13:37:05,452 INFO Connection check task end + +2025-09-24 13:37:06,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:08,452 INFO Connection check task start + +2025-09-24 13:37:08,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:08,452 INFO Out dated connection ,size=0 + +2025-09-24 13:37:08,452 INFO Connection check task end + +2025-09-24 13:37:09,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:11,453 INFO Connection check task start + +2025-09-24 13:37:11,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:11,453 INFO Out dated connection ,size=0 + +2025-09-24 13:37:11,453 INFO Connection check task end + +2025-09-24 13:37:12,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:14,453 INFO Connection check task start + +2025-09-24 13:37:14,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:14,453 INFO Out dated connection ,size=0 + +2025-09-24 13:37:14,453 INFO Connection check task end + +2025-09-24 13:37:15,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:17,455 INFO Connection check task start + +2025-09-24 13:37:17,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:17,455 INFO Out dated connection ,size=0 + +2025-09-24 13:37:17,456 INFO Connection check task end + +2025-09-24 13:37:18,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:20,458 INFO Connection check task start + +2025-09-24 13:37:20,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:20,458 INFO Out dated connection ,size=0 + +2025-09-24 13:37:20,458 INFO Connection check task end + +2025-09-24 13:37:21,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:23,460 INFO Connection check task start + +2025-09-24 13:37:23,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:23,460 INFO Out dated connection ,size=0 + +2025-09-24 13:37:23,460 INFO Connection check task end + +2025-09-24 13:37:24,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:26,461 INFO Connection check task start + +2025-09-24 13:37:26,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:26,461 INFO Out dated connection ,size=0 + +2025-09-24 13:37:26,461 INFO Connection check task end + +2025-09-24 13:37:27,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:29,462 INFO Connection check task start + +2025-09-24 13:37:29,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:29,462 INFO Out dated connection ,size=0 + +2025-09-24 13:37:29,462 INFO Connection check task end + +2025-09-24 13:37:30,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:32,462 INFO Connection check task start + +2025-09-24 13:37:32,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:32,463 INFO Out dated connection ,size=0 + +2025-09-24 13:37:32,463 INFO Connection check task end + +2025-09-24 13:37:33,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:35,463 INFO Connection check task start + +2025-09-24 13:37:35,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:35,463 INFO Out dated connection ,size=0 + +2025-09-24 13:37:35,463 INFO Connection check task end + +2025-09-24 13:37:36,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:38,465 INFO Connection check task start + +2025-09-24 13:37:38,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:38,465 INFO Out dated connection ,size=0 + +2025-09-24 13:37:38,466 INFO Connection check task end + +2025-09-24 13:37:39,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:41,466 INFO Connection check task start + +2025-09-24 13:37:41,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:41,466 INFO Out dated connection ,size=0 + +2025-09-24 13:37:41,466 INFO Connection check task end + +2025-09-24 13:37:42,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:44,467 INFO Connection check task start + +2025-09-24 13:37:44,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:44,467 INFO Out dated connection ,size=0 + +2025-09-24 13:37:44,467 INFO Connection check task end + +2025-09-24 13:37:45,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:47,468 INFO Connection check task start + +2025-09-24 13:37:47,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:47,468 INFO Out dated connection ,size=0 + +2025-09-24 13:37:47,468 INFO Connection check task end + +2025-09-24 13:37:48,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:50,468 INFO Connection check task start + +2025-09-24 13:37:50,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:50,469 INFO Out dated connection ,size=0 + +2025-09-24 13:37:50,469 INFO Connection check task end + +2025-09-24 13:37:51,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:53,471 INFO Connection check task start + +2025-09-24 13:37:53,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:53,471 INFO Out dated connection ,size=0 + +2025-09-24 13:37:53,471 INFO Connection check task end + +2025-09-24 13:37:54,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:56,471 INFO Connection check task start + +2025-09-24 13:37:56,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:56,471 INFO Out dated connection ,size=0 + +2025-09-24 13:37:56,472 INFO Connection check task end + +2025-09-24 13:37:57,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:37:59,472 INFO Connection check task start + +2025-09-24 13:37:59,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:37:59,472 INFO Out dated connection ,size=0 + +2025-09-24 13:37:59,472 INFO Connection check task end + +2025-09-24 13:38:00,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:02,473 INFO Connection check task start + +2025-09-24 13:38:02,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:02,473 INFO Out dated connection ,size=0 + +2025-09-24 13:38:02,473 INFO Connection check task end + +2025-09-24 13:38:03,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:05,474 INFO Connection check task start + +2025-09-24 13:38:05,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:05,474 INFO Out dated connection ,size=0 + +2025-09-24 13:38:05,474 INFO Connection check task end + +2025-09-24 13:38:06,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:08,476 INFO Connection check task start + +2025-09-24 13:38:08,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:08,476 INFO Out dated connection ,size=0 + +2025-09-24 13:38:08,476 INFO Connection check task end + +2025-09-24 13:38:09,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:11,477 INFO Connection check task start + +2025-09-24 13:38:11,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:11,477 INFO Out dated connection ,size=0 + +2025-09-24 13:38:11,477 INFO Connection check task end + +2025-09-24 13:38:12,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:14,477 INFO Connection check task start + +2025-09-24 13:38:14,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:14,477 INFO Out dated connection ,size=0 + +2025-09-24 13:38:14,477 INFO Connection check task end + +2025-09-24 13:38:15,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:17,479 INFO Connection check task start + +2025-09-24 13:38:17,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:17,480 INFO Out dated connection ,size=0 + +2025-09-24 13:38:17,480 INFO Connection check task end + +2025-09-24 13:38:18,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:20,480 INFO Connection check task start + +2025-09-24 13:38:20,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:20,480 INFO Out dated connection ,size=0 + +2025-09-24 13:38:20,480 INFO Connection check task end + +2025-09-24 13:38:21,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:23,481 INFO Connection check task start + +2025-09-24 13:38:23,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:23,481 INFO Out dated connection ,size=0 + +2025-09-24 13:38:23,481 INFO Connection check task end + +2025-09-24 13:38:24,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:26,481 INFO Connection check task start + +2025-09-24 13:38:26,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:26,481 INFO Out dated connection ,size=0 + +2025-09-24 13:38:26,481 INFO Connection check task end + +2025-09-24 13:38:27,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:29,483 INFO Connection check task start + +2025-09-24 13:38:29,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:29,483 INFO Out dated connection ,size=0 + +2025-09-24 13:38:29,483 INFO Connection check task end + +2025-09-24 13:38:30,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:32,483 INFO Connection check task start + +2025-09-24 13:38:32,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:32,484 INFO Out dated connection ,size=0 + +2025-09-24 13:38:32,484 INFO Connection check task end + +2025-09-24 13:38:33,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:35,484 INFO Connection check task start + +2025-09-24 13:38:35,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:35,484 INFO Out dated connection ,size=0 + +2025-09-24 13:38:35,484 INFO Connection check task end + +2025-09-24 13:38:36,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:38,486 INFO Connection check task start + +2025-09-24 13:38:38,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:38,486 INFO Out dated connection ,size=0 + +2025-09-24 13:38:38,486 INFO Connection check task end + +2025-09-24 13:38:39,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:41,488 INFO Connection check task start + +2025-09-24 13:38:41,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:41,488 INFO Out dated connection ,size=0 + +2025-09-24 13:38:41,488 INFO Connection check task end + +2025-09-24 13:38:42,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:44,489 INFO Connection check task start + +2025-09-24 13:38:44,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:44,489 INFO Out dated connection ,size=0 + +2025-09-24 13:38:44,489 INFO Connection check task end + +2025-09-24 13:38:45,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:47,491 INFO Connection check task start + +2025-09-24 13:38:47,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:47,491 INFO Out dated connection ,size=0 + +2025-09-24 13:38:47,491 INFO Connection check task end + +2025-09-24 13:38:48,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:50,491 INFO Connection check task start + +2025-09-24 13:38:50,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:50,492 INFO Out dated connection ,size=0 + +2025-09-24 13:38:50,492 INFO Connection check task end + +2025-09-24 13:38:51,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:53,492 INFO Connection check task start + +2025-09-24 13:38:53,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:53,493 INFO Out dated connection ,size=0 + +2025-09-24 13:38:53,493 INFO Connection check task end + +2025-09-24 13:38:54,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:56,494 INFO Connection check task start + +2025-09-24 13:38:56,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:56,494 INFO Out dated connection ,size=0 + +2025-09-24 13:38:56,494 INFO Connection check task end + +2025-09-24 13:38:57,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:38:59,495 INFO Connection check task start + +2025-09-24 13:38:59,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:38:59,495 INFO Out dated connection ,size=0 + +2025-09-24 13:38:59,495 INFO Connection check task end + +2025-09-24 13:39:00,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:02,497 INFO Connection check task start + +2025-09-24 13:39:02,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:02,498 INFO Out dated connection ,size=0 + +2025-09-24 13:39:02,498 INFO Connection check task end + +2025-09-24 13:39:03,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:05,498 INFO Connection check task start + +2025-09-24 13:39:05,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:05,498 INFO Out dated connection ,size=0 + +2025-09-24 13:39:05,498 INFO Connection check task end + +2025-09-24 13:39:06,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:08,499 INFO Connection check task start + +2025-09-24 13:39:08,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:08,499 INFO Out dated connection ,size=0 + +2025-09-24 13:39:08,499 INFO Connection check task end + +2025-09-24 13:39:09,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:11,501 INFO Connection check task start + +2025-09-24 13:39:11,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:11,501 INFO Out dated connection ,size=0 + +2025-09-24 13:39:11,501 INFO Connection check task end + +2025-09-24 13:39:12,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:14,501 INFO Connection check task start + +2025-09-24 13:39:14,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:14,501 INFO Out dated connection ,size=0 + +2025-09-24 13:39:14,501 INFO Connection check task end + +2025-09-24 13:39:15,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:17,503 INFO Connection check task start + +2025-09-24 13:39:17,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:17,504 INFO Out dated connection ,size=0 + +2025-09-24 13:39:17,504 INFO Connection check task end + +2025-09-24 13:39:18,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:20,504 INFO Connection check task start + +2025-09-24 13:39:20,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:20,504 INFO Out dated connection ,size=0 + +2025-09-24 13:39:20,504 INFO Connection check task end + +2025-09-24 13:39:21,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:23,505 INFO Connection check task start + +2025-09-24 13:39:23,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:23,505 INFO Out dated connection ,size=0 + +2025-09-24 13:39:23,505 INFO Connection check task end + +2025-09-24 13:39:24,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:26,506 INFO Connection check task start + +2025-09-24 13:39:26,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:26,506 INFO Out dated connection ,size=0 + +2025-09-24 13:39:26,506 INFO Connection check task end + +2025-09-24 13:39:27,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:29,508 INFO Connection check task start + +2025-09-24 13:39:29,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:29,509 INFO Out dated connection ,size=0 + +2025-09-24 13:39:29,509 INFO Connection check task end + +2025-09-24 13:39:30,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:32,509 INFO Connection check task start + +2025-09-24 13:39:32,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:32,509 INFO Out dated connection ,size=0 + +2025-09-24 13:39:32,509 INFO Connection check task end + +2025-09-24 13:39:33,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:35,510 INFO Connection check task start + +2025-09-24 13:39:35,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:35,510 INFO Out dated connection ,size=0 + +2025-09-24 13:39:35,510 INFO Connection check task end + +2025-09-24 13:39:36,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:38,510 INFO Connection check task start + +2025-09-24 13:39:38,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:38,510 INFO Out dated connection ,size=0 + +2025-09-24 13:39:38,510 INFO Connection check task end + +2025-09-24 13:39:39,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:41,511 INFO Connection check task start + +2025-09-24 13:39:41,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:41,511 INFO Out dated connection ,size=0 + +2025-09-24 13:39:41,511 INFO Connection check task end + +2025-09-24 13:39:42,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:44,511 INFO Connection check task start + +2025-09-24 13:39:44,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:44,511 INFO Out dated connection ,size=0 + +2025-09-24 13:39:44,511 INFO Connection check task end + +2025-09-24 13:39:45,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:47,513 INFO Connection check task start + +2025-09-24 13:39:47,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:47,513 INFO Out dated connection ,size=0 + +2025-09-24 13:39:47,513 INFO Connection check task end + +2025-09-24 13:39:48,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:50,513 INFO Connection check task start + +2025-09-24 13:39:50,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:50,514 INFO Out dated connection ,size=0 + +2025-09-24 13:39:50,514 INFO Connection check task end + +2025-09-24 13:39:51,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:53,514 INFO Connection check task start + +2025-09-24 13:39:53,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:53,514 INFO Out dated connection ,size=0 + +2025-09-24 13:39:53,514 INFO Connection check task end + +2025-09-24 13:39:54,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:56,515 INFO Connection check task start + +2025-09-24 13:39:56,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:56,515 INFO Out dated connection ,size=0 + +2025-09-24 13:39:56,515 INFO Connection check task end + +2025-09-24 13:39:57,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:39:59,517 INFO Connection check task start + +2025-09-24 13:39:59,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:39:59,517 INFO Out dated connection ,size=0 + +2025-09-24 13:39:59,517 INFO Connection check task end + +2025-09-24 13:40:00,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:02,518 INFO Connection check task start + +2025-09-24 13:40:02,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:02,518 INFO Out dated connection ,size=0 + +2025-09-24 13:40:02,518 INFO Connection check task end + +2025-09-24 13:40:03,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:05,518 INFO Connection check task start + +2025-09-24 13:40:05,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:05,518 INFO Out dated connection ,size=0 + +2025-09-24 13:40:05,518 INFO Connection check task end + +2025-09-24 13:40:06,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:08,520 INFO Connection check task start + +2025-09-24 13:40:08,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:08,520 INFO Out dated connection ,size=0 + +2025-09-24 13:40:08,520 INFO Connection check task end + +2025-09-24 13:40:09,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:11,521 INFO Connection check task start + +2025-09-24 13:40:11,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:11,522 INFO Out dated connection ,size=0 + +2025-09-24 13:40:11,522 INFO Connection check task end + +2025-09-24 13:40:12,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:14,522 INFO Connection check task start + +2025-09-24 13:40:14,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:14,522 INFO Out dated connection ,size=0 + +2025-09-24 13:40:14,522 INFO Connection check task end + +2025-09-24 13:40:15,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:17,522 INFO Connection check task start + +2025-09-24 13:40:17,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:17,522 INFO Out dated connection ,size=0 + +2025-09-24 13:40:17,522 INFO Connection check task end + +2025-09-24 13:40:18,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:20,524 INFO Connection check task start + +2025-09-24 13:40:20,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:20,525 INFO Out dated connection ,size=0 + +2025-09-24 13:40:20,525 INFO Connection check task end + +2025-09-24 13:40:21,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:23,526 INFO Connection check task start + +2025-09-24 13:40:23,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:23,526 INFO Out dated connection ,size=0 + +2025-09-24 13:40:23,527 INFO Connection check task end + +2025-09-24 13:40:24,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:26,529 INFO Connection check task start + +2025-09-24 13:40:26,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:26,529 INFO Out dated connection ,size=0 + +2025-09-24 13:40:26,529 INFO Connection check task end + +2025-09-24 13:40:27,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:29,529 INFO Connection check task start + +2025-09-24 13:40:29,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:29,529 INFO Out dated connection ,size=0 + +2025-09-24 13:40:29,530 INFO Connection check task end + +2025-09-24 13:40:30,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:32,530 INFO Connection check task start + +2025-09-24 13:40:32,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:32,530 INFO Out dated connection ,size=0 + +2025-09-24 13:40:32,530 INFO Connection check task end + +2025-09-24 13:40:33,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:35,531 INFO Connection check task start + +2025-09-24 13:40:35,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:35,531 INFO Out dated connection ,size=0 + +2025-09-24 13:40:35,531 INFO Connection check task end + +2025-09-24 13:40:36,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:38,531 INFO Connection check task start + +2025-09-24 13:40:38,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:38,532 INFO Out dated connection ,size=0 + +2025-09-24 13:40:38,532 INFO Connection check task end + +2025-09-24 13:40:39,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:41,532 INFO Connection check task start + +2025-09-24 13:40:41,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:41,532 INFO Out dated connection ,size=0 + +2025-09-24 13:40:41,532 INFO Connection check task end + +2025-09-24 13:40:42,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:44,533 INFO Connection check task start + +2025-09-24 13:40:44,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:44,534 INFO Out dated connection ,size=0 + +2025-09-24 13:40:44,534 INFO Connection check task end + +2025-09-24 13:40:45,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:47,536 INFO Connection check task start + +2025-09-24 13:40:47,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:47,536 INFO Out dated connection ,size=0 + +2025-09-24 13:40:47,536 INFO Connection check task end + +2025-09-24 13:40:48,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:50,538 INFO Connection check task start + +2025-09-24 13:40:50,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:50,538 INFO Out dated connection ,size=0 + +2025-09-24 13:40:50,538 INFO Connection check task end + +2025-09-24 13:40:51,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:53,540 INFO Connection check task start + +2025-09-24 13:40:53,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:53,541 INFO Out dated connection ,size=0 + +2025-09-24 13:40:53,541 INFO Connection check task end + +2025-09-24 13:40:54,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:56,542 INFO Connection check task start + +2025-09-24 13:40:56,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:56,542 INFO Out dated connection ,size=0 + +2025-09-24 13:40:56,542 INFO Connection check task end + +2025-09-24 13:40:57,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:40:59,543 INFO Connection check task start + +2025-09-24 13:40:59,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:40:59,543 INFO Out dated connection ,size=0 + +2025-09-24 13:40:59,543 INFO Connection check task end + +2025-09-24 13:41:00,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:02,544 INFO Connection check task start + +2025-09-24 13:41:02,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:02,544 INFO Out dated connection ,size=0 + +2025-09-24 13:41:02,544 INFO Connection check task end + +2025-09-24 13:41:03,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:05,546 INFO Connection check task start + +2025-09-24 13:41:05,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:05,547 INFO Out dated connection ,size=0 + +2025-09-24 13:41:05,547 INFO Connection check task end + +2025-09-24 13:41:06,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:08,547 INFO Connection check task start + +2025-09-24 13:41:08,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:08,547 INFO Out dated connection ,size=0 + +2025-09-24 13:41:08,547 INFO Connection check task end + +2025-09-24 13:41:09,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:11,549 INFO Connection check task start + +2025-09-24 13:41:11,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:11,550 INFO Out dated connection ,size=0 + +2025-09-24 13:41:11,550 INFO Connection check task end + +2025-09-24 13:41:12,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:14,552 INFO Connection check task start + +2025-09-24 13:41:14,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:14,552 INFO Out dated connection ,size=0 + +2025-09-24 13:41:14,552 INFO Connection check task end + +2025-09-24 13:41:15,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:17,552 INFO Connection check task start + +2025-09-24 13:41:17,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:17,552 INFO Out dated connection ,size=0 + +2025-09-24 13:41:17,552 INFO Connection check task end + +2025-09-24 13:41:18,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:20,553 INFO Connection check task start + +2025-09-24 13:41:20,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:20,553 INFO Out dated connection ,size=0 + +2025-09-24 13:41:20,553 INFO Connection check task end + +2025-09-24 13:41:21,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:23,553 INFO Connection check task start + +2025-09-24 13:41:23,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:23,553 INFO Out dated connection ,size=0 + +2025-09-24 13:41:23,553 INFO Connection check task end + +2025-09-24 13:41:24,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:26,554 INFO Connection check task start + +2025-09-24 13:41:26,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:26,554 INFO Out dated connection ,size=0 + +2025-09-24 13:41:26,554 INFO Connection check task end + +2025-09-24 13:41:27,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:29,554 INFO Connection check task start + +2025-09-24 13:41:29,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:29,554 INFO Out dated connection ,size=0 + +2025-09-24 13:41:29,554 INFO Connection check task end + +2025-09-24 13:41:30,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:32,554 INFO Connection check task start + +2025-09-24 13:41:32,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:32,554 INFO Out dated connection ,size=0 + +2025-09-24 13:41:32,555 INFO Connection check task end + +2025-09-24 13:41:33,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:35,555 INFO Connection check task start + +2025-09-24 13:41:35,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:35,555 INFO Out dated connection ,size=0 + +2025-09-24 13:41:35,555 INFO Connection check task end + +2025-09-24 13:41:36,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:38,557 INFO Connection check task start + +2025-09-24 13:41:38,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:38,558 INFO Out dated connection ,size=0 + +2025-09-24 13:41:38,558 INFO Connection check task end + +2025-09-24 13:41:39,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:41,560 INFO Connection check task start + +2025-09-24 13:41:41,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:41,560 INFO Out dated connection ,size=0 + +2025-09-24 13:41:41,560 INFO Connection check task end + +2025-09-24 13:41:42,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:44,562 INFO Connection check task start + +2025-09-24 13:41:44,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:44,562 INFO Out dated connection ,size=0 + +2025-09-24 13:41:44,562 INFO Connection check task end + +2025-09-24 13:41:45,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:47,562 INFO Connection check task start + +2025-09-24 13:41:47,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:47,562 INFO Out dated connection ,size=0 + +2025-09-24 13:41:47,562 INFO Connection check task end + +2025-09-24 13:41:48,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:50,563 INFO Connection check task start + +2025-09-24 13:41:50,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:50,563 INFO Out dated connection ,size=0 + +2025-09-24 13:41:50,564 INFO Connection check task end + +2025-09-24 13:41:51,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:53,564 INFO Connection check task start + +2025-09-24 13:41:53,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:53,564 INFO Out dated connection ,size=0 + +2025-09-24 13:41:53,564 INFO Connection check task end + +2025-09-24 13:41:54,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:56,565 INFO Connection check task start + +2025-09-24 13:41:56,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:56,566 INFO Out dated connection ,size=0 + +2025-09-24 13:41:56,566 INFO Connection check task end + +2025-09-24 13:41:57,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:41:59,566 INFO Connection check task start + +2025-09-24 13:41:59,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:41:59,566 INFO Out dated connection ,size=0 + +2025-09-24 13:41:59,566 INFO Connection check task end + +2025-09-24 13:42:00,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:02,567 INFO Connection check task start + +2025-09-24 13:42:02,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:02,567 INFO Out dated connection ,size=0 + +2025-09-24 13:42:02,567 INFO Connection check task end + +2025-09-24 13:42:03,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:05,568 INFO Connection check task start + +2025-09-24 13:42:05,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:05,568 INFO Out dated connection ,size=0 + +2025-09-24 13:42:05,568 INFO Connection check task end + +2025-09-24 13:42:06,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:08,569 INFO Connection check task start + +2025-09-24 13:42:08,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:08,569 INFO Out dated connection ,size=0 + +2025-09-24 13:42:08,569 INFO Connection check task end + +2025-09-24 13:42:09,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:11,569 INFO Connection check task start + +2025-09-24 13:42:11,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:11,569 INFO Out dated connection ,size=0 + +2025-09-24 13:42:11,569 INFO Connection check task end + +2025-09-24 13:42:12,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:14,571 INFO Connection check task start + +2025-09-24 13:42:14,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:14,572 INFO Out dated connection ,size=0 + +2025-09-24 13:42:14,572 INFO Connection check task end + +2025-09-24 13:42:15,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:17,572 INFO Connection check task start + +2025-09-24 13:42:17,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:17,572 INFO Out dated connection ,size=0 + +2025-09-24 13:42:17,572 INFO Connection check task end + +2025-09-24 13:42:18,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:20,574 INFO Connection check task start + +2025-09-24 13:42:20,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:20,574 INFO Out dated connection ,size=0 + +2025-09-24 13:42:20,575 INFO Connection check task end + +2025-09-24 13:42:21,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:23,575 INFO Connection check task start + +2025-09-24 13:42:23,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:23,575 INFO Out dated connection ,size=0 + +2025-09-24 13:42:23,575 INFO Connection check task end + +2025-09-24 13:42:24,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:26,576 INFO Connection check task start + +2025-09-24 13:42:26,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:26,576 INFO Out dated connection ,size=0 + +2025-09-24 13:42:26,576 INFO Connection check task end + +2025-09-24 13:42:27,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:29,576 INFO Connection check task start + +2025-09-24 13:42:29,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:29,576 INFO Out dated connection ,size=0 + +2025-09-24 13:42:29,576 INFO Connection check task end + +2025-09-24 13:42:30,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:32,577 INFO Connection check task start + +2025-09-24 13:42:32,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:32,577 INFO Out dated connection ,size=0 + +2025-09-24 13:42:32,577 INFO Connection check task end + +2025-09-24 13:42:33,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:35,579 INFO Connection check task start + +2025-09-24 13:42:35,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:35,579 INFO Out dated connection ,size=0 + +2025-09-24 13:42:35,579 INFO Connection check task end + +2025-09-24 13:42:36,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:38,580 INFO Connection check task start + +2025-09-24 13:42:38,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:38,580 INFO Out dated connection ,size=0 + +2025-09-24 13:42:38,580 INFO Connection check task end + +2025-09-24 13:42:39,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:41,581 INFO Connection check task start + +2025-09-24 13:42:41,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:41,581 INFO Out dated connection ,size=0 + +2025-09-24 13:42:41,581 INFO Connection check task end + +2025-09-24 13:42:42,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:44,581 INFO Connection check task start + +2025-09-24 13:42:44,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:44,581 INFO Out dated connection ,size=0 + +2025-09-24 13:42:44,582 INFO Connection check task end + +2025-09-24 13:42:45,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:47,582 INFO Connection check task start + +2025-09-24 13:42:47,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:47,582 INFO Out dated connection ,size=0 + +2025-09-24 13:42:47,582 INFO Connection check task end + +2025-09-24 13:42:48,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:50,583 INFO Connection check task start + +2025-09-24 13:42:50,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:50,583 INFO Out dated connection ,size=0 + +2025-09-24 13:42:50,583 INFO Connection check task end + +2025-09-24 13:42:51,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:53,585 INFO Connection check task start + +2025-09-24 13:42:53,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:53,585 INFO Out dated connection ,size=0 + +2025-09-24 13:42:53,585 INFO Connection check task end + +2025-09-24 13:42:54,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:56,585 INFO Connection check task start + +2025-09-24 13:42:56,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:56,585 INFO Out dated connection ,size=0 + +2025-09-24 13:42:56,585 INFO Connection check task end + +2025-09-24 13:42:57,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:42:59,586 INFO Connection check task start + +2025-09-24 13:42:59,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:42:59,586 INFO Out dated connection ,size=0 + +2025-09-24 13:42:59,586 INFO Connection check task end + +2025-09-24 13:43:00,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:02,587 INFO Connection check task start + +2025-09-24 13:43:02,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:02,587 INFO Out dated connection ,size=0 + +2025-09-24 13:43:02,587 INFO Connection check task end + +2025-09-24 13:43:03,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:05,589 INFO Connection check task start + +2025-09-24 13:43:05,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:05,589 INFO Out dated connection ,size=0 + +2025-09-24 13:43:05,589 INFO Connection check task end + +2025-09-24 13:43:06,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:08,590 INFO Connection check task start + +2025-09-24 13:43:08,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:08,590 INFO Out dated connection ,size=0 + +2025-09-24 13:43:08,590 INFO Connection check task end + +2025-09-24 13:43:09,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:11,590 INFO Connection check task start + +2025-09-24 13:43:11,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:11,591 INFO Out dated connection ,size=0 + +2025-09-24 13:43:11,591 INFO Connection check task end + +2025-09-24 13:43:12,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:14,591 INFO Connection check task start + +2025-09-24 13:43:14,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:14,591 INFO Out dated connection ,size=0 + +2025-09-24 13:43:14,591 INFO Connection check task end + +2025-09-24 13:43:15,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:17,592 INFO Connection check task start + +2025-09-24 13:43:17,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:17,592 INFO Out dated connection ,size=0 + +2025-09-24 13:43:17,592 INFO Connection check task end + +2025-09-24 13:43:18,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:20,593 INFO Connection check task start + +2025-09-24 13:43:20,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:20,594 INFO Out dated connection ,size=0 + +2025-09-24 13:43:20,594 INFO Connection check task end + +2025-09-24 13:43:21,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:23,595 INFO Connection check task start + +2025-09-24 13:43:23,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:23,596 INFO Out dated connection ,size=0 + +2025-09-24 13:43:23,596 INFO Connection check task end + +2025-09-24 13:43:24,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:26,598 INFO Connection check task start + +2025-09-24 13:43:26,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:26,598 INFO Out dated connection ,size=0 + +2025-09-24 13:43:26,598 INFO Connection check task end + +2025-09-24 13:43:27,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:29,600 INFO Connection check task start + +2025-09-24 13:43:29,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:29,600 INFO Out dated connection ,size=0 + +2025-09-24 13:43:29,600 INFO Connection check task end + +2025-09-24 13:43:30,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:32,600 INFO Connection check task start + +2025-09-24 13:43:32,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:32,601 INFO Out dated connection ,size=0 + +2025-09-24 13:43:32,601 INFO Connection check task end + +2025-09-24 13:43:33,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:35,601 INFO Connection check task start + +2025-09-24 13:43:35,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:35,601 INFO Out dated connection ,size=0 + +2025-09-24 13:43:35,601 INFO Connection check task end + +2025-09-24 13:43:36,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:38,603 INFO Connection check task start + +2025-09-24 13:43:38,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:38,603 INFO Out dated connection ,size=0 + +2025-09-24 13:43:38,603 INFO Connection check task end + +2025-09-24 13:43:39,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:41,605 INFO Connection check task start + +2025-09-24 13:43:41,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:41,605 INFO Out dated connection ,size=0 + +2025-09-24 13:43:41,605 INFO Connection check task end + +2025-09-24 13:43:42,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:44,606 INFO Connection check task start + +2025-09-24 13:43:44,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:44,606 INFO Out dated connection ,size=0 + +2025-09-24 13:43:44,606 INFO Connection check task end + +2025-09-24 13:43:45,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:47,606 INFO Connection check task start + +2025-09-24 13:43:47,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:47,606 INFO Out dated connection ,size=0 + +2025-09-24 13:43:47,607 INFO Connection check task end + +2025-09-24 13:43:48,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:50,607 INFO Connection check task start + +2025-09-24 13:43:50,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:50,607 INFO Out dated connection ,size=0 + +2025-09-24 13:43:50,607 INFO Connection check task end + +2025-09-24 13:43:51,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:53,608 INFO Connection check task start + +2025-09-24 13:43:53,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:53,609 INFO Out dated connection ,size=0 + +2025-09-24 13:43:53,609 INFO Connection check task end + +2025-09-24 13:43:54,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:56,610 INFO Connection check task start + +2025-09-24 13:43:56,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:56,610 INFO Out dated connection ,size=0 + +2025-09-24 13:43:56,610 INFO Connection check task end + +2025-09-24 13:43:57,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:43:59,611 INFO Connection check task start + +2025-09-24 13:43:59,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:43:59,611 INFO Out dated connection ,size=0 + +2025-09-24 13:43:59,611 INFO Connection check task end + +2025-09-24 13:44:00,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:02,612 INFO Connection check task start + +2025-09-24 13:44:02,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:02,612 INFO Out dated connection ,size=0 + +2025-09-24 13:44:02,612 INFO Connection check task end + +2025-09-24 13:44:03,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:05,614 INFO Connection check task start + +2025-09-24 13:44:05,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:05,614 INFO Out dated connection ,size=0 + +2025-09-24 13:44:05,614 INFO Connection check task end + +2025-09-24 13:44:06,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:08,616 INFO Connection check task start + +2025-09-24 13:44:08,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:08,616 INFO Out dated connection ,size=0 + +2025-09-24 13:44:08,616 INFO Connection check task end + +2025-09-24 13:44:09,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:11,619 INFO Connection check task start + +2025-09-24 13:44:11,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:11,619 INFO Out dated connection ,size=0 + +2025-09-24 13:44:11,619 INFO Connection check task end + +2025-09-24 13:44:12,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:14,620 INFO Connection check task start + +2025-09-24 13:44:14,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:14,620 INFO Out dated connection ,size=0 + +2025-09-24 13:44:14,620 INFO Connection check task end + +2025-09-24 13:44:15,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:17,621 INFO Connection check task start + +2025-09-24 13:44:17,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:17,621 INFO Out dated connection ,size=0 + +2025-09-24 13:44:17,621 INFO Connection check task end + +2025-09-24 13:44:18,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:20,622 INFO Connection check task start + +2025-09-24 13:44:20,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:20,622 INFO Out dated connection ,size=0 + +2025-09-24 13:44:20,622 INFO Connection check task end + +2025-09-24 13:44:21,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:23,622 INFO Connection check task start + +2025-09-24 13:44:23,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:23,623 INFO Out dated connection ,size=0 + +2025-09-24 13:44:23,623 INFO Connection check task end + +2025-09-24 13:44:24,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:26,624 INFO Connection check task start + +2025-09-24 13:44:26,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:26,624 INFO Out dated connection ,size=0 + +2025-09-24 13:44:26,624 INFO Connection check task end + +2025-09-24 13:44:27,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:29,624 INFO Connection check task start + +2025-09-24 13:44:29,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:29,624 INFO Out dated connection ,size=0 + +2025-09-24 13:44:29,624 INFO Connection check task end + +2025-09-24 13:44:30,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:32,627 INFO Connection check task start + +2025-09-24 13:44:32,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:32,627 INFO Out dated connection ,size=0 + +2025-09-24 13:44:32,627 INFO Connection check task end + +2025-09-24 13:44:33,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:35,627 INFO Connection check task start + +2025-09-24 13:44:35,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:35,628 INFO Out dated connection ,size=0 + +2025-09-24 13:44:35,628 INFO Connection check task end + +2025-09-24 13:44:36,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:38,628 INFO Connection check task start + +2025-09-24 13:44:38,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:38,628 INFO Out dated connection ,size=0 + +2025-09-24 13:44:38,628 INFO Connection check task end + +2025-09-24 13:44:39,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:41,630 INFO Connection check task start + +2025-09-24 13:44:41,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:41,630 INFO Out dated connection ,size=0 + +2025-09-24 13:44:41,630 INFO Connection check task end + +2025-09-24 13:44:42,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:44,631 INFO Connection check task start + +2025-09-24 13:44:44,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:44,631 INFO Out dated connection ,size=0 + +2025-09-24 13:44:44,632 INFO Connection check task end + +2025-09-24 13:44:45,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:47,632 INFO Connection check task start + +2025-09-24 13:44:47,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:47,632 INFO Out dated connection ,size=0 + +2025-09-24 13:44:47,632 INFO Connection check task end + +2025-09-24 13:44:48,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:50,633 INFO Connection check task start + +2025-09-24 13:44:50,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:50,633 INFO Out dated connection ,size=0 + +2025-09-24 13:44:50,633 INFO Connection check task end + +2025-09-24 13:44:51,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:53,633 INFO Connection check task start + +2025-09-24 13:44:53,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:53,633 INFO Out dated connection ,size=0 + +2025-09-24 13:44:53,633 INFO Connection check task end + +2025-09-24 13:44:54,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:56,635 INFO Connection check task start + +2025-09-24 13:44:56,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:56,635 INFO Out dated connection ,size=0 + +2025-09-24 13:44:56,635 INFO Connection check task end + +2025-09-24 13:44:57,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:44:59,636 INFO Connection check task start + +2025-09-24 13:44:59,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:44:59,636 INFO Out dated connection ,size=0 + +2025-09-24 13:44:59,636 INFO Connection check task end + +2025-09-24 13:45:00,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:02,636 INFO Connection check task start + +2025-09-24 13:45:02,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:02,636 INFO Out dated connection ,size=0 + +2025-09-24 13:45:02,637 INFO Connection check task end + +2025-09-24 13:45:03,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:05,638 INFO Connection check task start + +2025-09-24 13:45:05,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:05,638 INFO Out dated connection ,size=0 + +2025-09-24 13:45:05,638 INFO Connection check task end + +2025-09-24 13:45:06,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:08,638 INFO Connection check task start + +2025-09-24 13:45:08,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:08,638 INFO Out dated connection ,size=0 + +2025-09-24 13:45:08,638 INFO Connection check task end + +2025-09-24 13:45:09,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:11,640 INFO Connection check task start + +2025-09-24 13:45:11,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:11,640 INFO Out dated connection ,size=0 + +2025-09-24 13:45:11,640 INFO Connection check task end + +2025-09-24 13:45:12,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:14,641 INFO Connection check task start + +2025-09-24 13:45:14,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:14,641 INFO Out dated connection ,size=0 + +2025-09-24 13:45:14,641 INFO Connection check task end + +2025-09-24 13:45:15,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:17,641 INFO Connection check task start + +2025-09-24 13:45:17,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:17,641 INFO Out dated connection ,size=0 + +2025-09-24 13:45:17,641 INFO Connection check task end + +2025-09-24 13:45:18,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:20,643 INFO Connection check task start + +2025-09-24 13:45:20,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:20,643 INFO Out dated connection ,size=0 + +2025-09-24 13:45:20,643 INFO Connection check task end + +2025-09-24 13:45:21,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:23,644 INFO Connection check task start + +2025-09-24 13:45:23,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:23,645 INFO Out dated connection ,size=0 + +2025-09-24 13:45:23,645 INFO Connection check task end + +2025-09-24 13:45:24,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:26,645 INFO Connection check task start + +2025-09-24 13:45:26,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:26,646 INFO Out dated connection ,size=0 + +2025-09-24 13:45:26,646 INFO Connection check task end + +2025-09-24 13:45:27,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:29,647 INFO Connection check task start + +2025-09-24 13:45:29,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:29,648 INFO Out dated connection ,size=0 + +2025-09-24 13:45:29,648 INFO Connection check task end + +2025-09-24 13:45:30,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:32,650 INFO Connection check task start + +2025-09-24 13:45:32,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:32,650 INFO Out dated connection ,size=0 + +2025-09-24 13:45:32,650 INFO Connection check task end + +2025-09-24 13:45:33,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:35,650 INFO Connection check task start + +2025-09-24 13:45:35,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:35,651 INFO Out dated connection ,size=0 + +2025-09-24 13:45:35,651 INFO Connection check task end + +2025-09-24 13:45:36,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:38,652 INFO Connection check task start + +2025-09-24 13:45:38,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:38,652 INFO Out dated connection ,size=0 + +2025-09-24 13:45:38,652 INFO Connection check task end + +2025-09-24 13:45:39,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:41,654 INFO Connection check task start + +2025-09-24 13:45:41,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:41,654 INFO Out dated connection ,size=0 + +2025-09-24 13:45:41,654 INFO Connection check task end + +2025-09-24 13:45:42,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:44,655 INFO Connection check task start + +2025-09-24 13:45:44,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:44,656 INFO Out dated connection ,size=0 + +2025-09-24 13:45:44,656 INFO Connection check task end + +2025-09-24 13:45:45,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:47,657 INFO Connection check task start + +2025-09-24 13:45:47,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:47,657 INFO Out dated connection ,size=0 + +2025-09-24 13:45:47,657 INFO Connection check task end + +2025-09-24 13:45:48,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:50,659 INFO Connection check task start + +2025-09-24 13:45:50,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:50,660 INFO Out dated connection ,size=0 + +2025-09-24 13:45:50,660 INFO Connection check task end + +2025-09-24 13:45:51,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:53,662 INFO Connection check task start + +2025-09-24 13:45:53,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:53,662 INFO Out dated connection ,size=0 + +2025-09-24 13:45:53,662 INFO Connection check task end + +2025-09-24 13:45:54,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:56,662 INFO Connection check task start + +2025-09-24 13:45:56,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:56,662 INFO Out dated connection ,size=0 + +2025-09-24 13:45:56,662 INFO Connection check task end + +2025-09-24 13:45:57,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:45:59,664 INFO Connection check task start + +2025-09-24 13:45:59,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:45:59,664 INFO Out dated connection ,size=0 + +2025-09-24 13:45:59,664 INFO Connection check task end + +2025-09-24 13:46:00,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:02,666 INFO Connection check task start + +2025-09-24 13:46:02,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:02,666 INFO Out dated connection ,size=0 + +2025-09-24 13:46:02,666 INFO Connection check task end + +2025-09-24 13:46:03,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:05,668 INFO Connection check task start + +2025-09-24 13:46:05,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:05,668 INFO Out dated connection ,size=0 + +2025-09-24 13:46:05,668 INFO Connection check task end + +2025-09-24 13:46:06,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:08,670 INFO Connection check task start + +2025-09-24 13:46:08,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:08,670 INFO Out dated connection ,size=0 + +2025-09-24 13:46:08,670 INFO Connection check task end + +2025-09-24 13:46:09,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:11,671 INFO Connection check task start + +2025-09-24 13:46:11,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:11,671 INFO Out dated connection ,size=0 + +2025-09-24 13:46:11,671 INFO Connection check task end + +2025-09-24 13:46:12,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:14,673 INFO Connection check task start + +2025-09-24 13:46:14,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:14,673 INFO Out dated connection ,size=0 + +2025-09-24 13:46:14,673 INFO Connection check task end + +2025-09-24 13:46:15,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:17,673 INFO Connection check task start + +2025-09-24 13:46:17,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:17,674 INFO Out dated connection ,size=0 + +2025-09-24 13:46:17,674 INFO Connection check task end + +2025-09-24 13:46:18,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:20,675 INFO Connection check task start + +2025-09-24 13:46:20,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:20,675 INFO Out dated connection ,size=0 + +2025-09-24 13:46:20,675 INFO Connection check task end + +2025-09-24 13:46:21,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:23,678 INFO Connection check task start + +2025-09-24 13:46:23,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:23,678 INFO Out dated connection ,size=0 + +2025-09-24 13:46:23,678 INFO Connection check task end + +2025-09-24 13:46:24,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:26,679 INFO Connection check task start + +2025-09-24 13:46:26,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:26,679 INFO Out dated connection ,size=0 + +2025-09-24 13:46:26,679 INFO Connection check task end + +2025-09-24 13:46:27,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:29,681 INFO Connection check task start + +2025-09-24 13:46:29,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:29,681 INFO Out dated connection ,size=0 + +2025-09-24 13:46:29,681 INFO Connection check task end + +2025-09-24 13:46:30,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:32,681 INFO Connection check task start + +2025-09-24 13:46:32,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:32,682 INFO Out dated connection ,size=0 + +2025-09-24 13:46:32,682 INFO Connection check task end + +2025-09-24 13:46:33,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:35,682 INFO Connection check task start + +2025-09-24 13:46:35,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:35,682 INFO Out dated connection ,size=0 + +2025-09-24 13:46:35,682 INFO Connection check task end + +2025-09-24 13:46:36,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:38,683 INFO Connection check task start + +2025-09-24 13:46:38,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:38,683 INFO Out dated connection ,size=0 + +2025-09-24 13:46:38,683 INFO Connection check task end + +2025-09-24 13:46:39,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:41,683 INFO Connection check task start + +2025-09-24 13:46:41,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:41,684 INFO Out dated connection ,size=0 + +2025-09-24 13:46:41,684 INFO Connection check task end + +2025-09-24 13:46:42,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:44,684 INFO Connection check task start + +2025-09-24 13:46:44,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:44,684 INFO Out dated connection ,size=0 + +2025-09-24 13:46:44,685 INFO Connection check task end + +2025-09-24 13:46:45,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:47,685 INFO Connection check task start + +2025-09-24 13:46:47,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:47,685 INFO Out dated connection ,size=0 + +2025-09-24 13:46:47,685 INFO Connection check task end + +2025-09-24 13:46:48,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:50,686 INFO Connection check task start + +2025-09-24 13:46:50,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:50,686 INFO Out dated connection ,size=0 + +2025-09-24 13:46:50,686 INFO Connection check task end + +2025-09-24 13:46:51,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:53,686 INFO Connection check task start + +2025-09-24 13:46:53,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:53,687 INFO Out dated connection ,size=0 + +2025-09-24 13:46:53,687 INFO Connection check task end + +2025-09-24 13:46:54,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:56,687 INFO Connection check task start + +2025-09-24 13:46:56,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:56,687 INFO Out dated connection ,size=0 + +2025-09-24 13:46:56,687 INFO Connection check task end + +2025-09-24 13:46:57,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:46:59,688 INFO Connection check task start + +2025-09-24 13:46:59,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:46:59,688 INFO Out dated connection ,size=0 + +2025-09-24 13:46:59,688 INFO Connection check task end + +2025-09-24 13:47:00,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:02,689 INFO Connection check task start + +2025-09-24 13:47:02,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:02,689 INFO Out dated connection ,size=0 + +2025-09-24 13:47:02,689 INFO Connection check task end + +2025-09-24 13:47:03,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:05,689 INFO Connection check task start + +2025-09-24 13:47:05,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:05,690 INFO Out dated connection ,size=0 + +2025-09-24 13:47:05,690 INFO Connection check task end + +2025-09-24 13:47:06,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:08,690 INFO Connection check task start + +2025-09-24 13:47:08,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:08,690 INFO Out dated connection ,size=0 + +2025-09-24 13:47:08,690 INFO Connection check task end + +2025-09-24 13:47:09,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:11,691 INFO Connection check task start + +2025-09-24 13:47:11,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:11,691 INFO Out dated connection ,size=0 + +2025-09-24 13:47:11,691 INFO Connection check task end + +2025-09-24 13:47:12,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:14,692 INFO Connection check task start + +2025-09-24 13:47:14,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:14,692 INFO Out dated connection ,size=0 + +2025-09-24 13:47:14,692 INFO Connection check task end + +2025-09-24 13:47:15,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:17,693 INFO Connection check task start + +2025-09-24 13:47:17,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:17,693 INFO Out dated connection ,size=0 + +2025-09-24 13:47:17,693 INFO Connection check task end + +2025-09-24 13:47:18,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:20,694 INFO Connection check task start + +2025-09-24 13:47:20,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:20,694 INFO Out dated connection ,size=0 + +2025-09-24 13:47:20,694 INFO Connection check task end + +2025-09-24 13:47:21,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:23,694 INFO Connection check task start + +2025-09-24 13:47:23,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:23,695 INFO Out dated connection ,size=0 + +2025-09-24 13:47:23,695 INFO Connection check task end + +2025-09-24 13:47:24,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:26,695 INFO Connection check task start + +2025-09-24 13:47:26,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:26,695 INFO Out dated connection ,size=0 + +2025-09-24 13:47:26,695 INFO Connection check task end + +2025-09-24 13:47:27,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:29,695 INFO Connection check task start + +2025-09-24 13:47:29,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:29,695 INFO Out dated connection ,size=0 + +2025-09-24 13:47:29,695 INFO Connection check task end + +2025-09-24 13:47:30,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:32,696 INFO Connection check task start + +2025-09-24 13:47:32,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:32,696 INFO Out dated connection ,size=0 + +2025-09-24 13:47:32,696 INFO Connection check task end + +2025-09-24 13:47:33,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:35,696 INFO Connection check task start + +2025-09-24 13:47:35,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:35,697 INFO Out dated connection ,size=0 + +2025-09-24 13:47:35,697 INFO Connection check task end + +2025-09-24 13:47:36,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:38,697 INFO Connection check task start + +2025-09-24 13:47:38,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:38,697 INFO Out dated connection ,size=0 + +2025-09-24 13:47:38,697 INFO Connection check task end + +2025-09-24 13:47:39,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:41,697 INFO Connection check task start + +2025-09-24 13:47:41,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:41,698 INFO Out dated connection ,size=0 + +2025-09-24 13:47:41,698 INFO Connection check task end + +2025-09-24 13:47:42,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:44,698 INFO Connection check task start + +2025-09-24 13:47:44,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:44,698 INFO Out dated connection ,size=0 + +2025-09-24 13:47:44,698 INFO Connection check task end + +2025-09-24 13:47:45,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:47,700 INFO Connection check task start + +2025-09-24 13:47:47,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:47,700 INFO Out dated connection ,size=0 + +2025-09-24 13:47:47,700 INFO Connection check task end + +2025-09-24 13:47:48,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:50,701 INFO Connection check task start + +2025-09-24 13:47:50,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:50,701 INFO Out dated connection ,size=0 + +2025-09-24 13:47:50,701 INFO Connection check task end + +2025-09-24 13:47:51,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:53,703 INFO Connection check task start + +2025-09-24 13:47:53,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:53,703 INFO Out dated connection ,size=0 + +2025-09-24 13:47:53,703 INFO Connection check task end + +2025-09-24 13:47:54,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:56,704 INFO Connection check task start + +2025-09-24 13:47:56,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:56,704 INFO Out dated connection ,size=0 + +2025-09-24 13:47:56,704 INFO Connection check task end + +2025-09-24 13:47:57,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:47:59,706 INFO Connection check task start + +2025-09-24 13:47:59,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:47:59,706 INFO Out dated connection ,size=0 + +2025-09-24 13:47:59,706 INFO Connection check task end + +2025-09-24 13:48:00,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:02,708 INFO Connection check task start + +2025-09-24 13:48:02,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:02,708 INFO Out dated connection ,size=0 + +2025-09-24 13:48:02,708 INFO Connection check task end + +2025-09-24 13:48:03,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:05,710 INFO Connection check task start + +2025-09-24 13:48:05,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:05,711 INFO Out dated connection ,size=0 + +2025-09-24 13:48:05,711 INFO Connection check task end + +2025-09-24 13:48:06,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:08,711 INFO Connection check task start + +2025-09-24 13:48:08,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:08,711 INFO Out dated connection ,size=0 + +2025-09-24 13:48:08,711 INFO Connection check task end + +2025-09-24 13:48:09,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:11,711 INFO Connection check task start + +2025-09-24 13:48:11,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:11,711 INFO Out dated connection ,size=0 + +2025-09-24 13:48:11,711 INFO Connection check task end + +2025-09-24 13:48:12,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:14,712 INFO Connection check task start + +2025-09-24 13:48:14,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:14,712 INFO Out dated connection ,size=0 + +2025-09-24 13:48:14,712 INFO Connection check task end + +2025-09-24 13:48:15,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:17,712 INFO Connection check task start + +2025-09-24 13:48:17,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:17,712 INFO Out dated connection ,size=0 + +2025-09-24 13:48:17,712 INFO Connection check task end + +2025-09-24 13:48:18,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:20,713 INFO Connection check task start + +2025-09-24 13:48:20,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:20,713 INFO Out dated connection ,size=0 + +2025-09-24 13:48:20,713 INFO Connection check task end + +2025-09-24 13:48:21,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:23,713 INFO Connection check task start + +2025-09-24 13:48:23,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:23,714 INFO Out dated connection ,size=0 + +2025-09-24 13:48:23,714 INFO Connection check task end + +2025-09-24 13:48:24,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:26,714 INFO Connection check task start + +2025-09-24 13:48:26,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:26,714 INFO Out dated connection ,size=0 + +2025-09-24 13:48:26,714 INFO Connection check task end + +2025-09-24 13:48:27,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:29,715 INFO Connection check task start + +2025-09-24 13:48:29,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:29,715 INFO Out dated connection ,size=0 + +2025-09-24 13:48:29,715 INFO Connection check task end + +2025-09-24 13:48:30,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:32,715 INFO Connection check task start + +2025-09-24 13:48:32,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:32,716 INFO Out dated connection ,size=0 + +2025-09-24 13:48:32,716 INFO Connection check task end + +2025-09-24 13:48:33,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:35,716 INFO Connection check task start + +2025-09-24 13:48:35,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:35,716 INFO Out dated connection ,size=0 + +2025-09-24 13:48:35,716 INFO Connection check task end + +2025-09-24 13:48:36,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:38,718 INFO Connection check task start + +2025-09-24 13:48:38,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:38,718 INFO Out dated connection ,size=0 + +2025-09-24 13:48:38,718 INFO Connection check task end + +2025-09-24 13:48:39,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:41,719 INFO Connection check task start + +2025-09-24 13:48:41,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:41,719 INFO Out dated connection ,size=0 + +2025-09-24 13:48:41,719 INFO Connection check task end + +2025-09-24 13:48:42,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:44,720 INFO Connection check task start + +2025-09-24 13:48:44,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:44,720 INFO Out dated connection ,size=0 + +2025-09-24 13:48:44,720 INFO Connection check task end + +2025-09-24 13:48:45,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:47,721 INFO Connection check task start + +2025-09-24 13:48:47,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:47,721 INFO Out dated connection ,size=0 + +2025-09-24 13:48:47,721 INFO Connection check task end + +2025-09-24 13:48:48,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:50,723 INFO Connection check task start + +2025-09-24 13:48:50,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:50,723 INFO Out dated connection ,size=0 + +2025-09-24 13:48:50,723 INFO Connection check task end + +2025-09-24 13:48:51,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:53,723 INFO Connection check task start + +2025-09-24 13:48:53,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:53,723 INFO Out dated connection ,size=0 + +2025-09-24 13:48:53,723 INFO Connection check task end + +2025-09-24 13:48:54,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:56,724 INFO Connection check task start + +2025-09-24 13:48:56,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:56,724 INFO Out dated connection ,size=0 + +2025-09-24 13:48:56,724 INFO Connection check task end + +2025-09-24 13:48:57,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:48:59,726 INFO Connection check task start + +2025-09-24 13:48:59,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:48:59,726 INFO Out dated connection ,size=0 + +2025-09-24 13:48:59,726 INFO Connection check task end + +2025-09-24 13:49:00,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:02,727 INFO Connection check task start + +2025-09-24 13:49:02,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:02,727 INFO Out dated connection ,size=0 + +2025-09-24 13:49:02,727 INFO Connection check task end + +2025-09-24 13:49:03,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:05,728 INFO Connection check task start + +2025-09-24 13:49:05,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:05,728 INFO Out dated connection ,size=0 + +2025-09-24 13:49:05,728 INFO Connection check task end + +2025-09-24 13:49:06,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:08,729 INFO Connection check task start + +2025-09-24 13:49:08,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:08,729 INFO Out dated connection ,size=0 + +2025-09-24 13:49:08,729 INFO Connection check task end + +2025-09-24 13:49:09,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:11,729 INFO Connection check task start + +2025-09-24 13:49:11,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:11,730 INFO Out dated connection ,size=0 + +2025-09-24 13:49:11,730 INFO Connection check task end + +2025-09-24 13:49:12,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:14,730 INFO Connection check task start + +2025-09-24 13:49:14,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:14,730 INFO Out dated connection ,size=0 + +2025-09-24 13:49:14,731 INFO Connection check task end + +2025-09-24 13:49:15,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:17,731 INFO Connection check task start + +2025-09-24 13:49:17,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:17,731 INFO Out dated connection ,size=0 + +2025-09-24 13:49:17,731 INFO Connection check task end + +2025-09-24 13:49:18,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:20,731 INFO Connection check task start + +2025-09-24 13:49:20,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:20,732 INFO Out dated connection ,size=0 + +2025-09-24 13:49:20,732 INFO Connection check task end + +2025-09-24 13:49:21,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:23,733 INFO Connection check task start + +2025-09-24 13:49:23,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:23,733 INFO Out dated connection ,size=0 + +2025-09-24 13:49:23,733 INFO Connection check task end + +2025-09-24 13:49:24,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:26,733 INFO Connection check task start + +2025-09-24 13:49:26,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:26,733 INFO Out dated connection ,size=0 + +2025-09-24 13:49:26,733 INFO Connection check task end + +2025-09-24 13:49:27,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:29,734 INFO Connection check task start + +2025-09-24 13:49:29,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:29,734 INFO Out dated connection ,size=0 + +2025-09-24 13:49:29,734 INFO Connection check task end + +2025-09-24 13:49:30,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:32,735 INFO Connection check task start + +2025-09-24 13:49:32,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:32,735 INFO Out dated connection ,size=0 + +2025-09-24 13:49:32,735 INFO Connection check task end + +2025-09-24 13:49:33,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:35,737 INFO Connection check task start + +2025-09-24 13:49:35,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:35,737 INFO Out dated connection ,size=0 + +2025-09-24 13:49:35,738 INFO Connection check task end + +2025-09-24 13:49:36,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:38,738 INFO Connection check task start + +2025-09-24 13:49:38,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:38,738 INFO Out dated connection ,size=0 + +2025-09-24 13:49:38,738 INFO Connection check task end + +2025-09-24 13:49:39,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:41,738 INFO Connection check task start + +2025-09-24 13:49:41,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:41,738 INFO Out dated connection ,size=0 + +2025-09-24 13:49:41,738 INFO Connection check task end + +2025-09-24 13:49:42,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:44,739 INFO Connection check task start + +2025-09-24 13:49:44,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:44,739 INFO Out dated connection ,size=0 + +2025-09-24 13:49:44,739 INFO Connection check task end + +2025-09-24 13:49:45,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:47,739 INFO Connection check task start + +2025-09-24 13:49:47,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:47,740 INFO Out dated connection ,size=0 + +2025-09-24 13:49:47,740 INFO Connection check task end + +2025-09-24 13:49:48,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:50,740 INFO Connection check task start + +2025-09-24 13:49:50,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:50,756 INFO Out dated connection ,size=0 + +2025-09-24 13:49:50,757 INFO Connection check task end + +2025-09-24 13:49:51,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:53,757 INFO Connection check task start + +2025-09-24 13:49:53,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:53,757 INFO Out dated connection ,size=0 + +2025-09-24 13:49:53,757 INFO Connection check task end + +2025-09-24 13:49:54,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:56,757 INFO Connection check task start + +2025-09-24 13:49:56,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:56,757 INFO Out dated connection ,size=0 + +2025-09-24 13:49:56,757 INFO Connection check task end + +2025-09-24 13:49:57,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:49:59,758 INFO Connection check task start + +2025-09-24 13:49:59,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:49:59,758 INFO Out dated connection ,size=0 + +2025-09-24 13:49:59,758 INFO Connection check task end + +2025-09-24 13:50:00,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:02,758 INFO Connection check task start + +2025-09-24 13:50:02,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:02,759 INFO Out dated connection ,size=0 + +2025-09-24 13:50:02,759 INFO Connection check task end + +2025-09-24 13:50:03,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:05,759 INFO Connection check task start + +2025-09-24 13:50:05,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:05,759 INFO Out dated connection ,size=0 + +2025-09-24 13:50:05,759 INFO Connection check task end + +2025-09-24 13:50:06,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:08,760 INFO Connection check task start + +2025-09-24 13:50:08,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:08,760 INFO Out dated connection ,size=0 + +2025-09-24 13:50:08,760 INFO Connection check task end + +2025-09-24 13:50:09,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:11,760 INFO Connection check task start + +2025-09-24 13:50:11,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:11,760 INFO Out dated connection ,size=0 + +2025-09-24 13:50:11,760 INFO Connection check task end + +2025-09-24 13:50:12,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:14,760 INFO Connection check task start + +2025-09-24 13:50:14,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:14,761 INFO Out dated connection ,size=0 + +2025-09-24 13:50:14,761 INFO Connection check task end + +2025-09-24 13:50:15,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:17,761 INFO Connection check task start + +2025-09-24 13:50:17,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:17,761 INFO Out dated connection ,size=0 + +2025-09-24 13:50:17,761 INFO Connection check task end + +2025-09-24 13:50:18,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:20,763 INFO Connection check task start + +2025-09-24 13:50:20,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:20,763 INFO Out dated connection ,size=0 + +2025-09-24 13:50:20,763 INFO Connection check task end + +2025-09-24 13:50:21,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:23,764 INFO Connection check task start + +2025-09-24 13:50:23,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:23,764 INFO Out dated connection ,size=0 + +2025-09-24 13:50:23,764 INFO Connection check task end + +2025-09-24 13:50:24,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:26,764 INFO Connection check task start + +2025-09-24 13:50:26,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:26,764 INFO Out dated connection ,size=0 + +2025-09-24 13:50:26,764 INFO Connection check task end + +2025-09-24 13:50:27,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:29,764 INFO Connection check task start + +2025-09-24 13:50:29,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:29,765 INFO Out dated connection ,size=0 + +2025-09-24 13:50:29,765 INFO Connection check task end + +2025-09-24 13:50:30,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:32,765 INFO Connection check task start + +2025-09-24 13:50:32,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:32,765 INFO Out dated connection ,size=0 + +2025-09-24 13:50:32,765 INFO Connection check task end + +2025-09-24 13:50:33,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:35,766 INFO Connection check task start + +2025-09-24 13:50:35,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:35,767 INFO Out dated connection ,size=0 + +2025-09-24 13:50:35,767 INFO Connection check task end + +2025-09-24 13:50:36,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:38,767 INFO Connection check task start + +2025-09-24 13:50:38,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:38,767 INFO Out dated connection ,size=0 + +2025-09-24 13:50:38,767 INFO Connection check task end + +2025-09-24 13:50:39,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:41,768 INFO Connection check task start + +2025-09-24 13:50:41,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:41,768 INFO Out dated connection ,size=0 + +2025-09-24 13:50:41,768 INFO Connection check task end + +2025-09-24 13:50:42,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:44,768 INFO Connection check task start + +2025-09-24 13:50:44,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:44,768 INFO Out dated connection ,size=0 + +2025-09-24 13:50:44,768 INFO Connection check task end + +2025-09-24 13:50:45,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:47,771 INFO Connection check task start + +2025-09-24 13:50:47,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:47,771 INFO Out dated connection ,size=0 + +2025-09-24 13:50:47,771 INFO Connection check task end + +2025-09-24 13:50:48,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:50,772 INFO Connection check task start + +2025-09-24 13:50:50,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:50,772 INFO Out dated connection ,size=0 + +2025-09-24 13:50:50,772 INFO Connection check task end + +2025-09-24 13:50:51,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:53,772 INFO Connection check task start + +2025-09-24 13:50:53,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:53,773 INFO Out dated connection ,size=0 + +2025-09-24 13:50:53,773 INFO Connection check task end + +2025-09-24 13:50:54,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:56,773 INFO Connection check task start + +2025-09-24 13:50:56,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:56,773 INFO Out dated connection ,size=0 + +2025-09-24 13:50:56,773 INFO Connection check task end + +2025-09-24 13:50:57,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:50:59,773 INFO Connection check task start + +2025-09-24 13:50:59,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:50:59,773 INFO Out dated connection ,size=0 + +2025-09-24 13:50:59,773 INFO Connection check task end + +2025-09-24 13:51:00,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:02,775 INFO Connection check task start + +2025-09-24 13:51:02,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:02,775 INFO Out dated connection ,size=0 + +2025-09-24 13:51:02,775 INFO Connection check task end + +2025-09-24 13:51:03,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:05,776 INFO Connection check task start + +2025-09-24 13:51:05,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:05,776 INFO Out dated connection ,size=0 + +2025-09-24 13:51:05,776 INFO Connection check task end + +2025-09-24 13:51:06,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:08,776 INFO Connection check task start + +2025-09-24 13:51:08,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:08,776 INFO Out dated connection ,size=0 + +2025-09-24 13:51:08,776 INFO Connection check task end + +2025-09-24 13:51:09,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:11,776 INFO Connection check task start + +2025-09-24 13:51:11,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:11,777 INFO Out dated connection ,size=0 + +2025-09-24 13:51:11,777 INFO Connection check task end + +2025-09-24 13:51:12,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:14,777 INFO Connection check task start + +2025-09-24 13:51:14,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:14,777 INFO Out dated connection ,size=0 + +2025-09-24 13:51:14,777 INFO Connection check task end + +2025-09-24 13:51:15,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:17,777 INFO Connection check task start + +2025-09-24 13:51:17,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:17,778 INFO Out dated connection ,size=0 + +2025-09-24 13:51:17,778 INFO Connection check task end + +2025-09-24 13:51:18,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:20,778 INFO Connection check task start + +2025-09-24 13:51:20,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:20,778 INFO Out dated connection ,size=0 + +2025-09-24 13:51:20,778 INFO Connection check task end + +2025-09-24 13:51:21,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:23,779 INFO Connection check task start + +2025-09-24 13:51:23,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:23,779 INFO Out dated connection ,size=0 + +2025-09-24 13:51:23,779 INFO Connection check task end + +2025-09-24 13:51:24,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:26,781 INFO Connection check task start + +2025-09-24 13:51:26,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:26,782 INFO Out dated connection ,size=0 + +2025-09-24 13:51:26,782 INFO Connection check task end + +2025-09-24 13:51:27,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:29,783 INFO Connection check task start + +2025-09-24 13:51:29,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:29,783 INFO Out dated connection ,size=0 + +2025-09-24 13:51:29,783 INFO Connection check task end + +2025-09-24 13:51:30,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:32,784 INFO Connection check task start + +2025-09-24 13:51:32,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:32,784 INFO Out dated connection ,size=0 + +2025-09-24 13:51:32,784 INFO Connection check task end + +2025-09-24 13:51:33,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:35,784 INFO Connection check task start + +2025-09-24 13:51:35,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:35,784 INFO Out dated connection ,size=0 + +2025-09-24 13:51:35,784 INFO Connection check task end + +2025-09-24 13:51:36,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:38,785 INFO Connection check task start + +2025-09-24 13:51:38,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:38,785 INFO Out dated connection ,size=0 + +2025-09-24 13:51:38,785 INFO Connection check task end + +2025-09-24 13:51:39,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:41,785 INFO Connection check task start + +2025-09-24 13:51:41,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:41,785 INFO Out dated connection ,size=0 + +2025-09-24 13:51:41,785 INFO Connection check task end + +2025-09-24 13:51:42,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:44,787 INFO Connection check task start + +2025-09-24 13:51:44,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:44,788 INFO Out dated connection ,size=0 + +2025-09-24 13:51:44,788 INFO Connection check task end + +2025-09-24 13:51:45,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:47,789 INFO Connection check task start + +2025-09-24 13:51:47,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:47,789 INFO Out dated connection ,size=0 + +2025-09-24 13:51:47,789 INFO Connection check task end + +2025-09-24 13:51:48,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:50,791 INFO Connection check task start + +2025-09-24 13:51:50,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:50,791 INFO Out dated connection ,size=0 + +2025-09-24 13:51:50,791 INFO Connection check task end + +2025-09-24 13:51:51,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:53,792 INFO Connection check task start + +2025-09-24 13:51:53,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:53,792 INFO Out dated connection ,size=0 + +2025-09-24 13:51:53,792 INFO Connection check task end + +2025-09-24 13:51:54,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:56,794 INFO Connection check task start + +2025-09-24 13:51:56,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:56,794 INFO Out dated connection ,size=0 + +2025-09-24 13:51:56,794 INFO Connection check task end + +2025-09-24 13:51:57,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:51:59,795 INFO Connection check task start + +2025-09-24 13:51:59,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:51:59,795 INFO Out dated connection ,size=0 + +2025-09-24 13:51:59,795 INFO Connection check task end + +2025-09-24 13:52:00,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:02,796 INFO Connection check task start + +2025-09-24 13:52:02,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:02,796 INFO Out dated connection ,size=0 + +2025-09-24 13:52:02,796 INFO Connection check task end + +2025-09-24 13:52:03,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:05,797 INFO Connection check task start + +2025-09-24 13:52:05,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:05,797 INFO Out dated connection ,size=0 + +2025-09-24 13:52:05,797 INFO Connection check task end + +2025-09-24 13:52:06,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:08,799 INFO Connection check task start + +2025-09-24 13:52:08,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:08,799 INFO Out dated connection ,size=0 + +2025-09-24 13:52:08,799 INFO Connection check task end + +2025-09-24 13:52:09,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:11,800 INFO Connection check task start + +2025-09-24 13:52:11,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:11,800 INFO Out dated connection ,size=0 + +2025-09-24 13:52:11,800 INFO Connection check task end + +2025-09-24 13:52:12,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:14,802 INFO Connection check task start + +2025-09-24 13:52:14,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:14,802 INFO Out dated connection ,size=0 + +2025-09-24 13:52:14,802 INFO Connection check task end + +2025-09-24 13:52:15,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:17,802 INFO Connection check task start + +2025-09-24 13:52:17,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:17,803 INFO Out dated connection ,size=0 + +2025-09-24 13:52:17,803 INFO Connection check task end + +2025-09-24 13:52:18,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:20,805 INFO Connection check task start + +2025-09-24 13:52:20,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:20,805 INFO Out dated connection ,size=0 + +2025-09-24 13:52:20,805 INFO Connection check task end + +2025-09-24 13:52:21,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:23,807 INFO Connection check task start + +2025-09-24 13:52:23,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:23,807 INFO Out dated connection ,size=0 + +2025-09-24 13:52:23,807 INFO Connection check task end + +2025-09-24 13:52:24,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:26,808 INFO Connection check task start + +2025-09-24 13:52:26,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:26,808 INFO Out dated connection ,size=0 + +2025-09-24 13:52:26,808 INFO Connection check task end + +2025-09-24 13:52:27,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:29,809 INFO Connection check task start + +2025-09-24 13:52:29,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:29,809 INFO Out dated connection ,size=0 + +2025-09-24 13:52:29,809 INFO Connection check task end + +2025-09-24 13:52:30,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:32,809 INFO Connection check task start + +2025-09-24 13:52:32,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:32,809 INFO Out dated connection ,size=0 + +2025-09-24 13:52:32,809 INFO Connection check task end + +2025-09-24 13:52:33,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:35,810 INFO Connection check task start + +2025-09-24 13:52:35,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:35,810 INFO Out dated connection ,size=0 + +2025-09-24 13:52:35,810 INFO Connection check task end + +2025-09-24 13:52:36,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:38,810 INFO Connection check task start + +2025-09-24 13:52:38,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:38,810 INFO Out dated connection ,size=0 + +2025-09-24 13:52:38,810 INFO Connection check task end + +2025-09-24 13:52:39,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:41,812 INFO Connection check task start + +2025-09-24 13:52:41,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:41,812 INFO Out dated connection ,size=0 + +2025-09-24 13:52:41,812 INFO Connection check task end + +2025-09-24 13:52:42,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:44,813 INFO Connection check task start + +2025-09-24 13:52:44,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:44,814 INFO Out dated connection ,size=0 + +2025-09-24 13:52:44,814 INFO Connection check task end + +2025-09-24 13:52:45,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:47,814 INFO Connection check task start + +2025-09-24 13:52:47,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:47,815 INFO Out dated connection ,size=0 + +2025-09-24 13:52:47,815 INFO Connection check task end + +2025-09-24 13:52:48,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:50,817 INFO Connection check task start + +2025-09-24 13:52:50,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:50,817 INFO Out dated connection ,size=0 + +2025-09-24 13:52:50,817 INFO Connection check task end + +2025-09-24 13:52:51,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:53,819 INFO Connection check task start + +2025-09-24 13:52:53,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:53,819 INFO Out dated connection ,size=0 + +2025-09-24 13:52:53,819 INFO Connection check task end + +2025-09-24 13:52:54,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:56,821 INFO Connection check task start + +2025-09-24 13:52:56,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:56,822 INFO Out dated connection ,size=0 + +2025-09-24 13:52:56,822 INFO Connection check task end + +2025-09-24 13:52:57,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:52:59,822 INFO Connection check task start + +2025-09-24 13:52:59,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:52:59,822 INFO Out dated connection ,size=0 + +2025-09-24 13:52:59,823 INFO Connection check task end + +2025-09-24 13:53:00,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:02,823 INFO Connection check task start + +2025-09-24 13:53:02,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:02,823 INFO Out dated connection ,size=0 + +2025-09-24 13:53:02,823 INFO Connection check task end + +2025-09-24 13:53:03,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:05,825 INFO Connection check task start + +2025-09-24 13:53:05,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:05,826 INFO Out dated connection ,size=0 + +2025-09-24 13:53:05,826 INFO Connection check task end + +2025-09-24 13:53:06,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:08,827 INFO Connection check task start + +2025-09-24 13:53:08,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:08,827 INFO Out dated connection ,size=0 + +2025-09-24 13:53:08,827 INFO Connection check task end + +2025-09-24 13:53:09,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:11,828 INFO Connection check task start + +2025-09-24 13:53:11,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:11,828 INFO Out dated connection ,size=0 + +2025-09-24 13:53:11,828 INFO Connection check task end + +2025-09-24 13:53:12,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:14,828 INFO Connection check task start + +2025-09-24 13:53:14,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:14,829 INFO Out dated connection ,size=0 + +2025-09-24 13:53:14,829 INFO Connection check task end + +2025-09-24 13:53:15,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:17,829 INFO Connection check task start + +2025-09-24 13:53:17,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:17,829 INFO Out dated connection ,size=0 + +2025-09-24 13:53:17,829 INFO Connection check task end + +2025-09-24 13:53:18,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:20,831 INFO Connection check task start + +2025-09-24 13:53:20,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:20,831 INFO Out dated connection ,size=0 + +2025-09-24 13:53:20,831 INFO Connection check task end + +2025-09-24 13:53:21,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:23,834 INFO Connection check task start + +2025-09-24 13:53:23,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:23,834 INFO Out dated connection ,size=0 + +2025-09-24 13:53:23,834 INFO Connection check task end + +2025-09-24 13:53:24,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:26,834 INFO Connection check task start + +2025-09-24 13:53:26,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:26,834 INFO Out dated connection ,size=0 + +2025-09-24 13:53:26,834 INFO Connection check task end + +2025-09-24 13:53:27,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:29,836 INFO Connection check task start + +2025-09-24 13:53:29,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:29,836 INFO Out dated connection ,size=0 + +2025-09-24 13:53:29,836 INFO Connection check task end + +2025-09-24 13:53:30,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:32,837 INFO Connection check task start + +2025-09-24 13:53:32,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:32,837 INFO Out dated connection ,size=0 + +2025-09-24 13:53:32,837 INFO Connection check task end + +2025-09-24 13:53:33,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:35,838 INFO Connection check task start + +2025-09-24 13:53:35,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:35,838 INFO Out dated connection ,size=0 + +2025-09-24 13:53:35,838 INFO Connection check task end + +2025-09-24 13:53:36,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:38,841 INFO Connection check task start + +2025-09-24 13:53:38,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:38,841 INFO Out dated connection ,size=0 + +2025-09-24 13:53:38,841 INFO Connection check task end + +2025-09-24 13:53:39,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:41,841 INFO Connection check task start + +2025-09-24 13:53:41,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:41,841 INFO Out dated connection ,size=0 + +2025-09-24 13:53:41,841 INFO Connection check task end + +2025-09-24 13:53:42,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:44,844 INFO Connection check task start + +2025-09-24 13:53:44,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:44,844 INFO Out dated connection ,size=0 + +2025-09-24 13:53:44,844 INFO Connection check task end + +2025-09-24 13:53:45,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:47,844 INFO Connection check task start + +2025-09-24 13:53:47,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:47,844 INFO Out dated connection ,size=0 + +2025-09-24 13:53:47,844 INFO Connection check task end + +2025-09-24 13:53:48,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:50,846 INFO Connection check task start + +2025-09-24 13:53:50,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:50,846 INFO Out dated connection ,size=0 + +2025-09-24 13:53:50,846 INFO Connection check task end + +2025-09-24 13:53:51,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:53,847 INFO Connection check task start + +2025-09-24 13:53:53,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:53,847 INFO Out dated connection ,size=0 + +2025-09-24 13:53:53,847 INFO Connection check task end + +2025-09-24 13:53:54,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:56,849 INFO Connection check task start + +2025-09-24 13:53:56,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:56,849 INFO Out dated connection ,size=0 + +2025-09-24 13:53:56,849 INFO Connection check task end + +2025-09-24 13:53:57,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:53:59,849 INFO Connection check task start + +2025-09-24 13:53:59,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:53:59,849 INFO Out dated connection ,size=0 + +2025-09-24 13:53:59,849 INFO Connection check task end + +2025-09-24 13:54:00,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:02,850 INFO Connection check task start + +2025-09-24 13:54:02,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:02,850 INFO Out dated connection ,size=0 + +2025-09-24 13:54:02,850 INFO Connection check task end + +2025-09-24 13:54:03,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:05,850 INFO Connection check task start + +2025-09-24 13:54:05,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:05,850 INFO Out dated connection ,size=0 + +2025-09-24 13:54:05,850 INFO Connection check task end + +2025-09-24 13:54:06,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:08,851 INFO Connection check task start + +2025-09-24 13:54:08,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:08,851 INFO Out dated connection ,size=0 + +2025-09-24 13:54:08,851 INFO Connection check task end + +2025-09-24 13:54:09,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:11,853 INFO Connection check task start + +2025-09-24 13:54:11,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:11,853 INFO Out dated connection ,size=0 + +2025-09-24 13:54:11,853 INFO Connection check task end + +2025-09-24 13:54:12,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:14,856 INFO Connection check task start + +2025-09-24 13:54:14,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:14,856 INFO Out dated connection ,size=0 + +2025-09-24 13:54:14,856 INFO Connection check task end + +2025-09-24 13:54:15,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:17,856 INFO Connection check task start + +2025-09-24 13:54:17,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:17,857 INFO Out dated connection ,size=0 + +2025-09-24 13:54:17,857 INFO Connection check task end + +2025-09-24 13:54:18,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:20,859 INFO Connection check task start + +2025-09-24 13:54:20,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:20,859 INFO Out dated connection ,size=0 + +2025-09-24 13:54:20,859 INFO Connection check task end + +2025-09-24 13:54:21,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:23,860 INFO Connection check task start + +2025-09-24 13:54:23,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:23,860 INFO Out dated connection ,size=0 + +2025-09-24 13:54:23,860 INFO Connection check task end + +2025-09-24 13:54:24,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:26,860 INFO Connection check task start + +2025-09-24 13:54:26,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:26,860 INFO Out dated connection ,size=0 + +2025-09-24 13:54:26,860 INFO Connection check task end + +2025-09-24 13:54:27,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:29,861 INFO Connection check task start + +2025-09-24 13:54:29,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:29,861 INFO Out dated connection ,size=0 + +2025-09-24 13:54:29,861 INFO Connection check task end + +2025-09-24 13:54:30,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:32,863 INFO Connection check task start + +2025-09-24 13:54:32,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:32,863 INFO Out dated connection ,size=0 + +2025-09-24 13:54:32,863 INFO Connection check task end + +2025-09-24 13:54:33,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:35,865 INFO Connection check task start + +2025-09-24 13:54:35,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:35,865 INFO Out dated connection ,size=0 + +2025-09-24 13:54:35,866 INFO Connection check task end + +2025-09-24 13:54:36,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:38,866 INFO Connection check task start + +2025-09-24 13:54:38,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:38,866 INFO Out dated connection ,size=0 + +2025-09-24 13:54:38,867 INFO Connection check task end + +2025-09-24 13:54:39,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:41,868 INFO Connection check task start + +2025-09-24 13:54:41,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:41,869 INFO Out dated connection ,size=0 + +2025-09-24 13:54:41,869 INFO Connection check task end + +2025-09-24 13:54:42,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:44,871 INFO Connection check task start + +2025-09-24 13:54:44,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:44,871 INFO Out dated connection ,size=0 + +2025-09-24 13:54:44,871 INFO Connection check task end + +2025-09-24 13:54:45,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:47,871 INFO Connection check task start + +2025-09-24 13:54:47,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:47,872 INFO Out dated connection ,size=0 + +2025-09-24 13:54:47,872 INFO Connection check task end + +2025-09-24 13:54:48,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:50,873 INFO Connection check task start + +2025-09-24 13:54:50,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:50,873 INFO Out dated connection ,size=0 + +2025-09-24 13:54:50,873 INFO Connection check task end + +2025-09-24 13:54:51,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:53,875 INFO Connection check task start + +2025-09-24 13:54:53,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:53,875 INFO Out dated connection ,size=0 + +2025-09-24 13:54:53,875 INFO Connection check task end + +2025-09-24 13:54:54,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:56,877 INFO Connection check task start + +2025-09-24 13:54:56,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:56,877 INFO Out dated connection ,size=0 + +2025-09-24 13:54:56,877 INFO Connection check task end + +2025-09-24 13:54:57,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:54:59,878 INFO Connection check task start + +2025-09-24 13:54:59,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:54:59,878 INFO Out dated connection ,size=0 + +2025-09-24 13:54:59,878 INFO Connection check task end + +2025-09-24 13:55:00,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:02,880 INFO Connection check task start + +2025-09-24 13:55:02,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:02,880 INFO Out dated connection ,size=0 + +2025-09-24 13:55:02,881 INFO Connection check task end + +2025-09-24 13:55:03,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:05,881 INFO Connection check task start + +2025-09-24 13:55:05,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:05,882 INFO Out dated connection ,size=0 + +2025-09-24 13:55:05,882 INFO Connection check task end + +2025-09-24 13:55:06,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:08,884 INFO Connection check task start + +2025-09-24 13:55:08,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:08,884 INFO Out dated connection ,size=0 + +2025-09-24 13:55:08,884 INFO Connection check task end + +2025-09-24 13:55:09,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:11,884 INFO Connection check task start + +2025-09-24 13:55:11,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:11,884 INFO Out dated connection ,size=0 + +2025-09-24 13:55:11,884 INFO Connection check task end + +2025-09-24 13:55:12,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:14,886 INFO Connection check task start + +2025-09-24 13:55:14,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:14,887 INFO Out dated connection ,size=0 + +2025-09-24 13:55:14,887 INFO Connection check task end + +2025-09-24 13:55:15,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:17,888 INFO Connection check task start + +2025-09-24 13:55:17,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:17,889 INFO Out dated connection ,size=0 + +2025-09-24 13:55:17,889 INFO Connection check task end + +2025-09-24 13:55:18,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:20,890 INFO Connection check task start + +2025-09-24 13:55:20,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:20,891 INFO Out dated connection ,size=0 + +2025-09-24 13:55:20,891 INFO Connection check task end + +2025-09-24 13:55:21,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:23,893 INFO Connection check task start + +2025-09-24 13:55:23,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:23,893 INFO Out dated connection ,size=0 + +2025-09-24 13:55:23,893 INFO Connection check task end + +2025-09-24 13:55:24,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:26,893 INFO Connection check task start + +2025-09-24 13:55:26,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:26,894 INFO Out dated connection ,size=0 + +2025-09-24 13:55:26,894 INFO Connection check task end + +2025-09-24 13:55:27,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:29,896 INFO Connection check task start + +2025-09-24 13:55:29,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:29,896 INFO Out dated connection ,size=0 + +2025-09-24 13:55:29,896 INFO Connection check task end + +2025-09-24 13:55:30,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:32,898 INFO Connection check task start + +2025-09-24 13:55:32,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:32,898 INFO Out dated connection ,size=0 + +2025-09-24 13:55:32,898 INFO Connection check task end + +2025-09-24 13:55:33,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:35,900 INFO Connection check task start + +2025-09-24 13:55:35,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:35,900 INFO Out dated connection ,size=0 + +2025-09-24 13:55:35,901 INFO Connection check task end + +2025-09-24 13:55:36,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:38,901 INFO Connection check task start + +2025-09-24 13:55:38,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:38,902 INFO Out dated connection ,size=0 + +2025-09-24 13:55:38,902 INFO Connection check task end + +2025-09-24 13:55:39,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:41,902 INFO Connection check task start + +2025-09-24 13:55:41,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:41,902 INFO Out dated connection ,size=0 + +2025-09-24 13:55:41,902 INFO Connection check task end + +2025-09-24 13:55:42,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:44,902 INFO Connection check task start + +2025-09-24 13:55:44,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:44,902 INFO Out dated connection ,size=0 + +2025-09-24 13:55:44,903 INFO Connection check task end + +2025-09-24 13:55:45,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:47,904 INFO Connection check task start + +2025-09-24 13:55:47,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:47,904 INFO Out dated connection ,size=0 + +2025-09-24 13:55:47,904 INFO Connection check task end + +2025-09-24 13:55:48,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:50,906 INFO Connection check task start + +2025-09-24 13:55:50,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:50,906 INFO Out dated connection ,size=0 + +2025-09-24 13:55:50,906 INFO Connection check task end + +2025-09-24 13:55:51,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:53,906 INFO Connection check task start + +2025-09-24 13:55:53,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:53,907 INFO Out dated connection ,size=0 + +2025-09-24 13:55:53,907 INFO Connection check task end + +2025-09-24 13:55:54,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:56,907 INFO Connection check task start + +2025-09-24 13:55:56,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:56,907 INFO Out dated connection ,size=0 + +2025-09-24 13:55:56,907 INFO Connection check task end + +2025-09-24 13:55:57,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:55:59,907 INFO Connection check task start + +2025-09-24 13:55:59,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:55:59,907 INFO Out dated connection ,size=0 + +2025-09-24 13:55:59,907 INFO Connection check task end + +2025-09-24 13:56:00,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:02,908 INFO Connection check task start + +2025-09-24 13:56:02,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:02,908 INFO Out dated connection ,size=0 + +2025-09-24 13:56:02,908 INFO Connection check task end + +2025-09-24 13:56:03,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:05,908 INFO Connection check task start + +2025-09-24 13:56:05,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:05,909 INFO Out dated connection ,size=0 + +2025-09-24 13:56:05,909 INFO Connection check task end + +2025-09-24 13:56:06,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:08,909 INFO Connection check task start + +2025-09-24 13:56:08,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:08,909 INFO Out dated connection ,size=0 + +2025-09-24 13:56:08,909 INFO Connection check task end + +2025-09-24 13:56:09,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:11,910 INFO Connection check task start + +2025-09-24 13:56:11,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:11,910 INFO Out dated connection ,size=0 + +2025-09-24 13:56:11,910 INFO Connection check task end + +2025-09-24 13:56:12,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:14,910 INFO Connection check task start + +2025-09-24 13:56:14,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:14,910 INFO Out dated connection ,size=0 + +2025-09-24 13:56:14,910 INFO Connection check task end + +2025-09-24 13:56:15,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:17,912 INFO Connection check task start + +2025-09-24 13:56:17,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:17,913 INFO Out dated connection ,size=0 + +2025-09-24 13:56:17,913 INFO Connection check task end + +2025-09-24 13:56:18,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:20,913 INFO Connection check task start + +2025-09-24 13:56:20,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:20,913 INFO Out dated connection ,size=0 + +2025-09-24 13:56:20,913 INFO Connection check task end + +2025-09-24 13:56:21,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:23,915 INFO Connection check task start + +2025-09-24 13:56:23,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:23,915 INFO Out dated connection ,size=0 + +2025-09-24 13:56:23,915 INFO Connection check task end + +2025-09-24 13:56:24,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:26,917 INFO Connection check task start + +2025-09-24 13:56:26,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:26,917 INFO Out dated connection ,size=0 + +2025-09-24 13:56:26,917 INFO Connection check task end + +2025-09-24 13:56:27,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:29,919 INFO Connection check task start + +2025-09-24 13:56:29,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:29,919 INFO Out dated connection ,size=0 + +2025-09-24 13:56:29,919 INFO Connection check task end + +2025-09-24 13:56:30,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:32,922 INFO Connection check task start + +2025-09-24 13:56:32,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:32,922 INFO Out dated connection ,size=0 + +2025-09-24 13:56:32,922 INFO Connection check task end + +2025-09-24 13:56:33,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:35,922 INFO Connection check task start + +2025-09-24 13:56:35,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:35,922 INFO Out dated connection ,size=0 + +2025-09-24 13:56:35,922 INFO Connection check task end + +2025-09-24 13:56:36,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:38,924 INFO Connection check task start + +2025-09-24 13:56:38,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:38,924 INFO Out dated connection ,size=0 + +2025-09-24 13:56:38,924 INFO Connection check task end + +2025-09-24 13:56:39,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:41,925 INFO Connection check task start + +2025-09-24 13:56:41,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:41,925 INFO Out dated connection ,size=0 + +2025-09-24 13:56:41,925 INFO Connection check task end + +2025-09-24 13:56:42,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:44,927 INFO Connection check task start + +2025-09-24 13:56:44,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:44,927 INFO Out dated connection ,size=0 + +2025-09-24 13:56:44,928 INFO Connection check task end + +2025-09-24 13:56:45,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:47,929 INFO Connection check task start + +2025-09-24 13:56:47,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:47,929 INFO Out dated connection ,size=0 + +2025-09-24 13:56:47,929 INFO Connection check task end + +2025-09-24 13:56:48,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:50,929 INFO Connection check task start + +2025-09-24 13:56:50,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:50,930 INFO Out dated connection ,size=0 + +2025-09-24 13:56:50,930 INFO Connection check task end + +2025-09-24 13:56:51,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:53,932 INFO Connection check task start + +2025-09-24 13:56:53,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:53,932 INFO Out dated connection ,size=0 + +2025-09-24 13:56:53,932 INFO Connection check task end + +2025-09-24 13:56:54,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:56,934 INFO Connection check task start + +2025-09-24 13:56:56,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:56,934 INFO Out dated connection ,size=0 + +2025-09-24 13:56:56,934 INFO Connection check task end + +2025-09-24 13:56:57,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:56:59,936 INFO Connection check task start + +2025-09-24 13:56:59,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:56:59,936 INFO Out dated connection ,size=0 + +2025-09-24 13:56:59,936 INFO Connection check task end + +2025-09-24 13:57:00,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:02,938 INFO Connection check task start + +2025-09-24 13:57:02,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:02,939 INFO Out dated connection ,size=0 + +2025-09-24 13:57:02,939 INFO Connection check task end + +2025-09-24 13:57:03,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:05,939 INFO Connection check task start + +2025-09-24 13:57:05,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:05,939 INFO Out dated connection ,size=0 + +2025-09-24 13:57:05,939 INFO Connection check task end + +2025-09-24 13:57:06,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:08,940 INFO Connection check task start + +2025-09-24 13:57:08,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:08,940 INFO Out dated connection ,size=0 + +2025-09-24 13:57:08,940 INFO Connection check task end + +2025-09-24 13:57:09,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:11,940 INFO Connection check task start + +2025-09-24 13:57:11,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:11,941 INFO Out dated connection ,size=0 + +2025-09-24 13:57:11,941 INFO Connection check task end + +2025-09-24 13:57:12,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:14,941 INFO Connection check task start + +2025-09-24 13:57:14,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:14,941 INFO Out dated connection ,size=0 + +2025-09-24 13:57:14,941 INFO Connection check task end + +2025-09-24 13:57:15,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:17,941 INFO Connection check task start + +2025-09-24 13:57:17,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:17,942 INFO Out dated connection ,size=0 + +2025-09-24 13:57:17,942 INFO Connection check task end + +2025-09-24 13:57:18,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:20,943 INFO Connection check task start + +2025-09-24 13:57:20,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:20,943 INFO Out dated connection ,size=0 + +2025-09-24 13:57:20,943 INFO Connection check task end + +2025-09-24 13:57:21,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:23,944 INFO Connection check task start + +2025-09-24 13:57:23,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:23,944 INFO Out dated connection ,size=0 + +2025-09-24 13:57:23,944 INFO Connection check task end + +2025-09-24 13:57:24,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:26,946 INFO Connection check task start + +2025-09-24 13:57:26,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:26,946 INFO Out dated connection ,size=0 + +2025-09-24 13:57:26,946 INFO Connection check task end + +2025-09-24 13:57:27,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:29,946 INFO Connection check task start + +2025-09-24 13:57:29,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:29,947 INFO Out dated connection ,size=0 + +2025-09-24 13:57:29,947 INFO Connection check task end + +2025-09-24 13:57:30,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:32,947 INFO Connection check task start + +2025-09-24 13:57:32,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:32,947 INFO Out dated connection ,size=0 + +2025-09-24 13:57:32,947 INFO Connection check task end + +2025-09-24 13:57:33,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:35,947 INFO Connection check task start + +2025-09-24 13:57:35,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:35,948 INFO Out dated connection ,size=0 + +2025-09-24 13:57:35,948 INFO Connection check task end + +2025-09-24 13:57:36,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:38,950 INFO Connection check task start + +2025-09-24 13:57:38,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:38,950 INFO Out dated connection ,size=0 + +2025-09-24 13:57:38,950 INFO Connection check task end + +2025-09-24 13:57:39,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:41,950 INFO Connection check task start + +2025-09-24 13:57:41,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:41,950 INFO Out dated connection ,size=0 + +2025-09-24 13:57:41,950 INFO Connection check task end + +2025-09-24 13:57:42,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:44,950 INFO Connection check task start + +2025-09-24 13:57:44,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:44,951 INFO Out dated connection ,size=0 + +2025-09-24 13:57:44,951 INFO Connection check task end + +2025-09-24 13:57:45,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:47,952 INFO Connection check task start + +2025-09-24 13:57:47,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:47,952 INFO Out dated connection ,size=0 + +2025-09-24 13:57:47,952 INFO Connection check task end + +2025-09-24 13:57:48,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:50,952 INFO Connection check task start + +2025-09-24 13:57:50,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:50,953 INFO Out dated connection ,size=0 + +2025-09-24 13:57:50,953 INFO Connection check task end + +2025-09-24 13:57:51,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:53,955 INFO Connection check task start + +2025-09-24 13:57:53,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:53,955 INFO Out dated connection ,size=0 + +2025-09-24 13:57:53,955 INFO Connection check task end + +2025-09-24 13:57:54,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:56,957 INFO Connection check task start + +2025-09-24 13:57:56,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:56,957 INFO Out dated connection ,size=0 + +2025-09-24 13:57:56,957 INFO Connection check task end + +2025-09-24 13:57:57,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:57:59,959 INFO Connection check task start + +2025-09-24 13:57:59,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:57:59,959 INFO Out dated connection ,size=0 + +2025-09-24 13:57:59,959 INFO Connection check task end + +2025-09-24 13:58:00,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:02,960 INFO Connection check task start + +2025-09-24 13:58:02,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:02,960 INFO Out dated connection ,size=0 + +2025-09-24 13:58:02,960 INFO Connection check task end + +2025-09-24 13:58:03,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:05,962 INFO Connection check task start + +2025-09-24 13:58:05,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:05,962 INFO Out dated connection ,size=0 + +2025-09-24 13:58:05,962 INFO Connection check task end + +2025-09-24 13:58:06,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:08,963 INFO Connection check task start + +2025-09-24 13:58:08,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:08,964 INFO Out dated connection ,size=0 + +2025-09-24 13:58:08,964 INFO Connection check task end + +2025-09-24 13:58:09,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:11,964 INFO Connection check task start + +2025-09-24 13:58:11,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:11,964 INFO Out dated connection ,size=0 + +2025-09-24 13:58:11,964 INFO Connection check task end + +2025-09-24 13:58:12,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:14,965 INFO Connection check task start + +2025-09-24 13:58:14,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:14,965 INFO Out dated connection ,size=0 + +2025-09-24 13:58:14,965 INFO Connection check task end + +2025-09-24 13:58:15,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:17,966 INFO Connection check task start + +2025-09-24 13:58:17,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:17,966 INFO Out dated connection ,size=0 + +2025-09-24 13:58:17,966 INFO Connection check task end + +2025-09-24 13:58:18,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:20,967 INFO Connection check task start + +2025-09-24 13:58:20,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:20,968 INFO Out dated connection ,size=0 + +2025-09-24 13:58:20,968 INFO Connection check task end + +2025-09-24 13:58:21,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:23,970 INFO Connection check task start + +2025-09-24 13:58:23,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:23,970 INFO Out dated connection ,size=0 + +2025-09-24 13:58:23,970 INFO Connection check task end + +2025-09-24 13:58:24,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:26,970 INFO Connection check task start + +2025-09-24 13:58:26,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:26,970 INFO Out dated connection ,size=0 + +2025-09-24 13:58:26,970 INFO Connection check task end + +2025-09-24 13:58:27,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:29,972 INFO Connection check task start + +2025-09-24 13:58:29,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:29,972 INFO Out dated connection ,size=0 + +2025-09-24 13:58:29,972 INFO Connection check task end + +2025-09-24 13:58:30,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:32,973 INFO Connection check task start + +2025-09-24 13:58:32,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:32,973 INFO Out dated connection ,size=0 + +2025-09-24 13:58:32,973 INFO Connection check task end + +2025-09-24 13:58:33,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:35,973 INFO Connection check task start + +2025-09-24 13:58:35,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:35,974 INFO Out dated connection ,size=0 + +2025-09-24 13:58:35,974 INFO Connection check task end + +2025-09-24 13:58:36,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:38,974 INFO Connection check task start + +2025-09-24 13:58:38,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:38,974 INFO Out dated connection ,size=0 + +2025-09-24 13:58:38,974 INFO Connection check task end + +2025-09-24 13:58:39,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:41,974 INFO Connection check task start + +2025-09-24 13:58:41,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:41,974 INFO Out dated connection ,size=0 + +2025-09-24 13:58:41,975 INFO Connection check task end + +2025-09-24 13:58:42,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:44,975 INFO Connection check task start + +2025-09-24 13:58:44,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:44,975 INFO Out dated connection ,size=0 + +2025-09-24 13:58:44,975 INFO Connection check task end + +2025-09-24 13:58:45,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:47,977 INFO Connection check task start + +2025-09-24 13:58:47,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:47,977 INFO Out dated connection ,size=0 + +2025-09-24 13:58:47,977 INFO Connection check task end + +2025-09-24 13:58:48,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:50,978 INFO Connection check task start + +2025-09-24 13:58:50,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:50,978 INFO Out dated connection ,size=0 + +2025-09-24 13:58:50,978 INFO Connection check task end + +2025-09-24 13:58:51,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:53,980 INFO Connection check task start + +2025-09-24 13:58:53,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:53,980 INFO Out dated connection ,size=0 + +2025-09-24 13:58:53,980 INFO Connection check task end + +2025-09-24 13:58:54,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:56,980 INFO Connection check task start + +2025-09-24 13:58:56,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:56,980 INFO Out dated connection ,size=0 + +2025-09-24 13:58:56,980 INFO Connection check task end + +2025-09-24 13:58:57,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:58:59,981 INFO Connection check task start + +2025-09-24 13:58:59,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:58:59,981 INFO Out dated connection ,size=0 + +2025-09-24 13:58:59,981 INFO Connection check task end + +2025-09-24 13:59:00,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:02,981 INFO Connection check task start + +2025-09-24 13:59:02,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:02,981 INFO Out dated connection ,size=0 + +2025-09-24 13:59:02,981 INFO Connection check task end + +2025-09-24 13:59:03,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:05,982 INFO Connection check task start + +2025-09-24 13:59:05,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:05,982 INFO Out dated connection ,size=0 + +2025-09-24 13:59:05,982 INFO Connection check task end + +2025-09-24 13:59:06,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:08,984 INFO Connection check task start + +2025-09-24 13:59:08,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:08,984 INFO Out dated connection ,size=0 + +2025-09-24 13:59:08,984 INFO Connection check task end + +2025-09-24 13:59:09,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:11,986 INFO Connection check task start + +2025-09-24 13:59:11,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:11,986 INFO Out dated connection ,size=0 + +2025-09-24 13:59:11,986 INFO Connection check task end + +2025-09-24 13:59:12,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:14,986 INFO Connection check task start + +2025-09-24 13:59:14,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:14,986 INFO Out dated connection ,size=0 + +2025-09-24 13:59:14,986 INFO Connection check task end + +2025-09-24 13:59:15,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:17,986 INFO Connection check task start + +2025-09-24 13:59:17,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:17,987 INFO Out dated connection ,size=0 + +2025-09-24 13:59:17,987 INFO Connection check task end + +2025-09-24 13:59:18,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:20,987 INFO Connection check task start + +2025-09-24 13:59:20,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:20,987 INFO Out dated connection ,size=0 + +2025-09-24 13:59:20,987 INFO Connection check task end + +2025-09-24 13:59:21,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:23,989 INFO Connection check task start + +2025-09-24 13:59:23,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:23,989 INFO Out dated connection ,size=0 + +2025-09-24 13:59:23,989 INFO Connection check task end + +2025-09-24 13:59:24,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:26,990 INFO Connection check task start + +2025-09-24 13:59:26,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:26,991 INFO Out dated connection ,size=0 + +2025-09-24 13:59:26,991 INFO Connection check task end + +2025-09-24 13:59:27,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:29,992 INFO Connection check task start + +2025-09-24 13:59:29,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:29,993 INFO Out dated connection ,size=0 + +2025-09-24 13:59:29,993 INFO Connection check task end + +2025-09-24 13:59:30,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:32,993 INFO Connection check task start + +2025-09-24 13:59:32,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:32,993 INFO Out dated connection ,size=0 + +2025-09-24 13:59:32,993 INFO Connection check task end + +2025-09-24 13:59:33,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:35,994 INFO Connection check task start + +2025-09-24 13:59:35,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:35,994 INFO Out dated connection ,size=0 + +2025-09-24 13:59:35,994 INFO Connection check task end + +2025-09-24 13:59:36,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:38,995 INFO Connection check task start + +2025-09-24 13:59:38,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:38,995 INFO Out dated connection ,size=0 + +2025-09-24 13:59:38,995 INFO Connection check task end + +2025-09-24 13:59:39,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:41,996 INFO Connection check task start + +2025-09-24 13:59:41,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:41,996 INFO Out dated connection ,size=0 + +2025-09-24 13:59:41,996 INFO Connection check task end + +2025-09-24 13:59:42,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:44,996 INFO Connection check task start + +2025-09-24 13:59:44,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:44,997 INFO Out dated connection ,size=0 + +2025-09-24 13:59:44,997 INFO Connection check task end + +2025-09-24 13:59:45,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:47,997 INFO Connection check task start + +2025-09-24 13:59:47,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:47,997 INFO Out dated connection ,size=0 + +2025-09-24 13:59:47,997 INFO Connection check task end + +2025-09-24 13:59:48,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:50,997 INFO Connection check task start + +2025-09-24 13:59:50,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:50,998 INFO Out dated connection ,size=0 + +2025-09-24 13:59:50,998 INFO Connection check task end + +2025-09-24 13:59:51,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:53,998 INFO Connection check task start + +2025-09-24 13:59:53,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:53,999 INFO Out dated connection ,size=0 + +2025-09-24 13:59:53,999 INFO Connection check task end + +2025-09-24 13:59:54,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 13:59:56,999 INFO Connection check task start + +2025-09-24 13:59:56,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 13:59:56,999 INFO Out dated connection ,size=0 + +2025-09-24 13:59:56,999 INFO Connection check task end + +2025-09-24 13:59:57,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:00,000 INFO Connection check task start + +2025-09-24 14:00:00,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:00,000 INFO Out dated connection ,size=0 + +2025-09-24 14:00:00,000 INFO Connection check task end + +2025-09-24 14:00:00,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:03,002 INFO Connection check task start + +2025-09-24 14:00:03,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:03,002 INFO Out dated connection ,size=0 + +2025-09-24 14:00:03,002 INFO Connection check task end + +2025-09-24 14:00:03,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:06,003 INFO Connection check task start + +2025-09-24 14:00:06,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:06,003 INFO Out dated connection ,size=0 + +2025-09-24 14:00:06,003 INFO Connection check task end + +2025-09-24 14:00:06,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:09,004 INFO Connection check task start + +2025-09-24 14:00:09,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:09,004 INFO Out dated connection ,size=0 + +2025-09-24 14:00:09,004 INFO Connection check task end + +2025-09-24 14:00:09,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:12,004 INFO Connection check task start + +2025-09-24 14:00:12,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:12,004 INFO Out dated connection ,size=0 + +2025-09-24 14:00:12,004 INFO Connection check task end + +2025-09-24 14:00:12,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:15,007 INFO Connection check task start + +2025-09-24 14:00:15,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:15,007 INFO Out dated connection ,size=0 + +2025-09-24 14:00:15,007 INFO Connection check task end + +2025-09-24 14:00:15,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:18,007 INFO Connection check task start + +2025-09-24 14:00:18,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:18,007 INFO Out dated connection ,size=0 + +2025-09-24 14:00:18,007 INFO Connection check task end + +2025-09-24 14:00:18,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:21,009 INFO Connection check task start + +2025-09-24 14:00:21,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:21,009 INFO Out dated connection ,size=0 + +2025-09-24 14:00:21,009 INFO Connection check task end + +2025-09-24 14:00:21,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:24,011 INFO Connection check task start + +2025-09-24 14:00:24,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:24,011 INFO Out dated connection ,size=0 + +2025-09-24 14:00:24,011 INFO Connection check task end + +2025-09-24 14:00:24,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:27,012 INFO Connection check task start + +2025-09-24 14:00:27,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:27,012 INFO Out dated connection ,size=0 + +2025-09-24 14:00:27,012 INFO Connection check task end + +2025-09-24 14:00:27,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:30,012 INFO Connection check task start + +2025-09-24 14:00:30,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:30,013 INFO Out dated connection ,size=0 + +2025-09-24 14:00:30,013 INFO Connection check task end + +2025-09-24 14:00:30,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:33,013 INFO Connection check task start + +2025-09-24 14:00:33,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:33,013 INFO Out dated connection ,size=0 + +2025-09-24 14:00:33,013 INFO Connection check task end + +2025-09-24 14:00:33,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:36,014 INFO Connection check task start + +2025-09-24 14:00:36,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:36,014 INFO Out dated connection ,size=0 + +2025-09-24 14:00:36,014 INFO Connection check task end + +2025-09-24 14:00:36,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:39,016 INFO Connection check task start + +2025-09-24 14:00:39,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:39,016 INFO Out dated connection ,size=0 + +2025-09-24 14:00:39,016 INFO Connection check task end + +2025-09-24 14:00:39,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:42,017 INFO Connection check task start + +2025-09-24 14:00:42,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:42,017 INFO Out dated connection ,size=0 + +2025-09-24 14:00:42,017 INFO Connection check task end + +2025-09-24 14:00:42,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:45,019 INFO Connection check task start + +2025-09-24 14:00:45,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:45,019 INFO Out dated connection ,size=0 + +2025-09-24 14:00:45,019 INFO Connection check task end + +2025-09-24 14:00:45,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:48,020 INFO Connection check task start + +2025-09-24 14:00:48,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:48,020 INFO Out dated connection ,size=0 + +2025-09-24 14:00:48,020 INFO Connection check task end + +2025-09-24 14:00:48,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:51,021 INFO Connection check task start + +2025-09-24 14:00:51,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:51,021 INFO Out dated connection ,size=0 + +2025-09-24 14:00:51,021 INFO Connection check task end + +2025-09-24 14:00:51,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:54,022 INFO Connection check task start + +2025-09-24 14:00:54,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:54,022 INFO Out dated connection ,size=0 + +2025-09-24 14:00:54,022 INFO Connection check task end + +2025-09-24 14:00:54,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:00:57,023 INFO Connection check task start + +2025-09-24 14:00:57,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:00:57,023 INFO Out dated connection ,size=0 + +2025-09-24 14:00:57,023 INFO Connection check task end + +2025-09-24 14:00:57,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:00,024 INFO Connection check task start + +2025-09-24 14:01:00,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:00,024 INFO Out dated connection ,size=0 + +2025-09-24 14:01:00,024 INFO Connection check task end + +2025-09-24 14:01:00,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:03,025 INFO Connection check task start + +2025-09-24 14:01:03,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:03,025 INFO Out dated connection ,size=0 + +2025-09-24 14:01:03,025 INFO Connection check task end + +2025-09-24 14:01:03,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:06,026 INFO Connection check task start + +2025-09-24 14:01:06,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:06,026 INFO Out dated connection ,size=0 + +2025-09-24 14:01:06,026 INFO Connection check task end + +2025-09-24 14:01:06,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:09,027 INFO Connection check task start + +2025-09-24 14:01:09,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:09,027 INFO Out dated connection ,size=0 + +2025-09-24 14:01:09,027 INFO Connection check task end + +2025-09-24 14:01:09,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:12,027 INFO Connection check task start + +2025-09-24 14:01:12,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:12,028 INFO Out dated connection ,size=0 + +2025-09-24 14:01:12,028 INFO Connection check task end + +2025-09-24 14:01:12,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:15,030 INFO Connection check task start + +2025-09-24 14:01:15,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:15,030 INFO Out dated connection ,size=0 + +2025-09-24 14:01:15,030 INFO Connection check task end + +2025-09-24 14:01:15,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:18,032 INFO Connection check task start + +2025-09-24 14:01:18,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:18,032 INFO Out dated connection ,size=0 + +2025-09-24 14:01:18,033 INFO Connection check task end + +2025-09-24 14:01:18,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:21,034 INFO Connection check task start + +2025-09-24 14:01:21,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:21,034 INFO Out dated connection ,size=0 + +2025-09-24 14:01:21,034 INFO Connection check task end + +2025-09-24 14:01:21,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:24,034 INFO Connection check task start + +2025-09-24 14:01:24,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:24,034 INFO Out dated connection ,size=0 + +2025-09-24 14:01:24,034 INFO Connection check task end + +2025-09-24 14:01:24,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:27,036 INFO Connection check task start + +2025-09-24 14:01:27,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:27,036 INFO Out dated connection ,size=0 + +2025-09-24 14:01:27,036 INFO Connection check task end + +2025-09-24 14:01:27,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:30,036 INFO Connection check task start + +2025-09-24 14:01:30,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:30,036 INFO Out dated connection ,size=0 + +2025-09-24 14:01:30,036 INFO Connection check task end + +2025-09-24 14:01:30,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:33,037 INFO Connection check task start + +2025-09-24 14:01:33,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:33,037 INFO Out dated connection ,size=0 + +2025-09-24 14:01:33,037 INFO Connection check task end + +2025-09-24 14:01:33,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:36,038 INFO Connection check task start + +2025-09-24 14:01:36,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:36,038 INFO Out dated connection ,size=0 + +2025-09-24 14:01:36,038 INFO Connection check task end + +2025-09-24 14:01:36,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:39,039 INFO Connection check task start + +2025-09-24 14:01:39,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:39,039 INFO Out dated connection ,size=0 + +2025-09-24 14:01:39,039 INFO Connection check task end + +2025-09-24 14:01:39,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:42,040 INFO Connection check task start + +2025-09-24 14:01:42,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:42,041 INFO Out dated connection ,size=0 + +2025-09-24 14:01:42,041 INFO Connection check task end + +2025-09-24 14:01:42,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:45,041 INFO Connection check task start + +2025-09-24 14:01:45,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:45,041 INFO Out dated connection ,size=0 + +2025-09-24 14:01:45,041 INFO Connection check task end + +2025-09-24 14:01:45,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:48,043 INFO Connection check task start + +2025-09-24 14:01:48,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:48,044 INFO Out dated connection ,size=0 + +2025-09-24 14:01:48,044 INFO Connection check task end + +2025-09-24 14:01:48,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:51,044 INFO Connection check task start + +2025-09-24 14:01:51,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:51,044 INFO Out dated connection ,size=0 + +2025-09-24 14:01:51,044 INFO Connection check task end + +2025-09-24 14:01:51,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:54,046 INFO Connection check task start + +2025-09-24 14:01:54,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:54,047 INFO Out dated connection ,size=0 + +2025-09-24 14:01:54,047 INFO Connection check task end + +2025-09-24 14:01:54,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:01:57,047 INFO Connection check task start + +2025-09-24 14:01:57,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:01:57,047 INFO Out dated connection ,size=0 + +2025-09-24 14:01:57,047 INFO Connection check task end + +2025-09-24 14:01:57,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:00,047 INFO Connection check task start + +2025-09-24 14:02:00,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:00,048 INFO Out dated connection ,size=0 + +2025-09-24 14:02:00,048 INFO Connection check task end + +2025-09-24 14:02:00,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:03,050 INFO Connection check task start + +2025-09-24 14:02:03,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:03,050 INFO Out dated connection ,size=0 + +2025-09-24 14:02:03,050 INFO Connection check task end + +2025-09-24 14:02:03,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:06,052 INFO Connection check task start + +2025-09-24 14:02:06,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:06,052 INFO Out dated connection ,size=0 + +2025-09-24 14:02:06,052 INFO Connection check task end + +2025-09-24 14:02:06,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:09,052 INFO Connection check task start + +2025-09-24 14:02:09,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:09,052 INFO Out dated connection ,size=0 + +2025-09-24 14:02:09,052 INFO Connection check task end + +2025-09-24 14:02:09,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:12,053 INFO Connection check task start + +2025-09-24 14:02:12,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:12,053 INFO Out dated connection ,size=0 + +2025-09-24 14:02:12,053 INFO Connection check task end + +2025-09-24 14:02:12,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:15,053 INFO Connection check task start + +2025-09-24 14:02:15,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:15,053 INFO Out dated connection ,size=0 + +2025-09-24 14:02:15,053 INFO Connection check task end + +2025-09-24 14:02:15,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:18,054 INFO Connection check task start + +2025-09-24 14:02:18,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:18,054 INFO Out dated connection ,size=0 + +2025-09-24 14:02:18,054 INFO Connection check task end + +2025-09-24 14:02:18,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:21,054 INFO Connection check task start + +2025-09-24 14:02:21,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:21,055 INFO Out dated connection ,size=0 + +2025-09-24 14:02:21,055 INFO Connection check task end + +2025-09-24 14:02:21,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:24,056 INFO Connection check task start + +2025-09-24 14:02:24,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:24,056 INFO Out dated connection ,size=0 + +2025-09-24 14:02:24,056 INFO Connection check task end + +2025-09-24 14:02:24,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:27,057 INFO Connection check task start + +2025-09-24 14:02:27,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:27,057 INFO Out dated connection ,size=0 + +2025-09-24 14:02:27,057 INFO Connection check task end + +2025-09-24 14:02:27,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:30,058 INFO Connection check task start + +2025-09-24 14:02:30,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:30,058 INFO Out dated connection ,size=0 + +2025-09-24 14:02:30,058 INFO Connection check task end + +2025-09-24 14:02:30,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:33,058 INFO Connection check task start + +2025-09-24 14:02:33,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:33,059 INFO Out dated connection ,size=0 + +2025-09-24 14:02:33,059 INFO Connection check task end + +2025-09-24 14:02:33,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:36,059 INFO Connection check task start + +2025-09-24 14:02:36,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:36,059 INFO Out dated connection ,size=0 + +2025-09-24 14:02:36,060 INFO Connection check task end + +2025-09-24 14:02:36,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:39,062 INFO Connection check task start + +2025-09-24 14:02:39,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:39,062 INFO Out dated connection ,size=0 + +2025-09-24 14:02:39,062 INFO Connection check task end + +2025-09-24 14:02:39,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:42,063 INFO Connection check task start + +2025-09-24 14:02:42,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:42,063 INFO Out dated connection ,size=0 + +2025-09-24 14:02:42,063 INFO Connection check task end + +2025-09-24 14:02:42,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:45,065 INFO Connection check task start + +2025-09-24 14:02:45,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:45,065 INFO Out dated connection ,size=0 + +2025-09-24 14:02:45,065 INFO Connection check task end + +2025-09-24 14:02:45,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:48,066 INFO Connection check task start + +2025-09-24 14:02:48,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:48,066 INFO Out dated connection ,size=0 + +2025-09-24 14:02:48,066 INFO Connection check task end + +2025-09-24 14:02:48,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:51,066 INFO Connection check task start + +2025-09-24 14:02:51,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:51,067 INFO Out dated connection ,size=0 + +2025-09-24 14:02:51,067 INFO Connection check task end + +2025-09-24 14:02:51,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:54,069 INFO Connection check task start + +2025-09-24 14:02:54,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:54,069 INFO Out dated connection ,size=0 + +2025-09-24 14:02:54,069 INFO Connection check task end + +2025-09-24 14:02:54,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:02:57,070 INFO Connection check task start + +2025-09-24 14:02:57,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:02:57,070 INFO Out dated connection ,size=0 + +2025-09-24 14:02:57,070 INFO Connection check task end + +2025-09-24 14:02:57,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:00,070 INFO Connection check task start + +2025-09-24 14:03:00,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:00,071 INFO Out dated connection ,size=0 + +2025-09-24 14:03:00,071 INFO Connection check task end + +2025-09-24 14:03:00,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:03,071 INFO Connection check task start + +2025-09-24 14:03:03,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:03,071 INFO Out dated connection ,size=0 + +2025-09-24 14:03:03,071 INFO Connection check task end + +2025-09-24 14:03:03,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:06,073 INFO Connection check task start + +2025-09-24 14:03:06,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:06,073 INFO Out dated connection ,size=0 + +2025-09-24 14:03:06,073 INFO Connection check task end + +2025-09-24 14:03:06,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:09,073 INFO Connection check task start + +2025-09-24 14:03:09,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:09,073 INFO Out dated connection ,size=0 + +2025-09-24 14:03:09,073 INFO Connection check task end + +2025-09-24 14:03:09,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:12,074 INFO Connection check task start + +2025-09-24 14:03:12,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:12,074 INFO Out dated connection ,size=0 + +2025-09-24 14:03:12,074 INFO Connection check task end + +2025-09-24 14:03:12,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:15,075 INFO Connection check task start + +2025-09-24 14:03:15,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:15,076 INFO Out dated connection ,size=0 + +2025-09-24 14:03:15,076 INFO Connection check task end + +2025-09-24 14:03:15,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:18,076 INFO Connection check task start + +2025-09-24 14:03:18,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:18,076 INFO Out dated connection ,size=0 + +2025-09-24 14:03:18,076 INFO Connection check task end + +2025-09-24 14:03:18,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:21,077 INFO Connection check task start + +2025-09-24 14:03:21,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:21,077 INFO Out dated connection ,size=0 + +2025-09-24 14:03:21,077 INFO Connection check task end + +2025-09-24 14:03:21,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:24,079 INFO Connection check task start + +2025-09-24 14:03:24,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:24,079 INFO Out dated connection ,size=0 + +2025-09-24 14:03:24,079 INFO Connection check task end + +2025-09-24 14:03:24,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:27,081 INFO Connection check task start + +2025-09-24 14:03:27,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:27,081 INFO Out dated connection ,size=0 + +2025-09-24 14:03:27,081 INFO Connection check task end + +2025-09-24 14:03:27,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:30,083 INFO Connection check task start + +2025-09-24 14:03:30,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:30,083 INFO Out dated connection ,size=0 + +2025-09-24 14:03:30,083 INFO Connection check task end + +2025-09-24 14:03:30,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:33,084 INFO Connection check task start + +2025-09-24 14:03:33,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:33,084 INFO Out dated connection ,size=0 + +2025-09-24 14:03:33,084 INFO Connection check task end + +2025-09-24 14:03:33,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:36,085 INFO Connection check task start + +2025-09-24 14:03:36,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:36,085 INFO Out dated connection ,size=0 + +2025-09-24 14:03:36,085 INFO Connection check task end + +2025-09-24 14:03:36,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:39,087 INFO Connection check task start + +2025-09-24 14:03:39,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:39,087 INFO Out dated connection ,size=0 + +2025-09-24 14:03:39,087 INFO Connection check task end + +2025-09-24 14:03:39,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:42,089 INFO Connection check task start + +2025-09-24 14:03:42,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:42,090 INFO Out dated connection ,size=0 + +2025-09-24 14:03:42,090 INFO Connection check task end + +2025-09-24 14:03:42,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:45,092 INFO Connection check task start + +2025-09-24 14:03:45,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:45,092 INFO Out dated connection ,size=0 + +2025-09-24 14:03:45,092 INFO Connection check task end + +2025-09-24 14:03:45,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:48,093 INFO Connection check task start + +2025-09-24 14:03:48,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:48,093 INFO Out dated connection ,size=0 + +2025-09-24 14:03:48,093 INFO Connection check task end + +2025-09-24 14:03:48,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:51,095 INFO Connection check task start + +2025-09-24 14:03:51,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:51,096 INFO Out dated connection ,size=0 + +2025-09-24 14:03:51,096 INFO Connection check task end + +2025-09-24 14:03:51,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:54,096 INFO Connection check task start + +2025-09-24 14:03:54,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:54,096 INFO Out dated connection ,size=0 + +2025-09-24 14:03:54,097 INFO Connection check task end + +2025-09-24 14:03:54,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:03:57,099 INFO Connection check task start + +2025-09-24 14:03:57,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:03:57,099 INFO Out dated connection ,size=0 + +2025-09-24 14:03:57,099 INFO Connection check task end + +2025-09-24 14:03:57,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:00,101 INFO Connection check task start + +2025-09-24 14:04:00,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:00,101 INFO Out dated connection ,size=0 + +2025-09-24 14:04:00,101 INFO Connection check task end + +2025-09-24 14:04:00,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:03,103 INFO Connection check task start + +2025-09-24 14:04:03,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:03,104 INFO Out dated connection ,size=0 + +2025-09-24 14:04:03,104 INFO Connection check task end + +2025-09-24 14:04:03,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:06,104 INFO Connection check task start + +2025-09-24 14:04:06,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:06,105 INFO Out dated connection ,size=0 + +2025-09-24 14:04:06,105 INFO Connection check task end + +2025-09-24 14:04:06,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:09,107 INFO Connection check task start + +2025-09-24 14:04:09,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:09,107 INFO Out dated connection ,size=0 + +2025-09-24 14:04:09,107 INFO Connection check task end + +2025-09-24 14:04:09,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:12,108 INFO Connection check task start + +2025-09-24 14:04:12,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:12,108 INFO Out dated connection ,size=0 + +2025-09-24 14:04:12,108 INFO Connection check task end + +2025-09-24 14:04:12,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:15,109 INFO Connection check task start + +2025-09-24 14:04:15,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:15,109 INFO Out dated connection ,size=0 + +2025-09-24 14:04:15,109 INFO Connection check task end + +2025-09-24 14:04:15,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:18,111 INFO Connection check task start + +2025-09-24 14:04:18,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:18,111 INFO Out dated connection ,size=0 + +2025-09-24 14:04:18,111 INFO Connection check task end + +2025-09-24 14:04:18,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:21,114 INFO Connection check task start + +2025-09-24 14:04:21,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:21,114 INFO Out dated connection ,size=0 + +2025-09-24 14:04:21,114 INFO Connection check task end + +2025-09-24 14:04:21,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:24,116 INFO Connection check task start + +2025-09-24 14:04:24,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:24,116 INFO Out dated connection ,size=0 + +2025-09-24 14:04:24,116 INFO Connection check task end + +2025-09-24 14:04:24,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:27,117 INFO Connection check task start + +2025-09-24 14:04:27,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:27,117 INFO Out dated connection ,size=0 + +2025-09-24 14:04:27,117 INFO Connection check task end + +2025-09-24 14:04:27,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:30,118 INFO Connection check task start + +2025-09-24 14:04:30,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:30,118 INFO Out dated connection ,size=0 + +2025-09-24 14:04:30,118 INFO Connection check task end + +2025-09-24 14:04:30,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:33,119 INFO Connection check task start + +2025-09-24 14:04:33,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:33,119 INFO Out dated connection ,size=0 + +2025-09-24 14:04:33,119 INFO Connection check task end + +2025-09-24 14:04:34,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:36,122 INFO Connection check task start + +2025-09-24 14:04:36,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:36,122 INFO Out dated connection ,size=0 + +2025-09-24 14:04:36,122 INFO Connection check task end + +2025-09-24 14:04:37,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:39,124 INFO Connection check task start + +2025-09-24 14:04:39,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:39,125 INFO Out dated connection ,size=0 + +2025-09-24 14:04:39,125 INFO Connection check task end + +2025-09-24 14:04:40,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:42,127 INFO Connection check task start + +2025-09-24 14:04:42,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:42,127 INFO Out dated connection ,size=0 + +2025-09-24 14:04:42,127 INFO Connection check task end + +2025-09-24 14:04:43,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:45,129 INFO Connection check task start + +2025-09-24 14:04:45,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:45,130 INFO Out dated connection ,size=0 + +2025-09-24 14:04:45,130 INFO Connection check task end + +2025-09-24 14:04:46,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:48,131 INFO Connection check task start + +2025-09-24 14:04:48,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:48,131 INFO Out dated connection ,size=0 + +2025-09-24 14:04:48,131 INFO Connection check task end + +2025-09-24 14:04:49,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:51,133 INFO Connection check task start + +2025-09-24 14:04:51,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:51,133 INFO Out dated connection ,size=0 + +2025-09-24 14:04:51,133 INFO Connection check task end + +2025-09-24 14:04:52,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:54,135 INFO Connection check task start + +2025-09-24 14:04:54,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:54,135 INFO Out dated connection ,size=0 + +2025-09-24 14:04:54,135 INFO Connection check task end + +2025-09-24 14:04:55,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:04:57,137 INFO Connection check task start + +2025-09-24 14:04:57,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:04:57,137 INFO Out dated connection ,size=0 + +2025-09-24 14:04:57,137 INFO Connection check task end + +2025-09-24 14:04:58,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:00,139 INFO Connection check task start + +2025-09-24 14:05:00,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:00,139 INFO Out dated connection ,size=0 + +2025-09-24 14:05:00,140 INFO Connection check task end + +2025-09-24 14:05:01,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:03,140 INFO Connection check task start + +2025-09-24 14:05:03,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:03,140 INFO Out dated connection ,size=0 + +2025-09-24 14:05:03,140 INFO Connection check task end + +2025-09-24 14:05:04,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:06,141 INFO Connection check task start + +2025-09-24 14:05:06,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:06,141 INFO Out dated connection ,size=0 + +2025-09-24 14:05:06,141 INFO Connection check task end + +2025-09-24 14:05:07,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:09,143 INFO Connection check task start + +2025-09-24 14:05:09,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:09,143 INFO Out dated connection ,size=0 + +2025-09-24 14:05:09,143 INFO Connection check task end + +2025-09-24 14:05:10,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:12,144 INFO Connection check task start + +2025-09-24 14:05:12,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:12,144 INFO Out dated connection ,size=0 + +2025-09-24 14:05:12,144 INFO Connection check task end + +2025-09-24 14:05:13,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:15,146 INFO Connection check task start + +2025-09-24 14:05:15,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:15,146 INFO Out dated connection ,size=0 + +2025-09-24 14:05:15,146 INFO Connection check task end + +2025-09-24 14:05:16,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:18,148 INFO Connection check task start + +2025-09-24 14:05:18,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:18,148 INFO Out dated connection ,size=0 + +2025-09-24 14:05:18,148 INFO Connection check task end + +2025-09-24 14:05:19,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:21,151 INFO Connection check task start + +2025-09-24 14:05:21,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:21,151 INFO Out dated connection ,size=0 + +2025-09-24 14:05:21,151 INFO Connection check task end + +2025-09-24 14:05:22,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:24,152 INFO Connection check task start + +2025-09-24 14:05:24,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:24,152 INFO Out dated connection ,size=0 + +2025-09-24 14:05:24,153 INFO Connection check task end + +2025-09-24 14:05:25,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:27,154 INFO Connection check task start + +2025-09-24 14:05:27,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:27,155 INFO Out dated connection ,size=0 + +2025-09-24 14:05:27,155 INFO Connection check task end + +2025-09-24 14:05:28,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:30,157 INFO Connection check task start + +2025-09-24 14:05:30,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:30,157 INFO Out dated connection ,size=0 + +2025-09-24 14:05:30,157 INFO Connection check task end + +2025-09-24 14:05:31,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:33,160 INFO Connection check task start + +2025-09-24 14:05:33,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:33,160 INFO Out dated connection ,size=0 + +2025-09-24 14:05:33,160 INFO Connection check task end + +2025-09-24 14:05:34,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:36,162 INFO Connection check task start + +2025-09-24 14:05:36,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:36,162 INFO Out dated connection ,size=0 + +2025-09-24 14:05:36,162 INFO Connection check task end + +2025-09-24 14:05:37,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:39,164 INFO Connection check task start + +2025-09-24 14:05:39,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:39,165 INFO Out dated connection ,size=0 + +2025-09-24 14:05:39,165 INFO Connection check task end + +2025-09-24 14:05:40,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:42,165 INFO Connection check task start + +2025-09-24 14:05:42,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:42,165 INFO Out dated connection ,size=0 + +2025-09-24 14:05:42,165 INFO Connection check task end + +2025-09-24 14:05:43,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:45,167 INFO Connection check task start + +2025-09-24 14:05:45,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:45,167 INFO Out dated connection ,size=0 + +2025-09-24 14:05:45,167 INFO Connection check task end + +2025-09-24 14:05:46,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:48,169 INFO Connection check task start + +2025-09-24 14:05:48,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:48,170 INFO Out dated connection ,size=0 + +2025-09-24 14:05:48,170 INFO Connection check task end + +2025-09-24 14:05:49,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:51,172 INFO Connection check task start + +2025-09-24 14:05:51,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:51,172 INFO Out dated connection ,size=0 + +2025-09-24 14:05:51,172 INFO Connection check task end + +2025-09-24 14:05:52,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:54,174 INFO Connection check task start + +2025-09-24 14:05:54,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:54,174 INFO Out dated connection ,size=0 + +2025-09-24 14:05:54,174 INFO Connection check task end + +2025-09-24 14:05:55,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:05:57,176 INFO Connection check task start + +2025-09-24 14:05:57,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:05:57,177 INFO Out dated connection ,size=0 + +2025-09-24 14:05:57,177 INFO Connection check task end + +2025-09-24 14:05:58,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:00,179 INFO Connection check task start + +2025-09-24 14:06:00,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:00,179 INFO Out dated connection ,size=0 + +2025-09-24 14:06:00,179 INFO Connection check task end + +2025-09-24 14:06:01,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:03,181 INFO Connection check task start + +2025-09-24 14:06:03,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:03,181 INFO Out dated connection ,size=0 + +2025-09-24 14:06:03,181 INFO Connection check task end + +2025-09-24 14:06:04,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:06,183 INFO Connection check task start + +2025-09-24 14:06:06,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:06,183 INFO Out dated connection ,size=0 + +2025-09-24 14:06:06,183 INFO Connection check task end + +2025-09-24 14:06:07,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:09,185 INFO Connection check task start + +2025-09-24 14:06:09,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:09,186 INFO Out dated connection ,size=0 + +2025-09-24 14:06:09,186 INFO Connection check task end + +2025-09-24 14:06:10,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:12,186 INFO Connection check task start + +2025-09-24 14:06:12,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:12,186 INFO Out dated connection ,size=0 + +2025-09-24 14:06:12,186 INFO Connection check task end + +2025-09-24 14:06:13,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:15,188 INFO Connection check task start + +2025-09-24 14:06:15,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:15,188 INFO Out dated connection ,size=0 + +2025-09-24 14:06:15,188 INFO Connection check task end + +2025-09-24 14:06:16,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:18,189 INFO Connection check task start + +2025-09-24 14:06:18,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:18,189 INFO Out dated connection ,size=0 + +2025-09-24 14:06:18,189 INFO Connection check task end + +2025-09-24 14:06:19,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:21,191 INFO Connection check task start + +2025-09-24 14:06:21,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:21,191 INFO Out dated connection ,size=0 + +2025-09-24 14:06:21,191 INFO Connection check task end + +2025-09-24 14:06:22,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:24,192 INFO Connection check task start + +2025-09-24 14:06:24,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:24,192 INFO Out dated connection ,size=0 + +2025-09-24 14:06:24,193 INFO Connection check task end + +2025-09-24 14:06:25,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:27,194 INFO Connection check task start + +2025-09-24 14:06:27,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:27,195 INFO Out dated connection ,size=0 + +2025-09-24 14:06:27,195 INFO Connection check task end + +2025-09-24 14:06:28,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:30,196 INFO Connection check task start + +2025-09-24 14:06:30,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:30,196 INFO Out dated connection ,size=0 + +2025-09-24 14:06:30,197 INFO Connection check task end + +2025-09-24 14:06:31,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:33,198 INFO Connection check task start + +2025-09-24 14:06:33,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:33,199 INFO Out dated connection ,size=0 + +2025-09-24 14:06:33,199 INFO Connection check task end + +2025-09-24 14:06:34,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:36,199 INFO Connection check task start + +2025-09-24 14:06:36,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:36,200 INFO Out dated connection ,size=0 + +2025-09-24 14:06:36,200 INFO Connection check task end + +2025-09-24 14:06:37,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:39,201 INFO Connection check task start + +2025-09-24 14:06:39,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:39,201 INFO Out dated connection ,size=0 + +2025-09-24 14:06:39,201 INFO Connection check task end + +2025-09-24 14:06:40,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:42,202 INFO Connection check task start + +2025-09-24 14:06:42,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:42,202 INFO Out dated connection ,size=0 + +2025-09-24 14:06:42,202 INFO Connection check task end + +2025-09-24 14:06:43,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:45,204 INFO Connection check task start + +2025-09-24 14:06:45,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:45,204 INFO Out dated connection ,size=0 + +2025-09-24 14:06:45,204 INFO Connection check task end + +2025-09-24 14:06:46,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:48,206 INFO Connection check task start + +2025-09-24 14:06:48,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:48,207 INFO Out dated connection ,size=0 + +2025-09-24 14:06:48,207 INFO Connection check task end + +2025-09-24 14:06:49,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:51,209 INFO Connection check task start + +2025-09-24 14:06:51,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:51,209 INFO Out dated connection ,size=0 + +2025-09-24 14:06:51,209 INFO Connection check task end + +2025-09-24 14:06:52,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:54,211 INFO Connection check task start + +2025-09-24 14:06:54,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:54,211 INFO Out dated connection ,size=0 + +2025-09-24 14:06:54,211 INFO Connection check task end + +2025-09-24 14:06:55,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:06:57,213 INFO Connection check task start + +2025-09-24 14:06:57,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:06:57,213 INFO Out dated connection ,size=0 + +2025-09-24 14:06:57,213 INFO Connection check task end + +2025-09-24 14:06:58,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:00,216 INFO Connection check task start + +2025-09-24 14:07:00,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:00,216 INFO Out dated connection ,size=0 + +2025-09-24 14:07:00,216 INFO Connection check task end + +2025-09-24 14:07:01,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:03,217 INFO Connection check task start + +2025-09-24 14:07:03,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:03,217 INFO Out dated connection ,size=0 + +2025-09-24 14:07:03,217 INFO Connection check task end + +2025-09-24 14:07:04,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:06,219 INFO Connection check task start + +2025-09-24 14:07:06,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:06,220 INFO Out dated connection ,size=0 + +2025-09-24 14:07:06,220 INFO Connection check task end + +2025-09-24 14:07:07,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:09,222 INFO Connection check task start + +2025-09-24 14:07:09,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:09,222 INFO Out dated connection ,size=0 + +2025-09-24 14:07:09,222 INFO Connection check task end + +2025-09-24 14:07:10,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:12,223 INFO Connection check task start + +2025-09-24 14:07:12,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:12,224 INFO Out dated connection ,size=0 + +2025-09-24 14:07:12,224 INFO Connection check task end + +2025-09-24 14:07:13,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:15,226 INFO Connection check task start + +2025-09-24 14:07:15,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:15,226 INFO Out dated connection ,size=0 + +2025-09-24 14:07:15,226 INFO Connection check task end + +2025-09-24 14:07:16,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:18,227 INFO Connection check task start + +2025-09-24 14:07:18,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:18,227 INFO Out dated connection ,size=0 + +2025-09-24 14:07:18,228 INFO Connection check task end + +2025-09-24 14:07:19,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:21,228 INFO Connection check task start + +2025-09-24 14:07:21,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:21,228 INFO Out dated connection ,size=0 + +2025-09-24 14:07:21,228 INFO Connection check task end + +2025-09-24 14:07:22,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:24,230 INFO Connection check task start + +2025-09-24 14:07:24,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:24,230 INFO Out dated connection ,size=0 + +2025-09-24 14:07:24,230 INFO Connection check task end + +2025-09-24 14:07:25,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:27,232 INFO Connection check task start + +2025-09-24 14:07:27,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:27,233 INFO Out dated connection ,size=0 + +2025-09-24 14:07:27,233 INFO Connection check task end + +2025-09-24 14:07:28,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:30,235 INFO Connection check task start + +2025-09-24 14:07:30,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:30,235 INFO Out dated connection ,size=0 + +2025-09-24 14:07:30,235 INFO Connection check task end + +2025-09-24 14:07:31,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:33,236 INFO Connection check task start + +2025-09-24 14:07:33,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:33,237 INFO Out dated connection ,size=0 + +2025-09-24 14:07:33,237 INFO Connection check task end + +2025-09-24 14:07:34,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:36,239 INFO Connection check task start + +2025-09-24 14:07:36,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:36,239 INFO Out dated connection ,size=0 + +2025-09-24 14:07:36,239 INFO Connection check task end + +2025-09-24 14:07:37,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:39,241 INFO Connection check task start + +2025-09-24 14:07:39,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:39,242 INFO Out dated connection ,size=0 + +2025-09-24 14:07:39,242 INFO Connection check task end + +2025-09-24 14:07:40,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:42,244 INFO Connection check task start + +2025-09-24 14:07:42,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:42,244 INFO Out dated connection ,size=0 + +2025-09-24 14:07:42,244 INFO Connection check task end + +2025-09-24 14:07:43,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:45,245 INFO Connection check task start + +2025-09-24 14:07:45,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:45,245 INFO Out dated connection ,size=0 + +2025-09-24 14:07:45,245 INFO Connection check task end + +2025-09-24 14:07:46,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:48,247 INFO Connection check task start + +2025-09-24 14:07:48,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:48,247 INFO Out dated connection ,size=0 + +2025-09-24 14:07:48,247 INFO Connection check task end + +2025-09-24 14:07:49,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:51,249 INFO Connection check task start + +2025-09-24 14:07:51,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:51,249 INFO Out dated connection ,size=0 + +2025-09-24 14:07:51,249 INFO Connection check task end + +2025-09-24 14:07:52,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:54,250 INFO Connection check task start + +2025-09-24 14:07:54,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:54,251 INFO Out dated connection ,size=0 + +2025-09-24 14:07:54,251 INFO Connection check task end + +2025-09-24 14:07:55,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:07:57,252 INFO Connection check task start + +2025-09-24 14:07:57,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:07:57,252 INFO Out dated connection ,size=0 + +2025-09-24 14:07:57,252 INFO Connection check task end + +2025-09-24 14:07:58,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:00,253 INFO Connection check task start + +2025-09-24 14:08:00,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:00,253 INFO Out dated connection ,size=0 + +2025-09-24 14:08:00,253 INFO Connection check task end + +2025-09-24 14:08:01,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:03,255 INFO Connection check task start + +2025-09-24 14:08:03,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:03,256 INFO Out dated connection ,size=0 + +2025-09-24 14:08:03,256 INFO Connection check task end + +2025-09-24 14:08:04,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:06,256 INFO Connection check task start + +2025-09-24 14:08:06,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:06,256 INFO Out dated connection ,size=0 + +2025-09-24 14:08:06,256 INFO Connection check task end + +2025-09-24 14:08:07,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:09,259 INFO Connection check task start + +2025-09-24 14:08:09,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:09,259 INFO Out dated connection ,size=0 + +2025-09-24 14:08:09,259 INFO Connection check task end + +2025-09-24 14:08:10,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:12,261 INFO Connection check task start + +2025-09-24 14:08:12,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:12,262 INFO Out dated connection ,size=0 + +2025-09-24 14:08:12,262 INFO Connection check task end + +2025-09-24 14:08:13,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:15,263 INFO Connection check task start + +2025-09-24 14:08:15,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:15,263 INFO Out dated connection ,size=0 + +2025-09-24 14:08:15,263 INFO Connection check task end + +2025-09-24 14:08:16,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:18,264 INFO Connection check task start + +2025-09-24 14:08:18,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:18,265 INFO Out dated connection ,size=0 + +2025-09-24 14:08:18,265 INFO Connection check task end + +2025-09-24 14:08:19,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:21,267 INFO Connection check task start + +2025-09-24 14:08:21,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:21,267 INFO Out dated connection ,size=0 + +2025-09-24 14:08:21,267 INFO Connection check task end + +2025-09-24 14:08:22,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:24,267 INFO Connection check task start + +2025-09-24 14:08:24,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:24,268 INFO Out dated connection ,size=0 + +2025-09-24 14:08:24,268 INFO Connection check task end + +2025-09-24 14:08:25,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:27,270 INFO Connection check task start + +2025-09-24 14:08:27,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:27,270 INFO Out dated connection ,size=0 + +2025-09-24 14:08:27,270 INFO Connection check task end + +2025-09-24 14:08:28,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:30,271 INFO Connection check task start + +2025-09-24 14:08:30,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:30,271 INFO Out dated connection ,size=0 + +2025-09-24 14:08:30,271 INFO Connection check task end + +2025-09-24 14:08:31,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:33,274 INFO Connection check task start + +2025-09-24 14:08:33,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:33,274 INFO Out dated connection ,size=0 + +2025-09-24 14:08:33,274 INFO Connection check task end + +2025-09-24 14:08:34,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:36,276 INFO Connection check task start + +2025-09-24 14:08:36,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:36,276 INFO Out dated connection ,size=0 + +2025-09-24 14:08:36,276 INFO Connection check task end + +2025-09-24 14:08:37,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:39,279 INFO Connection check task start + +2025-09-24 14:08:39,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:39,279 INFO Out dated connection ,size=0 + +2025-09-24 14:08:39,279 INFO Connection check task end + +2025-09-24 14:08:40,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:42,281 INFO Connection check task start + +2025-09-24 14:08:42,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:42,281 INFO Out dated connection ,size=0 + +2025-09-24 14:08:42,281 INFO Connection check task end + +2025-09-24 14:08:43,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:45,283 INFO Connection check task start + +2025-09-24 14:08:45,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:45,284 INFO Out dated connection ,size=0 + +2025-09-24 14:08:45,284 INFO Connection check task end + +2025-09-24 14:08:46,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:48,286 INFO Connection check task start + +2025-09-24 14:08:48,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:48,286 INFO Out dated connection ,size=0 + +2025-09-24 14:08:48,286 INFO Connection check task end + +2025-09-24 14:08:49,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:51,287 INFO Connection check task start + +2025-09-24 14:08:51,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:51,287 INFO Out dated connection ,size=0 + +2025-09-24 14:08:51,288 INFO Connection check task end + +2025-09-24 14:08:52,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:54,289 INFO Connection check task start + +2025-09-24 14:08:54,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:54,289 INFO Out dated connection ,size=0 + +2025-09-24 14:08:54,290 INFO Connection check task end + +2025-09-24 14:08:55,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:08:57,290 INFO Connection check task start + +2025-09-24 14:08:57,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:08:57,290 INFO Out dated connection ,size=0 + +2025-09-24 14:08:57,290 INFO Connection check task end + +2025-09-24 14:08:58,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:00,291 INFO Connection check task start + +2025-09-24 14:09:00,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:00,291 INFO Out dated connection ,size=0 + +2025-09-24 14:09:00,291 INFO Connection check task end + +2025-09-24 14:09:01,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:03,293 INFO Connection check task start + +2025-09-24 14:09:03,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:03,293 INFO Out dated connection ,size=0 + +2025-09-24 14:09:03,293 INFO Connection check task end + +2025-09-24 14:09:04,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:06,295 INFO Connection check task start + +2025-09-24 14:09:06,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:06,295 INFO Out dated connection ,size=0 + +2025-09-24 14:09:06,295 INFO Connection check task end + +2025-09-24 14:09:07,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:09,296 INFO Connection check task start + +2025-09-24 14:09:09,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:09,296 INFO Out dated connection ,size=0 + +2025-09-24 14:09:09,296 INFO Connection check task end + +2025-09-24 14:09:10,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:12,297 INFO Connection check task start + +2025-09-24 14:09:12,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:12,297 INFO Out dated connection ,size=0 + +2025-09-24 14:09:12,298 INFO Connection check task end + +2025-09-24 14:09:13,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:15,300 INFO Connection check task start + +2025-09-24 14:09:15,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:15,300 INFO Out dated connection ,size=0 + +2025-09-24 14:09:15,300 INFO Connection check task end + +2025-09-24 14:09:16,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:18,302 INFO Connection check task start + +2025-09-24 14:09:18,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:18,302 INFO Out dated connection ,size=0 + +2025-09-24 14:09:18,302 INFO Connection check task end + +2025-09-24 14:09:19,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:21,303 INFO Connection check task start + +2025-09-24 14:09:21,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:21,303 INFO Out dated connection ,size=0 + +2025-09-24 14:09:21,303 INFO Connection check task end + +2025-09-24 14:09:22,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:24,304 INFO Connection check task start + +2025-09-24 14:09:24,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:24,304 INFO Out dated connection ,size=0 + +2025-09-24 14:09:24,304 INFO Connection check task end + +2025-09-24 14:09:25,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:27,306 INFO Connection check task start + +2025-09-24 14:09:27,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:27,306 INFO Out dated connection ,size=0 + +2025-09-24 14:09:27,306 INFO Connection check task end + +2025-09-24 14:09:28,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:30,306 INFO Connection check task start + +2025-09-24 14:09:30,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:30,306 INFO Out dated connection ,size=0 + +2025-09-24 14:09:30,306 INFO Connection check task end + +2025-09-24 14:09:31,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:33,307 INFO Connection check task start + +2025-09-24 14:09:33,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:33,307 INFO Out dated connection ,size=0 + +2025-09-24 14:09:33,307 INFO Connection check task end + +2025-09-24 14:09:34,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:36,309 INFO Connection check task start + +2025-09-24 14:09:36,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:36,309 INFO Out dated connection ,size=0 + +2025-09-24 14:09:36,309 INFO Connection check task end + +2025-09-24 14:09:37,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:39,310 INFO Connection check task start + +2025-09-24 14:09:39,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:39,311 INFO Out dated connection ,size=0 + +2025-09-24 14:09:39,311 INFO Connection check task end + +2025-09-24 14:09:40,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:42,311 INFO Connection check task start + +2025-09-24 14:09:42,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:42,311 INFO Out dated connection ,size=0 + +2025-09-24 14:09:42,312 INFO Connection check task end + +2025-09-24 14:09:43,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:45,314 INFO Connection check task start + +2025-09-24 14:09:45,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:45,314 INFO Out dated connection ,size=0 + +2025-09-24 14:09:45,314 INFO Connection check task end + +2025-09-24 14:09:46,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:48,315 INFO Connection check task start + +2025-09-24 14:09:48,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:48,315 INFO Out dated connection ,size=0 + +2025-09-24 14:09:48,315 INFO Connection check task end + +2025-09-24 14:09:49,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:51,316 INFO Connection check task start + +2025-09-24 14:09:51,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:51,316 INFO Out dated connection ,size=0 + +2025-09-24 14:09:51,316 INFO Connection check task end + +2025-09-24 14:09:52,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:54,317 INFO Connection check task start + +2025-09-24 14:09:54,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:54,317 INFO Out dated connection ,size=0 + +2025-09-24 14:09:54,317 INFO Connection check task end + +2025-09-24 14:09:55,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:09:57,318 INFO Connection check task start + +2025-09-24 14:09:57,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:09:57,318 INFO Out dated connection ,size=0 + +2025-09-24 14:09:57,318 INFO Connection check task end + +2025-09-24 14:09:58,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:00,319 INFO Connection check task start + +2025-09-24 14:10:00,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:00,319 INFO Out dated connection ,size=0 + +2025-09-24 14:10:00,319 INFO Connection check task end + +2025-09-24 14:10:01,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:03,321 INFO Connection check task start + +2025-09-24 14:10:03,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:03,321 INFO Out dated connection ,size=0 + +2025-09-24 14:10:03,321 INFO Connection check task end + +2025-09-24 14:10:04,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:06,322 INFO Connection check task start + +2025-09-24 14:10:06,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:06,322 INFO Out dated connection ,size=0 + +2025-09-24 14:10:06,322 INFO Connection check task end + +2025-09-24 14:10:07,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:09,324 INFO Connection check task start + +2025-09-24 14:10:09,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:09,324 INFO Out dated connection ,size=0 + +2025-09-24 14:10:09,324 INFO Connection check task end + +2025-09-24 14:10:10,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:12,326 INFO Connection check task start + +2025-09-24 14:10:12,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:12,327 INFO Out dated connection ,size=0 + +2025-09-24 14:10:12,327 INFO Connection check task end + +2025-09-24 14:10:13,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:15,327 INFO Connection check task start + +2025-09-24 14:10:15,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:15,327 INFO Out dated connection ,size=0 + +2025-09-24 14:10:15,327 INFO Connection check task end + +2025-09-24 14:10:16,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:18,327 INFO Connection check task start + +2025-09-24 14:10:18,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:18,328 INFO Out dated connection ,size=0 + +2025-09-24 14:10:18,328 INFO Connection check task end + +2025-09-24 14:10:19,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:21,328 INFO Connection check task start + +2025-09-24 14:10:21,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:21,328 INFO Out dated connection ,size=0 + +2025-09-24 14:10:21,328 INFO Connection check task end + +2025-09-24 14:10:22,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:24,331 INFO Connection check task start + +2025-09-24 14:10:24,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:24,331 INFO Out dated connection ,size=0 + +2025-09-24 14:10:24,331 INFO Connection check task end + +2025-09-24 14:10:25,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:27,333 INFO Connection check task start + +2025-09-24 14:10:27,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:27,333 INFO Out dated connection ,size=0 + +2025-09-24 14:10:27,333 INFO Connection check task end + +2025-09-24 14:10:28,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:30,334 INFO Connection check task start + +2025-09-24 14:10:30,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:30,334 INFO Out dated connection ,size=0 + +2025-09-24 14:10:30,335 INFO Connection check task end + +2025-09-24 14:10:31,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:33,337 INFO Connection check task start + +2025-09-24 14:10:33,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:33,337 INFO Out dated connection ,size=0 + +2025-09-24 14:10:33,337 INFO Connection check task end + +2025-09-24 14:10:34,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:36,339 INFO Connection check task start + +2025-09-24 14:10:36,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:36,340 INFO Out dated connection ,size=0 + +2025-09-24 14:10:36,340 INFO Connection check task end + +2025-09-24 14:10:37,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:39,340 INFO Connection check task start + +2025-09-24 14:10:39,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:39,341 INFO Out dated connection ,size=0 + +2025-09-24 14:10:39,341 INFO Connection check task end + +2025-09-24 14:10:40,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:42,341 INFO Connection check task start + +2025-09-24 14:10:42,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:42,342 INFO Out dated connection ,size=0 + +2025-09-24 14:10:42,342 INFO Connection check task end + +2025-09-24 14:10:43,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:45,342 INFO Connection check task start + +2025-09-24 14:10:45,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:45,343 INFO Out dated connection ,size=0 + +2025-09-24 14:10:45,343 INFO Connection check task end + +2025-09-24 14:10:46,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:48,345 INFO Connection check task start + +2025-09-24 14:10:48,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:48,345 INFO Out dated connection ,size=0 + +2025-09-24 14:10:48,346 INFO Connection check task end + +2025-09-24 14:10:49,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:51,348 INFO Connection check task start + +2025-09-24 14:10:51,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:51,348 INFO Out dated connection ,size=0 + +2025-09-24 14:10:51,348 INFO Connection check task end + +2025-09-24 14:10:52,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:54,348 INFO Connection check task start + +2025-09-24 14:10:54,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:54,349 INFO Out dated connection ,size=0 + +2025-09-24 14:10:54,349 INFO Connection check task end + +2025-09-24 14:10:55,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:10:57,350 INFO Connection check task start + +2025-09-24 14:10:57,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:10:57,350 INFO Out dated connection ,size=0 + +2025-09-24 14:10:57,350 INFO Connection check task end + +2025-09-24 14:10:58,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:00,352 INFO Connection check task start + +2025-09-24 14:11:00,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:00,352 INFO Out dated connection ,size=0 + +2025-09-24 14:11:00,352 INFO Connection check task end + +2025-09-24 14:11:01,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:03,353 INFO Connection check task start + +2025-09-24 14:11:03,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:03,353 INFO Out dated connection ,size=0 + +2025-09-24 14:11:03,353 INFO Connection check task end + +2025-09-24 14:11:04,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:06,355 INFO Connection check task start + +2025-09-24 14:11:06,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:06,356 INFO Out dated connection ,size=0 + +2025-09-24 14:11:06,356 INFO Connection check task end + +2025-09-24 14:11:07,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:09,358 INFO Connection check task start + +2025-09-24 14:11:09,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:09,359 INFO Out dated connection ,size=0 + +2025-09-24 14:11:09,359 INFO Connection check task end + +2025-09-24 14:11:10,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:12,361 INFO Connection check task start + +2025-09-24 14:11:12,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:12,361 INFO Out dated connection ,size=0 + +2025-09-24 14:11:12,361 INFO Connection check task end + +2025-09-24 14:11:13,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:15,362 INFO Connection check task start + +2025-09-24 14:11:15,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:15,363 INFO Out dated connection ,size=0 + +2025-09-24 14:11:15,363 INFO Connection check task end + +2025-09-24 14:11:16,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:18,365 INFO Connection check task start + +2025-09-24 14:11:18,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:18,365 INFO Out dated connection ,size=0 + +2025-09-24 14:11:18,365 INFO Connection check task end + +2025-09-24 14:11:19,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:21,367 INFO Connection check task start + +2025-09-24 14:11:21,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:21,368 INFO Out dated connection ,size=0 + +2025-09-24 14:11:21,368 INFO Connection check task end + +2025-09-24 14:11:22,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:24,370 INFO Connection check task start + +2025-09-24 14:11:24,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:24,370 INFO Out dated connection ,size=0 + +2025-09-24 14:11:24,370 INFO Connection check task end + +2025-09-24 14:11:25,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:27,371 INFO Connection check task start + +2025-09-24 14:11:27,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:27,371 INFO Out dated connection ,size=0 + +2025-09-24 14:11:27,371 INFO Connection check task end + +2025-09-24 14:11:28,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:30,372 INFO Connection check task start + +2025-09-24 14:11:30,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:30,372 INFO Out dated connection ,size=0 + +2025-09-24 14:11:30,372 INFO Connection check task end + +2025-09-24 14:11:31,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:33,372 INFO Connection check task start + +2025-09-24 14:11:33,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:33,372 INFO Out dated connection ,size=0 + +2025-09-24 14:11:33,372 INFO Connection check task end + +2025-09-24 14:11:34,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:36,374 INFO Connection check task start + +2025-09-24 14:11:36,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:36,374 INFO Out dated connection ,size=0 + +2025-09-24 14:11:36,375 INFO Connection check task end + +2025-09-24 14:11:37,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:39,375 INFO Connection check task start + +2025-09-24 14:11:39,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:39,375 INFO Out dated connection ,size=0 + +2025-09-24 14:11:39,375 INFO Connection check task end + +2025-09-24 14:11:40,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:42,375 INFO Connection check task start + +2025-09-24 14:11:42,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:42,375 INFO Out dated connection ,size=0 + +2025-09-24 14:11:42,375 INFO Connection check task end + +2025-09-24 14:11:43,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:45,376 INFO Connection check task start + +2025-09-24 14:11:45,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:45,376 INFO Out dated connection ,size=0 + +2025-09-24 14:11:45,376 INFO Connection check task end + +2025-09-24 14:11:46,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:48,378 INFO Connection check task start + +2025-09-24 14:11:48,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:48,378 INFO Out dated connection ,size=0 + +2025-09-24 14:11:48,379 INFO Connection check task end + +2025-09-24 14:11:49,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:51,379 INFO Connection check task start + +2025-09-24 14:11:51,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:51,379 INFO Out dated connection ,size=0 + +2025-09-24 14:11:51,379 INFO Connection check task end + +2025-09-24 14:11:52,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:54,381 INFO Connection check task start + +2025-09-24 14:11:54,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:54,381 INFO Out dated connection ,size=0 + +2025-09-24 14:11:54,382 INFO Connection check task end + +2025-09-24 14:11:55,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:11:57,383 INFO Connection check task start + +2025-09-24 14:11:57,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:11:57,383 INFO Out dated connection ,size=0 + +2025-09-24 14:11:57,383 INFO Connection check task end + +2025-09-24 14:11:58,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:00,385 INFO Connection check task start + +2025-09-24 14:12:00,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:00,385 INFO Out dated connection ,size=0 + +2025-09-24 14:12:00,385 INFO Connection check task end + +2025-09-24 14:12:01,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:03,388 INFO Connection check task start + +2025-09-24 14:12:03,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:03,388 INFO Out dated connection ,size=0 + +2025-09-24 14:12:03,388 INFO Connection check task end + +2025-09-24 14:12:04,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:06,391 INFO Connection check task start + +2025-09-24 14:12:06,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:06,391 INFO Out dated connection ,size=0 + +2025-09-24 14:12:06,391 INFO Connection check task end + +2025-09-24 14:12:07,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:09,392 INFO Connection check task start + +2025-09-24 14:12:09,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:09,392 INFO Out dated connection ,size=0 + +2025-09-24 14:12:09,392 INFO Connection check task end + +2025-09-24 14:12:10,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:12,393 INFO Connection check task start + +2025-09-24 14:12:12,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:12,393 INFO Out dated connection ,size=0 + +2025-09-24 14:12:12,394 INFO Connection check task end + +2025-09-24 14:12:13,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:15,394 INFO Connection check task start + +2025-09-24 14:12:15,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:15,394 INFO Out dated connection ,size=0 + +2025-09-24 14:12:15,394 INFO Connection check task end + +2025-09-24 14:12:16,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:18,395 INFO Connection check task start + +2025-09-24 14:12:18,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:18,395 INFO Out dated connection ,size=0 + +2025-09-24 14:12:18,395 INFO Connection check task end + +2025-09-24 14:12:19,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:21,395 INFO Connection check task start + +2025-09-24 14:12:21,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:21,396 INFO Out dated connection ,size=0 + +2025-09-24 14:12:21,396 INFO Connection check task end + +2025-09-24 14:12:22,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:24,396 INFO Connection check task start + +2025-09-24 14:12:24,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:24,396 INFO Out dated connection ,size=0 + +2025-09-24 14:12:24,396 INFO Connection check task end + +2025-09-24 14:12:25,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:27,398 INFO Connection check task start + +2025-09-24 14:12:27,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:27,398 INFO Out dated connection ,size=0 + +2025-09-24 14:12:27,398 INFO Connection check task end + +2025-09-24 14:12:28,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:30,400 INFO Connection check task start + +2025-09-24 14:12:30,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:30,400 INFO Out dated connection ,size=0 + +2025-09-24 14:12:30,400 INFO Connection check task end + +2025-09-24 14:12:31,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:33,401 INFO Connection check task start + +2025-09-24 14:12:33,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:33,402 INFO Out dated connection ,size=0 + +2025-09-24 14:12:33,402 INFO Connection check task end + +2025-09-24 14:12:34,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:36,404 INFO Connection check task start + +2025-09-24 14:12:36,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:36,404 INFO Out dated connection ,size=0 + +2025-09-24 14:12:36,404 INFO Connection check task end + +2025-09-24 14:12:37,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:39,407 INFO Connection check task start + +2025-09-24 14:12:39,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:39,407 INFO Out dated connection ,size=0 + +2025-09-24 14:12:39,407 INFO Connection check task end + +2025-09-24 14:12:40,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:42,408 INFO Connection check task start + +2025-09-24 14:12:42,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:42,408 INFO Out dated connection ,size=0 + +2025-09-24 14:12:42,408 INFO Connection check task end + +2025-09-24 14:12:43,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:45,410 INFO Connection check task start + +2025-09-24 14:12:45,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:45,410 INFO Out dated connection ,size=0 + +2025-09-24 14:12:45,410 INFO Connection check task end + +2025-09-24 14:12:46,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:48,412 INFO Connection check task start + +2025-09-24 14:12:48,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:48,413 INFO Out dated connection ,size=0 + +2025-09-24 14:12:48,413 INFO Connection check task end + +2025-09-24 14:12:49,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:51,414 INFO Connection check task start + +2025-09-24 14:12:51,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:51,415 INFO Out dated connection ,size=0 + +2025-09-24 14:12:51,415 INFO Connection check task end + +2025-09-24 14:12:52,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:54,416 INFO Connection check task start + +2025-09-24 14:12:54,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:54,417 INFO Out dated connection ,size=0 + +2025-09-24 14:12:54,417 INFO Connection check task end + +2025-09-24 14:12:55,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:12:57,417 INFO Connection check task start + +2025-09-24 14:12:57,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:12:57,418 INFO Out dated connection ,size=0 + +2025-09-24 14:12:57,418 INFO Connection check task end + +2025-09-24 14:12:58,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:00,420 INFO Connection check task start + +2025-09-24 14:13:00,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:00,420 INFO Out dated connection ,size=0 + +2025-09-24 14:13:00,420 INFO Connection check task end + +2025-09-24 14:13:01,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:03,422 INFO Connection check task start + +2025-09-24 14:13:03,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:03,422 INFO Out dated connection ,size=0 + +2025-09-24 14:13:03,422 INFO Connection check task end + +2025-09-24 14:13:04,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:06,424 INFO Connection check task start + +2025-09-24 14:13:06,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:06,424 INFO Out dated connection ,size=0 + +2025-09-24 14:13:06,424 INFO Connection check task end + +2025-09-24 14:13:07,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:09,426 INFO Connection check task start + +2025-09-24 14:13:09,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:09,426 INFO Out dated connection ,size=0 + +2025-09-24 14:13:09,426 INFO Connection check task end + +2025-09-24 14:13:10,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:12,427 INFO Connection check task start + +2025-09-24 14:13:12,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:12,427 INFO Out dated connection ,size=0 + +2025-09-24 14:13:12,427 INFO Connection check task end + +2025-09-24 14:13:13,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:15,428 INFO Connection check task start + +2025-09-24 14:13:15,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:15,428 INFO Out dated connection ,size=0 + +2025-09-24 14:13:15,429 INFO Connection check task end + +2025-09-24 14:13:16,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:18,429 INFO Connection check task start + +2025-09-24 14:13:18,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:18,429 INFO Out dated connection ,size=0 + +2025-09-24 14:13:18,429 INFO Connection check task end + +2025-09-24 14:13:19,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:21,430 INFO Connection check task start + +2025-09-24 14:13:21,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:21,430 INFO Out dated connection ,size=0 + +2025-09-24 14:13:21,430 INFO Connection check task end + +2025-09-24 14:13:22,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:24,431 INFO Connection check task start + +2025-09-24 14:13:24,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:24,431 INFO Out dated connection ,size=0 + +2025-09-24 14:13:24,431 INFO Connection check task end + +2025-09-24 14:13:25,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:27,433 INFO Connection check task start + +2025-09-24 14:13:27,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:27,434 INFO Out dated connection ,size=0 + +2025-09-24 14:13:27,434 INFO Connection check task end + +2025-09-24 14:13:28,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:30,434 INFO Connection check task start + +2025-09-24 14:13:30,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:30,434 INFO Out dated connection ,size=0 + +2025-09-24 14:13:30,434 INFO Connection check task end + +2025-09-24 14:13:31,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:33,435 INFO Connection check task start + +2025-09-24 14:13:33,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:33,435 INFO Out dated connection ,size=0 + +2025-09-24 14:13:33,436 INFO Connection check task end + +2025-09-24 14:13:34,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:36,436 INFO Connection check task start + +2025-09-24 14:13:36,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:36,436 INFO Out dated connection ,size=0 + +2025-09-24 14:13:36,436 INFO Connection check task end + +2025-09-24 14:13:37,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:39,439 INFO Connection check task start + +2025-09-24 14:13:39,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:39,439 INFO Out dated connection ,size=0 + +2025-09-24 14:13:39,439 INFO Connection check task end + +2025-09-24 14:13:40,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:42,440 INFO Connection check task start + +2025-09-24 14:13:42,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:42,440 INFO Out dated connection ,size=0 + +2025-09-24 14:13:42,440 INFO Connection check task end + +2025-09-24 14:13:43,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:45,440 INFO Connection check task start + +2025-09-24 14:13:45,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:45,441 INFO Out dated connection ,size=0 + +2025-09-24 14:13:45,441 INFO Connection check task end + +2025-09-24 14:13:46,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:48,441 INFO Connection check task start + +2025-09-24 14:13:48,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:48,441 INFO Out dated connection ,size=0 + +2025-09-24 14:13:48,441 INFO Connection check task end + +2025-09-24 14:13:49,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:51,443 INFO Connection check task start + +2025-09-24 14:13:51,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:51,443 INFO Out dated connection ,size=0 + +2025-09-24 14:13:51,443 INFO Connection check task end + +2025-09-24 14:13:52,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:54,444 INFO Connection check task start + +2025-09-24 14:13:54,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:54,444 INFO Out dated connection ,size=0 + +2025-09-24 14:13:54,444 INFO Connection check task end + +2025-09-24 14:13:55,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:13:57,446 INFO Connection check task start + +2025-09-24 14:13:57,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:13:57,446 INFO Out dated connection ,size=0 + +2025-09-24 14:13:57,446 INFO Connection check task end + +2025-09-24 14:13:58,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:00,448 INFO Connection check task start + +2025-09-24 14:14:00,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:00,448 INFO Out dated connection ,size=0 + +2025-09-24 14:14:00,448 INFO Connection check task end + +2025-09-24 14:14:01,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:03,450 INFO Connection check task start + +2025-09-24 14:14:03,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:03,450 INFO Out dated connection ,size=0 + +2025-09-24 14:14:03,450 INFO Connection check task end + +2025-09-24 14:14:04,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:06,452 INFO Connection check task start + +2025-09-24 14:14:06,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:06,452 INFO Out dated connection ,size=0 + +2025-09-24 14:14:06,452 INFO Connection check task end + +2025-09-24 14:14:07,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:09,454 INFO Connection check task start + +2025-09-24 14:14:09,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:09,455 INFO Out dated connection ,size=0 + +2025-09-24 14:14:09,455 INFO Connection check task end + +2025-09-24 14:14:10,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:12,457 INFO Connection check task start + +2025-09-24 14:14:12,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:12,457 INFO Out dated connection ,size=0 + +2025-09-24 14:14:12,457 INFO Connection check task end + +2025-09-24 14:14:13,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:15,457 INFO Connection check task start + +2025-09-24 14:14:15,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:15,458 INFO Out dated connection ,size=0 + +2025-09-24 14:14:15,458 INFO Connection check task end + +2025-09-24 14:14:16,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:18,458 INFO Connection check task start + +2025-09-24 14:14:18,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:18,458 INFO Out dated connection ,size=0 + +2025-09-24 14:14:18,458 INFO Connection check task end + +2025-09-24 14:14:19,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:21,459 INFO Connection check task start + +2025-09-24 14:14:21,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:21,460 INFO Out dated connection ,size=0 + +2025-09-24 14:14:21,460 INFO Connection check task end + +2025-09-24 14:14:22,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:24,461 INFO Connection check task start + +2025-09-24 14:14:24,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:24,461 INFO Out dated connection ,size=0 + +2025-09-24 14:14:24,461 INFO Connection check task end + +2025-09-24 14:14:25,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:27,463 INFO Connection check task start + +2025-09-24 14:14:27,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:27,463 INFO Out dated connection ,size=0 + +2025-09-24 14:14:27,464 INFO Connection check task end + +2025-09-24 14:14:28,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:30,464 INFO Connection check task start + +2025-09-24 14:14:30,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:30,464 INFO Out dated connection ,size=0 + +2025-09-24 14:14:30,464 INFO Connection check task end + +2025-09-24 14:14:31,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:33,465 INFO Connection check task start + +2025-09-24 14:14:33,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:33,465 INFO Out dated connection ,size=0 + +2025-09-24 14:14:33,465 INFO Connection check task end + +2025-09-24 14:14:34,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:36,465 INFO Connection check task start + +2025-09-24 14:14:36,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:36,466 INFO Out dated connection ,size=0 + +2025-09-24 14:14:36,466 INFO Connection check task end + +2025-09-24 14:14:37,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:39,466 INFO Connection check task start + +2025-09-24 14:14:39,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:39,467 INFO Out dated connection ,size=0 + +2025-09-24 14:14:39,467 INFO Connection check task end + +2025-09-24 14:14:40,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:42,468 INFO Connection check task start + +2025-09-24 14:14:42,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:42,468 INFO Out dated connection ,size=0 + +2025-09-24 14:14:42,468 INFO Connection check task end + +2025-09-24 14:14:43,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:45,469 INFO Connection check task start + +2025-09-24 14:14:45,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:45,469 INFO Out dated connection ,size=0 + +2025-09-24 14:14:45,469 INFO Connection check task end + +2025-09-24 14:14:46,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:48,471 INFO Connection check task start + +2025-09-24 14:14:48,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:48,471 INFO Out dated connection ,size=0 + +2025-09-24 14:14:48,471 INFO Connection check task end + +2025-09-24 14:14:49,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:51,473 INFO Connection check task start + +2025-09-24 14:14:51,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:51,473 INFO Out dated connection ,size=0 + +2025-09-24 14:14:51,473 INFO Connection check task end + +2025-09-24 14:14:52,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:54,474 INFO Connection check task start + +2025-09-24 14:14:54,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:54,474 INFO Out dated connection ,size=0 + +2025-09-24 14:14:54,474 INFO Connection check task end + +2025-09-24 14:14:55,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:14:57,475 INFO Connection check task start + +2025-09-24 14:14:57,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:14:57,475 INFO Out dated connection ,size=0 + +2025-09-24 14:14:57,475 INFO Connection check task end + +2025-09-24 14:14:58,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:00,475 INFO Connection check task start + +2025-09-24 14:15:00,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:00,476 INFO Out dated connection ,size=0 + +2025-09-24 14:15:00,476 INFO Connection check task end + +2025-09-24 14:15:01,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:03,476 INFO Connection check task start + +2025-09-24 14:15:03,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:03,476 INFO Out dated connection ,size=0 + +2025-09-24 14:15:03,476 INFO Connection check task end + +2025-09-24 14:15:04,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:06,477 INFO Connection check task start + +2025-09-24 14:15:06,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:06,477 INFO Out dated connection ,size=0 + +2025-09-24 14:15:06,477 INFO Connection check task end + +2025-09-24 14:15:07,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:09,479 INFO Connection check task start + +2025-09-24 14:15:09,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:09,479 INFO Out dated connection ,size=0 + +2025-09-24 14:15:09,479 INFO Connection check task end + +2025-09-24 14:15:10,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:12,481 INFO Connection check task start + +2025-09-24 14:15:12,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:12,482 INFO Out dated connection ,size=0 + +2025-09-24 14:15:12,482 INFO Connection check task end + +2025-09-24 14:15:13,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:15,484 INFO Connection check task start + +2025-09-24 14:15:15,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:15,484 INFO Out dated connection ,size=0 + +2025-09-24 14:15:15,484 INFO Connection check task end + +2025-09-24 14:15:16,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:18,484 INFO Connection check task start + +2025-09-24 14:15:18,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:18,484 INFO Out dated connection ,size=0 + +2025-09-24 14:15:18,484 INFO Connection check task end + +2025-09-24 14:15:19,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:21,486 INFO Connection check task start + +2025-09-24 14:15:21,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:21,486 INFO Out dated connection ,size=0 + +2025-09-24 14:15:21,486 INFO Connection check task end + +2025-09-24 14:15:22,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:24,487 INFO Connection check task start + +2025-09-24 14:15:24,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:24,488 INFO Out dated connection ,size=0 + +2025-09-24 14:15:24,488 INFO Connection check task end + +2025-09-24 14:15:25,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:27,490 INFO Connection check task start + +2025-09-24 14:15:27,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:27,490 INFO Out dated connection ,size=0 + +2025-09-24 14:15:27,490 INFO Connection check task end + +2025-09-24 14:15:28,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:30,490 INFO Connection check task start + +2025-09-24 14:15:30,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:30,491 INFO Out dated connection ,size=0 + +2025-09-24 14:15:30,491 INFO Connection check task end + +2025-09-24 14:15:31,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:33,492 INFO Connection check task start + +2025-09-24 14:15:33,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:33,492 INFO Out dated connection ,size=0 + +2025-09-24 14:15:33,492 INFO Connection check task end + +2025-09-24 14:15:34,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:36,493 INFO Connection check task start + +2025-09-24 14:15:36,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:36,493 INFO Out dated connection ,size=0 + +2025-09-24 14:15:36,493 INFO Connection check task end + +2025-09-24 14:15:37,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:39,495 INFO Connection check task start + +2025-09-24 14:15:39,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:39,495 INFO Out dated connection ,size=0 + +2025-09-24 14:15:39,495 INFO Connection check task end + +2025-09-24 14:15:40,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:42,495 INFO Connection check task start + +2025-09-24 14:15:42,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:42,496 INFO Out dated connection ,size=0 + +2025-09-24 14:15:42,496 INFO Connection check task end + +2025-09-24 14:15:43,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:45,496 INFO Connection check task start + +2025-09-24 14:15:45,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:45,496 INFO Out dated connection ,size=0 + +2025-09-24 14:15:45,496 INFO Connection check task end + +2025-09-24 14:15:46,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:48,498 INFO Connection check task start + +2025-09-24 14:15:48,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:48,498 INFO Out dated connection ,size=0 + +2025-09-24 14:15:48,498 INFO Connection check task end + +2025-09-24 14:15:49,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:51,498 INFO Connection check task start + +2025-09-24 14:15:51,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:51,498 INFO Out dated connection ,size=0 + +2025-09-24 14:15:51,498 INFO Connection check task end + +2025-09-24 14:15:52,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:54,500 INFO Connection check task start + +2025-09-24 14:15:54,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:54,501 INFO Out dated connection ,size=0 + +2025-09-24 14:15:54,501 INFO Connection check task end + +2025-09-24 14:15:55,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:15:57,503 INFO Connection check task start + +2025-09-24 14:15:57,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:15:57,503 INFO Out dated connection ,size=0 + +2025-09-24 14:15:57,503 INFO Connection check task end + +2025-09-24 14:15:58,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:00,503 INFO Connection check task start + +2025-09-24 14:16:00,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:00,503 INFO Out dated connection ,size=0 + +2025-09-24 14:16:00,503 INFO Connection check task end + +2025-09-24 14:16:01,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:03,505 INFO Connection check task start + +2025-09-24 14:16:03,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:03,506 INFO Out dated connection ,size=0 + +2025-09-24 14:16:03,506 INFO Connection check task end + +2025-09-24 14:16:04,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:06,506 INFO Connection check task start + +2025-09-24 14:16:06,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:06,507 INFO Out dated connection ,size=0 + +2025-09-24 14:16:06,507 INFO Connection check task end + +2025-09-24 14:16:07,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:09,507 INFO Connection check task start + +2025-09-24 14:16:09,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:09,507 INFO Out dated connection ,size=0 + +2025-09-24 14:16:09,507 INFO Connection check task end + +2025-09-24 14:16:10,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:12,509 INFO Connection check task start + +2025-09-24 14:16:12,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:12,509 INFO Out dated connection ,size=0 + +2025-09-24 14:16:12,509 INFO Connection check task end + +2025-09-24 14:16:13,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:15,511 INFO Connection check task start + +2025-09-24 14:16:15,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:15,511 INFO Out dated connection ,size=0 + +2025-09-24 14:16:15,511 INFO Connection check task end + +2025-09-24 14:16:16,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:18,513 INFO Connection check task start + +2025-09-24 14:16:18,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:18,513 INFO Out dated connection ,size=0 + +2025-09-24 14:16:18,513 INFO Connection check task end + +2025-09-24 14:16:19,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:21,515 INFO Connection check task start + +2025-09-24 14:16:21,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:21,562 INFO Out dated connection ,size=0 + +2025-09-24 14:16:21,563 INFO Connection check task end + +2025-09-24 14:16:22,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:24,563 INFO Connection check task start + +2025-09-24 14:16:24,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:24,563 INFO Out dated connection ,size=0 + +2025-09-24 14:16:24,563 INFO Connection check task end + +2025-09-24 14:16:25,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:27,563 INFO Connection check task start + +2025-09-24 14:16:27,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:27,563 INFO Out dated connection ,size=0 + +2025-09-24 14:16:27,563 INFO Connection check task end + +2025-09-24 14:16:28,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:30,567 INFO Connection check task start + +2025-09-24 14:16:30,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:30,567 INFO Out dated connection ,size=0 + +2025-09-24 14:16:30,567 INFO Connection check task end + +2025-09-24 14:16:31,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:33,568 INFO Connection check task start + +2025-09-24 14:16:33,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:33,568 INFO Out dated connection ,size=0 + +2025-09-24 14:16:33,568 INFO Connection check task end + +2025-09-24 14:16:34,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:36,570 INFO Connection check task start + +2025-09-24 14:16:36,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:36,571 INFO Out dated connection ,size=0 + +2025-09-24 14:16:36,571 INFO Connection check task end + +2025-09-24 14:16:37,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:39,571 INFO Connection check task start + +2025-09-24 14:16:39,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:39,571 INFO Out dated connection ,size=0 + +2025-09-24 14:16:39,572 INFO Connection check task end + +2025-09-24 14:16:40,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:42,574 INFO Connection check task start + +2025-09-24 14:16:42,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:42,574 INFO Out dated connection ,size=0 + +2025-09-24 14:16:42,574 INFO Connection check task end + +2025-09-24 14:16:43,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:45,575 INFO Connection check task start + +2025-09-24 14:16:45,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:45,575 INFO Out dated connection ,size=0 + +2025-09-24 14:16:45,575 INFO Connection check task end + +2025-09-24 14:16:46,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:48,576 INFO Connection check task start + +2025-09-24 14:16:48,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:48,576 INFO Out dated connection ,size=0 + +2025-09-24 14:16:48,576 INFO Connection check task end + +2025-09-24 14:16:49,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:51,577 INFO Connection check task start + +2025-09-24 14:16:51,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:51,578 INFO Out dated connection ,size=0 + +2025-09-24 14:16:51,578 INFO Connection check task end + +2025-09-24 14:16:52,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:54,578 INFO Connection check task start + +2025-09-24 14:16:54,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:54,578 INFO Out dated connection ,size=0 + +2025-09-24 14:16:54,578 INFO Connection check task end + +2025-09-24 14:16:55,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:16:57,580 INFO Connection check task start + +2025-09-24 14:16:57,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:16:57,581 INFO Out dated connection ,size=0 + +2025-09-24 14:16:57,581 INFO Connection check task end + +2025-09-24 14:16:58,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:00,581 INFO Connection check task start + +2025-09-24 14:17:00,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:00,581 INFO Out dated connection ,size=0 + +2025-09-24 14:17:00,581 INFO Connection check task end + +2025-09-24 14:17:01,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:03,583 INFO Connection check task start + +2025-09-24 14:17:03,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:03,583 INFO Out dated connection ,size=0 + +2025-09-24 14:17:03,583 INFO Connection check task end + +2025-09-24 14:17:04,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:06,585 INFO Connection check task start + +2025-09-24 14:17:06,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:06,585 INFO Out dated connection ,size=0 + +2025-09-24 14:17:06,585 INFO Connection check task end + +2025-09-24 14:17:07,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:09,588 INFO Connection check task start + +2025-09-24 14:17:09,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:09,588 INFO Out dated connection ,size=0 + +2025-09-24 14:17:09,588 INFO Connection check task end + +2025-09-24 14:17:10,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:12,588 INFO Connection check task start + +2025-09-24 14:17:12,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:12,588 INFO Out dated connection ,size=0 + +2025-09-24 14:17:12,588 INFO Connection check task end + +2025-09-24 14:17:13,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:15,590 INFO Connection check task start + +2025-09-24 14:17:15,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:15,590 INFO Out dated connection ,size=0 + +2025-09-24 14:17:15,591 INFO Connection check task end + +2025-09-24 14:17:16,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:18,591 INFO Connection check task start + +2025-09-24 14:17:18,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:18,591 INFO Out dated connection ,size=0 + +2025-09-24 14:17:18,591 INFO Connection check task end + +2025-09-24 14:17:19,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:21,593 INFO Connection check task start + +2025-09-24 14:17:21,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:21,593 INFO Out dated connection ,size=0 + +2025-09-24 14:17:21,593 INFO Connection check task end + +2025-09-24 14:17:22,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:24,593 INFO Connection check task start + +2025-09-24 14:17:24,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:24,593 INFO Out dated connection ,size=0 + +2025-09-24 14:17:24,593 INFO Connection check task end + +2025-09-24 14:17:25,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:27,594 INFO Connection check task start + +2025-09-24 14:17:27,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:27,594 INFO Out dated connection ,size=0 + +2025-09-24 14:17:27,594 INFO Connection check task end + +2025-09-24 14:17:28,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:30,597 INFO Connection check task start + +2025-09-24 14:17:30,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:30,597 INFO Out dated connection ,size=0 + +2025-09-24 14:17:30,597 INFO Connection check task end + +2025-09-24 14:17:31,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:33,597 INFO Connection check task start + +2025-09-24 14:17:33,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:33,597 INFO Out dated connection ,size=0 + +2025-09-24 14:17:33,597 INFO Connection check task end + +2025-09-24 14:17:34,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:36,599 INFO Connection check task start + +2025-09-24 14:17:36,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:36,599 INFO Out dated connection ,size=0 + +2025-09-24 14:17:36,600 INFO Connection check task end + +2025-09-24 14:17:37,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:39,602 INFO Connection check task start + +2025-09-24 14:17:39,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:39,602 INFO Out dated connection ,size=0 + +2025-09-24 14:17:39,602 INFO Connection check task end + +2025-09-24 14:17:40,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:42,602 INFO Connection check task start + +2025-09-24 14:17:42,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:42,602 INFO Out dated connection ,size=0 + +2025-09-24 14:17:42,602 INFO Connection check task end + +2025-09-24 14:17:43,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:45,603 INFO Connection check task start + +2025-09-24 14:17:45,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:45,603 INFO Out dated connection ,size=0 + +2025-09-24 14:17:45,603 INFO Connection check task end + +2025-09-24 14:17:46,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:48,605 INFO Connection check task start + +2025-09-24 14:17:48,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:48,610 INFO Out dated connection ,size=0 + +2025-09-24 14:17:48,610 INFO Connection check task end + +2025-09-24 14:17:49,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:51,611 INFO Connection check task start + +2025-09-24 14:17:51,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:51,612 INFO Out dated connection ,size=0 + +2025-09-24 14:17:51,612 INFO Connection check task end + +2025-09-24 14:17:52,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:54,612 INFO Connection check task start + +2025-09-24 14:17:54,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:54,612 INFO Out dated connection ,size=0 + +2025-09-24 14:17:54,612 INFO Connection check task end + +2025-09-24 14:17:55,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:17:57,613 INFO Connection check task start + +2025-09-24 14:17:57,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:17:57,614 INFO Out dated connection ,size=0 + +2025-09-24 14:17:57,614 INFO Connection check task end + +2025-09-24 14:17:58,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:00,616 INFO Connection check task start + +2025-09-24 14:18:00,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:00,616 INFO Out dated connection ,size=0 + +2025-09-24 14:18:00,616 INFO Connection check task end + +2025-09-24 14:18:01,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:03,618 INFO Connection check task start + +2025-09-24 14:18:03,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:03,618 INFO Out dated connection ,size=0 + +2025-09-24 14:18:03,618 INFO Connection check task end + +2025-09-24 14:18:04,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:06,619 INFO Connection check task start + +2025-09-24 14:18:06,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:06,619 INFO Out dated connection ,size=0 + +2025-09-24 14:18:06,619 INFO Connection check task end + +2025-09-24 14:18:07,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:09,620 INFO Connection check task start + +2025-09-24 14:18:09,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:09,620 INFO Out dated connection ,size=0 + +2025-09-24 14:18:09,620 INFO Connection check task end + +2025-09-24 14:18:10,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:12,622 INFO Connection check task start + +2025-09-24 14:18:12,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:12,622 INFO Out dated connection ,size=0 + +2025-09-24 14:18:12,622 INFO Connection check task end + +2025-09-24 14:18:13,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:15,624 INFO Connection check task start + +2025-09-24 14:18:15,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:15,624 INFO Out dated connection ,size=0 + +2025-09-24 14:18:15,624 INFO Connection check task end + +2025-09-24 14:18:16,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:18,625 INFO Connection check task start + +2025-09-24 14:18:18,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:18,625 INFO Out dated connection ,size=0 + +2025-09-24 14:18:18,625 INFO Connection check task end + +2025-09-24 14:18:19,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:21,625 INFO Connection check task start + +2025-09-24 14:18:21,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:21,625 INFO Out dated connection ,size=0 + +2025-09-24 14:18:21,625 INFO Connection check task end + +2025-09-24 14:18:22,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:24,626 INFO Connection check task start + +2025-09-24 14:18:24,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:24,626 INFO Out dated connection ,size=0 + +2025-09-24 14:18:24,626 INFO Connection check task end + +2025-09-24 14:18:25,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:27,627 INFO Connection check task start + +2025-09-24 14:18:27,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:27,627 INFO Out dated connection ,size=0 + +2025-09-24 14:18:27,627 INFO Connection check task end + +2025-09-24 14:18:28,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:30,628 INFO Connection check task start + +2025-09-24 14:18:30,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:30,628 INFO Out dated connection ,size=0 + +2025-09-24 14:18:30,628 INFO Connection check task end + +2025-09-24 14:18:31,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:33,629 INFO Connection check task start + +2025-09-24 14:18:33,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:33,629 INFO Out dated connection ,size=0 + +2025-09-24 14:18:33,629 INFO Connection check task end + +2025-09-24 14:18:34,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:36,632 INFO Connection check task start + +2025-09-24 14:18:36,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:36,632 INFO Out dated connection ,size=0 + +2025-09-24 14:18:36,632 INFO Connection check task end + +2025-09-24 14:18:37,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:39,632 INFO Connection check task start + +2025-09-24 14:18:39,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:39,632 INFO Out dated connection ,size=0 + +2025-09-24 14:18:39,632 INFO Connection check task end + +2025-09-24 14:18:40,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:42,633 INFO Connection check task start + +2025-09-24 14:18:42,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:42,633 INFO Out dated connection ,size=0 + +2025-09-24 14:18:42,633 INFO Connection check task end + +2025-09-24 14:18:43,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:45,635 INFO Connection check task start + +2025-09-24 14:18:45,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:45,635 INFO Out dated connection ,size=0 + +2025-09-24 14:18:45,635 INFO Connection check task end + +2025-09-24 14:18:46,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:48,637 INFO Connection check task start + +2025-09-24 14:18:48,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:48,665 INFO Out dated connection ,size=0 + +2025-09-24 14:18:48,666 INFO Connection check task end + +2025-09-24 14:18:49,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:51,667 INFO Connection check task start + +2025-09-24 14:18:51,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:51,668 INFO Out dated connection ,size=0 + +2025-09-24 14:18:51,668 INFO Connection check task end + +2025-09-24 14:18:52,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:54,668 INFO Connection check task start + +2025-09-24 14:18:54,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:54,668 INFO Out dated connection ,size=0 + +2025-09-24 14:18:54,668 INFO Connection check task end + +2025-09-24 14:18:55,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:18:57,670 INFO Connection check task start + +2025-09-24 14:18:57,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:18:57,670 INFO Out dated connection ,size=0 + +2025-09-24 14:18:57,670 INFO Connection check task end + +2025-09-24 14:18:58,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:00,670 INFO Connection check task start + +2025-09-24 14:19:00,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:00,670 INFO Out dated connection ,size=0 + +2025-09-24 14:19:00,670 INFO Connection check task end + +2025-09-24 14:19:01,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:03,672 INFO Connection check task start + +2025-09-24 14:19:03,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:03,672 INFO Out dated connection ,size=0 + +2025-09-24 14:19:03,672 INFO Connection check task end + +2025-09-24 14:19:04,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:06,673 INFO Connection check task start + +2025-09-24 14:19:06,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:06,673 INFO Out dated connection ,size=0 + +2025-09-24 14:19:06,673 INFO Connection check task end + +2025-09-24 14:19:07,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:09,674 INFO Connection check task start + +2025-09-24 14:19:09,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:09,674 INFO Out dated connection ,size=0 + +2025-09-24 14:19:09,674 INFO Connection check task end + +2025-09-24 14:19:10,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:12,675 INFO Connection check task start + +2025-09-24 14:19:12,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:12,675 INFO Out dated connection ,size=0 + +2025-09-24 14:19:12,675 INFO Connection check task end + +2025-09-24 14:19:13,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:15,675 INFO Connection check task start + +2025-09-24 14:19:15,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:15,675 INFO Out dated connection ,size=0 + +2025-09-24 14:19:15,675 INFO Connection check task end + +2025-09-24 14:19:16,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:18,676 INFO Connection check task start + +2025-09-24 14:19:18,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:18,676 INFO Out dated connection ,size=0 + +2025-09-24 14:19:18,676 INFO Connection check task end + +2025-09-24 14:19:19,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:21,676 INFO Connection check task start + +2025-09-24 14:19:21,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:21,676 INFO Out dated connection ,size=0 + +2025-09-24 14:19:21,676 INFO Connection check task end + +2025-09-24 14:19:22,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:24,677 INFO Connection check task start + +2025-09-24 14:19:24,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:24,677 INFO Out dated connection ,size=0 + +2025-09-24 14:19:24,677 INFO Connection check task end + +2025-09-24 14:19:25,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:27,678 INFO Connection check task start + +2025-09-24 14:19:27,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:27,679 INFO Out dated connection ,size=0 + +2025-09-24 14:19:27,679 INFO Connection check task end + +2025-09-24 14:19:28,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:30,680 INFO Connection check task start + +2025-09-24 14:19:30,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:30,680 INFO Out dated connection ,size=0 + +2025-09-24 14:19:30,680 INFO Connection check task end + +2025-09-24 14:19:31,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:33,680 INFO Connection check task start + +2025-09-24 14:19:33,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:33,681 INFO Out dated connection ,size=0 + +2025-09-24 14:19:33,681 INFO Connection check task end + +2025-09-24 14:19:34,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:36,683 INFO Connection check task start + +2025-09-24 14:19:36,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:36,683 INFO Out dated connection ,size=0 + +2025-09-24 14:19:36,683 INFO Connection check task end + +2025-09-24 14:19:37,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:39,685 INFO Connection check task start + +2025-09-24 14:19:39,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:39,685 INFO Out dated connection ,size=0 + +2025-09-24 14:19:39,685 INFO Connection check task end + +2025-09-24 14:19:40,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:42,686 INFO Connection check task start + +2025-09-24 14:19:42,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:42,686 INFO Out dated connection ,size=0 + +2025-09-24 14:19:42,686 INFO Connection check task end + +2025-09-24 14:19:43,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:45,688 INFO Connection check task start + +2025-09-24 14:19:45,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:45,688 INFO Out dated connection ,size=0 + +2025-09-24 14:19:45,688 INFO Connection check task end + +2025-09-24 14:19:46,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:48,691 INFO Connection check task start + +2025-09-24 14:19:48,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:48,692 INFO Out dated connection ,size=0 + +2025-09-24 14:19:48,692 INFO Connection check task end + +2025-09-24 14:19:49,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:51,693 INFO Connection check task start + +2025-09-24 14:19:51,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:51,693 INFO Out dated connection ,size=0 + +2025-09-24 14:19:51,693 INFO Connection check task end + +2025-09-24 14:19:52,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:54,693 INFO Connection check task start + +2025-09-24 14:19:54,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:54,694 INFO Out dated connection ,size=0 + +2025-09-24 14:19:54,694 INFO Connection check task end + +2025-09-24 14:19:55,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:19:57,694 INFO Connection check task start + +2025-09-24 14:19:57,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:19:57,694 INFO Out dated connection ,size=0 + +2025-09-24 14:19:57,694 INFO Connection check task end + +2025-09-24 14:19:58,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:00,694 INFO Connection check task start + +2025-09-24 14:20:00,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:00,694 INFO Out dated connection ,size=0 + +2025-09-24 14:20:00,694 INFO Connection check task end + +2025-09-24 14:20:01,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:03,695 INFO Connection check task start + +2025-09-24 14:20:03,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:03,695 INFO Out dated connection ,size=0 + +2025-09-24 14:20:03,695 INFO Connection check task end + +2025-09-24 14:20:04,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:06,695 INFO Connection check task start + +2025-09-24 14:20:06,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:06,695 INFO Out dated connection ,size=0 + +2025-09-24 14:20:06,695 INFO Connection check task end + +2025-09-24 14:20:07,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:09,696 INFO Connection check task start + +2025-09-24 14:20:09,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:09,696 INFO Out dated connection ,size=0 + +2025-09-24 14:20:09,696 INFO Connection check task end + +2025-09-24 14:20:10,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:12,696 INFO Connection check task start + +2025-09-24 14:20:12,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:12,697 INFO Out dated connection ,size=0 + +2025-09-24 14:20:12,697 INFO Connection check task end + +2025-09-24 14:20:13,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:15,697 INFO Connection check task start + +2025-09-24 14:20:15,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:15,697 INFO Out dated connection ,size=0 + +2025-09-24 14:20:15,697 INFO Connection check task end + +2025-09-24 14:20:16,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:18,699 INFO Connection check task start + +2025-09-24 14:20:18,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:18,699 INFO Out dated connection ,size=0 + +2025-09-24 14:20:18,699 INFO Connection check task end + +2025-09-24 14:20:19,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:21,700 INFO Connection check task start + +2025-09-24 14:20:21,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:21,700 INFO Out dated connection ,size=0 + +2025-09-24 14:20:21,700 INFO Connection check task end + +2025-09-24 14:20:22,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:24,700 INFO Connection check task start + +2025-09-24 14:20:24,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:24,701 INFO Out dated connection ,size=0 + +2025-09-24 14:20:24,701 INFO Connection check task end + +2025-09-24 14:20:25,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:27,701 INFO Connection check task start + +2025-09-24 14:20:27,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:27,701 INFO Out dated connection ,size=0 + +2025-09-24 14:20:27,701 INFO Connection check task end + +2025-09-24 14:20:28,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:30,702 INFO Connection check task start + +2025-09-24 14:20:30,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:30,702 INFO Out dated connection ,size=0 + +2025-09-24 14:20:30,702 INFO Connection check task end + +2025-09-24 14:20:31,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:33,702 INFO Connection check task start + +2025-09-24 14:20:33,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:33,702 INFO Out dated connection ,size=0 + +2025-09-24 14:20:33,702 INFO Connection check task end + +2025-09-24 14:20:34,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:36,703 INFO Connection check task start + +2025-09-24 14:20:36,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:36,704 INFO Out dated connection ,size=0 + +2025-09-24 14:20:36,704 INFO Connection check task end + +2025-09-24 14:20:37,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:39,704 INFO Connection check task start + +2025-09-24 14:20:39,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:39,704 INFO Out dated connection ,size=0 + +2025-09-24 14:20:39,704 INFO Connection check task end + +2025-09-24 14:20:40,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:42,704 INFO Connection check task start + +2025-09-24 14:20:42,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:42,705 INFO Out dated connection ,size=0 + +2025-09-24 14:20:42,705 INFO Connection check task end + +2025-09-24 14:20:43,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:45,705 INFO Connection check task start + +2025-09-24 14:20:45,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:45,705 INFO Out dated connection ,size=0 + +2025-09-24 14:20:45,705 INFO Connection check task end + +2025-09-24 14:20:46,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:48,705 INFO Connection check task start + +2025-09-24 14:20:48,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:48,705 INFO Out dated connection ,size=0 + +2025-09-24 14:20:48,706 INFO Connection check task end + +2025-09-24 14:20:49,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:51,706 INFO Connection check task start + +2025-09-24 14:20:51,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:51,706 INFO Out dated connection ,size=0 + +2025-09-24 14:20:51,706 INFO Connection check task end + +2025-09-24 14:20:52,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:54,706 INFO Connection check task start + +2025-09-24 14:20:54,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:54,706 INFO Out dated connection ,size=0 + +2025-09-24 14:20:54,706 INFO Connection check task end + +2025-09-24 14:20:55,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:20:57,707 INFO Connection check task start + +2025-09-24 14:20:57,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:20:57,707 INFO Out dated connection ,size=0 + +2025-09-24 14:20:57,707 INFO Connection check task end + +2025-09-24 14:20:58,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:00,707 INFO Connection check task start + +2025-09-24 14:21:00,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:00,707 INFO Out dated connection ,size=0 + +2025-09-24 14:21:00,707 INFO Connection check task end + +2025-09-24 14:21:01,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:03,708 INFO Connection check task start + +2025-09-24 14:21:03,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:03,708 INFO Out dated connection ,size=0 + +2025-09-24 14:21:03,708 INFO Connection check task end + +2025-09-24 14:21:04,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:06,709 INFO Connection check task start + +2025-09-24 14:21:06,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:06,709 INFO Out dated connection ,size=0 + +2025-09-24 14:21:06,709 INFO Connection check task end + +2025-09-24 14:21:07,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:09,709 INFO Connection check task start + +2025-09-24 14:21:09,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:09,711 INFO Out dated connection ,size=0 + +2025-09-24 14:21:09,711 INFO Connection check task end + +2025-09-24 14:21:10,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:12,711 INFO Connection check task start + +2025-09-24 14:21:12,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:12,711 INFO Out dated connection ,size=0 + +2025-09-24 14:21:12,711 INFO Connection check task end + +2025-09-24 14:21:13,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:15,711 INFO Connection check task start + +2025-09-24 14:21:15,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:15,711 INFO Out dated connection ,size=0 + +2025-09-24 14:21:15,711 INFO Connection check task end + +2025-09-24 14:21:16,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:18,712 INFO Connection check task start + +2025-09-24 14:21:18,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:18,712 INFO Out dated connection ,size=0 + +2025-09-24 14:21:18,712 INFO Connection check task end + +2025-09-24 14:21:19,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:21,712 INFO Connection check task start + +2025-09-24 14:21:21,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:21,713 INFO Out dated connection ,size=0 + +2025-09-24 14:21:21,713 INFO Connection check task end + +2025-09-24 14:21:22,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:24,713 INFO Connection check task start + +2025-09-24 14:21:24,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:24,713 INFO Out dated connection ,size=0 + +2025-09-24 14:21:24,713 INFO Connection check task end + +2025-09-24 14:21:25,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:27,713 INFO Connection check task start + +2025-09-24 14:21:27,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:27,713 INFO Out dated connection ,size=0 + +2025-09-24 14:21:27,713 INFO Connection check task end + +2025-09-24 14:21:28,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:30,714 INFO Connection check task start + +2025-09-24 14:21:30,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:30,714 INFO Out dated connection ,size=0 + +2025-09-24 14:21:30,714 INFO Connection check task end + +2025-09-24 14:21:31,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:33,714 INFO Connection check task start + +2025-09-24 14:21:33,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:33,714 INFO Out dated connection ,size=0 + +2025-09-24 14:21:33,714 INFO Connection check task end + +2025-09-24 14:21:34,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:36,715 INFO Connection check task start + +2025-09-24 14:21:36,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:36,715 INFO Out dated connection ,size=0 + +2025-09-24 14:21:36,715 INFO Connection check task end + +2025-09-24 14:21:37,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:39,715 INFO Connection check task start + +2025-09-24 14:21:39,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:39,715 INFO Out dated connection ,size=0 + +2025-09-24 14:21:39,715 INFO Connection check task end + +2025-09-24 14:21:40,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:42,715 INFO Connection check task start + +2025-09-24 14:21:42,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:42,716 INFO Out dated connection ,size=0 + +2025-09-24 14:21:42,716 INFO Connection check task end + +2025-09-24 14:21:43,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:45,718 INFO Connection check task start + +2025-09-24 14:21:45,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:45,718 INFO Out dated connection ,size=0 + +2025-09-24 14:21:45,718 INFO Connection check task end + +2025-09-24 14:21:46,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:48,718 INFO Connection check task start + +2025-09-24 14:21:48,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:48,718 INFO Out dated connection ,size=0 + +2025-09-24 14:21:48,718 INFO Connection check task end + +2025-09-24 14:21:49,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:51,719 INFO Connection check task start + +2025-09-24 14:21:51,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:51,719 INFO Out dated connection ,size=0 + +2025-09-24 14:21:51,719 INFO Connection check task end + +2025-09-24 14:21:52,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:54,719 INFO Connection check task start + +2025-09-24 14:21:54,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:54,720 INFO Out dated connection ,size=0 + +2025-09-24 14:21:54,720 INFO Connection check task end + +2025-09-24 14:21:55,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:21:57,720 INFO Connection check task start + +2025-09-24 14:21:57,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:21:57,720 INFO Out dated connection ,size=0 + +2025-09-24 14:21:57,720 INFO Connection check task end + +2025-09-24 14:21:58,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:00,720 INFO Connection check task start + +2025-09-24 14:22:00,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:00,720 INFO Out dated connection ,size=0 + +2025-09-24 14:22:00,720 INFO Connection check task end + +2025-09-24 14:22:01,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:03,722 INFO Connection check task start + +2025-09-24 14:22:03,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:03,722 INFO Out dated connection ,size=0 + +2025-09-24 14:22:03,722 INFO Connection check task end + +2025-09-24 14:22:04,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:06,723 INFO Connection check task start + +2025-09-24 14:22:06,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:06,723 INFO Out dated connection ,size=0 + +2025-09-24 14:22:06,723 INFO Connection check task end + +2025-09-24 14:22:07,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:09,725 INFO Connection check task start + +2025-09-24 14:22:09,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:09,725 INFO Out dated connection ,size=0 + +2025-09-24 14:22:09,725 INFO Connection check task end + +2025-09-24 14:22:10,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:12,725 INFO Connection check task start + +2025-09-24 14:22:12,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:12,725 INFO Out dated connection ,size=0 + +2025-09-24 14:22:12,725 INFO Connection check task end + +2025-09-24 14:22:13,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:15,725 INFO Connection check task start + +2025-09-24 14:22:15,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:15,725 INFO Out dated connection ,size=0 + +2025-09-24 14:22:15,726 INFO Connection check task end + +2025-09-24 14:22:16,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:18,729 INFO Connection check task start + +2025-09-24 14:22:18,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:18,729 INFO Out dated connection ,size=0 + +2025-09-24 14:22:18,729 INFO Connection check task end + +2025-09-24 14:22:19,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:21,730 INFO Connection check task start + +2025-09-24 14:22:21,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:21,730 INFO Out dated connection ,size=0 + +2025-09-24 14:22:21,730 INFO Connection check task end + +2025-09-24 14:22:22,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:24,731 INFO Connection check task start + +2025-09-24 14:22:24,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:24,732 INFO Out dated connection ,size=0 + +2025-09-24 14:22:24,732 INFO Connection check task end + +2025-09-24 14:22:25,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:27,732 INFO Connection check task start + +2025-09-24 14:22:27,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:27,732 INFO Out dated connection ,size=0 + +2025-09-24 14:22:27,732 INFO Connection check task end + +2025-09-24 14:22:28,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:30,733 INFO Connection check task start + +2025-09-24 14:22:30,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:30,733 INFO Out dated connection ,size=0 + +2025-09-24 14:22:30,733 INFO Connection check task end + +2025-09-24 14:22:31,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:33,733 INFO Connection check task start + +2025-09-24 14:22:33,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:33,733 INFO Out dated connection ,size=0 + +2025-09-24 14:22:33,733 INFO Connection check task end + +2025-09-24 14:22:34,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:36,733 INFO Connection check task start + +2025-09-24 14:22:36,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:36,733 INFO Out dated connection ,size=0 + +2025-09-24 14:22:36,733 INFO Connection check task end + +2025-09-24 14:22:37,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:39,734 INFO Connection check task start + +2025-09-24 14:22:39,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:39,734 INFO Out dated connection ,size=0 + +2025-09-24 14:22:39,734 INFO Connection check task end + +2025-09-24 14:22:40,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:42,734 INFO Connection check task start + +2025-09-24 14:22:42,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:42,734 INFO Out dated connection ,size=0 + +2025-09-24 14:22:42,734 INFO Connection check task end + +2025-09-24 14:22:43,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:45,735 INFO Connection check task start + +2025-09-24 14:22:45,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:45,735 INFO Out dated connection ,size=0 + +2025-09-24 14:22:45,735 INFO Connection check task end + +2025-09-24 14:22:46,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:48,735 INFO Connection check task start + +2025-09-24 14:22:48,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:48,735 INFO Out dated connection ,size=0 + +2025-09-24 14:22:48,736 INFO Connection check task end + +2025-09-24 14:22:49,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:51,737 INFO Connection check task start + +2025-09-24 14:22:51,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:51,737 INFO Out dated connection ,size=0 + +2025-09-24 14:22:51,738 INFO Connection check task end + +2025-09-24 14:22:52,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:54,738 INFO Connection check task start + +2025-09-24 14:22:54,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:54,738 INFO Out dated connection ,size=0 + +2025-09-24 14:22:54,738 INFO Connection check task end + +2025-09-24 14:22:55,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:22:57,738 INFO Connection check task start + +2025-09-24 14:22:57,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:22:57,739 INFO Out dated connection ,size=0 + +2025-09-24 14:22:57,739 INFO Connection check task end + +2025-09-24 14:22:58,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:00,739 INFO Connection check task start + +2025-09-24 14:23:00,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:00,739 INFO Out dated connection ,size=0 + +2025-09-24 14:23:00,739 INFO Connection check task end + +2025-09-24 14:23:01,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:03,739 INFO Connection check task start + +2025-09-24 14:23:03,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:03,739 INFO Out dated connection ,size=0 + +2025-09-24 14:23:03,739 INFO Connection check task end + +2025-09-24 14:23:04,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:06,740 INFO Connection check task start + +2025-09-24 14:23:06,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:06,740 INFO Out dated connection ,size=0 + +2025-09-24 14:23:06,740 INFO Connection check task end + +2025-09-24 14:23:07,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:09,741 INFO Connection check task start + +2025-09-24 14:23:09,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:09,741 INFO Out dated connection ,size=0 + +2025-09-24 14:23:09,741 INFO Connection check task end + +2025-09-24 14:23:10,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:12,743 INFO Connection check task start + +2025-09-24 14:23:12,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:12,743 INFO Out dated connection ,size=0 + +2025-09-24 14:23:12,743 INFO Connection check task end + +2025-09-24 14:23:13,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:15,744 INFO Connection check task start + +2025-09-24 14:23:15,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:15,744 INFO Out dated connection ,size=0 + +2025-09-24 14:23:15,744 INFO Connection check task end + +2025-09-24 14:23:16,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:18,744 INFO Connection check task start + +2025-09-24 14:23:18,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:18,744 INFO Out dated connection ,size=0 + +2025-09-24 14:23:18,744 INFO Connection check task end + +2025-09-24 14:23:19,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:21,745 INFO Connection check task start + +2025-09-24 14:23:21,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:21,745 INFO Out dated connection ,size=0 + +2025-09-24 14:23:21,745 INFO Connection check task end + +2025-09-24 14:23:22,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:24,746 INFO Connection check task start + +2025-09-24 14:23:24,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:24,746 INFO Out dated connection ,size=0 + +2025-09-24 14:23:24,746 INFO Connection check task end + +2025-09-24 14:23:25,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:27,746 INFO Connection check task start + +2025-09-24 14:23:27,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:27,746 INFO Out dated connection ,size=0 + +2025-09-24 14:23:27,746 INFO Connection check task end + +2025-09-24 14:23:28,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:30,746 INFO Connection check task start + +2025-09-24 14:23:30,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:30,746 INFO Out dated connection ,size=0 + +2025-09-24 14:23:30,747 INFO Connection check task end + +2025-09-24 14:23:31,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:33,747 INFO Connection check task start + +2025-09-24 14:23:33,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:33,748 INFO Out dated connection ,size=0 + +2025-09-24 14:23:33,748 INFO Connection check task end + +2025-09-24 14:23:34,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:36,748 INFO Connection check task start + +2025-09-24 14:23:36,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:36,748 INFO Out dated connection ,size=0 + +2025-09-24 14:23:36,748 INFO Connection check task end + +2025-09-24 14:23:37,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:39,749 INFO Connection check task start + +2025-09-24 14:23:39,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:39,749 INFO Out dated connection ,size=0 + +2025-09-24 14:23:39,749 INFO Connection check task end + +2025-09-24 14:23:40,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:42,749 INFO Connection check task start + +2025-09-24 14:23:42,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:42,749 INFO Out dated connection ,size=0 + +2025-09-24 14:23:42,749 INFO Connection check task end + +2025-09-24 14:23:43,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:45,749 INFO Connection check task start + +2025-09-24 14:23:45,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:45,750 INFO Out dated connection ,size=0 + +2025-09-24 14:23:45,750 INFO Connection check task end + +2025-09-24 14:23:46,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:48,752 INFO Connection check task start + +2025-09-24 14:23:48,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:48,752 INFO Out dated connection ,size=0 + +2025-09-24 14:23:48,752 INFO Connection check task end + +2025-09-24 14:23:49,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:51,753 INFO Connection check task start + +2025-09-24 14:23:51,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:51,753 INFO Out dated connection ,size=0 + +2025-09-24 14:23:51,753 INFO Connection check task end + +2025-09-24 14:23:52,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:54,754 INFO Connection check task start + +2025-09-24 14:23:54,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:54,754 INFO Out dated connection ,size=0 + +2025-09-24 14:23:54,754 INFO Connection check task end + +2025-09-24 14:23:55,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:23:57,754 INFO Connection check task start + +2025-09-24 14:23:57,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:23:57,754 INFO Out dated connection ,size=0 + +2025-09-24 14:23:57,754 INFO Connection check task end + +2025-09-24 14:23:58,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:00,754 INFO Connection check task start + +2025-09-24 14:24:00,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:00,755 INFO Out dated connection ,size=0 + +2025-09-24 14:24:00,755 INFO Connection check task end + +2025-09-24 14:24:01,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:03,757 INFO Connection check task start + +2025-09-24 14:24:03,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:03,757 INFO Out dated connection ,size=0 + +2025-09-24 14:24:03,757 INFO Connection check task end + +2025-09-24 14:24:04,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:06,759 INFO Connection check task start + +2025-09-24 14:24:06,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:06,759 INFO Out dated connection ,size=0 + +2025-09-24 14:24:06,759 INFO Connection check task end + +2025-09-24 14:24:07,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:09,761 INFO Connection check task start + +2025-09-24 14:24:09,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:09,761 INFO Out dated connection ,size=0 + +2025-09-24 14:24:09,761 INFO Connection check task end + +2025-09-24 14:24:10,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:12,762 INFO Connection check task start + +2025-09-24 14:24:12,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:12,762 INFO Out dated connection ,size=0 + +2025-09-24 14:24:12,762 INFO Connection check task end + +2025-09-24 14:24:13,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:15,764 INFO Connection check task start + +2025-09-24 14:24:15,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:15,764 INFO Out dated connection ,size=0 + +2025-09-24 14:24:15,764 INFO Connection check task end + +2025-09-24 14:24:16,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:18,764 INFO Connection check task start + +2025-09-24 14:24:18,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:18,764 INFO Out dated connection ,size=0 + +2025-09-24 14:24:18,764 INFO Connection check task end + +2025-09-24 14:24:19,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:21,766 INFO Connection check task start + +2025-09-24 14:24:21,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:21,767 INFO Out dated connection ,size=0 + +2025-09-24 14:24:21,767 INFO Connection check task end + +2025-09-24 14:24:22,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:24,767 INFO Connection check task start + +2025-09-24 14:24:24,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:24,767 INFO Out dated connection ,size=0 + +2025-09-24 14:24:24,767 INFO Connection check task end + +2025-09-24 14:24:25,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:27,767 INFO Connection check task start + +2025-09-24 14:24:27,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:27,768 INFO Out dated connection ,size=0 + +2025-09-24 14:24:27,768 INFO Connection check task end + +2025-09-24 14:24:28,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:30,768 INFO Connection check task start + +2025-09-24 14:24:30,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:30,768 INFO Out dated connection ,size=0 + +2025-09-24 14:24:30,768 INFO Connection check task end + +2025-09-24 14:24:31,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:33,770 INFO Connection check task start + +2025-09-24 14:24:33,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:33,771 INFO Out dated connection ,size=0 + +2025-09-24 14:24:33,771 INFO Connection check task end + +2025-09-24 14:24:34,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:36,774 INFO Connection check task start + +2025-09-24 14:24:36,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:36,774 INFO Out dated connection ,size=0 + +2025-09-24 14:24:36,774 INFO Connection check task end + +2025-09-24 14:24:37,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:39,775 INFO Connection check task start + +2025-09-24 14:24:39,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:39,775 INFO Out dated connection ,size=0 + +2025-09-24 14:24:39,775 INFO Connection check task end + +2025-09-24 14:24:40,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:42,775 INFO Connection check task start + +2025-09-24 14:24:42,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:42,775 INFO Out dated connection ,size=0 + +2025-09-24 14:24:42,776 INFO Connection check task end + +2025-09-24 14:24:43,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:45,778 INFO Connection check task start + +2025-09-24 14:24:45,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:45,778 INFO Out dated connection ,size=0 + +2025-09-24 14:24:45,778 INFO Connection check task end + +2025-09-24 14:24:46,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:48,778 INFO Connection check task start + +2025-09-24 14:24:48,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:48,778 INFO Out dated connection ,size=0 + +2025-09-24 14:24:48,779 INFO Connection check task end + +2025-09-24 14:24:49,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:51,781 INFO Connection check task start + +2025-09-24 14:24:51,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:51,781 INFO Out dated connection ,size=0 + +2025-09-24 14:24:51,781 INFO Connection check task end + +2025-09-24 14:24:52,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:54,782 INFO Connection check task start + +2025-09-24 14:24:54,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:54,782 INFO Out dated connection ,size=0 + +2025-09-24 14:24:54,782 INFO Connection check task end + +2025-09-24 14:24:55,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:24:57,783 INFO Connection check task start + +2025-09-24 14:24:57,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:24:57,783 INFO Out dated connection ,size=0 + +2025-09-24 14:24:57,783 INFO Connection check task end + +2025-09-24 14:24:58,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:00,783 INFO Connection check task start + +2025-09-24 14:25:00,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:00,783 INFO Out dated connection ,size=0 + +2025-09-24 14:25:00,783 INFO Connection check task end + +2025-09-24 14:25:01,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:03,783 INFO Connection check task start + +2025-09-24 14:25:03,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:03,783 INFO Out dated connection ,size=0 + +2025-09-24 14:25:03,784 INFO Connection check task end + +2025-09-24 14:25:04,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:06,786 INFO Connection check task start + +2025-09-24 14:25:06,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:06,786 INFO Out dated connection ,size=0 + +2025-09-24 14:25:06,786 INFO Connection check task end + +2025-09-24 14:25:07,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:09,786 INFO Connection check task start + +2025-09-24 14:25:09,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:09,786 INFO Out dated connection ,size=0 + +2025-09-24 14:25:09,786 INFO Connection check task end + +2025-09-24 14:25:10,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:12,787 INFO Connection check task start + +2025-09-24 14:25:12,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:12,787 INFO Out dated connection ,size=0 + +2025-09-24 14:25:12,787 INFO Connection check task end + +2025-09-24 14:25:13,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:15,790 INFO Connection check task start + +2025-09-24 14:25:15,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:15,790 INFO Out dated connection ,size=0 + +2025-09-24 14:25:15,790 INFO Connection check task end + +2025-09-24 14:25:16,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:18,790 INFO Connection check task start + +2025-09-24 14:25:18,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:18,791 INFO Out dated connection ,size=0 + +2025-09-24 14:25:18,791 INFO Connection check task end + +2025-09-24 14:25:19,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:21,791 INFO Connection check task start + +2025-09-24 14:25:21,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:21,791 INFO Out dated connection ,size=0 + +2025-09-24 14:25:21,791 INFO Connection check task end + +2025-09-24 14:25:22,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:24,791 INFO Connection check task start + +2025-09-24 14:25:24,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:24,792 INFO Out dated connection ,size=0 + +2025-09-24 14:25:24,792 INFO Connection check task end + +2025-09-24 14:25:25,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:27,794 INFO Connection check task start + +2025-09-24 14:25:27,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:27,794 INFO Out dated connection ,size=0 + +2025-09-24 14:25:27,794 INFO Connection check task end + +2025-09-24 14:25:28,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:30,794 INFO Connection check task start + +2025-09-24 14:25:30,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:30,794 INFO Out dated connection ,size=0 + +2025-09-24 14:25:30,795 INFO Connection check task end + +2025-09-24 14:25:31,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:33,795 INFO Connection check task start + +2025-09-24 14:25:33,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:33,795 INFO Out dated connection ,size=0 + +2025-09-24 14:25:33,795 INFO Connection check task end + +2025-09-24 14:25:34,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:36,796 INFO Connection check task start + +2025-09-24 14:25:36,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:36,796 INFO Out dated connection ,size=0 + +2025-09-24 14:25:36,796 INFO Connection check task end + +2025-09-24 14:25:37,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:39,797 INFO Connection check task start + +2025-09-24 14:25:39,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:39,797 INFO Out dated connection ,size=0 + +2025-09-24 14:25:39,797 INFO Connection check task end + +2025-09-24 14:25:40,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:42,799 INFO Connection check task start + +2025-09-24 14:25:42,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:42,799 INFO Out dated connection ,size=0 + +2025-09-24 14:25:42,800 INFO Connection check task end + +2025-09-24 14:25:43,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:45,800 INFO Connection check task start + +2025-09-24 14:25:45,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:45,800 INFO Out dated connection ,size=0 + +2025-09-24 14:25:45,801 INFO Connection check task end + +2025-09-24 14:25:46,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:48,801 INFO Connection check task start + +2025-09-24 14:25:48,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:48,801 INFO Out dated connection ,size=0 + +2025-09-24 14:25:48,801 INFO Connection check task end + +2025-09-24 14:25:49,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:51,803 INFO Connection check task start + +2025-09-24 14:25:51,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:51,803 INFO Out dated connection ,size=0 + +2025-09-24 14:25:51,803 INFO Connection check task end + +2025-09-24 14:25:52,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:54,804 INFO Connection check task start + +2025-09-24 14:25:54,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:54,804 INFO Out dated connection ,size=0 + +2025-09-24 14:25:54,804 INFO Connection check task end + +2025-09-24 14:25:55,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:25:57,805 INFO Connection check task start + +2025-09-24 14:25:57,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:25:57,805 INFO Out dated connection ,size=0 + +2025-09-24 14:25:57,805 INFO Connection check task end + +2025-09-24 14:25:58,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:00,805 INFO Connection check task start + +2025-09-24 14:26:00,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:00,805 INFO Out dated connection ,size=0 + +2025-09-24 14:26:00,805 INFO Connection check task end + +2025-09-24 14:26:01,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:03,808 INFO Connection check task start + +2025-09-24 14:26:03,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:03,808 INFO Out dated connection ,size=0 + +2025-09-24 14:26:03,808 INFO Connection check task end + +2025-09-24 14:26:04,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:06,810 INFO Connection check task start + +2025-09-24 14:26:06,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:06,810 INFO Out dated connection ,size=0 + +2025-09-24 14:26:06,810 INFO Connection check task end + +2025-09-24 14:26:07,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:09,811 INFO Connection check task start + +2025-09-24 14:26:09,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:09,811 INFO Out dated connection ,size=0 + +2025-09-24 14:26:09,811 INFO Connection check task end + +2025-09-24 14:26:10,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:12,813 INFO Connection check task start + +2025-09-24 14:26:12,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:12,813 INFO Out dated connection ,size=0 + +2025-09-24 14:26:12,813 INFO Connection check task end + +2025-09-24 14:26:13,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:15,814 INFO Connection check task start + +2025-09-24 14:26:15,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:15,814 INFO Out dated connection ,size=0 + +2025-09-24 14:26:15,814 INFO Connection check task end + +2025-09-24 14:26:16,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:18,815 INFO Connection check task start + +2025-09-24 14:26:18,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:18,818 INFO Out dated connection ,size=0 + +2025-09-24 14:26:18,818 INFO Connection check task end + +2025-09-24 14:26:19,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:21,819 INFO Connection check task start + +2025-09-24 14:26:21,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:21,819 INFO Out dated connection ,size=0 + +2025-09-24 14:26:21,819 INFO Connection check task end + +2025-09-24 14:26:22,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:24,819 INFO Connection check task start + +2025-09-24 14:26:24,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:24,819 INFO Out dated connection ,size=0 + +2025-09-24 14:26:24,819 INFO Connection check task end + +2025-09-24 14:26:25,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:27,822 INFO Connection check task start + +2025-09-24 14:26:27,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:27,822 INFO Out dated connection ,size=0 + +2025-09-24 14:26:27,822 INFO Connection check task end + +2025-09-24 14:26:28,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:30,824 INFO Connection check task start + +2025-09-24 14:26:30,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:30,824 INFO Out dated connection ,size=0 + +2025-09-24 14:26:30,824 INFO Connection check task end + +2025-09-24 14:26:31,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:33,824 INFO Connection check task start + +2025-09-24 14:26:33,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:33,824 INFO Out dated connection ,size=0 + +2025-09-24 14:26:33,824 INFO Connection check task end + +2025-09-24 14:26:34,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:36,826 INFO Connection check task start + +2025-09-24 14:26:36,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:36,826 INFO Out dated connection ,size=0 + +2025-09-24 14:26:36,826 INFO Connection check task end + +2025-09-24 14:26:37,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:39,826 INFO Connection check task start + +2025-09-24 14:26:39,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:39,826 INFO Out dated connection ,size=0 + +2025-09-24 14:26:39,826 INFO Connection check task end + +2025-09-24 14:26:40,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:42,828 INFO Connection check task start + +2025-09-24 14:26:42,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:42,828 INFO Out dated connection ,size=0 + +2025-09-24 14:26:42,828 INFO Connection check task end + +2025-09-24 14:26:43,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:45,828 INFO Connection check task start + +2025-09-24 14:26:45,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:45,829 INFO Out dated connection ,size=0 + +2025-09-24 14:26:45,829 INFO Connection check task end + +2025-09-24 14:26:46,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:48,829 INFO Connection check task start + +2025-09-24 14:26:48,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:48,829 INFO Out dated connection ,size=0 + +2025-09-24 14:26:48,829 INFO Connection check task end + +2025-09-24 14:26:49,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:51,830 INFO Connection check task start + +2025-09-24 14:26:51,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:51,830 INFO Out dated connection ,size=0 + +2025-09-24 14:26:51,831 INFO Connection check task end + +2025-09-24 14:26:52,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:54,831 INFO Connection check task start + +2025-09-24 14:26:54,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:54,831 INFO Out dated connection ,size=0 + +2025-09-24 14:26:54,831 INFO Connection check task end + +2025-09-24 14:26:55,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:26:57,833 INFO Connection check task start + +2025-09-24 14:26:57,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:26:57,834 INFO Out dated connection ,size=0 + +2025-09-24 14:26:57,834 INFO Connection check task end + +2025-09-24 14:26:58,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:00,835 INFO Connection check task start + +2025-09-24 14:27:00,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:00,835 INFO Out dated connection ,size=0 + +2025-09-24 14:27:00,835 INFO Connection check task end + +2025-09-24 14:27:01,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:03,837 INFO Connection check task start + +2025-09-24 14:27:03,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:03,837 INFO Out dated connection ,size=0 + +2025-09-24 14:27:03,837 INFO Connection check task end + +2025-09-24 14:27:04,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:06,839 INFO Connection check task start + +2025-09-24 14:27:06,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:06,840 INFO Out dated connection ,size=0 + +2025-09-24 14:27:06,840 INFO Connection check task end + +2025-09-24 14:27:07,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:09,840 INFO Connection check task start + +2025-09-24 14:27:09,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:09,840 INFO Out dated connection ,size=0 + +2025-09-24 14:27:09,840 INFO Connection check task end + +2025-09-24 14:27:10,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:12,842 INFO Connection check task start + +2025-09-24 14:27:12,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:12,842 INFO Out dated connection ,size=0 + +2025-09-24 14:27:12,842 INFO Connection check task end + +2025-09-24 14:27:13,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:15,843 INFO Connection check task start + +2025-09-24 14:27:15,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:15,843 INFO Out dated connection ,size=0 + +2025-09-24 14:27:15,843 INFO Connection check task end + +2025-09-24 14:27:16,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:18,845 INFO Connection check task start + +2025-09-24 14:27:18,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:18,845 INFO Out dated connection ,size=0 + +2025-09-24 14:27:18,845 INFO Connection check task end + +2025-09-24 14:27:19,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:21,847 INFO Connection check task start + +2025-09-24 14:27:21,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:21,847 INFO Out dated connection ,size=0 + +2025-09-24 14:27:21,847 INFO Connection check task end + +2025-09-24 14:27:22,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:24,847 INFO Connection check task start + +2025-09-24 14:27:24,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:24,847 INFO Out dated connection ,size=0 + +2025-09-24 14:27:24,847 INFO Connection check task end + +2025-09-24 14:27:25,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:27,848 INFO Connection check task start + +2025-09-24 14:27:27,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:27,848 INFO Out dated connection ,size=0 + +2025-09-24 14:27:27,848 INFO Connection check task end + +2025-09-24 14:27:28,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:30,848 INFO Connection check task start + +2025-09-24 14:27:30,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:30,849 INFO Out dated connection ,size=0 + +2025-09-24 14:27:30,849 INFO Connection check task end + +2025-09-24 14:27:31,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:33,849 INFO Connection check task start + +2025-09-24 14:27:33,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:33,849 INFO Out dated connection ,size=0 + +2025-09-24 14:27:33,850 INFO Connection check task end + +2025-09-24 14:27:34,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:36,852 INFO Connection check task start + +2025-09-24 14:27:36,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:36,852 INFO Out dated connection ,size=0 + +2025-09-24 14:27:36,852 INFO Connection check task end + +2025-09-24 14:27:37,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:39,852 INFO Connection check task start + +2025-09-24 14:27:39,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:39,852 INFO Out dated connection ,size=0 + +2025-09-24 14:27:39,852 INFO Connection check task end + +2025-09-24 14:27:40,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:42,853 INFO Connection check task start + +2025-09-24 14:27:42,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:42,853 INFO Out dated connection ,size=0 + +2025-09-24 14:27:42,853 INFO Connection check task end + +2025-09-24 14:27:43,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:45,853 INFO Connection check task start + +2025-09-24 14:27:45,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:45,853 INFO Out dated connection ,size=0 + +2025-09-24 14:27:45,853 INFO Connection check task end + +2025-09-24 14:27:46,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:48,856 INFO Connection check task start + +2025-09-24 14:27:48,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:48,856 INFO Out dated connection ,size=0 + +2025-09-24 14:27:48,856 INFO Connection check task end + +2025-09-24 14:27:49,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:51,856 INFO Connection check task start + +2025-09-24 14:27:51,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:51,856 INFO Out dated connection ,size=0 + +2025-09-24 14:27:51,856 INFO Connection check task end + +2025-09-24 14:27:52,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:54,857 INFO Connection check task start + +2025-09-24 14:27:54,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:54,857 INFO Out dated connection ,size=0 + +2025-09-24 14:27:54,857 INFO Connection check task end + +2025-09-24 14:27:55,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:27:57,857 INFO Connection check task start + +2025-09-24 14:27:57,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:27:57,858 INFO Out dated connection ,size=0 + +2025-09-24 14:27:57,858 INFO Connection check task end + +2025-09-24 14:27:58,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:00,858 INFO Connection check task start + +2025-09-24 14:28:00,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:00,858 INFO Out dated connection ,size=0 + +2025-09-24 14:28:00,858 INFO Connection check task end + +2025-09-24 14:28:01,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:03,860 INFO Connection check task start + +2025-09-24 14:28:03,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:03,860 INFO Out dated connection ,size=0 + +2025-09-24 14:28:03,860 INFO Connection check task end + +2025-09-24 14:28:04,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:06,861 INFO Connection check task start + +2025-09-24 14:28:06,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:06,861 INFO Out dated connection ,size=0 + +2025-09-24 14:28:06,861 INFO Connection check task end + +2025-09-24 14:28:07,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:09,862 INFO Connection check task start + +2025-09-24 14:28:09,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:09,862 INFO Out dated connection ,size=0 + +2025-09-24 14:28:09,862 INFO Connection check task end + +2025-09-24 14:28:10,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:12,863 INFO Connection check task start + +2025-09-24 14:28:12,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:12,863 INFO Out dated connection ,size=0 + +2025-09-24 14:28:12,863 INFO Connection check task end + +2025-09-24 14:28:13,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:15,863 INFO Connection check task start + +2025-09-24 14:28:15,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:15,864 INFO Out dated connection ,size=0 + +2025-09-24 14:28:15,864 INFO Connection check task end + +2025-09-24 14:28:16,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:18,864 INFO Connection check task start + +2025-09-24 14:28:18,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:18,864 INFO Out dated connection ,size=0 + +2025-09-24 14:28:18,864 INFO Connection check task end + +2025-09-24 14:28:19,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:21,866 INFO Connection check task start + +2025-09-24 14:28:21,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:21,866 INFO Out dated connection ,size=0 + +2025-09-24 14:28:21,866 INFO Connection check task end + +2025-09-24 14:28:22,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:24,868 INFO Connection check task start + +2025-09-24 14:28:24,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:24,868 INFO Out dated connection ,size=0 + +2025-09-24 14:28:24,868 INFO Connection check task end + +2025-09-24 14:28:25,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:27,870 INFO Connection check task start + +2025-09-24 14:28:27,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:27,870 INFO Out dated connection ,size=0 + +2025-09-24 14:28:27,870 INFO Connection check task end + +2025-09-24 14:28:28,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:30,872 INFO Connection check task start + +2025-09-24 14:28:30,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:30,872 INFO Out dated connection ,size=0 + +2025-09-24 14:28:30,873 INFO Connection check task end + +2025-09-24 14:28:31,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:33,873 INFO Connection check task start + +2025-09-24 14:28:33,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:33,873 INFO Out dated connection ,size=0 + +2025-09-24 14:28:33,873 INFO Connection check task end + +2025-09-24 14:28:34,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:36,875 INFO Connection check task start + +2025-09-24 14:28:36,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:36,875 INFO Out dated connection ,size=0 + +2025-09-24 14:28:36,875 INFO Connection check task end + +2025-09-24 14:28:37,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:39,876 INFO Connection check task start + +2025-09-24 14:28:39,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:39,876 INFO Out dated connection ,size=0 + +2025-09-24 14:28:39,877 INFO Connection check task end + +2025-09-24 14:28:40,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:42,877 INFO Connection check task start + +2025-09-24 14:28:42,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:42,877 INFO Out dated connection ,size=0 + +2025-09-24 14:28:42,877 INFO Connection check task end + +2025-09-24 14:28:43,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:45,879 INFO Connection check task start + +2025-09-24 14:28:45,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:45,879 INFO Out dated connection ,size=0 + +2025-09-24 14:28:45,879 INFO Connection check task end + +2025-09-24 14:28:46,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:48,880 INFO Connection check task start + +2025-09-24 14:28:48,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:48,880 INFO Out dated connection ,size=0 + +2025-09-24 14:28:48,880 INFO Connection check task end + +2025-09-24 14:28:49,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:51,880 INFO Connection check task start + +2025-09-24 14:28:51,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:51,880 INFO Out dated connection ,size=0 + +2025-09-24 14:28:51,880 INFO Connection check task end + +2025-09-24 14:28:52,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:54,881 INFO Connection check task start + +2025-09-24 14:28:54,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:54,881 INFO Out dated connection ,size=0 + +2025-09-24 14:28:54,881 INFO Connection check task end + +2025-09-24 14:28:55,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:28:57,881 INFO Connection check task start + +2025-09-24 14:28:57,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:28:57,881 INFO Out dated connection ,size=0 + +2025-09-24 14:28:57,882 INFO Connection check task end + +2025-09-24 14:28:58,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:00,883 INFO Connection check task start + +2025-09-24 14:29:00,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:00,883 INFO Out dated connection ,size=0 + +2025-09-24 14:29:00,884 INFO Connection check task end + +2025-09-24 14:29:01,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:03,885 INFO Connection check task start + +2025-09-24 14:29:03,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:03,886 INFO Out dated connection ,size=0 + +2025-09-24 14:29:03,886 INFO Connection check task end + +2025-09-24 14:29:04,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:06,886 INFO Connection check task start + +2025-09-24 14:29:06,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:06,886 INFO Out dated connection ,size=0 + +2025-09-24 14:29:06,886 INFO Connection check task end + +2025-09-24 14:29:07,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:09,887 INFO Connection check task start + +2025-09-24 14:29:09,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:09,887 INFO Out dated connection ,size=0 + +2025-09-24 14:29:09,887 INFO Connection check task end + +2025-09-24 14:29:10,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:12,888 INFO Connection check task start + +2025-09-24 14:29:12,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:12,889 INFO Out dated connection ,size=0 + +2025-09-24 14:29:12,889 INFO Connection check task end + +2025-09-24 14:29:13,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:15,890 INFO Connection check task start + +2025-09-24 14:29:15,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:15,891 INFO Out dated connection ,size=0 + +2025-09-24 14:29:15,891 INFO Connection check task end + +2025-09-24 14:29:16,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:18,891 INFO Connection check task start + +2025-09-24 14:29:18,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:18,891 INFO Out dated connection ,size=0 + +2025-09-24 14:29:18,891 INFO Connection check task end + +2025-09-24 14:29:19,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:21,893 INFO Connection check task start + +2025-09-24 14:29:21,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:21,893 INFO Out dated connection ,size=0 + +2025-09-24 14:29:21,893 INFO Connection check task end + +2025-09-24 14:29:22,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:24,893 INFO Connection check task start + +2025-09-24 14:29:24,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:24,893 INFO Out dated connection ,size=0 + +2025-09-24 14:29:24,893 INFO Connection check task end + +2025-09-24 14:29:25,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:27,894 INFO Connection check task start + +2025-09-24 14:29:27,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:27,894 INFO Out dated connection ,size=0 + +2025-09-24 14:29:27,894 INFO Connection check task end + +2025-09-24 14:29:28,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:30,894 INFO Connection check task start + +2025-09-24 14:29:30,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:30,895 INFO Out dated connection ,size=0 + +2025-09-24 14:29:30,895 INFO Connection check task end + +2025-09-24 14:29:31,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:33,895 INFO Connection check task start + +2025-09-24 14:29:33,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:33,895 INFO Out dated connection ,size=0 + +2025-09-24 14:29:33,895 INFO Connection check task end + +2025-09-24 14:29:34,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:36,896 INFO Connection check task start + +2025-09-24 14:29:36,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:36,896 INFO Out dated connection ,size=0 + +2025-09-24 14:29:36,896 INFO Connection check task end + +2025-09-24 14:29:37,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:39,897 INFO Connection check task start + +2025-09-24 14:29:39,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:39,897 INFO Out dated connection ,size=0 + +2025-09-24 14:29:39,898 INFO Connection check task end + +2025-09-24 14:29:40,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:42,899 INFO Connection check task start + +2025-09-24 14:29:42,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:42,899 INFO Out dated connection ,size=0 + +2025-09-24 14:29:42,899 INFO Connection check task end + +2025-09-24 14:29:43,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:45,901 INFO Connection check task start + +2025-09-24 14:29:45,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:45,901 INFO Out dated connection ,size=0 + +2025-09-24 14:29:45,901 INFO Connection check task end + +2025-09-24 14:29:46,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:48,901 INFO Connection check task start + +2025-09-24 14:29:48,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:48,902 INFO Out dated connection ,size=0 + +2025-09-24 14:29:48,902 INFO Connection check task end + +2025-09-24 14:29:49,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:51,903 INFO Connection check task start + +2025-09-24 14:29:51,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:51,903 INFO Out dated connection ,size=0 + +2025-09-24 14:29:51,903 INFO Connection check task end + +2025-09-24 14:29:52,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:54,905 INFO Connection check task start + +2025-09-24 14:29:54,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:54,905 INFO Out dated connection ,size=0 + +2025-09-24 14:29:54,905 INFO Connection check task end + +2025-09-24 14:29:55,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:29:57,905 INFO Connection check task start + +2025-09-24 14:29:57,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:29:57,906 INFO Out dated connection ,size=0 + +2025-09-24 14:29:57,906 INFO Connection check task end + +2025-09-24 14:29:58,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:00,906 INFO Connection check task start + +2025-09-24 14:30:00,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:00,906 INFO Out dated connection ,size=0 + +2025-09-24 14:30:00,906 INFO Connection check task end + +2025-09-24 14:30:01,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:03,906 INFO Connection check task start + +2025-09-24 14:30:03,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:03,907 INFO Out dated connection ,size=0 + +2025-09-24 14:30:03,907 INFO Connection check task end + +2025-09-24 14:30:04,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:06,909 INFO Connection check task start + +2025-09-24 14:30:06,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:06,909 INFO Out dated connection ,size=0 + +2025-09-24 14:30:06,909 INFO Connection check task end + +2025-09-24 14:30:07,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:09,909 INFO Connection check task start + +2025-09-24 14:30:09,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:09,910 INFO Out dated connection ,size=0 + +2025-09-24 14:30:09,910 INFO Connection check task end + +2025-09-24 14:30:10,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:12,911 INFO Connection check task start + +2025-09-24 14:30:12,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:12,911 INFO Out dated connection ,size=0 + +2025-09-24 14:30:12,911 INFO Connection check task end + +2025-09-24 14:30:13,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:15,912 INFO Connection check task start + +2025-09-24 14:30:15,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:15,913 INFO Out dated connection ,size=0 + +2025-09-24 14:30:15,913 INFO Connection check task end + +2025-09-24 14:30:16,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:18,913 INFO Connection check task start + +2025-09-24 14:30:18,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:18,913 INFO Out dated connection ,size=0 + +2025-09-24 14:30:18,913 INFO Connection check task end + +2025-09-24 14:30:19,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:21,914 INFO Connection check task start + +2025-09-24 14:30:21,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:21,914 INFO Out dated connection ,size=0 + +2025-09-24 14:30:21,914 INFO Connection check task end + +2025-09-24 14:30:22,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:24,914 INFO Connection check task start + +2025-09-24 14:30:24,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:24,915 INFO Out dated connection ,size=0 + +2025-09-24 14:30:24,915 INFO Connection check task end + +2025-09-24 14:30:25,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:27,917 INFO Connection check task start + +2025-09-24 14:30:27,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:27,917 INFO Out dated connection ,size=0 + +2025-09-24 14:30:27,917 INFO Connection check task end + +2025-09-24 14:30:28,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:30,917 INFO Connection check task start + +2025-09-24 14:30:30,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:30,917 INFO Out dated connection ,size=0 + +2025-09-24 14:30:30,918 INFO Connection check task end + +2025-09-24 14:30:31,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:33,920 INFO Connection check task start + +2025-09-24 14:30:33,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:33,920 INFO Out dated connection ,size=0 + +2025-09-24 14:30:33,920 INFO Connection check task end + +2025-09-24 14:30:34,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:36,921 INFO Connection check task start + +2025-09-24 14:30:36,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:36,921 INFO Out dated connection ,size=0 + +2025-09-24 14:30:36,921 INFO Connection check task end + +2025-09-24 14:30:37,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:39,921 INFO Connection check task start + +2025-09-24 14:30:39,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:39,922 INFO Out dated connection ,size=0 + +2025-09-24 14:30:39,922 INFO Connection check task end + +2025-09-24 14:30:40,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:42,922 INFO Connection check task start + +2025-09-24 14:30:42,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:42,922 INFO Out dated connection ,size=0 + +2025-09-24 14:30:42,922 INFO Connection check task end + +2025-09-24 14:30:43,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:45,923 INFO Connection check task start + +2025-09-24 14:30:45,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:45,923 INFO Out dated connection ,size=0 + +2025-09-24 14:30:45,923 INFO Connection check task end + +2025-09-24 14:30:46,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:48,924 INFO Connection check task start + +2025-09-24 14:30:48,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:48,933 INFO Out dated connection ,size=0 + +2025-09-24 14:30:48,933 INFO Connection check task end + +2025-09-24 14:30:49,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:51,934 INFO Connection check task start + +2025-09-24 14:30:51,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:51,935 INFO Out dated connection ,size=0 + +2025-09-24 14:30:51,935 INFO Connection check task end + +2025-09-24 14:30:52,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:54,936 INFO Connection check task start + +2025-09-24 14:30:54,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:54,936 INFO Out dated connection ,size=0 + +2025-09-24 14:30:54,936 INFO Connection check task end + +2025-09-24 14:30:55,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:30:57,937 INFO Connection check task start + +2025-09-24 14:30:57,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:30:57,937 INFO Out dated connection ,size=0 + +2025-09-24 14:30:57,937 INFO Connection check task end + +2025-09-24 14:30:58,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:00,937 INFO Connection check task start + +2025-09-24 14:31:00,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:00,937 INFO Out dated connection ,size=0 + +2025-09-24 14:31:00,937 INFO Connection check task end + +2025-09-24 14:31:01,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:03,937 INFO Connection check task start + +2025-09-24 14:31:03,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:03,938 INFO Out dated connection ,size=0 + +2025-09-24 14:31:03,938 INFO Connection check task end + +2025-09-24 14:31:04,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:06,938 INFO Connection check task start + +2025-09-24 14:31:06,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:06,938 INFO Out dated connection ,size=0 + +2025-09-24 14:31:06,938 INFO Connection check task end + +2025-09-24 14:31:07,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:09,939 INFO Connection check task start + +2025-09-24 14:31:09,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:09,939 INFO Out dated connection ,size=0 + +2025-09-24 14:31:09,939 INFO Connection check task end + +2025-09-24 14:31:10,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:12,940 INFO Connection check task start + +2025-09-24 14:31:12,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:12,940 INFO Out dated connection ,size=0 + +2025-09-24 14:31:12,940 INFO Connection check task end + +2025-09-24 14:31:13,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:15,941 INFO Connection check task start + +2025-09-24 14:31:15,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:15,941 INFO Out dated connection ,size=0 + +2025-09-24 14:31:15,941 INFO Connection check task end + +2025-09-24 14:31:16,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:18,942 INFO Connection check task start + +2025-09-24 14:31:18,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:18,942 INFO Out dated connection ,size=0 + +2025-09-24 14:31:18,942 INFO Connection check task end + +2025-09-24 14:31:19,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:21,944 INFO Connection check task start + +2025-09-24 14:31:21,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:21,944 INFO Out dated connection ,size=0 + +2025-09-24 14:31:21,944 INFO Connection check task end + +2025-09-24 14:31:22,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:24,946 INFO Connection check task start + +2025-09-24 14:31:24,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:24,946 INFO Out dated connection ,size=0 + +2025-09-24 14:31:24,946 INFO Connection check task end + +2025-09-24 14:31:25,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:27,948 INFO Connection check task start + +2025-09-24 14:31:27,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:27,949 INFO Out dated connection ,size=0 + +2025-09-24 14:31:27,949 INFO Connection check task end + +2025-09-24 14:31:28,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:30,951 INFO Connection check task start + +2025-09-24 14:31:30,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:30,951 INFO Out dated connection ,size=0 + +2025-09-24 14:31:30,951 INFO Connection check task end + +2025-09-24 14:31:31,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:33,952 INFO Connection check task start + +2025-09-24 14:31:33,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:33,952 INFO Out dated connection ,size=0 + +2025-09-24 14:31:33,952 INFO Connection check task end + +2025-09-24 14:31:34,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:36,954 INFO Connection check task start + +2025-09-24 14:31:36,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:36,954 INFO Out dated connection ,size=0 + +2025-09-24 14:31:36,954 INFO Connection check task end + +2025-09-24 14:31:37,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:39,954 INFO Connection check task start + +2025-09-24 14:31:39,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:39,954 INFO Out dated connection ,size=0 + +2025-09-24 14:31:39,954 INFO Connection check task end + +2025-09-24 14:31:40,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:42,954 INFO Connection check task start + +2025-09-24 14:31:42,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:42,954 INFO Out dated connection ,size=0 + +2025-09-24 14:31:42,954 INFO Connection check task end + +2025-09-24 14:31:43,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:45,956 INFO Connection check task start + +2025-09-24 14:31:45,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:45,956 INFO Out dated connection ,size=0 + +2025-09-24 14:31:45,956 INFO Connection check task end + +2025-09-24 14:31:46,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:48,956 INFO Connection check task start + +2025-09-24 14:31:48,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:48,956 INFO Out dated connection ,size=0 + +2025-09-24 14:31:48,956 INFO Connection check task end + +2025-09-24 14:31:49,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:51,959 INFO Connection check task start + +2025-09-24 14:31:51,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:51,959 INFO Out dated connection ,size=0 + +2025-09-24 14:31:51,959 INFO Connection check task end + +2025-09-24 14:31:52,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:54,959 INFO Connection check task start + +2025-09-24 14:31:54,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:54,959 INFO Out dated connection ,size=0 + +2025-09-24 14:31:54,959 INFO Connection check task end + +2025-09-24 14:31:55,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:31:57,960 INFO Connection check task start + +2025-09-24 14:31:57,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:31:57,960 INFO Out dated connection ,size=0 + +2025-09-24 14:31:57,960 INFO Connection check task end + +2025-09-24 14:31:58,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:00,962 INFO Connection check task start + +2025-09-24 14:32:00,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:00,962 INFO Out dated connection ,size=0 + +2025-09-24 14:32:00,962 INFO Connection check task end + +2025-09-24 14:32:01,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:03,962 INFO Connection check task start + +2025-09-24 14:32:03,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:03,963 INFO Out dated connection ,size=0 + +2025-09-24 14:32:03,963 INFO Connection check task end + +2025-09-24 14:32:04,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:06,963 INFO Connection check task start + +2025-09-24 14:32:06,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:06,963 INFO Out dated connection ,size=0 + +2025-09-24 14:32:06,963 INFO Connection check task end + +2025-09-24 14:32:07,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:09,963 INFO Connection check task start + +2025-09-24 14:32:09,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:09,964 INFO Out dated connection ,size=0 + +2025-09-24 14:32:09,964 INFO Connection check task end + +2025-09-24 14:32:10,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:12,964 INFO Connection check task start + +2025-09-24 14:32:12,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:12,964 INFO Out dated connection ,size=0 + +2025-09-24 14:32:12,965 INFO Connection check task end + +2025-09-24 14:32:13,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:15,966 INFO Connection check task start + +2025-09-24 14:32:15,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:15,966 INFO Out dated connection ,size=0 + +2025-09-24 14:32:15,966 INFO Connection check task end + +2025-09-24 14:32:16,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:18,966 INFO Connection check task start + +2025-09-24 14:32:18,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:18,967 INFO Out dated connection ,size=0 + +2025-09-24 14:32:18,967 INFO Connection check task end + +2025-09-24 14:32:19,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:21,968 INFO Connection check task start + +2025-09-24 14:32:21,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:21,969 INFO Out dated connection ,size=0 + +2025-09-24 14:32:21,969 INFO Connection check task end + +2025-09-24 14:32:22,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:24,970 INFO Connection check task start + +2025-09-24 14:32:24,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:24,970 INFO Out dated connection ,size=0 + +2025-09-24 14:32:24,970 INFO Connection check task end + +2025-09-24 14:32:25,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:27,971 INFO Connection check task start + +2025-09-24 14:32:27,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:27,971 INFO Out dated connection ,size=0 + +2025-09-24 14:32:27,971 INFO Connection check task end + +2025-09-24 14:32:28,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:30,972 INFO Connection check task start + +2025-09-24 14:32:30,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:30,972 INFO Out dated connection ,size=0 + +2025-09-24 14:32:30,972 INFO Connection check task end + +2025-09-24 14:32:31,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:33,973 INFO Connection check task start + +2025-09-24 14:32:33,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:33,973 INFO Out dated connection ,size=0 + +2025-09-24 14:32:33,973 INFO Connection check task end + +2025-09-24 14:32:34,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:36,973 INFO Connection check task start + +2025-09-24 14:32:36,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:36,974 INFO Out dated connection ,size=0 + +2025-09-24 14:32:36,974 INFO Connection check task end + +2025-09-24 14:32:37,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:39,974 INFO Connection check task start + +2025-09-24 14:32:39,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:39,974 INFO Out dated connection ,size=0 + +2025-09-24 14:32:39,974 INFO Connection check task end + +2025-09-24 14:32:40,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:42,975 INFO Connection check task start + +2025-09-24 14:32:42,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:42,975 INFO Out dated connection ,size=0 + +2025-09-24 14:32:42,975 INFO Connection check task end + +2025-09-24 14:32:43,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:45,977 INFO Connection check task start + +2025-09-24 14:32:45,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:45,977 INFO Out dated connection ,size=0 + +2025-09-24 14:32:45,978 INFO Connection check task end + +2025-09-24 14:32:46,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:48,978 INFO Connection check task start + +2025-09-24 14:32:48,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:48,978 INFO Out dated connection ,size=0 + +2025-09-24 14:32:48,978 INFO Connection check task end + +2025-09-24 14:32:49,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:51,978 INFO Connection check task start + +2025-09-24 14:32:51,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:51,979 INFO Out dated connection ,size=0 + +2025-09-24 14:32:51,979 INFO Connection check task end + +2025-09-24 14:32:52,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:54,979 INFO Connection check task start + +2025-09-24 14:32:54,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:54,979 INFO Out dated connection ,size=0 + +2025-09-24 14:32:54,979 INFO Connection check task end + +2025-09-24 14:32:55,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:32:57,980 INFO Connection check task start + +2025-09-24 14:32:57,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:32:57,980 INFO Out dated connection ,size=0 + +2025-09-24 14:32:57,980 INFO Connection check task end + +2025-09-24 14:32:58,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:00,980 INFO Connection check task start + +2025-09-24 14:33:00,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:00,980 INFO Out dated connection ,size=0 + +2025-09-24 14:33:00,980 INFO Connection check task end + +2025-09-24 14:33:01,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:03,980 INFO Connection check task start + +2025-09-24 14:33:03,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:03,980 INFO Out dated connection ,size=0 + +2025-09-24 14:33:03,981 INFO Connection check task end + +2025-09-24 14:33:04,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:06,983 INFO Connection check task start + +2025-09-24 14:33:06,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:06,983 INFO Out dated connection ,size=0 + +2025-09-24 14:33:06,983 INFO Connection check task end + +2025-09-24 14:33:07,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:09,984 INFO Connection check task start + +2025-09-24 14:33:09,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:09,984 INFO Out dated connection ,size=0 + +2025-09-24 14:33:09,984 INFO Connection check task end + +2025-09-24 14:33:10,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:12,986 INFO Connection check task start + +2025-09-24 14:33:12,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:12,986 INFO Out dated connection ,size=0 + +2025-09-24 14:33:12,986 INFO Connection check task end + +2025-09-24 14:33:13,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:15,987 INFO Connection check task start + +2025-09-24 14:33:15,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:15,987 INFO Out dated connection ,size=0 + +2025-09-24 14:33:15,987 INFO Connection check task end + +2025-09-24 14:33:16,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:18,988 INFO Connection check task start + +2025-09-24 14:33:18,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:18,989 INFO Out dated connection ,size=0 + +2025-09-24 14:33:18,989 INFO Connection check task end + +2025-09-24 14:33:19,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:21,989 INFO Connection check task start + +2025-09-24 14:33:21,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:21,990 INFO Out dated connection ,size=0 + +2025-09-24 14:33:21,990 INFO Connection check task end + +2025-09-24 14:33:22,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:24,992 INFO Connection check task start + +2025-09-24 14:33:24,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:24,992 INFO Out dated connection ,size=0 + +2025-09-24 14:33:24,992 INFO Connection check task end + +2025-09-24 14:33:25,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:27,992 INFO Connection check task start + +2025-09-24 14:33:27,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:27,992 INFO Out dated connection ,size=0 + +2025-09-24 14:33:27,992 INFO Connection check task end + +2025-09-24 14:33:28,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:30,994 INFO Connection check task start + +2025-09-24 14:33:30,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:30,994 INFO Out dated connection ,size=0 + +2025-09-24 14:33:30,994 INFO Connection check task end + +2025-09-24 14:33:31,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:33,995 INFO Connection check task start + +2025-09-24 14:33:33,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:33,995 INFO Out dated connection ,size=0 + +2025-09-24 14:33:33,995 INFO Connection check task end + +2025-09-24 14:33:34,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:36,996 INFO Connection check task start + +2025-09-24 14:33:36,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:36,996 INFO Out dated connection ,size=0 + +2025-09-24 14:33:36,996 INFO Connection check task end + +2025-09-24 14:33:37,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:39,996 INFO Connection check task start + +2025-09-24 14:33:39,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:39,996 INFO Out dated connection ,size=0 + +2025-09-24 14:33:39,996 INFO Connection check task end + +2025-09-24 14:33:40,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:42,998 INFO Connection check task start + +2025-09-24 14:33:42,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:42,998 INFO Out dated connection ,size=0 + +2025-09-24 14:33:42,998 INFO Connection check task end + +2025-09-24 14:33:43,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:45,998 INFO Connection check task start + +2025-09-24 14:33:45,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:45,999 INFO Out dated connection ,size=0 + +2025-09-24 14:33:45,999 INFO Connection check task end + +2025-09-24 14:33:46,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:48,999 INFO Connection check task start + +2025-09-24 14:33:49,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:49,000 INFO Out dated connection ,size=0 + +2025-09-24 14:33:49,000 INFO Connection check task end + +2025-09-24 14:33:49,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:52,000 INFO Connection check task start + +2025-09-24 14:33:52,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:52,000 INFO Out dated connection ,size=0 + +2025-09-24 14:33:52,000 INFO Connection check task end + +2025-09-24 14:33:52,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:55,001 INFO Connection check task start + +2025-09-24 14:33:55,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:55,001 INFO Out dated connection ,size=0 + +2025-09-24 14:33:55,001 INFO Connection check task end + +2025-09-24 14:33:55,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:33:58,003 INFO Connection check task start + +2025-09-24 14:33:58,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:33:58,003 INFO Out dated connection ,size=0 + +2025-09-24 14:33:58,003 INFO Connection check task end + +2025-09-24 14:33:58,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:01,005 INFO Connection check task start + +2025-09-24 14:34:01,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:01,005 INFO Out dated connection ,size=0 + +2025-09-24 14:34:01,005 INFO Connection check task end + +2025-09-24 14:34:01,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:04,006 INFO Connection check task start + +2025-09-24 14:34:04,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:04,006 INFO Out dated connection ,size=0 + +2025-09-24 14:34:04,007 INFO Connection check task end + +2025-09-24 14:34:04,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:07,007 INFO Connection check task start + +2025-09-24 14:34:07,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:07,008 INFO Out dated connection ,size=0 + +2025-09-24 14:34:07,008 INFO Connection check task end + +2025-09-24 14:34:07,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:10,009 INFO Connection check task start + +2025-09-24 14:34:10,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:10,009 INFO Out dated connection ,size=0 + +2025-09-24 14:34:10,010 INFO Connection check task end + +2025-09-24 14:34:10,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:13,010 INFO Connection check task start + +2025-09-24 14:34:13,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:13,011 INFO Out dated connection ,size=0 + +2025-09-24 14:34:13,011 INFO Connection check task end + +2025-09-24 14:34:13,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:16,012 INFO Connection check task start + +2025-09-24 14:34:16,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:16,012 INFO Out dated connection ,size=0 + +2025-09-24 14:34:16,012 INFO Connection check task end + +2025-09-24 14:34:16,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:19,013 INFO Connection check task start + +2025-09-24 14:34:19,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:19,013 INFO Out dated connection ,size=0 + +2025-09-24 14:34:19,013 INFO Connection check task end + +2025-09-24 14:34:19,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:22,013 INFO Connection check task start + +2025-09-24 14:34:22,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:22,014 INFO Out dated connection ,size=0 + +2025-09-24 14:34:22,014 INFO Connection check task end + +2025-09-24 14:34:22,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:25,015 INFO Connection check task start + +2025-09-24 14:34:25,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:25,015 INFO Out dated connection ,size=0 + +2025-09-24 14:34:25,015 INFO Connection check task end + +2025-09-24 14:34:25,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:28,016 INFO Connection check task start + +2025-09-24 14:34:28,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:28,017 INFO Out dated connection ,size=0 + +2025-09-24 14:34:28,017 INFO Connection check task end + +2025-09-24 14:34:28,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:31,017 INFO Connection check task start + +2025-09-24 14:34:31,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:31,017 INFO Out dated connection ,size=0 + +2025-09-24 14:34:31,017 INFO Connection check task end + +2025-09-24 14:34:31,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:34,018 INFO Connection check task start + +2025-09-24 14:34:34,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:34,018 INFO Out dated connection ,size=0 + +2025-09-24 14:34:34,018 INFO Connection check task end + +2025-09-24 14:34:34,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:37,019 INFO Connection check task start + +2025-09-24 14:34:37,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:37,019 INFO Out dated connection ,size=0 + +2025-09-24 14:34:37,019 INFO Connection check task end + +2025-09-24 14:34:37,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:40,021 INFO Connection check task start + +2025-09-24 14:34:40,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:40,021 INFO Out dated connection ,size=0 + +2025-09-24 14:34:40,021 INFO Connection check task end + +2025-09-24 14:34:40,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:43,022 INFO Connection check task start + +2025-09-24 14:34:43,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:43,022 INFO Out dated connection ,size=0 + +2025-09-24 14:34:43,022 INFO Connection check task end + +2025-09-24 14:34:43,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:46,023 INFO Connection check task start + +2025-09-24 14:34:46,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:46,023 INFO Out dated connection ,size=0 + +2025-09-24 14:34:46,023 INFO Connection check task end + +2025-09-24 14:34:46,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:49,023 INFO Connection check task start + +2025-09-24 14:34:49,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:49,024 INFO Out dated connection ,size=0 + +2025-09-24 14:34:49,024 INFO Connection check task end + +2025-09-24 14:34:49,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:52,024 INFO Connection check task start + +2025-09-24 14:34:52,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:52,024 INFO Out dated connection ,size=0 + +2025-09-24 14:34:52,024 INFO Connection check task end + +2025-09-24 14:34:52,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:55,029 INFO Connection check task start + +2025-09-24 14:34:55,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:55,029 INFO Out dated connection ,size=0 + +2025-09-24 14:34:55,029 INFO Connection check task end + +2025-09-24 14:34:55,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:34:58,029 INFO Connection check task start + +2025-09-24 14:34:58,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:34:58,029 INFO Out dated connection ,size=0 + +2025-09-24 14:34:58,029 INFO Connection check task end + +2025-09-24 14:34:58,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:01,029 INFO Connection check task start + +2025-09-24 14:35:01,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:01,030 INFO Out dated connection ,size=0 + +2025-09-24 14:35:01,030 INFO Connection check task end + +2025-09-24 14:35:01,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:04,030 INFO Connection check task start + +2025-09-24 14:35:04,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:04,030 INFO Out dated connection ,size=0 + +2025-09-24 14:35:04,031 INFO Connection check task end + +2025-09-24 14:35:04,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:07,032 INFO Connection check task start + +2025-09-24 14:35:07,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:07,033 INFO Out dated connection ,size=0 + +2025-09-24 14:35:07,033 INFO Connection check task end + +2025-09-24 14:35:07,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:10,033 INFO Connection check task start + +2025-09-24 14:35:10,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:10,033 INFO Out dated connection ,size=0 + +2025-09-24 14:35:10,033 INFO Connection check task end + +2025-09-24 14:35:10,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:13,034 INFO Connection check task start + +2025-09-24 14:35:13,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:13,034 INFO Out dated connection ,size=0 + +2025-09-24 14:35:13,034 INFO Connection check task end + +2025-09-24 14:35:13,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:16,036 INFO Connection check task start + +2025-09-24 14:35:16,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:16,036 INFO Out dated connection ,size=0 + +2025-09-24 14:35:16,036 INFO Connection check task end + +2025-09-24 14:35:16,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:19,036 INFO Connection check task start + +2025-09-24 14:35:19,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:19,036 INFO Out dated connection ,size=0 + +2025-09-24 14:35:19,036 INFO Connection check task end + +2025-09-24 14:35:19,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:22,036 INFO Connection check task start + +2025-09-24 14:35:22,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:22,037 INFO Out dated connection ,size=0 + +2025-09-24 14:35:22,037 INFO Connection check task end + +2025-09-24 14:35:22,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:25,038 INFO Connection check task start + +2025-09-24 14:35:25,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:25,038 INFO Out dated connection ,size=0 + +2025-09-24 14:35:25,038 INFO Connection check task end + +2025-09-24 14:35:25,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:28,040 INFO Connection check task start + +2025-09-24 14:35:28,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:28,041 INFO Out dated connection ,size=0 + +2025-09-24 14:35:28,041 INFO Connection check task end + +2025-09-24 14:35:28,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:31,041 INFO Connection check task start + +2025-09-24 14:35:31,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:31,041 INFO Out dated connection ,size=0 + +2025-09-24 14:35:31,041 INFO Connection check task end + +2025-09-24 14:35:31,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:34,043 INFO Connection check task start + +2025-09-24 14:35:34,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:34,043 INFO Out dated connection ,size=0 + +2025-09-24 14:35:34,044 INFO Connection check task end + +2025-09-24 14:35:34,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:37,046 INFO Connection check task start + +2025-09-24 14:35:37,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:37,047 INFO Out dated connection ,size=0 + +2025-09-24 14:35:37,047 INFO Connection check task end + +2025-09-24 14:35:37,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:40,047 INFO Connection check task start + +2025-09-24 14:35:40,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:40,048 INFO Out dated connection ,size=0 + +2025-09-24 14:35:40,048 INFO Connection check task end + +2025-09-24 14:35:40,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:43,048 INFO Connection check task start + +2025-09-24 14:35:43,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:43,048 INFO Out dated connection ,size=0 + +2025-09-24 14:35:43,048 INFO Connection check task end + +2025-09-24 14:35:43,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:46,049 INFO Connection check task start + +2025-09-24 14:35:46,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:46,049 INFO Out dated connection ,size=0 + +2025-09-24 14:35:46,049 INFO Connection check task end + +2025-09-24 14:35:46,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:49,050 INFO Connection check task start + +2025-09-24 14:35:49,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:49,050 INFO Out dated connection ,size=0 + +2025-09-24 14:35:49,050 INFO Connection check task end + +2025-09-24 14:35:49,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:52,050 INFO Connection check task start + +2025-09-24 14:35:52,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:52,051 INFO Out dated connection ,size=0 + +2025-09-24 14:35:52,051 INFO Connection check task end + +2025-09-24 14:35:52,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:55,053 INFO Connection check task start + +2025-09-24 14:35:55,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:55,053 INFO Out dated connection ,size=0 + +2025-09-24 14:35:55,053 INFO Connection check task end + +2025-09-24 14:35:55,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:35:58,053 INFO Connection check task start + +2025-09-24 14:35:58,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:35:58,053 INFO Out dated connection ,size=0 + +2025-09-24 14:35:58,053 INFO Connection check task end + +2025-09-24 14:35:58,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:01,054 INFO Connection check task start + +2025-09-24 14:36:01,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:01,054 INFO Out dated connection ,size=0 + +2025-09-24 14:36:01,054 INFO Connection check task end + +2025-09-24 14:36:01,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:04,056 INFO Connection check task start + +2025-09-24 14:36:04,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:04,056 INFO Out dated connection ,size=0 + +2025-09-24 14:36:04,057 INFO Connection check task end + +2025-09-24 14:36:04,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:07,059 INFO Connection check task start + +2025-09-24 14:36:07,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:07,059 INFO Out dated connection ,size=0 + +2025-09-24 14:36:07,059 INFO Connection check task end + +2025-09-24 14:36:07,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:10,061 INFO Connection check task start + +2025-09-24 14:36:10,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:10,061 INFO Out dated connection ,size=0 + +2025-09-24 14:36:10,061 INFO Connection check task end + +2025-09-24 14:36:10,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:13,062 INFO Connection check task start + +2025-09-24 14:36:13,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:13,062 INFO Out dated connection ,size=0 + +2025-09-24 14:36:13,062 INFO Connection check task end + +2025-09-24 14:36:13,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:16,063 INFO Connection check task start + +2025-09-24 14:36:16,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:16,063 INFO Out dated connection ,size=0 + +2025-09-24 14:36:16,063 INFO Connection check task end + +2025-09-24 14:36:16,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:19,065 INFO Connection check task start + +2025-09-24 14:36:19,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:19,065 INFO Out dated connection ,size=0 + +2025-09-24 14:36:19,065 INFO Connection check task end + +2025-09-24 14:36:19,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:22,066 INFO Connection check task start + +2025-09-24 14:36:22,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:22,067 INFO Out dated connection ,size=0 + +2025-09-24 14:36:22,067 INFO Connection check task end + +2025-09-24 14:36:22,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:25,069 INFO Connection check task start + +2025-09-24 14:36:25,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:25,069 INFO Out dated connection ,size=0 + +2025-09-24 14:36:25,069 INFO Connection check task end + +2025-09-24 14:36:25,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:28,071 INFO Connection check task start + +2025-09-24 14:36:28,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:28,071 INFO Out dated connection ,size=0 + +2025-09-24 14:36:28,071 INFO Connection check task end + +2025-09-24 14:36:28,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:31,072 INFO Connection check task start + +2025-09-24 14:36:31,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:31,072 INFO Out dated connection ,size=0 + +2025-09-24 14:36:31,072 INFO Connection check task end + +2025-09-24 14:36:31,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:34,072 INFO Connection check task start + +2025-09-24 14:36:34,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:34,073 INFO Out dated connection ,size=0 + +2025-09-24 14:36:34,073 INFO Connection check task end + +2025-09-24 14:36:34,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:37,074 INFO Connection check task start + +2025-09-24 14:36:37,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:37,074 INFO Out dated connection ,size=0 + +2025-09-24 14:36:37,074 INFO Connection check task end + +2025-09-24 14:36:37,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:40,076 INFO Connection check task start + +2025-09-24 14:36:40,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:40,076 INFO Out dated connection ,size=0 + +2025-09-24 14:36:40,076 INFO Connection check task end + +2025-09-24 14:36:40,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:43,078 INFO Connection check task start + +2025-09-24 14:36:43,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:43,079 INFO Out dated connection ,size=0 + +2025-09-24 14:36:43,079 INFO Connection check task end + +2025-09-24 14:36:43,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:46,079 INFO Connection check task start + +2025-09-24 14:36:46,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:46,080 INFO Out dated connection ,size=0 + +2025-09-24 14:36:46,080 INFO Connection check task end + +2025-09-24 14:36:46,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:49,080 INFO Connection check task start + +2025-09-24 14:36:49,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:49,080 INFO Out dated connection ,size=0 + +2025-09-24 14:36:49,080 INFO Connection check task end + +2025-09-24 14:36:49,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:52,081 INFO Connection check task start + +2025-09-24 14:36:52,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:52,081 INFO Out dated connection ,size=0 + +2025-09-24 14:36:52,081 INFO Connection check task end + +2025-09-24 14:36:52,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:55,082 INFO Connection check task start + +2025-09-24 14:36:55,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:55,082 INFO Out dated connection ,size=0 + +2025-09-24 14:36:55,082 INFO Connection check task end + +2025-09-24 14:36:55,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:36:58,083 INFO Connection check task start + +2025-09-24 14:36:58,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:36:58,083 INFO Out dated connection ,size=0 + +2025-09-24 14:36:58,083 INFO Connection check task end + +2025-09-24 14:36:58,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:01,084 INFO Connection check task start + +2025-09-24 14:37:01,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:01,084 INFO Out dated connection ,size=0 + +2025-09-24 14:37:01,084 INFO Connection check task end + +2025-09-24 14:37:01,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:04,085 INFO Connection check task start + +2025-09-24 14:37:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:04,085 INFO Out dated connection ,size=0 + +2025-09-24 14:37:04,085 INFO Connection check task end + +2025-09-24 14:37:04,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:07,086 INFO Connection check task start + +2025-09-24 14:37:07,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:07,086 INFO Out dated connection ,size=0 + +2025-09-24 14:37:07,086 INFO Connection check task end + +2025-09-24 14:37:07,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:10,087 INFO Connection check task start + +2025-09-24 14:37:10,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:10,087 INFO Out dated connection ,size=0 + +2025-09-24 14:37:10,087 INFO Connection check task end + +2025-09-24 14:37:10,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:13,088 INFO Connection check task start + +2025-09-24 14:37:13,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:13,088 INFO Out dated connection ,size=0 + +2025-09-24 14:37:13,088 INFO Connection check task end + +2025-09-24 14:37:13,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:16,088 INFO Connection check task start + +2025-09-24 14:37:16,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:16,089 INFO Out dated connection ,size=0 + +2025-09-24 14:37:16,089 INFO Connection check task end + +2025-09-24 14:37:16,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:19,091 INFO Connection check task start + +2025-09-24 14:37:19,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:19,091 INFO Out dated connection ,size=0 + +2025-09-24 14:37:19,091 INFO Connection check task end + +2025-09-24 14:37:19,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:22,093 INFO Connection check task start + +2025-09-24 14:37:22,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:22,094 INFO Out dated connection ,size=0 + +2025-09-24 14:37:22,094 INFO Connection check task end + +2025-09-24 14:37:22,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:25,096 INFO Connection check task start + +2025-09-24 14:37:25,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:25,096 INFO Out dated connection ,size=0 + +2025-09-24 14:37:25,096 INFO Connection check task end + +2025-09-24 14:37:25,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:28,097 INFO Connection check task start + +2025-09-24 14:37:28,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:28,097 INFO Out dated connection ,size=0 + +2025-09-24 14:37:28,097 INFO Connection check task end + +2025-09-24 14:37:28,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:31,097 INFO Connection check task start + +2025-09-24 14:37:31,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:31,097 INFO Out dated connection ,size=0 + +2025-09-24 14:37:31,097 INFO Connection check task end + +2025-09-24 14:37:31,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:34,098 INFO Connection check task start + +2025-09-24 14:37:34,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:34,098 INFO Out dated connection ,size=0 + +2025-09-24 14:37:34,098 INFO Connection check task end + +2025-09-24 14:37:34,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:37,099 INFO Connection check task start + +2025-09-24 14:37:37,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:37,099 INFO Out dated connection ,size=0 + +2025-09-24 14:37:37,099 INFO Connection check task end + +2025-09-24 14:37:37,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:40,101 INFO Connection check task start + +2025-09-24 14:37:40,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:40,101 INFO Out dated connection ,size=0 + +2025-09-24 14:37:40,101 INFO Connection check task end + +2025-09-24 14:37:40,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:43,102 INFO Connection check task start + +2025-09-24 14:37:43,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:43,102 INFO Out dated connection ,size=0 + +2025-09-24 14:37:43,102 INFO Connection check task end + +2025-09-24 14:37:43,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:46,102 INFO Connection check task start + +2025-09-24 14:37:46,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:46,103 INFO Out dated connection ,size=0 + +2025-09-24 14:37:46,103 INFO Connection check task end + +2025-09-24 14:37:46,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:49,103 INFO Connection check task start + +2025-09-24 14:37:49,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:49,104 INFO Out dated connection ,size=0 + +2025-09-24 14:37:49,104 INFO Connection check task end + +2025-09-24 14:37:49,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:52,104 INFO Connection check task start + +2025-09-24 14:37:52,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:52,104 INFO Out dated connection ,size=0 + +2025-09-24 14:37:52,104 INFO Connection check task end + +2025-09-24 14:37:52,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:55,105 INFO Connection check task start + +2025-09-24 14:37:55,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:55,105 INFO Out dated connection ,size=0 + +2025-09-24 14:37:55,105 INFO Connection check task end + +2025-09-24 14:37:55,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:37:58,107 INFO Connection check task start + +2025-09-24 14:37:58,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:37:58,107 INFO Out dated connection ,size=0 + +2025-09-24 14:37:58,107 INFO Connection check task end + +2025-09-24 14:37:58,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:01,107 INFO Connection check task start + +2025-09-24 14:38:01,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:01,107 INFO Out dated connection ,size=0 + +2025-09-24 14:38:01,107 INFO Connection check task end + +2025-09-24 14:38:01,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:04,108 INFO Connection check task start + +2025-09-24 14:38:04,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:04,108 INFO Out dated connection ,size=0 + +2025-09-24 14:38:04,108 INFO Connection check task end + +2025-09-24 14:38:04,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:07,110 INFO Connection check task start + +2025-09-24 14:38:07,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:07,110 INFO Out dated connection ,size=0 + +2025-09-24 14:38:07,110 INFO Connection check task end + +2025-09-24 14:38:07,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:10,111 INFO Connection check task start + +2025-09-24 14:38:10,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:10,111 INFO Out dated connection ,size=0 + +2025-09-24 14:38:10,111 INFO Connection check task end + +2025-09-24 14:38:10,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:13,114 INFO Connection check task start + +2025-09-24 14:38:13,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:13,114 INFO Out dated connection ,size=0 + +2025-09-24 14:38:13,114 INFO Connection check task end + +2025-09-24 14:38:13,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:16,114 INFO Connection check task start + +2025-09-24 14:38:16,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:16,115 INFO Out dated connection ,size=0 + +2025-09-24 14:38:16,115 INFO Connection check task end + +2025-09-24 14:38:16,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:19,116 INFO Connection check task start + +2025-09-24 14:38:19,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:19,116 INFO Out dated connection ,size=0 + +2025-09-24 14:38:19,116 INFO Connection check task end + +2025-09-24 14:38:19,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:22,116 INFO Connection check task start + +2025-09-24 14:38:22,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:22,117 INFO Out dated connection ,size=0 + +2025-09-24 14:38:22,117 INFO Connection check task end + +2025-09-24 14:38:22,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:25,119 INFO Connection check task start + +2025-09-24 14:38:25,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:25,119 INFO Out dated connection ,size=0 + +2025-09-24 14:38:25,119 INFO Connection check task end + +2025-09-24 14:38:25,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:28,120 INFO Connection check task start + +2025-09-24 14:38:28,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:28,120 INFO Out dated connection ,size=0 + +2025-09-24 14:38:28,120 INFO Connection check task end + +2025-09-24 14:38:28,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:31,120 INFO Connection check task start + +2025-09-24 14:38:31,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:31,120 INFO Out dated connection ,size=0 + +2025-09-24 14:38:31,120 INFO Connection check task end + +2025-09-24 14:38:31,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:34,122 INFO Connection check task start + +2025-09-24 14:38:34,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:34,123 INFO Out dated connection ,size=0 + +2025-09-24 14:38:34,123 INFO Connection check task end + +2025-09-24 14:38:34,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:37,123 INFO Connection check task start + +2025-09-24 14:38:37,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:37,123 INFO Out dated connection ,size=0 + +2025-09-24 14:38:37,123 INFO Connection check task end + +2025-09-24 14:38:37,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:40,125 INFO Connection check task start + +2025-09-24 14:38:40,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:40,125 INFO Out dated connection ,size=0 + +2025-09-24 14:38:40,125 INFO Connection check task end + +2025-09-24 14:38:40,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:43,126 INFO Connection check task start + +2025-09-24 14:38:43,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:43,126 INFO Out dated connection ,size=0 + +2025-09-24 14:38:43,126 INFO Connection check task end + +2025-09-24 14:38:43,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:46,127 INFO Connection check task start + +2025-09-24 14:38:46,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:46,127 INFO Out dated connection ,size=0 + +2025-09-24 14:38:46,127 INFO Connection check task end + +2025-09-24 14:38:46,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:49,127 INFO Connection check task start + +2025-09-24 14:38:49,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:49,127 INFO Out dated connection ,size=0 + +2025-09-24 14:38:49,127 INFO Connection check task end + +2025-09-24 14:38:49,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:52,129 INFO Connection check task start + +2025-09-24 14:38:52,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:52,129 INFO Out dated connection ,size=0 + +2025-09-24 14:38:52,129 INFO Connection check task end + +2025-09-24 14:38:52,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:55,130 INFO Connection check task start + +2025-09-24 14:38:55,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:55,130 INFO Out dated connection ,size=0 + +2025-09-24 14:38:55,130 INFO Connection check task end + +2025-09-24 14:38:55,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:38:58,132 INFO Connection check task start + +2025-09-24 14:38:58,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:38:58,132 INFO Out dated connection ,size=0 + +2025-09-24 14:38:58,132 INFO Connection check task end + +2025-09-24 14:38:58,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:01,133 INFO Connection check task start + +2025-09-24 14:39:01,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:01,133 INFO Out dated connection ,size=0 + +2025-09-24 14:39:01,133 INFO Connection check task end + +2025-09-24 14:39:01,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:04,133 INFO Connection check task start + +2025-09-24 14:39:04,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:04,133 INFO Out dated connection ,size=0 + +2025-09-24 14:39:04,134 INFO Connection check task end + +2025-09-24 14:39:04,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:07,134 INFO Connection check task start + +2025-09-24 14:39:07,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:07,134 INFO Out dated connection ,size=0 + +2025-09-24 14:39:07,134 INFO Connection check task end + +2025-09-24 14:39:07,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:10,136 INFO Connection check task start + +2025-09-24 14:39:10,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:10,136 INFO Out dated connection ,size=0 + +2025-09-24 14:39:10,136 INFO Connection check task end + +2025-09-24 14:39:10,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:13,137 INFO Connection check task start + +2025-09-24 14:39:13,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:13,137 INFO Out dated connection ,size=0 + +2025-09-24 14:39:13,137 INFO Connection check task end + +2025-09-24 14:39:13,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:16,137 INFO Connection check task start + +2025-09-24 14:39:16,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:16,137 INFO Out dated connection ,size=0 + +2025-09-24 14:39:16,137 INFO Connection check task end + +2025-09-24 14:39:16,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:19,138 INFO Connection check task start + +2025-09-24 14:39:19,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:19,138 INFO Out dated connection ,size=0 + +2025-09-24 14:39:19,138 INFO Connection check task end + +2025-09-24 14:39:19,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:22,138 INFO Connection check task start + +2025-09-24 14:39:22,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:22,139 INFO Out dated connection ,size=0 + +2025-09-24 14:39:22,139 INFO Connection check task end + +2025-09-24 14:39:22,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:25,140 INFO Connection check task start + +2025-09-24 14:39:25,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:25,141 INFO Out dated connection ,size=0 + +2025-09-24 14:39:25,141 INFO Connection check task end + +2025-09-24 14:39:25,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:28,142 INFO Connection check task start + +2025-09-24 14:39:28,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:28,142 INFO Out dated connection ,size=0 + +2025-09-24 14:39:28,142 INFO Connection check task end + +2025-09-24 14:39:28,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:31,144 INFO Connection check task start + +2025-09-24 14:39:31,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:31,144 INFO Out dated connection ,size=0 + +2025-09-24 14:39:31,144 INFO Connection check task end + +2025-09-24 14:39:31,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:34,146 INFO Connection check task start + +2025-09-24 14:39:34,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:34,146 INFO Out dated connection ,size=0 + +2025-09-24 14:39:34,146 INFO Connection check task end + +2025-09-24 14:39:34,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:37,146 INFO Connection check task start + +2025-09-24 14:39:37,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:37,147 INFO Out dated connection ,size=0 + +2025-09-24 14:39:37,147 INFO Connection check task end + +2025-09-24 14:39:37,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:40,149 INFO Connection check task start + +2025-09-24 14:39:40,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:40,149 INFO Out dated connection ,size=0 + +2025-09-24 14:39:40,149 INFO Connection check task end + +2025-09-24 14:39:40,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:43,150 INFO Connection check task start + +2025-09-24 14:39:43,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:43,151 INFO Out dated connection ,size=0 + +2025-09-24 14:39:43,151 INFO Connection check task end + +2025-09-24 14:39:43,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:46,153 INFO Connection check task start + +2025-09-24 14:39:46,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:46,153 INFO Out dated connection ,size=0 + +2025-09-24 14:39:46,153 INFO Connection check task end + +2025-09-24 14:39:46,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:49,153 INFO Connection check task start + +2025-09-24 14:39:49,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:49,154 INFO Out dated connection ,size=0 + +2025-09-24 14:39:49,154 INFO Connection check task end + +2025-09-24 14:39:49,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:52,156 INFO Connection check task start + +2025-09-24 14:39:52,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:52,156 INFO Out dated connection ,size=0 + +2025-09-24 14:39:52,156 INFO Connection check task end + +2025-09-24 14:39:52,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:55,156 INFO Connection check task start + +2025-09-24 14:39:55,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:55,157 INFO Out dated connection ,size=0 + +2025-09-24 14:39:55,157 INFO Connection check task end + +2025-09-24 14:39:55,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:39:58,159 INFO Connection check task start + +2025-09-24 14:39:58,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:39:58,159 INFO Out dated connection ,size=0 + +2025-09-24 14:39:58,159 INFO Connection check task end + +2025-09-24 14:39:58,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:01,160 INFO Connection check task start + +2025-09-24 14:40:01,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:01,160 INFO Out dated connection ,size=0 + +2025-09-24 14:40:01,160 INFO Connection check task end + +2025-09-24 14:40:01,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:04,162 INFO Connection check task start + +2025-09-24 14:40:04,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:04,162 INFO Out dated connection ,size=0 + +2025-09-24 14:40:04,162 INFO Connection check task end + +2025-09-24 14:40:04,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:07,162 INFO Connection check task start + +2025-09-24 14:40:07,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:07,163 INFO Out dated connection ,size=0 + +2025-09-24 14:40:07,163 INFO Connection check task end + +2025-09-24 14:40:07,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:10,163 INFO Connection check task start + +2025-09-24 14:40:10,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:10,163 INFO Out dated connection ,size=0 + +2025-09-24 14:40:10,163 INFO Connection check task end + +2025-09-24 14:40:10,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:13,163 INFO Connection check task start + +2025-09-24 14:40:13,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:13,164 INFO Out dated connection ,size=0 + +2025-09-24 14:40:13,164 INFO Connection check task end + +2025-09-24 14:40:13,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:16,164 INFO Connection check task start + +2025-09-24 14:40:16,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:16,164 INFO Out dated connection ,size=0 + +2025-09-24 14:40:16,164 INFO Connection check task end + +2025-09-24 14:40:16,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:19,165 INFO Connection check task start + +2025-09-24 14:40:19,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:19,165 INFO Out dated connection ,size=0 + +2025-09-24 14:40:19,165 INFO Connection check task end + +2025-09-24 14:40:19,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:22,166 INFO Connection check task start + +2025-09-24 14:40:22,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:22,167 INFO Out dated connection ,size=0 + +2025-09-24 14:40:22,167 INFO Connection check task end + +2025-09-24 14:40:22,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:25,167 INFO Connection check task start + +2025-09-24 14:40:25,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:25,168 INFO Out dated connection ,size=0 + +2025-09-24 14:40:25,168 INFO Connection check task end + +2025-09-24 14:40:25,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:28,168 INFO Connection check task start + +2025-09-24 14:40:28,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:28,168 INFO Out dated connection ,size=0 + +2025-09-24 14:40:28,168 INFO Connection check task end + +2025-09-24 14:40:28,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:31,169 INFO Connection check task start + +2025-09-24 14:40:31,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:31,169 INFO Out dated connection ,size=0 + +2025-09-24 14:40:31,169 INFO Connection check task end + +2025-09-24 14:40:31,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:34,170 INFO Connection check task start + +2025-09-24 14:40:34,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:34,170 INFO Out dated connection ,size=0 + +2025-09-24 14:40:34,170 INFO Connection check task end + +2025-09-24 14:40:34,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:37,172 INFO Connection check task start + +2025-09-24 14:40:37,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:37,172 INFO Out dated connection ,size=0 + +2025-09-24 14:40:37,172 INFO Connection check task end + +2025-09-24 14:40:37,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:40,172 INFO Connection check task start + +2025-09-24 14:40:40,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:40,172 INFO Out dated connection ,size=0 + +2025-09-24 14:40:40,172 INFO Connection check task end + +2025-09-24 14:40:40,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:43,174 INFO Connection check task start + +2025-09-24 14:40:43,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:43,175 INFO Out dated connection ,size=0 + +2025-09-24 14:40:43,175 INFO Connection check task end + +2025-09-24 14:40:43,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:46,176 INFO Connection check task start + +2025-09-24 14:40:46,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:46,176 INFO Out dated connection ,size=0 + +2025-09-24 14:40:46,176 INFO Connection check task end + +2025-09-24 14:40:46,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:49,177 INFO Connection check task start + +2025-09-24 14:40:49,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:49,177 INFO Out dated connection ,size=0 + +2025-09-24 14:40:49,177 INFO Connection check task end + +2025-09-24 14:40:49,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:52,178 INFO Connection check task start + +2025-09-24 14:40:52,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:52,178 INFO Out dated connection ,size=0 + +2025-09-24 14:40:52,178 INFO Connection check task end + +2025-09-24 14:40:52,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:55,179 INFO Connection check task start + +2025-09-24 14:40:55,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:55,179 INFO Out dated connection ,size=0 + +2025-09-24 14:40:55,179 INFO Connection check task end + +2025-09-24 14:40:55,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:40:58,180 INFO Connection check task start + +2025-09-24 14:40:58,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:40:58,181 INFO Out dated connection ,size=0 + +2025-09-24 14:40:58,181 INFO Connection check task end + +2025-09-24 14:40:58,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:01,181 INFO Connection check task start + +2025-09-24 14:41:01,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:01,181 INFO Out dated connection ,size=0 + +2025-09-24 14:41:01,182 INFO Connection check task end + +2025-09-24 14:41:01,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:04,184 INFO Connection check task start + +2025-09-24 14:41:04,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:04,184 INFO Out dated connection ,size=0 + +2025-09-24 14:41:04,184 INFO Connection check task end + +2025-09-24 14:41:04,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:07,184 INFO Connection check task start + +2025-09-24 14:41:07,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:07,184 INFO Out dated connection ,size=0 + +2025-09-24 14:41:07,184 INFO Connection check task end + +2025-09-24 14:41:07,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:10,185 INFO Connection check task start + +2025-09-24 14:41:10,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:10,185 INFO Out dated connection ,size=0 + +2025-09-24 14:41:10,185 INFO Connection check task end + +2025-09-24 14:41:10,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:13,186 INFO Connection check task start + +2025-09-24 14:41:13,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:13,186 INFO Out dated connection ,size=0 + +2025-09-24 14:41:13,186 INFO Connection check task end + +2025-09-24 14:41:13,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:16,187 INFO Connection check task start + +2025-09-24 14:41:16,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:16,187 INFO Out dated connection ,size=0 + +2025-09-24 14:41:16,187 INFO Connection check task end + +2025-09-24 14:41:16,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:19,188 INFO Connection check task start + +2025-09-24 14:41:19,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:19,189 INFO Out dated connection ,size=0 + +2025-09-24 14:41:19,189 INFO Connection check task end + +2025-09-24 14:41:19,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:22,189 INFO Connection check task start + +2025-09-24 14:41:22,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:22,189 INFO Out dated connection ,size=0 + +2025-09-24 14:41:22,189 INFO Connection check task end + +2025-09-24 14:41:22,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:25,190 INFO Connection check task start + +2025-09-24 14:41:25,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:25,190 INFO Out dated connection ,size=0 + +2025-09-24 14:41:25,190 INFO Connection check task end + +2025-09-24 14:41:25,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:28,191 INFO Connection check task start + +2025-09-24 14:41:28,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:28,191 INFO Out dated connection ,size=0 + +2025-09-24 14:41:28,191 INFO Connection check task end + +2025-09-24 14:41:28,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:31,192 INFO Connection check task start + +2025-09-24 14:41:31,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:31,192 INFO Out dated connection ,size=0 + +2025-09-24 14:41:31,192 INFO Connection check task end + +2025-09-24 14:41:31,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:34,192 INFO Connection check task start + +2025-09-24 14:41:34,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:34,193 INFO Out dated connection ,size=0 + +2025-09-24 14:41:34,193 INFO Connection check task end + +2025-09-24 14:41:34,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:37,194 INFO Connection check task start + +2025-09-24 14:41:37,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:37,195 INFO Out dated connection ,size=0 + +2025-09-24 14:41:37,195 INFO Connection check task end + +2025-09-24 14:41:37,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:40,195 INFO Connection check task start + +2025-09-24 14:41:40,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:40,195 INFO Out dated connection ,size=0 + +2025-09-24 14:41:40,195 INFO Connection check task end + +2025-09-24 14:41:40,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:43,195 INFO Connection check task start + +2025-09-24 14:41:43,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:43,196 INFO Out dated connection ,size=0 + +2025-09-24 14:41:43,196 INFO Connection check task end + +2025-09-24 14:41:43,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:46,198 INFO Connection check task start + +2025-09-24 14:41:46,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:46,198 INFO Out dated connection ,size=0 + +2025-09-24 14:41:46,198 INFO Connection check task end + +2025-09-24 14:41:46,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:49,198 INFO Connection check task start + +2025-09-24 14:41:49,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:49,199 INFO Out dated connection ,size=0 + +2025-09-24 14:41:49,199 INFO Connection check task end + +2025-09-24 14:41:49,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:52,201 INFO Connection check task start + +2025-09-24 14:41:52,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:52,201 INFO Out dated connection ,size=0 + +2025-09-24 14:41:52,201 INFO Connection check task end + +2025-09-24 14:41:52,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:55,203 INFO Connection check task start + +2025-09-24 14:41:55,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:55,204 INFO Out dated connection ,size=0 + +2025-09-24 14:41:55,204 INFO Connection check task end + +2025-09-24 14:41:55,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:41:58,206 INFO Connection check task start + +2025-09-24 14:41:58,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:41:58,206 INFO Out dated connection ,size=0 + +2025-09-24 14:41:58,206 INFO Connection check task end + +2025-09-24 14:41:58,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:01,207 INFO Connection check task start + +2025-09-24 14:42:01,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:01,207 INFO Out dated connection ,size=0 + +2025-09-24 14:42:01,207 INFO Connection check task end + +2025-09-24 14:42:01,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:04,207 INFO Connection check task start + +2025-09-24 14:42:04,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:04,207 INFO Out dated connection ,size=0 + +2025-09-24 14:42:04,207 INFO Connection check task end + +2025-09-24 14:42:04,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:07,209 INFO Connection check task start + +2025-09-24 14:42:07,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:07,209 INFO Out dated connection ,size=0 + +2025-09-24 14:42:07,209 INFO Connection check task end + +2025-09-24 14:42:07,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:10,209 INFO Connection check task start + +2025-09-24 14:42:10,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:10,210 INFO Out dated connection ,size=0 + +2025-09-24 14:42:10,210 INFO Connection check task end + +2025-09-24 14:42:10,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:13,210 INFO Connection check task start + +2025-09-24 14:42:13,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:13,210 INFO Out dated connection ,size=0 + +2025-09-24 14:42:13,210 INFO Connection check task end + +2025-09-24 14:42:13,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:16,210 INFO Connection check task start + +2025-09-24 14:42:16,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:16,210 INFO Out dated connection ,size=0 + +2025-09-24 14:42:16,211 INFO Connection check task end + +2025-09-24 14:42:16,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:19,211 INFO Connection check task start + +2025-09-24 14:42:19,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:19,211 INFO Out dated connection ,size=0 + +2025-09-24 14:42:19,211 INFO Connection check task end + +2025-09-24 14:42:19,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:22,211 INFO Connection check task start + +2025-09-24 14:42:22,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:22,213 INFO Out dated connection ,size=0 + +2025-09-24 14:42:22,213 INFO Connection check task end + +2025-09-24 14:42:22,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:25,214 INFO Connection check task start + +2025-09-24 14:42:25,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:25,214 INFO Out dated connection ,size=0 + +2025-09-24 14:42:25,214 INFO Connection check task end + +2025-09-24 14:42:25,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:28,216 INFO Connection check task start + +2025-09-24 14:42:28,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:28,216 INFO Out dated connection ,size=0 + +2025-09-24 14:42:28,216 INFO Connection check task end + +2025-09-24 14:42:28,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:31,216 INFO Connection check task start + +2025-09-24 14:42:31,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:31,216 INFO Out dated connection ,size=0 + +2025-09-24 14:42:31,216 INFO Connection check task end + +2025-09-24 14:42:31,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:34,216 INFO Connection check task start + +2025-09-24 14:42:34,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:34,217 INFO Out dated connection ,size=0 + +2025-09-24 14:42:34,217 INFO Connection check task end + +2025-09-24 14:42:34,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:37,218 INFO Connection check task start + +2025-09-24 14:42:37,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:37,218 INFO Out dated connection ,size=0 + +2025-09-24 14:42:37,218 INFO Connection check task end + +2025-09-24 14:42:37,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:40,223 INFO Connection check task start + +2025-09-24 14:42:40,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:40,224 INFO Out dated connection ,size=0 + +2025-09-24 14:42:40,224 INFO Connection check task end + +2025-09-24 14:42:40,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:43,225 INFO Connection check task start + +2025-09-24 14:42:43,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:43,225 INFO Out dated connection ,size=0 + +2025-09-24 14:42:43,225 INFO Connection check task end + +2025-09-24 14:42:43,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:46,226 INFO Connection check task start + +2025-09-24 14:42:46,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:46,226 INFO Out dated connection ,size=0 + +2025-09-24 14:42:46,226 INFO Connection check task end + +2025-09-24 14:42:46,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:49,227 INFO Connection check task start + +2025-09-24 14:42:49,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:49,227 INFO Out dated connection ,size=0 + +2025-09-24 14:42:49,227 INFO Connection check task end + +2025-09-24 14:42:49,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:52,227 INFO Connection check task start + +2025-09-24 14:42:52,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:52,228 INFO Out dated connection ,size=0 + +2025-09-24 14:42:52,228 INFO Connection check task end + +2025-09-24 14:42:52,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:55,230 INFO Connection check task start + +2025-09-24 14:42:55,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:55,230 INFO Out dated connection ,size=0 + +2025-09-24 14:42:55,230 INFO Connection check task end + +2025-09-24 14:42:55,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:42:58,231 INFO Connection check task start + +2025-09-24 14:42:58,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:42:58,231 INFO Out dated connection ,size=0 + +2025-09-24 14:42:58,231 INFO Connection check task end + +2025-09-24 14:42:58,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:01,231 INFO Connection check task start + +2025-09-24 14:43:01,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:01,231 INFO Out dated connection ,size=0 + +2025-09-24 14:43:01,232 INFO Connection check task end + +2025-09-24 14:43:01,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:04,234 INFO Connection check task start + +2025-09-24 14:43:04,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:04,234 INFO Out dated connection ,size=0 + +2025-09-24 14:43:04,234 INFO Connection check task end + +2025-09-24 14:43:04,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:07,234 INFO Connection check task start + +2025-09-24 14:43:07,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:07,235 INFO Out dated connection ,size=0 + +2025-09-24 14:43:07,235 INFO Connection check task end + +2025-09-24 14:43:07,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:10,235 INFO Connection check task start + +2025-09-24 14:43:10,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:10,235 INFO Out dated connection ,size=0 + +2025-09-24 14:43:10,235 INFO Connection check task end + +2025-09-24 14:43:10,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:13,235 INFO Connection check task start + +2025-09-24 14:43:13,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:13,235 INFO Out dated connection ,size=0 + +2025-09-24 14:43:13,235 INFO Connection check task end + +2025-09-24 14:43:13,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:16,236 INFO Connection check task start + +2025-09-24 14:43:16,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:16,236 INFO Out dated connection ,size=0 + +2025-09-24 14:43:16,236 INFO Connection check task end + +2025-09-24 14:43:16,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:19,237 INFO Connection check task start + +2025-09-24 14:43:19,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:19,237 INFO Out dated connection ,size=0 + +2025-09-24 14:43:19,237 INFO Connection check task end + +2025-09-24 14:43:19,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:22,238 INFO Connection check task start + +2025-09-24 14:43:22,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:22,239 INFO Out dated connection ,size=0 + +2025-09-24 14:43:22,239 INFO Connection check task end + +2025-09-24 14:43:22,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:25,240 INFO Connection check task start + +2025-09-24 14:43:25,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:25,240 INFO Out dated connection ,size=0 + +2025-09-24 14:43:25,240 INFO Connection check task end + +2025-09-24 14:43:25,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:28,241 INFO Connection check task start + +2025-09-24 14:43:28,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:28,241 INFO Out dated connection ,size=0 + +2025-09-24 14:43:28,241 INFO Connection check task end + +2025-09-24 14:43:28,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:31,242 INFO Connection check task start + +2025-09-24 14:43:31,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:31,242 INFO Out dated connection ,size=0 + +2025-09-24 14:43:31,242 INFO Connection check task end + +2025-09-24 14:43:31,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:34,242 INFO Connection check task start + +2025-09-24 14:43:34,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:34,243 INFO Out dated connection ,size=0 + +2025-09-24 14:43:34,243 INFO Connection check task end + +2025-09-24 14:43:34,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:37,245 INFO Connection check task start + +2025-09-24 14:43:37,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:37,245 INFO Out dated connection ,size=0 + +2025-09-24 14:43:37,245 INFO Connection check task end + +2025-09-24 14:43:37,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:40,246 INFO Connection check task start + +2025-09-24 14:43:40,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:40,246 INFO Out dated connection ,size=0 + +2025-09-24 14:43:40,246 INFO Connection check task end + +2025-09-24 14:43:40,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:43,247 INFO Connection check task start + +2025-09-24 14:43:43,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:43,247 INFO Out dated connection ,size=0 + +2025-09-24 14:43:43,247 INFO Connection check task end + +2025-09-24 14:43:43,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:46,249 INFO Connection check task start + +2025-09-24 14:43:46,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:46,249 INFO Out dated connection ,size=0 + +2025-09-24 14:43:46,249 INFO Connection check task end + +2025-09-24 14:43:46,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:49,250 INFO Connection check task start + +2025-09-24 14:43:49,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:49,251 INFO Out dated connection ,size=0 + +2025-09-24 14:43:49,251 INFO Connection check task end + +2025-09-24 14:43:49,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:52,251 INFO Connection check task start + +2025-09-24 14:43:52,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:52,251 INFO Out dated connection ,size=0 + +2025-09-24 14:43:52,251 INFO Connection check task end + +2025-09-24 14:43:52,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:55,253 INFO Connection check task start + +2025-09-24 14:43:55,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:55,253 INFO Out dated connection ,size=0 + +2025-09-24 14:43:55,253 INFO Connection check task end + +2025-09-24 14:43:55,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:43:58,255 INFO Connection check task start + +2025-09-24 14:43:58,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:43:58,255 INFO Out dated connection ,size=0 + +2025-09-24 14:43:58,256 INFO Connection check task end + +2025-09-24 14:43:58,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:01,258 INFO Connection check task start + +2025-09-24 14:44:01,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:01,258 INFO Out dated connection ,size=0 + +2025-09-24 14:44:01,258 INFO Connection check task end + +2025-09-24 14:44:01,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:04,258 INFO Connection check task start + +2025-09-24 14:44:04,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:04,259 INFO Out dated connection ,size=0 + +2025-09-24 14:44:04,259 INFO Connection check task end + +2025-09-24 14:44:04,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:07,259 INFO Connection check task start + +2025-09-24 14:44:07,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:07,259 INFO Out dated connection ,size=0 + +2025-09-24 14:44:07,259 INFO Connection check task end + +2025-09-24 14:44:07,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:10,259 INFO Connection check task start + +2025-09-24 14:44:10,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:10,260 INFO Out dated connection ,size=0 + +2025-09-24 14:44:10,260 INFO Connection check task end + +2025-09-24 14:44:10,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:13,261 INFO Connection check task start + +2025-09-24 14:44:13,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:13,261 INFO Out dated connection ,size=0 + +2025-09-24 14:44:13,261 INFO Connection check task end + +2025-09-24 14:44:13,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:16,262 INFO Connection check task start + +2025-09-24 14:44:16,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:16,262 INFO Out dated connection ,size=0 + +2025-09-24 14:44:16,262 INFO Connection check task end + +2025-09-24 14:44:16,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:19,263 INFO Connection check task start + +2025-09-24 14:44:19,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:19,263 INFO Out dated connection ,size=0 + +2025-09-24 14:44:19,263 INFO Connection check task end + +2025-09-24 14:44:19,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:22,263 INFO Connection check task start + +2025-09-24 14:44:22,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:22,265 INFO Out dated connection ,size=0 + +2025-09-24 14:44:22,265 INFO Connection check task end + +2025-09-24 14:44:22,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:25,265 INFO Connection check task start + +2025-09-24 14:44:25,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:25,265 INFO Out dated connection ,size=0 + +2025-09-24 14:44:25,265 INFO Connection check task end + +2025-09-24 14:44:25,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:28,266 INFO Connection check task start + +2025-09-24 14:44:28,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:28,266 INFO Out dated connection ,size=0 + +2025-09-24 14:44:28,266 INFO Connection check task end + +2025-09-24 14:44:28,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:31,267 INFO Connection check task start + +2025-09-24 14:44:31,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:31,267 INFO Out dated connection ,size=0 + +2025-09-24 14:44:31,267 INFO Connection check task end + +2025-09-24 14:44:31,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:34,267 INFO Connection check task start + +2025-09-24 14:44:34,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:34,268 INFO Out dated connection ,size=0 + +2025-09-24 14:44:34,268 INFO Connection check task end + +2025-09-24 14:44:34,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:37,268 INFO Connection check task start + +2025-09-24 14:44:37,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:37,268 INFO Out dated connection ,size=0 + +2025-09-24 14:44:37,268 INFO Connection check task end + +2025-09-24 14:44:37,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:40,269 INFO Connection check task start + +2025-09-24 14:44:40,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:40,269 INFO Out dated connection ,size=0 + +2025-09-24 14:44:40,269 INFO Connection check task end + +2025-09-24 14:44:40,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:43,269 INFO Connection check task start + +2025-09-24 14:44:43,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:43,270 INFO Out dated connection ,size=0 + +2025-09-24 14:44:43,270 INFO Connection check task end + +2025-09-24 14:44:43,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:46,271 INFO Connection check task start + +2025-09-24 14:44:46,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:46,271 INFO Out dated connection ,size=0 + +2025-09-24 14:44:46,271 INFO Connection check task end + +2025-09-24 14:44:46,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:49,272 INFO Connection check task start + +2025-09-24 14:44:49,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:49,272 INFO Out dated connection ,size=0 + +2025-09-24 14:44:49,272 INFO Connection check task end + +2025-09-24 14:44:49,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:52,273 INFO Connection check task start + +2025-09-24 14:44:52,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:52,273 INFO Out dated connection ,size=0 + +2025-09-24 14:44:52,273 INFO Connection check task end + +2025-09-24 14:44:52,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:55,273 INFO Connection check task start + +2025-09-24 14:44:55,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:55,273 INFO Out dated connection ,size=0 + +2025-09-24 14:44:55,273 INFO Connection check task end + +2025-09-24 14:44:55,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:44:58,273 INFO Connection check task start + +2025-09-24 14:44:58,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:44:58,274 INFO Out dated connection ,size=0 + +2025-09-24 14:44:58,274 INFO Connection check task end + +2025-09-24 14:44:58,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:01,274 INFO Connection check task start + +2025-09-24 14:45:01,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:01,274 INFO Out dated connection ,size=0 + +2025-09-24 14:45:01,274 INFO Connection check task end + +2025-09-24 14:45:01,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:04,275 INFO Connection check task start + +2025-09-24 14:45:04,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:04,276 INFO Out dated connection ,size=0 + +2025-09-24 14:45:04,276 INFO Connection check task end + +2025-09-24 14:45:04,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:07,276 INFO Connection check task start + +2025-09-24 14:45:07,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:07,276 INFO Out dated connection ,size=0 + +2025-09-24 14:45:07,276 INFO Connection check task end + +2025-09-24 14:45:07,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:10,277 INFO Connection check task start + +2025-09-24 14:45:10,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:10,278 INFO Out dated connection ,size=0 + +2025-09-24 14:45:10,278 INFO Connection check task end + +2025-09-24 14:45:10,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:13,278 INFO Connection check task start + +2025-09-24 14:45:13,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:13,278 INFO Out dated connection ,size=0 + +2025-09-24 14:45:13,278 INFO Connection check task end + +2025-09-24 14:45:13,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:16,280 INFO Connection check task start + +2025-09-24 14:45:16,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:16,280 INFO Out dated connection ,size=0 + +2025-09-24 14:45:16,280 INFO Connection check task end + +2025-09-24 14:45:16,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:19,280 INFO Connection check task start + +2025-09-24 14:45:19,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:19,280 INFO Out dated connection ,size=0 + +2025-09-24 14:45:19,280 INFO Connection check task end + +2025-09-24 14:45:19,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:22,282 INFO Connection check task start + +2025-09-24 14:45:22,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:22,282 INFO Out dated connection ,size=0 + +2025-09-24 14:45:22,282 INFO Connection check task end + +2025-09-24 14:45:22,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:25,282 INFO Connection check task start + +2025-09-24 14:45:25,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:25,283 INFO Out dated connection ,size=0 + +2025-09-24 14:45:25,283 INFO Connection check task end + +2025-09-24 14:45:25,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:28,283 INFO Connection check task start + +2025-09-24 14:45:28,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:28,283 INFO Out dated connection ,size=0 + +2025-09-24 14:45:28,283 INFO Connection check task end + +2025-09-24 14:45:28,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:31,283 INFO Connection check task start + +2025-09-24 14:45:31,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:31,284 INFO Out dated connection ,size=0 + +2025-09-24 14:45:31,284 INFO Connection check task end + +2025-09-24 14:45:31,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:34,284 INFO Connection check task start + +2025-09-24 14:45:34,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:34,284 INFO Out dated connection ,size=0 + +2025-09-24 14:45:34,284 INFO Connection check task end + +2025-09-24 14:45:34,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:37,286 INFO Connection check task start + +2025-09-24 14:45:37,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:37,286 INFO Out dated connection ,size=0 + +2025-09-24 14:45:37,287 INFO Connection check task end + +2025-09-24 14:45:37,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:40,287 INFO Connection check task start + +2025-09-24 14:45:40,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:40,287 INFO Out dated connection ,size=0 + +2025-09-24 14:45:40,287 INFO Connection check task end + +2025-09-24 14:45:40,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:43,289 INFO Connection check task start + +2025-09-24 14:45:43,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:43,289 INFO Out dated connection ,size=0 + +2025-09-24 14:45:43,289 INFO Connection check task end + +2025-09-24 14:45:43,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:46,290 INFO Connection check task start + +2025-09-24 14:45:46,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:46,290 INFO Out dated connection ,size=0 + +2025-09-24 14:45:46,290 INFO Connection check task end + +2025-09-24 14:45:46,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:49,290 INFO Connection check task start + +2025-09-24 14:45:49,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:49,291 INFO Out dated connection ,size=0 + +2025-09-24 14:45:49,291 INFO Connection check task end + +2025-09-24 14:45:49,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:52,291 INFO Connection check task start + +2025-09-24 14:45:52,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:52,291 INFO Out dated connection ,size=0 + +2025-09-24 14:45:52,291 INFO Connection check task end + +2025-09-24 14:45:52,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:55,293 INFO Connection check task start + +2025-09-24 14:45:55,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:55,294 INFO Out dated connection ,size=0 + +2025-09-24 14:45:55,294 INFO Connection check task end + +2025-09-24 14:45:55,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:45:58,294 INFO Connection check task start + +2025-09-24 14:45:58,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:45:58,294 INFO Out dated connection ,size=0 + +2025-09-24 14:45:58,294 INFO Connection check task end + +2025-09-24 14:45:58,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:01,295 INFO Connection check task start + +2025-09-24 14:46:01,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:01,295 INFO Out dated connection ,size=0 + +2025-09-24 14:46:01,295 INFO Connection check task end + +2025-09-24 14:46:01,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:04,297 INFO Connection check task start + +2025-09-24 14:46:04,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:04,297 INFO Out dated connection ,size=0 + +2025-09-24 14:46:04,297 INFO Connection check task end + +2025-09-24 14:46:04,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:07,299 INFO Connection check task start + +2025-09-24 14:46:07,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:07,299 INFO Out dated connection ,size=0 + +2025-09-24 14:46:07,299 INFO Connection check task end + +2025-09-24 14:46:07,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:10,299 INFO Connection check task start + +2025-09-24 14:46:10,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:10,300 INFO Out dated connection ,size=0 + +2025-09-24 14:46:10,300 INFO Connection check task end + +2025-09-24 14:46:10,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:13,300 INFO Connection check task start + +2025-09-24 14:46:13,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:13,300 INFO Out dated connection ,size=0 + +2025-09-24 14:46:13,300 INFO Connection check task end + +2025-09-24 14:46:13,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:16,302 INFO Connection check task start + +2025-09-24 14:46:16,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:16,302 INFO Out dated connection ,size=0 + +2025-09-24 14:46:16,302 INFO Connection check task end + +2025-09-24 14:46:16,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:19,304 INFO Connection check task start + +2025-09-24 14:46:19,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:19,304 INFO Out dated connection ,size=0 + +2025-09-24 14:46:19,304 INFO Connection check task end + +2025-09-24 14:46:19,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:22,304 INFO Connection check task start + +2025-09-24 14:46:22,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:22,305 INFO Out dated connection ,size=0 + +2025-09-24 14:46:22,305 INFO Connection check task end + +2025-09-24 14:46:22,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:25,305 INFO Connection check task start + +2025-09-24 14:46:25,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:25,305 INFO Out dated connection ,size=0 + +2025-09-24 14:46:25,305 INFO Connection check task end + +2025-09-24 14:46:25,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:28,307 INFO Connection check task start + +2025-09-24 14:46:28,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:28,307 INFO Out dated connection ,size=0 + +2025-09-24 14:46:28,307 INFO Connection check task end + +2025-09-24 14:46:28,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:31,308 INFO Connection check task start + +2025-09-24 14:46:31,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:31,309 INFO Out dated connection ,size=0 + +2025-09-24 14:46:31,309 INFO Connection check task end + +2025-09-24 14:46:31,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:34,311 INFO Connection check task start + +2025-09-24 14:46:34,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:34,311 INFO Out dated connection ,size=0 + +2025-09-24 14:46:34,311 INFO Connection check task end + +2025-09-24 14:46:34,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:37,311 INFO Connection check task start + +2025-09-24 14:46:37,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:37,311 INFO Out dated connection ,size=0 + +2025-09-24 14:46:37,311 INFO Connection check task end + +2025-09-24 14:46:37,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:40,313 INFO Connection check task start + +2025-09-24 14:46:40,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:40,314 INFO Out dated connection ,size=0 + +2025-09-24 14:46:40,314 INFO Connection check task end + +2025-09-24 14:46:40,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:43,314 INFO Connection check task start + +2025-09-24 14:46:43,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:43,314 INFO Out dated connection ,size=0 + +2025-09-24 14:46:43,314 INFO Connection check task end + +2025-09-24 14:46:43,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:46,316 INFO Connection check task start + +2025-09-24 14:46:46,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:46,316 INFO Out dated connection ,size=0 + +2025-09-24 14:46:46,316 INFO Connection check task end + +2025-09-24 14:46:46,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:49,317 INFO Connection check task start + +2025-09-24 14:46:49,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:49,317 INFO Out dated connection ,size=0 + +2025-09-24 14:46:49,317 INFO Connection check task end + +2025-09-24 14:46:49,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:52,318 INFO Connection check task start + +2025-09-24 14:46:52,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:52,318 INFO Out dated connection ,size=0 + +2025-09-24 14:46:52,318 INFO Connection check task end + +2025-09-24 14:46:52,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:55,319 INFO Connection check task start + +2025-09-24 14:46:55,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:55,319 INFO Out dated connection ,size=0 + +2025-09-24 14:46:55,320 INFO Connection check task end + +2025-09-24 14:46:55,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:46:58,321 INFO Connection check task start + +2025-09-24 14:46:58,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:46:58,321 INFO Out dated connection ,size=0 + +2025-09-24 14:46:58,321 INFO Connection check task end + +2025-09-24 14:46:58,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:01,321 INFO Connection check task start + +2025-09-24 14:47:01,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:01,322 INFO Out dated connection ,size=0 + +2025-09-24 14:47:01,322 INFO Connection check task end + +2025-09-24 14:47:01,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:04,323 INFO Connection check task start + +2025-09-24 14:47:04,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:04,323 INFO Out dated connection ,size=0 + +2025-09-24 14:47:04,323 INFO Connection check task end + +2025-09-24 14:47:04,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:07,325 INFO Connection check task start + +2025-09-24 14:47:07,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:07,325 INFO Out dated connection ,size=0 + +2025-09-24 14:47:07,325 INFO Connection check task end + +2025-09-24 14:47:07,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:10,325 INFO Connection check task start + +2025-09-24 14:47:10,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:10,325 INFO Out dated connection ,size=0 + +2025-09-24 14:47:10,325 INFO Connection check task end + +2025-09-24 14:47:10,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:13,326 INFO Connection check task start + +2025-09-24 14:47:13,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:13,326 INFO Out dated connection ,size=0 + +2025-09-24 14:47:13,326 INFO Connection check task end + +2025-09-24 14:47:13,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:16,328 INFO Connection check task start + +2025-09-24 14:47:16,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:16,328 INFO Out dated connection ,size=0 + +2025-09-24 14:47:16,328 INFO Connection check task end + +2025-09-24 14:47:16,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:19,328 INFO Connection check task start + +2025-09-24 14:47:19,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:19,328 INFO Out dated connection ,size=0 + +2025-09-24 14:47:19,328 INFO Connection check task end + +2025-09-24 14:47:19,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:22,330 INFO Connection check task start + +2025-09-24 14:47:22,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:22,330 INFO Out dated connection ,size=0 + +2025-09-24 14:47:22,330 INFO Connection check task end + +2025-09-24 14:47:22,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:25,331 INFO Connection check task start + +2025-09-24 14:47:25,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:25,331 INFO Out dated connection ,size=0 + +2025-09-24 14:47:25,331 INFO Connection check task end + +2025-09-24 14:47:25,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:28,331 INFO Connection check task start + +2025-09-24 14:47:28,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:28,332 INFO Out dated connection ,size=0 + +2025-09-24 14:47:28,332 INFO Connection check task end + +2025-09-24 14:47:28,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:31,334 INFO Connection check task start + +2025-09-24 14:47:31,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:31,334 INFO Out dated connection ,size=0 + +2025-09-24 14:47:31,334 INFO Connection check task end + +2025-09-24 14:47:31,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:34,335 INFO Connection check task start + +2025-09-24 14:47:34,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:34,335 INFO Out dated connection ,size=0 + +2025-09-24 14:47:34,335 INFO Connection check task end + +2025-09-24 14:47:34,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:37,336 INFO Connection check task start + +2025-09-24 14:47:37,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:37,336 INFO Out dated connection ,size=0 + +2025-09-24 14:47:37,336 INFO Connection check task end + +2025-09-24 14:47:37,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:40,337 INFO Connection check task start + +2025-09-24 14:47:40,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:40,337 INFO Out dated connection ,size=0 + +2025-09-24 14:47:40,337 INFO Connection check task end + +2025-09-24 14:47:40,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:43,337 INFO Connection check task start + +2025-09-24 14:47:43,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:43,337 INFO Out dated connection ,size=0 + +2025-09-24 14:47:43,338 INFO Connection check task end + +2025-09-24 14:47:43,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:46,339 INFO Connection check task start + +2025-09-24 14:47:46,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:46,339 INFO Out dated connection ,size=0 + +2025-09-24 14:47:46,339 INFO Connection check task end + +2025-09-24 14:47:46,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:49,340 INFO Connection check task start + +2025-09-24 14:47:49,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:49,340 INFO Out dated connection ,size=0 + +2025-09-24 14:47:49,341 INFO Connection check task end + +2025-09-24 14:47:49,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:52,341 INFO Connection check task start + +2025-09-24 14:47:52,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:52,341 INFO Out dated connection ,size=0 + +2025-09-24 14:47:52,341 INFO Connection check task end + +2025-09-24 14:47:52,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:55,343 INFO Connection check task start + +2025-09-24 14:47:55,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:55,343 INFO Out dated connection ,size=0 + +2025-09-24 14:47:55,344 INFO Connection check task end + +2025-09-24 14:47:55,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:47:58,345 INFO Connection check task start + +2025-09-24 14:47:58,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:47:58,346 INFO Out dated connection ,size=0 + +2025-09-24 14:47:58,346 INFO Connection check task end + +2025-09-24 14:47:58,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:01,346 INFO Connection check task start + +2025-09-24 14:48:01,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:01,346 INFO Out dated connection ,size=0 + +2025-09-24 14:48:01,346 INFO Connection check task end + +2025-09-24 14:48:01,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:04,347 INFO Connection check task start + +2025-09-24 14:48:04,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:04,347 INFO Out dated connection ,size=0 + +2025-09-24 14:48:04,347 INFO Connection check task end + +2025-09-24 14:48:04,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:07,350 INFO Connection check task start + +2025-09-24 14:48:07,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:07,350 INFO Out dated connection ,size=0 + +2025-09-24 14:48:07,350 INFO Connection check task end + +2025-09-24 14:48:07,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:10,351 INFO Connection check task start + +2025-09-24 14:48:10,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:10,352 INFO Out dated connection ,size=0 + +2025-09-24 14:48:10,352 INFO Connection check task end + +2025-09-24 14:48:10,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:13,354 INFO Connection check task start + +2025-09-24 14:48:13,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:13,354 INFO Out dated connection ,size=0 + +2025-09-24 14:48:13,354 INFO Connection check task end + +2025-09-24 14:48:13,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:16,356 INFO Connection check task start + +2025-09-24 14:48:16,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:16,356 INFO Out dated connection ,size=0 + +2025-09-24 14:48:16,356 INFO Connection check task end + +2025-09-24 14:48:16,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:19,358 INFO Connection check task start + +2025-09-24 14:48:19,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:19,358 INFO Out dated connection ,size=0 + +2025-09-24 14:48:19,358 INFO Connection check task end + +2025-09-24 14:48:19,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:22,359 INFO Connection check task start + +2025-09-24 14:48:22,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:22,360 INFO Out dated connection ,size=0 + +2025-09-24 14:48:22,360 INFO Connection check task end + +2025-09-24 14:48:22,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:25,361 INFO Connection check task start + +2025-09-24 14:48:25,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:25,361 INFO Out dated connection ,size=0 + +2025-09-24 14:48:25,362 INFO Connection check task end + +2025-09-24 14:48:25,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:28,362 INFO Connection check task start + +2025-09-24 14:48:28,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:28,362 INFO Out dated connection ,size=0 + +2025-09-24 14:48:28,362 INFO Connection check task end + +2025-09-24 14:48:28,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:31,363 INFO Connection check task start + +2025-09-24 14:48:31,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:31,363 INFO Out dated connection ,size=0 + +2025-09-24 14:48:31,363 INFO Connection check task end + +2025-09-24 14:48:31,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:34,364 INFO Connection check task start + +2025-09-24 14:48:34,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:34,364 INFO Out dated connection ,size=0 + +2025-09-24 14:48:34,364 INFO Connection check task end + +2025-09-24 14:48:34,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:37,364 INFO Connection check task start + +2025-09-24 14:48:37,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:37,365 INFO Out dated connection ,size=0 + +2025-09-24 14:48:37,365 INFO Connection check task end + +2025-09-24 14:48:37,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:40,367 INFO Connection check task start + +2025-09-24 14:48:40,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:40,367 INFO Out dated connection ,size=0 + +2025-09-24 14:48:40,367 INFO Connection check task end + +2025-09-24 14:48:40,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:43,367 INFO Connection check task start + +2025-09-24 14:48:43,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:43,367 INFO Out dated connection ,size=0 + +2025-09-24 14:48:43,367 INFO Connection check task end + +2025-09-24 14:48:43,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:46,369 INFO Connection check task start + +2025-09-24 14:48:46,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:46,369 INFO Out dated connection ,size=0 + +2025-09-24 14:48:46,369 INFO Connection check task end + +2025-09-24 14:48:46,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:49,370 INFO Connection check task start + +2025-09-24 14:48:49,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:49,370 INFO Out dated connection ,size=0 + +2025-09-24 14:48:49,370 INFO Connection check task end + +2025-09-24 14:48:49,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:52,370 INFO Connection check task start + +2025-09-24 14:48:52,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:52,370 INFO Out dated connection ,size=0 + +2025-09-24 14:48:52,370 INFO Connection check task end + +2025-09-24 14:48:53,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:55,372 INFO Connection check task start + +2025-09-24 14:48:55,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:55,372 INFO Out dated connection ,size=0 + +2025-09-24 14:48:55,372 INFO Connection check task end + +2025-09-24 14:48:56,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:48:58,372 INFO Connection check task start + +2025-09-24 14:48:58,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:48:58,373 INFO Out dated connection ,size=0 + +2025-09-24 14:48:58,373 INFO Connection check task end + +2025-09-24 14:48:59,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:01,373 INFO Connection check task start + +2025-09-24 14:49:01,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:01,373 INFO Out dated connection ,size=0 + +2025-09-24 14:49:01,373 INFO Connection check task end + +2025-09-24 14:49:02,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:04,374 INFO Connection check task start + +2025-09-24 14:49:04,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:04,374 INFO Out dated connection ,size=0 + +2025-09-24 14:49:04,374 INFO Connection check task end + +2025-09-24 14:49:05,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:07,374 INFO Connection check task start + +2025-09-24 14:49:07,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:07,374 INFO Out dated connection ,size=0 + +2025-09-24 14:49:07,374 INFO Connection check task end + +2025-09-24 14:49:08,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:10,375 INFO Connection check task start + +2025-09-24 14:49:10,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:10,375 INFO Out dated connection ,size=0 + +2025-09-24 14:49:10,375 INFO Connection check task end + +2025-09-24 14:49:11,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:13,376 INFO Connection check task start + +2025-09-24 14:49:13,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:13,376 INFO Out dated connection ,size=0 + +2025-09-24 14:49:13,376 INFO Connection check task end + +2025-09-24 14:49:14,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:16,378 INFO Connection check task start + +2025-09-24 14:49:16,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:16,378 INFO Out dated connection ,size=0 + +2025-09-24 14:49:16,378 INFO Connection check task end + +2025-09-24 14:49:17,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:19,379 INFO Connection check task start + +2025-09-24 14:49:19,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:19,379 INFO Out dated connection ,size=0 + +2025-09-24 14:49:19,379 INFO Connection check task end + +2025-09-24 14:49:20,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:22,380 INFO Connection check task start + +2025-09-24 14:49:22,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:22,381 INFO Out dated connection ,size=0 + +2025-09-24 14:49:22,381 INFO Connection check task end + +2025-09-24 14:49:23,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:25,381 INFO Connection check task start + +2025-09-24 14:49:25,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:25,381 INFO Out dated connection ,size=0 + +2025-09-24 14:49:25,381 INFO Connection check task end + +2025-09-24 14:49:26,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:28,381 INFO Connection check task start + +2025-09-24 14:49:28,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:28,382 INFO Out dated connection ,size=0 + +2025-09-24 14:49:28,382 INFO Connection check task end + +2025-09-24 14:49:29,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:31,384 INFO Connection check task start + +2025-09-24 14:49:31,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:31,384 INFO Out dated connection ,size=0 + +2025-09-24 14:49:31,384 INFO Connection check task end + +2025-09-24 14:49:32,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:34,386 INFO Connection check task start + +2025-09-24 14:49:34,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:34,386 INFO Out dated connection ,size=0 + +2025-09-24 14:49:34,386 INFO Connection check task end + +2025-09-24 14:49:35,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:37,387 INFO Connection check task start + +2025-09-24 14:49:37,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:37,387 INFO Out dated connection ,size=0 + +2025-09-24 14:49:37,387 INFO Connection check task end + +2025-09-24 14:49:38,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:40,389 INFO Connection check task start + +2025-09-24 14:49:40,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:40,389 INFO Out dated connection ,size=0 + +2025-09-24 14:49:40,389 INFO Connection check task end + +2025-09-24 14:49:41,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:43,390 INFO Connection check task start + +2025-09-24 14:49:43,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:43,390 INFO Out dated connection ,size=0 + +2025-09-24 14:49:43,390 INFO Connection check task end + +2025-09-24 14:49:44,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:46,392 INFO Connection check task start + +2025-09-24 14:49:46,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:46,392 INFO Out dated connection ,size=0 + +2025-09-24 14:49:46,392 INFO Connection check task end + +2025-09-24 14:49:47,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:49,393 INFO Connection check task start + +2025-09-24 14:49:49,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:49,393 INFO Out dated connection ,size=0 + +2025-09-24 14:49:49,393 INFO Connection check task end + +2025-09-24 14:49:50,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:52,394 INFO Connection check task start + +2025-09-24 14:49:52,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:52,394 INFO Out dated connection ,size=0 + +2025-09-24 14:49:52,394 INFO Connection check task end + +2025-09-24 14:49:53,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:55,394 INFO Connection check task start + +2025-09-24 14:49:55,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:55,395 INFO Out dated connection ,size=0 + +2025-09-24 14:49:55,395 INFO Connection check task end + +2025-09-24 14:49:56,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:49:58,395 INFO Connection check task start + +2025-09-24 14:49:58,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:49:58,396 INFO Out dated connection ,size=0 + +2025-09-24 14:49:58,396 INFO Connection check task end + +2025-09-24 14:49:59,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:01,396 INFO Connection check task start + +2025-09-24 14:50:01,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:01,396 INFO Out dated connection ,size=0 + +2025-09-24 14:50:01,396 INFO Connection check task end + +2025-09-24 14:50:02,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:04,396 INFO Connection check task start + +2025-09-24 14:50:04,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:04,396 INFO Out dated connection ,size=0 + +2025-09-24 14:50:04,396 INFO Connection check task end + +2025-09-24 14:50:05,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:07,397 INFO Connection check task start + +2025-09-24 14:50:07,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:07,397 INFO Out dated connection ,size=0 + +2025-09-24 14:50:07,397 INFO Connection check task end + +2025-09-24 14:50:08,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:10,398 INFO Connection check task start + +2025-09-24 14:50:10,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:10,398 INFO Out dated connection ,size=0 + +2025-09-24 14:50:10,398 INFO Connection check task end + +2025-09-24 14:50:11,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:13,400 INFO Connection check task start + +2025-09-24 14:50:13,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:13,400 INFO Out dated connection ,size=0 + +2025-09-24 14:50:13,400 INFO Connection check task end + +2025-09-24 14:50:14,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:16,400 INFO Connection check task start + +2025-09-24 14:50:16,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:16,400 INFO Out dated connection ,size=0 + +2025-09-24 14:50:16,400 INFO Connection check task end + +2025-09-24 14:50:17,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:19,402 INFO Connection check task start + +2025-09-24 14:50:19,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:19,402 INFO Out dated connection ,size=0 + +2025-09-24 14:50:19,402 INFO Connection check task end + +2025-09-24 14:50:20,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:22,404 INFO Connection check task start + +2025-09-24 14:50:22,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:22,405 INFO Out dated connection ,size=0 + +2025-09-24 14:50:22,405 INFO Connection check task end + +2025-09-24 14:50:23,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:25,405 INFO Connection check task start + +2025-09-24 14:50:25,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:25,406 INFO Out dated connection ,size=0 + +2025-09-24 14:50:25,406 INFO Connection check task end + +2025-09-24 14:50:26,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:28,408 INFO Connection check task start + +2025-09-24 14:50:28,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:28,408 INFO Out dated connection ,size=0 + +2025-09-24 14:50:28,408 INFO Connection check task end + +2025-09-24 14:50:29,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:31,408 INFO Connection check task start + +2025-09-24 14:50:31,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:31,409 INFO Out dated connection ,size=0 + +2025-09-24 14:50:31,409 INFO Connection check task end + +2025-09-24 14:50:32,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:34,409 INFO Connection check task start + +2025-09-24 14:50:34,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:34,409 INFO Out dated connection ,size=0 + +2025-09-24 14:50:34,409 INFO Connection check task end + +2025-09-24 14:50:35,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:37,409 INFO Connection check task start + +2025-09-24 14:50:37,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:37,409 INFO Out dated connection ,size=0 + +2025-09-24 14:50:37,409 INFO Connection check task end + +2025-09-24 14:50:38,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:40,410 INFO Connection check task start + +2025-09-24 14:50:40,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:40,410 INFO Out dated connection ,size=0 + +2025-09-24 14:50:40,410 INFO Connection check task end + +2025-09-24 14:50:41,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:43,410 INFO Connection check task start + +2025-09-24 14:50:43,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:43,410 INFO Out dated connection ,size=0 + +2025-09-24 14:50:43,410 INFO Connection check task end + +2025-09-24 14:50:44,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:46,412 INFO Connection check task start + +2025-09-24 14:50:46,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:46,412 INFO Out dated connection ,size=0 + +2025-09-24 14:50:46,412 INFO Connection check task end + +2025-09-24 14:50:47,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:49,413 INFO Connection check task start + +2025-09-24 14:50:49,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:49,413 INFO Out dated connection ,size=0 + +2025-09-24 14:50:49,413 INFO Connection check task end + +2025-09-24 14:50:50,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:52,413 INFO Connection check task start + +2025-09-24 14:50:52,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:52,413 INFO Out dated connection ,size=0 + +2025-09-24 14:50:52,414 INFO Connection check task end + +2025-09-24 14:50:53,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:55,414 INFO Connection check task start + +2025-09-24 14:50:55,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:55,414 INFO Out dated connection ,size=0 + +2025-09-24 14:50:55,414 INFO Connection check task end + +2025-09-24 14:50:56,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:50:58,414 INFO Connection check task start + +2025-09-24 14:50:58,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:50:58,415 INFO Out dated connection ,size=0 + +2025-09-24 14:50:58,415 INFO Connection check task end + +2025-09-24 14:50:59,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:01,415 INFO Connection check task start + +2025-09-24 14:51:01,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:01,415 INFO Out dated connection ,size=0 + +2025-09-24 14:51:01,415 INFO Connection check task end + +2025-09-24 14:51:02,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:04,416 INFO Connection check task start + +2025-09-24 14:51:04,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:04,417 INFO Out dated connection ,size=0 + +2025-09-24 14:51:04,417 INFO Connection check task end + +2025-09-24 14:51:05,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:07,417 INFO Connection check task start + +2025-09-24 14:51:07,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:07,417 INFO Out dated connection ,size=0 + +2025-09-24 14:51:07,417 INFO Connection check task end + +2025-09-24 14:51:08,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:10,417 INFO Connection check task start + +2025-09-24 14:51:10,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:10,418 INFO Out dated connection ,size=0 + +2025-09-24 14:51:10,418 INFO Connection check task end + +2025-09-24 14:51:11,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:13,418 INFO Connection check task start + +2025-09-24 14:51:13,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:13,418 INFO Out dated connection ,size=0 + +2025-09-24 14:51:13,418 INFO Connection check task end + +2025-09-24 14:51:14,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:16,420 INFO Connection check task start + +2025-09-24 14:51:16,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:16,420 INFO Out dated connection ,size=0 + +2025-09-24 14:51:16,420 INFO Connection check task end + +2025-09-24 14:51:17,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:19,421 INFO Connection check task start + +2025-09-24 14:51:19,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:19,421 INFO Out dated connection ,size=0 + +2025-09-24 14:51:19,421 INFO Connection check task end + +2025-09-24 14:51:20,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:22,421 INFO Connection check task start + +2025-09-24 14:51:22,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:22,422 INFO Out dated connection ,size=0 + +2025-09-24 14:51:22,422 INFO Connection check task end + +2025-09-24 14:51:23,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:25,423 INFO Connection check task start + +2025-09-24 14:51:25,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:25,423 INFO Out dated connection ,size=0 + +2025-09-24 14:51:25,423 INFO Connection check task end + +2025-09-24 14:51:26,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:28,425 INFO Connection check task start + +2025-09-24 14:51:28,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:28,425 INFO Out dated connection ,size=0 + +2025-09-24 14:51:28,425 INFO Connection check task end + +2025-09-24 14:51:29,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:31,427 INFO Connection check task start + +2025-09-24 14:51:31,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:31,427 INFO Out dated connection ,size=0 + +2025-09-24 14:51:31,427 INFO Connection check task end + +2025-09-24 14:51:32,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:34,428 INFO Connection check task start + +2025-09-24 14:51:34,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:34,429 INFO Out dated connection ,size=0 + +2025-09-24 14:51:34,429 INFO Connection check task end + +2025-09-24 14:51:35,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:37,429 INFO Connection check task start + +2025-09-24 14:51:37,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:37,429 INFO Out dated connection ,size=0 + +2025-09-24 14:51:37,429 INFO Connection check task end + +2025-09-24 14:51:38,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:40,430 INFO Connection check task start + +2025-09-24 14:51:40,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:40,430 INFO Out dated connection ,size=0 + +2025-09-24 14:51:40,430 INFO Connection check task end + +2025-09-24 14:51:41,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:43,432 INFO Connection check task start + +2025-09-24 14:51:43,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:43,432 INFO Out dated connection ,size=0 + +2025-09-24 14:51:43,432 INFO Connection check task end + +2025-09-24 14:51:44,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:46,432 INFO Connection check task start + +2025-09-24 14:51:46,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:46,432 INFO Out dated connection ,size=0 + +2025-09-24 14:51:46,432 INFO Connection check task end + +2025-09-24 14:51:47,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:49,433 INFO Connection check task start + +2025-09-24 14:51:49,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:49,433 INFO Out dated connection ,size=0 + +2025-09-24 14:51:49,433 INFO Connection check task end + +2025-09-24 14:51:50,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:52,434 INFO Connection check task start + +2025-09-24 14:51:52,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:52,434 INFO Out dated connection ,size=0 + +2025-09-24 14:51:52,434 INFO Connection check task end + +2025-09-24 14:51:53,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:55,436 INFO Connection check task start + +2025-09-24 14:51:55,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:55,436 INFO Out dated connection ,size=0 + +2025-09-24 14:51:55,437 INFO Connection check task end + +2025-09-24 14:51:56,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:51:58,438 INFO Connection check task start + +2025-09-24 14:51:58,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:51:58,439 INFO Out dated connection ,size=0 + +2025-09-24 14:51:58,439 INFO Connection check task end + +2025-09-24 14:51:59,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:01,439 INFO Connection check task start + +2025-09-24 14:52:01,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:01,439 INFO Out dated connection ,size=0 + +2025-09-24 14:52:01,439 INFO Connection check task end + +2025-09-24 14:52:02,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:04,441 INFO Connection check task start + +2025-09-24 14:52:04,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:04,441 INFO Out dated connection ,size=0 + +2025-09-24 14:52:04,442 INFO Connection check task end + +2025-09-24 14:52:05,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:07,442 INFO Connection check task start + +2025-09-24 14:52:07,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:07,442 INFO Out dated connection ,size=0 + +2025-09-24 14:52:07,442 INFO Connection check task end + +2025-09-24 14:52:08,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:10,443 INFO Connection check task start + +2025-09-24 14:52:10,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:10,443 INFO Out dated connection ,size=0 + +2025-09-24 14:52:10,443 INFO Connection check task end + +2025-09-24 14:52:11,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:13,445 INFO Connection check task start + +2025-09-24 14:52:13,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:13,445 INFO Out dated connection ,size=0 + +2025-09-24 14:52:13,445 INFO Connection check task end + +2025-09-24 14:52:14,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:16,445 INFO Connection check task start + +2025-09-24 14:52:16,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:16,446 INFO Out dated connection ,size=0 + +2025-09-24 14:52:16,446 INFO Connection check task end + +2025-09-24 14:52:17,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:19,448 INFO Connection check task start + +2025-09-24 14:52:19,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:19,448 INFO Out dated connection ,size=0 + +2025-09-24 14:52:19,448 INFO Connection check task end + +2025-09-24 14:52:20,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:22,450 INFO Connection check task start + +2025-09-24 14:52:22,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:22,451 INFO Out dated connection ,size=0 + +2025-09-24 14:52:22,451 INFO Connection check task end + +2025-09-24 14:52:23,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:25,452 INFO Connection check task start + +2025-09-24 14:52:25,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:25,453 INFO Out dated connection ,size=0 + +2025-09-24 14:52:25,453 INFO Connection check task end + +2025-09-24 14:52:26,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:28,453 INFO Connection check task start + +2025-09-24 14:52:28,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:28,453 INFO Out dated connection ,size=0 + +2025-09-24 14:52:28,453 INFO Connection check task end + +2025-09-24 14:52:29,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:31,454 INFO Connection check task start + +2025-09-24 14:52:31,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:31,454 INFO Out dated connection ,size=0 + +2025-09-24 14:52:31,454 INFO Connection check task end + +2025-09-24 14:52:32,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:34,455 INFO Connection check task start + +2025-09-24 14:52:34,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:34,455 INFO Out dated connection ,size=0 + +2025-09-24 14:52:34,455 INFO Connection check task end + +2025-09-24 14:52:35,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:37,455 INFO Connection check task start + +2025-09-24 14:52:37,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:37,455 INFO Out dated connection ,size=0 + +2025-09-24 14:52:37,455 INFO Connection check task end + +2025-09-24 14:52:38,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:40,456 INFO Connection check task start + +2025-09-24 14:52:40,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:40,456 INFO Out dated connection ,size=0 + +2025-09-24 14:52:40,456 INFO Connection check task end + +2025-09-24 14:52:41,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:43,457 INFO Connection check task start + +2025-09-24 14:52:43,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:43,457 INFO Out dated connection ,size=0 + +2025-09-24 14:52:43,457 INFO Connection check task end + +2025-09-24 14:52:44,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:46,457 INFO Connection check task start + +2025-09-24 14:52:46,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:46,457 INFO Out dated connection ,size=0 + +2025-09-24 14:52:46,457 INFO Connection check task end + +2025-09-24 14:52:47,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:49,458 INFO Connection check task start + +2025-09-24 14:52:49,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:49,458 INFO Out dated connection ,size=0 + +2025-09-24 14:52:49,458 INFO Connection check task end + +2025-09-24 14:52:50,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:52,458 INFO Connection check task start + +2025-09-24 14:52:52,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:52,459 INFO Out dated connection ,size=0 + +2025-09-24 14:52:52,459 INFO Connection check task end + +2025-09-24 14:52:53,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:55,459 INFO Connection check task start + +2025-09-24 14:52:55,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:55,459 INFO Out dated connection ,size=0 + +2025-09-24 14:52:55,459 INFO Connection check task end + +2025-09-24 14:52:56,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:52:58,461 INFO Connection check task start + +2025-09-24 14:52:58,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:52:58,461 INFO Out dated connection ,size=0 + +2025-09-24 14:52:58,461 INFO Connection check task end + +2025-09-24 14:52:59,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:01,462 INFO Connection check task start + +2025-09-24 14:53:01,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:01,462 INFO Out dated connection ,size=0 + +2025-09-24 14:53:01,462 INFO Connection check task end + +2025-09-24 14:53:02,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:04,463 INFO Connection check task start + +2025-09-24 14:53:04,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:04,463 INFO Out dated connection ,size=0 + +2025-09-24 14:53:04,463 INFO Connection check task end + +2025-09-24 14:53:05,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:07,464 INFO Connection check task start + +2025-09-24 14:53:07,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:07,464 INFO Out dated connection ,size=0 + +2025-09-24 14:53:07,464 INFO Connection check task end + +2025-09-24 14:53:08,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:10,464 INFO Connection check task start + +2025-09-24 14:53:10,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:10,465 INFO Out dated connection ,size=0 + +2025-09-24 14:53:10,465 INFO Connection check task end + +2025-09-24 14:53:11,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:13,466 INFO Connection check task start + +2025-09-24 14:53:13,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:13,466 INFO Out dated connection ,size=0 + +2025-09-24 14:53:13,466 INFO Connection check task end + +2025-09-24 14:53:14,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:16,467 INFO Connection check task start + +2025-09-24 14:53:16,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:16,467 INFO Out dated connection ,size=0 + +2025-09-24 14:53:16,467 INFO Connection check task end + +2025-09-24 14:53:17,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:19,467 INFO Connection check task start + +2025-09-24 14:53:19,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:19,468 INFO Out dated connection ,size=0 + +2025-09-24 14:53:19,468 INFO Connection check task end + +2025-09-24 14:53:20,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:22,468 INFO Connection check task start + +2025-09-24 14:53:22,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:22,468 INFO Out dated connection ,size=0 + +2025-09-24 14:53:22,468 INFO Connection check task end + +2025-09-24 14:53:23,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:25,469 INFO Connection check task start + +2025-09-24 14:53:25,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:25,469 INFO Out dated connection ,size=0 + +2025-09-24 14:53:25,469 INFO Connection check task end + +2025-09-24 14:53:26,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:28,469 INFO Connection check task start + +2025-09-24 14:53:28,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:28,470 INFO Out dated connection ,size=0 + +2025-09-24 14:53:28,470 INFO Connection check task end + +2025-09-24 14:53:29,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:31,470 INFO Connection check task start + +2025-09-24 14:53:31,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:31,470 INFO Out dated connection ,size=0 + +2025-09-24 14:53:31,470 INFO Connection check task end + +2025-09-24 14:53:32,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:34,471 INFO Connection check task start + +2025-09-24 14:53:34,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:34,471 INFO Out dated connection ,size=0 + +2025-09-24 14:53:34,472 INFO Connection check task end + +2025-09-24 14:53:35,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:37,472 INFO Connection check task start + +2025-09-24 14:53:37,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:37,472 INFO Out dated connection ,size=0 + +2025-09-24 14:53:37,472 INFO Connection check task end + +2025-09-24 14:53:38,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:40,473 INFO Connection check task start + +2025-09-24 14:53:40,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:40,473 INFO Out dated connection ,size=0 + +2025-09-24 14:53:40,474 INFO Connection check task end + +2025-09-24 14:53:41,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:43,475 INFO Connection check task start + +2025-09-24 14:53:43,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:43,475 INFO Out dated connection ,size=0 + +2025-09-24 14:53:43,475 INFO Connection check task end + +2025-09-24 14:53:44,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:46,477 INFO Connection check task start + +2025-09-24 14:53:46,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:46,477 INFO Out dated connection ,size=0 + +2025-09-24 14:53:46,477 INFO Connection check task end + +2025-09-24 14:53:47,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:49,477 INFO Connection check task start + +2025-09-24 14:53:49,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:49,477 INFO Out dated connection ,size=0 + +2025-09-24 14:53:49,477 INFO Connection check task end + +2025-09-24 14:53:50,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:52,477 INFO Connection check task start + +2025-09-24 14:53:52,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:52,478 INFO Out dated connection ,size=0 + +2025-09-24 14:53:52,478 INFO Connection check task end + +2025-09-24 14:53:53,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:55,480 INFO Connection check task start + +2025-09-24 14:53:55,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:55,480 INFO Out dated connection ,size=0 + +2025-09-24 14:53:55,480 INFO Connection check task end + +2025-09-24 14:53:56,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:53:58,480 INFO Connection check task start + +2025-09-24 14:53:58,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:53:58,480 INFO Out dated connection ,size=0 + +2025-09-24 14:53:58,481 INFO Connection check task end + +2025-09-24 14:53:59,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:01,482 INFO Connection check task start + +2025-09-24 14:54:01,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:01,482 INFO Out dated connection ,size=0 + +2025-09-24 14:54:01,482 INFO Connection check task end + +2025-09-24 14:54:02,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:04,483 INFO Connection check task start + +2025-09-24 14:54:04,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:04,483 INFO Out dated connection ,size=0 + +2025-09-24 14:54:04,483 INFO Connection check task end + +2025-09-24 14:54:05,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:07,485 INFO Connection check task start + +2025-09-24 14:54:07,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:07,485 INFO Out dated connection ,size=0 + +2025-09-24 14:54:07,485 INFO Connection check task end + +2025-09-24 14:54:08,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:10,486 INFO Connection check task start + +2025-09-24 14:54:10,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:10,486 INFO Out dated connection ,size=0 + +2025-09-24 14:54:10,486 INFO Connection check task end + +2025-09-24 14:54:11,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:13,487 INFO Connection check task start + +2025-09-24 14:54:13,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:13,487 INFO Out dated connection ,size=0 + +2025-09-24 14:54:13,487 INFO Connection check task end + +2025-09-24 14:54:14,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:16,487 INFO Connection check task start + +2025-09-24 14:54:16,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:16,488 INFO Out dated connection ,size=0 + +2025-09-24 14:54:16,488 INFO Connection check task end + +2025-09-24 14:54:17,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:19,488 INFO Connection check task start + +2025-09-24 14:54:19,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:19,488 INFO Out dated connection ,size=0 + +2025-09-24 14:54:19,488 INFO Connection check task end + +2025-09-24 14:54:20,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:22,489 INFO Connection check task start + +2025-09-24 14:54:22,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:22,490 INFO Out dated connection ,size=0 + +2025-09-24 14:54:22,490 INFO Connection check task end + +2025-09-24 14:54:23,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:25,491 INFO Connection check task start + +2025-09-24 14:54:25,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:25,491 INFO Out dated connection ,size=0 + +2025-09-24 14:54:25,491 INFO Connection check task end + +2025-09-24 14:54:26,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:28,491 INFO Connection check task start + +2025-09-24 14:54:28,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:28,491 INFO Out dated connection ,size=0 + +2025-09-24 14:54:28,491 INFO Connection check task end + +2025-09-24 14:54:29,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:31,492 INFO Connection check task start + +2025-09-24 14:54:31,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:31,492 INFO Out dated connection ,size=0 + +2025-09-24 14:54:31,492 INFO Connection check task end + +2025-09-24 14:54:32,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:34,492 INFO Connection check task start + +2025-09-24 14:54:34,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:34,493 INFO Out dated connection ,size=0 + +2025-09-24 14:54:34,493 INFO Connection check task end + +2025-09-24 14:54:35,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:37,495 INFO Connection check task start + +2025-09-24 14:54:37,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:37,495 INFO Out dated connection ,size=0 + +2025-09-24 14:54:37,495 INFO Connection check task end + +2025-09-24 14:54:38,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:40,495 INFO Connection check task start + +2025-09-24 14:54:40,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:40,496 INFO Out dated connection ,size=0 + +2025-09-24 14:54:40,496 INFO Connection check task end + +2025-09-24 14:54:41,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:43,497 INFO Connection check task start + +2025-09-24 14:54:43,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:43,497 INFO Out dated connection ,size=0 + +2025-09-24 14:54:43,497 INFO Connection check task end + +2025-09-24 14:54:44,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:46,498 INFO Connection check task start + +2025-09-24 14:54:46,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:46,498 INFO Out dated connection ,size=0 + +2025-09-24 14:54:46,498 INFO Connection check task end + +2025-09-24 14:54:47,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:49,500 INFO Connection check task start + +2025-09-24 14:54:49,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:49,500 INFO Out dated connection ,size=0 + +2025-09-24 14:54:49,500 INFO Connection check task end + +2025-09-24 14:54:50,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:52,502 INFO Connection check task start + +2025-09-24 14:54:52,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:52,502 INFO Out dated connection ,size=0 + +2025-09-24 14:54:52,502 INFO Connection check task end + +2025-09-24 14:54:53,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:55,503 INFO Connection check task start + +2025-09-24 14:54:55,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:55,503 INFO Out dated connection ,size=0 + +2025-09-24 14:54:55,503 INFO Connection check task end + +2025-09-24 14:54:56,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:54:58,503 INFO Connection check task start + +2025-09-24 14:54:58,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:54:58,503 INFO Out dated connection ,size=0 + +2025-09-24 14:54:58,504 INFO Connection check task end + +2025-09-24 14:54:59,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:01,504 INFO Connection check task start + +2025-09-24 14:55:01,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:01,505 INFO Out dated connection ,size=0 + +2025-09-24 14:55:01,505 INFO Connection check task end + +2025-09-24 14:55:02,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:04,506 INFO Connection check task start + +2025-09-24 14:55:04,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:04,507 INFO Out dated connection ,size=0 + +2025-09-24 14:55:04,507 INFO Connection check task end + +2025-09-24 14:55:05,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:07,507 INFO Connection check task start + +2025-09-24 14:55:07,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:07,507 INFO Out dated connection ,size=0 + +2025-09-24 14:55:07,507 INFO Connection check task end + +2025-09-24 14:55:08,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:10,508 INFO Connection check task start + +2025-09-24 14:55:10,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:10,508 INFO Out dated connection ,size=0 + +2025-09-24 14:55:10,508 INFO Connection check task end + +2025-09-24 14:55:11,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:13,510 INFO Connection check task start + +2025-09-24 14:55:13,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:13,510 INFO Out dated connection ,size=0 + +2025-09-24 14:55:13,510 INFO Connection check task end + +2025-09-24 14:55:14,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:16,511 INFO Connection check task start + +2025-09-24 14:55:16,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:16,511 INFO Out dated connection ,size=0 + +2025-09-24 14:55:16,511 INFO Connection check task end + +2025-09-24 14:55:17,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:19,512 INFO Connection check task start + +2025-09-24 14:55:19,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:19,512 INFO Out dated connection ,size=0 + +2025-09-24 14:55:19,512 INFO Connection check task end + +2025-09-24 14:55:20,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:22,513 INFO Connection check task start + +2025-09-24 14:55:22,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:22,514 INFO Out dated connection ,size=0 + +2025-09-24 14:55:22,514 INFO Connection check task end + +2025-09-24 14:55:23,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:25,514 INFO Connection check task start + +2025-09-24 14:55:25,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:25,514 INFO Out dated connection ,size=0 + +2025-09-24 14:55:25,514 INFO Connection check task end + +2025-09-24 14:55:26,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:28,515 INFO Connection check task start + +2025-09-24 14:55:28,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:28,515 INFO Out dated connection ,size=0 + +2025-09-24 14:55:28,515 INFO Connection check task end + +2025-09-24 14:55:29,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:31,515 INFO Connection check task start + +2025-09-24 14:55:31,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:31,516 INFO Out dated connection ,size=0 + +2025-09-24 14:55:31,516 INFO Connection check task end + +2025-09-24 14:55:32,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:34,517 INFO Connection check task start + +2025-09-24 14:55:34,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:34,517 INFO Out dated connection ,size=0 + +2025-09-24 14:55:34,518 INFO Connection check task end + +2025-09-24 14:55:35,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:37,518 INFO Connection check task start + +2025-09-24 14:55:37,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:37,518 INFO Out dated connection ,size=0 + +2025-09-24 14:55:37,518 INFO Connection check task end + +2025-09-24 14:55:38,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:40,520 INFO Connection check task start + +2025-09-24 14:55:40,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:40,521 INFO Out dated connection ,size=0 + +2025-09-24 14:55:40,521 INFO Connection check task end + +2025-09-24 14:55:41,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:43,521 INFO Connection check task start + +2025-09-24 14:55:43,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:43,521 INFO Out dated connection ,size=0 + +2025-09-24 14:55:43,521 INFO Connection check task end + +2025-09-24 14:55:44,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:46,521 INFO Connection check task start + +2025-09-24 14:55:46,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:46,522 INFO Out dated connection ,size=0 + +2025-09-24 14:55:46,522 INFO Connection check task end + +2025-09-24 14:55:47,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:49,524 INFO Connection check task start + +2025-09-24 14:55:49,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:49,524 INFO Out dated connection ,size=0 + +2025-09-24 14:55:49,524 INFO Connection check task end + +2025-09-24 14:55:50,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:52,526 INFO Connection check task start + +2025-09-24 14:55:52,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:52,526 INFO Out dated connection ,size=0 + +2025-09-24 14:55:52,526 INFO Connection check task end + +2025-09-24 14:55:53,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:55,528 INFO Connection check task start + +2025-09-24 14:55:55,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:55,528 INFO Out dated connection ,size=0 + +2025-09-24 14:55:55,528 INFO Connection check task end + +2025-09-24 14:55:56,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:55:58,528 INFO Connection check task start + +2025-09-24 14:55:58,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:55:58,528 INFO Out dated connection ,size=0 + +2025-09-24 14:55:58,528 INFO Connection check task end + +2025-09-24 14:55:59,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:01,529 INFO Connection check task start + +2025-09-24 14:56:01,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:01,529 INFO Out dated connection ,size=0 + +2025-09-24 14:56:01,529 INFO Connection check task end + +2025-09-24 14:56:02,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:04,529 INFO Connection check task start + +2025-09-24 14:56:04,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:04,530 INFO Out dated connection ,size=0 + +2025-09-24 14:56:04,530 INFO Connection check task end + +2025-09-24 14:56:05,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:07,530 INFO Connection check task start + +2025-09-24 14:56:07,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:07,530 INFO Out dated connection ,size=0 + +2025-09-24 14:56:07,530 INFO Connection check task end + +2025-09-24 14:56:08,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:10,532 INFO Connection check task start + +2025-09-24 14:56:10,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:10,533 INFO Out dated connection ,size=0 + +2025-09-24 14:56:10,533 INFO Connection check task end + +2025-09-24 14:56:11,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:13,533 INFO Connection check task start + +2025-09-24 14:56:13,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:13,534 INFO Out dated connection ,size=0 + +2025-09-24 14:56:13,534 INFO Connection check task end + +2025-09-24 14:56:14,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:16,534 INFO Connection check task start + +2025-09-24 14:56:16,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:16,534 INFO Out dated connection ,size=0 + +2025-09-24 14:56:16,534 INFO Connection check task end + +2025-09-24 14:56:17,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:19,536 INFO Connection check task start + +2025-09-24 14:56:19,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:19,536 INFO Out dated connection ,size=0 + +2025-09-24 14:56:19,536 INFO Connection check task end + +2025-09-24 14:56:20,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:22,537 INFO Connection check task start + +2025-09-24 14:56:22,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:22,537 INFO Out dated connection ,size=0 + +2025-09-24 14:56:22,537 INFO Connection check task end + +2025-09-24 14:56:23,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:25,539 INFO Connection check task start + +2025-09-24 14:56:25,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:25,539 INFO Out dated connection ,size=0 + +2025-09-24 14:56:25,540 INFO Connection check task end + +2025-09-24 14:56:26,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:28,540 INFO Connection check task start + +2025-09-24 14:56:28,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:28,540 INFO Out dated connection ,size=0 + +2025-09-24 14:56:28,540 INFO Connection check task end + +2025-09-24 14:56:29,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:31,540 INFO Connection check task start + +2025-09-24 14:56:31,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:31,540 INFO Out dated connection ,size=0 + +2025-09-24 14:56:31,541 INFO Connection check task end + +2025-09-24 14:56:32,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:34,541 INFO Connection check task start + +2025-09-24 14:56:34,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:34,541 INFO Out dated connection ,size=0 + +2025-09-24 14:56:34,541 INFO Connection check task end + +2025-09-24 14:56:35,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:37,541 INFO Connection check task start + +2025-09-24 14:56:37,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:37,542 INFO Out dated connection ,size=0 + +2025-09-24 14:56:37,542 INFO Connection check task end + +2025-09-24 14:56:38,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:40,543 INFO Connection check task start + +2025-09-24 14:56:40,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:40,543 INFO Out dated connection ,size=0 + +2025-09-24 14:56:40,543 INFO Connection check task end + +2025-09-24 14:56:41,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:43,543 INFO Connection check task start + +2025-09-24 14:56:43,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:43,543 INFO Out dated connection ,size=0 + +2025-09-24 14:56:43,544 INFO Connection check task end + +2025-09-24 14:56:44,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:46,545 INFO Connection check task start + +2025-09-24 14:56:46,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:46,545 INFO Out dated connection ,size=0 + +2025-09-24 14:56:46,545 INFO Connection check task end + +2025-09-24 14:56:47,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:49,546 INFO Connection check task start + +2025-09-24 14:56:49,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:49,546 INFO Out dated connection ,size=0 + +2025-09-24 14:56:49,546 INFO Connection check task end + +2025-09-24 14:56:50,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:52,547 INFO Connection check task start + +2025-09-24 14:56:52,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:52,547 INFO Out dated connection ,size=0 + +2025-09-24 14:56:52,547 INFO Connection check task end + +2025-09-24 14:56:53,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:55,549 INFO Connection check task start + +2025-09-24 14:56:55,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:55,549 INFO Out dated connection ,size=0 + +2025-09-24 14:56:55,549 INFO Connection check task end + +2025-09-24 14:56:56,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:56:58,550 INFO Connection check task start + +2025-09-24 14:56:58,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:56:58,550 INFO Out dated connection ,size=0 + +2025-09-24 14:56:58,550 INFO Connection check task end + +2025-09-24 14:56:59,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:01,550 INFO Connection check task start + +2025-09-24 14:57:01,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:01,551 INFO Out dated connection ,size=0 + +2025-09-24 14:57:01,551 INFO Connection check task end + +2025-09-24 14:57:02,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:04,551 INFO Connection check task start + +2025-09-24 14:57:04,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:04,551 INFO Out dated connection ,size=0 + +2025-09-24 14:57:04,551 INFO Connection check task end + +2025-09-24 14:57:05,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:07,551 INFO Connection check task start + +2025-09-24 14:57:07,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:07,551 INFO Out dated connection ,size=0 + +2025-09-24 14:57:07,551 INFO Connection check task end + +2025-09-24 14:57:08,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:10,553 INFO Connection check task start + +2025-09-24 14:57:10,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:10,553 INFO Out dated connection ,size=0 + +2025-09-24 14:57:10,553 INFO Connection check task end + +2025-09-24 14:57:11,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:13,554 INFO Connection check task start + +2025-09-24 14:57:13,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:13,554 INFO Out dated connection ,size=0 + +2025-09-24 14:57:13,554 INFO Connection check task end + +2025-09-24 14:57:14,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:16,554 INFO Connection check task start + +2025-09-24 14:57:16,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:16,554 INFO Out dated connection ,size=0 + +2025-09-24 14:57:16,554 INFO Connection check task end + +2025-09-24 14:57:17,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:19,555 INFO Connection check task start + +2025-09-24 14:57:19,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:19,555 INFO Out dated connection ,size=0 + +2025-09-24 14:57:19,555 INFO Connection check task end + +2025-09-24 14:57:20,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:22,555 INFO Connection check task start + +2025-09-24 14:57:22,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:22,555 INFO Out dated connection ,size=0 + +2025-09-24 14:57:22,555 INFO Connection check task end + +2025-09-24 14:57:23,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:25,557 INFO Connection check task start + +2025-09-24 14:57:25,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:25,558 INFO Out dated connection ,size=0 + +2025-09-24 14:57:25,558 INFO Connection check task end + +2025-09-24 14:57:26,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:28,558 INFO Connection check task start + +2025-09-24 14:57:28,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:28,558 INFO Out dated connection ,size=0 + +2025-09-24 14:57:28,558 INFO Connection check task end + +2025-09-24 14:57:29,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:31,559 INFO Connection check task start + +2025-09-24 14:57:31,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:31,559 INFO Out dated connection ,size=0 + +2025-09-24 14:57:31,559 INFO Connection check task end + +2025-09-24 14:57:32,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:34,560 INFO Connection check task start + +2025-09-24 14:57:34,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:34,560 INFO Out dated connection ,size=0 + +2025-09-24 14:57:34,560 INFO Connection check task end + +2025-09-24 14:57:35,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:37,562 INFO Connection check task start + +2025-09-24 14:57:37,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:37,562 INFO Out dated connection ,size=0 + +2025-09-24 14:57:37,562 INFO Connection check task end + +2025-09-24 14:57:38,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:40,564 INFO Connection check task start + +2025-09-24 14:57:40,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:40,564 INFO Out dated connection ,size=0 + +2025-09-24 14:57:40,564 INFO Connection check task end + +2025-09-24 14:57:41,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:43,565 INFO Connection check task start + +2025-09-24 14:57:43,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:43,565 INFO Out dated connection ,size=0 + +2025-09-24 14:57:43,565 INFO Connection check task end + +2025-09-24 14:57:44,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:46,567 INFO Connection check task start + +2025-09-24 14:57:46,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:46,567 INFO Out dated connection ,size=0 + +2025-09-24 14:57:46,567 INFO Connection check task end + +2025-09-24 14:57:47,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:49,568 INFO Connection check task start + +2025-09-24 14:57:49,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:49,568 INFO Out dated connection ,size=0 + +2025-09-24 14:57:49,568 INFO Connection check task end + +2025-09-24 14:57:50,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:52,569 INFO Connection check task start + +2025-09-24 14:57:52,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:52,569 INFO Out dated connection ,size=0 + +2025-09-24 14:57:52,569 INFO Connection check task end + +2025-09-24 14:57:53,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:55,570 INFO Connection check task start + +2025-09-24 14:57:55,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:55,570 INFO Out dated connection ,size=0 + +2025-09-24 14:57:55,570 INFO Connection check task end + +2025-09-24 14:57:56,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:57:58,572 INFO Connection check task start + +2025-09-24 14:57:58,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:57:58,572 INFO Out dated connection ,size=0 + +2025-09-24 14:57:58,572 INFO Connection check task end + +2025-09-24 14:57:59,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:01,573 INFO Connection check task start + +2025-09-24 14:58:01,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:01,573 INFO Out dated connection ,size=0 + +2025-09-24 14:58:01,573 INFO Connection check task end + +2025-09-24 14:58:02,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:04,575 INFO Connection check task start + +2025-09-24 14:58:04,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:04,575 INFO Out dated connection ,size=0 + +2025-09-24 14:58:04,575 INFO Connection check task end + +2025-09-24 14:58:05,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:07,577 INFO Connection check task start + +2025-09-24 14:58:07,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:07,577 INFO Out dated connection ,size=0 + +2025-09-24 14:58:07,577 INFO Connection check task end + +2025-09-24 14:58:08,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:10,579 INFO Connection check task start + +2025-09-24 14:58:10,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:10,579 INFO Out dated connection ,size=0 + +2025-09-24 14:58:10,580 INFO Connection check task end + +2025-09-24 14:58:11,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:13,581 INFO Connection check task start + +2025-09-24 14:58:13,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:13,581 INFO Out dated connection ,size=0 + +2025-09-24 14:58:13,581 INFO Connection check task end + +2025-09-24 14:58:14,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:16,583 INFO Connection check task start + +2025-09-24 14:58:16,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:16,583 INFO Out dated connection ,size=0 + +2025-09-24 14:58:16,583 INFO Connection check task end + +2025-09-24 14:58:17,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:19,583 INFO Connection check task start + +2025-09-24 14:58:19,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:19,583 INFO Out dated connection ,size=0 + +2025-09-24 14:58:19,583 INFO Connection check task end + +2025-09-24 14:58:20,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:22,585 INFO Connection check task start + +2025-09-24 14:58:22,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:22,586 INFO Out dated connection ,size=0 + +2025-09-24 14:58:22,587 INFO Connection check task end + +2025-09-24 14:58:23,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:25,588 INFO Connection check task start + +2025-09-24 14:58:25,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:25,588 INFO Out dated connection ,size=0 + +2025-09-24 14:58:25,588 INFO Connection check task end + +2025-09-24 14:58:26,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:28,588 INFO Connection check task start + +2025-09-24 14:58:28,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:28,589 INFO Out dated connection ,size=0 + +2025-09-24 14:58:28,589 INFO Connection check task end + +2025-09-24 14:58:29,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:31,591 INFO Connection check task start + +2025-09-24 14:58:31,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:31,591 INFO Out dated connection ,size=0 + +2025-09-24 14:58:31,591 INFO Connection check task end + +2025-09-24 14:58:32,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:34,591 INFO Connection check task start + +2025-09-24 14:58:34,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:34,591 INFO Out dated connection ,size=0 + +2025-09-24 14:58:34,591 INFO Connection check task end + +2025-09-24 14:58:35,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:37,594 INFO Connection check task start + +2025-09-24 14:58:37,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:37,594 INFO Out dated connection ,size=0 + +2025-09-24 14:58:37,594 INFO Connection check task end + +2025-09-24 14:58:38,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:40,594 INFO Connection check task start + +2025-09-24 14:58:40,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:40,594 INFO Out dated connection ,size=0 + +2025-09-24 14:58:40,595 INFO Connection check task end + +2025-09-24 14:58:41,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:43,596 INFO Connection check task start + +2025-09-24 14:58:43,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:43,596 INFO Out dated connection ,size=0 + +2025-09-24 14:58:43,596 INFO Connection check task end + +2025-09-24 14:58:44,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:46,597 INFO Connection check task start + +2025-09-24 14:58:46,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:46,597 INFO Out dated connection ,size=0 + +2025-09-24 14:58:46,597 INFO Connection check task end + +2025-09-24 14:58:47,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:49,597 INFO Connection check task start + +2025-09-24 14:58:49,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:49,597 INFO Out dated connection ,size=0 + +2025-09-24 14:58:49,598 INFO Connection check task end + +2025-09-24 14:58:50,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:52,599 INFO Connection check task start + +2025-09-24 14:58:52,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:52,599 INFO Out dated connection ,size=0 + +2025-09-24 14:58:52,599 INFO Connection check task end + +2025-09-24 14:58:53,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:55,602 INFO Connection check task start + +2025-09-24 14:58:55,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:55,602 INFO Out dated connection ,size=0 + +2025-09-24 14:58:55,602 INFO Connection check task end + +2025-09-24 14:58:56,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:58:58,604 INFO Connection check task start + +2025-09-24 14:58:58,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:58:58,604 INFO Out dated connection ,size=0 + +2025-09-24 14:58:58,604 INFO Connection check task end + +2025-09-24 14:58:59,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:01,604 INFO Connection check task start + +2025-09-24 14:59:01,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:01,605 INFO Out dated connection ,size=0 + +2025-09-24 14:59:01,605 INFO Connection check task end + +2025-09-24 14:59:02,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:04,606 INFO Connection check task start + +2025-09-24 14:59:04,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:04,606 INFO Out dated connection ,size=0 + +2025-09-24 14:59:04,606 INFO Connection check task end + +2025-09-24 14:59:05,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:07,608 INFO Connection check task start + +2025-09-24 14:59:07,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:07,608 INFO Out dated connection ,size=0 + +2025-09-24 14:59:07,608 INFO Connection check task end + +2025-09-24 14:59:08,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:10,610 INFO Connection check task start + +2025-09-24 14:59:10,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:10,610 INFO Out dated connection ,size=0 + +2025-09-24 14:59:10,610 INFO Connection check task end + +2025-09-24 14:59:11,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:13,611 INFO Connection check task start + +2025-09-24 14:59:13,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:13,611 INFO Out dated connection ,size=0 + +2025-09-24 14:59:13,611 INFO Connection check task end + +2025-09-24 14:59:14,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:16,612 INFO Connection check task start + +2025-09-24 14:59:16,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:16,612 INFO Out dated connection ,size=0 + +2025-09-24 14:59:16,612 INFO Connection check task end + +2025-09-24 14:59:17,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:19,614 INFO Connection check task start + +2025-09-24 14:59:19,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:19,614 INFO Out dated connection ,size=0 + +2025-09-24 14:59:19,614 INFO Connection check task end + +2025-09-24 14:59:20,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:22,616 INFO Connection check task start + +2025-09-24 14:59:22,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:22,616 INFO Out dated connection ,size=0 + +2025-09-24 14:59:22,616 INFO Connection check task end + +2025-09-24 14:59:23,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:25,618 INFO Connection check task start + +2025-09-24 14:59:25,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:25,619 INFO Out dated connection ,size=0 + +2025-09-24 14:59:25,619 INFO Connection check task end + +2025-09-24 14:59:26,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:28,620 INFO Connection check task start + +2025-09-24 14:59:28,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:28,620 INFO Out dated connection ,size=0 + +2025-09-24 14:59:28,620 INFO Connection check task end + +2025-09-24 14:59:29,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:31,623 INFO Connection check task start + +2025-09-24 14:59:31,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:31,623 INFO Out dated connection ,size=0 + +2025-09-24 14:59:31,623 INFO Connection check task end + +2025-09-24 14:59:32,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:34,623 INFO Connection check task start + +2025-09-24 14:59:34,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:34,623 INFO Out dated connection ,size=0 + +2025-09-24 14:59:34,623 INFO Connection check task end + +2025-09-24 14:59:35,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:37,625 INFO Connection check task start + +2025-09-24 14:59:37,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:37,625 INFO Out dated connection ,size=0 + +2025-09-24 14:59:37,625 INFO Connection check task end + +2025-09-24 14:59:38,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:40,625 INFO Connection check task start + +2025-09-24 14:59:40,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:40,626 INFO Out dated connection ,size=0 + +2025-09-24 14:59:40,626 INFO Connection check task end + +2025-09-24 14:59:41,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:43,626 INFO Connection check task start + +2025-09-24 14:59:43,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:43,626 INFO Out dated connection ,size=0 + +2025-09-24 14:59:43,626 INFO Connection check task end + +2025-09-24 14:59:44,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:46,627 INFO Connection check task start + +2025-09-24 14:59:46,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:46,627 INFO Out dated connection ,size=0 + +2025-09-24 14:59:46,627 INFO Connection check task end + +2025-09-24 14:59:47,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:49,627 INFO Connection check task start + +2025-09-24 14:59:49,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:49,627 INFO Out dated connection ,size=0 + +2025-09-24 14:59:49,627 INFO Connection check task end + +2025-09-24 14:59:50,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:52,628 INFO Connection check task start + +2025-09-24 14:59:52,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:52,628 INFO Out dated connection ,size=0 + +2025-09-24 14:59:52,628 INFO Connection check task end + +2025-09-24 14:59:53,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:55,628 INFO Connection check task start + +2025-09-24 14:59:55,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:55,629 INFO Out dated connection ,size=0 + +2025-09-24 14:59:55,629 INFO Connection check task end + +2025-09-24 14:59:56,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 14:59:58,629 INFO Connection check task start + +2025-09-24 14:59:58,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 14:59:58,629 INFO Out dated connection ,size=0 + +2025-09-24 14:59:58,629 INFO Connection check task end + +2025-09-24 14:59:59,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:01,629 INFO Connection check task start + +2025-09-24 15:00:01,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:01,630 INFO Out dated connection ,size=0 + +2025-09-24 15:00:01,630 INFO Connection check task end + +2025-09-24 15:00:02,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:04,632 INFO Connection check task start + +2025-09-24 15:00:04,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:04,632 INFO Out dated connection ,size=0 + +2025-09-24 15:00:04,632 INFO Connection check task end + +2025-09-24 15:00:05,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:07,634 INFO Connection check task start + +2025-09-24 15:00:07,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:07,634 INFO Out dated connection ,size=0 + +2025-09-24 15:00:07,634 INFO Connection check task end + +2025-09-24 15:00:08,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:10,636 INFO Connection check task start + +2025-09-24 15:00:10,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:10,636 INFO Out dated connection ,size=0 + +2025-09-24 15:00:10,636 INFO Connection check task end + +2025-09-24 15:00:11,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:13,637 INFO Connection check task start + +2025-09-24 15:00:13,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:13,637 INFO Out dated connection ,size=0 + +2025-09-24 15:00:13,637 INFO Connection check task end + +2025-09-24 15:00:14,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:16,639 INFO Connection check task start + +2025-09-24 15:00:16,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:16,639 INFO Out dated connection ,size=0 + +2025-09-24 15:00:16,639 INFO Connection check task end + +2025-09-24 15:00:17,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:19,640 INFO Connection check task start + +2025-09-24 15:00:19,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:19,640 INFO Out dated connection ,size=0 + +2025-09-24 15:00:19,640 INFO Connection check task end + +2025-09-24 15:00:20,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:22,641 INFO Connection check task start + +2025-09-24 15:00:22,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:22,641 INFO Out dated connection ,size=0 + +2025-09-24 15:00:22,641 INFO Connection check task end + +2025-09-24 15:00:23,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:25,642 INFO Connection check task start + +2025-09-24 15:00:25,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:25,642 INFO Out dated connection ,size=0 + +2025-09-24 15:00:25,642 INFO Connection check task end + +2025-09-24 15:00:26,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:28,643 INFO Connection check task start + +2025-09-24 15:00:28,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:28,643 INFO Out dated connection ,size=0 + +2025-09-24 15:00:28,643 INFO Connection check task end + +2025-09-24 15:00:29,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:31,644 INFO Connection check task start + +2025-09-24 15:00:31,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:31,644 INFO Out dated connection ,size=0 + +2025-09-24 15:00:31,644 INFO Connection check task end + +2025-09-24 15:00:32,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:34,646 INFO Connection check task start + +2025-09-24 15:00:34,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:34,646 INFO Out dated connection ,size=0 + +2025-09-24 15:00:34,646 INFO Connection check task end + +2025-09-24 15:00:35,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:37,648 INFO Connection check task start + +2025-09-24 15:00:37,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:37,648 INFO Out dated connection ,size=0 + +2025-09-24 15:00:37,649 INFO Connection check task end + +2025-09-24 15:00:38,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:40,650 INFO Connection check task start + +2025-09-24 15:00:40,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:40,651 INFO Out dated connection ,size=0 + +2025-09-24 15:00:40,651 INFO Connection check task end + +2025-09-24 15:00:41,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:43,651 INFO Connection check task start + +2025-09-24 15:00:43,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:43,651 INFO Out dated connection ,size=0 + +2025-09-24 15:00:43,651 INFO Connection check task end + +2025-09-24 15:00:44,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:46,651 INFO Connection check task start + +2025-09-24 15:00:46,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:46,652 INFO Out dated connection ,size=0 + +2025-09-24 15:00:46,652 INFO Connection check task end + +2025-09-24 15:00:47,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:49,652 INFO Connection check task start + +2025-09-24 15:00:49,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:49,652 INFO Out dated connection ,size=0 + +2025-09-24 15:00:49,652 INFO Connection check task end + +2025-09-24 15:00:50,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:52,653 INFO Connection check task start + +2025-09-24 15:00:52,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:52,653 INFO Out dated connection ,size=0 + +2025-09-24 15:00:52,653 INFO Connection check task end + +2025-09-24 15:00:53,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:55,654 INFO Connection check task start + +2025-09-24 15:00:55,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:55,654 INFO Out dated connection ,size=0 + +2025-09-24 15:00:55,654 INFO Connection check task end + +2025-09-24 15:00:56,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:00:58,656 INFO Connection check task start + +2025-09-24 15:00:58,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:00:58,656 INFO Out dated connection ,size=0 + +2025-09-24 15:00:58,656 INFO Connection check task end + +2025-09-24 15:00:59,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:01,657 INFO Connection check task start + +2025-09-24 15:01:01,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:01,657 INFO Out dated connection ,size=0 + +2025-09-24 15:01:01,657 INFO Connection check task end + +2025-09-24 15:01:02,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:04,659 INFO Connection check task start + +2025-09-24 15:01:04,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:04,659 INFO Out dated connection ,size=0 + +2025-09-24 15:01:04,659 INFO Connection check task end + +2025-09-24 15:01:05,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:07,660 INFO Connection check task start + +2025-09-24 15:01:07,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:07,660 INFO Out dated connection ,size=0 + +2025-09-24 15:01:07,660 INFO Connection check task end + +2025-09-24 15:01:08,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:10,662 INFO Connection check task start + +2025-09-24 15:01:10,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:10,662 INFO Out dated connection ,size=0 + +2025-09-24 15:01:10,662 INFO Connection check task end + +2025-09-24 15:01:11,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:13,664 INFO Connection check task start + +2025-09-24 15:01:13,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:13,664 INFO Out dated connection ,size=0 + +2025-09-24 15:01:13,664 INFO Connection check task end + +2025-09-24 15:01:14,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:16,665 INFO Connection check task start + +2025-09-24 15:01:16,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:16,665 INFO Out dated connection ,size=0 + +2025-09-24 15:01:16,665 INFO Connection check task end + +2025-09-24 15:01:17,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:19,666 INFO Connection check task start + +2025-09-24 15:01:19,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:19,666 INFO Out dated connection ,size=0 + +2025-09-24 15:01:19,666 INFO Connection check task end + +2025-09-24 15:01:20,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:22,668 INFO Connection check task start + +2025-09-24 15:01:22,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:22,669 INFO Out dated connection ,size=0 + +2025-09-24 15:01:22,669 INFO Connection check task end + +2025-09-24 15:01:23,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:25,671 INFO Connection check task start + +2025-09-24 15:01:25,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:25,671 INFO Out dated connection ,size=0 + +2025-09-24 15:01:25,671 INFO Connection check task end + +2025-09-24 15:01:26,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:28,673 INFO Connection check task start + +2025-09-24 15:01:28,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:28,674 INFO Out dated connection ,size=0 + +2025-09-24 15:01:28,674 INFO Connection check task end + +2025-09-24 15:01:29,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:31,676 INFO Connection check task start + +2025-09-24 15:01:31,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:31,676 INFO Out dated connection ,size=0 + +2025-09-24 15:01:31,676 INFO Connection check task end + +2025-09-24 15:01:32,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:34,676 INFO Connection check task start + +2025-09-24 15:01:34,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:34,677 INFO Out dated connection ,size=0 + +2025-09-24 15:01:34,677 INFO Connection check task end + +2025-09-24 15:01:35,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:37,678 INFO Connection check task start + +2025-09-24 15:01:37,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:37,679 INFO Out dated connection ,size=0 + +2025-09-24 15:01:37,679 INFO Connection check task end + +2025-09-24 15:01:38,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:40,679 INFO Connection check task start + +2025-09-24 15:01:40,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:40,679 INFO Out dated connection ,size=0 + +2025-09-24 15:01:40,679 INFO Connection check task end + +2025-09-24 15:01:41,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:43,681 INFO Connection check task start + +2025-09-24 15:01:43,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:43,681 INFO Out dated connection ,size=0 + +2025-09-24 15:01:43,682 INFO Connection check task end + +2025-09-24 15:01:44,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:46,682 INFO Connection check task start + +2025-09-24 15:01:46,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:46,682 INFO Out dated connection ,size=0 + +2025-09-24 15:01:46,682 INFO Connection check task end + +2025-09-24 15:01:47,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:49,682 INFO Connection check task start + +2025-09-24 15:01:49,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:49,683 INFO Out dated connection ,size=0 + +2025-09-24 15:01:49,683 INFO Connection check task end + +2025-09-24 15:01:50,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:52,684 INFO Connection check task start + +2025-09-24 15:01:52,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:52,685 INFO Out dated connection ,size=0 + +2025-09-24 15:01:52,685 INFO Connection check task end + +2025-09-24 15:01:53,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:55,686 INFO Connection check task start + +2025-09-24 15:01:55,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:55,686 INFO Out dated connection ,size=0 + +2025-09-24 15:01:55,686 INFO Connection check task end + +2025-09-24 15:01:56,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:01:58,687 INFO Connection check task start + +2025-09-24 15:01:58,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:01:58,687 INFO Out dated connection ,size=0 + +2025-09-24 15:01:58,687 INFO Connection check task end + +2025-09-24 15:01:59,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:01,688 INFO Connection check task start + +2025-09-24 15:02:01,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:01,688 INFO Out dated connection ,size=0 + +2025-09-24 15:02:01,688 INFO Connection check task end + +2025-09-24 15:02:02,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:04,688 INFO Connection check task start + +2025-09-24 15:02:04,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:04,688 INFO Out dated connection ,size=0 + +2025-09-24 15:02:04,688 INFO Connection check task end + +2025-09-24 15:02:05,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:07,690 INFO Connection check task start + +2025-09-24 15:02:07,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:07,690 INFO Out dated connection ,size=0 + +2025-09-24 15:02:07,690 INFO Connection check task end + +2025-09-24 15:02:08,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:10,692 INFO Connection check task start + +2025-09-24 15:02:10,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:10,692 INFO Out dated connection ,size=0 + +2025-09-24 15:02:10,692 INFO Connection check task end + +2025-09-24 15:02:11,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:13,694 INFO Connection check task start + +2025-09-24 15:02:13,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:13,695 INFO Out dated connection ,size=0 + +2025-09-24 15:02:13,695 INFO Connection check task end + +2025-09-24 15:02:14,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:16,695 INFO Connection check task start + +2025-09-24 15:02:16,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:16,695 INFO Out dated connection ,size=0 + +2025-09-24 15:02:16,695 INFO Connection check task end + +2025-09-24 15:02:17,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:19,697 INFO Connection check task start + +2025-09-24 15:02:19,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:19,697 INFO Out dated connection ,size=0 + +2025-09-24 15:02:19,697 INFO Connection check task end + +2025-09-24 15:02:20,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:22,697 INFO Connection check task start + +2025-09-24 15:02:22,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:22,698 INFO Out dated connection ,size=0 + +2025-09-24 15:02:22,698 INFO Connection check task end + +2025-09-24 15:02:23,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:25,700 INFO Connection check task start + +2025-09-24 15:02:25,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:25,700 INFO Out dated connection ,size=0 + +2025-09-24 15:02:25,700 INFO Connection check task end + +2025-09-24 15:02:26,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:28,702 INFO Connection check task start + +2025-09-24 15:02:28,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:28,702 INFO Out dated connection ,size=0 + +2025-09-24 15:02:28,702 INFO Connection check task end + +2025-09-24 15:02:29,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:31,702 INFO Connection check task start + +2025-09-24 15:02:31,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:31,703 INFO Out dated connection ,size=0 + +2025-09-24 15:02:31,703 INFO Connection check task end + +2025-09-24 15:02:32,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:34,704 INFO Connection check task start + +2025-09-24 15:02:34,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:34,704 INFO Out dated connection ,size=0 + +2025-09-24 15:02:34,704 INFO Connection check task end + +2025-09-24 15:02:35,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:37,705 INFO Connection check task start + +2025-09-24 15:02:37,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:37,705 INFO Out dated connection ,size=0 + +2025-09-24 15:02:37,705 INFO Connection check task end + +2025-09-24 15:02:38,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:40,707 INFO Connection check task start + +2025-09-24 15:02:40,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:40,708 INFO Out dated connection ,size=0 + +2025-09-24 15:02:40,708 INFO Connection check task end + +2025-09-24 15:02:41,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:43,708 INFO Connection check task start + +2025-09-24 15:02:43,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:43,708 INFO Out dated connection ,size=0 + +2025-09-24 15:02:43,708 INFO Connection check task end + +2025-09-24 15:02:44,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:46,710 INFO Connection check task start + +2025-09-24 15:02:46,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:46,710 INFO Out dated connection ,size=0 + +2025-09-24 15:02:46,710 INFO Connection check task end + +2025-09-24 15:02:47,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:49,711 INFO Connection check task start + +2025-09-24 15:02:49,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:49,711 INFO Out dated connection ,size=0 + +2025-09-24 15:02:49,711 INFO Connection check task end + +2025-09-24 15:02:50,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:52,711 INFO Connection check task start + +2025-09-24 15:02:52,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:52,712 INFO Out dated connection ,size=0 + +2025-09-24 15:02:52,712 INFO Connection check task end + +2025-09-24 15:02:53,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:55,713 INFO Connection check task start + +2025-09-24 15:02:55,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:55,713 INFO Out dated connection ,size=0 + +2025-09-24 15:02:55,713 INFO Connection check task end + +2025-09-24 15:02:56,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:02:58,713 INFO Connection check task start + +2025-09-24 15:02:58,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:02:58,713 INFO Out dated connection ,size=0 + +2025-09-24 15:02:58,713 INFO Connection check task end + +2025-09-24 15:02:59,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:01,715 INFO Connection check task start + +2025-09-24 15:03:01,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:01,715 INFO Out dated connection ,size=0 + +2025-09-24 15:03:01,715 INFO Connection check task end + +2025-09-24 15:03:02,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:04,716 INFO Connection check task start + +2025-09-24 15:03:04,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:04,716 INFO Out dated connection ,size=0 + +2025-09-24 15:03:04,716 INFO Connection check task end + +2025-09-24 15:03:05,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:07,716 INFO Connection check task start + +2025-09-24 15:03:07,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:07,716 INFO Out dated connection ,size=0 + +2025-09-24 15:03:07,716 INFO Connection check task end + +2025-09-24 15:03:08,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:10,718 INFO Connection check task start + +2025-09-24 15:03:10,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:10,718 INFO Out dated connection ,size=0 + +2025-09-24 15:03:10,718 INFO Connection check task end + +2025-09-24 15:03:11,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:13,719 INFO Connection check task start + +2025-09-24 15:03:13,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:13,719 INFO Out dated connection ,size=0 + +2025-09-24 15:03:13,719 INFO Connection check task end + +2025-09-24 15:03:14,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:16,721 INFO Connection check task start + +2025-09-24 15:03:16,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:16,721 INFO Out dated connection ,size=0 + +2025-09-24 15:03:16,721 INFO Connection check task end + +2025-09-24 15:03:17,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:19,721 INFO Connection check task start + +2025-09-24 15:03:19,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:19,730 INFO Out dated connection ,size=0 + +2025-09-24 15:03:19,730 INFO Connection check task end + +2025-09-24 15:03:20,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:22,730 INFO Connection check task start + +2025-09-24 15:03:22,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:22,731 INFO Out dated connection ,size=0 + +2025-09-24 15:03:22,731 INFO Connection check task end + +2025-09-24 15:03:23,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:25,732 INFO Connection check task start + +2025-09-24 15:03:25,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:25,732 INFO Out dated connection ,size=0 + +2025-09-24 15:03:25,732 INFO Connection check task end + +2025-09-24 15:03:26,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:28,734 INFO Connection check task start + +2025-09-24 15:03:28,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:28,734 INFO Out dated connection ,size=0 + +2025-09-24 15:03:28,735 INFO Connection check task end + +2025-09-24 15:03:29,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:31,737 INFO Connection check task start + +2025-09-24 15:03:31,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:31,737 INFO Out dated connection ,size=0 + +2025-09-24 15:03:31,737 INFO Connection check task end + +2025-09-24 15:03:32,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:34,738 INFO Connection check task start + +2025-09-24 15:03:34,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:34,738 INFO Out dated connection ,size=0 + +2025-09-24 15:03:34,738 INFO Connection check task end + +2025-09-24 15:03:35,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:37,740 INFO Connection check task start + +2025-09-24 15:03:37,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:37,740 INFO Out dated connection ,size=0 + +2025-09-24 15:03:37,740 INFO Connection check task end + +2025-09-24 15:03:38,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:40,740 INFO Connection check task start + +2025-09-24 15:03:40,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:40,740 INFO Out dated connection ,size=0 + +2025-09-24 15:03:40,740 INFO Connection check task end + +2025-09-24 15:03:41,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:43,740 INFO Connection check task start + +2025-09-24 15:03:43,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:43,741 INFO Out dated connection ,size=0 + +2025-09-24 15:03:43,741 INFO Connection check task end + +2025-09-24 15:03:44,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:46,741 INFO Connection check task start + +2025-09-24 15:03:46,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:46,741 INFO Out dated connection ,size=0 + +2025-09-24 15:03:46,741 INFO Connection check task end + +2025-09-24 15:03:47,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:49,741 INFO Connection check task start + +2025-09-24 15:03:49,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:49,742 INFO Out dated connection ,size=0 + +2025-09-24 15:03:49,742 INFO Connection check task end + +2025-09-24 15:03:50,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:52,742 INFO Connection check task start + +2025-09-24 15:03:52,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:52,742 INFO Out dated connection ,size=0 + +2025-09-24 15:03:52,742 INFO Connection check task end + +2025-09-24 15:03:53,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:55,742 INFO Connection check task start + +2025-09-24 15:03:55,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:55,743 INFO Out dated connection ,size=0 + +2025-09-24 15:03:55,743 INFO Connection check task end + +2025-09-24 15:03:56,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:03:58,745 INFO Connection check task start + +2025-09-24 15:03:58,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:03:58,745 INFO Out dated connection ,size=0 + +2025-09-24 15:03:58,745 INFO Connection check task end + +2025-09-24 15:03:59,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:01,745 INFO Connection check task start + +2025-09-24 15:04:01,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:01,746 INFO Out dated connection ,size=0 + +2025-09-24 15:04:01,746 INFO Connection check task end + +2025-09-24 15:04:02,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:04,746 INFO Connection check task start + +2025-09-24 15:04:04,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:04,746 INFO Out dated connection ,size=0 + +2025-09-24 15:04:04,746 INFO Connection check task end + +2025-09-24 15:04:05,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:07,747 INFO Connection check task start + +2025-09-24 15:04:07,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:07,747 INFO Out dated connection ,size=0 + +2025-09-24 15:04:07,747 INFO Connection check task end + +2025-09-24 15:04:08,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:10,747 INFO Connection check task start + +2025-09-24 15:04:10,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:10,747 INFO Out dated connection ,size=0 + +2025-09-24 15:04:10,747 INFO Connection check task end + +2025-09-24 15:04:11,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:13,748 INFO Connection check task start + +2025-09-24 15:04:13,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:13,748 INFO Out dated connection ,size=0 + +2025-09-24 15:04:13,748 INFO Connection check task end + +2025-09-24 15:04:14,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:16,749 INFO Connection check task start + +2025-09-24 15:04:16,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:16,749 INFO Out dated connection ,size=0 + +2025-09-24 15:04:16,749 INFO Connection check task end + +2025-09-24 15:04:17,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:19,749 INFO Connection check task start + +2025-09-24 15:04:19,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:19,749 INFO Out dated connection ,size=0 + +2025-09-24 15:04:19,749 INFO Connection check task end + +2025-09-24 15:04:20,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:22,750 INFO Connection check task start + +2025-09-24 15:04:22,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:22,750 INFO Out dated connection ,size=0 + +2025-09-24 15:04:22,750 INFO Connection check task end + +2025-09-24 15:04:23,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:25,750 INFO Connection check task start + +2025-09-24 15:04:25,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:25,751 INFO Out dated connection ,size=0 + +2025-09-24 15:04:25,751 INFO Connection check task end + +2025-09-24 15:04:26,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:28,751 INFO Connection check task start + +2025-09-24 15:04:28,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:28,751 INFO Out dated connection ,size=0 + +2025-09-24 15:04:28,751 INFO Connection check task end + +2025-09-24 15:04:29,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:31,751 INFO Connection check task start + +2025-09-24 15:04:31,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:31,751 INFO Out dated connection ,size=0 + +2025-09-24 15:04:31,751 INFO Connection check task end + +2025-09-24 15:04:32,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:34,752 INFO Connection check task start + +2025-09-24 15:04:34,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:34,752 INFO Out dated connection ,size=0 + +2025-09-24 15:04:34,752 INFO Connection check task end + +2025-09-24 15:04:35,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:37,752 INFO Connection check task start + +2025-09-24 15:04:37,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:37,753 INFO Out dated connection ,size=0 + +2025-09-24 15:04:37,753 INFO Connection check task end + +2025-09-24 15:04:38,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:40,753 INFO Connection check task start + +2025-09-24 15:04:40,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:40,753 INFO Out dated connection ,size=0 + +2025-09-24 15:04:40,753 INFO Connection check task end + +2025-09-24 15:04:41,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:43,753 INFO Connection check task start + +2025-09-24 15:04:43,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:43,754 INFO Out dated connection ,size=0 + +2025-09-24 15:04:43,754 INFO Connection check task end + +2025-09-24 15:04:44,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:46,754 INFO Connection check task start + +2025-09-24 15:04:46,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:46,754 INFO Out dated connection ,size=0 + +2025-09-24 15:04:46,754 INFO Connection check task end + +2025-09-24 15:04:47,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:49,755 INFO Connection check task start + +2025-09-24 15:04:49,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:49,755 INFO Out dated connection ,size=0 + +2025-09-24 15:04:49,755 INFO Connection check task end + +2025-09-24 15:04:50,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:52,755 INFO Connection check task start + +2025-09-24 15:04:52,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:52,755 INFO Out dated connection ,size=0 + +2025-09-24 15:04:52,755 INFO Connection check task end + +2025-09-24 15:04:53,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:55,755 INFO Connection check task start + +2025-09-24 15:04:55,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:55,756 INFO Out dated connection ,size=0 + +2025-09-24 15:04:55,756 INFO Connection check task end + +2025-09-24 15:04:56,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:04:58,756 INFO Connection check task start + +2025-09-24 15:04:58,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:04:58,756 INFO Out dated connection ,size=0 + +2025-09-24 15:04:58,756 INFO Connection check task end + +2025-09-24 15:04:59,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:01,756 INFO Connection check task start + +2025-09-24 15:05:01,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:01,757 INFO Out dated connection ,size=0 + +2025-09-24 15:05:01,757 INFO Connection check task end + +2025-09-24 15:05:02,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:04,757 INFO Connection check task start + +2025-09-24 15:05:04,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:04,757 INFO Out dated connection ,size=0 + +2025-09-24 15:05:04,757 INFO Connection check task end + +2025-09-24 15:05:05,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:07,757 INFO Connection check task start + +2025-09-24 15:05:07,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:07,758 INFO Out dated connection ,size=0 + +2025-09-24 15:05:07,758 INFO Connection check task end + +2025-09-24 15:05:08,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:10,758 INFO Connection check task start + +2025-09-24 15:05:10,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:10,758 INFO Out dated connection ,size=0 + +2025-09-24 15:05:10,758 INFO Connection check task end + +2025-09-24 15:05:11,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:13,758 INFO Connection check task start + +2025-09-24 15:05:13,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:13,758 INFO Out dated connection ,size=0 + +2025-09-24 15:05:13,758 INFO Connection check task end + +2025-09-24 15:05:14,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:16,758 INFO Connection check task start + +2025-09-24 15:05:16,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:16,759 INFO Out dated connection ,size=0 + +2025-09-24 15:05:16,759 INFO Connection check task end + +2025-09-24 15:05:17,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:19,759 INFO Connection check task start + +2025-09-24 15:05:19,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:19,759 INFO Out dated connection ,size=0 + +2025-09-24 15:05:19,759 INFO Connection check task end + +2025-09-24 15:05:20,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:22,760 INFO Connection check task start + +2025-09-24 15:05:22,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:22,760 INFO Out dated connection ,size=0 + +2025-09-24 15:05:22,760 INFO Connection check task end + +2025-09-24 15:05:23,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:25,762 INFO Connection check task start + +2025-09-24 15:05:25,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:25,762 INFO Out dated connection ,size=0 + +2025-09-24 15:05:25,762 INFO Connection check task end + +2025-09-24 15:05:26,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:28,762 INFO Connection check task start + +2025-09-24 15:05:28,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:28,763 INFO Out dated connection ,size=0 + +2025-09-24 15:05:28,763 INFO Connection check task end + +2025-09-24 15:05:29,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:31,763 INFO Connection check task start + +2025-09-24 15:05:31,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:31,763 INFO Out dated connection ,size=0 + +2025-09-24 15:05:31,763 INFO Connection check task end + +2025-09-24 15:05:32,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:34,763 INFO Connection check task start + +2025-09-24 15:05:34,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:34,763 INFO Out dated connection ,size=0 + +2025-09-24 15:05:34,763 INFO Connection check task end + +2025-09-24 15:05:35,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:37,764 INFO Connection check task start + +2025-09-24 15:05:37,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:37,764 INFO Out dated connection ,size=0 + +2025-09-24 15:05:37,764 INFO Connection check task end + +2025-09-24 15:05:38,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:40,764 INFO Connection check task start + +2025-09-24 15:05:40,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:40,764 INFO Out dated connection ,size=0 + +2025-09-24 15:05:40,764 INFO Connection check task end + +2025-09-24 15:05:41,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:43,764 INFO Connection check task start + +2025-09-24 15:05:43,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:43,765 INFO Out dated connection ,size=0 + +2025-09-24 15:05:43,765 INFO Connection check task end + +2025-09-24 15:05:44,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:46,765 INFO Connection check task start + +2025-09-24 15:05:46,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:46,765 INFO Out dated connection ,size=0 + +2025-09-24 15:05:46,765 INFO Connection check task end + +2025-09-24 15:05:47,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:49,765 INFO Connection check task start + +2025-09-24 15:05:49,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:49,765 INFO Out dated connection ,size=0 + +2025-09-24 15:05:49,766 INFO Connection check task end + +2025-09-24 15:05:50,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:52,766 INFO Connection check task start + +2025-09-24 15:05:52,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:52,766 INFO Out dated connection ,size=0 + +2025-09-24 15:05:52,766 INFO Connection check task end + +2025-09-24 15:05:53,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:55,767 INFO Connection check task start + +2025-09-24 15:05:55,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:55,767 INFO Out dated connection ,size=0 + +2025-09-24 15:05:55,767 INFO Connection check task end + +2025-09-24 15:05:56,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:05:58,767 INFO Connection check task start + +2025-09-24 15:05:58,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:05:58,768 INFO Out dated connection ,size=0 + +2025-09-24 15:05:58,768 INFO Connection check task end + +2025-09-24 15:05:59,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:01,768 INFO Connection check task start + +2025-09-24 15:06:01,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:01,768 INFO Out dated connection ,size=0 + +2025-09-24 15:06:01,768 INFO Connection check task end + +2025-09-24 15:06:02,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:04,770 INFO Connection check task start + +2025-09-24 15:06:04,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:04,770 INFO Out dated connection ,size=0 + +2025-09-24 15:06:04,770 INFO Connection check task end + +2025-09-24 15:06:05,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:07,770 INFO Connection check task start + +2025-09-24 15:06:07,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:07,770 INFO Out dated connection ,size=0 + +2025-09-24 15:06:07,770 INFO Connection check task end + +2025-09-24 15:06:08,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:10,770 INFO Connection check task start + +2025-09-24 15:06:10,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:10,770 INFO Out dated connection ,size=0 + +2025-09-24 15:06:10,770 INFO Connection check task end + +2025-09-24 15:06:11,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:13,771 INFO Connection check task start + +2025-09-24 15:06:13,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:13,771 INFO Out dated connection ,size=0 + +2025-09-24 15:06:13,771 INFO Connection check task end + +2025-09-24 15:06:14,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:16,771 INFO Connection check task start + +2025-09-24 15:06:16,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:16,771 INFO Out dated connection ,size=0 + +2025-09-24 15:06:16,771 INFO Connection check task end + +2025-09-24 15:06:17,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:19,772 INFO Connection check task start + +2025-09-24 15:06:19,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:19,772 INFO Out dated connection ,size=0 + +2025-09-24 15:06:19,772 INFO Connection check task end + +2025-09-24 15:06:20,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:22,772 INFO Connection check task start + +2025-09-24 15:06:22,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:22,773 INFO Out dated connection ,size=0 + +2025-09-24 15:06:22,773 INFO Connection check task end + +2025-09-24 15:06:23,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:25,773 INFO Connection check task start + +2025-09-24 15:06:25,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:25,774 INFO Out dated connection ,size=0 + +2025-09-24 15:06:25,774 INFO Connection check task end + +2025-09-24 15:06:26,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:28,774 INFO Connection check task start + +2025-09-24 15:06:28,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:28,774 INFO Out dated connection ,size=0 + +2025-09-24 15:06:28,774 INFO Connection check task end + +2025-09-24 15:06:29,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:31,774 INFO Connection check task start + +2025-09-24 15:06:31,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:31,774 INFO Out dated connection ,size=0 + +2025-09-24 15:06:31,774 INFO Connection check task end + +2025-09-24 15:06:32,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:34,776 INFO Connection check task start + +2025-09-24 15:06:34,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:34,776 INFO Out dated connection ,size=0 + +2025-09-24 15:06:34,776 INFO Connection check task end + +2025-09-24 15:06:35,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:37,776 INFO Connection check task start + +2025-09-24 15:06:37,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:37,776 INFO Out dated connection ,size=0 + +2025-09-24 15:06:37,776 INFO Connection check task end + +2025-09-24 15:06:38,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:40,777 INFO Connection check task start + +2025-09-24 15:06:40,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:40,777 INFO Out dated connection ,size=0 + +2025-09-24 15:06:40,777 INFO Connection check task end + +2025-09-24 15:06:41,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:43,777 INFO Connection check task start + +2025-09-24 15:06:43,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:43,778 INFO Out dated connection ,size=0 + +2025-09-24 15:06:43,778 INFO Connection check task end + +2025-09-24 15:06:44,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:46,778 INFO Connection check task start + +2025-09-24 15:06:46,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:46,778 INFO Out dated connection ,size=0 + +2025-09-24 15:06:46,778 INFO Connection check task end + +2025-09-24 15:06:47,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:49,778 INFO Connection check task start + +2025-09-24 15:06:49,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:49,779 INFO Out dated connection ,size=0 + +2025-09-24 15:06:49,779 INFO Connection check task end + +2025-09-24 15:06:50,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:52,779 INFO Connection check task start + +2025-09-24 15:06:52,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:52,779 INFO Out dated connection ,size=0 + +2025-09-24 15:06:52,779 INFO Connection check task end + +2025-09-24 15:06:53,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:55,780 INFO Connection check task start + +2025-09-24 15:06:55,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:55,780 INFO Out dated connection ,size=0 + +2025-09-24 15:06:55,780 INFO Connection check task end + +2025-09-24 15:06:56,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:06:58,781 INFO Connection check task start + +2025-09-24 15:06:58,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:06:58,781 INFO Out dated connection ,size=0 + +2025-09-24 15:06:58,781 INFO Connection check task end + +2025-09-24 15:06:59,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:01,781 INFO Connection check task start + +2025-09-24 15:07:01,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:01,782 INFO Out dated connection ,size=0 + +2025-09-24 15:07:01,782 INFO Connection check task end + +2025-09-24 15:07:02,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:04,782 INFO Connection check task start + +2025-09-24 15:07:04,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:04,782 INFO Out dated connection ,size=0 + +2025-09-24 15:07:04,782 INFO Connection check task end + +2025-09-24 15:07:05,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:07,782 INFO Connection check task start + +2025-09-24 15:07:07,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:07,783 INFO Out dated connection ,size=0 + +2025-09-24 15:07:07,783 INFO Connection check task end + +2025-09-24 15:07:08,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:10,783 INFO Connection check task start + +2025-09-24 15:07:10,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:10,783 INFO Out dated connection ,size=0 + +2025-09-24 15:07:10,783 INFO Connection check task end + +2025-09-24 15:07:11,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:13,783 INFO Connection check task start + +2025-09-24 15:07:13,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:13,784 INFO Out dated connection ,size=0 + +2025-09-24 15:07:13,784 INFO Connection check task end + +2025-09-24 15:07:14,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:16,784 INFO Connection check task start + +2025-09-24 15:07:16,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:16,784 INFO Out dated connection ,size=0 + +2025-09-24 15:07:16,784 INFO Connection check task end + +2025-09-24 15:07:17,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:19,784 INFO Connection check task start + +2025-09-24 15:07:19,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:19,785 INFO Out dated connection ,size=0 + +2025-09-24 15:07:19,785 INFO Connection check task end + +2025-09-24 15:07:20,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:22,785 INFO Connection check task start + +2025-09-24 15:07:22,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:22,786 INFO Out dated connection ,size=0 + +2025-09-24 15:07:22,786 INFO Connection check task end + +2025-09-24 15:07:23,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:25,787 INFO Connection check task start + +2025-09-24 15:07:25,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:25,787 INFO Out dated connection ,size=0 + +2025-09-24 15:07:25,787 INFO Connection check task end + +2025-09-24 15:07:26,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:28,787 INFO Connection check task start + +2025-09-24 15:07:28,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:28,787 INFO Out dated connection ,size=0 + +2025-09-24 15:07:28,787 INFO Connection check task end + +2025-09-24 15:07:29,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:31,788 INFO Connection check task start + +2025-09-24 15:07:31,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:31,788 INFO Out dated connection ,size=0 + +2025-09-24 15:07:31,788 INFO Connection check task end + +2025-09-24 15:07:32,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:34,789 INFO Connection check task start + +2025-09-24 15:07:34,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:34,789 INFO Out dated connection ,size=0 + +2025-09-24 15:07:34,789 INFO Connection check task end + +2025-09-24 15:07:35,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:37,789 INFO Connection check task start + +2025-09-24 15:07:37,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:37,789 INFO Out dated connection ,size=0 + +2025-09-24 15:07:37,789 INFO Connection check task end + +2025-09-24 15:07:38,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:40,790 INFO Connection check task start + +2025-09-24 15:07:40,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:40,791 INFO Out dated connection ,size=0 + +2025-09-24 15:07:40,791 INFO Connection check task end + +2025-09-24 15:07:41,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:43,791 INFO Connection check task start + +2025-09-24 15:07:43,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:43,791 INFO Out dated connection ,size=0 + +2025-09-24 15:07:43,791 INFO Connection check task end + +2025-09-24 15:07:44,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:46,791 INFO Connection check task start + +2025-09-24 15:07:46,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:46,791 INFO Out dated connection ,size=0 + +2025-09-24 15:07:46,791 INFO Connection check task end + +2025-09-24 15:07:47,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:49,792 INFO Connection check task start + +2025-09-24 15:07:49,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:49,792 INFO Out dated connection ,size=0 + +2025-09-24 15:07:49,792 INFO Connection check task end + +2025-09-24 15:07:50,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:52,793 INFO Connection check task start + +2025-09-24 15:07:52,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:52,793 INFO Out dated connection ,size=0 + +2025-09-24 15:07:52,793 INFO Connection check task end + +2025-09-24 15:07:53,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:55,793 INFO Connection check task start + +2025-09-24 15:07:55,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:55,793 INFO Out dated connection ,size=0 + +2025-09-24 15:07:55,793 INFO Connection check task end + +2025-09-24 15:07:56,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:07:58,794 INFO Connection check task start + +2025-09-24 15:07:58,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:07:58,794 INFO Out dated connection ,size=0 + +2025-09-24 15:07:58,794 INFO Connection check task end + +2025-09-24 15:07:59,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:01,795 INFO Connection check task start + +2025-09-24 15:08:01,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:01,795 INFO Out dated connection ,size=0 + +2025-09-24 15:08:01,795 INFO Connection check task end + +2025-09-24 15:08:02,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:04,796 INFO Connection check task start + +2025-09-24 15:08:04,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:04,796 INFO Out dated connection ,size=0 + +2025-09-24 15:08:04,796 INFO Connection check task end + +2025-09-24 15:08:05,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:07,797 INFO Connection check task start + +2025-09-24 15:08:07,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:07,797 INFO Out dated connection ,size=0 + +2025-09-24 15:08:07,797 INFO Connection check task end + +2025-09-24 15:08:08,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:10,797 INFO Connection check task start + +2025-09-24 15:08:10,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:10,797 INFO Out dated connection ,size=0 + +2025-09-24 15:08:10,797 INFO Connection check task end + +2025-09-24 15:08:11,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:13,797 INFO Connection check task start + +2025-09-24 15:08:13,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:13,797 INFO Out dated connection ,size=0 + +2025-09-24 15:08:13,797 INFO Connection check task end + +2025-09-24 15:08:14,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:16,798 INFO Connection check task start + +2025-09-24 15:08:16,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:16,798 INFO Out dated connection ,size=0 + +2025-09-24 15:08:16,798 INFO Connection check task end + +2025-09-24 15:08:17,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:19,798 INFO Connection check task start + +2025-09-24 15:08:19,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:19,798 INFO Out dated connection ,size=0 + +2025-09-24 15:08:19,798 INFO Connection check task end + +2025-09-24 15:08:20,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:22,799 INFO Connection check task start + +2025-09-24 15:08:22,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:22,799 INFO Out dated connection ,size=0 + +2025-09-24 15:08:22,799 INFO Connection check task end + +2025-09-24 15:08:23,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:25,801 INFO Connection check task start + +2025-09-24 15:08:25,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:25,801 INFO Out dated connection ,size=0 + +2025-09-24 15:08:25,801 INFO Connection check task end + +2025-09-24 15:08:26,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:28,802 INFO Connection check task start + +2025-09-24 15:08:28,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:28,802 INFO Out dated connection ,size=0 + +2025-09-24 15:08:28,802 INFO Connection check task end + +2025-09-24 15:08:29,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:31,803 INFO Connection check task start + +2025-09-24 15:08:31,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:31,803 INFO Out dated connection ,size=0 + +2025-09-24 15:08:31,803 INFO Connection check task end + +2025-09-24 15:08:32,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:34,803 INFO Connection check task start + +2025-09-24 15:08:34,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:34,803 INFO Out dated connection ,size=0 + +2025-09-24 15:08:34,803 INFO Connection check task end + +2025-09-24 15:08:35,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:37,803 INFO Connection check task start + +2025-09-24 15:08:37,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:37,804 INFO Out dated connection ,size=0 + +2025-09-24 15:08:37,804 INFO Connection check task end + +2025-09-24 15:08:38,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:40,804 INFO Connection check task start + +2025-09-24 15:08:40,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:40,804 INFO Out dated connection ,size=0 + +2025-09-24 15:08:40,804 INFO Connection check task end + +2025-09-24 15:08:41,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:43,805 INFO Connection check task start + +2025-09-24 15:08:43,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:43,805 INFO Out dated connection ,size=0 + +2025-09-24 15:08:43,805 INFO Connection check task end + +2025-09-24 15:08:44,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:46,806 INFO Connection check task start + +2025-09-24 15:08:46,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:46,807 INFO Out dated connection ,size=0 + +2025-09-24 15:08:46,807 INFO Connection check task end + +2025-09-24 15:08:47,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:49,807 INFO Connection check task start + +2025-09-24 15:08:49,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:49,807 INFO Out dated connection ,size=0 + +2025-09-24 15:08:49,807 INFO Connection check task end + +2025-09-24 15:08:50,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:52,809 INFO Connection check task start + +2025-09-24 15:08:52,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:52,809 INFO Out dated connection ,size=0 + +2025-09-24 15:08:52,809 INFO Connection check task end + +2025-09-24 15:08:53,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:55,811 INFO Connection check task start + +2025-09-24 15:08:55,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:55,811 INFO Out dated connection ,size=0 + +2025-09-24 15:08:55,811 INFO Connection check task end + +2025-09-24 15:08:56,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:08:58,812 INFO Connection check task start + +2025-09-24 15:08:58,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:08:58,812 INFO Out dated connection ,size=0 + +2025-09-24 15:08:58,812 INFO Connection check task end + +2025-09-24 15:08:59,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:01,812 INFO Connection check task start + +2025-09-24 15:09:01,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:01,813 INFO Out dated connection ,size=0 + +2025-09-24 15:09:01,813 INFO Connection check task end + +2025-09-24 15:09:02,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:04,815 INFO Connection check task start + +2025-09-24 15:09:04,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:04,815 INFO Out dated connection ,size=0 + +2025-09-24 15:09:04,815 INFO Connection check task end + +2025-09-24 15:09:05,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:07,815 INFO Connection check task start + +2025-09-24 15:09:07,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:07,816 INFO Out dated connection ,size=0 + +2025-09-24 15:09:07,816 INFO Connection check task end + +2025-09-24 15:09:08,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:10,816 INFO Connection check task start + +2025-09-24 15:09:10,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:10,816 INFO Out dated connection ,size=0 + +2025-09-24 15:09:10,816 INFO Connection check task end + +2025-09-24 15:09:11,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:13,818 INFO Connection check task start + +2025-09-24 15:09:13,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:13,818 INFO Out dated connection ,size=0 + +2025-09-24 15:09:13,818 INFO Connection check task end + +2025-09-24 15:09:14,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:16,819 INFO Connection check task start + +2025-09-24 15:09:16,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:16,819 INFO Out dated connection ,size=0 + +2025-09-24 15:09:16,819 INFO Connection check task end + +2025-09-24 15:09:17,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:19,819 INFO Connection check task start + +2025-09-24 15:09:19,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:19,820 INFO Out dated connection ,size=0 + +2025-09-24 15:09:19,820 INFO Connection check task end + +2025-09-24 15:09:20,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:22,820 INFO Connection check task start + +2025-09-24 15:09:22,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:22,820 INFO Out dated connection ,size=0 + +2025-09-24 15:09:22,820 INFO Connection check task end + +2025-09-24 15:09:23,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:25,822 INFO Connection check task start + +2025-09-24 15:09:25,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:25,822 INFO Out dated connection ,size=0 + +2025-09-24 15:09:25,822 INFO Connection check task end + +2025-09-24 15:09:26,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:28,823 INFO Connection check task start + +2025-09-24 15:09:28,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:28,823 INFO Out dated connection ,size=0 + +2025-09-24 15:09:28,823 INFO Connection check task end + +2025-09-24 15:09:29,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:31,825 INFO Connection check task start + +2025-09-24 15:09:31,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:31,825 INFO Out dated connection ,size=0 + +2025-09-24 15:09:31,825 INFO Connection check task end + +2025-09-24 15:09:32,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:34,826 INFO Connection check task start + +2025-09-24 15:09:34,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:34,826 INFO Out dated connection ,size=0 + +2025-09-24 15:09:34,826 INFO Connection check task end + +2025-09-24 15:09:35,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:37,827 INFO Connection check task start + +2025-09-24 15:09:37,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:37,828 INFO Out dated connection ,size=0 + +2025-09-24 15:09:37,828 INFO Connection check task end + +2025-09-24 15:09:38,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:40,830 INFO Connection check task start + +2025-09-24 15:09:40,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:40,830 INFO Out dated connection ,size=0 + +2025-09-24 15:09:40,830 INFO Connection check task end + +2025-09-24 15:09:41,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:43,830 INFO Connection check task start + +2025-09-24 15:09:43,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:43,830 INFO Out dated connection ,size=0 + +2025-09-24 15:09:43,830 INFO Connection check task end + +2025-09-24 15:09:44,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:46,831 INFO Connection check task start + +2025-09-24 15:09:46,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:46,831 INFO Out dated connection ,size=0 + +2025-09-24 15:09:46,831 INFO Connection check task end + +2025-09-24 15:09:47,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:49,833 INFO Connection check task start + +2025-09-24 15:09:49,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:49,833 INFO Out dated connection ,size=0 + +2025-09-24 15:09:49,833 INFO Connection check task end + +2025-09-24 15:09:50,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:52,833 INFO Connection check task start + +2025-09-24 15:09:52,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:52,834 INFO Out dated connection ,size=0 + +2025-09-24 15:09:52,834 INFO Connection check task end + +2025-09-24 15:09:53,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:55,835 INFO Connection check task start + +2025-09-24 15:09:55,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:55,835 INFO Out dated connection ,size=0 + +2025-09-24 15:09:55,835 INFO Connection check task end + +2025-09-24 15:09:56,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:09:58,835 INFO Connection check task start + +2025-09-24 15:09:58,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:09:58,835 INFO Out dated connection ,size=0 + +2025-09-24 15:09:58,835 INFO Connection check task end + +2025-09-24 15:09:59,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:01,837 INFO Connection check task start + +2025-09-24 15:10:01,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:01,837 INFO Out dated connection ,size=0 + +2025-09-24 15:10:01,838 INFO Connection check task end + +2025-09-24 15:10:02,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:04,838 INFO Connection check task start + +2025-09-24 15:10:04,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:04,838 INFO Out dated connection ,size=0 + +2025-09-24 15:10:04,838 INFO Connection check task end + +2025-09-24 15:10:05,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:07,838 INFO Connection check task start + +2025-09-24 15:10:07,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:07,838 INFO Out dated connection ,size=0 + +2025-09-24 15:10:07,838 INFO Connection check task end + +2025-09-24 15:10:08,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:10,840 INFO Connection check task start + +2025-09-24 15:10:10,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:10,841 INFO Out dated connection ,size=0 + +2025-09-24 15:10:10,841 INFO Connection check task end + +2025-09-24 15:10:11,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:13,841 INFO Connection check task start + +2025-09-24 15:10:13,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:13,841 INFO Out dated connection ,size=0 + +2025-09-24 15:10:13,841 INFO Connection check task end + +2025-09-24 15:10:14,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:16,842 INFO Connection check task start + +2025-09-24 15:10:16,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:16,843 INFO Out dated connection ,size=0 + +2025-09-24 15:10:16,843 INFO Connection check task end + +2025-09-24 15:10:17,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:19,843 INFO Connection check task start + +2025-09-24 15:10:19,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:19,843 INFO Out dated connection ,size=0 + +2025-09-24 15:10:19,843 INFO Connection check task end + +2025-09-24 15:10:20,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:22,845 INFO Connection check task start + +2025-09-24 15:10:22,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:22,845 INFO Out dated connection ,size=0 + +2025-09-24 15:10:22,845 INFO Connection check task end + +2025-09-24 15:10:23,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:25,847 INFO Connection check task start + +2025-09-24 15:10:25,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:25,847 INFO Out dated connection ,size=0 + +2025-09-24 15:10:25,847 INFO Connection check task end + +2025-09-24 15:10:26,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:28,848 INFO Connection check task start + +2025-09-24 15:10:28,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:28,848 INFO Out dated connection ,size=0 + +2025-09-24 15:10:28,848 INFO Connection check task end + +2025-09-24 15:10:29,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:31,849 INFO Connection check task start + +2025-09-24 15:10:31,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:31,849 INFO Out dated connection ,size=0 + +2025-09-24 15:10:31,849 INFO Connection check task end + +2025-09-24 15:10:32,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:34,850 INFO Connection check task start + +2025-09-24 15:10:34,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:34,850 INFO Out dated connection ,size=0 + +2025-09-24 15:10:34,850 INFO Connection check task end + +2025-09-24 15:10:35,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:37,852 INFO Connection check task start + +2025-09-24 15:10:37,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:37,853 INFO Out dated connection ,size=0 + +2025-09-24 15:10:37,853 INFO Connection check task end + +2025-09-24 15:10:38,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:40,853 INFO Connection check task start + +2025-09-24 15:10:40,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:40,854 INFO Out dated connection ,size=0 + +2025-09-24 15:10:40,854 INFO Connection check task end + +2025-09-24 15:10:41,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:43,855 INFO Connection check task start + +2025-09-24 15:10:43,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:43,855 INFO Out dated connection ,size=0 + +2025-09-24 15:10:43,855 INFO Connection check task end + +2025-09-24 15:10:44,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:46,856 INFO Connection check task start + +2025-09-24 15:10:46,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:46,856 INFO Out dated connection ,size=0 + +2025-09-24 15:10:46,856 INFO Connection check task end + +2025-09-24 15:10:47,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:49,858 INFO Connection check task start + +2025-09-24 15:10:49,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:49,858 INFO Out dated connection ,size=0 + +2025-09-24 15:10:49,858 INFO Connection check task end + +2025-09-24 15:10:50,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:52,858 INFO Connection check task start + +2025-09-24 15:10:52,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:52,858 INFO Out dated connection ,size=0 + +2025-09-24 15:10:52,858 INFO Connection check task end + +2025-09-24 15:10:53,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:55,859 INFO Connection check task start + +2025-09-24 15:10:55,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:55,859 INFO Out dated connection ,size=0 + +2025-09-24 15:10:55,859 INFO Connection check task end + +2025-09-24 15:10:56,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:10:58,860 INFO Connection check task start + +2025-09-24 15:10:58,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:10:58,860 INFO Out dated connection ,size=0 + +2025-09-24 15:10:58,860 INFO Connection check task end + +2025-09-24 15:10:59,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:01,861 INFO Connection check task start + +2025-09-24 15:11:01,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:01,861 INFO Out dated connection ,size=0 + +2025-09-24 15:11:01,861 INFO Connection check task end + +2025-09-24 15:11:02,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:04,862 INFO Connection check task start + +2025-09-24 15:11:04,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:04,862 INFO Out dated connection ,size=0 + +2025-09-24 15:11:04,862 INFO Connection check task end + +2025-09-24 15:11:05,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:07,864 INFO Connection check task start + +2025-09-24 15:11:07,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:07,865 INFO Out dated connection ,size=0 + +2025-09-24 15:11:07,865 INFO Connection check task end + +2025-09-24 15:11:08,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:10,867 INFO Connection check task start + +2025-09-24 15:11:10,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:10,867 INFO Out dated connection ,size=0 + +2025-09-24 15:11:10,867 INFO Connection check task end + +2025-09-24 15:11:11,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:13,868 INFO Connection check task start + +2025-09-24 15:11:13,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:13,869 INFO Out dated connection ,size=0 + +2025-09-24 15:11:13,869 INFO Connection check task end + +2025-09-24 15:11:14,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:16,871 INFO Connection check task start + +2025-09-24 15:11:16,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:16,871 INFO Out dated connection ,size=0 + +2025-09-24 15:11:16,871 INFO Connection check task end + +2025-09-24 15:11:17,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:19,872 INFO Connection check task start + +2025-09-24 15:11:19,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:19,873 INFO Out dated connection ,size=0 + +2025-09-24 15:11:19,873 INFO Connection check task end + +2025-09-24 15:11:20,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:22,874 INFO Connection check task start + +2025-09-24 15:11:22,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:22,875 INFO Out dated connection ,size=0 + +2025-09-24 15:11:22,875 INFO Connection check task end + +2025-09-24 15:11:23,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:25,876 INFO Connection check task start + +2025-09-24 15:11:25,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:25,876 INFO Out dated connection ,size=0 + +2025-09-24 15:11:25,877 INFO Connection check task end + +2025-09-24 15:11:26,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:28,877 INFO Connection check task start + +2025-09-24 15:11:28,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:28,877 INFO Out dated connection ,size=0 + +2025-09-24 15:11:28,877 INFO Connection check task end + +2025-09-24 15:11:29,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:31,879 INFO Connection check task start + +2025-09-24 15:11:31,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:31,880 INFO Out dated connection ,size=0 + +2025-09-24 15:11:31,880 INFO Connection check task end + +2025-09-24 15:11:32,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:34,880 INFO Connection check task start + +2025-09-24 15:11:34,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:34,880 INFO Out dated connection ,size=0 + +2025-09-24 15:11:34,880 INFO Connection check task end + +2025-09-24 15:11:35,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:37,880 INFO Connection check task start + +2025-09-24 15:11:37,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:37,881 INFO Out dated connection ,size=0 + +2025-09-24 15:11:37,881 INFO Connection check task end + +2025-09-24 15:11:38,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:40,883 INFO Connection check task start + +2025-09-24 15:11:40,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:40,883 INFO Out dated connection ,size=0 + +2025-09-24 15:11:40,883 INFO Connection check task end + +2025-09-24 15:11:41,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:43,883 INFO Connection check task start + +2025-09-24 15:11:43,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:43,883 INFO Out dated connection ,size=0 + +2025-09-24 15:11:43,883 INFO Connection check task end + +2025-09-24 15:11:44,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:46,885 INFO Connection check task start + +2025-09-24 15:11:46,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:46,885 INFO Out dated connection ,size=0 + +2025-09-24 15:11:46,885 INFO Connection check task end + +2025-09-24 15:11:47,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:49,887 INFO Connection check task start + +2025-09-24 15:11:49,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:49,887 INFO Out dated connection ,size=0 + +2025-09-24 15:11:49,887 INFO Connection check task end + +2025-09-24 15:11:50,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:52,887 INFO Connection check task start + +2025-09-24 15:11:52,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:52,888 INFO Out dated connection ,size=0 + +2025-09-24 15:11:52,888 INFO Connection check task end + +2025-09-24 15:11:53,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:55,890 INFO Connection check task start + +2025-09-24 15:11:55,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:55,890 INFO Out dated connection ,size=0 + +2025-09-24 15:11:55,890 INFO Connection check task end + +2025-09-24 15:11:56,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:11:58,890 INFO Connection check task start + +2025-09-24 15:11:58,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:11:58,890 INFO Out dated connection ,size=0 + +2025-09-24 15:11:58,890 INFO Connection check task end + +2025-09-24 15:11:59,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:01,891 INFO Connection check task start + +2025-09-24 15:12:01,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:01,891 INFO Out dated connection ,size=0 + +2025-09-24 15:12:01,891 INFO Connection check task end + +2025-09-24 15:12:02,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:04,891 INFO Connection check task start + +2025-09-24 15:12:04,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:04,891 INFO Out dated connection ,size=0 + +2025-09-24 15:12:04,891 INFO Connection check task end + +2025-09-24 15:12:05,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:07,892 INFO Connection check task start + +2025-09-24 15:12:07,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:07,892 INFO Out dated connection ,size=0 + +2025-09-24 15:12:07,892 INFO Connection check task end + +2025-09-24 15:12:08,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:10,892 INFO Connection check task start + +2025-09-24 15:12:10,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:10,893 INFO Out dated connection ,size=0 + +2025-09-24 15:12:10,893 INFO Connection check task end + +2025-09-24 15:12:11,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:13,894 INFO Connection check task start + +2025-09-24 15:12:13,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:13,895 INFO Out dated connection ,size=0 + +2025-09-24 15:12:13,895 INFO Connection check task end + +2025-09-24 15:12:14,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:16,895 INFO Connection check task start + +2025-09-24 15:12:16,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:16,895 INFO Out dated connection ,size=0 + +2025-09-24 15:12:16,895 INFO Connection check task end + +2025-09-24 15:12:17,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:19,897 INFO Connection check task start + +2025-09-24 15:12:19,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:19,897 INFO Out dated connection ,size=0 + +2025-09-24 15:12:19,897 INFO Connection check task end + +2025-09-24 15:12:20,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:22,898 INFO Connection check task start + +2025-09-24 15:12:22,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:22,898 INFO Out dated connection ,size=0 + +2025-09-24 15:12:22,899 INFO Connection check task end + +2025-09-24 15:12:23,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:25,900 INFO Connection check task start + +2025-09-24 15:12:25,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:25,900 INFO Out dated connection ,size=0 + +2025-09-24 15:12:25,900 INFO Connection check task end + +2025-09-24 15:12:26,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:28,902 INFO Connection check task start + +2025-09-24 15:12:28,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:28,902 INFO Out dated connection ,size=0 + +2025-09-24 15:12:28,902 INFO Connection check task end + +2025-09-24 15:12:29,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:31,902 INFO Connection check task start + +2025-09-24 15:12:31,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:31,902 INFO Out dated connection ,size=0 + +2025-09-24 15:12:31,903 INFO Connection check task end + +2025-09-24 15:12:32,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:34,904 INFO Connection check task start + +2025-09-24 15:12:34,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:34,904 INFO Out dated connection ,size=0 + +2025-09-24 15:12:34,904 INFO Connection check task end + +2025-09-24 15:12:35,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:37,904 INFO Connection check task start + +2025-09-24 15:12:37,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:37,904 INFO Out dated connection ,size=0 + +2025-09-24 15:12:37,904 INFO Connection check task end + +2025-09-24 15:12:38,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:40,905 INFO Connection check task start + +2025-09-24 15:12:40,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:40,905 INFO Out dated connection ,size=0 + +2025-09-24 15:12:40,905 INFO Connection check task end + +2025-09-24 15:12:41,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:43,905 INFO Connection check task start + +2025-09-24 15:12:43,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:43,906 INFO Out dated connection ,size=0 + +2025-09-24 15:12:43,906 INFO Connection check task end + +2025-09-24 15:12:44,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:46,907 INFO Connection check task start + +2025-09-24 15:12:46,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:46,908 INFO Out dated connection ,size=0 + +2025-09-24 15:12:46,908 INFO Connection check task end + +2025-09-24 15:12:47,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:49,908 INFO Connection check task start + +2025-09-24 15:12:49,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:49,909 INFO Out dated connection ,size=0 + +2025-09-24 15:12:49,909 INFO Connection check task end + +2025-09-24 15:12:50,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:52,911 INFO Connection check task start + +2025-09-24 15:12:52,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:52,911 INFO Out dated connection ,size=0 + +2025-09-24 15:12:52,911 INFO Connection check task end + +2025-09-24 15:12:53,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:55,913 INFO Connection check task start + +2025-09-24 15:12:55,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:55,913 INFO Out dated connection ,size=0 + +2025-09-24 15:12:55,913 INFO Connection check task end + +2025-09-24 15:12:56,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:12:58,913 INFO Connection check task start + +2025-09-24 15:12:58,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:12:58,913 INFO Out dated connection ,size=0 + +2025-09-24 15:12:58,914 INFO Connection check task end + +2025-09-24 15:12:59,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:01,914 INFO Connection check task start + +2025-09-24 15:13:01,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:01,914 INFO Out dated connection ,size=0 + +2025-09-24 15:13:01,914 INFO Connection check task end + +2025-09-24 15:13:02,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:04,915 INFO Connection check task start + +2025-09-24 15:13:04,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:04,915 INFO Out dated connection ,size=0 + +2025-09-24 15:13:04,915 INFO Connection check task end + +2025-09-24 15:13:05,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:07,916 INFO Connection check task start + +2025-09-24 15:13:07,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:07,916 INFO Out dated connection ,size=0 + +2025-09-24 15:13:07,916 INFO Connection check task end + +2025-09-24 15:13:08,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:10,918 INFO Connection check task start + +2025-09-24 15:13:10,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:10,919 INFO Out dated connection ,size=0 + +2025-09-24 15:13:10,919 INFO Connection check task end + +2025-09-24 15:13:11,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:13,919 INFO Connection check task start + +2025-09-24 15:13:13,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:13,920 INFO Out dated connection ,size=0 + +2025-09-24 15:13:13,920 INFO Connection check task end + +2025-09-24 15:13:14,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:16,920 INFO Connection check task start + +2025-09-24 15:13:16,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:16,920 INFO Out dated connection ,size=0 + +2025-09-24 15:13:16,920 INFO Connection check task end + +2025-09-24 15:13:17,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:19,921 INFO Connection check task start + +2025-09-24 15:13:19,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:19,921 INFO Out dated connection ,size=0 + +2025-09-24 15:13:19,921 INFO Connection check task end + +2025-09-24 15:13:20,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:22,923 INFO Connection check task start + +2025-09-24 15:13:22,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:22,923 INFO Out dated connection ,size=0 + +2025-09-24 15:13:22,923 INFO Connection check task end + +2025-09-24 15:13:23,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:25,923 INFO Connection check task start + +2025-09-24 15:13:25,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:25,923 INFO Out dated connection ,size=0 + +2025-09-24 15:13:25,924 INFO Connection check task end + +2025-09-24 15:13:26,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:28,926 INFO Connection check task start + +2025-09-24 15:13:28,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:28,926 INFO Out dated connection ,size=0 + +2025-09-24 15:13:28,926 INFO Connection check task end + +2025-09-24 15:13:29,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:31,928 INFO Connection check task start + +2025-09-24 15:13:31,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:31,928 INFO Out dated connection ,size=0 + +2025-09-24 15:13:31,928 INFO Connection check task end + +2025-09-24 15:13:32,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:34,930 INFO Connection check task start + +2025-09-24 15:13:34,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:34,930 INFO Out dated connection ,size=0 + +2025-09-24 15:13:34,930 INFO Connection check task end + +2025-09-24 15:13:35,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:37,931 INFO Connection check task start + +2025-09-24 15:13:37,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:37,931 INFO Out dated connection ,size=0 + +2025-09-24 15:13:37,931 INFO Connection check task end + +2025-09-24 15:13:38,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:40,932 INFO Connection check task start + +2025-09-24 15:13:40,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:40,933 INFO Out dated connection ,size=0 + +2025-09-24 15:13:40,933 INFO Connection check task end + +2025-09-24 15:13:41,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:43,934 INFO Connection check task start + +2025-09-24 15:13:43,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:43,934 INFO Out dated connection ,size=0 + +2025-09-24 15:13:43,934 INFO Connection check task end + +2025-09-24 15:13:44,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:46,934 INFO Connection check task start + +2025-09-24 15:13:46,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:46,934 INFO Out dated connection ,size=0 + +2025-09-24 15:13:46,934 INFO Connection check task end + +2025-09-24 15:13:47,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:49,935 INFO Connection check task start + +2025-09-24 15:13:49,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:49,935 INFO Out dated connection ,size=0 + +2025-09-24 15:13:49,935 INFO Connection check task end + +2025-09-24 15:13:50,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:52,937 INFO Connection check task start + +2025-09-24 15:13:52,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:52,937 INFO Out dated connection ,size=0 + +2025-09-24 15:13:52,938 INFO Connection check task end + +2025-09-24 15:13:53,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:55,938 INFO Connection check task start + +2025-09-24 15:13:55,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:55,938 INFO Out dated connection ,size=0 + +2025-09-24 15:13:55,938 INFO Connection check task end + +2025-09-24 15:13:56,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:13:58,939 INFO Connection check task start + +2025-09-24 15:13:58,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:13:58,939 INFO Out dated connection ,size=0 + +2025-09-24 15:13:58,939 INFO Connection check task end + +2025-09-24 15:13:59,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:01,940 INFO Connection check task start + +2025-09-24 15:14:01,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:01,940 INFO Out dated connection ,size=0 + +2025-09-24 15:14:01,940 INFO Connection check task end + +2025-09-24 15:14:02,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:04,942 INFO Connection check task start + +2025-09-24 15:14:04,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:04,942 INFO Out dated connection ,size=0 + +2025-09-24 15:14:04,942 INFO Connection check task end + +2025-09-24 15:14:05,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:07,942 INFO Connection check task start + +2025-09-24 15:14:07,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:07,943 INFO Out dated connection ,size=0 + +2025-09-24 15:14:07,943 INFO Connection check task end + +2025-09-24 15:14:08,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:10,943 INFO Connection check task start + +2025-09-24 15:14:10,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:10,944 INFO Out dated connection ,size=0 + +2025-09-24 15:14:10,944 INFO Connection check task end + +2025-09-24 15:14:11,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:13,946 INFO Connection check task start + +2025-09-24 15:14:13,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:13,946 INFO Out dated connection ,size=0 + +2025-09-24 15:14:13,946 INFO Connection check task end + +2025-09-24 15:14:14,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:16,948 INFO Connection check task start + +2025-09-24 15:14:16,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:16,949 INFO Out dated connection ,size=0 + +2025-09-24 15:14:16,949 INFO Connection check task end + +2025-09-24 15:14:17,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:19,949 INFO Connection check task start + +2025-09-24 15:14:19,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:19,950 INFO Out dated connection ,size=0 + +2025-09-24 15:14:19,950 INFO Connection check task end + +2025-09-24 15:14:20,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:22,950 INFO Connection check task start + +2025-09-24 15:14:22,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:22,950 INFO Out dated connection ,size=0 + +2025-09-24 15:14:22,951 INFO Connection check task end + +2025-09-24 15:14:23,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:25,951 INFO Connection check task start + +2025-09-24 15:14:25,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:25,951 INFO Out dated connection ,size=0 + +2025-09-24 15:14:25,952 INFO Connection check task end + +2025-09-24 15:14:26,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:28,953 INFO Connection check task start + +2025-09-24 15:14:28,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:28,953 INFO Out dated connection ,size=0 + +2025-09-24 15:14:28,953 INFO Connection check task end + +2025-09-24 15:14:29,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:31,953 INFO Connection check task start + +2025-09-24 15:14:31,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:31,953 INFO Out dated connection ,size=0 + +2025-09-24 15:14:31,953 INFO Connection check task end + +2025-09-24 15:14:32,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:34,954 INFO Connection check task start + +2025-09-24 15:14:34,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:34,954 INFO Out dated connection ,size=0 + +2025-09-24 15:14:34,954 INFO Connection check task end + +2025-09-24 15:14:35,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:37,956 INFO Connection check task start + +2025-09-24 15:14:37,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:37,956 INFO Out dated connection ,size=0 + +2025-09-24 15:14:37,956 INFO Connection check task end + +2025-09-24 15:14:38,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:40,958 INFO Connection check task start + +2025-09-24 15:14:40,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:40,958 INFO Out dated connection ,size=0 + +2025-09-24 15:14:40,958 INFO Connection check task end + +2025-09-24 15:14:41,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:43,959 INFO Connection check task start + +2025-09-24 15:14:43,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:43,959 INFO Out dated connection ,size=0 + +2025-09-24 15:14:43,960 INFO Connection check task end + +2025-09-24 15:14:44,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:46,961 INFO Connection check task start + +2025-09-24 15:14:46,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:46,961 INFO Out dated connection ,size=0 + +2025-09-24 15:14:46,961 INFO Connection check task end + +2025-09-24 15:14:47,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:49,963 INFO Connection check task start + +2025-09-24 15:14:49,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:49,963 INFO Out dated connection ,size=0 + +2025-09-24 15:14:49,963 INFO Connection check task end + +2025-09-24 15:14:50,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:52,964 INFO Connection check task start + +2025-09-24 15:14:52,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:52,964 INFO Out dated connection ,size=0 + +2025-09-24 15:14:52,964 INFO Connection check task end + +2025-09-24 15:14:53,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:55,965 INFO Connection check task start + +2025-09-24 15:14:55,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:55,965 INFO Out dated connection ,size=0 + +2025-09-24 15:14:55,965 INFO Connection check task end + +2025-09-24 15:14:56,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:14:58,966 INFO Connection check task start + +2025-09-24 15:14:58,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:14:58,966 INFO Out dated connection ,size=0 + +2025-09-24 15:14:58,966 INFO Connection check task end + +2025-09-24 15:14:59,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:01,968 INFO Connection check task start + +2025-09-24 15:15:01,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:01,968 INFO Out dated connection ,size=0 + +2025-09-24 15:15:01,968 INFO Connection check task end + +2025-09-24 15:15:02,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:04,970 INFO Connection check task start + +2025-09-24 15:15:04,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:04,970 INFO Out dated connection ,size=0 + +2025-09-24 15:15:04,970 INFO Connection check task end + +2025-09-24 15:15:05,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:07,972 INFO Connection check task start + +2025-09-24 15:15:07,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:07,972 INFO Out dated connection ,size=0 + +2025-09-24 15:15:07,972 INFO Connection check task end + +2025-09-24 15:15:08,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:10,973 INFO Connection check task start + +2025-09-24 15:15:10,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:10,973 INFO Out dated connection ,size=0 + +2025-09-24 15:15:10,973 INFO Connection check task end + +2025-09-24 15:15:11,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:13,973 INFO Connection check task start + +2025-09-24 15:15:13,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:13,973 INFO Out dated connection ,size=0 + +2025-09-24 15:15:13,973 INFO Connection check task end + +2025-09-24 15:15:14,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:16,974 INFO Connection check task start + +2025-09-24 15:15:16,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:16,974 INFO Out dated connection ,size=0 + +2025-09-24 15:15:16,974 INFO Connection check task end + +2025-09-24 15:15:17,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:19,976 INFO Connection check task start + +2025-09-24 15:15:19,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:19,976 INFO Out dated connection ,size=0 + +2025-09-24 15:15:19,976 INFO Connection check task end + +2025-09-24 15:15:20,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:22,977 INFO Connection check task start + +2025-09-24 15:15:22,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:22,977 INFO Out dated connection ,size=0 + +2025-09-24 15:15:22,978 INFO Connection check task end + +2025-09-24 15:15:23,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:25,978 INFO Connection check task start + +2025-09-24 15:15:25,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:25,978 INFO Out dated connection ,size=0 + +2025-09-24 15:15:25,978 INFO Connection check task end + +2025-09-24 15:15:26,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:28,981 INFO Connection check task start + +2025-09-24 15:15:28,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:28,981 INFO Out dated connection ,size=0 + +2025-09-24 15:15:28,981 INFO Connection check task end + +2025-09-24 15:15:29,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:31,983 INFO Connection check task start + +2025-09-24 15:15:31,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:31,983 INFO Out dated connection ,size=0 + +2025-09-24 15:15:31,983 INFO Connection check task end + +2025-09-24 15:15:32,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:34,984 INFO Connection check task start + +2025-09-24 15:15:34,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:34,984 INFO Out dated connection ,size=0 + +2025-09-24 15:15:34,984 INFO Connection check task end + +2025-09-24 15:15:35,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:37,985 INFO Connection check task start + +2025-09-24 15:15:37,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:37,985 INFO Out dated connection ,size=0 + +2025-09-24 15:15:37,985 INFO Connection check task end + +2025-09-24 15:15:38,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:40,985 INFO Connection check task start + +2025-09-24 15:15:40,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:40,985 INFO Out dated connection ,size=0 + +2025-09-24 15:15:40,985 INFO Connection check task end + +2025-09-24 15:15:41,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:43,986 INFO Connection check task start + +2025-09-24 15:15:43,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:43,986 INFO Out dated connection ,size=0 + +2025-09-24 15:15:43,986 INFO Connection check task end + +2025-09-24 15:15:44,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:46,988 INFO Connection check task start + +2025-09-24 15:15:46,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:46,988 INFO Out dated connection ,size=0 + +2025-09-24 15:15:46,988 INFO Connection check task end + +2025-09-24 15:15:47,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:49,990 INFO Connection check task start + +2025-09-24 15:15:49,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:49,990 INFO Out dated connection ,size=0 + +2025-09-24 15:15:49,990 INFO Connection check task end + +2025-09-24 15:15:50,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:52,991 INFO Connection check task start + +2025-09-24 15:15:52,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:52,991 INFO Out dated connection ,size=0 + +2025-09-24 15:15:52,991 INFO Connection check task end + +2025-09-24 15:15:53,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:55,993 INFO Connection check task start + +2025-09-24 15:15:55,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:55,993 INFO Out dated connection ,size=0 + +2025-09-24 15:15:55,993 INFO Connection check task end + +2025-09-24 15:15:56,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:15:58,995 INFO Connection check task start + +2025-09-24 15:15:58,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:15:58,995 INFO Out dated connection ,size=0 + +2025-09-24 15:15:58,996 INFO Connection check task end + +2025-09-24 15:15:59,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:01,998 INFO Connection check task start + +2025-09-24 15:16:01,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:01,998 INFO Out dated connection ,size=0 + +2025-09-24 15:16:01,998 INFO Connection check task end + +2025-09-24 15:16:02,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:04,998 INFO Connection check task start + +2025-09-24 15:16:04,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:04,998 INFO Out dated connection ,size=0 + +2025-09-24 15:16:04,998 INFO Connection check task end + +2025-09-24 15:16:05,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:08,000 INFO Connection check task start + +2025-09-24 15:16:08,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:08,000 INFO Out dated connection ,size=0 + +2025-09-24 15:16:08,000 INFO Connection check task end + +2025-09-24 15:16:08,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:11,002 INFO Connection check task start + +2025-09-24 15:16:11,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:11,003 INFO Out dated connection ,size=0 + +2025-09-24 15:16:11,003 INFO Connection check task end + +2025-09-24 15:16:11,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:14,004 INFO Connection check task start + +2025-09-24 15:16:14,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:14,004 INFO Out dated connection ,size=0 + +2025-09-24 15:16:14,004 INFO Connection check task end + +2025-09-24 15:16:14,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:17,005 INFO Connection check task start + +2025-09-24 15:16:17,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:17,005 INFO Out dated connection ,size=0 + +2025-09-24 15:16:17,005 INFO Connection check task end + +2025-09-24 15:16:17,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:20,006 INFO Connection check task start + +2025-09-24 15:16:20,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:20,006 INFO Out dated connection ,size=0 + +2025-09-24 15:16:20,006 INFO Connection check task end + +2025-09-24 15:16:20,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:23,006 INFO Connection check task start + +2025-09-24 15:16:23,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:23,007 INFO Out dated connection ,size=0 + +2025-09-24 15:16:23,007 INFO Connection check task end + +2025-09-24 15:16:23,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:26,007 INFO Connection check task start + +2025-09-24 15:16:26,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:26,007 INFO Out dated connection ,size=0 + +2025-09-24 15:16:26,007 INFO Connection check task end + +2025-09-24 15:16:26,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:29,008 INFO Connection check task start + +2025-09-24 15:16:29,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:29,008 INFO Out dated connection ,size=0 + +2025-09-24 15:16:29,008 INFO Connection check task end + +2025-09-24 15:16:29,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:32,010 INFO Connection check task start + +2025-09-24 15:16:32,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:32,010 INFO Out dated connection ,size=0 + +2025-09-24 15:16:32,010 INFO Connection check task end + +2025-09-24 15:16:32,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:35,011 INFO Connection check task start + +2025-09-24 15:16:35,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:35,011 INFO Out dated connection ,size=0 + +2025-09-24 15:16:35,011 INFO Connection check task end + +2025-09-24 15:16:35,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:38,011 INFO Connection check task start + +2025-09-24 15:16:38,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:38,011 INFO Out dated connection ,size=0 + +2025-09-24 15:16:38,011 INFO Connection check task end + +2025-09-24 15:16:38,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:41,013 INFO Connection check task start + +2025-09-24 15:16:41,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:41,013 INFO Out dated connection ,size=0 + +2025-09-24 15:16:41,013 INFO Connection check task end + +2025-09-24 15:16:41,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:44,014 INFO Connection check task start + +2025-09-24 15:16:44,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:44,015 INFO Out dated connection ,size=0 + +2025-09-24 15:16:44,015 INFO Connection check task end + +2025-09-24 15:16:44,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:47,015 INFO Connection check task start + +2025-09-24 15:16:47,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:47,015 INFO Out dated connection ,size=0 + +2025-09-24 15:16:47,015 INFO Connection check task end + +2025-09-24 15:16:47,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:50,016 INFO Connection check task start + +2025-09-24 15:16:50,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:50,017 INFO Out dated connection ,size=0 + +2025-09-24 15:16:50,017 INFO Connection check task end + +2025-09-24 15:16:50,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:53,017 INFO Connection check task start + +2025-09-24 15:16:53,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:53,017 INFO Out dated connection ,size=0 + +2025-09-24 15:16:53,017 INFO Connection check task end + +2025-09-24 15:16:53,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:56,019 INFO Connection check task start + +2025-09-24 15:16:56,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:56,020 INFO Out dated connection ,size=0 + +2025-09-24 15:16:56,020 INFO Connection check task end + +2025-09-24 15:16:56,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:16:59,021 INFO Connection check task start + +2025-09-24 15:16:59,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:16:59,021 INFO Out dated connection ,size=0 + +2025-09-24 15:16:59,021 INFO Connection check task end + +2025-09-24 15:16:59,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:02,021 INFO Connection check task start + +2025-09-24 15:17:02,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:02,022 INFO Out dated connection ,size=0 + +2025-09-24 15:17:02,022 INFO Connection check task end + +2025-09-24 15:17:02,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:05,022 INFO Connection check task start + +2025-09-24 15:17:05,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:05,022 INFO Out dated connection ,size=0 + +2025-09-24 15:17:05,022 INFO Connection check task end + +2025-09-24 15:17:05,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:08,024 INFO Connection check task start + +2025-09-24 15:17:08,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:08,025 INFO Out dated connection ,size=0 + +2025-09-24 15:17:08,025 INFO Connection check task end + +2025-09-24 15:17:08,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:11,027 INFO Connection check task start + +2025-09-24 15:17:11,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:11,027 INFO Out dated connection ,size=0 + +2025-09-24 15:17:11,027 INFO Connection check task end + +2025-09-24 15:17:11,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:14,028 INFO Connection check task start + +2025-09-24 15:17:14,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:14,029 INFO Out dated connection ,size=0 + +2025-09-24 15:17:14,029 INFO Connection check task end + +2025-09-24 15:17:14,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:17,029 INFO Connection check task start + +2025-09-24 15:17:17,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:17,029 INFO Out dated connection ,size=0 + +2025-09-24 15:17:17,029 INFO Connection check task end + +2025-09-24 15:17:17,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:20,031 INFO Connection check task start + +2025-09-24 15:17:20,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:20,031 INFO Out dated connection ,size=0 + +2025-09-24 15:17:20,032 INFO Connection check task end + +2025-09-24 15:17:20,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:23,033 INFO Connection check task start + +2025-09-24 15:17:23,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:23,033 INFO Out dated connection ,size=0 + +2025-09-24 15:17:23,034 INFO Connection check task end + +2025-09-24 15:17:23,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:26,034 INFO Connection check task start + +2025-09-24 15:17:26,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:26,034 INFO Out dated connection ,size=0 + +2025-09-24 15:17:26,034 INFO Connection check task end + +2025-09-24 15:17:26,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:29,035 INFO Connection check task start + +2025-09-24 15:17:29,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:29,035 INFO Out dated connection ,size=0 + +2025-09-24 15:17:29,035 INFO Connection check task end + +2025-09-24 15:17:29,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:32,037 INFO Connection check task start + +2025-09-24 15:17:32,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:32,037 INFO Out dated connection ,size=0 + +2025-09-24 15:17:32,037 INFO Connection check task end + +2025-09-24 15:17:32,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:35,038 INFO Connection check task start + +2025-09-24 15:17:35,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:35,038 INFO Out dated connection ,size=0 + +2025-09-24 15:17:35,038 INFO Connection check task end + +2025-09-24 15:17:35,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:38,038 INFO Connection check task start + +2025-09-24 15:17:38,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:38,038 INFO Out dated connection ,size=0 + +2025-09-24 15:17:38,038 INFO Connection check task end + +2025-09-24 15:17:38,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:41,038 INFO Connection check task start + +2025-09-24 15:17:41,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:41,039 INFO Out dated connection ,size=0 + +2025-09-24 15:17:41,039 INFO Connection check task end + +2025-09-24 15:17:41,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:44,039 INFO Connection check task start + +2025-09-24 15:17:44,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:44,039 INFO Out dated connection ,size=0 + +2025-09-24 15:17:44,039 INFO Connection check task end + +2025-09-24 15:17:44,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:47,041 INFO Connection check task start + +2025-09-24 15:17:47,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:47,041 INFO Out dated connection ,size=0 + +2025-09-24 15:17:47,041 INFO Connection check task end + +2025-09-24 15:17:47,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:50,041 INFO Connection check task start + +2025-09-24 15:17:50,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:50,041 INFO Out dated connection ,size=0 + +2025-09-24 15:17:50,041 INFO Connection check task end + +2025-09-24 15:17:50,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:53,043 INFO Connection check task start + +2025-09-24 15:17:53,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:53,043 INFO Out dated connection ,size=0 + +2025-09-24 15:17:53,043 INFO Connection check task end + +2025-09-24 15:17:53,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:56,043 INFO Connection check task start + +2025-09-24 15:17:56,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:56,044 INFO Out dated connection ,size=0 + +2025-09-24 15:17:56,044 INFO Connection check task end + +2025-09-24 15:17:56,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:17:59,044 INFO Connection check task start + +2025-09-24 15:17:59,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:17:59,044 INFO Out dated connection ,size=0 + +2025-09-24 15:17:59,045 INFO Connection check task end + +2025-09-24 15:17:59,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:02,045 INFO Connection check task start + +2025-09-24 15:18:02,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:02,046 INFO Out dated connection ,size=0 + +2025-09-24 15:18:02,046 INFO Connection check task end + +2025-09-24 15:18:02,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:05,046 INFO Connection check task start + +2025-09-24 15:18:05,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:05,047 INFO Out dated connection ,size=0 + +2025-09-24 15:18:05,047 INFO Connection check task end + +2025-09-24 15:18:05,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:08,047 INFO Connection check task start + +2025-09-24 15:18:08,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:08,047 INFO Out dated connection ,size=0 + +2025-09-24 15:18:08,047 INFO Connection check task end + +2025-09-24 15:18:08,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:11,048 INFO Connection check task start + +2025-09-24 15:18:11,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:11,048 INFO Out dated connection ,size=0 + +2025-09-24 15:18:11,048 INFO Connection check task end + +2025-09-24 15:18:11,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:14,049 INFO Connection check task start + +2025-09-24 15:18:14,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:14,049 INFO Out dated connection ,size=0 + +2025-09-24 15:18:14,049 INFO Connection check task end + +2025-09-24 15:18:14,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:17,049 INFO Connection check task start + +2025-09-24 15:18:17,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:17,050 INFO Out dated connection ,size=0 + +2025-09-24 15:18:17,050 INFO Connection check task end + +2025-09-24 15:18:17,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:20,052 INFO Connection check task start + +2025-09-24 15:18:20,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:20,052 INFO Out dated connection ,size=0 + +2025-09-24 15:18:20,052 INFO Connection check task end + +2025-09-24 15:18:20,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:23,054 INFO Connection check task start + +2025-09-24 15:18:23,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:23,055 INFO Out dated connection ,size=0 + +2025-09-24 15:18:23,055 INFO Connection check task end + +2025-09-24 15:18:23,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:26,055 INFO Connection check task start + +2025-09-24 15:18:26,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:26,056 INFO Out dated connection ,size=0 + +2025-09-24 15:18:26,056 INFO Connection check task end + +2025-09-24 15:18:26,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:29,056 INFO Connection check task start + +2025-09-24 15:18:29,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:29,056 INFO Out dated connection ,size=0 + +2025-09-24 15:18:29,056 INFO Connection check task end + +2025-09-24 15:18:29,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:32,058 INFO Connection check task start + +2025-09-24 15:18:32,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:32,059 INFO Out dated connection ,size=0 + +2025-09-24 15:18:32,059 INFO Connection check task end + +2025-09-24 15:18:32,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:35,059 INFO Connection check task start + +2025-09-24 15:18:35,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:35,059 INFO Out dated connection ,size=0 + +2025-09-24 15:18:35,059 INFO Connection check task end + +2025-09-24 15:18:35,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:38,059 INFO Connection check task start + +2025-09-24 15:18:38,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:38,059 INFO Out dated connection ,size=0 + +2025-09-24 15:18:38,059 INFO Connection check task end + +2025-09-24 15:18:38,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:41,060 INFO Connection check task start + +2025-09-24 15:18:41,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:41,060 INFO Out dated connection ,size=0 + +2025-09-24 15:18:41,060 INFO Connection check task end + +2025-09-24 15:18:41,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:44,061 INFO Connection check task start + +2025-09-24 15:18:44,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:44,061 INFO Out dated connection ,size=0 + +2025-09-24 15:18:44,061 INFO Connection check task end + +2025-09-24 15:18:44,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:47,063 INFO Connection check task start + +2025-09-24 15:18:47,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:47,063 INFO Out dated connection ,size=0 + +2025-09-24 15:18:47,063 INFO Connection check task end + +2025-09-24 15:18:47,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:50,064 INFO Connection check task start + +2025-09-24 15:18:50,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:50,064 INFO Out dated connection ,size=0 + +2025-09-24 15:18:50,064 INFO Connection check task end + +2025-09-24 15:18:50,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:53,066 INFO Connection check task start + +2025-09-24 15:18:53,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:53,066 INFO Out dated connection ,size=0 + +2025-09-24 15:18:53,066 INFO Connection check task end + +2025-09-24 15:18:53,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:56,066 INFO Connection check task start + +2025-09-24 15:18:56,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:56,066 INFO Out dated connection ,size=0 + +2025-09-24 15:18:56,067 INFO Connection check task end + +2025-09-24 15:18:56,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:18:59,067 INFO Connection check task start + +2025-09-24 15:18:59,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:18:59,068 INFO Out dated connection ,size=0 + +2025-09-24 15:18:59,068 INFO Connection check task end + +2025-09-24 15:18:59,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:02,069 INFO Connection check task start + +2025-09-24 15:19:02,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:02,070 INFO Out dated connection ,size=0 + +2025-09-24 15:19:02,070 INFO Connection check task end + +2025-09-24 15:19:02,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:05,071 INFO Connection check task start + +2025-09-24 15:19:05,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:05,071 INFO Out dated connection ,size=0 + +2025-09-24 15:19:05,071 INFO Connection check task end + +2025-09-24 15:19:05,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:08,071 INFO Connection check task start + +2025-09-24 15:19:08,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:08,071 INFO Out dated connection ,size=0 + +2025-09-24 15:19:08,072 INFO Connection check task end + +2025-09-24 15:19:08,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:11,072 INFO Connection check task start + +2025-09-24 15:19:11,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:11,072 INFO Out dated connection ,size=0 + +2025-09-24 15:19:11,072 INFO Connection check task end + +2025-09-24 15:19:11,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:14,072 INFO Connection check task start + +2025-09-24 15:19:14,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:14,072 INFO Out dated connection ,size=0 + +2025-09-24 15:19:14,072 INFO Connection check task end + +2025-09-24 15:19:14,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:17,074 INFO Connection check task start + +2025-09-24 15:19:17,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:17,075 INFO Out dated connection ,size=0 + +2025-09-24 15:19:17,075 INFO Connection check task end + +2025-09-24 15:19:17,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:20,075 INFO Connection check task start + +2025-09-24 15:19:20,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:20,075 INFO Out dated connection ,size=0 + +2025-09-24 15:19:20,075 INFO Connection check task end + +2025-09-24 15:19:20,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:23,075 INFO Connection check task start + +2025-09-24 15:19:23,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:23,076 INFO Out dated connection ,size=0 + +2025-09-24 15:19:23,076 INFO Connection check task end + +2025-09-24 15:19:23,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:26,078 INFO Connection check task start + +2025-09-24 15:19:26,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:26,078 INFO Out dated connection ,size=0 + +2025-09-24 15:19:26,078 INFO Connection check task end + +2025-09-24 15:19:26,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:29,078 INFO Connection check task start + +2025-09-24 15:19:29,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:29,078 INFO Out dated connection ,size=0 + +2025-09-24 15:19:29,078 INFO Connection check task end + +2025-09-24 15:19:29,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:32,079 INFO Connection check task start + +2025-09-24 15:19:32,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:32,080 INFO Out dated connection ,size=0 + +2025-09-24 15:19:32,080 INFO Connection check task end + +2025-09-24 15:19:32,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:35,080 INFO Connection check task start + +2025-09-24 15:19:35,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:35,080 INFO Out dated connection ,size=0 + +2025-09-24 15:19:35,080 INFO Connection check task end + +2025-09-24 15:19:35,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:38,080 INFO Connection check task start + +2025-09-24 15:19:38,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:38,081 INFO Out dated connection ,size=0 + +2025-09-24 15:19:38,081 INFO Connection check task end + +2025-09-24 15:19:38,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:41,082 INFO Connection check task start + +2025-09-24 15:19:41,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:41,082 INFO Out dated connection ,size=0 + +2025-09-24 15:19:41,082 INFO Connection check task end + +2025-09-24 15:19:41,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:44,084 INFO Connection check task start + +2025-09-24 15:19:44,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:44,084 INFO Out dated connection ,size=0 + +2025-09-24 15:19:44,084 INFO Connection check task end + +2025-09-24 15:19:44,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:47,086 INFO Connection check task start + +2025-09-24 15:19:47,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:47,086 INFO Out dated connection ,size=0 + +2025-09-24 15:19:47,086 INFO Connection check task end + +2025-09-24 15:19:47,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:50,087 INFO Connection check task start + +2025-09-24 15:19:50,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:50,087 INFO Out dated connection ,size=0 + +2025-09-24 15:19:50,087 INFO Connection check task end + +2025-09-24 15:19:50,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:53,089 INFO Connection check task start + +2025-09-24 15:19:53,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:53,089 INFO Out dated connection ,size=0 + +2025-09-24 15:19:53,089 INFO Connection check task end + +2025-09-24 15:19:53,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:56,090 INFO Connection check task start + +2025-09-24 15:19:56,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:56,090 INFO Out dated connection ,size=0 + +2025-09-24 15:19:56,090 INFO Connection check task end + +2025-09-24 15:19:56,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:19:59,091 INFO Connection check task start + +2025-09-24 15:19:59,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:19:59,091 INFO Out dated connection ,size=0 + +2025-09-24 15:19:59,091 INFO Connection check task end + +2025-09-24 15:19:59,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:02,093 INFO Connection check task start + +2025-09-24 15:20:02,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:02,094 INFO Out dated connection ,size=0 + +2025-09-24 15:20:02,094 INFO Connection check task end + +2025-09-24 15:20:02,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:05,096 INFO Connection check task start + +2025-09-24 15:20:05,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:05,096 INFO Out dated connection ,size=0 + +2025-09-24 15:20:05,096 INFO Connection check task end + +2025-09-24 15:20:05,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:08,098 INFO Connection check task start + +2025-09-24 15:20:08,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:08,098 INFO Out dated connection ,size=0 + +2025-09-24 15:20:08,098 INFO Connection check task end + +2025-09-24 15:20:08,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:11,099 INFO Connection check task start + +2025-09-24 15:20:11,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:11,099 INFO Out dated connection ,size=0 + +2025-09-24 15:20:11,099 INFO Connection check task end + +2025-09-24 15:20:11,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:14,099 INFO Connection check task start + +2025-09-24 15:20:14,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:14,099 INFO Out dated connection ,size=0 + +2025-09-24 15:20:14,099 INFO Connection check task end + +2025-09-24 15:20:14,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:17,100 INFO Connection check task start + +2025-09-24 15:20:17,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:17,100 INFO Out dated connection ,size=0 + +2025-09-24 15:20:17,100 INFO Connection check task end + +2025-09-24 15:20:17,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:20,101 INFO Connection check task start + +2025-09-24 15:20:20,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:20,101 INFO Out dated connection ,size=0 + +2025-09-24 15:20:20,101 INFO Connection check task end + +2025-09-24 15:20:20,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:23,102 INFO Connection check task start + +2025-09-24 15:20:23,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:23,102 INFO Out dated connection ,size=0 + +2025-09-24 15:20:23,102 INFO Connection check task end + +2025-09-24 15:20:23,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:26,104 INFO Connection check task start + +2025-09-24 15:20:26,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:26,104 INFO Out dated connection ,size=0 + +2025-09-24 15:20:26,104 INFO Connection check task end + +2025-09-24 15:20:26,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:29,106 INFO Connection check task start + +2025-09-24 15:20:29,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:29,106 INFO Out dated connection ,size=0 + +2025-09-24 15:20:29,106 INFO Connection check task end + +2025-09-24 15:20:29,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:32,108 INFO Connection check task start + +2025-09-24 15:20:32,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:32,108 INFO Out dated connection ,size=0 + +2025-09-24 15:20:32,108 INFO Connection check task end + +2025-09-24 15:20:32,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:35,110 INFO Connection check task start + +2025-09-24 15:20:35,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:35,110 INFO Out dated connection ,size=0 + +2025-09-24 15:20:35,110 INFO Connection check task end + +2025-09-24 15:20:35,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:38,111 INFO Connection check task start + +2025-09-24 15:20:38,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:38,112 INFO Out dated connection ,size=0 + +2025-09-24 15:20:38,112 INFO Connection check task end + +2025-09-24 15:20:38,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:41,113 INFO Connection check task start + +2025-09-24 15:20:41,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:41,113 INFO Out dated connection ,size=0 + +2025-09-24 15:20:41,113 INFO Connection check task end + +2025-09-24 15:20:41,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:44,114 INFO Connection check task start + +2025-09-24 15:20:44,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:44,114 INFO Out dated connection ,size=0 + +2025-09-24 15:20:44,114 INFO Connection check task end + +2025-09-24 15:20:44,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:47,115 INFO Connection check task start + +2025-09-24 15:20:47,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:47,115 INFO Out dated connection ,size=0 + +2025-09-24 15:20:47,115 INFO Connection check task end + +2025-09-24 15:20:47,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:50,116 INFO Connection check task start + +2025-09-24 15:20:50,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:50,116 INFO Out dated connection ,size=0 + +2025-09-24 15:20:50,116 INFO Connection check task end + +2025-09-24 15:20:50,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:53,116 INFO Connection check task start + +2025-09-24 15:20:53,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:53,116 INFO Out dated connection ,size=0 + +2025-09-24 15:20:53,116 INFO Connection check task end + +2025-09-24 15:20:53,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:56,118 INFO Connection check task start + +2025-09-24 15:20:56,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:56,118 INFO Out dated connection ,size=0 + +2025-09-24 15:20:56,118 INFO Connection check task end + +2025-09-24 15:20:56,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:20:59,118 INFO Connection check task start + +2025-09-24 15:20:59,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:20:59,119 INFO Out dated connection ,size=0 + +2025-09-24 15:20:59,119 INFO Connection check task end + +2025-09-24 15:20:59,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:02,119 INFO Connection check task start + +2025-09-24 15:21:02,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:02,120 INFO Out dated connection ,size=0 + +2025-09-24 15:21:02,120 INFO Connection check task end + +2025-09-24 15:21:02,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:05,120 INFO Connection check task start + +2025-09-24 15:21:05,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:05,120 INFO Out dated connection ,size=0 + +2025-09-24 15:21:05,120 INFO Connection check task end + +2025-09-24 15:21:05,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:08,121 INFO Connection check task start + +2025-09-24 15:21:08,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:08,121 INFO Out dated connection ,size=0 + +2025-09-24 15:21:08,121 INFO Connection check task end + +2025-09-24 15:21:08,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:11,122 INFO Connection check task start + +2025-09-24 15:21:11,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:11,122 INFO Out dated connection ,size=0 + +2025-09-24 15:21:11,122 INFO Connection check task end + +2025-09-24 15:21:11,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:14,122 INFO Connection check task start + +2025-09-24 15:21:14,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:14,122 INFO Out dated connection ,size=0 + +2025-09-24 15:21:14,122 INFO Connection check task end + +2025-09-24 15:21:14,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:17,122 INFO Connection check task start + +2025-09-24 15:21:17,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:17,123 INFO Out dated connection ,size=0 + +2025-09-24 15:21:17,123 INFO Connection check task end + +2025-09-24 15:21:17,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:20,124 INFO Connection check task start + +2025-09-24 15:21:20,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:20,124 INFO Out dated connection ,size=0 + +2025-09-24 15:21:20,124 INFO Connection check task end + +2025-09-24 15:21:20,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:23,126 INFO Connection check task start + +2025-09-24 15:21:23,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:23,127 INFO Out dated connection ,size=0 + +2025-09-24 15:21:23,127 INFO Connection check task end + +2025-09-24 15:21:23,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:26,129 INFO Connection check task start + +2025-09-24 15:21:26,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:26,129 INFO Out dated connection ,size=0 + +2025-09-24 15:21:26,129 INFO Connection check task end + +2025-09-24 15:21:26,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:29,129 INFO Connection check task start + +2025-09-24 15:21:29,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:29,129 INFO Out dated connection ,size=0 + +2025-09-24 15:21:29,129 INFO Connection check task end + +2025-09-24 15:21:29,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:32,129 INFO Connection check task start + +2025-09-24 15:21:32,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:32,130 INFO Out dated connection ,size=0 + +2025-09-24 15:21:32,130 INFO Connection check task end + +2025-09-24 15:21:32,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:35,130 INFO Connection check task start + +2025-09-24 15:21:35,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:35,131 INFO Out dated connection ,size=0 + +2025-09-24 15:21:35,131 INFO Connection check task end + +2025-09-24 15:21:35,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:38,131 INFO Connection check task start + +2025-09-24 15:21:38,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:38,131 INFO Out dated connection ,size=0 + +2025-09-24 15:21:38,131 INFO Connection check task end + +2025-09-24 15:21:38,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:41,133 INFO Connection check task start + +2025-09-24 15:21:41,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:41,133 INFO Out dated connection ,size=0 + +2025-09-24 15:21:41,133 INFO Connection check task end + +2025-09-24 15:21:41,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:44,134 INFO Connection check task start + +2025-09-24 15:21:44,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:44,134 INFO Out dated connection ,size=0 + +2025-09-24 15:21:44,134 INFO Connection check task end + +2025-09-24 15:21:44,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:47,136 INFO Connection check task start + +2025-09-24 15:21:47,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:47,136 INFO Out dated connection ,size=0 + +2025-09-24 15:21:47,136 INFO Connection check task end + +2025-09-24 15:21:47,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:50,137 INFO Connection check task start + +2025-09-24 15:21:50,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:50,137 INFO Out dated connection ,size=0 + +2025-09-24 15:21:50,137 INFO Connection check task end + +2025-09-24 15:21:50,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:53,137 INFO Connection check task start + +2025-09-24 15:21:53,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:53,137 INFO Out dated connection ,size=0 + +2025-09-24 15:21:53,137 INFO Connection check task end + +2025-09-24 15:21:53,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:56,139 INFO Connection check task start + +2025-09-24 15:21:56,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:56,139 INFO Out dated connection ,size=0 + +2025-09-24 15:21:56,139 INFO Connection check task end + +2025-09-24 15:21:56,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:21:59,142 INFO Connection check task start + +2025-09-24 15:21:59,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:21:59,142 INFO Out dated connection ,size=0 + +2025-09-24 15:21:59,142 INFO Connection check task end + +2025-09-24 15:21:59,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:02,144 INFO Connection check task start + +2025-09-24 15:22:02,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:02,144 INFO Out dated connection ,size=0 + +2025-09-24 15:22:02,144 INFO Connection check task end + +2025-09-24 15:22:02,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:05,144 INFO Connection check task start + +2025-09-24 15:22:05,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:05,145 INFO Out dated connection ,size=0 + +2025-09-24 15:22:05,145 INFO Connection check task end + +2025-09-24 15:22:05,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:08,146 INFO Connection check task start + +2025-09-24 15:22:08,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:08,146 INFO Out dated connection ,size=0 + +2025-09-24 15:22:08,146 INFO Connection check task end + +2025-09-24 15:22:08,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:11,148 INFO Connection check task start + +2025-09-24 15:22:11,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:11,148 INFO Out dated connection ,size=0 + +2025-09-24 15:22:11,148 INFO Connection check task end + +2025-09-24 15:22:11,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:14,149 INFO Connection check task start + +2025-09-24 15:22:14,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:14,149 INFO Out dated connection ,size=0 + +2025-09-24 15:22:14,149 INFO Connection check task end + +2025-09-24 15:22:14,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:17,150 INFO Connection check task start + +2025-09-24 15:22:17,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:17,150 INFO Out dated connection ,size=0 + +2025-09-24 15:22:17,150 INFO Connection check task end + +2025-09-24 15:22:17,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:20,151 INFO Connection check task start + +2025-09-24 15:22:20,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:20,151 INFO Out dated connection ,size=0 + +2025-09-24 15:22:20,151 INFO Connection check task end + +2025-09-24 15:22:20,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:23,153 INFO Connection check task start + +2025-09-24 15:22:23,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:23,154 INFO Out dated connection ,size=0 + +2025-09-24 15:22:23,154 INFO Connection check task end + +2025-09-24 15:22:23,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:26,156 INFO Connection check task start + +2025-09-24 15:22:26,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:26,156 INFO Out dated connection ,size=0 + +2025-09-24 15:22:26,156 INFO Connection check task end + +2025-09-24 15:22:26,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:29,158 INFO Connection check task start + +2025-09-24 15:22:29,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:29,158 INFO Out dated connection ,size=0 + +2025-09-24 15:22:29,158 INFO Connection check task end + +2025-09-24 15:22:29,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:32,159 INFO Connection check task start + +2025-09-24 15:22:32,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:32,159 INFO Out dated connection ,size=0 + +2025-09-24 15:22:32,159 INFO Connection check task end + +2025-09-24 15:22:32,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:35,159 INFO Connection check task start + +2025-09-24 15:22:35,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:35,159 INFO Out dated connection ,size=0 + +2025-09-24 15:22:35,159 INFO Connection check task end + +2025-09-24 15:22:35,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:38,159 INFO Connection check task start + +2025-09-24 15:22:38,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:38,159 INFO Out dated connection ,size=0 + +2025-09-24 15:22:38,159 INFO Connection check task end + +2025-09-24 15:22:38,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:41,160 INFO Connection check task start + +2025-09-24 15:22:41,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:41,160 INFO Out dated connection ,size=0 + +2025-09-24 15:22:41,160 INFO Connection check task end + +2025-09-24 15:22:41,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:44,162 INFO Connection check task start + +2025-09-24 15:22:44,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:44,162 INFO Out dated connection ,size=0 + +2025-09-24 15:22:44,162 INFO Connection check task end + +2025-09-24 15:22:44,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:47,162 INFO Connection check task start + +2025-09-24 15:22:47,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:47,163 INFO Out dated connection ,size=0 + +2025-09-24 15:22:47,163 INFO Connection check task end + +2025-09-24 15:22:47,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:50,164 INFO Connection check task start + +2025-09-24 15:22:50,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:50,164 INFO Out dated connection ,size=0 + +2025-09-24 15:22:50,165 INFO Connection check task end + +2025-09-24 15:22:50,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:53,165 INFO Connection check task start + +2025-09-24 15:22:53,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:53,165 INFO Out dated connection ,size=0 + +2025-09-24 15:22:53,165 INFO Connection check task end + +2025-09-24 15:22:53,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:56,165 INFO Connection check task start + +2025-09-24 15:22:56,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:56,165 INFO Out dated connection ,size=0 + +2025-09-24 15:22:56,165 INFO Connection check task end + +2025-09-24 15:22:56,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:22:59,168 INFO Connection check task start + +2025-09-24 15:22:59,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:22:59,168 INFO Out dated connection ,size=0 + +2025-09-24 15:22:59,168 INFO Connection check task end + +2025-09-24 15:22:59,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:02,168 INFO Connection check task start + +2025-09-24 15:23:02,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:02,168 INFO Out dated connection ,size=0 + +2025-09-24 15:23:02,168 INFO Connection check task end + +2025-09-24 15:23:02,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:05,169 INFO Connection check task start + +2025-09-24 15:23:05,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:05,169 INFO Out dated connection ,size=0 + +2025-09-24 15:23:05,169 INFO Connection check task end + +2025-09-24 15:23:05,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:08,170 INFO Connection check task start + +2025-09-24 15:23:08,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:08,170 INFO Out dated connection ,size=0 + +2025-09-24 15:23:08,170 INFO Connection check task end + +2025-09-24 15:23:08,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:11,172 INFO Connection check task start + +2025-09-24 15:23:11,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:11,172 INFO Out dated connection ,size=0 + +2025-09-24 15:23:11,172 INFO Connection check task end + +2025-09-24 15:23:11,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:14,174 INFO Connection check task start + +2025-09-24 15:23:14,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:14,174 INFO Out dated connection ,size=0 + +2025-09-24 15:23:14,174 INFO Connection check task end + +2025-09-24 15:23:14,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:17,175 INFO Connection check task start + +2025-09-24 15:23:17,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:17,175 INFO Out dated connection ,size=0 + +2025-09-24 15:23:17,175 INFO Connection check task end + +2025-09-24 15:23:17,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:20,176 INFO Connection check task start + +2025-09-24 15:23:20,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:20,185 INFO Out dated connection ,size=0 + +2025-09-24 15:23:20,185 INFO Connection check task end + +2025-09-24 15:23:20,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:23,185 INFO Connection check task start + +2025-09-24 15:23:23,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:23,186 INFO Out dated connection ,size=0 + +2025-09-24 15:23:23,186 INFO Connection check task end + +2025-09-24 15:23:23,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:26,188 INFO Connection check task start + +2025-09-24 15:23:26,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:26,188 INFO Out dated connection ,size=0 + +2025-09-24 15:23:26,188 INFO Connection check task end + +2025-09-24 15:23:26,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:29,188 INFO Connection check task start + +2025-09-24 15:23:29,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:29,189 INFO Out dated connection ,size=0 + +2025-09-24 15:23:29,189 INFO Connection check task end + +2025-09-24 15:23:29,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:32,191 INFO Connection check task start + +2025-09-24 15:23:32,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:32,191 INFO Out dated connection ,size=0 + +2025-09-24 15:23:32,191 INFO Connection check task end + +2025-09-24 15:23:32,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:35,193 INFO Connection check task start + +2025-09-24 15:23:35,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:35,193 INFO Out dated connection ,size=0 + +2025-09-24 15:23:35,193 INFO Connection check task end + +2025-09-24 15:23:35,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:38,193 INFO Connection check task start + +2025-09-24 15:23:38,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:38,194 INFO Out dated connection ,size=0 + +2025-09-24 15:23:38,194 INFO Connection check task end + +2025-09-24 15:23:38,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:41,194 INFO Connection check task start + +2025-09-24 15:23:41,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:41,194 INFO Out dated connection ,size=0 + +2025-09-24 15:23:41,194 INFO Connection check task end + +2025-09-24 15:23:41,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:44,195 INFO Connection check task start + +2025-09-24 15:23:44,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:44,195 INFO Out dated connection ,size=0 + +2025-09-24 15:23:44,195 INFO Connection check task end + +2025-09-24 15:23:44,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:47,197 INFO Connection check task start + +2025-09-24 15:23:47,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:47,197 INFO Out dated connection ,size=0 + +2025-09-24 15:23:47,197 INFO Connection check task end + +2025-09-24 15:23:47,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:50,199 INFO Connection check task start + +2025-09-24 15:23:50,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:50,199 INFO Out dated connection ,size=0 + +2025-09-24 15:23:50,199 INFO Connection check task end + +2025-09-24 15:23:50,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:53,200 INFO Connection check task start + +2025-09-24 15:23:53,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:53,201 INFO Out dated connection ,size=0 + +2025-09-24 15:23:53,201 INFO Connection check task end + +2025-09-24 15:23:53,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:56,202 INFO Connection check task start + +2025-09-24 15:23:56,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:56,202 INFO Out dated connection ,size=0 + +2025-09-24 15:23:56,202 INFO Connection check task end + +2025-09-24 15:23:56,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:23:59,202 INFO Connection check task start + +2025-09-24 15:23:59,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:23:59,203 INFO Out dated connection ,size=0 + +2025-09-24 15:23:59,203 INFO Connection check task end + +2025-09-24 15:23:59,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:02,205 INFO Connection check task start + +2025-09-24 15:24:02,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:02,205 INFO Out dated connection ,size=0 + +2025-09-24 15:24:02,205 INFO Connection check task end + +2025-09-24 15:24:02,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:05,206 INFO Connection check task start + +2025-09-24 15:24:05,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:05,206 INFO Out dated connection ,size=0 + +2025-09-24 15:24:05,206 INFO Connection check task end + +2025-09-24 15:24:05,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:08,206 INFO Connection check task start + +2025-09-24 15:24:08,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:08,206 INFO Out dated connection ,size=0 + +2025-09-24 15:24:08,206 INFO Connection check task end + +2025-09-24 15:24:08,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:11,208 INFO Connection check task start + +2025-09-24 15:24:11,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:11,208 INFO Out dated connection ,size=0 + +2025-09-24 15:24:11,208 INFO Connection check task end + +2025-09-24 15:24:11,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:14,209 INFO Connection check task start + +2025-09-24 15:24:14,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:14,209 INFO Out dated connection ,size=0 + +2025-09-24 15:24:14,209 INFO Connection check task end + +2025-09-24 15:24:14,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:17,209 INFO Connection check task start + +2025-09-24 15:24:17,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:17,209 INFO Out dated connection ,size=0 + +2025-09-24 15:24:17,209 INFO Connection check task end + +2025-09-24 15:24:17,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:20,210 INFO Connection check task start + +2025-09-24 15:24:20,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:20,210 INFO Out dated connection ,size=0 + +2025-09-24 15:24:20,210 INFO Connection check task end + +2025-09-24 15:24:20,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:23,210 INFO Connection check task start + +2025-09-24 15:24:23,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:23,211 INFO Out dated connection ,size=0 + +2025-09-24 15:24:23,211 INFO Connection check task end + +2025-09-24 15:24:23,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:26,211 INFO Connection check task start + +2025-09-24 15:24:26,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:26,211 INFO Out dated connection ,size=0 + +2025-09-24 15:24:26,211 INFO Connection check task end + +2025-09-24 15:24:26,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:29,211 INFO Connection check task start + +2025-09-24 15:24:29,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:29,212 INFO Out dated connection ,size=0 + +2025-09-24 15:24:29,212 INFO Connection check task end + +2025-09-24 15:24:29,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:32,212 INFO Connection check task start + +2025-09-24 15:24:32,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:32,212 INFO Out dated connection ,size=0 + +2025-09-24 15:24:32,212 INFO Connection check task end + +2025-09-24 15:24:32,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:35,214 INFO Connection check task start + +2025-09-24 15:24:35,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:35,214 INFO Out dated connection ,size=0 + +2025-09-24 15:24:35,214 INFO Connection check task end + +2025-09-24 15:24:35,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:38,214 INFO Connection check task start + +2025-09-24 15:24:38,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:38,215 INFO Out dated connection ,size=0 + +2025-09-24 15:24:38,215 INFO Connection check task end + +2025-09-24 15:24:38,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:41,215 INFO Connection check task start + +2025-09-24 15:24:41,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:41,215 INFO Out dated connection ,size=0 + +2025-09-24 15:24:41,215 INFO Connection check task end + +2025-09-24 15:24:41,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:44,216 INFO Connection check task start + +2025-09-24 15:24:44,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:44,219 INFO Out dated connection ,size=0 + +2025-09-24 15:24:44,220 INFO Connection check task end + +2025-09-24 15:24:44,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:47,222 INFO Connection check task start + +2025-09-24 15:24:47,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:47,222 INFO Out dated connection ,size=0 + +2025-09-24 15:24:47,222 INFO Connection check task end + +2025-09-24 15:24:47,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:50,222 INFO Connection check task start + +2025-09-24 15:24:50,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:50,222 INFO Out dated connection ,size=0 + +2025-09-24 15:24:50,222 INFO Connection check task end + +2025-09-24 15:24:50,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:53,223 INFO Connection check task start + +2025-09-24 15:24:53,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:53,223 INFO Out dated connection ,size=0 + +2025-09-24 15:24:53,223 INFO Connection check task end + +2025-09-24 15:24:53,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:56,224 INFO Connection check task start + +2025-09-24 15:24:56,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:56,224 INFO Out dated connection ,size=0 + +2025-09-24 15:24:56,224 INFO Connection check task end + +2025-09-24 15:24:56,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:24:59,224 INFO Connection check task start + +2025-09-24 15:24:59,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:24:59,224 INFO Out dated connection ,size=0 + +2025-09-24 15:24:59,225 INFO Connection check task end + +2025-09-24 15:24:59,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:02,226 INFO Connection check task start + +2025-09-24 15:25:02,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:02,227 INFO Out dated connection ,size=0 + +2025-09-24 15:25:02,227 INFO Connection check task end + +2025-09-24 15:25:02,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:05,227 INFO Connection check task start + +2025-09-24 15:25:05,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:05,227 INFO Out dated connection ,size=0 + +2025-09-24 15:25:05,227 INFO Connection check task end + +2025-09-24 15:25:05,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:08,229 INFO Connection check task start + +2025-09-24 15:25:08,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:08,229 INFO Out dated connection ,size=0 + +2025-09-24 15:25:08,229 INFO Connection check task end + +2025-09-24 15:25:08,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:11,231 INFO Connection check task start + +2025-09-24 15:25:11,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:11,231 INFO Out dated connection ,size=0 + +2025-09-24 15:25:11,231 INFO Connection check task end + +2025-09-24 15:25:11,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:14,232 INFO Connection check task start + +2025-09-24 15:25:14,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:14,232 INFO Out dated connection ,size=0 + +2025-09-24 15:25:14,232 INFO Connection check task end + +2025-09-24 15:25:14,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:17,233 INFO Connection check task start + +2025-09-24 15:25:17,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:17,233 INFO Out dated connection ,size=0 + +2025-09-24 15:25:17,233 INFO Connection check task end + +2025-09-24 15:25:17,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:20,234 INFO Connection check task start + +2025-09-24 15:25:20,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:20,235 INFO Out dated connection ,size=0 + +2025-09-24 15:25:20,235 INFO Connection check task end + +2025-09-24 15:25:20,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:23,236 INFO Connection check task start + +2025-09-24 15:25:23,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:23,236 INFO Out dated connection ,size=0 + +2025-09-24 15:25:23,236 INFO Connection check task end + +2025-09-24 15:25:23,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:26,237 INFO Connection check task start + +2025-09-24 15:25:26,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:26,237 INFO Out dated connection ,size=0 + +2025-09-24 15:25:26,237 INFO Connection check task end + +2025-09-24 15:25:26,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:29,239 INFO Connection check task start + +2025-09-24 15:25:29,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:29,239 INFO Out dated connection ,size=0 + +2025-09-24 15:25:29,239 INFO Connection check task end + +2025-09-24 15:25:29,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:32,239 INFO Connection check task start + +2025-09-24 15:25:32,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:32,240 INFO Out dated connection ,size=0 + +2025-09-24 15:25:32,240 INFO Connection check task end + +2025-09-24 15:25:32,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:35,240 INFO Connection check task start + +2025-09-24 15:25:35,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:35,240 INFO Out dated connection ,size=0 + +2025-09-24 15:25:35,240 INFO Connection check task end + +2025-09-24 15:25:35,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:38,240 INFO Connection check task start + +2025-09-24 15:25:38,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:38,241 INFO Out dated connection ,size=0 + +2025-09-24 15:25:38,241 INFO Connection check task end + +2025-09-24 15:25:38,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:41,243 INFO Connection check task start + +2025-09-24 15:25:41,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:41,243 INFO Out dated connection ,size=0 + +2025-09-24 15:25:41,243 INFO Connection check task end + +2025-09-24 15:25:41,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:44,243 INFO Connection check task start + +2025-09-24 15:25:44,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:44,244 INFO Out dated connection ,size=0 + +2025-09-24 15:25:44,244 INFO Connection check task end + +2025-09-24 15:25:44,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:47,244 INFO Connection check task start + +2025-09-24 15:25:47,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:47,244 INFO Out dated connection ,size=0 + +2025-09-24 15:25:47,244 INFO Connection check task end + +2025-09-24 15:25:47,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:50,246 INFO Connection check task start + +2025-09-24 15:25:50,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:50,247 INFO Out dated connection ,size=0 + +2025-09-24 15:25:50,247 INFO Connection check task end + +2025-09-24 15:25:50,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:53,248 INFO Connection check task start + +2025-09-24 15:25:53,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:53,248 INFO Out dated connection ,size=0 + +2025-09-24 15:25:53,248 INFO Connection check task end + +2025-09-24 15:25:53,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:56,249 INFO Connection check task start + +2025-09-24 15:25:56,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:56,249 INFO Out dated connection ,size=0 + +2025-09-24 15:25:56,249 INFO Connection check task end + +2025-09-24 15:25:56,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:25:59,250 INFO Connection check task start + +2025-09-24 15:25:59,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:25:59,250 INFO Out dated connection ,size=0 + +2025-09-24 15:25:59,250 INFO Connection check task end + +2025-09-24 15:25:59,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:02,252 INFO Connection check task start + +2025-09-24 15:26:02,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:02,252 INFO Out dated connection ,size=0 + +2025-09-24 15:26:02,252 INFO Connection check task end + +2025-09-24 15:26:02,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:05,254 INFO Connection check task start + +2025-09-24 15:26:05,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:05,255 INFO Out dated connection ,size=0 + +2025-09-24 15:26:05,255 INFO Connection check task end + +2025-09-24 15:26:05,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:08,255 INFO Connection check task start + +2025-09-24 15:26:08,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:08,255 INFO Out dated connection ,size=0 + +2025-09-24 15:26:08,255 INFO Connection check task end + +2025-09-24 15:26:08,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:11,256 INFO Connection check task start + +2025-09-24 15:26:11,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:11,256 INFO Out dated connection ,size=0 + +2025-09-24 15:26:11,256 INFO Connection check task end + +2025-09-24 15:26:11,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:14,257 INFO Connection check task start + +2025-09-24 15:26:14,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:14,257 INFO Out dated connection ,size=0 + +2025-09-24 15:26:14,257 INFO Connection check task end + +2025-09-24 15:26:14,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:17,259 INFO Connection check task start + +2025-09-24 15:26:17,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:17,259 INFO Out dated connection ,size=0 + +2025-09-24 15:26:17,260 INFO Connection check task end + +2025-09-24 15:26:17,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:20,260 INFO Connection check task start + +2025-09-24 15:26:20,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:20,261 INFO Out dated connection ,size=0 + +2025-09-24 15:26:20,261 INFO Connection check task end + +2025-09-24 15:26:20,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:23,262 INFO Connection check task start + +2025-09-24 15:26:23,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:23,262 INFO Out dated connection ,size=0 + +2025-09-24 15:26:23,262 INFO Connection check task end + +2025-09-24 15:26:23,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:26,264 INFO Connection check task start + +2025-09-24 15:26:26,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:26,264 INFO Out dated connection ,size=0 + +2025-09-24 15:26:26,264 INFO Connection check task end + +2025-09-24 15:26:26,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:29,265 INFO Connection check task start + +2025-09-24 15:26:29,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:29,265 INFO Out dated connection ,size=0 + +2025-09-24 15:26:29,265 INFO Connection check task end + +2025-09-24 15:26:29,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:32,267 INFO Connection check task start + +2025-09-24 15:26:32,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:32,268 INFO Out dated connection ,size=0 + +2025-09-24 15:26:32,268 INFO Connection check task end + +2025-09-24 15:26:32,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:35,269 INFO Connection check task start + +2025-09-24 15:26:35,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:35,269 INFO Out dated connection ,size=0 + +2025-09-24 15:26:35,269 INFO Connection check task end + +2025-09-24 15:26:35,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:38,271 INFO Connection check task start + +2025-09-24 15:26:38,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:38,271 INFO Out dated connection ,size=0 + +2025-09-24 15:26:38,271 INFO Connection check task end + +2025-09-24 15:26:38,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:41,273 INFO Connection check task start + +2025-09-24 15:26:41,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:41,273 INFO Out dated connection ,size=0 + +2025-09-24 15:26:41,273 INFO Connection check task end + +2025-09-24 15:26:41,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:44,273 INFO Connection check task start + +2025-09-24 15:26:44,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:44,273 INFO Out dated connection ,size=0 + +2025-09-24 15:26:44,273 INFO Connection check task end + +2025-09-24 15:26:44,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:47,274 INFO Connection check task start + +2025-09-24 15:26:47,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:47,274 INFO Out dated connection ,size=0 + +2025-09-24 15:26:47,274 INFO Connection check task end + +2025-09-24 15:26:47,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:50,274 INFO Connection check task start + +2025-09-24 15:26:50,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:50,275 INFO Out dated connection ,size=0 + +2025-09-24 15:26:50,275 INFO Connection check task end + +2025-09-24 15:26:50,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:53,275 INFO Connection check task start + +2025-09-24 15:26:53,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:53,275 INFO Out dated connection ,size=0 + +2025-09-24 15:26:53,275 INFO Connection check task end + +2025-09-24 15:26:53,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:56,276 INFO Connection check task start + +2025-09-24 15:26:56,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:56,276 INFO Out dated connection ,size=0 + +2025-09-24 15:26:56,276 INFO Connection check task end + +2025-09-24 15:26:56,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:26:59,276 INFO Connection check task start + +2025-09-24 15:26:59,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:26:59,277 INFO Out dated connection ,size=0 + +2025-09-24 15:26:59,277 INFO Connection check task end + +2025-09-24 15:26:59,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:02,279 INFO Connection check task start + +2025-09-24 15:27:02,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:02,279 INFO Out dated connection ,size=0 + +2025-09-24 15:27:02,279 INFO Connection check task end + +2025-09-24 15:27:02,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:05,280 INFO Connection check task start + +2025-09-24 15:27:05,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:05,280 INFO Out dated connection ,size=0 + +2025-09-24 15:27:05,280 INFO Connection check task end + +2025-09-24 15:27:05,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:08,280 INFO Connection check task start + +2025-09-24 15:27:08,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:08,280 INFO Out dated connection ,size=0 + +2025-09-24 15:27:08,280 INFO Connection check task end + +2025-09-24 15:27:08,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:11,280 INFO Connection check task start + +2025-09-24 15:27:11,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:11,280 INFO Out dated connection ,size=0 + +2025-09-24 15:27:11,280 INFO Connection check task end + +2025-09-24 15:27:11,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:14,282 INFO Connection check task start + +2025-09-24 15:27:14,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:14,283 INFO Out dated connection ,size=0 + +2025-09-24 15:27:14,283 INFO Connection check task end + +2025-09-24 15:27:14,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:17,284 INFO Connection check task start + +2025-09-24 15:27:17,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:17,284 INFO Out dated connection ,size=0 + +2025-09-24 15:27:17,284 INFO Connection check task end + +2025-09-24 15:27:17,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:20,285 INFO Connection check task start + +2025-09-24 15:27:20,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:20,285 INFO Out dated connection ,size=0 + +2025-09-24 15:27:20,285 INFO Connection check task end + +2025-09-24 15:27:20,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:23,286 INFO Connection check task start + +2025-09-24 15:27:23,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:23,287 INFO Out dated connection ,size=0 + +2025-09-24 15:27:23,287 INFO Connection check task end + +2025-09-24 15:27:23,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:26,288 INFO Connection check task start + +2025-09-24 15:27:26,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:26,288 INFO Out dated connection ,size=0 + +2025-09-24 15:27:26,288 INFO Connection check task end + +2025-09-24 15:27:26,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:29,288 INFO Connection check task start + +2025-09-24 15:27:29,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:29,289 INFO Out dated connection ,size=0 + +2025-09-24 15:27:29,289 INFO Connection check task end + +2025-09-24 15:27:29,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:32,291 INFO Connection check task start + +2025-09-24 15:27:32,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:32,291 INFO Out dated connection ,size=0 + +2025-09-24 15:27:32,291 INFO Connection check task end + +2025-09-24 15:27:32,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:35,291 INFO Connection check task start + +2025-09-24 15:27:35,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:35,292 INFO Out dated connection ,size=0 + +2025-09-24 15:27:35,292 INFO Connection check task end + +2025-09-24 15:27:35,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:38,296 INFO Connection check task start + +2025-09-24 15:27:38,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:38,296 INFO Out dated connection ,size=0 + +2025-09-24 15:27:38,296 INFO Connection check task end + +2025-09-24 15:27:38,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:41,296 INFO Connection check task start + +2025-09-24 15:27:41,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:41,297 INFO Out dated connection ,size=0 + +2025-09-24 15:27:41,297 INFO Connection check task end + +2025-09-24 15:27:41,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:44,298 INFO Connection check task start + +2025-09-24 15:27:44,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:44,299 INFO Out dated connection ,size=0 + +2025-09-24 15:27:44,299 INFO Connection check task end + +2025-09-24 15:27:44,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:47,299 INFO Connection check task start + +2025-09-24 15:27:47,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:47,299 INFO Out dated connection ,size=0 + +2025-09-24 15:27:47,299 INFO Connection check task end + +2025-09-24 15:27:47,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:50,299 INFO Connection check task start + +2025-09-24 15:27:50,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:50,300 INFO Out dated connection ,size=0 + +2025-09-24 15:27:50,300 INFO Connection check task end + +2025-09-24 15:27:50,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:53,302 INFO Connection check task start + +2025-09-24 15:27:53,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:53,302 INFO Out dated connection ,size=0 + +2025-09-24 15:27:53,302 INFO Connection check task end + +2025-09-24 15:27:53,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:56,303 INFO Connection check task start + +2025-09-24 15:27:56,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:56,304 INFO Out dated connection ,size=0 + +2025-09-24 15:27:56,304 INFO Connection check task end + +2025-09-24 15:27:56,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:27:59,305 INFO Connection check task start + +2025-09-24 15:27:59,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:27:59,305 INFO Out dated connection ,size=0 + +2025-09-24 15:27:59,305 INFO Connection check task end + +2025-09-24 15:27:59,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:02,306 INFO Connection check task start + +2025-09-24 15:28:02,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:02,306 INFO Out dated connection ,size=0 + +2025-09-24 15:28:02,306 INFO Connection check task end + +2025-09-24 15:28:02,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:05,308 INFO Connection check task start + +2025-09-24 15:28:05,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:05,308 INFO Out dated connection ,size=0 + +2025-09-24 15:28:05,308 INFO Connection check task end + +2025-09-24 15:28:05,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:08,309 INFO Connection check task start + +2025-09-24 15:28:08,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:08,309 INFO Out dated connection ,size=0 + +2025-09-24 15:28:08,309 INFO Connection check task end + +2025-09-24 15:28:08,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:11,311 INFO Connection check task start + +2025-09-24 15:28:11,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:11,311 INFO Out dated connection ,size=0 + +2025-09-24 15:28:11,311 INFO Connection check task end + +2025-09-24 15:28:11,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:14,312 INFO Connection check task start + +2025-09-24 15:28:14,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:14,313 INFO Out dated connection ,size=0 + +2025-09-24 15:28:14,313 INFO Connection check task end + +2025-09-24 15:28:14,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:17,315 INFO Connection check task start + +2025-09-24 15:28:17,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:17,315 INFO Out dated connection ,size=0 + +2025-09-24 15:28:17,315 INFO Connection check task end + +2025-09-24 15:28:17,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:20,315 INFO Connection check task start + +2025-09-24 15:28:20,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:20,316 INFO Out dated connection ,size=0 + +2025-09-24 15:28:20,316 INFO Connection check task end + +2025-09-24 15:28:20,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:23,318 INFO Connection check task start + +2025-09-24 15:28:23,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:23,318 INFO Out dated connection ,size=0 + +2025-09-24 15:28:23,318 INFO Connection check task end + +2025-09-24 15:28:23,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:26,320 INFO Connection check task start + +2025-09-24 15:28:26,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:26,320 INFO Out dated connection ,size=0 + +2025-09-24 15:28:26,320 INFO Connection check task end + +2025-09-24 15:28:26,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:29,320 INFO Connection check task start + +2025-09-24 15:28:29,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:29,321 INFO Out dated connection ,size=0 + +2025-09-24 15:28:29,321 INFO Connection check task end + +2025-09-24 15:28:29,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:32,323 INFO Connection check task start + +2025-09-24 15:28:32,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:32,323 INFO Out dated connection ,size=0 + +2025-09-24 15:28:32,323 INFO Connection check task end + +2025-09-24 15:28:32,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:35,325 INFO Connection check task start + +2025-09-24 15:28:35,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:35,325 INFO Out dated connection ,size=0 + +2025-09-24 15:28:35,325 INFO Connection check task end + +2025-09-24 15:28:35,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:38,327 INFO Connection check task start + +2025-09-24 15:28:38,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:38,327 INFO Out dated connection ,size=0 + +2025-09-24 15:28:38,327 INFO Connection check task end + +2025-09-24 15:28:38,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:41,327 INFO Connection check task start + +2025-09-24 15:28:41,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:41,328 INFO Out dated connection ,size=0 + +2025-09-24 15:28:41,328 INFO Connection check task end + +2025-09-24 15:28:41,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:44,328 INFO Connection check task start + +2025-09-24 15:28:44,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:44,328 INFO Out dated connection ,size=0 + +2025-09-24 15:28:44,328 INFO Connection check task end + +2025-09-24 15:28:44,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:47,329 INFO Connection check task start + +2025-09-24 15:28:47,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:47,329 INFO Out dated connection ,size=0 + +2025-09-24 15:28:47,330 INFO Connection check task end + +2025-09-24 15:28:47,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:50,330 INFO Connection check task start + +2025-09-24 15:28:50,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:50,330 INFO Out dated connection ,size=0 + +2025-09-24 15:28:50,330 INFO Connection check task end + +2025-09-24 15:28:50,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:53,332 INFO Connection check task start + +2025-09-24 15:28:53,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:53,332 INFO Out dated connection ,size=0 + +2025-09-24 15:28:53,332 INFO Connection check task end + +2025-09-24 15:28:53,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:56,332 INFO Connection check task start + +2025-09-24 15:28:56,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:56,333 INFO Out dated connection ,size=0 + +2025-09-24 15:28:56,333 INFO Connection check task end + +2025-09-24 15:28:56,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:28:59,333 INFO Connection check task start + +2025-09-24 15:28:59,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:28:59,333 INFO Out dated connection ,size=0 + +2025-09-24 15:28:59,333 INFO Connection check task end + +2025-09-24 15:28:59,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:02,335 INFO Connection check task start + +2025-09-24 15:29:02,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:02,335 INFO Out dated connection ,size=0 + +2025-09-24 15:29:02,335 INFO Connection check task end + +2025-09-24 15:29:02,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:05,337 INFO Connection check task start + +2025-09-24 15:29:05,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:05,337 INFO Out dated connection ,size=0 + +2025-09-24 15:29:05,337 INFO Connection check task end + +2025-09-24 15:29:05,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:08,337 INFO Connection check task start + +2025-09-24 15:29:08,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:08,337 INFO Out dated connection ,size=0 + +2025-09-24 15:29:08,337 INFO Connection check task end + +2025-09-24 15:29:08,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:11,339 INFO Connection check task start + +2025-09-24 15:29:11,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:11,339 INFO Out dated connection ,size=0 + +2025-09-24 15:29:11,339 INFO Connection check task end + +2025-09-24 15:29:11,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:14,341 INFO Connection check task start + +2025-09-24 15:29:14,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:14,341 INFO Out dated connection ,size=0 + +2025-09-24 15:29:14,341 INFO Connection check task end + +2025-09-24 15:29:14,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:17,343 INFO Connection check task start + +2025-09-24 15:29:17,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:17,343 INFO Out dated connection ,size=0 + +2025-09-24 15:29:17,343 INFO Connection check task end + +2025-09-24 15:29:17,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:20,345 INFO Connection check task start + +2025-09-24 15:29:20,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:20,345 INFO Out dated connection ,size=0 + +2025-09-24 15:29:20,345 INFO Connection check task end + +2025-09-24 15:29:20,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:23,347 INFO Connection check task start + +2025-09-24 15:29:23,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:23,348 INFO Out dated connection ,size=0 + +2025-09-24 15:29:23,348 INFO Connection check task end + +2025-09-24 15:29:23,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:26,349 INFO Connection check task start + +2025-09-24 15:29:26,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:26,349 INFO Out dated connection ,size=0 + +2025-09-24 15:29:26,349 INFO Connection check task end + +2025-09-24 15:29:26,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:29,351 INFO Connection check task start + +2025-09-24 15:29:29,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:29,351 INFO Out dated connection ,size=0 + +2025-09-24 15:29:29,351 INFO Connection check task end + +2025-09-24 15:29:29,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:32,352 INFO Connection check task start + +2025-09-24 15:29:32,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:32,352 INFO Out dated connection ,size=0 + +2025-09-24 15:29:32,352 INFO Connection check task end + +2025-09-24 15:29:32,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:35,352 INFO Connection check task start + +2025-09-24 15:29:35,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:35,352 INFO Out dated connection ,size=0 + +2025-09-24 15:29:35,352 INFO Connection check task end + +2025-09-24 15:29:35,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:38,354 INFO Connection check task start + +2025-09-24 15:29:38,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:38,354 INFO Out dated connection ,size=0 + +2025-09-24 15:29:38,354 INFO Connection check task end + +2025-09-24 15:29:38,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:41,356 INFO Connection check task start + +2025-09-24 15:29:41,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:41,356 INFO Out dated connection ,size=0 + +2025-09-24 15:29:41,356 INFO Connection check task end + +2025-09-24 15:29:41,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:44,357 INFO Connection check task start + +2025-09-24 15:29:44,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:44,357 INFO Out dated connection ,size=0 + +2025-09-24 15:29:44,357 INFO Connection check task end + +2025-09-24 15:29:44,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:47,357 INFO Connection check task start + +2025-09-24 15:29:47,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:47,357 INFO Out dated connection ,size=0 + +2025-09-24 15:29:47,357 INFO Connection check task end + +2025-09-24 15:29:47,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:50,358 INFO Connection check task start + +2025-09-24 15:29:50,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:50,358 INFO Out dated connection ,size=0 + +2025-09-24 15:29:50,358 INFO Connection check task end + +2025-09-24 15:29:50,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:53,359 INFO Connection check task start + +2025-09-24 15:29:53,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:53,359 INFO Out dated connection ,size=0 + +2025-09-24 15:29:53,359 INFO Connection check task end + +2025-09-24 15:29:53,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:56,359 INFO Connection check task start + +2025-09-24 15:29:56,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:56,359 INFO Out dated connection ,size=0 + +2025-09-24 15:29:56,360 INFO Connection check task end + +2025-09-24 15:29:56,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:29:59,360 INFO Connection check task start + +2025-09-24 15:29:59,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:29:59,360 INFO Out dated connection ,size=0 + +2025-09-24 15:29:59,360 INFO Connection check task end + +2025-09-24 15:29:59,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:02,360 INFO Connection check task start + +2025-09-24 15:30:02,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:02,361 INFO Out dated connection ,size=0 + +2025-09-24 15:30:02,361 INFO Connection check task end + +2025-09-24 15:30:02,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:05,361 INFO Connection check task start + +2025-09-24 15:30:05,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:05,361 INFO Out dated connection ,size=0 + +2025-09-24 15:30:05,362 INFO Connection check task end + +2025-09-24 15:30:05,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:08,362 INFO Connection check task start + +2025-09-24 15:30:08,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:08,362 INFO Out dated connection ,size=0 + +2025-09-24 15:30:08,362 INFO Connection check task end + +2025-09-24 15:30:08,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:11,363 INFO Connection check task start + +2025-09-24 15:30:11,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:11,363 INFO Out dated connection ,size=0 + +2025-09-24 15:30:11,363 INFO Connection check task end + +2025-09-24 15:30:11,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:14,364 INFO Connection check task start + +2025-09-24 15:30:14,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:14,364 INFO Out dated connection ,size=0 + +2025-09-24 15:30:14,364 INFO Connection check task end + +2025-09-24 15:30:14,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:17,365 INFO Connection check task start + +2025-09-24 15:30:17,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:17,365 INFO Out dated connection ,size=0 + +2025-09-24 15:30:17,365 INFO Connection check task end + +2025-09-24 15:30:17,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:20,367 INFO Connection check task start + +2025-09-24 15:30:20,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:20,367 INFO Out dated connection ,size=0 + +2025-09-24 15:30:20,367 INFO Connection check task end + +2025-09-24 15:30:20,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:23,368 INFO Connection check task start + +2025-09-24 15:30:23,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:23,369 INFO Out dated connection ,size=0 + +2025-09-24 15:30:23,369 INFO Connection check task end + +2025-09-24 15:30:23,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:26,370 INFO Connection check task start + +2025-09-24 15:30:26,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:26,370 INFO Out dated connection ,size=0 + +2025-09-24 15:30:26,370 INFO Connection check task end + +2025-09-24 15:30:26,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:29,376 INFO Connection check task start + +2025-09-24 15:30:29,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:29,376 INFO Out dated connection ,size=0 + +2025-09-24 15:30:29,376 INFO Connection check task end + +2025-09-24 15:30:29,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:32,377 INFO Connection check task start + +2025-09-24 15:30:32,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:32,377 INFO Out dated connection ,size=0 + +2025-09-24 15:30:32,377 INFO Connection check task end + +2025-09-24 15:30:32,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:35,377 INFO Connection check task start + +2025-09-24 15:30:35,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:35,378 INFO Out dated connection ,size=0 + +2025-09-24 15:30:35,378 INFO Connection check task end + +2025-09-24 15:30:35,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:38,378 INFO Connection check task start + +2025-09-24 15:30:38,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:38,378 INFO Out dated connection ,size=0 + +2025-09-24 15:30:38,378 INFO Connection check task end + +2025-09-24 15:30:38,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:41,378 INFO Connection check task start + +2025-09-24 15:30:41,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:41,379 INFO Out dated connection ,size=0 + +2025-09-24 15:30:41,379 INFO Connection check task end + +2025-09-24 15:30:41,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:44,379 INFO Connection check task start + +2025-09-24 15:30:44,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:44,379 INFO Out dated connection ,size=0 + +2025-09-24 15:30:44,379 INFO Connection check task end + +2025-09-24 15:30:44,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:47,380 INFO Connection check task start + +2025-09-24 15:30:47,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:47,381 INFO Out dated connection ,size=0 + +2025-09-24 15:30:47,381 INFO Connection check task end + +2025-09-24 15:30:47,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:50,381 INFO Connection check task start + +2025-09-24 15:30:50,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:50,381 INFO Out dated connection ,size=0 + +2025-09-24 15:30:50,381 INFO Connection check task end + +2025-09-24 15:30:50,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:53,382 INFO Connection check task start + +2025-09-24 15:30:53,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:53,382 INFO Out dated connection ,size=0 + +2025-09-24 15:30:53,382 INFO Connection check task end + +2025-09-24 15:30:53,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:56,383 INFO Connection check task start + +2025-09-24 15:30:56,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:56,383 INFO Out dated connection ,size=0 + +2025-09-24 15:30:56,383 INFO Connection check task end + +2025-09-24 15:30:56,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:30:59,385 INFO Connection check task start + +2025-09-24 15:30:59,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:30:59,385 INFO Out dated connection ,size=0 + +2025-09-24 15:30:59,385 INFO Connection check task end + +2025-09-24 15:30:59,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:02,387 INFO Connection check task start + +2025-09-24 15:31:02,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:02,388 INFO Out dated connection ,size=0 + +2025-09-24 15:31:02,388 INFO Connection check task end + +2025-09-24 15:31:02,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:05,389 INFO Connection check task start + +2025-09-24 15:31:05,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:05,389 INFO Out dated connection ,size=0 + +2025-09-24 15:31:05,389 INFO Connection check task end + +2025-09-24 15:31:05,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:08,389 INFO Connection check task start + +2025-09-24 15:31:08,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:08,389 INFO Out dated connection ,size=0 + +2025-09-24 15:31:08,389 INFO Connection check task end + +2025-09-24 15:31:08,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:11,390 INFO Connection check task start + +2025-09-24 15:31:11,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:11,390 INFO Out dated connection ,size=0 + +2025-09-24 15:31:11,390 INFO Connection check task end + +2025-09-24 15:31:11,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:14,390 INFO Connection check task start + +2025-09-24 15:31:14,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:14,391 INFO Out dated connection ,size=0 + +2025-09-24 15:31:14,391 INFO Connection check task end + +2025-09-24 15:31:14,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:17,391 INFO Connection check task start + +2025-09-24 15:31:17,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:17,391 INFO Out dated connection ,size=0 + +2025-09-24 15:31:17,391 INFO Connection check task end + +2025-09-24 15:31:17,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:20,391 INFO Connection check task start + +2025-09-24 15:31:20,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:20,392 INFO Out dated connection ,size=0 + +2025-09-24 15:31:20,392 INFO Connection check task end + +2025-09-24 15:31:20,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:23,392 INFO Connection check task start + +2025-09-24 15:31:23,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:23,392 INFO Out dated connection ,size=0 + +2025-09-24 15:31:23,392 INFO Connection check task end + +2025-09-24 15:31:23,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:26,393 INFO Connection check task start + +2025-09-24 15:31:26,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:26,393 INFO Out dated connection ,size=0 + +2025-09-24 15:31:26,393 INFO Connection check task end + +2025-09-24 15:31:26,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:29,394 INFO Connection check task start + +2025-09-24 15:31:29,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:29,394 INFO Out dated connection ,size=0 + +2025-09-24 15:31:29,394 INFO Connection check task end + +2025-09-24 15:31:29,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:32,395 INFO Connection check task start + +2025-09-24 15:31:32,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:32,395 INFO Out dated connection ,size=0 + +2025-09-24 15:31:32,395 INFO Connection check task end + +2025-09-24 15:31:32,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:35,396 INFO Connection check task start + +2025-09-24 15:31:35,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:35,396 INFO Out dated connection ,size=0 + +2025-09-24 15:31:35,396 INFO Connection check task end + +2025-09-24 15:31:35,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:38,397 INFO Connection check task start + +2025-09-24 15:31:38,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:38,397 INFO Out dated connection ,size=0 + +2025-09-24 15:31:38,397 INFO Connection check task end + +2025-09-24 15:31:38,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:41,398 INFO Connection check task start + +2025-09-24 15:31:41,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:41,398 INFO Out dated connection ,size=0 + +2025-09-24 15:31:41,398 INFO Connection check task end + +2025-09-24 15:31:41,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:44,399 INFO Connection check task start + +2025-09-24 15:31:44,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:44,399 INFO Out dated connection ,size=0 + +2025-09-24 15:31:44,399 INFO Connection check task end + +2025-09-24 15:31:44,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:47,400 INFO Connection check task start + +2025-09-24 15:31:47,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:47,400 INFO Out dated connection ,size=0 + +2025-09-24 15:31:47,400 INFO Connection check task end + +2025-09-24 15:31:47,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:50,401 INFO Connection check task start + +2025-09-24 15:31:50,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:50,401 INFO Out dated connection ,size=0 + +2025-09-24 15:31:50,401 INFO Connection check task end + +2025-09-24 15:31:50,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:53,402 INFO Connection check task start + +2025-09-24 15:31:53,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:53,402 INFO Out dated connection ,size=0 + +2025-09-24 15:31:53,402 INFO Connection check task end + +2025-09-24 15:31:53,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:56,402 INFO Connection check task start + +2025-09-24 15:31:56,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:56,402 INFO Out dated connection ,size=0 + +2025-09-24 15:31:56,402 INFO Connection check task end + +2025-09-24 15:31:56,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:31:59,402 INFO Connection check task start + +2025-09-24 15:31:59,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:31:59,403 INFO Out dated connection ,size=0 + +2025-09-24 15:31:59,403 INFO Connection check task end + +2025-09-24 15:31:59,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:02,404 INFO Connection check task start + +2025-09-24 15:32:02,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:02,405 INFO Out dated connection ,size=0 + +2025-09-24 15:32:02,405 INFO Connection check task end + +2025-09-24 15:32:02,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:05,406 INFO Connection check task start + +2025-09-24 15:32:05,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:05,406 INFO Out dated connection ,size=0 + +2025-09-24 15:32:05,406 INFO Connection check task end + +2025-09-24 15:32:05,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:08,408 INFO Connection check task start + +2025-09-24 15:32:08,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:08,408 INFO Out dated connection ,size=0 + +2025-09-24 15:32:08,408 INFO Connection check task end + +2025-09-24 15:32:08,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:11,408 INFO Connection check task start + +2025-09-24 15:32:11,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:11,408 INFO Out dated connection ,size=0 + +2025-09-24 15:32:11,408 INFO Connection check task end + +2025-09-24 15:32:11,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:14,408 INFO Connection check task start + +2025-09-24 15:32:14,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:14,409 INFO Out dated connection ,size=0 + +2025-09-24 15:32:14,409 INFO Connection check task end + +2025-09-24 15:32:14,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:17,410 INFO Connection check task start + +2025-09-24 15:32:17,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:17,410 INFO Out dated connection ,size=0 + +2025-09-24 15:32:17,410 INFO Connection check task end + +2025-09-24 15:32:17,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:20,410 INFO Connection check task start + +2025-09-24 15:32:20,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:20,411 INFO Out dated connection ,size=0 + +2025-09-24 15:32:20,411 INFO Connection check task end + +2025-09-24 15:32:20,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:23,411 INFO Connection check task start + +2025-09-24 15:32:23,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:23,412 INFO Out dated connection ,size=0 + +2025-09-24 15:32:23,412 INFO Connection check task end + +2025-09-24 15:32:23,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:26,412 INFO Connection check task start + +2025-09-24 15:32:26,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:26,412 INFO Out dated connection ,size=0 + +2025-09-24 15:32:26,412 INFO Connection check task end + +2025-09-24 15:32:26,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:29,413 INFO Connection check task start + +2025-09-24 15:32:29,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:29,413 INFO Out dated connection ,size=0 + +2025-09-24 15:32:29,413 INFO Connection check task end + +2025-09-24 15:32:29,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:32,413 INFO Connection check task start + +2025-09-24 15:32:32,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:32,413 INFO Out dated connection ,size=0 + +2025-09-24 15:32:32,413 INFO Connection check task end + +2025-09-24 15:32:32,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:35,414 INFO Connection check task start + +2025-09-24 15:32:35,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:35,414 INFO Out dated connection ,size=0 + +2025-09-24 15:32:35,414 INFO Connection check task end + +2025-09-24 15:32:35,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:38,415 INFO Connection check task start + +2025-09-24 15:32:38,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:38,415 INFO Out dated connection ,size=0 + +2025-09-24 15:32:38,415 INFO Connection check task end + +2025-09-24 15:32:38,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:41,416 INFO Connection check task start + +2025-09-24 15:32:41,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:41,416 INFO Out dated connection ,size=0 + +2025-09-24 15:32:41,416 INFO Connection check task end + +2025-09-24 15:32:41,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:44,416 INFO Connection check task start + +2025-09-24 15:32:44,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:44,416 INFO Out dated connection ,size=0 + +2025-09-24 15:32:44,416 INFO Connection check task end + +2025-09-24 15:32:44,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:47,417 INFO Connection check task start + +2025-09-24 15:32:47,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:47,417 INFO Out dated connection ,size=0 + +2025-09-24 15:32:47,417 INFO Connection check task end + +2025-09-24 15:32:47,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:50,417 INFO Connection check task start + +2025-09-24 15:32:50,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:50,418 INFO Out dated connection ,size=0 + +2025-09-24 15:32:50,418 INFO Connection check task end + +2025-09-24 15:32:50,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:53,418 INFO Connection check task start + +2025-09-24 15:32:53,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:53,419 INFO Out dated connection ,size=0 + +2025-09-24 15:32:53,419 INFO Connection check task end + +2025-09-24 15:32:53,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:56,419 INFO Connection check task start + +2025-09-24 15:32:56,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:56,419 INFO Out dated connection ,size=0 + +2025-09-24 15:32:56,419 INFO Connection check task end + +2025-09-24 15:32:56,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:32:59,421 INFO Connection check task start + +2025-09-24 15:32:59,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:32:59,421 INFO Out dated connection ,size=0 + +2025-09-24 15:32:59,421 INFO Connection check task end + +2025-09-24 15:32:59,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:02,421 INFO Connection check task start + +2025-09-24 15:33:02,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:02,421 INFO Out dated connection ,size=0 + +2025-09-24 15:33:02,422 INFO Connection check task end + +2025-09-24 15:33:02,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:05,422 INFO Connection check task start + +2025-09-24 15:33:05,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:05,422 INFO Out dated connection ,size=0 + +2025-09-24 15:33:05,422 INFO Connection check task end + +2025-09-24 15:33:05,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:08,422 INFO Connection check task start + +2025-09-24 15:33:08,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:08,422 INFO Out dated connection ,size=0 + +2025-09-24 15:33:08,422 INFO Connection check task end + +2025-09-24 15:33:08,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:11,423 INFO Connection check task start + +2025-09-24 15:33:11,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:11,423 INFO Out dated connection ,size=0 + +2025-09-24 15:33:11,423 INFO Connection check task end + +2025-09-24 15:33:11,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:14,423 INFO Connection check task start + +2025-09-24 15:33:14,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:14,423 INFO Out dated connection ,size=0 + +2025-09-24 15:33:14,423 INFO Connection check task end + +2025-09-24 15:33:14,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:17,424 INFO Connection check task start + +2025-09-24 15:33:17,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:17,425 INFO Out dated connection ,size=0 + +2025-09-24 15:33:17,425 INFO Connection check task end + +2025-09-24 15:33:17,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:20,425 INFO Connection check task start + +2025-09-24 15:33:20,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:20,425 INFO Out dated connection ,size=0 + +2025-09-24 15:33:20,425 INFO Connection check task end + +2025-09-24 15:33:20,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:23,427 INFO Connection check task start + +2025-09-24 15:33:23,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:23,427 INFO Out dated connection ,size=0 + +2025-09-24 15:33:23,428 INFO Connection check task end + +2025-09-24 15:33:23,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:26,429 INFO Connection check task start + +2025-09-24 15:33:26,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:26,429 INFO Out dated connection ,size=0 + +2025-09-24 15:33:26,429 INFO Connection check task end + +2025-09-24 15:33:26,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:29,429 INFO Connection check task start + +2025-09-24 15:33:29,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:29,429 INFO Out dated connection ,size=0 + +2025-09-24 15:33:29,429 INFO Connection check task end + +2025-09-24 15:33:29,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:32,430 INFO Connection check task start + +2025-09-24 15:33:32,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:32,430 INFO Out dated connection ,size=0 + +2025-09-24 15:33:32,430 INFO Connection check task end + +2025-09-24 15:33:32,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:35,431 INFO Connection check task start + +2025-09-24 15:33:35,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:35,431 INFO Out dated connection ,size=0 + +2025-09-24 15:33:35,431 INFO Connection check task end + +2025-09-24 15:33:35,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:38,431 INFO Connection check task start + +2025-09-24 15:33:38,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:38,431 INFO Out dated connection ,size=0 + +2025-09-24 15:33:38,431 INFO Connection check task end + +2025-09-24 15:33:38,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:41,434 INFO Connection check task start + +2025-09-24 15:33:41,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:41,434 INFO Out dated connection ,size=0 + +2025-09-24 15:33:41,434 INFO Connection check task end + +2025-09-24 15:33:41,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:44,434 INFO Connection check task start + +2025-09-24 15:33:44,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:44,435 INFO Out dated connection ,size=0 + +2025-09-24 15:33:44,435 INFO Connection check task end + +2025-09-24 15:33:44,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:47,435 INFO Connection check task start + +2025-09-24 15:33:47,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:47,435 INFO Out dated connection ,size=0 + +2025-09-24 15:33:47,435 INFO Connection check task end + +2025-09-24 15:33:47,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:50,436 INFO Connection check task start + +2025-09-24 15:33:50,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:50,436 INFO Out dated connection ,size=0 + +2025-09-24 15:33:50,436 INFO Connection check task end + +2025-09-24 15:33:50,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:53,438 INFO Connection check task start + +2025-09-24 15:33:53,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:53,438 INFO Out dated connection ,size=0 + +2025-09-24 15:33:53,438 INFO Connection check task end + +2025-09-24 15:33:53,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:56,440 INFO Connection check task start + +2025-09-24 15:33:56,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:56,440 INFO Out dated connection ,size=0 + +2025-09-24 15:33:56,440 INFO Connection check task end + +2025-09-24 15:33:56,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:33:59,441 INFO Connection check task start + +2025-09-24 15:33:59,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:33:59,441 INFO Out dated connection ,size=0 + +2025-09-24 15:33:59,441 INFO Connection check task end + +2025-09-24 15:33:59,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:02,441 INFO Connection check task start + +2025-09-24 15:34:02,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:02,441 INFO Out dated connection ,size=0 + +2025-09-24 15:34:02,442 INFO Connection check task end + +2025-09-24 15:34:02,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:05,444 INFO Connection check task start + +2025-09-24 15:34:05,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:05,444 INFO Out dated connection ,size=0 + +2025-09-24 15:34:05,444 INFO Connection check task end + +2025-09-24 15:34:05,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:08,445 INFO Connection check task start + +2025-09-24 15:34:08,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:08,445 INFO Out dated connection ,size=0 + +2025-09-24 15:34:08,445 INFO Connection check task end + +2025-09-24 15:34:08,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:11,447 INFO Connection check task start + +2025-09-24 15:34:11,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:11,447 INFO Out dated connection ,size=0 + +2025-09-24 15:34:11,447 INFO Connection check task end + +2025-09-24 15:34:11,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:14,449 INFO Connection check task start + +2025-09-24 15:34:14,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:14,449 INFO Out dated connection ,size=0 + +2025-09-24 15:34:14,449 INFO Connection check task end + +2025-09-24 15:34:14,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:17,449 INFO Connection check task start + +2025-09-24 15:34:17,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:17,449 INFO Out dated connection ,size=0 + +2025-09-24 15:34:17,449 INFO Connection check task end + +2025-09-24 15:34:17,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:20,450 INFO Connection check task start + +2025-09-24 15:34:20,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:20,450 INFO Out dated connection ,size=0 + +2025-09-24 15:34:20,450 INFO Connection check task end + +2025-09-24 15:34:20,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:23,450 INFO Connection check task start + +2025-09-24 15:34:23,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:23,450 INFO Out dated connection ,size=0 + +2025-09-24 15:34:23,450 INFO Connection check task end + +2025-09-24 15:34:23,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:26,451 INFO Connection check task start + +2025-09-24 15:34:26,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:26,451 INFO Out dated connection ,size=0 + +2025-09-24 15:34:26,452 INFO Connection check task end + +2025-09-24 15:34:26,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:29,452 INFO Connection check task start + +2025-09-24 15:34:29,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:29,452 INFO Out dated connection ,size=0 + +2025-09-24 15:34:29,452 INFO Connection check task end + +2025-09-24 15:34:29,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:32,453 INFO Connection check task start + +2025-09-24 15:34:32,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:32,453 INFO Out dated connection ,size=0 + +2025-09-24 15:34:32,453 INFO Connection check task end + +2025-09-24 15:34:32,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:35,453 INFO Connection check task start + +2025-09-24 15:34:35,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:35,454 INFO Out dated connection ,size=0 + +2025-09-24 15:34:35,454 INFO Connection check task end + +2025-09-24 15:34:35,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:38,454 INFO Connection check task start + +2025-09-24 15:34:38,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:38,454 INFO Out dated connection ,size=0 + +2025-09-24 15:34:38,454 INFO Connection check task end + +2025-09-24 15:34:39,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:41,454 INFO Connection check task start + +2025-09-24 15:34:41,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:41,454 INFO Out dated connection ,size=0 + +2025-09-24 15:34:41,454 INFO Connection check task end + +2025-09-24 15:34:42,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:44,455 INFO Connection check task start + +2025-09-24 15:34:44,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:44,455 INFO Out dated connection ,size=0 + +2025-09-24 15:34:44,455 INFO Connection check task end + +2025-09-24 15:34:45,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:47,456 INFO Connection check task start + +2025-09-24 15:34:47,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:47,456 INFO Out dated connection ,size=0 + +2025-09-24 15:34:47,456 INFO Connection check task end + +2025-09-24 15:34:48,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:50,458 INFO Connection check task start + +2025-09-24 15:34:50,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:50,458 INFO Out dated connection ,size=0 + +2025-09-24 15:34:50,458 INFO Connection check task end + +2025-09-24 15:34:51,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:53,459 INFO Connection check task start + +2025-09-24 15:34:53,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:53,460 INFO Out dated connection ,size=0 + +2025-09-24 15:34:53,460 INFO Connection check task end + +2025-09-24 15:34:54,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:56,460 INFO Connection check task start + +2025-09-24 15:34:56,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:56,461 INFO Out dated connection ,size=0 + +2025-09-24 15:34:56,461 INFO Connection check task end + +2025-09-24 15:34:57,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:34:59,461 INFO Connection check task start + +2025-09-24 15:34:59,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:34:59,461 INFO Out dated connection ,size=0 + +2025-09-24 15:34:59,461 INFO Connection check task end + +2025-09-24 15:35:00,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:02,464 INFO Connection check task start + +2025-09-24 15:35:02,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:02,464 INFO Out dated connection ,size=0 + +2025-09-24 15:35:02,464 INFO Connection check task end + +2025-09-24 15:35:03,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:05,466 INFO Connection check task start + +2025-09-24 15:35:05,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:05,466 INFO Out dated connection ,size=0 + +2025-09-24 15:35:05,466 INFO Connection check task end + +2025-09-24 15:35:06,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:08,467 INFO Connection check task start + +2025-09-24 15:35:08,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:08,467 INFO Out dated connection ,size=0 + +2025-09-24 15:35:08,467 INFO Connection check task end + +2025-09-24 15:35:09,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:11,469 INFO Connection check task start + +2025-09-24 15:35:11,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:11,469 INFO Out dated connection ,size=0 + +2025-09-24 15:35:11,469 INFO Connection check task end + +2025-09-24 15:35:12,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:14,470 INFO Connection check task start + +2025-09-24 15:35:14,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:14,470 INFO Out dated connection ,size=0 + +2025-09-24 15:35:14,470 INFO Connection check task end + +2025-09-24 15:35:15,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:17,472 INFO Connection check task start + +2025-09-24 15:35:17,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:17,472 INFO Out dated connection ,size=0 + +2025-09-24 15:35:17,472 INFO Connection check task end + +2025-09-24 15:35:18,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:20,473 INFO Connection check task start + +2025-09-24 15:35:20,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:20,473 INFO Out dated connection ,size=0 + +2025-09-24 15:35:20,473 INFO Connection check task end + +2025-09-24 15:35:21,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:23,474 INFO Connection check task start + +2025-09-24 15:35:23,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:23,474 INFO Out dated connection ,size=0 + +2025-09-24 15:35:23,474 INFO Connection check task end + +2025-09-24 15:35:24,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:26,475 INFO Connection check task start + +2025-09-24 15:35:26,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:26,476 INFO Out dated connection ,size=0 + +2025-09-24 15:35:26,476 INFO Connection check task end + +2025-09-24 15:35:27,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:29,478 INFO Connection check task start + +2025-09-24 15:35:29,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:29,478 INFO Out dated connection ,size=0 + +2025-09-24 15:35:29,478 INFO Connection check task end + +2025-09-24 15:35:30,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:32,478 INFO Connection check task start + +2025-09-24 15:35:32,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:32,478 INFO Out dated connection ,size=0 + +2025-09-24 15:35:32,478 INFO Connection check task end + +2025-09-24 15:35:33,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:35,479 INFO Connection check task start + +2025-09-24 15:35:35,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:35,479 INFO Out dated connection ,size=0 + +2025-09-24 15:35:35,479 INFO Connection check task end + +2025-09-24 15:35:36,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:38,480 INFO Connection check task start + +2025-09-24 15:35:38,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:38,480 INFO Out dated connection ,size=0 + +2025-09-24 15:35:38,480 INFO Connection check task end + +2025-09-24 15:35:39,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:41,482 INFO Connection check task start + +2025-09-24 15:35:41,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:41,483 INFO Out dated connection ,size=0 + +2025-09-24 15:35:41,483 INFO Connection check task end + +2025-09-24 15:35:42,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:44,483 INFO Connection check task start + +2025-09-24 15:35:44,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:44,483 INFO Out dated connection ,size=0 + +2025-09-24 15:35:44,483 INFO Connection check task end + +2025-09-24 15:35:45,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:47,484 INFO Connection check task start + +2025-09-24 15:35:47,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:47,485 INFO Out dated connection ,size=0 + +2025-09-24 15:35:47,485 INFO Connection check task end + +2025-09-24 15:35:48,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:50,485 INFO Connection check task start + +2025-09-24 15:35:50,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:50,485 INFO Out dated connection ,size=0 + +2025-09-24 15:35:50,485 INFO Connection check task end + +2025-09-24 15:35:51,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:53,487 INFO Connection check task start + +2025-09-24 15:35:53,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:53,488 INFO Out dated connection ,size=0 + +2025-09-24 15:35:53,488 INFO Connection check task end + +2025-09-24 15:35:54,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:56,489 INFO Connection check task start + +2025-09-24 15:35:56,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:56,489 INFO Out dated connection ,size=0 + +2025-09-24 15:35:56,489 INFO Connection check task end + +2025-09-24 15:35:57,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:35:59,489 INFO Connection check task start + +2025-09-24 15:35:59,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:35:59,490 INFO Out dated connection ,size=0 + +2025-09-24 15:35:59,490 INFO Connection check task end + +2025-09-24 15:36:00,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:02,490 INFO Connection check task start + +2025-09-24 15:36:02,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:02,491 INFO Out dated connection ,size=0 + +2025-09-24 15:36:02,491 INFO Connection check task end + +2025-09-24 15:36:03,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:05,491 INFO Connection check task start + +2025-09-24 15:36:05,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:05,491 INFO Out dated connection ,size=0 + +2025-09-24 15:36:05,491 INFO Connection check task end + +2025-09-24 15:36:06,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:08,492 INFO Connection check task start + +2025-09-24 15:36:08,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:08,492 INFO Out dated connection ,size=0 + +2025-09-24 15:36:08,492 INFO Connection check task end + +2025-09-24 15:36:09,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:11,492 INFO Connection check task start + +2025-09-24 15:36:11,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:11,493 INFO Out dated connection ,size=0 + +2025-09-24 15:36:11,493 INFO Connection check task end + +2025-09-24 15:36:12,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:14,493 INFO Connection check task start + +2025-09-24 15:36:14,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:14,493 INFO Out dated connection ,size=0 + +2025-09-24 15:36:14,493 INFO Connection check task end + +2025-09-24 15:36:15,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:17,494 INFO Connection check task start + +2025-09-24 15:36:17,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:17,494 INFO Out dated connection ,size=0 + +2025-09-24 15:36:17,494 INFO Connection check task end + +2025-09-24 15:36:18,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:20,496 INFO Connection check task start + +2025-09-24 15:36:20,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:20,496 INFO Out dated connection ,size=0 + +2025-09-24 15:36:20,496 INFO Connection check task end + +2025-09-24 15:36:21,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:23,497 INFO Connection check task start + +2025-09-24 15:36:23,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:23,498 INFO Out dated connection ,size=0 + +2025-09-24 15:36:23,498 INFO Connection check task end + +2025-09-24 15:36:24,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:26,498 INFO Connection check task start + +2025-09-24 15:36:26,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:26,498 INFO Out dated connection ,size=0 + +2025-09-24 15:36:26,498 INFO Connection check task end + +2025-09-24 15:36:27,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:29,498 INFO Connection check task start + +2025-09-24 15:36:29,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:29,499 INFO Out dated connection ,size=0 + +2025-09-24 15:36:29,499 INFO Connection check task end + +2025-09-24 15:36:30,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:32,501 INFO Connection check task start + +2025-09-24 15:36:32,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:32,501 INFO Out dated connection ,size=0 + +2025-09-24 15:36:32,501 INFO Connection check task end + +2025-09-24 15:36:33,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:35,501 INFO Connection check task start + +2025-09-24 15:36:35,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:35,501 INFO Out dated connection ,size=0 + +2025-09-24 15:36:35,501 INFO Connection check task end + +2025-09-24 15:36:36,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:38,501 INFO Connection check task start + +2025-09-24 15:36:38,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:38,502 INFO Out dated connection ,size=0 + +2025-09-24 15:36:38,502 INFO Connection check task end + +2025-09-24 15:36:39,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:41,503 INFO Connection check task start + +2025-09-24 15:36:41,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:41,503 INFO Out dated connection ,size=0 + +2025-09-24 15:36:41,503 INFO Connection check task end + +2025-09-24 15:36:42,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:44,505 INFO Connection check task start + +2025-09-24 15:36:44,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:44,505 INFO Out dated connection ,size=0 + +2025-09-24 15:36:44,506 INFO Connection check task end + +2025-09-24 15:36:45,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:47,507 INFO Connection check task start + +2025-09-24 15:36:47,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:47,507 INFO Out dated connection ,size=0 + +2025-09-24 15:36:47,507 INFO Connection check task end + +2025-09-24 15:36:48,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:50,507 INFO Connection check task start + +2025-09-24 15:36:50,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:50,508 INFO Out dated connection ,size=0 + +2025-09-24 15:36:50,508 INFO Connection check task end + +2025-09-24 15:36:51,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:53,510 INFO Connection check task start + +2025-09-24 15:36:53,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:53,510 INFO Out dated connection ,size=0 + +2025-09-24 15:36:53,510 INFO Connection check task end + +2025-09-24 15:36:54,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:56,512 INFO Connection check task start + +2025-09-24 15:36:56,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:56,512 INFO Out dated connection ,size=0 + +2025-09-24 15:36:56,512 INFO Connection check task end + +2025-09-24 15:36:57,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:36:59,512 INFO Connection check task start + +2025-09-24 15:36:59,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:36:59,513 INFO Out dated connection ,size=0 + +2025-09-24 15:36:59,513 INFO Connection check task end + +2025-09-24 15:37:00,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:02,513 INFO Connection check task start + +2025-09-24 15:37:02,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:02,513 INFO Out dated connection ,size=0 + +2025-09-24 15:37:02,513 INFO Connection check task end + +2025-09-24 15:37:03,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:05,514 INFO Connection check task start + +2025-09-24 15:37:05,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:05,515 INFO Out dated connection ,size=0 + +2025-09-24 15:37:05,515 INFO Connection check task end + +2025-09-24 15:37:06,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:08,517 INFO Connection check task start + +2025-09-24 15:37:08,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:08,517 INFO Out dated connection ,size=0 + +2025-09-24 15:37:08,517 INFO Connection check task end + +2025-09-24 15:37:09,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:11,519 INFO Connection check task start + +2025-09-24 15:37:11,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:11,519 INFO Out dated connection ,size=0 + +2025-09-24 15:37:11,519 INFO Connection check task end + +2025-09-24 15:37:12,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:14,520 INFO Connection check task start + +2025-09-24 15:37:14,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:14,520 INFO Out dated connection ,size=0 + +2025-09-24 15:37:14,520 INFO Connection check task end + +2025-09-24 15:37:15,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:17,520 INFO Connection check task start + +2025-09-24 15:37:17,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:17,521 INFO Out dated connection ,size=0 + +2025-09-24 15:37:17,521 INFO Connection check task end + +2025-09-24 15:37:18,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:20,523 INFO Connection check task start + +2025-09-24 15:37:20,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:20,523 INFO Out dated connection ,size=0 + +2025-09-24 15:37:20,523 INFO Connection check task end + +2025-09-24 15:37:21,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:23,525 INFO Connection check task start + +2025-09-24 15:37:23,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:23,526 INFO Out dated connection ,size=0 + +2025-09-24 15:37:23,526 INFO Connection check task end + +2025-09-24 15:37:24,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:26,526 INFO Connection check task start + +2025-09-24 15:37:26,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:26,526 INFO Out dated connection ,size=0 + +2025-09-24 15:37:26,526 INFO Connection check task end + +2025-09-24 15:37:27,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:29,529 INFO Connection check task start + +2025-09-24 15:37:29,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:29,529 INFO Out dated connection ,size=0 + +2025-09-24 15:37:29,529 INFO Connection check task end + +2025-09-24 15:37:30,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:32,530 INFO Connection check task start + +2025-09-24 15:37:32,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:32,530 INFO Out dated connection ,size=0 + +2025-09-24 15:37:32,530 INFO Connection check task end + +2025-09-24 15:37:33,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:35,530 INFO Connection check task start + +2025-09-24 15:37:35,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:35,530 INFO Out dated connection ,size=0 + +2025-09-24 15:37:35,530 INFO Connection check task end + +2025-09-24 15:37:36,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:38,531 INFO Connection check task start + +2025-09-24 15:37:38,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:38,531 INFO Out dated connection ,size=0 + +2025-09-24 15:37:38,531 INFO Connection check task end + +2025-09-24 15:37:39,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:41,532 INFO Connection check task start + +2025-09-24 15:37:41,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:41,532 INFO Out dated connection ,size=0 + +2025-09-24 15:37:41,532 INFO Connection check task end + +2025-09-24 15:37:42,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:44,532 INFO Connection check task start + +2025-09-24 15:37:44,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:44,532 INFO Out dated connection ,size=0 + +2025-09-24 15:37:44,532 INFO Connection check task end + +2025-09-24 15:37:45,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:47,532 INFO Connection check task start + +2025-09-24 15:37:47,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:47,533 INFO Out dated connection ,size=0 + +2025-09-24 15:37:47,533 INFO Connection check task end + +2025-09-24 15:37:48,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:50,534 INFO Connection check task start + +2025-09-24 15:37:50,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:50,534 INFO Out dated connection ,size=0 + +2025-09-24 15:37:50,534 INFO Connection check task end + +2025-09-24 15:37:51,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:53,534 INFO Connection check task start + +2025-09-24 15:37:53,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:53,535 INFO Out dated connection ,size=0 + +2025-09-24 15:37:53,535 INFO Connection check task end + +2025-09-24 15:37:54,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:56,537 INFO Connection check task start + +2025-09-24 15:37:56,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:56,537 INFO Out dated connection ,size=0 + +2025-09-24 15:37:56,537 INFO Connection check task end + +2025-09-24 15:37:57,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:37:59,539 INFO Connection check task start + +2025-09-24 15:37:59,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:37:59,539 INFO Out dated connection ,size=0 + +2025-09-24 15:37:59,539 INFO Connection check task end + +2025-09-24 15:38:00,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:02,541 INFO Connection check task start + +2025-09-24 15:38:02,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:02,541 INFO Out dated connection ,size=0 + +2025-09-24 15:38:02,541 INFO Connection check task end + +2025-09-24 15:38:03,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:05,542 INFO Connection check task start + +2025-09-24 15:38:05,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:05,542 INFO Out dated connection ,size=0 + +2025-09-24 15:38:05,542 INFO Connection check task end + +2025-09-24 15:38:06,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:08,545 INFO Connection check task start + +2025-09-24 15:38:08,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:08,545 INFO Out dated connection ,size=0 + +2025-09-24 15:38:08,545 INFO Connection check task end + +2025-09-24 15:38:09,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:11,545 INFO Connection check task start + +2025-09-24 15:38:11,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:11,545 INFO Out dated connection ,size=0 + +2025-09-24 15:38:11,545 INFO Connection check task end + +2025-09-24 15:38:12,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:14,546 INFO Connection check task start + +2025-09-24 15:38:14,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:14,546 INFO Out dated connection ,size=0 + +2025-09-24 15:38:14,546 INFO Connection check task end + +2025-09-24 15:38:15,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:17,548 INFO Connection check task start + +2025-09-24 15:38:17,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:17,548 INFO Out dated connection ,size=0 + +2025-09-24 15:38:17,548 INFO Connection check task end + +2025-09-24 15:38:18,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:20,550 INFO Connection check task start + +2025-09-24 15:38:20,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:20,550 INFO Out dated connection ,size=0 + +2025-09-24 15:38:20,550 INFO Connection check task end + +2025-09-24 15:38:21,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:23,551 INFO Connection check task start + +2025-09-24 15:38:23,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:23,552 INFO Out dated connection ,size=0 + +2025-09-24 15:38:23,552 INFO Connection check task end + +2025-09-24 15:38:24,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:26,553 INFO Connection check task start + +2025-09-24 15:38:26,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:26,553 INFO Out dated connection ,size=0 + +2025-09-24 15:38:26,553 INFO Connection check task end + +2025-09-24 15:38:27,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:29,553 INFO Connection check task start + +2025-09-24 15:38:29,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:29,554 INFO Out dated connection ,size=0 + +2025-09-24 15:38:29,554 INFO Connection check task end + +2025-09-24 15:38:30,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:32,556 INFO Connection check task start + +2025-09-24 15:38:32,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:32,556 INFO Out dated connection ,size=0 + +2025-09-24 15:38:32,556 INFO Connection check task end + +2025-09-24 15:38:33,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:35,556 INFO Connection check task start + +2025-09-24 15:38:35,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:35,556 INFO Out dated connection ,size=0 + +2025-09-24 15:38:35,557 INFO Connection check task end + +2025-09-24 15:38:36,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:38,557 INFO Connection check task start + +2025-09-24 15:38:38,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:38,557 INFO Out dated connection ,size=0 + +2025-09-24 15:38:38,557 INFO Connection check task end + +2025-09-24 15:38:39,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:41,557 INFO Connection check task start + +2025-09-24 15:38:41,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:41,558 INFO Out dated connection ,size=0 + +2025-09-24 15:38:41,558 INFO Connection check task end + +2025-09-24 15:38:42,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:44,558 INFO Connection check task start + +2025-09-24 15:38:44,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:44,558 INFO Out dated connection ,size=0 + +2025-09-24 15:38:44,558 INFO Connection check task end + +2025-09-24 15:38:45,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:47,558 INFO Connection check task start + +2025-09-24 15:38:47,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:47,558 INFO Out dated connection ,size=0 + +2025-09-24 15:38:47,559 INFO Connection check task end + +2025-09-24 15:38:48,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:50,561 INFO Connection check task start + +2025-09-24 15:38:50,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:50,561 INFO Out dated connection ,size=0 + +2025-09-24 15:38:50,561 INFO Connection check task end + +2025-09-24 15:38:51,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:53,563 INFO Connection check task start + +2025-09-24 15:38:53,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:53,563 INFO Out dated connection ,size=0 + +2025-09-24 15:38:53,563 INFO Connection check task end + +2025-09-24 15:38:54,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:56,564 INFO Connection check task start + +2025-09-24 15:38:56,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:56,564 INFO Out dated connection ,size=0 + +2025-09-24 15:38:56,564 INFO Connection check task end + +2025-09-24 15:38:57,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:38:59,564 INFO Connection check task start + +2025-09-24 15:38:59,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:38:59,564 INFO Out dated connection ,size=0 + +2025-09-24 15:38:59,564 INFO Connection check task end + +2025-09-24 15:39:00,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:02,566 INFO Connection check task start + +2025-09-24 15:39:02,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:02,566 INFO Out dated connection ,size=0 + +2025-09-24 15:39:02,566 INFO Connection check task end + +2025-09-24 15:39:03,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:05,567 INFO Connection check task start + +2025-09-24 15:39:05,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:05,567 INFO Out dated connection ,size=0 + +2025-09-24 15:39:05,567 INFO Connection check task end + +2025-09-24 15:39:06,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:08,569 INFO Connection check task start + +2025-09-24 15:39:08,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:08,569 INFO Out dated connection ,size=0 + +2025-09-24 15:39:08,569 INFO Connection check task end + +2025-09-24 15:39:09,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:11,569 INFO Connection check task start + +2025-09-24 15:39:11,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:11,569 INFO Out dated connection ,size=0 + +2025-09-24 15:39:11,569 INFO Connection check task end + +2025-09-24 15:39:12,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:14,570 INFO Connection check task start + +2025-09-24 15:39:14,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:14,570 INFO Out dated connection ,size=0 + +2025-09-24 15:39:14,570 INFO Connection check task end + +2025-09-24 15:39:15,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:17,570 INFO Connection check task start + +2025-09-24 15:39:17,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:17,571 INFO Out dated connection ,size=0 + +2025-09-24 15:39:17,571 INFO Connection check task end + +2025-09-24 15:39:18,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:20,572 INFO Connection check task start + +2025-09-24 15:39:20,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:20,572 INFO Out dated connection ,size=0 + +2025-09-24 15:39:20,572 INFO Connection check task end + +2025-09-24 15:39:21,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:23,573 INFO Connection check task start + +2025-09-24 15:39:23,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:23,574 INFO Out dated connection ,size=0 + +2025-09-24 15:39:23,574 INFO Connection check task end + +2025-09-24 15:39:24,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:26,575 INFO Connection check task start + +2025-09-24 15:39:26,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:26,575 INFO Out dated connection ,size=0 + +2025-09-24 15:39:26,575 INFO Connection check task end + +2025-09-24 15:39:27,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:29,578 INFO Connection check task start + +2025-09-24 15:39:29,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:29,578 INFO Out dated connection ,size=0 + +2025-09-24 15:39:29,578 INFO Connection check task end + +2025-09-24 15:39:30,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:32,579 INFO Connection check task start + +2025-09-24 15:39:32,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:32,579 INFO Out dated connection ,size=0 + +2025-09-24 15:39:32,579 INFO Connection check task end + +2025-09-24 15:39:33,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:35,580 INFO Connection check task start + +2025-09-24 15:39:35,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:35,580 INFO Out dated connection ,size=0 + +2025-09-24 15:39:35,580 INFO Connection check task end + +2025-09-24 15:39:36,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:38,580 INFO Connection check task start + +2025-09-24 15:39:38,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:38,580 INFO Out dated connection ,size=0 + +2025-09-24 15:39:38,580 INFO Connection check task end + +2025-09-24 15:39:39,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:41,582 INFO Connection check task start + +2025-09-24 15:39:41,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:41,583 INFO Out dated connection ,size=0 + +2025-09-24 15:39:41,583 INFO Connection check task end + +2025-09-24 15:39:42,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:44,583 INFO Connection check task start + +2025-09-24 15:39:44,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:44,583 INFO Out dated connection ,size=0 + +2025-09-24 15:39:44,583 INFO Connection check task end + +2025-09-24 15:39:45,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:47,585 INFO Connection check task start + +2025-09-24 15:39:47,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:47,585 INFO Out dated connection ,size=0 + +2025-09-24 15:39:47,585 INFO Connection check task end + +2025-09-24 15:39:48,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:50,585 INFO Connection check task start + +2025-09-24 15:39:50,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:50,586 INFO Out dated connection ,size=0 + +2025-09-24 15:39:50,586 INFO Connection check task end + +2025-09-24 15:39:51,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:53,586 INFO Connection check task start + +2025-09-24 15:39:53,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:53,586 INFO Out dated connection ,size=0 + +2025-09-24 15:39:53,586 INFO Connection check task end + +2025-09-24 15:39:54,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:56,587 INFO Connection check task start + +2025-09-24 15:39:56,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:56,587 INFO Out dated connection ,size=0 + +2025-09-24 15:39:56,587 INFO Connection check task end + +2025-09-24 15:39:57,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:39:59,587 INFO Connection check task start + +2025-09-24 15:39:59,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:39:59,588 INFO Out dated connection ,size=0 + +2025-09-24 15:39:59,588 INFO Connection check task end + +2025-09-24 15:40:00,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:02,588 INFO Connection check task start + +2025-09-24 15:40:02,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:02,588 INFO Out dated connection ,size=0 + +2025-09-24 15:40:02,588 INFO Connection check task end + +2025-09-24 15:40:03,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:05,590 INFO Connection check task start + +2025-09-24 15:40:05,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:05,590 INFO Out dated connection ,size=0 + +2025-09-24 15:40:05,591 INFO Connection check task end + +2025-09-24 15:40:06,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:08,591 INFO Connection check task start + +2025-09-24 15:40:08,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:08,591 INFO Out dated connection ,size=0 + +2025-09-24 15:40:08,591 INFO Connection check task end + +2025-09-24 15:40:09,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:11,592 INFO Connection check task start + +2025-09-24 15:40:11,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:11,592 INFO Out dated connection ,size=0 + +2025-09-24 15:40:11,592 INFO Connection check task end + +2025-09-24 15:40:12,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:14,593 INFO Connection check task start + +2025-09-24 15:40:14,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:14,593 INFO Out dated connection ,size=0 + +2025-09-24 15:40:14,593 INFO Connection check task end + +2025-09-24 15:40:15,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:17,594 INFO Connection check task start + +2025-09-24 15:40:17,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:17,594 INFO Out dated connection ,size=0 + +2025-09-24 15:40:17,594 INFO Connection check task end + +2025-09-24 15:40:18,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:20,595 INFO Connection check task start + +2025-09-24 15:40:20,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:20,595 INFO Out dated connection ,size=0 + +2025-09-24 15:40:20,595 INFO Connection check task end + +2025-09-24 15:40:21,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:23,595 INFO Connection check task start + +2025-09-24 15:40:23,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:23,596 INFO Out dated connection ,size=0 + +2025-09-24 15:40:23,596 INFO Connection check task end + +2025-09-24 15:40:24,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:26,597 INFO Connection check task start + +2025-09-24 15:40:26,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:26,597 INFO Out dated connection ,size=0 + +2025-09-24 15:40:26,597 INFO Connection check task end + +2025-09-24 15:40:27,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:29,597 INFO Connection check task start + +2025-09-24 15:40:29,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:29,597 INFO Out dated connection ,size=0 + +2025-09-24 15:40:29,597 INFO Connection check task end + +2025-09-24 15:40:30,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:32,599 INFO Connection check task start + +2025-09-24 15:40:32,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:32,599 INFO Out dated connection ,size=0 + +2025-09-24 15:40:32,599 INFO Connection check task end + +2025-09-24 15:40:33,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:35,601 INFO Connection check task start + +2025-09-24 15:40:35,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:35,601 INFO Out dated connection ,size=0 + +2025-09-24 15:40:35,602 INFO Connection check task end + +2025-09-24 15:40:36,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:38,602 INFO Connection check task start + +2025-09-24 15:40:38,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:38,602 INFO Out dated connection ,size=0 + +2025-09-24 15:40:38,602 INFO Connection check task end + +2025-09-24 15:40:39,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:41,603 INFO Connection check task start + +2025-09-24 15:40:41,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:41,603 INFO Out dated connection ,size=0 + +2025-09-24 15:40:41,604 INFO Connection check task end + +2025-09-24 15:40:42,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:44,604 INFO Connection check task start + +2025-09-24 15:40:44,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:44,604 INFO Out dated connection ,size=0 + +2025-09-24 15:40:44,604 INFO Connection check task end + +2025-09-24 15:40:45,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:47,605 INFO Connection check task start + +2025-09-24 15:40:47,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:47,605 INFO Out dated connection ,size=0 + +2025-09-24 15:40:47,605 INFO Connection check task end + +2025-09-24 15:40:48,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:50,605 INFO Connection check task start + +2025-09-24 15:40:50,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:50,606 INFO Out dated connection ,size=0 + +2025-09-24 15:40:50,606 INFO Connection check task end + +2025-09-24 15:40:51,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:53,606 INFO Connection check task start + +2025-09-24 15:40:53,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:53,606 INFO Out dated connection ,size=0 + +2025-09-24 15:40:53,606 INFO Connection check task end + +2025-09-24 15:40:54,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:56,607 INFO Connection check task start + +2025-09-24 15:40:56,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:56,607 INFO Out dated connection ,size=0 + +2025-09-24 15:40:56,607 INFO Connection check task end + +2025-09-24 15:40:57,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:40:59,607 INFO Connection check task start + +2025-09-24 15:40:59,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:40:59,607 INFO Out dated connection ,size=0 + +2025-09-24 15:40:59,607 INFO Connection check task end + +2025-09-24 15:41:00,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:02,609 INFO Connection check task start + +2025-09-24 15:41:02,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:02,609 INFO Out dated connection ,size=0 + +2025-09-24 15:41:02,609 INFO Connection check task end + +2025-09-24 15:41:03,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:05,611 INFO Connection check task start + +2025-09-24 15:41:05,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:05,611 INFO Out dated connection ,size=0 + +2025-09-24 15:41:05,611 INFO Connection check task end + +2025-09-24 15:41:06,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:08,613 INFO Connection check task start + +2025-09-24 15:41:08,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:08,613 INFO Out dated connection ,size=0 + +2025-09-24 15:41:08,613 INFO Connection check task end + +2025-09-24 15:41:09,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:11,614 INFO Connection check task start + +2025-09-24 15:41:11,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:11,614 INFO Out dated connection ,size=0 + +2025-09-24 15:41:11,614 INFO Connection check task end + +2025-09-24 15:41:12,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:14,615 INFO Connection check task start + +2025-09-24 15:41:14,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:14,615 INFO Out dated connection ,size=0 + +2025-09-24 15:41:14,615 INFO Connection check task end + +2025-09-24 15:41:15,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:17,615 INFO Connection check task start + +2025-09-24 15:41:17,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:17,616 INFO Out dated connection ,size=0 + +2025-09-24 15:41:17,616 INFO Connection check task end + +2025-09-24 15:41:18,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:20,616 INFO Connection check task start + +2025-09-24 15:41:20,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:20,616 INFO Out dated connection ,size=0 + +2025-09-24 15:41:20,616 INFO Connection check task end + +2025-09-24 15:41:21,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:23,618 INFO Connection check task start + +2025-09-24 15:41:23,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:23,618 INFO Out dated connection ,size=0 + +2025-09-24 15:41:23,618 INFO Connection check task end + +2025-09-24 15:41:24,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:26,620 INFO Connection check task start + +2025-09-24 15:41:26,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:26,620 INFO Out dated connection ,size=0 + +2025-09-24 15:41:26,620 INFO Connection check task end + +2025-09-24 15:41:27,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:29,621 INFO Connection check task start + +2025-09-24 15:41:29,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:29,621 INFO Out dated connection ,size=0 + +2025-09-24 15:41:29,621 INFO Connection check task end + +2025-09-24 15:41:30,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:32,623 INFO Connection check task start + +2025-09-24 15:41:32,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:32,623 INFO Out dated connection ,size=0 + +2025-09-24 15:41:32,624 INFO Connection check task end + +2025-09-24 15:41:33,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:35,625 INFO Connection check task start + +2025-09-24 15:41:35,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:35,625 INFO Out dated connection ,size=0 + +2025-09-24 15:41:35,625 INFO Connection check task end + +2025-09-24 15:41:36,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:38,626 INFO Connection check task start + +2025-09-24 15:41:38,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:38,626 INFO Out dated connection ,size=0 + +2025-09-24 15:41:38,626 INFO Connection check task end + +2025-09-24 15:41:39,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:41,626 INFO Connection check task start + +2025-09-24 15:41:41,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:41,626 INFO Out dated connection ,size=0 + +2025-09-24 15:41:41,626 INFO Connection check task end + +2025-09-24 15:41:42,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:44,627 INFO Connection check task start + +2025-09-24 15:41:44,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:44,627 INFO Out dated connection ,size=0 + +2025-09-24 15:41:44,627 INFO Connection check task end + +2025-09-24 15:41:45,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:47,627 INFO Connection check task start + +2025-09-24 15:41:47,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:47,627 INFO Out dated connection ,size=0 + +2025-09-24 15:41:47,627 INFO Connection check task end + +2025-09-24 15:41:48,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:50,629 INFO Connection check task start + +2025-09-24 15:41:50,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:50,629 INFO Out dated connection ,size=0 + +2025-09-24 15:41:50,629 INFO Connection check task end + +2025-09-24 15:41:51,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:53,630 INFO Connection check task start + +2025-09-24 15:41:53,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:53,630 INFO Out dated connection ,size=0 + +2025-09-24 15:41:53,630 INFO Connection check task end + +2025-09-24 15:41:54,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:56,630 INFO Connection check task start + +2025-09-24 15:41:56,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:56,631 INFO Out dated connection ,size=0 + +2025-09-24 15:41:56,631 INFO Connection check task end + +2025-09-24 15:41:57,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:41:59,632 INFO Connection check task start + +2025-09-24 15:41:59,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:41:59,632 INFO Out dated connection ,size=0 + +2025-09-24 15:41:59,632 INFO Connection check task end + +2025-09-24 15:42:00,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:02,633 INFO Connection check task start + +2025-09-24 15:42:02,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:02,633 INFO Out dated connection ,size=0 + +2025-09-24 15:42:02,633 INFO Connection check task end + +2025-09-24 15:42:03,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:05,633 INFO Connection check task start + +2025-09-24 15:42:05,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:05,633 INFO Out dated connection ,size=0 + +2025-09-24 15:42:05,633 INFO Connection check task end + +2025-09-24 15:42:06,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:08,634 INFO Connection check task start + +2025-09-24 15:42:08,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:08,634 INFO Out dated connection ,size=0 + +2025-09-24 15:42:08,634 INFO Connection check task end + +2025-09-24 15:42:09,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:11,634 INFO Connection check task start + +2025-09-24 15:42:11,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:11,635 INFO Out dated connection ,size=0 + +2025-09-24 15:42:11,635 INFO Connection check task end + +2025-09-24 15:42:12,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:14,635 INFO Connection check task start + +2025-09-24 15:42:14,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:14,635 INFO Out dated connection ,size=0 + +2025-09-24 15:42:14,636 INFO Connection check task end + +2025-09-24 15:42:15,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:17,636 INFO Connection check task start + +2025-09-24 15:42:17,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:17,636 INFO Out dated connection ,size=0 + +2025-09-24 15:42:17,636 INFO Connection check task end + +2025-09-24 15:42:18,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:20,637 INFO Connection check task start + +2025-09-24 15:42:20,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:20,637 INFO Out dated connection ,size=0 + +2025-09-24 15:42:20,637 INFO Connection check task end + +2025-09-24 15:42:21,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:23,637 INFO Connection check task start + +2025-09-24 15:42:23,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:23,638 INFO Out dated connection ,size=0 + +2025-09-24 15:42:23,638 INFO Connection check task end + +2025-09-24 15:42:24,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:26,639 INFO Connection check task start + +2025-09-24 15:42:26,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:26,639 INFO Out dated connection ,size=0 + +2025-09-24 15:42:26,639 INFO Connection check task end + +2025-09-24 15:42:27,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:29,640 INFO Connection check task start + +2025-09-24 15:42:29,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:29,640 INFO Out dated connection ,size=0 + +2025-09-24 15:42:29,640 INFO Connection check task end + +2025-09-24 15:42:30,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:32,642 INFO Connection check task start + +2025-09-24 15:42:32,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:32,642 INFO Out dated connection ,size=0 + +2025-09-24 15:42:32,642 INFO Connection check task end + +2025-09-24 15:42:33,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:35,645 INFO Connection check task start + +2025-09-24 15:42:35,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:35,645 INFO Out dated connection ,size=0 + +2025-09-24 15:42:35,645 INFO Connection check task end + +2025-09-24 15:42:36,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:38,645 INFO Connection check task start + +2025-09-24 15:42:38,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:38,645 INFO Out dated connection ,size=0 + +2025-09-24 15:42:38,646 INFO Connection check task end + +2025-09-24 15:42:39,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:41,646 INFO Connection check task start + +2025-09-24 15:42:41,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:41,646 INFO Out dated connection ,size=0 + +2025-09-24 15:42:41,646 INFO Connection check task end + +2025-09-24 15:42:42,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:44,647 INFO Connection check task start + +2025-09-24 15:42:44,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:44,647 INFO Out dated connection ,size=0 + +2025-09-24 15:42:44,647 INFO Connection check task end + +2025-09-24 15:42:45,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:47,649 INFO Connection check task start + +2025-09-24 15:42:47,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:47,650 INFO Out dated connection ,size=0 + +2025-09-24 15:42:47,650 INFO Connection check task end + +2025-09-24 15:42:48,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:50,650 INFO Connection check task start + +2025-09-24 15:42:50,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:50,650 INFO Out dated connection ,size=0 + +2025-09-24 15:42:50,650 INFO Connection check task end + +2025-09-24 15:42:51,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:53,651 INFO Connection check task start + +2025-09-24 15:42:53,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:53,651 INFO Out dated connection ,size=0 + +2025-09-24 15:42:53,651 INFO Connection check task end + +2025-09-24 15:42:54,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:56,653 INFO Connection check task start + +2025-09-24 15:42:56,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:56,653 INFO Out dated connection ,size=0 + +2025-09-24 15:42:56,653 INFO Connection check task end + +2025-09-24 15:42:57,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:42:59,653 INFO Connection check task start + +2025-09-24 15:42:59,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:42:59,654 INFO Out dated connection ,size=0 + +2025-09-24 15:42:59,654 INFO Connection check task end + +2025-09-24 15:43:00,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:02,654 INFO Connection check task start + +2025-09-24 15:43:02,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:02,654 INFO Out dated connection ,size=0 + +2025-09-24 15:43:02,654 INFO Connection check task end + +2025-09-24 15:43:03,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:05,656 INFO Connection check task start + +2025-09-24 15:43:05,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:05,656 INFO Out dated connection ,size=0 + +2025-09-24 15:43:05,656 INFO Connection check task end + +2025-09-24 15:43:06,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:08,657 INFO Connection check task start + +2025-09-24 15:43:08,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:08,657 INFO Out dated connection ,size=0 + +2025-09-24 15:43:08,657 INFO Connection check task end + +2025-09-24 15:43:09,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:11,659 INFO Connection check task start + +2025-09-24 15:43:11,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:11,659 INFO Out dated connection ,size=0 + +2025-09-24 15:43:11,659 INFO Connection check task end + +2025-09-24 15:43:12,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:14,660 INFO Connection check task start + +2025-09-24 15:43:14,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:14,660 INFO Out dated connection ,size=0 + +2025-09-24 15:43:14,660 INFO Connection check task end + +2025-09-24 15:43:15,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:17,662 INFO Connection check task start + +2025-09-24 15:43:17,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:17,662 INFO Out dated connection ,size=0 + +2025-09-24 15:43:17,662 INFO Connection check task end + +2025-09-24 15:43:18,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:20,664 INFO Connection check task start + +2025-09-24 15:43:20,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:20,664 INFO Out dated connection ,size=0 + +2025-09-24 15:43:20,664 INFO Connection check task end + +2025-09-24 15:43:21,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:23,666 INFO Connection check task start + +2025-09-24 15:43:23,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:23,667 INFO Out dated connection ,size=0 + +2025-09-24 15:43:23,667 INFO Connection check task end + +2025-09-24 15:43:24,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:26,668 INFO Connection check task start + +2025-09-24 15:43:26,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:26,668 INFO Out dated connection ,size=0 + +2025-09-24 15:43:26,668 INFO Connection check task end + +2025-09-24 15:43:27,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:29,668 INFO Connection check task start + +2025-09-24 15:43:29,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:29,669 INFO Out dated connection ,size=0 + +2025-09-24 15:43:29,669 INFO Connection check task end + +2025-09-24 15:43:30,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:32,669 INFO Connection check task start + +2025-09-24 15:43:32,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:32,669 INFO Out dated connection ,size=0 + +2025-09-24 15:43:32,669 INFO Connection check task end + +2025-09-24 15:43:33,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:35,670 INFO Connection check task start + +2025-09-24 15:43:35,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:35,670 INFO Out dated connection ,size=0 + +2025-09-24 15:43:35,670 INFO Connection check task end + +2025-09-24 15:43:36,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:38,671 INFO Connection check task start + +2025-09-24 15:43:38,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:38,672 INFO Out dated connection ,size=0 + +2025-09-24 15:43:38,672 INFO Connection check task end + +2025-09-24 15:43:39,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:41,674 INFO Connection check task start + +2025-09-24 15:43:41,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:41,674 INFO Out dated connection ,size=0 + +2025-09-24 15:43:41,674 INFO Connection check task end + +2025-09-24 15:43:42,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:44,675 INFO Connection check task start + +2025-09-24 15:43:44,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:44,675 INFO Out dated connection ,size=0 + +2025-09-24 15:43:44,675 INFO Connection check task end + +2025-09-24 15:43:45,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:47,677 INFO Connection check task start + +2025-09-24 15:43:47,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:47,677 INFO Out dated connection ,size=0 + +2025-09-24 15:43:47,677 INFO Connection check task end + +2025-09-24 15:43:48,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:50,679 INFO Connection check task start + +2025-09-24 15:43:50,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:50,679 INFO Out dated connection ,size=0 + +2025-09-24 15:43:50,679 INFO Connection check task end + +2025-09-24 15:43:51,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:53,679 INFO Connection check task start + +2025-09-24 15:43:53,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:53,679 INFO Out dated connection ,size=0 + +2025-09-24 15:43:53,679 INFO Connection check task end + +2025-09-24 15:43:54,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:56,681 INFO Connection check task start + +2025-09-24 15:43:56,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:56,681 INFO Out dated connection ,size=0 + +2025-09-24 15:43:56,681 INFO Connection check task end + +2025-09-24 15:43:57,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:43:59,681 INFO Connection check task start + +2025-09-24 15:43:59,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:43:59,682 INFO Out dated connection ,size=0 + +2025-09-24 15:43:59,682 INFO Connection check task end + +2025-09-24 15:44:00,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:02,684 INFO Connection check task start + +2025-09-24 15:44:02,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:02,684 INFO Out dated connection ,size=0 + +2025-09-24 15:44:02,684 INFO Connection check task end + +2025-09-24 15:44:03,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:05,686 INFO Connection check task start + +2025-09-24 15:44:05,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:05,686 INFO Out dated connection ,size=0 + +2025-09-24 15:44:05,686 INFO Connection check task end + +2025-09-24 15:44:06,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:08,688 INFO Connection check task start + +2025-09-24 15:44:08,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:08,688 INFO Out dated connection ,size=0 + +2025-09-24 15:44:08,688 INFO Connection check task end + +2025-09-24 15:44:09,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:11,690 INFO Connection check task start + +2025-09-24 15:44:11,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:11,690 INFO Out dated connection ,size=0 + +2025-09-24 15:44:11,690 INFO Connection check task end + +2025-09-24 15:44:12,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:14,692 INFO Connection check task start + +2025-09-24 15:44:14,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:14,693 INFO Out dated connection ,size=0 + +2025-09-24 15:44:14,693 INFO Connection check task end + +2025-09-24 15:44:15,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:17,694 INFO Connection check task start + +2025-09-24 15:44:17,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:17,695 INFO Out dated connection ,size=0 + +2025-09-24 15:44:17,695 INFO Connection check task end + +2025-09-24 15:44:18,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:20,697 INFO Connection check task start + +2025-09-24 15:44:20,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:20,697 INFO Out dated connection ,size=0 + +2025-09-24 15:44:20,697 INFO Connection check task end + +2025-09-24 15:44:21,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:23,699 INFO Connection check task start + +2025-09-24 15:44:23,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:23,699 INFO Out dated connection ,size=0 + +2025-09-24 15:44:23,699 INFO Connection check task end + +2025-09-24 15:44:24,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:26,700 INFO Connection check task start + +2025-09-24 15:44:26,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:26,700 INFO Out dated connection ,size=0 + +2025-09-24 15:44:26,700 INFO Connection check task end + +2025-09-24 15:44:27,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:29,700 INFO Connection check task start + +2025-09-24 15:44:29,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:29,701 INFO Out dated connection ,size=0 + +2025-09-24 15:44:29,701 INFO Connection check task end + +2025-09-24 15:44:30,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:32,701 INFO Connection check task start + +2025-09-24 15:44:32,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:32,701 INFO Out dated connection ,size=0 + +2025-09-24 15:44:32,701 INFO Connection check task end + +2025-09-24 15:44:33,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:35,702 INFO Connection check task start + +2025-09-24 15:44:35,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:35,702 INFO Out dated connection ,size=0 + +2025-09-24 15:44:35,702 INFO Connection check task end + +2025-09-24 15:44:36,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:38,702 INFO Connection check task start + +2025-09-24 15:44:38,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:38,703 INFO Out dated connection ,size=0 + +2025-09-24 15:44:38,703 INFO Connection check task end + +2025-09-24 15:44:39,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:41,704 INFO Connection check task start + +2025-09-24 15:44:41,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:41,704 INFO Out dated connection ,size=0 + +2025-09-24 15:44:41,704 INFO Connection check task end + +2025-09-24 15:44:42,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:44,707 INFO Connection check task start + +2025-09-24 15:44:44,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:44,707 INFO Out dated connection ,size=0 + +2025-09-24 15:44:44,707 INFO Connection check task end + +2025-09-24 15:44:45,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:47,708 INFO Connection check task start + +2025-09-24 15:44:47,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:47,708 INFO Out dated connection ,size=0 + +2025-09-24 15:44:47,708 INFO Connection check task end + +2025-09-24 15:44:48,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:50,708 INFO Connection check task start + +2025-09-24 15:44:50,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:50,709 INFO Out dated connection ,size=0 + +2025-09-24 15:44:50,709 INFO Connection check task end + +2025-09-24 15:44:51,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:53,711 INFO Connection check task start + +2025-09-24 15:44:53,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:53,711 INFO Out dated connection ,size=0 + +2025-09-24 15:44:53,711 INFO Connection check task end + +2025-09-24 15:44:54,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:56,713 INFO Connection check task start + +2025-09-24 15:44:56,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:56,714 INFO Out dated connection ,size=0 + +2025-09-24 15:44:56,714 INFO Connection check task end + +2025-09-24 15:44:57,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:44:59,714 INFO Connection check task start + +2025-09-24 15:44:59,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:44:59,714 INFO Out dated connection ,size=0 + +2025-09-24 15:44:59,714 INFO Connection check task end + +2025-09-24 15:45:00,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:02,716 INFO Connection check task start + +2025-09-24 15:45:02,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:02,717 INFO Out dated connection ,size=0 + +2025-09-24 15:45:02,717 INFO Connection check task end + +2025-09-24 15:45:03,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:05,717 INFO Connection check task start + +2025-09-24 15:45:05,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:05,717 INFO Out dated connection ,size=0 + +2025-09-24 15:45:05,717 INFO Connection check task end + +2025-09-24 15:45:06,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:08,718 INFO Connection check task start + +2025-09-24 15:45:08,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:08,718 INFO Out dated connection ,size=0 + +2025-09-24 15:45:08,718 INFO Connection check task end + +2025-09-24 15:45:09,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:11,718 INFO Connection check task start + +2025-09-24 15:45:11,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:11,718 INFO Out dated connection ,size=0 + +2025-09-24 15:45:11,719 INFO Connection check task end + +2025-09-24 15:45:12,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:14,721 INFO Connection check task start + +2025-09-24 15:45:14,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:14,721 INFO Out dated connection ,size=0 + +2025-09-24 15:45:14,721 INFO Connection check task end + +2025-09-24 15:45:15,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:17,721 INFO Connection check task start + +2025-09-24 15:45:17,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:17,721 INFO Out dated connection ,size=0 + +2025-09-24 15:45:17,721 INFO Connection check task end + +2025-09-24 15:45:18,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:20,724 INFO Connection check task start + +2025-09-24 15:45:20,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:20,724 INFO Out dated connection ,size=0 + +2025-09-24 15:45:20,724 INFO Connection check task end + +2025-09-24 15:45:21,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:23,724 INFO Connection check task start + +2025-09-24 15:45:23,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:23,725 INFO Out dated connection ,size=0 + +2025-09-24 15:45:23,725 INFO Connection check task end + +2025-09-24 15:45:24,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:26,725 INFO Connection check task start + +2025-09-24 15:45:26,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:26,725 INFO Out dated connection ,size=0 + +2025-09-24 15:45:26,726 INFO Connection check task end + +2025-09-24 15:45:27,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:29,728 INFO Connection check task start + +2025-09-24 15:45:29,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:29,728 INFO Out dated connection ,size=0 + +2025-09-24 15:45:29,728 INFO Connection check task end + +2025-09-24 15:45:30,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:32,728 INFO Connection check task start + +2025-09-24 15:45:32,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:32,729 INFO Out dated connection ,size=0 + +2025-09-24 15:45:32,729 INFO Connection check task end + +2025-09-24 15:45:33,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:35,730 INFO Connection check task start + +2025-09-24 15:45:35,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:35,730 INFO Out dated connection ,size=0 + +2025-09-24 15:45:35,730 INFO Connection check task end + +2025-09-24 15:45:36,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:38,732 INFO Connection check task start + +2025-09-24 15:45:38,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:38,733 INFO Out dated connection ,size=0 + +2025-09-24 15:45:38,733 INFO Connection check task end + +2025-09-24 15:45:39,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:41,734 INFO Connection check task start + +2025-09-24 15:45:41,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:41,734 INFO Out dated connection ,size=0 + +2025-09-24 15:45:41,734 INFO Connection check task end + +2025-09-24 15:45:42,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:44,736 INFO Connection check task start + +2025-09-24 15:45:44,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:44,736 INFO Out dated connection ,size=0 + +2025-09-24 15:45:44,737 INFO Connection check task end + +2025-09-24 15:45:45,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:47,739 INFO Connection check task start + +2025-09-24 15:45:47,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:47,739 INFO Out dated connection ,size=0 + +2025-09-24 15:45:47,739 INFO Connection check task end + +2025-09-24 15:45:48,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:50,741 INFO Connection check task start + +2025-09-24 15:45:50,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:50,741 INFO Out dated connection ,size=0 + +2025-09-24 15:45:50,741 INFO Connection check task end + +2025-09-24 15:45:51,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:53,743 INFO Connection check task start + +2025-09-24 15:45:53,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:53,743 INFO Out dated connection ,size=0 + +2025-09-24 15:45:53,743 INFO Connection check task end + +2025-09-24 15:45:54,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:56,745 INFO Connection check task start + +2025-09-24 15:45:56,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:56,746 INFO Out dated connection ,size=0 + +2025-09-24 15:45:56,746 INFO Connection check task end + +2025-09-24 15:45:57,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:45:59,748 INFO Connection check task start + +2025-09-24 15:45:59,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:45:59,748 INFO Out dated connection ,size=0 + +2025-09-24 15:45:59,748 INFO Connection check task end + +2025-09-24 15:46:00,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:02,748 INFO Connection check task start + +2025-09-24 15:46:02,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:02,748 INFO Out dated connection ,size=0 + +2025-09-24 15:46:02,748 INFO Connection check task end + +2025-09-24 15:46:03,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:05,750 INFO Connection check task start + +2025-09-24 15:46:05,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:05,751 INFO Out dated connection ,size=0 + +2025-09-24 15:46:05,751 INFO Connection check task end + +2025-09-24 15:46:06,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:08,751 INFO Connection check task start + +2025-09-24 15:46:08,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:08,751 INFO Out dated connection ,size=0 + +2025-09-24 15:46:08,751 INFO Connection check task end + +2025-09-24 15:46:09,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:11,752 INFO Connection check task start + +2025-09-24 15:46:11,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:11,752 INFO Out dated connection ,size=0 + +2025-09-24 15:46:11,752 INFO Connection check task end + +2025-09-24 15:46:12,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:14,752 INFO Connection check task start + +2025-09-24 15:46:14,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:14,753 INFO Out dated connection ,size=0 + +2025-09-24 15:46:14,753 INFO Connection check task end + +2025-09-24 15:46:15,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:17,753 INFO Connection check task start + +2025-09-24 15:46:17,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:17,753 INFO Out dated connection ,size=0 + +2025-09-24 15:46:17,753 INFO Connection check task end + +2025-09-24 15:46:18,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:20,755 INFO Connection check task start + +2025-09-24 15:46:20,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:20,756 INFO Out dated connection ,size=0 + +2025-09-24 15:46:20,756 INFO Connection check task end + +2025-09-24 15:46:21,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:23,756 INFO Connection check task start + +2025-09-24 15:46:23,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:23,757 INFO Out dated connection ,size=0 + +2025-09-24 15:46:23,757 INFO Connection check task end + +2025-09-24 15:46:24,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:26,759 INFO Connection check task start + +2025-09-24 15:46:26,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:26,759 INFO Out dated connection ,size=0 + +2025-09-24 15:46:26,759 INFO Connection check task end + +2025-09-24 15:46:27,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:29,761 INFO Connection check task start + +2025-09-24 15:46:29,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:29,762 INFO Out dated connection ,size=0 + +2025-09-24 15:46:29,762 INFO Connection check task end + +2025-09-24 15:46:30,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:32,763 INFO Connection check task start + +2025-09-24 15:46:32,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:32,763 INFO Out dated connection ,size=0 + +2025-09-24 15:46:32,763 INFO Connection check task end + +2025-09-24 15:46:33,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:35,764 INFO Connection check task start + +2025-09-24 15:46:35,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:35,764 INFO Out dated connection ,size=0 + +2025-09-24 15:46:35,764 INFO Connection check task end + +2025-09-24 15:46:36,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:38,765 INFO Connection check task start + +2025-09-24 15:46:38,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:38,765 INFO Out dated connection ,size=0 + +2025-09-24 15:46:38,766 INFO Connection check task end + +2025-09-24 15:46:39,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:41,766 INFO Connection check task start + +2025-09-24 15:46:41,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:41,766 INFO Out dated connection ,size=0 + +2025-09-24 15:46:41,766 INFO Connection check task end + +2025-09-24 15:46:42,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:44,768 INFO Connection check task start + +2025-09-24 15:46:44,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:44,768 INFO Out dated connection ,size=0 + +2025-09-24 15:46:44,768 INFO Connection check task end + +2025-09-24 15:46:45,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:47,770 INFO Connection check task start + +2025-09-24 15:46:47,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:47,771 INFO Out dated connection ,size=0 + +2025-09-24 15:46:47,771 INFO Connection check task end + +2025-09-24 15:46:48,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:50,771 INFO Connection check task start + +2025-09-24 15:46:50,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:50,771 INFO Out dated connection ,size=0 + +2025-09-24 15:46:50,771 INFO Connection check task end + +2025-09-24 15:46:51,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:53,773 INFO Connection check task start + +2025-09-24 15:46:53,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:53,773 INFO Out dated connection ,size=0 + +2025-09-24 15:46:53,773 INFO Connection check task end + +2025-09-24 15:46:54,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:56,776 INFO Connection check task start + +2025-09-24 15:46:56,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:56,776 INFO Out dated connection ,size=0 + +2025-09-24 15:46:56,776 INFO Connection check task end + +2025-09-24 15:46:57,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:46:59,777 INFO Connection check task start + +2025-09-24 15:46:59,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:46:59,777 INFO Out dated connection ,size=0 + +2025-09-24 15:46:59,777 INFO Connection check task end + +2025-09-24 15:47:00,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:02,778 INFO Connection check task start + +2025-09-24 15:47:02,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:02,778 INFO Out dated connection ,size=0 + +2025-09-24 15:47:02,778 INFO Connection check task end + +2025-09-24 15:47:03,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:05,778 INFO Connection check task start + +2025-09-24 15:47:05,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:05,778 INFO Out dated connection ,size=0 + +2025-09-24 15:47:05,778 INFO Connection check task end + +2025-09-24 15:47:06,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:08,780 INFO Connection check task start + +2025-09-24 15:47:08,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:08,780 INFO Out dated connection ,size=0 + +2025-09-24 15:47:08,780 INFO Connection check task end + +2025-09-24 15:47:09,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:11,781 INFO Connection check task start + +2025-09-24 15:47:11,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:11,781 INFO Out dated connection ,size=0 + +2025-09-24 15:47:11,781 INFO Connection check task end + +2025-09-24 15:47:12,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:14,782 INFO Connection check task start + +2025-09-24 15:47:14,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:14,782 INFO Out dated connection ,size=0 + +2025-09-24 15:47:14,782 INFO Connection check task end + +2025-09-24 15:47:15,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:17,783 INFO Connection check task start + +2025-09-24 15:47:17,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:17,783 INFO Out dated connection ,size=0 + +2025-09-24 15:47:17,783 INFO Connection check task end + +2025-09-24 15:47:18,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:20,783 INFO Connection check task start + +2025-09-24 15:47:20,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:20,783 INFO Out dated connection ,size=0 + +2025-09-24 15:47:20,783 INFO Connection check task end + +2025-09-24 15:47:21,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:23,786 INFO Connection check task start + +2025-09-24 15:47:23,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:23,787 INFO Out dated connection ,size=0 + +2025-09-24 15:47:23,787 INFO Connection check task end + +2025-09-24 15:47:24,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:26,787 INFO Connection check task start + +2025-09-24 15:47:26,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:26,787 INFO Out dated connection ,size=0 + +2025-09-24 15:47:26,787 INFO Connection check task end + +2025-09-24 15:47:27,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:29,788 INFO Connection check task start + +2025-09-24 15:47:29,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:29,788 INFO Out dated connection ,size=0 + +2025-09-24 15:47:29,788 INFO Connection check task end + +2025-09-24 15:47:30,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:32,789 INFO Connection check task start + +2025-09-24 15:47:32,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:32,789 INFO Out dated connection ,size=0 + +2025-09-24 15:47:32,789 INFO Connection check task end + +2025-09-24 15:47:33,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:35,790 INFO Connection check task start + +2025-09-24 15:47:35,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:35,790 INFO Out dated connection ,size=0 + +2025-09-24 15:47:35,790 INFO Connection check task end + +2025-09-24 15:47:36,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:38,791 INFO Connection check task start + +2025-09-24 15:47:38,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:38,791 INFO Out dated connection ,size=0 + +2025-09-24 15:47:38,791 INFO Connection check task end + +2025-09-24 15:47:39,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:41,792 INFO Connection check task start + +2025-09-24 15:47:41,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:41,792 INFO Out dated connection ,size=0 + +2025-09-24 15:47:41,792 INFO Connection check task end + +2025-09-24 15:47:42,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:44,793 INFO Connection check task start + +2025-09-24 15:47:44,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:44,793 INFO Out dated connection ,size=0 + +2025-09-24 15:47:44,793 INFO Connection check task end + +2025-09-24 15:47:45,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:47,793 INFO Connection check task start + +2025-09-24 15:47:47,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:47,793 INFO Out dated connection ,size=0 + +2025-09-24 15:47:47,793 INFO Connection check task end + +2025-09-24 15:47:48,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:50,794 INFO Connection check task start + +2025-09-24 15:47:50,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:50,794 INFO Out dated connection ,size=0 + +2025-09-24 15:47:50,794 INFO Connection check task end + +2025-09-24 15:47:51,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:53,796 INFO Connection check task start + +2025-09-24 15:47:53,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:53,797 INFO Out dated connection ,size=0 + +2025-09-24 15:47:53,797 INFO Connection check task end + +2025-09-24 15:47:54,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:56,799 INFO Connection check task start + +2025-09-24 15:47:56,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:56,799 INFO Out dated connection ,size=0 + +2025-09-24 15:47:56,799 INFO Connection check task end + +2025-09-24 15:47:57,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:47:59,801 INFO Connection check task start + +2025-09-24 15:47:59,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:47:59,801 INFO Out dated connection ,size=0 + +2025-09-24 15:47:59,801 INFO Connection check task end + +2025-09-24 15:48:00,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:02,803 INFO Connection check task start + +2025-09-24 15:48:02,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:02,803 INFO Out dated connection ,size=0 + +2025-09-24 15:48:02,803 INFO Connection check task end + +2025-09-24 15:48:03,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:05,804 INFO Connection check task start + +2025-09-24 15:48:05,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:05,804 INFO Out dated connection ,size=0 + +2025-09-24 15:48:05,804 INFO Connection check task end + +2025-09-24 15:48:06,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:08,806 INFO Connection check task start + +2025-09-24 15:48:08,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:08,806 INFO Out dated connection ,size=0 + +2025-09-24 15:48:08,806 INFO Connection check task end + +2025-09-24 15:48:09,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:11,808 INFO Connection check task start + +2025-09-24 15:48:11,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:11,808 INFO Out dated connection ,size=0 + +2025-09-24 15:48:11,809 INFO Connection check task end + +2025-09-24 15:48:12,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:14,809 INFO Connection check task start + +2025-09-24 15:48:14,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:14,809 INFO Out dated connection ,size=0 + +2025-09-24 15:48:14,809 INFO Connection check task end + +2025-09-24 15:48:15,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:17,811 INFO Connection check task start + +2025-09-24 15:48:17,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:17,812 INFO Out dated connection ,size=0 + +2025-09-24 15:48:17,812 INFO Connection check task end + +2025-09-24 15:48:18,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:20,813 INFO Connection check task start + +2025-09-24 15:48:20,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:20,813 INFO Out dated connection ,size=0 + +2025-09-24 15:48:20,813 INFO Connection check task end + +2025-09-24 15:48:21,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:23,815 INFO Connection check task start + +2025-09-24 15:48:23,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:23,816 INFO Out dated connection ,size=0 + +2025-09-24 15:48:23,816 INFO Connection check task end + +2025-09-24 15:48:24,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:26,817 INFO Connection check task start + +2025-09-24 15:48:26,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:26,817 INFO Out dated connection ,size=0 + +2025-09-24 15:48:26,817 INFO Connection check task end + +2025-09-24 15:48:27,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:29,818 INFO Connection check task start + +2025-09-24 15:48:29,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:29,818 INFO Out dated connection ,size=0 + +2025-09-24 15:48:29,818 INFO Connection check task end + +2025-09-24 15:48:30,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:32,820 INFO Connection check task start + +2025-09-24 15:48:32,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:32,820 INFO Out dated connection ,size=0 + +2025-09-24 15:48:32,820 INFO Connection check task end + +2025-09-24 15:48:33,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:35,821 INFO Connection check task start + +2025-09-24 15:48:35,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:35,822 INFO Out dated connection ,size=0 + +2025-09-24 15:48:35,822 INFO Connection check task end + +2025-09-24 15:48:36,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:38,822 INFO Connection check task start + +2025-09-24 15:48:38,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:38,822 INFO Out dated connection ,size=0 + +2025-09-24 15:48:38,822 INFO Connection check task end + +2025-09-24 15:48:39,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:41,822 INFO Connection check task start + +2025-09-24 15:48:41,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:41,823 INFO Out dated connection ,size=0 + +2025-09-24 15:48:41,823 INFO Connection check task end + +2025-09-24 15:48:42,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:44,823 INFO Connection check task start + +2025-09-24 15:48:44,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:44,823 INFO Out dated connection ,size=0 + +2025-09-24 15:48:44,823 INFO Connection check task end + +2025-09-24 15:48:45,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:47,825 INFO Connection check task start + +2025-09-24 15:48:47,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:47,825 INFO Out dated connection ,size=0 + +2025-09-24 15:48:47,825 INFO Connection check task end + +2025-09-24 15:48:48,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:50,827 INFO Connection check task start + +2025-09-24 15:48:50,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:50,827 INFO Out dated connection ,size=0 + +2025-09-24 15:48:50,827 INFO Connection check task end + +2025-09-24 15:48:51,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:53,827 INFO Connection check task start + +2025-09-24 15:48:53,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:53,828 INFO Out dated connection ,size=0 + +2025-09-24 15:48:53,828 INFO Connection check task end + +2025-09-24 15:48:54,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:56,829 INFO Connection check task start + +2025-09-24 15:48:56,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:56,829 INFO Out dated connection ,size=0 + +2025-09-24 15:48:56,829 INFO Connection check task end + +2025-09-24 15:48:57,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:48:59,830 INFO Connection check task start + +2025-09-24 15:48:59,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:48:59,830 INFO Out dated connection ,size=0 + +2025-09-24 15:48:59,830 INFO Connection check task end + +2025-09-24 15:49:00,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:02,831 INFO Connection check task start + +2025-09-24 15:49:02,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:02,831 INFO Out dated connection ,size=0 + +2025-09-24 15:49:02,832 INFO Connection check task end + +2025-09-24 15:49:03,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:05,832 INFO Connection check task start + +2025-09-24 15:49:05,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:05,833 INFO Out dated connection ,size=0 + +2025-09-24 15:49:05,833 INFO Connection check task end + +2025-09-24 15:49:06,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:08,835 INFO Connection check task start + +2025-09-24 15:49:08,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:08,835 INFO Out dated connection ,size=0 + +2025-09-24 15:49:08,835 INFO Connection check task end + +2025-09-24 15:49:09,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:11,837 INFO Connection check task start + +2025-09-24 15:49:11,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:11,837 INFO Out dated connection ,size=0 + +2025-09-24 15:49:11,837 INFO Connection check task end + +2025-09-24 15:49:12,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:14,837 INFO Connection check task start + +2025-09-24 15:49:14,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:14,838 INFO Out dated connection ,size=0 + +2025-09-24 15:49:14,838 INFO Connection check task end + +2025-09-24 15:49:15,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:17,840 INFO Connection check task start + +2025-09-24 15:49:17,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:17,840 INFO Out dated connection ,size=0 + +2025-09-24 15:49:17,840 INFO Connection check task end + +2025-09-24 15:49:18,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:20,840 INFO Connection check task start + +2025-09-24 15:49:20,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:20,840 INFO Out dated connection ,size=0 + +2025-09-24 15:49:20,840 INFO Connection check task end + +2025-09-24 15:49:21,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:23,842 INFO Connection check task start + +2025-09-24 15:49:23,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:23,842 INFO Out dated connection ,size=0 + +2025-09-24 15:49:23,842 INFO Connection check task end + +2025-09-24 15:49:24,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:26,844 INFO Connection check task start + +2025-09-24 15:49:26,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:26,844 INFO Out dated connection ,size=0 + +2025-09-24 15:49:26,844 INFO Connection check task end + +2025-09-24 15:49:27,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:29,844 INFO Connection check task start + +2025-09-24 15:49:29,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:29,845 INFO Out dated connection ,size=0 + +2025-09-24 15:49:29,845 INFO Connection check task end + +2025-09-24 15:49:30,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:32,845 INFO Connection check task start + +2025-09-24 15:49:32,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:32,845 INFO Out dated connection ,size=0 + +2025-09-24 15:49:32,845 INFO Connection check task end + +2025-09-24 15:49:33,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:35,846 INFO Connection check task start + +2025-09-24 15:49:35,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:35,846 INFO Out dated connection ,size=0 + +2025-09-24 15:49:35,846 INFO Connection check task end + +2025-09-24 15:49:36,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:38,846 INFO Connection check task start + +2025-09-24 15:49:38,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:38,846 INFO Out dated connection ,size=0 + +2025-09-24 15:49:38,846 INFO Connection check task end + +2025-09-24 15:49:39,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:41,849 INFO Connection check task start + +2025-09-24 15:49:41,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:41,849 INFO Out dated connection ,size=0 + +2025-09-24 15:49:41,849 INFO Connection check task end + +2025-09-24 15:49:42,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:44,851 INFO Connection check task start + +2025-09-24 15:49:44,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:44,851 INFO Out dated connection ,size=0 + +2025-09-24 15:49:44,851 INFO Connection check task end + +2025-09-24 15:49:45,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:47,852 INFO Connection check task start + +2025-09-24 15:49:47,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:47,853 INFO Out dated connection ,size=0 + +2025-09-24 15:49:47,853 INFO Connection check task end + +2025-09-24 15:49:48,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:50,854 INFO Connection check task start + +2025-09-24 15:49:50,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:50,854 INFO Out dated connection ,size=0 + +2025-09-24 15:49:50,854 INFO Connection check task end + +2025-09-24 15:49:51,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:53,855 INFO Connection check task start + +2025-09-24 15:49:53,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:53,855 INFO Out dated connection ,size=0 + +2025-09-24 15:49:53,855 INFO Connection check task end + +2025-09-24 15:49:54,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:56,855 INFO Connection check task start + +2025-09-24 15:49:56,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:56,856 INFO Out dated connection ,size=0 + +2025-09-24 15:49:56,856 INFO Connection check task end + +2025-09-24 15:49:57,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:49:59,856 INFO Connection check task start + +2025-09-24 15:49:59,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:49:59,856 INFO Out dated connection ,size=0 + +2025-09-24 15:49:59,856 INFO Connection check task end + +2025-09-24 15:50:00,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:02,856 INFO Connection check task start + +2025-09-24 15:50:02,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:02,857 INFO Out dated connection ,size=0 + +2025-09-24 15:50:02,857 INFO Connection check task end + +2025-09-24 15:50:03,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:05,857 INFO Connection check task start + +2025-09-24 15:50:05,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:05,857 INFO Out dated connection ,size=0 + +2025-09-24 15:50:05,857 INFO Connection check task end + +2025-09-24 15:50:06,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:08,857 INFO Connection check task start + +2025-09-24 15:50:08,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:08,857 INFO Out dated connection ,size=0 + +2025-09-24 15:50:08,857 INFO Connection check task end + +2025-09-24 15:50:09,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:11,858 INFO Connection check task start + +2025-09-24 15:50:11,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:11,858 INFO Out dated connection ,size=0 + +2025-09-24 15:50:11,858 INFO Connection check task end + +2025-09-24 15:50:12,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:14,858 INFO Connection check task start + +2025-09-24 15:50:14,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:14,858 INFO Out dated connection ,size=0 + +2025-09-24 15:50:14,858 INFO Connection check task end + +2025-09-24 15:50:15,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:17,860 INFO Connection check task start + +2025-09-24 15:50:17,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:17,860 INFO Out dated connection ,size=0 + +2025-09-24 15:50:17,860 INFO Connection check task end + +2025-09-24 15:50:18,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:20,861 INFO Connection check task start + +2025-09-24 15:50:20,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:20,861 INFO Out dated connection ,size=0 + +2025-09-24 15:50:20,861 INFO Connection check task end + +2025-09-24 15:50:21,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:23,862 INFO Connection check task start + +2025-09-24 15:50:23,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:23,862 INFO Out dated connection ,size=0 + +2025-09-24 15:50:23,862 INFO Connection check task end + +2025-09-24 15:50:24,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:26,863 INFO Connection check task start + +2025-09-24 15:50:26,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:26,863 INFO Out dated connection ,size=0 + +2025-09-24 15:50:26,863 INFO Connection check task end + +2025-09-24 15:50:27,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:29,864 INFO Connection check task start + +2025-09-24 15:50:29,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:29,864 INFO Out dated connection ,size=0 + +2025-09-24 15:50:29,864 INFO Connection check task end + +2025-09-24 15:50:30,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:32,864 INFO Connection check task start + +2025-09-24 15:50:32,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:32,865 INFO Out dated connection ,size=0 + +2025-09-24 15:50:32,865 INFO Connection check task end + +2025-09-24 15:50:33,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:35,865 INFO Connection check task start + +2025-09-24 15:50:35,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:35,865 INFO Out dated connection ,size=0 + +2025-09-24 15:50:35,865 INFO Connection check task end + +2025-09-24 15:50:36,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:38,865 INFO Connection check task start + +2025-09-24 15:50:38,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:38,865 INFO Out dated connection ,size=0 + +2025-09-24 15:50:38,865 INFO Connection check task end + +2025-09-24 15:50:39,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:41,868 INFO Connection check task start + +2025-09-24 15:50:41,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:41,868 INFO Out dated connection ,size=0 + +2025-09-24 15:50:41,868 INFO Connection check task end + +2025-09-24 15:50:42,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:44,868 INFO Connection check task start + +2025-09-24 15:50:44,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:44,868 INFO Out dated connection ,size=0 + +2025-09-24 15:50:44,868 INFO Connection check task end + +2025-09-24 15:50:45,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:47,868 INFO Connection check task start + +2025-09-24 15:50:47,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:47,868 INFO Out dated connection ,size=0 + +2025-09-24 15:50:47,869 INFO Connection check task end + +2025-09-24 15:50:48,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:50,869 INFO Connection check task start + +2025-09-24 15:50:50,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:50,869 INFO Out dated connection ,size=0 + +2025-09-24 15:50:50,869 INFO Connection check task end + +2025-09-24 15:50:51,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:53,869 INFO Connection check task start + +2025-09-24 15:50:53,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:53,869 INFO Out dated connection ,size=0 + +2025-09-24 15:50:53,869 INFO Connection check task end + +2025-09-24 15:50:54,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:56,870 INFO Connection check task start + +2025-09-24 15:50:56,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:56,870 INFO Out dated connection ,size=0 + +2025-09-24 15:50:56,870 INFO Connection check task end + +2025-09-24 15:50:57,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:50:59,870 INFO Connection check task start + +2025-09-24 15:50:59,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:50:59,870 INFO Out dated connection ,size=0 + +2025-09-24 15:50:59,870 INFO Connection check task end + +2025-09-24 15:51:00,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:02,870 INFO Connection check task start + +2025-09-24 15:51:02,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:02,871 INFO Out dated connection ,size=0 + +2025-09-24 15:51:02,871 INFO Connection check task end + +2025-09-24 15:51:03,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:05,871 INFO Connection check task start + +2025-09-24 15:51:05,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:05,871 INFO Out dated connection ,size=0 + +2025-09-24 15:51:05,871 INFO Connection check task end + +2025-09-24 15:51:06,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:08,871 INFO Connection check task start + +2025-09-24 15:51:08,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:08,872 INFO Out dated connection ,size=0 + +2025-09-24 15:51:08,872 INFO Connection check task end + +2025-09-24 15:51:09,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:11,872 INFO Connection check task start + +2025-09-24 15:51:11,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:11,872 INFO Out dated connection ,size=0 + +2025-09-24 15:51:11,872 INFO Connection check task end + +2025-09-24 15:51:12,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:14,872 INFO Connection check task start + +2025-09-24 15:51:14,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:14,873 INFO Out dated connection ,size=0 + +2025-09-24 15:51:14,873 INFO Connection check task end + +2025-09-24 15:51:15,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:17,873 INFO Connection check task start + +2025-09-24 15:51:17,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:17,874 INFO Out dated connection ,size=0 + +2025-09-24 15:51:17,874 INFO Connection check task end + +2025-09-24 15:51:18,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:20,874 INFO Connection check task start + +2025-09-24 15:51:20,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:20,874 INFO Out dated connection ,size=0 + +2025-09-24 15:51:20,874 INFO Connection check task end + +2025-09-24 15:51:21,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:23,874 INFO Connection check task start + +2025-09-24 15:51:23,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:23,875 INFO Out dated connection ,size=0 + +2025-09-24 15:51:23,875 INFO Connection check task end + +2025-09-24 15:51:24,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:26,875 INFO Connection check task start + +2025-09-24 15:51:26,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:26,875 INFO Out dated connection ,size=0 + +2025-09-24 15:51:26,875 INFO Connection check task end + +2025-09-24 15:51:27,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:29,876 INFO Connection check task start + +2025-09-24 15:51:29,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:29,876 INFO Out dated connection ,size=0 + +2025-09-24 15:51:29,876 INFO Connection check task end + +2025-09-24 15:51:30,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:32,876 INFO Connection check task start + +2025-09-24 15:51:32,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:32,876 INFO Out dated connection ,size=0 + +2025-09-24 15:51:32,876 INFO Connection check task end + +2025-09-24 15:51:33,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:35,877 INFO Connection check task start + +2025-09-24 15:51:35,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:35,877 INFO Out dated connection ,size=0 + +2025-09-24 15:51:35,877 INFO Connection check task end + +2025-09-24 15:51:36,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:38,877 INFO Connection check task start + +2025-09-24 15:51:38,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:38,877 INFO Out dated connection ,size=0 + +2025-09-24 15:51:38,877 INFO Connection check task end + +2025-09-24 15:51:39,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:41,877 INFO Connection check task start + +2025-09-24 15:51:41,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:41,878 INFO Out dated connection ,size=0 + +2025-09-24 15:51:41,878 INFO Connection check task end + +2025-09-24 15:51:42,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:44,878 INFO Connection check task start + +2025-09-24 15:51:44,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:44,878 INFO Out dated connection ,size=0 + +2025-09-24 15:51:44,878 INFO Connection check task end + +2025-09-24 15:51:45,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:47,879 INFO Connection check task start + +2025-09-24 15:51:47,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:47,879 INFO Out dated connection ,size=0 + +2025-09-24 15:51:47,879 INFO Connection check task end + +2025-09-24 15:51:48,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:50,879 INFO Connection check task start + +2025-09-24 15:51:50,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:50,879 INFO Out dated connection ,size=0 + +2025-09-24 15:51:50,880 INFO Connection check task end + +2025-09-24 15:51:51,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:53,880 INFO Connection check task start + +2025-09-24 15:51:53,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:53,880 INFO Out dated connection ,size=0 + +2025-09-24 15:51:53,880 INFO Connection check task end + +2025-09-24 15:51:54,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:56,880 INFO Connection check task start + +2025-09-24 15:51:56,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:56,880 INFO Out dated connection ,size=0 + +2025-09-24 15:51:56,880 INFO Connection check task end + +2025-09-24 15:51:57,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:51:59,881 INFO Connection check task start + +2025-09-24 15:51:59,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:51:59,881 INFO Out dated connection ,size=0 + +2025-09-24 15:51:59,882 INFO Connection check task end + +2025-09-24 15:52:00,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:02,882 INFO Connection check task start + +2025-09-24 15:52:02,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:02,882 INFO Out dated connection ,size=0 + +2025-09-24 15:52:02,882 INFO Connection check task end + +2025-09-24 15:52:03,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:05,882 INFO Connection check task start + +2025-09-24 15:52:05,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:05,882 INFO Out dated connection ,size=0 + +2025-09-24 15:52:05,882 INFO Connection check task end + +2025-09-24 15:52:06,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:08,882 INFO Connection check task start + +2025-09-24 15:52:08,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:08,882 INFO Out dated connection ,size=0 + +2025-09-24 15:52:08,882 INFO Connection check task end + +2025-09-24 15:52:09,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:11,883 INFO Connection check task start + +2025-09-24 15:52:11,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:11,883 INFO Out dated connection ,size=0 + +2025-09-24 15:52:11,883 INFO Connection check task end + +2025-09-24 15:52:12,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:14,884 INFO Connection check task start + +2025-09-24 15:52:14,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:14,884 INFO Out dated connection ,size=0 + +2025-09-24 15:52:14,884 INFO Connection check task end + +2025-09-24 15:52:15,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:17,884 INFO Connection check task start + +2025-09-24 15:52:17,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:17,884 INFO Out dated connection ,size=0 + +2025-09-24 15:52:17,884 INFO Connection check task end + +2025-09-24 15:52:18,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:20,885 INFO Connection check task start + +2025-09-24 15:52:20,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:20,885 INFO Out dated connection ,size=0 + +2025-09-24 15:52:20,885 INFO Connection check task end + +2025-09-24 15:52:21,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:23,885 INFO Connection check task start + +2025-09-24 15:52:23,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:23,886 INFO Out dated connection ,size=0 + +2025-09-24 15:52:23,886 INFO Connection check task end + +2025-09-24 15:52:24,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:26,886 INFO Connection check task start + +2025-09-24 15:52:26,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:26,887 INFO Out dated connection ,size=0 + +2025-09-24 15:52:26,887 INFO Connection check task end + +2025-09-24 15:52:27,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:29,887 INFO Connection check task start + +2025-09-24 15:52:29,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:29,887 INFO Out dated connection ,size=0 + +2025-09-24 15:52:29,887 INFO Connection check task end + +2025-09-24 15:52:30,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:32,887 INFO Connection check task start + +2025-09-24 15:52:32,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:32,888 INFO Out dated connection ,size=0 + +2025-09-24 15:52:32,888 INFO Connection check task end + +2025-09-24 15:52:33,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:35,888 INFO Connection check task start + +2025-09-24 15:52:35,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:35,888 INFO Out dated connection ,size=0 + +2025-09-24 15:52:35,888 INFO Connection check task end + +2025-09-24 15:52:36,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:38,889 INFO Connection check task start + +2025-09-24 15:52:38,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:38,889 INFO Out dated connection ,size=0 + +2025-09-24 15:52:38,889 INFO Connection check task end + +2025-09-24 15:52:39,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:41,889 INFO Connection check task start + +2025-09-24 15:52:41,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:41,889 INFO Out dated connection ,size=0 + +2025-09-24 15:52:41,889 INFO Connection check task end + +2025-09-24 15:52:42,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:44,890 INFO Connection check task start + +2025-09-24 15:52:44,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:44,890 INFO Out dated connection ,size=0 + +2025-09-24 15:52:44,890 INFO Connection check task end + +2025-09-24 15:52:45,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:47,890 INFO Connection check task start + +2025-09-24 15:52:47,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:47,891 INFO Out dated connection ,size=0 + +2025-09-24 15:52:47,891 INFO Connection check task end + +2025-09-24 15:52:48,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:50,891 INFO Connection check task start + +2025-09-24 15:52:50,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:50,891 INFO Out dated connection ,size=0 + +2025-09-24 15:52:50,891 INFO Connection check task end + +2025-09-24 15:52:51,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:53,892 INFO Connection check task start + +2025-09-24 15:52:53,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:53,892 INFO Out dated connection ,size=0 + +2025-09-24 15:52:53,892 INFO Connection check task end + +2025-09-24 15:52:54,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:56,892 INFO Connection check task start + +2025-09-24 15:52:56,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:56,892 INFO Out dated connection ,size=0 + +2025-09-24 15:52:56,892 INFO Connection check task end + +2025-09-24 15:52:57,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:52:59,893 INFO Connection check task start + +2025-09-24 15:52:59,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:52:59,893 INFO Out dated connection ,size=0 + +2025-09-24 15:52:59,893 INFO Connection check task end + +2025-09-24 15:53:00,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:02,893 INFO Connection check task start + +2025-09-24 15:53:02,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:02,894 INFO Out dated connection ,size=0 + +2025-09-24 15:53:02,894 INFO Connection check task end + +2025-09-24 15:53:03,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:05,894 INFO Connection check task start + +2025-09-24 15:53:05,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:05,894 INFO Out dated connection ,size=0 + +2025-09-24 15:53:05,894 INFO Connection check task end + +2025-09-24 15:53:06,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:08,894 INFO Connection check task start + +2025-09-24 15:53:08,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:08,894 INFO Out dated connection ,size=0 + +2025-09-24 15:53:08,894 INFO Connection check task end + +2025-09-24 15:53:09,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:11,895 INFO Connection check task start + +2025-09-24 15:53:11,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:11,895 INFO Out dated connection ,size=0 + +2025-09-24 15:53:11,895 INFO Connection check task end + +2025-09-24 15:53:12,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:14,895 INFO Connection check task start + +2025-09-24 15:53:14,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:14,896 INFO Out dated connection ,size=0 + +2025-09-24 15:53:14,896 INFO Connection check task end + +2025-09-24 15:53:15,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:17,896 INFO Connection check task start + +2025-09-24 15:53:17,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:17,896 INFO Out dated connection ,size=0 + +2025-09-24 15:53:17,896 INFO Connection check task end + +2025-09-24 15:53:18,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:20,896 INFO Connection check task start + +2025-09-24 15:53:20,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:20,897 INFO Out dated connection ,size=0 + +2025-09-24 15:53:20,897 INFO Connection check task end + +2025-09-24 15:53:21,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:23,897 INFO Connection check task start + +2025-09-24 15:53:23,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:23,897 INFO Out dated connection ,size=0 + +2025-09-24 15:53:23,897 INFO Connection check task end + +2025-09-24 15:53:24,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:26,898 INFO Connection check task start + +2025-09-24 15:53:26,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:26,898 INFO Out dated connection ,size=0 + +2025-09-24 15:53:26,898 INFO Connection check task end + +2025-09-24 15:53:27,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:29,898 INFO Connection check task start + +2025-09-24 15:53:29,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:29,899 INFO Out dated connection ,size=0 + +2025-09-24 15:53:29,899 INFO Connection check task end + +2025-09-24 15:53:30,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:32,899 INFO Connection check task start + +2025-09-24 15:53:32,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:32,899 INFO Out dated connection ,size=0 + +2025-09-24 15:53:32,899 INFO Connection check task end + +2025-09-24 15:53:33,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:35,900 INFO Connection check task start + +2025-09-24 15:53:35,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:35,900 INFO Out dated connection ,size=0 + +2025-09-24 15:53:35,900 INFO Connection check task end + +2025-09-24 15:53:36,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:38,900 INFO Connection check task start + +2025-09-24 15:53:38,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:38,900 INFO Out dated connection ,size=0 + +2025-09-24 15:53:38,900 INFO Connection check task end + +2025-09-24 15:53:39,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:41,901 INFO Connection check task start + +2025-09-24 15:53:41,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:41,901 INFO Out dated connection ,size=0 + +2025-09-24 15:53:41,901 INFO Connection check task end + +2025-09-24 15:53:42,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:44,901 INFO Connection check task start + +2025-09-24 15:53:44,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:44,901 INFO Out dated connection ,size=0 + +2025-09-24 15:53:44,902 INFO Connection check task end + +2025-09-24 15:53:45,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:47,902 INFO Connection check task start + +2025-09-24 15:53:47,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:47,902 INFO Out dated connection ,size=0 + +2025-09-24 15:53:47,902 INFO Connection check task end + +2025-09-24 15:53:48,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:50,903 INFO Connection check task start + +2025-09-24 15:53:50,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:50,903 INFO Out dated connection ,size=0 + +2025-09-24 15:53:50,903 INFO Connection check task end + +2025-09-24 15:53:51,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:53,903 INFO Connection check task start + +2025-09-24 15:53:53,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:53,904 INFO Out dated connection ,size=0 + +2025-09-24 15:53:53,904 INFO Connection check task end + +2025-09-24 15:53:54,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:56,904 INFO Connection check task start + +2025-09-24 15:53:56,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:56,904 INFO Out dated connection ,size=0 + +2025-09-24 15:53:56,904 INFO Connection check task end + +2025-09-24 15:53:57,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:53:59,905 INFO Connection check task start + +2025-09-24 15:53:59,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:53:59,905 INFO Out dated connection ,size=0 + +2025-09-24 15:53:59,905 INFO Connection check task end + +2025-09-24 15:54:00,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:02,905 INFO Connection check task start + +2025-09-24 15:54:02,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:02,906 INFO Out dated connection ,size=0 + +2025-09-24 15:54:02,906 INFO Connection check task end + +2025-09-24 15:54:03,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:05,908 INFO Connection check task start + +2025-09-24 15:54:05,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:05,908 INFO Out dated connection ,size=0 + +2025-09-24 15:54:05,908 INFO Connection check task end + +2025-09-24 15:54:06,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:08,908 INFO Connection check task start + +2025-09-24 15:54:08,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:08,908 INFO Out dated connection ,size=0 + +2025-09-24 15:54:08,908 INFO Connection check task end + +2025-09-24 15:54:09,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:11,909 INFO Connection check task start + +2025-09-24 15:54:11,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:11,909 INFO Out dated connection ,size=0 + +2025-09-24 15:54:11,909 INFO Connection check task end + +2025-09-24 15:54:12,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:14,909 INFO Connection check task start + +2025-09-24 15:54:14,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:14,910 INFO Out dated connection ,size=0 + +2025-09-24 15:54:14,910 INFO Connection check task end + +2025-09-24 15:54:15,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:17,912 INFO Connection check task start + +2025-09-24 15:54:17,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:17,912 INFO Out dated connection ,size=0 + +2025-09-24 15:54:17,912 INFO Connection check task end + +2025-09-24 15:54:18,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:20,912 INFO Connection check task start + +2025-09-24 15:54:20,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:20,912 INFO Out dated connection ,size=0 + +2025-09-24 15:54:20,912 INFO Connection check task end + +2025-09-24 15:54:21,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:23,912 INFO Connection check task start + +2025-09-24 15:54:23,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:23,913 INFO Out dated connection ,size=0 + +2025-09-24 15:54:23,913 INFO Connection check task end + +2025-09-24 15:54:24,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:26,913 INFO Connection check task start + +2025-09-24 15:54:26,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:26,913 INFO Out dated connection ,size=0 + +2025-09-24 15:54:26,914 INFO Connection check task end + +2025-09-24 15:54:27,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:29,914 INFO Connection check task start + +2025-09-24 15:54:29,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:29,914 INFO Out dated connection ,size=0 + +2025-09-24 15:54:29,914 INFO Connection check task end + +2025-09-24 15:54:30,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:32,916 INFO Connection check task start + +2025-09-24 15:54:32,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:32,917 INFO Out dated connection ,size=0 + +2025-09-24 15:54:32,917 INFO Connection check task end + +2025-09-24 15:54:33,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:35,917 INFO Connection check task start + +2025-09-24 15:54:35,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:35,917 INFO Out dated connection ,size=0 + +2025-09-24 15:54:35,917 INFO Connection check task end + +2025-09-24 15:54:36,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:38,918 INFO Connection check task start + +2025-09-24 15:54:38,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:38,918 INFO Out dated connection ,size=0 + +2025-09-24 15:54:38,918 INFO Connection check task end + +2025-09-24 15:54:39,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:41,918 INFO Connection check task start + +2025-09-24 15:54:41,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:41,918 INFO Out dated connection ,size=0 + +2025-09-24 15:54:41,918 INFO Connection check task end + +2025-09-24 15:54:42,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:44,919 INFO Connection check task start + +2025-09-24 15:54:44,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:44,919 INFO Out dated connection ,size=0 + +2025-09-24 15:54:44,919 INFO Connection check task end + +2025-09-24 15:54:45,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:47,919 INFO Connection check task start + +2025-09-24 15:54:47,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:47,919 INFO Out dated connection ,size=0 + +2025-09-24 15:54:47,919 INFO Connection check task end + +2025-09-24 15:54:48,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:50,920 INFO Connection check task start + +2025-09-24 15:54:50,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:50,920 INFO Out dated connection ,size=0 + +2025-09-24 15:54:50,920 INFO Connection check task end + +2025-09-24 15:54:51,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:53,920 INFO Connection check task start + +2025-09-24 15:54:53,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:53,921 INFO Out dated connection ,size=0 + +2025-09-24 15:54:53,921 INFO Connection check task end + +2025-09-24 15:54:54,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:56,921 INFO Connection check task start + +2025-09-24 15:54:56,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:56,921 INFO Out dated connection ,size=0 + +2025-09-24 15:54:56,921 INFO Connection check task end + +2025-09-24 15:54:57,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:54:59,921 INFO Connection check task start + +2025-09-24 15:54:59,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:54:59,921 INFO Out dated connection ,size=0 + +2025-09-24 15:54:59,921 INFO Connection check task end + +2025-09-24 15:55:00,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:02,923 INFO Connection check task start + +2025-09-24 15:55:02,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:02,923 INFO Out dated connection ,size=0 + +2025-09-24 15:55:02,923 INFO Connection check task end + +2025-09-24 15:55:03,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:05,924 INFO Connection check task start + +2025-09-24 15:55:05,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:05,924 INFO Out dated connection ,size=0 + +2025-09-24 15:55:05,924 INFO Connection check task end + +2025-09-24 15:55:06,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:08,925 INFO Connection check task start + +2025-09-24 15:55:08,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:08,925 INFO Out dated connection ,size=0 + +2025-09-24 15:55:08,925 INFO Connection check task end + +2025-09-24 15:55:09,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:11,926 INFO Connection check task start + +2025-09-24 15:55:11,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:11,926 INFO Out dated connection ,size=0 + +2025-09-24 15:55:11,926 INFO Connection check task end + +2025-09-24 15:55:12,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:14,927 INFO Connection check task start + +2025-09-24 15:55:14,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:14,927 INFO Out dated connection ,size=0 + +2025-09-24 15:55:14,927 INFO Connection check task end + +2025-09-24 15:55:15,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:17,929 INFO Connection check task start + +2025-09-24 15:55:17,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:17,930 INFO Out dated connection ,size=0 + +2025-09-24 15:55:17,930 INFO Connection check task end + +2025-09-24 15:55:18,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:20,931 INFO Connection check task start + +2025-09-24 15:55:20,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:20,931 INFO Out dated connection ,size=0 + +2025-09-24 15:55:20,931 INFO Connection check task end + +2025-09-24 15:55:21,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:23,932 INFO Connection check task start + +2025-09-24 15:55:23,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:23,932 INFO Out dated connection ,size=0 + +2025-09-24 15:55:23,932 INFO Connection check task end + +2025-09-24 15:55:24,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:26,932 INFO Connection check task start + +2025-09-24 15:55:26,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:26,932 INFO Out dated connection ,size=0 + +2025-09-24 15:55:26,932 INFO Connection check task end + +2025-09-24 15:55:27,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:29,933 INFO Connection check task start + +2025-09-24 15:55:29,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:29,933 INFO Out dated connection ,size=0 + +2025-09-24 15:55:29,933 INFO Connection check task end + +2025-09-24 15:55:30,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:32,934 INFO Connection check task start + +2025-09-24 15:55:32,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:32,934 INFO Out dated connection ,size=0 + +2025-09-24 15:55:32,934 INFO Connection check task end + +2025-09-24 15:55:33,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:35,934 INFO Connection check task start + +2025-09-24 15:55:35,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:35,935 INFO Out dated connection ,size=0 + +2025-09-24 15:55:35,935 INFO Connection check task end + +2025-09-24 15:55:36,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:38,936 INFO Connection check task start + +2025-09-24 15:55:38,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:38,936 INFO Out dated connection ,size=0 + +2025-09-24 15:55:38,936 INFO Connection check task end + +2025-09-24 15:55:39,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:41,936 INFO Connection check task start + +2025-09-24 15:55:41,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:41,936 INFO Out dated connection ,size=0 + +2025-09-24 15:55:41,937 INFO Connection check task end + +2025-09-24 15:55:42,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:44,937 INFO Connection check task start + +2025-09-24 15:55:44,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:44,937 INFO Out dated connection ,size=0 + +2025-09-24 15:55:44,937 INFO Connection check task end + +2025-09-24 15:55:45,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:47,937 INFO Connection check task start + +2025-09-24 15:55:47,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:47,938 INFO Out dated connection ,size=0 + +2025-09-24 15:55:47,938 INFO Connection check task end + +2025-09-24 15:55:48,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:50,939 INFO Connection check task start + +2025-09-24 15:55:50,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:50,939 INFO Out dated connection ,size=0 + +2025-09-24 15:55:50,939 INFO Connection check task end + +2025-09-24 15:55:51,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:53,940 INFO Connection check task start + +2025-09-24 15:55:53,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:53,940 INFO Out dated connection ,size=0 + +2025-09-24 15:55:53,941 INFO Connection check task end + +2025-09-24 15:55:54,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:56,942 INFO Connection check task start + +2025-09-24 15:55:56,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:56,942 INFO Out dated connection ,size=0 + +2025-09-24 15:55:56,942 INFO Connection check task end + +2025-09-24 15:55:57,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:55:59,943 INFO Connection check task start + +2025-09-24 15:55:59,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:55:59,943 INFO Out dated connection ,size=0 + +2025-09-24 15:55:59,943 INFO Connection check task end + +2025-09-24 15:56:00,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:02,945 INFO Connection check task start + +2025-09-24 15:56:02,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:02,945 INFO Out dated connection ,size=0 + +2025-09-24 15:56:02,945 INFO Connection check task end + +2025-09-24 15:56:03,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:05,945 INFO Connection check task start + +2025-09-24 15:56:05,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:05,945 INFO Out dated connection ,size=0 + +2025-09-24 15:56:05,945 INFO Connection check task end + +2025-09-24 15:56:06,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:08,947 INFO Connection check task start + +2025-09-24 15:56:08,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:08,947 INFO Out dated connection ,size=0 + +2025-09-24 15:56:08,947 INFO Connection check task end + +2025-09-24 15:56:09,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:11,948 INFO Connection check task start + +2025-09-24 15:56:11,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:11,948 INFO Out dated connection ,size=0 + +2025-09-24 15:56:11,948 INFO Connection check task end + +2025-09-24 15:56:12,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:14,949 INFO Connection check task start + +2025-09-24 15:56:14,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:14,949 INFO Out dated connection ,size=0 + +2025-09-24 15:56:14,949 INFO Connection check task end + +2025-09-24 15:56:15,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:17,949 INFO Connection check task start + +2025-09-24 15:56:17,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:17,950 INFO Out dated connection ,size=0 + +2025-09-24 15:56:17,950 INFO Connection check task end + +2025-09-24 15:56:18,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:20,952 INFO Connection check task start + +2025-09-24 15:56:20,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:20,952 INFO Out dated connection ,size=0 + +2025-09-24 15:56:20,952 INFO Connection check task end + +2025-09-24 15:56:21,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:23,952 INFO Connection check task start + +2025-09-24 15:56:23,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:23,952 INFO Out dated connection ,size=0 + +2025-09-24 15:56:23,953 INFO Connection check task end + +2025-09-24 15:56:24,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:26,953 INFO Connection check task start + +2025-09-24 15:56:26,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:26,953 INFO Out dated connection ,size=0 + +2025-09-24 15:56:26,953 INFO Connection check task end + +2025-09-24 15:56:27,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:29,955 INFO Connection check task start + +2025-09-24 15:56:29,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:29,955 INFO Out dated connection ,size=0 + +2025-09-24 15:56:29,955 INFO Connection check task end + +2025-09-24 15:56:30,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:32,956 INFO Connection check task start + +2025-09-24 15:56:32,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:32,956 INFO Out dated connection ,size=0 + +2025-09-24 15:56:32,956 INFO Connection check task end + +2025-09-24 15:56:33,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:35,956 INFO Connection check task start + +2025-09-24 15:56:35,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:35,957 INFO Out dated connection ,size=0 + +2025-09-24 15:56:35,957 INFO Connection check task end + +2025-09-24 15:56:36,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:38,959 INFO Connection check task start + +2025-09-24 15:56:38,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:38,959 INFO Out dated connection ,size=0 + +2025-09-24 15:56:38,959 INFO Connection check task end + +2025-09-24 15:56:39,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:41,960 INFO Connection check task start + +2025-09-24 15:56:41,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:41,961 INFO Out dated connection ,size=0 + +2025-09-24 15:56:41,961 INFO Connection check task end + +2025-09-24 15:56:42,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:44,963 INFO Connection check task start + +2025-09-24 15:56:44,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:44,963 INFO Out dated connection ,size=0 + +2025-09-24 15:56:44,963 INFO Connection check task end + +2025-09-24 15:56:45,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:47,964 INFO Connection check task start + +2025-09-24 15:56:47,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:47,964 INFO Out dated connection ,size=0 + +2025-09-24 15:56:47,964 INFO Connection check task end + +2025-09-24 15:56:48,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:50,964 INFO Connection check task start + +2025-09-24 15:56:50,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:50,964 INFO Out dated connection ,size=0 + +2025-09-24 15:56:50,965 INFO Connection check task end + +2025-09-24 15:56:51,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:53,966 INFO Connection check task start + +2025-09-24 15:56:53,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:53,966 INFO Out dated connection ,size=0 + +2025-09-24 15:56:53,966 INFO Connection check task end + +2025-09-24 15:56:54,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:56,966 INFO Connection check task start + +2025-09-24 15:56:56,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:56,967 INFO Out dated connection ,size=0 + +2025-09-24 15:56:56,967 INFO Connection check task end + +2025-09-24 15:56:57,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:56:59,968 INFO Connection check task start + +2025-09-24 15:56:59,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:56:59,969 INFO Out dated connection ,size=0 + +2025-09-24 15:56:59,969 INFO Connection check task end + +2025-09-24 15:57:00,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:02,969 INFO Connection check task start + +2025-09-24 15:57:02,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:02,969 INFO Out dated connection ,size=0 + +2025-09-24 15:57:02,970 INFO Connection check task end + +2025-09-24 15:57:03,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:05,972 INFO Connection check task start + +2025-09-24 15:57:05,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:05,972 INFO Out dated connection ,size=0 + +2025-09-24 15:57:05,972 INFO Connection check task end + +2025-09-24 15:57:06,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:08,972 INFO Connection check task start + +2025-09-24 15:57:08,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:08,972 INFO Out dated connection ,size=0 + +2025-09-24 15:57:08,972 INFO Connection check task end + +2025-09-24 15:57:09,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:11,973 INFO Connection check task start + +2025-09-24 15:57:11,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:11,973 INFO Out dated connection ,size=0 + +2025-09-24 15:57:11,973 INFO Connection check task end + +2025-09-24 15:57:12,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:14,974 INFO Connection check task start + +2025-09-24 15:57:14,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:14,974 INFO Out dated connection ,size=0 + +2025-09-24 15:57:14,975 INFO Connection check task end + +2025-09-24 15:57:15,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:17,975 INFO Connection check task start + +2025-09-24 15:57:17,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:17,975 INFO Out dated connection ,size=0 + +2025-09-24 15:57:17,975 INFO Connection check task end + +2025-09-24 15:57:18,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:20,975 INFO Connection check task start + +2025-09-24 15:57:20,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:20,975 INFO Out dated connection ,size=0 + +2025-09-24 15:57:20,975 INFO Connection check task end + +2025-09-24 15:57:21,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:23,975 INFO Connection check task start + +2025-09-24 15:57:23,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:23,976 INFO Out dated connection ,size=0 + +2025-09-24 15:57:23,976 INFO Connection check task end + +2025-09-24 15:57:24,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:26,976 INFO Connection check task start + +2025-09-24 15:57:26,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:26,976 INFO Out dated connection ,size=0 + +2025-09-24 15:57:26,976 INFO Connection check task end + +2025-09-24 15:57:27,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:29,976 INFO Connection check task start + +2025-09-24 15:57:29,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:29,977 INFO Out dated connection ,size=0 + +2025-09-24 15:57:29,977 INFO Connection check task end + +2025-09-24 15:57:30,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:32,977 INFO Connection check task start + +2025-09-24 15:57:32,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:32,977 INFO Out dated connection ,size=0 + +2025-09-24 15:57:32,977 INFO Connection check task end + +2025-09-24 15:57:33,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:35,978 INFO Connection check task start + +2025-09-24 15:57:35,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:35,978 INFO Out dated connection ,size=0 + +2025-09-24 15:57:35,978 INFO Connection check task end + +2025-09-24 15:57:36,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:38,978 INFO Connection check task start + +2025-09-24 15:57:38,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:38,978 INFO Out dated connection ,size=0 + +2025-09-24 15:57:38,978 INFO Connection check task end + +2025-09-24 15:57:39,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:41,980 INFO Connection check task start + +2025-09-24 15:57:41,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:41,980 INFO Out dated connection ,size=0 + +2025-09-24 15:57:41,980 INFO Connection check task end + +2025-09-24 15:57:42,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:44,980 INFO Connection check task start + +2025-09-24 15:57:44,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:44,981 INFO Out dated connection ,size=0 + +2025-09-24 15:57:44,981 INFO Connection check task end + +2025-09-24 15:57:45,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:47,981 INFO Connection check task start + +2025-09-24 15:57:47,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:47,982 INFO Out dated connection ,size=0 + +2025-09-24 15:57:47,982 INFO Connection check task end + +2025-09-24 15:57:48,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:50,984 INFO Connection check task start + +2025-09-24 15:57:50,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:50,984 INFO Out dated connection ,size=0 + +2025-09-24 15:57:50,984 INFO Connection check task end + +2025-09-24 15:57:51,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:53,986 INFO Connection check task start + +2025-09-24 15:57:53,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:53,986 INFO Out dated connection ,size=0 + +2025-09-24 15:57:53,986 INFO Connection check task end + +2025-09-24 15:57:54,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:56,987 INFO Connection check task start + +2025-09-24 15:57:56,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:56,987 INFO Out dated connection ,size=0 + +2025-09-24 15:57:56,987 INFO Connection check task end + +2025-09-24 15:57:57,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:57:59,989 INFO Connection check task start + +2025-09-24 15:57:59,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:57:59,989 INFO Out dated connection ,size=0 + +2025-09-24 15:57:59,989 INFO Connection check task end + +2025-09-24 15:58:00,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:02,990 INFO Connection check task start + +2025-09-24 15:58:02,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:02,990 INFO Out dated connection ,size=0 + +2025-09-24 15:58:02,990 INFO Connection check task end + +2025-09-24 15:58:03,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:05,991 INFO Connection check task start + +2025-09-24 15:58:05,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:05,992 INFO Out dated connection ,size=0 + +2025-09-24 15:58:05,992 INFO Connection check task end + +2025-09-24 15:58:06,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:08,994 INFO Connection check task start + +2025-09-24 15:58:08,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:08,994 INFO Out dated connection ,size=0 + +2025-09-24 15:58:08,994 INFO Connection check task end + +2025-09-24 15:58:09,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:11,994 INFO Connection check task start + +2025-09-24 15:58:11,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:11,995 INFO Out dated connection ,size=0 + +2025-09-24 15:58:11,995 INFO Connection check task end + +2025-09-24 15:58:12,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:14,995 INFO Connection check task start + +2025-09-24 15:58:14,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:14,995 INFO Out dated connection ,size=0 + +2025-09-24 15:58:14,995 INFO Connection check task end + +2025-09-24 15:58:15,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:17,996 INFO Connection check task start + +2025-09-24 15:58:17,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:17,997 INFO Out dated connection ,size=0 + +2025-09-24 15:58:17,997 INFO Connection check task end + +2025-09-24 15:58:18,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:20,997 INFO Connection check task start + +2025-09-24 15:58:20,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:20,997 INFO Out dated connection ,size=0 + +2025-09-24 15:58:20,997 INFO Connection check task end + +2025-09-24 15:58:21,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:23,998 INFO Connection check task start + +2025-09-24 15:58:23,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:23,998 INFO Out dated connection ,size=0 + +2025-09-24 15:58:23,998 INFO Connection check task end + +2025-09-24 15:58:24,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:26,998 INFO Connection check task start + +2025-09-24 15:58:26,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:26,998 INFO Out dated connection ,size=0 + +2025-09-24 15:58:26,999 INFO Connection check task end + +2025-09-24 15:58:27,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:30,000 INFO Connection check task start + +2025-09-24 15:58:30,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:30,000 INFO Out dated connection ,size=0 + +2025-09-24 15:58:30,000 INFO Connection check task end + +2025-09-24 15:58:30,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:33,001 INFO Connection check task start + +2025-09-24 15:58:33,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:33,001 INFO Out dated connection ,size=0 + +2025-09-24 15:58:33,001 INFO Connection check task end + +2025-09-24 15:58:33,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:36,003 INFO Connection check task start + +2025-09-24 15:58:36,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:36,003 INFO Out dated connection ,size=0 + +2025-09-24 15:58:36,003 INFO Connection check task end + +2025-09-24 15:58:36,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:39,004 INFO Connection check task start + +2025-09-24 15:58:39,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:39,004 INFO Out dated connection ,size=0 + +2025-09-24 15:58:39,004 INFO Connection check task end + +2025-09-24 15:58:39,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:42,004 INFO Connection check task start + +2025-09-24 15:58:42,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:42,004 INFO Out dated connection ,size=0 + +2025-09-24 15:58:42,004 INFO Connection check task end + +2025-09-24 15:58:42,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:45,004 INFO Connection check task start + +2025-09-24 15:58:45,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:45,005 INFO Out dated connection ,size=0 + +2025-09-24 15:58:45,005 INFO Connection check task end + +2025-09-24 15:58:45,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:48,005 INFO Connection check task start + +2025-09-24 15:58:48,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:48,005 INFO Out dated connection ,size=0 + +2025-09-24 15:58:48,005 INFO Connection check task end + +2025-09-24 15:58:48,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:51,005 INFO Connection check task start + +2025-09-24 15:58:51,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:51,006 INFO Out dated connection ,size=0 + +2025-09-24 15:58:51,006 INFO Connection check task end + +2025-09-24 15:58:51,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:54,006 INFO Connection check task start + +2025-09-24 15:58:54,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:54,006 INFO Out dated connection ,size=0 + +2025-09-24 15:58:54,006 INFO Connection check task end + +2025-09-24 15:58:54,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:58:57,008 INFO Connection check task start + +2025-09-24 15:58:57,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:58:57,009 INFO Out dated connection ,size=0 + +2025-09-24 15:58:57,009 INFO Connection check task end + +2025-09-24 15:58:57,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:00,009 INFO Connection check task start + +2025-09-24 15:59:00,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:00,009 INFO Out dated connection ,size=0 + +2025-09-24 15:59:00,009 INFO Connection check task end + +2025-09-24 15:59:00,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:03,009 INFO Connection check task start + +2025-09-24 15:59:03,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:03,010 INFO Out dated connection ,size=0 + +2025-09-24 15:59:03,010 INFO Connection check task end + +2025-09-24 15:59:03,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:06,011 INFO Connection check task start + +2025-09-24 15:59:06,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:06,012 INFO Out dated connection ,size=0 + +2025-09-24 15:59:06,012 INFO Connection check task end + +2025-09-24 15:59:06,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:09,013 INFO Connection check task start + +2025-09-24 15:59:09,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:09,013 INFO Out dated connection ,size=0 + +2025-09-24 15:59:09,013 INFO Connection check task end + +2025-09-24 15:59:09,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:12,013 INFO Connection check task start + +2025-09-24 15:59:12,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:12,014 INFO Out dated connection ,size=0 + +2025-09-24 15:59:12,014 INFO Connection check task end + +2025-09-24 15:59:12,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:15,015 INFO Connection check task start + +2025-09-24 15:59:15,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:15,015 INFO Out dated connection ,size=0 + +2025-09-24 15:59:15,015 INFO Connection check task end + +2025-09-24 15:59:15,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:18,017 INFO Connection check task start + +2025-09-24 15:59:18,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:18,017 INFO Out dated connection ,size=0 + +2025-09-24 15:59:18,017 INFO Connection check task end + +2025-09-24 15:59:18,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:21,018 INFO Connection check task start + +2025-09-24 15:59:21,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:21,018 INFO Out dated connection ,size=0 + +2025-09-24 15:59:21,019 INFO Connection check task end + +2025-09-24 15:59:21,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:24,020 INFO Connection check task start + +2025-09-24 15:59:24,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:24,020 INFO Out dated connection ,size=0 + +2025-09-24 15:59:24,020 INFO Connection check task end + +2025-09-24 15:59:24,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:27,021 INFO Connection check task start + +2025-09-24 15:59:27,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:27,021 INFO Out dated connection ,size=0 + +2025-09-24 15:59:27,021 INFO Connection check task end + +2025-09-24 15:59:27,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:30,022 INFO Connection check task start + +2025-09-24 15:59:30,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:30,022 INFO Out dated connection ,size=0 + +2025-09-24 15:59:30,022 INFO Connection check task end + +2025-09-24 15:59:30,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:33,023 INFO Connection check task start + +2025-09-24 15:59:33,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:33,023 INFO Out dated connection ,size=0 + +2025-09-24 15:59:33,023 INFO Connection check task end + +2025-09-24 15:59:33,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:36,024 INFO Connection check task start + +2025-09-24 15:59:36,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:36,024 INFO Out dated connection ,size=0 + +2025-09-24 15:59:36,024 INFO Connection check task end + +2025-09-24 15:59:36,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:39,025 INFO Connection check task start + +2025-09-24 15:59:39,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:39,025 INFO Out dated connection ,size=0 + +2025-09-24 15:59:39,025 INFO Connection check task end + +2025-09-24 15:59:39,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:42,027 INFO Connection check task start + +2025-09-24 15:59:42,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:42,027 INFO Out dated connection ,size=0 + +2025-09-24 15:59:42,027 INFO Connection check task end + +2025-09-24 15:59:42,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:45,029 INFO Connection check task start + +2025-09-24 15:59:45,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:45,030 INFO Out dated connection ,size=0 + +2025-09-24 15:59:45,030 INFO Connection check task end + +2025-09-24 15:59:45,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:48,032 INFO Connection check task start + +2025-09-24 15:59:48,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:48,032 INFO Out dated connection ,size=0 + +2025-09-24 15:59:48,032 INFO Connection check task end + +2025-09-24 15:59:48,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:51,033 INFO Connection check task start + +2025-09-24 15:59:51,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:51,033 INFO Out dated connection ,size=0 + +2025-09-24 15:59:51,033 INFO Connection check task end + +2025-09-24 15:59:51,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:54,035 INFO Connection check task start + +2025-09-24 15:59:54,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:54,036 INFO Out dated connection ,size=0 + +2025-09-24 15:59:54,036 INFO Connection check task end + +2025-09-24 15:59:54,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 15:59:57,037 INFO Connection check task start + +2025-09-24 15:59:57,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 15:59:57,037 INFO Out dated connection ,size=0 + +2025-09-24 15:59:57,037 INFO Connection check task end + +2025-09-24 15:59:57,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:00,037 INFO Connection check task start + +2025-09-24 16:00:00,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:00,038 INFO Out dated connection ,size=0 + +2025-09-24 16:00:00,038 INFO Connection check task end + +2025-09-24 16:00:00,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:03,038 INFO Connection check task start + +2025-09-24 16:00:03,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:03,038 INFO Out dated connection ,size=0 + +2025-09-24 16:00:03,038 INFO Connection check task end + +2025-09-24 16:00:03,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:06,040 INFO Connection check task start + +2025-09-24 16:00:06,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:06,040 INFO Out dated connection ,size=0 + +2025-09-24 16:00:06,040 INFO Connection check task end + +2025-09-24 16:00:06,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:09,041 INFO Connection check task start + +2025-09-24 16:00:09,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:09,041 INFO Out dated connection ,size=0 + +2025-09-24 16:00:09,041 INFO Connection check task end + +2025-09-24 16:00:09,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:12,042 INFO Connection check task start + +2025-09-24 16:00:12,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:12,042 INFO Out dated connection ,size=0 + +2025-09-24 16:00:12,042 INFO Connection check task end + +2025-09-24 16:00:12,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:15,044 INFO Connection check task start + +2025-09-24 16:00:15,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:15,044 INFO Out dated connection ,size=0 + +2025-09-24 16:00:15,044 INFO Connection check task end + +2025-09-24 16:00:15,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:18,046 INFO Connection check task start + +2025-09-24 16:00:18,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:18,046 INFO Out dated connection ,size=0 + +2025-09-24 16:00:18,046 INFO Connection check task end + +2025-09-24 16:00:18,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:21,047 INFO Connection check task start + +2025-09-24 16:00:21,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:21,047 INFO Out dated connection ,size=0 + +2025-09-24 16:00:21,047 INFO Connection check task end + +2025-09-24 16:00:21,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:24,049 INFO Connection check task start + +2025-09-24 16:00:24,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:24,050 INFO Out dated connection ,size=0 + +2025-09-24 16:00:24,050 INFO Connection check task end + +2025-09-24 16:00:24,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:27,052 INFO Connection check task start + +2025-09-24 16:00:27,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:27,052 INFO Out dated connection ,size=0 + +2025-09-24 16:00:27,052 INFO Connection check task end + +2025-09-24 16:00:27,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:30,054 INFO Connection check task start + +2025-09-24 16:00:30,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:30,054 INFO Out dated connection ,size=0 + +2025-09-24 16:00:30,054 INFO Connection check task end + +2025-09-24 16:00:30,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:33,054 INFO Connection check task start + +2025-09-24 16:00:33,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:33,054 INFO Out dated connection ,size=0 + +2025-09-24 16:00:33,054 INFO Connection check task end + +2025-09-24 16:00:33,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:36,055 INFO Connection check task start + +2025-09-24 16:00:36,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:36,055 INFO Out dated connection ,size=0 + +2025-09-24 16:00:36,055 INFO Connection check task end + +2025-09-24 16:00:36,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:39,055 INFO Connection check task start + +2025-09-24 16:00:39,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:39,055 INFO Out dated connection ,size=0 + +2025-09-24 16:00:39,055 INFO Connection check task end + +2025-09-24 16:00:39,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:42,057 INFO Connection check task start + +2025-09-24 16:00:42,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:42,057 INFO Out dated connection ,size=0 + +2025-09-24 16:00:42,057 INFO Connection check task end + +2025-09-24 16:00:42,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:45,057 INFO Connection check task start + +2025-09-24 16:00:45,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:45,057 INFO Out dated connection ,size=0 + +2025-09-24 16:00:45,057 INFO Connection check task end + +2025-09-24 16:00:45,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:48,058 INFO Connection check task start + +2025-09-24 16:00:48,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:48,058 INFO Out dated connection ,size=0 + +2025-09-24 16:00:48,058 INFO Connection check task end + +2025-09-24 16:00:48,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:51,058 INFO Connection check task start + +2025-09-24 16:00:51,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:51,059 INFO Out dated connection ,size=0 + +2025-09-24 16:00:51,059 INFO Connection check task end + +2025-09-24 16:00:51,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:54,061 INFO Connection check task start + +2025-09-24 16:00:54,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:54,061 INFO Out dated connection ,size=0 + +2025-09-24 16:00:54,061 INFO Connection check task end + +2025-09-24 16:00:54,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:00:57,061 INFO Connection check task start + +2025-09-24 16:00:57,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:00:57,061 INFO Out dated connection ,size=0 + +2025-09-24 16:00:57,061 INFO Connection check task end + +2025-09-24 16:00:57,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:00,064 INFO Connection check task start + +2025-09-24 16:01:00,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:00,064 INFO Out dated connection ,size=0 + +2025-09-24 16:01:00,064 INFO Connection check task end + +2025-09-24 16:01:00,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:03,064 INFO Connection check task start + +2025-09-24 16:01:03,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:03,064 INFO Out dated connection ,size=0 + +2025-09-24 16:01:03,064 INFO Connection check task end + +2025-09-24 16:01:03,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:06,065 INFO Connection check task start + +2025-09-24 16:01:06,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:06,065 INFO Out dated connection ,size=0 + +2025-09-24 16:01:06,065 INFO Connection check task end + +2025-09-24 16:01:06,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:09,066 INFO Connection check task start + +2025-09-24 16:01:09,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:09,066 INFO Out dated connection ,size=0 + +2025-09-24 16:01:09,066 INFO Connection check task end + +2025-09-24 16:01:09,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:12,068 INFO Connection check task start + +2025-09-24 16:01:12,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:12,068 INFO Out dated connection ,size=0 + +2025-09-24 16:01:12,069 INFO Connection check task end + +2025-09-24 16:01:12,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:15,069 INFO Connection check task start + +2025-09-24 16:01:15,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:15,069 INFO Out dated connection ,size=0 + +2025-09-24 16:01:15,069 INFO Connection check task end + +2025-09-24 16:01:15,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:18,070 INFO Connection check task start + +2025-09-24 16:01:18,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:18,071 INFO Out dated connection ,size=0 + +2025-09-24 16:01:18,071 INFO Connection check task end + +2025-09-24 16:01:18,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:21,071 INFO Connection check task start + +2025-09-24 16:01:21,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:21,071 INFO Out dated connection ,size=0 + +2025-09-24 16:01:21,071 INFO Connection check task end + +2025-09-24 16:01:21,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:24,072 INFO Connection check task start + +2025-09-24 16:01:24,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:24,072 INFO Out dated connection ,size=0 + +2025-09-24 16:01:24,072 INFO Connection check task end + +2025-09-24 16:01:24,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:27,074 INFO Connection check task start + +2025-09-24 16:01:27,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:27,075 INFO Out dated connection ,size=0 + +2025-09-24 16:01:27,075 INFO Connection check task end + +2025-09-24 16:01:27,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:30,077 INFO Connection check task start + +2025-09-24 16:01:30,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:30,077 INFO Out dated connection ,size=0 + +2025-09-24 16:01:30,077 INFO Connection check task end + +2025-09-24 16:01:30,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:33,079 INFO Connection check task start + +2025-09-24 16:01:33,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:33,079 INFO Out dated connection ,size=0 + +2025-09-24 16:01:33,079 INFO Connection check task end + +2025-09-24 16:01:33,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:36,081 INFO Connection check task start + +2025-09-24 16:01:36,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:36,081 INFO Out dated connection ,size=0 + +2025-09-24 16:01:36,081 INFO Connection check task end + +2025-09-24 16:01:36,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:39,083 INFO Connection check task start + +2025-09-24 16:01:39,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:39,083 INFO Out dated connection ,size=0 + +2025-09-24 16:01:39,083 INFO Connection check task end + +2025-09-24 16:01:39,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:42,084 INFO Connection check task start + +2025-09-24 16:01:42,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:42,084 INFO Out dated connection ,size=0 + +2025-09-24 16:01:42,084 INFO Connection check task end + +2025-09-24 16:01:42,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:45,084 INFO Connection check task start + +2025-09-24 16:01:45,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:45,084 INFO Out dated connection ,size=0 + +2025-09-24 16:01:45,084 INFO Connection check task end + +2025-09-24 16:01:45,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:48,085 INFO Connection check task start + +2025-09-24 16:01:48,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:48,085 INFO Out dated connection ,size=0 + +2025-09-24 16:01:48,085 INFO Connection check task end + +2025-09-24 16:01:48,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:51,085 INFO Connection check task start + +2025-09-24 16:01:51,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:51,085 INFO Out dated connection ,size=0 + +2025-09-24 16:01:51,085 INFO Connection check task end + +2025-09-24 16:01:51,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:54,087 INFO Connection check task start + +2025-09-24 16:01:54,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:54,088 INFO Out dated connection ,size=0 + +2025-09-24 16:01:54,088 INFO Connection check task end + +2025-09-24 16:01:54,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:01:57,089 INFO Connection check task start + +2025-09-24 16:01:57,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:01:57,089 INFO Out dated connection ,size=0 + +2025-09-24 16:01:57,089 INFO Connection check task end + +2025-09-24 16:01:57,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:00,091 INFO Connection check task start + +2025-09-24 16:02:00,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:00,091 INFO Out dated connection ,size=0 + +2025-09-24 16:02:00,091 INFO Connection check task end + +2025-09-24 16:02:00,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:03,092 INFO Connection check task start + +2025-09-24 16:02:03,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:03,092 INFO Out dated connection ,size=0 + +2025-09-24 16:02:03,092 INFO Connection check task end + +2025-09-24 16:02:03,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:06,092 INFO Connection check task start + +2025-09-24 16:02:06,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:06,092 INFO Out dated connection ,size=0 + +2025-09-24 16:02:06,092 INFO Connection check task end + +2025-09-24 16:02:06,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:09,093 INFO Connection check task start + +2025-09-24 16:02:09,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:09,093 INFO Out dated connection ,size=0 + +2025-09-24 16:02:09,093 INFO Connection check task end + +2025-09-24 16:02:09,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:12,095 INFO Connection check task start + +2025-09-24 16:02:12,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:12,095 INFO Out dated connection ,size=0 + +2025-09-24 16:02:12,095 INFO Connection check task end + +2025-09-24 16:02:12,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:15,095 INFO Connection check task start + +2025-09-24 16:02:15,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:15,095 INFO Out dated connection ,size=0 + +2025-09-24 16:02:15,095 INFO Connection check task end + +2025-09-24 16:02:15,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:18,096 INFO Connection check task start + +2025-09-24 16:02:18,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:18,096 INFO Out dated connection ,size=0 + +2025-09-24 16:02:18,096 INFO Connection check task end + +2025-09-24 16:02:18,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:21,096 INFO Connection check task start + +2025-09-24 16:02:21,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:21,097 INFO Out dated connection ,size=0 + +2025-09-24 16:02:21,097 INFO Connection check task end + +2025-09-24 16:02:21,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:24,097 INFO Connection check task start + +2025-09-24 16:02:24,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:24,097 INFO Out dated connection ,size=0 + +2025-09-24 16:02:24,097 INFO Connection check task end + +2025-09-24 16:02:24,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:27,099 INFO Connection check task start + +2025-09-24 16:02:27,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:27,099 INFO Out dated connection ,size=0 + +2025-09-24 16:02:27,099 INFO Connection check task end + +2025-09-24 16:02:27,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:30,099 INFO Connection check task start + +2025-09-24 16:02:30,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:30,099 INFO Out dated connection ,size=0 + +2025-09-24 16:02:30,099 INFO Connection check task end + +2025-09-24 16:02:30,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:33,102 INFO Connection check task start + +2025-09-24 16:02:33,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:33,102 INFO Out dated connection ,size=0 + +2025-09-24 16:02:33,102 INFO Connection check task end + +2025-09-24 16:02:33,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:36,103 INFO Connection check task start + +2025-09-24 16:02:36,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:36,103 INFO Out dated connection ,size=0 + +2025-09-24 16:02:36,103 INFO Connection check task end + +2025-09-24 16:02:36,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:39,105 INFO Connection check task start + +2025-09-24 16:02:39,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:39,105 INFO Out dated connection ,size=0 + +2025-09-24 16:02:39,105 INFO Connection check task end + +2025-09-24 16:02:39,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:42,107 INFO Connection check task start + +2025-09-24 16:02:42,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:42,107 INFO Out dated connection ,size=0 + +2025-09-24 16:02:42,108 INFO Connection check task end + +2025-09-24 16:02:42,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:45,108 INFO Connection check task start + +2025-09-24 16:02:45,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:45,108 INFO Out dated connection ,size=0 + +2025-09-24 16:02:45,108 INFO Connection check task end + +2025-09-24 16:02:45,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:48,109 INFO Connection check task start + +2025-09-24 16:02:48,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:48,110 INFO Out dated connection ,size=0 + +2025-09-24 16:02:48,110 INFO Connection check task end + +2025-09-24 16:02:48,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:51,110 INFO Connection check task start + +2025-09-24 16:02:51,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:51,110 INFO Out dated connection ,size=0 + +2025-09-24 16:02:51,110 INFO Connection check task end + +2025-09-24 16:02:51,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:54,112 INFO Connection check task start + +2025-09-24 16:02:54,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:54,113 INFO Out dated connection ,size=0 + +2025-09-24 16:02:54,113 INFO Connection check task end + +2025-09-24 16:02:54,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:02:57,113 INFO Connection check task start + +2025-09-24 16:02:57,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:02:57,113 INFO Out dated connection ,size=0 + +2025-09-24 16:02:57,113 INFO Connection check task end + +2025-09-24 16:02:57,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:00,115 INFO Connection check task start + +2025-09-24 16:03:00,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:00,115 INFO Out dated connection ,size=0 + +2025-09-24 16:03:00,115 INFO Connection check task end + +2025-09-24 16:03:00,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:03,117 INFO Connection check task start + +2025-09-24 16:03:03,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:03,117 INFO Out dated connection ,size=0 + +2025-09-24 16:03:03,117 INFO Connection check task end + +2025-09-24 16:03:03,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:06,119 INFO Connection check task start + +2025-09-24 16:03:06,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:06,119 INFO Out dated connection ,size=0 + +2025-09-24 16:03:06,119 INFO Connection check task end + +2025-09-24 16:03:06,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:09,119 INFO Connection check task start + +2025-09-24 16:03:09,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:09,119 INFO Out dated connection ,size=0 + +2025-09-24 16:03:09,119 INFO Connection check task end + +2025-09-24 16:03:09,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:12,120 INFO Connection check task start + +2025-09-24 16:03:12,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:12,120 INFO Out dated connection ,size=0 + +2025-09-24 16:03:12,120 INFO Connection check task end + +2025-09-24 16:03:12,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:15,121 INFO Connection check task start + +2025-09-24 16:03:15,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:15,121 INFO Out dated connection ,size=0 + +2025-09-24 16:03:15,121 INFO Connection check task end + +2025-09-24 16:03:15,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:18,122 INFO Connection check task start + +2025-09-24 16:03:18,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:18,122 INFO Out dated connection ,size=0 + +2025-09-24 16:03:18,122 INFO Connection check task end + +2025-09-24 16:03:18,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:21,122 INFO Connection check task start + +2025-09-24 16:03:21,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:21,122 INFO Out dated connection ,size=0 + +2025-09-24 16:03:21,122 INFO Connection check task end + +2025-09-24 16:03:21,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:24,123 INFO Connection check task start + +2025-09-24 16:03:24,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:24,124 INFO Out dated connection ,size=0 + +2025-09-24 16:03:24,124 INFO Connection check task end + +2025-09-24 16:03:24,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:27,125 INFO Connection check task start + +2025-09-24 16:03:27,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:27,125 INFO Out dated connection ,size=0 + +2025-09-24 16:03:27,125 INFO Connection check task end + +2025-09-24 16:03:27,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:30,127 INFO Connection check task start + +2025-09-24 16:03:30,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:30,127 INFO Out dated connection ,size=0 + +2025-09-24 16:03:30,127 INFO Connection check task end + +2025-09-24 16:03:30,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:33,128 INFO Connection check task start + +2025-09-24 16:03:33,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:33,128 INFO Out dated connection ,size=0 + +2025-09-24 16:03:33,128 INFO Connection check task end + +2025-09-24 16:03:33,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:36,129 INFO Connection check task start + +2025-09-24 16:03:36,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:36,130 INFO Out dated connection ,size=0 + +2025-09-24 16:03:36,130 INFO Connection check task end + +2025-09-24 16:03:36,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:39,130 INFO Connection check task start + +2025-09-24 16:03:39,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:39,130 INFO Out dated connection ,size=0 + +2025-09-24 16:03:39,130 INFO Connection check task end + +2025-09-24 16:03:39,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:42,130 INFO Connection check task start + +2025-09-24 16:03:42,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:42,131 INFO Out dated connection ,size=0 + +2025-09-24 16:03:42,131 INFO Connection check task end + +2025-09-24 16:03:42,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:45,131 INFO Connection check task start + +2025-09-24 16:03:45,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:45,131 INFO Out dated connection ,size=0 + +2025-09-24 16:03:45,131 INFO Connection check task end + +2025-09-24 16:03:45,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:48,132 INFO Connection check task start + +2025-09-24 16:03:48,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:48,132 INFO Out dated connection ,size=0 + +2025-09-24 16:03:48,132 INFO Connection check task end + +2025-09-24 16:03:48,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:51,133 INFO Connection check task start + +2025-09-24 16:03:51,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:51,133 INFO Out dated connection ,size=0 + +2025-09-24 16:03:51,134 INFO Connection check task end + +2025-09-24 16:03:51,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:54,134 INFO Connection check task start + +2025-09-24 16:03:54,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:54,134 INFO Out dated connection ,size=0 + +2025-09-24 16:03:54,134 INFO Connection check task end + +2025-09-24 16:03:54,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:03:57,134 INFO Connection check task start + +2025-09-24 16:03:57,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:03:57,134 INFO Out dated connection ,size=0 + +2025-09-24 16:03:57,134 INFO Connection check task end + +2025-09-24 16:03:57,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:00,135 INFO Connection check task start + +2025-09-24 16:04:00,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:00,136 INFO Out dated connection ,size=0 + +2025-09-24 16:04:00,136 INFO Connection check task end + +2025-09-24 16:04:00,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:03,138 INFO Connection check task start + +2025-09-24 16:04:03,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:03,138 INFO Out dated connection ,size=0 + +2025-09-24 16:04:03,138 INFO Connection check task end + +2025-09-24 16:04:03,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:06,138 INFO Connection check task start + +2025-09-24 16:04:06,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:06,138 INFO Out dated connection ,size=0 + +2025-09-24 16:04:06,138 INFO Connection check task end + +2025-09-24 16:04:06,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:09,140 INFO Connection check task start + +2025-09-24 16:04:09,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:09,140 INFO Out dated connection ,size=0 + +2025-09-24 16:04:09,140 INFO Connection check task end + +2025-09-24 16:04:09,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:12,141 INFO Connection check task start + +2025-09-24 16:04:12,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:12,141 INFO Out dated connection ,size=0 + +2025-09-24 16:04:12,141 INFO Connection check task end + +2025-09-24 16:04:12,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:15,142 INFO Connection check task start + +2025-09-24 16:04:15,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:15,143 INFO Out dated connection ,size=0 + +2025-09-24 16:04:15,143 INFO Connection check task end + +2025-09-24 16:04:15,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:18,145 INFO Connection check task start + +2025-09-24 16:04:18,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:18,145 INFO Out dated connection ,size=0 + +2025-09-24 16:04:18,145 INFO Connection check task end + +2025-09-24 16:04:18,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:21,145 INFO Connection check task start + +2025-09-24 16:04:21,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:21,145 INFO Out dated connection ,size=0 + +2025-09-24 16:04:21,145 INFO Connection check task end + +2025-09-24 16:04:21,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:24,146 INFO Connection check task start + +2025-09-24 16:04:24,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:24,146 INFO Out dated connection ,size=0 + +2025-09-24 16:04:24,146 INFO Connection check task end + +2025-09-24 16:04:24,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:27,146 INFO Connection check task start + +2025-09-24 16:04:27,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:27,147 INFO Out dated connection ,size=0 + +2025-09-24 16:04:27,147 INFO Connection check task end + +2025-09-24 16:04:27,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:30,147 INFO Connection check task start + +2025-09-24 16:04:30,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:30,147 INFO Out dated connection ,size=0 + +2025-09-24 16:04:30,148 INFO Connection check task end + +2025-09-24 16:04:30,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:33,148 INFO Connection check task start + +2025-09-24 16:04:33,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:33,149 INFO Out dated connection ,size=0 + +2025-09-24 16:04:33,149 INFO Connection check task end + +2025-09-24 16:04:33,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:36,151 INFO Connection check task start + +2025-09-24 16:04:36,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:36,151 INFO Out dated connection ,size=0 + +2025-09-24 16:04:36,151 INFO Connection check task end + +2025-09-24 16:04:36,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:39,152 INFO Connection check task start + +2025-09-24 16:04:39,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:39,152 INFO Out dated connection ,size=0 + +2025-09-24 16:04:39,152 INFO Connection check task end + +2025-09-24 16:04:39,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:42,154 INFO Connection check task start + +2025-09-24 16:04:42,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:42,154 INFO Out dated connection ,size=0 + +2025-09-24 16:04:42,154 INFO Connection check task end + +2025-09-24 16:04:42,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:45,156 INFO Connection check task start + +2025-09-24 16:04:45,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:45,156 INFO Out dated connection ,size=0 + +2025-09-24 16:04:45,156 INFO Connection check task end + +2025-09-24 16:04:45,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:48,157 INFO Connection check task start + +2025-09-24 16:04:48,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:48,157 INFO Out dated connection ,size=0 + +2025-09-24 16:04:48,157 INFO Connection check task end + +2025-09-24 16:04:48,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:51,157 INFO Connection check task start + +2025-09-24 16:04:51,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:51,157 INFO Out dated connection ,size=0 + +2025-09-24 16:04:51,157 INFO Connection check task end + +2025-09-24 16:04:51,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:54,158 INFO Connection check task start + +2025-09-24 16:04:54,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:54,158 INFO Out dated connection ,size=0 + +2025-09-24 16:04:54,158 INFO Connection check task end + +2025-09-24 16:04:54,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:04:57,159 INFO Connection check task start + +2025-09-24 16:04:57,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:04:57,159 INFO Out dated connection ,size=0 + +2025-09-24 16:04:57,159 INFO Connection check task end + +2025-09-24 16:04:57,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:00,161 INFO Connection check task start + +2025-09-24 16:05:00,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:00,161 INFO Out dated connection ,size=0 + +2025-09-24 16:05:00,161 INFO Connection check task end + +2025-09-24 16:05:00,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:03,161 INFO Connection check task start + +2025-09-24 16:05:03,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:03,161 INFO Out dated connection ,size=0 + +2025-09-24 16:05:03,162 INFO Connection check task end + +2025-09-24 16:05:03,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:06,163 INFO Connection check task start + +2025-09-24 16:05:06,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:06,163 INFO Out dated connection ,size=0 + +2025-09-24 16:05:06,163 INFO Connection check task end + +2025-09-24 16:05:06,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:09,163 INFO Connection check task start + +2025-09-24 16:05:09,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:09,164 INFO Out dated connection ,size=0 + +2025-09-24 16:05:09,164 INFO Connection check task end + +2025-09-24 16:05:09,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:12,165 INFO Connection check task start + +2025-09-24 16:05:12,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:12,165 INFO Out dated connection ,size=0 + +2025-09-24 16:05:12,165 INFO Connection check task end + +2025-09-24 16:05:12,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:15,167 INFO Connection check task start + +2025-09-24 16:05:15,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:15,168 INFO Out dated connection ,size=0 + +2025-09-24 16:05:15,168 INFO Connection check task end + +2025-09-24 16:05:15,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:18,170 INFO Connection check task start + +2025-09-24 16:05:18,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:18,170 INFO Out dated connection ,size=0 + +2025-09-24 16:05:18,170 INFO Connection check task end + +2025-09-24 16:05:18,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:21,170 INFO Connection check task start + +2025-09-24 16:05:21,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:21,170 INFO Out dated connection ,size=0 + +2025-09-24 16:05:21,171 INFO Connection check task end + +2025-09-24 16:05:21,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:24,171 INFO Connection check task start + +2025-09-24 16:05:24,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:24,171 INFO Out dated connection ,size=0 + +2025-09-24 16:05:24,172 INFO Connection check task end + +2025-09-24 16:05:24,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:27,172 INFO Connection check task start + +2025-09-24 16:05:27,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:27,172 INFO Out dated connection ,size=0 + +2025-09-24 16:05:27,172 INFO Connection check task end + +2025-09-24 16:05:27,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:30,175 INFO Connection check task start + +2025-09-24 16:05:30,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:30,175 INFO Out dated connection ,size=0 + +2025-09-24 16:05:30,175 INFO Connection check task end + +2025-09-24 16:05:30,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:33,177 INFO Connection check task start + +2025-09-24 16:05:33,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:33,177 INFO Out dated connection ,size=0 + +2025-09-24 16:05:33,177 INFO Connection check task end + +2025-09-24 16:05:33,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:36,178 INFO Connection check task start + +2025-09-24 16:05:36,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:36,178 INFO Out dated connection ,size=0 + +2025-09-24 16:05:36,178 INFO Connection check task end + +2025-09-24 16:05:36,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:39,178 INFO Connection check task start + +2025-09-24 16:05:39,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:39,178 INFO Out dated connection ,size=0 + +2025-09-24 16:05:39,178 INFO Connection check task end + +2025-09-24 16:05:39,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:42,180 INFO Connection check task start + +2025-09-24 16:05:42,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:42,180 INFO Out dated connection ,size=0 + +2025-09-24 16:05:42,181 INFO Connection check task end + +2025-09-24 16:05:42,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:45,181 INFO Connection check task start + +2025-09-24 16:05:45,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:45,181 INFO Out dated connection ,size=0 + +2025-09-24 16:05:45,181 INFO Connection check task end + +2025-09-24 16:05:45,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:48,181 INFO Connection check task start + +2025-09-24 16:05:48,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:48,182 INFO Out dated connection ,size=0 + +2025-09-24 16:05:48,182 INFO Connection check task end + +2025-09-24 16:05:48,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:51,183 INFO Connection check task start + +2025-09-24 16:05:51,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:51,183 INFO Out dated connection ,size=0 + +2025-09-24 16:05:51,183 INFO Connection check task end + +2025-09-24 16:05:51,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:54,184 INFO Connection check task start + +2025-09-24 16:05:54,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:54,184 INFO Out dated connection ,size=0 + +2025-09-24 16:05:54,184 INFO Connection check task end + +2025-09-24 16:05:54,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:05:57,450 INFO Connection check task start + +2025-09-24 16:05:57,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:05:57,450 INFO Out dated connection ,size=0 + +2025-09-24 16:05:57,450 INFO Connection check task end + +2025-09-24 16:05:57,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:00,451 INFO Connection check task start + +2025-09-24 16:06:00,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:00,451 INFO Out dated connection ,size=0 + +2025-09-24 16:06:00,451 INFO Connection check task end + +2025-09-24 16:06:00,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:03,451 INFO Connection check task start + +2025-09-24 16:06:03,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:03,452 INFO Out dated connection ,size=0 + +2025-09-24 16:06:03,452 INFO Connection check task end + +2025-09-24 16:06:03,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:06,453 INFO Connection check task start + +2025-09-24 16:06:06,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:06,453 INFO Out dated connection ,size=0 + +2025-09-24 16:06:06,453 INFO Connection check task end + +2025-09-24 16:06:06,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:09,453 INFO Connection check task start + +2025-09-24 16:06:09,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:09,453 INFO Out dated connection ,size=0 + +2025-09-24 16:06:09,453 INFO Connection check task end + +2025-09-24 16:06:09,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:12,455 INFO Connection check task start + +2025-09-24 16:06:12,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:12,456 INFO Out dated connection ,size=0 + +2025-09-24 16:06:12,456 INFO Connection check task end + +2025-09-24 16:06:12,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:15,457 INFO Connection check task start + +2025-09-24 16:06:15,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:15,457 INFO Out dated connection ,size=0 + +2025-09-24 16:06:15,457 INFO Connection check task end + +2025-09-24 16:06:15,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:18,459 INFO Connection check task start + +2025-09-24 16:06:18,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:18,459 INFO Out dated connection ,size=0 + +2025-09-24 16:06:18,459 INFO Connection check task end + +2025-09-24 16:06:18,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:21,459 INFO Connection check task start + +2025-09-24 16:06:21,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:21,460 INFO Out dated connection ,size=0 + +2025-09-24 16:06:21,460 INFO Connection check task end + +2025-09-24 16:06:21,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:24,460 INFO Connection check task start + +2025-09-24 16:06:24,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:24,460 INFO Out dated connection ,size=0 + +2025-09-24 16:06:24,460 INFO Connection check task end + +2025-09-24 16:06:24,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:27,462 INFO Connection check task start + +2025-09-24 16:06:27,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:27,462 INFO Out dated connection ,size=0 + +2025-09-24 16:06:27,462 INFO Connection check task end + +2025-09-24 16:06:27,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:30,464 INFO Connection check task start + +2025-09-24 16:06:30,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:30,464 INFO Out dated connection ,size=0 + +2025-09-24 16:06:30,464 INFO Connection check task end + +2025-09-24 16:06:30,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:33,465 INFO Connection check task start + +2025-09-24 16:06:33,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:33,465 INFO Out dated connection ,size=0 + +2025-09-24 16:06:33,465 INFO Connection check task end + +2025-09-24 16:06:33,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:36,466 INFO Connection check task start + +2025-09-24 16:06:36,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:36,466 INFO Out dated connection ,size=0 + +2025-09-24 16:06:36,466 INFO Connection check task end + +2025-09-24 16:06:36,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:39,468 INFO Connection check task start + +2025-09-24 16:06:39,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:39,468 INFO Out dated connection ,size=0 + +2025-09-24 16:06:39,468 INFO Connection check task end + +2025-09-24 16:06:39,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:42,470 INFO Connection check task start + +2025-09-24 16:06:42,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:42,470 INFO Out dated connection ,size=0 + +2025-09-24 16:06:42,470 INFO Connection check task end + +2025-09-24 16:06:42,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:45,474 INFO Connection check task start + +2025-09-24 16:06:45,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:45,475 INFO Out dated connection ,size=0 + +2025-09-24 16:06:45,475 INFO Connection check task end + +2025-09-24 16:06:45,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:48,475 INFO Connection check task start + +2025-09-24 16:06:48,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:48,476 INFO Out dated connection ,size=0 + +2025-09-24 16:06:48,476 INFO Connection check task end + +2025-09-24 16:06:48,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:51,477 INFO Connection check task start + +2025-09-24 16:06:51,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:51,477 INFO Out dated connection ,size=0 + +2025-09-24 16:06:51,477 INFO Connection check task end + +2025-09-24 16:06:51,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:54,478 INFO Connection check task start + +2025-09-24 16:06:54,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:54,478 INFO Out dated connection ,size=0 + +2025-09-24 16:06:54,478 INFO Connection check task end + +2025-09-24 16:06:54,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:06:57,480 INFO Connection check task start + +2025-09-24 16:06:57,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:06:57,480 INFO Out dated connection ,size=0 + +2025-09-24 16:06:57,480 INFO Connection check task end + +2025-09-24 16:06:57,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:00,482 INFO Connection check task start + +2025-09-24 16:07:00,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:00,482 INFO Out dated connection ,size=0 + +2025-09-24 16:07:00,482 INFO Connection check task end + +2025-09-24 16:07:00,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:03,485 INFO Connection check task start + +2025-09-24 16:07:03,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:03,485 INFO Out dated connection ,size=0 + +2025-09-24 16:07:03,485 INFO Connection check task end + +2025-09-24 16:07:03,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:06,486 INFO Connection check task start + +2025-09-24 16:07:06,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:06,486 INFO Out dated connection ,size=0 + +2025-09-24 16:07:06,486 INFO Connection check task end + +2025-09-24 16:07:06,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:09,487 INFO Connection check task start + +2025-09-24 16:07:09,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:09,487 INFO Out dated connection ,size=0 + +2025-09-24 16:07:09,487 INFO Connection check task end + +2025-09-24 16:07:09,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:12,488 INFO Connection check task start + +2025-09-24 16:07:12,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:12,488 INFO Out dated connection ,size=0 + +2025-09-24 16:07:12,488 INFO Connection check task end + +2025-09-24 16:07:12,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:15,489 INFO Connection check task start + +2025-09-24 16:07:15,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:15,490 INFO Out dated connection ,size=0 + +2025-09-24 16:07:15,490 INFO Connection check task end + +2025-09-24 16:07:15,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:18,492 INFO Connection check task start + +2025-09-24 16:07:18,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:18,492 INFO Out dated connection ,size=0 + +2025-09-24 16:07:18,492 INFO Connection check task end + +2025-09-24 16:07:18,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:21,492 INFO Connection check task start + +2025-09-24 16:07:21,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:21,492 INFO Out dated connection ,size=0 + +2025-09-24 16:07:21,492 INFO Connection check task end + +2025-09-24 16:07:21,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:24,493 INFO Connection check task start + +2025-09-24 16:07:24,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:24,493 INFO Out dated connection ,size=0 + +2025-09-24 16:07:24,493 INFO Connection check task end + +2025-09-24 16:07:24,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:27,494 INFO Connection check task start + +2025-09-24 16:07:27,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:27,494 INFO Out dated connection ,size=0 + +2025-09-24 16:07:27,494 INFO Connection check task end + +2025-09-24 16:07:27,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:30,495 INFO Connection check task start + +2025-09-24 16:07:30,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:30,495 INFO Out dated connection ,size=0 + +2025-09-24 16:07:30,495 INFO Connection check task end + +2025-09-24 16:07:30,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:33,496 INFO Connection check task start + +2025-09-24 16:07:33,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:33,496 INFO Out dated connection ,size=0 + +2025-09-24 16:07:33,496 INFO Connection check task end + +2025-09-24 16:07:33,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:36,497 INFO Connection check task start + +2025-09-24 16:07:36,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:36,497 INFO Out dated connection ,size=0 + +2025-09-24 16:07:36,497 INFO Connection check task end + +2025-09-24 16:07:36,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:39,499 INFO Connection check task start + +2025-09-24 16:07:39,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:39,499 INFO Out dated connection ,size=0 + +2025-09-24 16:07:39,499 INFO Connection check task end + +2025-09-24 16:07:39,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:42,499 INFO Connection check task start + +2025-09-24 16:07:42,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:42,500 INFO Out dated connection ,size=0 + +2025-09-24 16:07:42,500 INFO Connection check task end + +2025-09-24 16:07:42,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:45,500 INFO Connection check task start + +2025-09-24 16:07:45,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:45,500 INFO Out dated connection ,size=0 + +2025-09-24 16:07:45,500 INFO Connection check task end + +2025-09-24 16:07:45,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:48,501 INFO Connection check task start + +2025-09-24 16:07:48,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:48,501 INFO Out dated connection ,size=0 + +2025-09-24 16:07:48,501 INFO Connection check task end + +2025-09-24 16:07:48,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:51,501 INFO Connection check task start + +2025-09-24 16:07:51,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:51,501 INFO Out dated connection ,size=0 + +2025-09-24 16:07:51,501 INFO Connection check task end + +2025-09-24 16:07:51,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:54,502 INFO Connection check task start + +2025-09-24 16:07:54,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:54,503 INFO Out dated connection ,size=0 + +2025-09-24 16:07:54,503 INFO Connection check task end + +2025-09-24 16:07:54,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:07:57,503 INFO Connection check task start + +2025-09-24 16:07:57,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:07:57,503 INFO Out dated connection ,size=0 + +2025-09-24 16:07:57,503 INFO Connection check task end + +2025-09-24 16:07:57,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:00,504 INFO Connection check task start + +2025-09-24 16:08:00,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:00,504 INFO Out dated connection ,size=0 + +2025-09-24 16:08:00,504 INFO Connection check task end + +2025-09-24 16:08:00,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:03,506 INFO Connection check task start + +2025-09-24 16:08:03,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:03,506 INFO Out dated connection ,size=0 + +2025-09-24 16:08:03,506 INFO Connection check task end + +2025-09-24 16:08:03,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:06,507 INFO Connection check task start + +2025-09-24 16:08:06,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:06,507 INFO Out dated connection ,size=0 + +2025-09-24 16:08:06,507 INFO Connection check task end + +2025-09-24 16:08:06,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:09,507 INFO Connection check task start + +2025-09-24 16:08:09,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:09,507 INFO Out dated connection ,size=0 + +2025-09-24 16:08:09,507 INFO Connection check task end + +2025-09-24 16:08:09,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:12,508 INFO Connection check task start + +2025-09-24 16:08:12,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:12,508 INFO Out dated connection ,size=0 + +2025-09-24 16:08:12,508 INFO Connection check task end + +2025-09-24 16:08:12,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:15,508 INFO Connection check task start + +2025-09-24 16:08:15,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:15,508 INFO Out dated connection ,size=0 + +2025-09-24 16:08:15,508 INFO Connection check task end + +2025-09-24 16:08:15,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:18,509 INFO Connection check task start + +2025-09-24 16:08:18,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:18,509 INFO Out dated connection ,size=0 + +2025-09-24 16:08:18,509 INFO Connection check task end + +2025-09-24 16:08:18,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:21,509 INFO Connection check task start + +2025-09-24 16:08:21,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:21,509 INFO Out dated connection ,size=0 + +2025-09-24 16:08:21,510 INFO Connection check task end + +2025-09-24 16:08:21,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:24,510 INFO Connection check task start + +2025-09-24 16:08:24,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:24,510 INFO Out dated connection ,size=0 + +2025-09-24 16:08:24,510 INFO Connection check task end + +2025-09-24 16:08:24,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:27,510 INFO Connection check task start + +2025-09-24 16:08:27,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:27,510 INFO Out dated connection ,size=0 + +2025-09-24 16:08:27,510 INFO Connection check task end + +2025-09-24 16:08:27,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:30,511 INFO Connection check task start + +2025-09-24 16:08:30,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:30,511 INFO Out dated connection ,size=0 + +2025-09-24 16:08:30,511 INFO Connection check task end + +2025-09-24 16:08:30,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:33,511 INFO Connection check task start + +2025-09-24 16:08:33,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:33,511 INFO Out dated connection ,size=0 + +2025-09-24 16:08:33,511 INFO Connection check task end + +2025-09-24 16:08:33,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:36,512 INFO Connection check task start + +2025-09-24 16:08:36,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:36,512 INFO Out dated connection ,size=0 + +2025-09-24 16:08:36,512 INFO Connection check task end + +2025-09-24 16:08:36,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:39,513 INFO Connection check task start + +2025-09-24 16:08:39,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:39,513 INFO Out dated connection ,size=0 + +2025-09-24 16:08:39,513 INFO Connection check task end + +2025-09-24 16:08:39,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:42,513 INFO Connection check task start + +2025-09-24 16:08:42,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:42,514 INFO Out dated connection ,size=0 + +2025-09-24 16:08:42,514 INFO Connection check task end + +2025-09-24 16:08:42,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:45,515 INFO Connection check task start + +2025-09-24 16:08:45,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:45,515 INFO Out dated connection ,size=0 + +2025-09-24 16:08:45,515 INFO Connection check task end + +2025-09-24 16:08:45,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:48,515 INFO Connection check task start + +2025-09-24 16:08:48,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:48,516 INFO Out dated connection ,size=0 + +2025-09-24 16:08:48,516 INFO Connection check task end + +2025-09-24 16:08:48,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:51,516 INFO Connection check task start + +2025-09-24 16:08:51,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:51,516 INFO Out dated connection ,size=0 + +2025-09-24 16:08:51,516 INFO Connection check task end + +2025-09-24 16:08:51,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:54,517 INFO Connection check task start + +2025-09-24 16:08:54,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:54,517 INFO Out dated connection ,size=0 + +2025-09-24 16:08:54,517 INFO Connection check task end + +2025-09-24 16:08:54,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:08:57,517 INFO Connection check task start + +2025-09-24 16:08:57,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:08:57,517 INFO Out dated connection ,size=0 + +2025-09-24 16:08:57,517 INFO Connection check task end + +2025-09-24 16:08:57,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:00,519 INFO Connection check task start + +2025-09-24 16:09:00,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:00,519 INFO Out dated connection ,size=0 + +2025-09-24 16:09:00,519 INFO Connection check task end + +2025-09-24 16:09:00,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:03,519 INFO Connection check task start + +2025-09-24 16:09:03,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:03,519 INFO Out dated connection ,size=0 + +2025-09-24 16:09:03,519 INFO Connection check task end + +2025-09-24 16:09:03,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:06,521 INFO Connection check task start + +2025-09-24 16:09:06,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:06,521 INFO Out dated connection ,size=0 + +2025-09-24 16:09:06,521 INFO Connection check task end + +2025-09-24 16:09:06,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:09,523 INFO Connection check task start + +2025-09-24 16:09:09,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:09,523 INFO Out dated connection ,size=0 + +2025-09-24 16:09:09,523 INFO Connection check task end + +2025-09-24 16:09:09,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:12,524 INFO Connection check task start + +2025-09-24 16:09:12,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:12,524 INFO Out dated connection ,size=0 + +2025-09-24 16:09:12,524 INFO Connection check task end + +2025-09-24 16:09:12,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:15,524 INFO Connection check task start + +2025-09-24 16:09:15,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:15,525 INFO Out dated connection ,size=0 + +2025-09-24 16:09:15,525 INFO Connection check task end + +2025-09-24 16:09:15,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:18,525 INFO Connection check task start + +2025-09-24 16:09:18,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:18,525 INFO Out dated connection ,size=0 + +2025-09-24 16:09:18,525 INFO Connection check task end + +2025-09-24 16:09:18,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:21,525 INFO Connection check task start + +2025-09-24 16:09:21,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:21,526 INFO Out dated connection ,size=0 + +2025-09-24 16:09:21,526 INFO Connection check task end + +2025-09-24 16:09:21,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:24,526 INFO Connection check task start + +2025-09-24 16:09:24,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:24,526 INFO Out dated connection ,size=0 + +2025-09-24 16:09:24,526 INFO Connection check task end + +2025-09-24 16:09:24,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:27,528 INFO Connection check task start + +2025-09-24 16:09:27,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:27,528 INFO Out dated connection ,size=0 + +2025-09-24 16:09:27,528 INFO Connection check task end + +2025-09-24 16:09:27,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:30,529 INFO Connection check task start + +2025-09-24 16:09:30,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:30,529 INFO Out dated connection ,size=0 + +2025-09-24 16:09:30,529 INFO Connection check task end + +2025-09-24 16:09:30,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:33,530 INFO Connection check task start + +2025-09-24 16:09:33,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:33,530 INFO Out dated connection ,size=0 + +2025-09-24 16:09:33,530 INFO Connection check task end + +2025-09-24 16:09:33,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:36,531 INFO Connection check task start + +2025-09-24 16:09:36,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:36,531 INFO Out dated connection ,size=0 + +2025-09-24 16:09:36,531 INFO Connection check task end + +2025-09-24 16:09:36,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:39,531 INFO Connection check task start + +2025-09-24 16:09:39,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:39,531 INFO Out dated connection ,size=0 + +2025-09-24 16:09:39,531 INFO Connection check task end + +2025-09-24 16:09:39,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:42,532 INFO Connection check task start + +2025-09-24 16:09:42,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:42,532 INFO Out dated connection ,size=0 + +2025-09-24 16:09:42,532 INFO Connection check task end + +2025-09-24 16:09:42,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:45,532 INFO Connection check task start + +2025-09-24 16:09:45,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:45,532 INFO Out dated connection ,size=0 + +2025-09-24 16:09:45,533 INFO Connection check task end + +2025-09-24 16:09:45,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:48,533 INFO Connection check task start + +2025-09-24 16:09:48,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:48,533 INFO Out dated connection ,size=0 + +2025-09-24 16:09:48,533 INFO Connection check task end + +2025-09-24 16:09:48,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:51,534 INFO Connection check task start + +2025-09-24 16:09:51,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:51,534 INFO Out dated connection ,size=0 + +2025-09-24 16:09:51,534 INFO Connection check task end + +2025-09-24 16:09:51,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:54,534 INFO Connection check task start + +2025-09-24 16:09:54,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:54,535 INFO Out dated connection ,size=0 + +2025-09-24 16:09:54,535 INFO Connection check task end + +2025-09-24 16:09:54,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:09:57,536 INFO Connection check task start + +2025-09-24 16:09:57,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:09:57,537 INFO Out dated connection ,size=0 + +2025-09-24 16:09:57,537 INFO Connection check task end + +2025-09-24 16:09:57,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:00,537 INFO Connection check task start + +2025-09-24 16:10:00,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:00,537 INFO Out dated connection ,size=0 + +2025-09-24 16:10:00,537 INFO Connection check task end + +2025-09-24 16:10:00,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:03,538 INFO Connection check task start + +2025-09-24 16:10:03,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:03,538 INFO Out dated connection ,size=0 + +2025-09-24 16:10:03,538 INFO Connection check task end + +2025-09-24 16:10:03,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:06,540 INFO Connection check task start + +2025-09-24 16:10:06,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:06,540 INFO Out dated connection ,size=0 + +2025-09-24 16:10:06,540 INFO Connection check task end + +2025-09-24 16:10:06,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:09,540 INFO Connection check task start + +2025-09-24 16:10:09,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:09,540 INFO Out dated connection ,size=0 + +2025-09-24 16:10:09,540 INFO Connection check task end + +2025-09-24 16:10:09,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:12,542 INFO Connection check task start + +2025-09-24 16:10:12,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:12,542 INFO Out dated connection ,size=0 + +2025-09-24 16:10:12,542 INFO Connection check task end + +2025-09-24 16:10:12,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:15,542 INFO Connection check task start + +2025-09-24 16:10:15,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:15,543 INFO Out dated connection ,size=0 + +2025-09-24 16:10:15,543 INFO Connection check task end + +2025-09-24 16:10:15,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:18,543 INFO Connection check task start + +2025-09-24 16:10:18,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:18,543 INFO Out dated connection ,size=0 + +2025-09-24 16:10:18,543 INFO Connection check task end + +2025-09-24 16:10:18,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:21,544 INFO Connection check task start + +2025-09-24 16:10:21,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:21,545 INFO Out dated connection ,size=0 + +2025-09-24 16:10:21,545 INFO Connection check task end + +2025-09-24 16:10:21,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:24,545 INFO Connection check task start + +2025-09-24 16:10:24,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:24,546 INFO Out dated connection ,size=0 + +2025-09-24 16:10:24,546 INFO Connection check task end + +2025-09-24 16:10:24,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:27,546 INFO Connection check task start + +2025-09-24 16:10:27,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:27,546 INFO Out dated connection ,size=0 + +2025-09-24 16:10:27,546 INFO Connection check task end + +2025-09-24 16:10:27,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:30,546 INFO Connection check task start + +2025-09-24 16:10:30,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:30,546 INFO Out dated connection ,size=0 + +2025-09-24 16:10:30,547 INFO Connection check task end + +2025-09-24 16:10:30,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:33,548 INFO Connection check task start + +2025-09-24 16:10:33,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:33,548 INFO Out dated connection ,size=0 + +2025-09-24 16:10:33,548 INFO Connection check task end + +2025-09-24 16:10:33,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:36,549 INFO Connection check task start + +2025-09-24 16:10:36,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:36,549 INFO Out dated connection ,size=0 + +2025-09-24 16:10:36,549 INFO Connection check task end + +2025-09-24 16:10:36,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:39,550 INFO Connection check task start + +2025-09-24 16:10:39,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:39,550 INFO Out dated connection ,size=0 + +2025-09-24 16:10:39,550 INFO Connection check task end + +2025-09-24 16:10:39,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:42,551 INFO Connection check task start + +2025-09-24 16:10:42,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:42,551 INFO Out dated connection ,size=0 + +2025-09-24 16:10:42,551 INFO Connection check task end + +2025-09-24 16:10:42,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:45,552 INFO Connection check task start + +2025-09-24 16:10:45,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:45,552 INFO Out dated connection ,size=0 + +2025-09-24 16:10:45,552 INFO Connection check task end + +2025-09-24 16:10:45,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:48,554 INFO Connection check task start + +2025-09-24 16:10:48,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:48,554 INFO Out dated connection ,size=0 + +2025-09-24 16:10:48,554 INFO Connection check task end + +2025-09-24 16:10:48,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:51,555 INFO Connection check task start + +2025-09-24 16:10:51,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:51,555 INFO Out dated connection ,size=0 + +2025-09-24 16:10:51,555 INFO Connection check task end + +2025-09-24 16:10:51,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:54,556 INFO Connection check task start + +2025-09-24 16:10:54,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:54,556 INFO Out dated connection ,size=0 + +2025-09-24 16:10:54,556 INFO Connection check task end + +2025-09-24 16:10:54,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:10:57,557 INFO Connection check task start + +2025-09-24 16:10:57,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:10:57,557 INFO Out dated connection ,size=0 + +2025-09-24 16:10:57,557 INFO Connection check task end + +2025-09-24 16:10:57,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:00,558 INFO Connection check task start + +2025-09-24 16:11:00,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:00,558 INFO Out dated connection ,size=0 + +2025-09-24 16:11:00,558 INFO Connection check task end + +2025-09-24 16:11:00,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:03,559 INFO Connection check task start + +2025-09-24 16:11:03,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:03,559 INFO Out dated connection ,size=0 + +2025-09-24 16:11:03,559 INFO Connection check task end + +2025-09-24 16:11:03,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:06,560 INFO Connection check task start + +2025-09-24 16:11:06,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:06,560 INFO Out dated connection ,size=0 + +2025-09-24 16:11:06,560 INFO Connection check task end + +2025-09-24 16:11:06,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:09,560 INFO Connection check task start + +2025-09-24 16:11:09,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:09,561 INFO Out dated connection ,size=0 + +2025-09-24 16:11:09,561 INFO Connection check task end + +2025-09-24 16:11:09,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:12,563 INFO Connection check task start + +2025-09-24 16:11:12,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:12,563 INFO Out dated connection ,size=0 + +2025-09-24 16:11:12,563 INFO Connection check task end + +2025-09-24 16:11:12,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:15,563 INFO Connection check task start + +2025-09-24 16:11:15,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:15,563 INFO Out dated connection ,size=0 + +2025-09-24 16:11:15,563 INFO Connection check task end + +2025-09-24 16:11:15,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:18,565 INFO Connection check task start + +2025-09-24 16:11:18,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:18,565 INFO Out dated connection ,size=0 + +2025-09-24 16:11:18,565 INFO Connection check task end + +2025-09-24 16:11:18,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:21,565 INFO Connection check task start + +2025-09-24 16:11:21,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:21,566 INFO Out dated connection ,size=0 + +2025-09-24 16:11:21,566 INFO Connection check task end + +2025-09-24 16:11:21,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:24,566 INFO Connection check task start + +2025-09-24 16:11:24,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:24,566 INFO Out dated connection ,size=0 + +2025-09-24 16:11:24,566 INFO Connection check task end + +2025-09-24 16:11:24,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:27,566 INFO Connection check task start + +2025-09-24 16:11:27,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:27,566 INFO Out dated connection ,size=0 + +2025-09-24 16:11:27,566 INFO Connection check task end + +2025-09-24 16:11:27,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:30,568 INFO Connection check task start + +2025-09-24 16:11:30,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:30,568 INFO Out dated connection ,size=0 + +2025-09-24 16:11:30,568 INFO Connection check task end + +2025-09-24 16:11:30,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:33,568 INFO Connection check task start + +2025-09-24 16:11:33,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:33,568 INFO Out dated connection ,size=0 + +2025-09-24 16:11:33,569 INFO Connection check task end + +2025-09-24 16:11:33,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:36,569 INFO Connection check task start + +2025-09-24 16:11:36,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:36,569 INFO Out dated connection ,size=0 + +2025-09-24 16:11:36,569 INFO Connection check task end + +2025-09-24 16:11:36,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:39,570 INFO Connection check task start + +2025-09-24 16:11:39,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:39,570 INFO Out dated connection ,size=0 + +2025-09-24 16:11:39,570 INFO Connection check task end + +2025-09-24 16:11:39,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:42,571 INFO Connection check task start + +2025-09-24 16:11:42,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:42,571 INFO Out dated connection ,size=0 + +2025-09-24 16:11:42,571 INFO Connection check task end + +2025-09-24 16:11:42,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:45,572 INFO Connection check task start + +2025-09-24 16:11:45,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:45,572 INFO Out dated connection ,size=0 + +2025-09-24 16:11:45,572 INFO Connection check task end + +2025-09-24 16:11:45,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:48,573 INFO Connection check task start + +2025-09-24 16:11:48,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:48,573 INFO Out dated connection ,size=0 + +2025-09-24 16:11:48,573 INFO Connection check task end + +2025-09-24 16:11:48,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:51,573 INFO Connection check task start + +2025-09-24 16:11:51,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:51,573 INFO Out dated connection ,size=0 + +2025-09-24 16:11:51,573 INFO Connection check task end + +2025-09-24 16:11:51,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:54,574 INFO Connection check task start + +2025-09-24 16:11:54,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:54,574 INFO Out dated connection ,size=0 + +2025-09-24 16:11:54,574 INFO Connection check task end + +2025-09-24 16:11:54,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:11:57,575 INFO Connection check task start + +2025-09-24 16:11:57,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:11:57,575 INFO Out dated connection ,size=0 + +2025-09-24 16:11:57,575 INFO Connection check task end + +2025-09-24 16:11:57,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:00,575 INFO Connection check task start + +2025-09-24 16:12:00,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:00,576 INFO Out dated connection ,size=0 + +2025-09-24 16:12:00,576 INFO Connection check task end + +2025-09-24 16:12:00,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:03,578 INFO Connection check task start + +2025-09-24 16:12:03,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:03,578 INFO Out dated connection ,size=0 + +2025-09-24 16:12:03,578 INFO Connection check task end + +2025-09-24 16:12:03,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:06,579 INFO Connection check task start + +2025-09-24 16:12:06,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:06,579 INFO Out dated connection ,size=0 + +2025-09-24 16:12:06,579 INFO Connection check task end + +2025-09-24 16:12:06,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:09,581 INFO Connection check task start + +2025-09-24 16:12:09,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:09,581 INFO Out dated connection ,size=0 + +2025-09-24 16:12:09,581 INFO Connection check task end + +2025-09-24 16:12:09,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:12,581 INFO Connection check task start + +2025-09-24 16:12:12,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:12,581 INFO Out dated connection ,size=0 + +2025-09-24 16:12:12,581 INFO Connection check task end + +2025-09-24 16:12:12,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:15,583 INFO Connection check task start + +2025-09-24 16:12:15,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:15,583 INFO Out dated connection ,size=0 + +2025-09-24 16:12:15,583 INFO Connection check task end + +2025-09-24 16:12:15,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:18,584 INFO Connection check task start + +2025-09-24 16:12:18,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:18,584 INFO Out dated connection ,size=0 + +2025-09-24 16:12:18,584 INFO Connection check task end + +2025-09-24 16:12:18,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:21,585 INFO Connection check task start + +2025-09-24 16:12:21,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:21,585 INFO Out dated connection ,size=0 + +2025-09-24 16:12:21,585 INFO Connection check task end + +2025-09-24 16:12:21,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:24,586 INFO Connection check task start + +2025-09-24 16:12:24,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:24,586 INFO Out dated connection ,size=0 + +2025-09-24 16:12:24,586 INFO Connection check task end + +2025-09-24 16:12:25,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:27,587 INFO Connection check task start + +2025-09-24 16:12:27,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:27,588 INFO Out dated connection ,size=0 + +2025-09-24 16:12:27,588 INFO Connection check task end + +2025-09-24 16:12:28,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:30,589 INFO Connection check task start + +2025-09-24 16:12:30,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:30,589 INFO Out dated connection ,size=0 + +2025-09-24 16:12:30,589 INFO Connection check task end + +2025-09-24 16:12:31,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:33,591 INFO Connection check task start + +2025-09-24 16:12:33,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:33,591 INFO Out dated connection ,size=0 + +2025-09-24 16:12:33,591 INFO Connection check task end + +2025-09-24 16:12:34,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:36,591 INFO Connection check task start + +2025-09-24 16:12:36,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:36,592 INFO Out dated connection ,size=0 + +2025-09-24 16:12:36,592 INFO Connection check task end + +2025-09-24 16:12:37,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:39,593 INFO Connection check task start + +2025-09-24 16:12:39,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:39,593 INFO Out dated connection ,size=0 + +2025-09-24 16:12:39,593 INFO Connection check task end + +2025-09-24 16:12:40,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:42,594 INFO Connection check task start + +2025-09-24 16:12:42,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:42,594 INFO Out dated connection ,size=0 + +2025-09-24 16:12:42,595 INFO Connection check task end + +2025-09-24 16:12:43,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:45,595 INFO Connection check task start + +2025-09-24 16:12:45,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:45,595 INFO Out dated connection ,size=0 + +2025-09-24 16:12:45,595 INFO Connection check task end + +2025-09-24 16:12:46,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:48,597 INFO Connection check task start + +2025-09-24 16:12:48,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:48,597 INFO Out dated connection ,size=0 + +2025-09-24 16:12:48,597 INFO Connection check task end + +2025-09-24 16:12:49,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:51,598 INFO Connection check task start + +2025-09-24 16:12:51,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:51,598 INFO Out dated connection ,size=0 + +2025-09-24 16:12:51,598 INFO Connection check task end + +2025-09-24 16:12:52,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:54,599 INFO Connection check task start + +2025-09-24 16:12:54,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:54,599 INFO Out dated connection ,size=0 + +2025-09-24 16:12:54,599 INFO Connection check task end + +2025-09-24 16:12:55,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:12:57,601 INFO Connection check task start + +2025-09-24 16:12:57,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:12:57,601 INFO Out dated connection ,size=0 + +2025-09-24 16:12:57,601 INFO Connection check task end + +2025-09-24 16:12:58,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:00,601 INFO Connection check task start + +2025-09-24 16:13:00,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:00,601 INFO Out dated connection ,size=0 + +2025-09-24 16:13:00,602 INFO Connection check task end + +2025-09-24 16:13:01,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:03,604 INFO Connection check task start + +2025-09-24 16:13:03,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:03,604 INFO Out dated connection ,size=0 + +2025-09-24 16:13:03,604 INFO Connection check task end + +2025-09-24 16:13:04,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:06,604 INFO Connection check task start + +2025-09-24 16:13:06,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:06,604 INFO Out dated connection ,size=0 + +2025-09-24 16:13:06,604 INFO Connection check task end + +2025-09-24 16:13:07,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:09,606 INFO Connection check task start + +2025-09-24 16:13:09,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:09,607 INFO Out dated connection ,size=0 + +2025-09-24 16:13:09,607 INFO Connection check task end + +2025-09-24 16:13:10,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:12,609 INFO Connection check task start + +2025-09-24 16:13:12,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:12,609 INFO Out dated connection ,size=0 + +2025-09-24 16:13:12,609 INFO Connection check task end + +2025-09-24 16:13:13,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:15,609 INFO Connection check task start + +2025-09-24 16:13:15,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:15,610 INFO Out dated connection ,size=0 + +2025-09-24 16:13:15,610 INFO Connection check task end + +2025-09-24 16:13:16,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:18,610 INFO Connection check task start + +2025-09-24 16:13:18,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:18,610 INFO Out dated connection ,size=0 + +2025-09-24 16:13:18,610 INFO Connection check task end + +2025-09-24 16:13:19,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:21,610 INFO Connection check task start + +2025-09-24 16:13:21,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:21,610 INFO Out dated connection ,size=0 + +2025-09-24 16:13:21,610 INFO Connection check task end + +2025-09-24 16:13:22,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:24,611 INFO Connection check task start + +2025-09-24 16:13:24,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:24,612 INFO Out dated connection ,size=0 + +2025-09-24 16:13:24,612 INFO Connection check task end + +2025-09-24 16:13:25,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:27,613 INFO Connection check task start + +2025-09-24 16:13:27,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:27,613 INFO Out dated connection ,size=0 + +2025-09-24 16:13:27,613 INFO Connection check task end + +2025-09-24 16:13:28,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:30,615 INFO Connection check task start + +2025-09-24 16:13:30,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:30,615 INFO Out dated connection ,size=0 + +2025-09-24 16:13:30,615 INFO Connection check task end + +2025-09-24 16:13:31,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:33,617 INFO Connection check task start + +2025-09-24 16:13:33,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:33,617 INFO Out dated connection ,size=0 + +2025-09-24 16:13:33,617 INFO Connection check task end + +2025-09-24 16:13:34,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:36,620 INFO Connection check task start + +2025-09-24 16:13:36,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:36,620 INFO Out dated connection ,size=0 + +2025-09-24 16:13:36,620 INFO Connection check task end + +2025-09-24 16:13:37,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:39,620 INFO Connection check task start + +2025-09-24 16:13:39,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:39,620 INFO Out dated connection ,size=0 + +2025-09-24 16:13:39,620 INFO Connection check task end + +2025-09-24 16:13:40,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:42,622 INFO Connection check task start + +2025-09-24 16:13:42,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:42,622 INFO Out dated connection ,size=0 + +2025-09-24 16:13:42,622 INFO Connection check task end + +2025-09-24 16:13:43,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:45,623 INFO Connection check task start + +2025-09-24 16:13:45,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:45,623 INFO Out dated connection ,size=0 + +2025-09-24 16:13:45,623 INFO Connection check task end + +2025-09-24 16:13:46,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:48,624 INFO Connection check task start + +2025-09-24 16:13:48,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:48,624 INFO Out dated connection ,size=0 + +2025-09-24 16:13:48,624 INFO Connection check task end + +2025-09-24 16:13:49,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:51,626 INFO Connection check task start + +2025-09-24 16:13:51,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:51,626 INFO Out dated connection ,size=0 + +2025-09-24 16:13:51,626 INFO Connection check task end + +2025-09-24 16:13:52,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:54,626 INFO Connection check task start + +2025-09-24 16:13:54,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:54,627 INFO Out dated connection ,size=0 + +2025-09-24 16:13:54,627 INFO Connection check task end + +2025-09-24 16:13:55,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:13:57,627 INFO Connection check task start + +2025-09-24 16:13:57,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:13:57,627 INFO Out dated connection ,size=0 + +2025-09-24 16:13:57,627 INFO Connection check task end + +2025-09-24 16:13:58,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:00,628 INFO Connection check task start + +2025-09-24 16:14:00,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:00,628 INFO Out dated connection ,size=0 + +2025-09-24 16:14:00,628 INFO Connection check task end + +2025-09-24 16:14:01,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:03,629 INFO Connection check task start + +2025-09-24 16:14:03,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:03,629 INFO Out dated connection ,size=0 + +2025-09-24 16:14:03,629 INFO Connection check task end + +2025-09-24 16:14:04,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:06,631 INFO Connection check task start + +2025-09-24 16:14:06,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:06,631 INFO Out dated connection ,size=0 + +2025-09-24 16:14:06,631 INFO Connection check task end + +2025-09-24 16:14:07,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:09,631 INFO Connection check task start + +2025-09-24 16:14:09,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:09,631 INFO Out dated connection ,size=0 + +2025-09-24 16:14:09,632 INFO Connection check task end + +2025-09-24 16:14:10,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:12,632 INFO Connection check task start + +2025-09-24 16:14:12,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:12,632 INFO Out dated connection ,size=0 + +2025-09-24 16:14:12,632 INFO Connection check task end + +2025-09-24 16:14:13,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:15,634 INFO Connection check task start + +2025-09-24 16:14:15,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:15,635 INFO Out dated connection ,size=0 + +2025-09-24 16:14:15,635 INFO Connection check task end + +2025-09-24 16:14:16,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:18,635 INFO Connection check task start + +2025-09-24 16:14:18,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:18,635 INFO Out dated connection ,size=0 + +2025-09-24 16:14:18,635 INFO Connection check task end + +2025-09-24 16:14:19,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:21,637 INFO Connection check task start + +2025-09-24 16:14:21,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:21,638 INFO Out dated connection ,size=0 + +2025-09-24 16:14:21,638 INFO Connection check task end + +2025-09-24 16:14:22,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:24,639 INFO Connection check task start + +2025-09-24 16:14:24,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:24,639 INFO Out dated connection ,size=0 + +2025-09-24 16:14:24,639 INFO Connection check task end + +2025-09-24 16:14:25,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:27,640 INFO Connection check task start + +2025-09-24 16:14:27,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:27,641 INFO Out dated connection ,size=0 + +2025-09-24 16:14:27,641 INFO Connection check task end + +2025-09-24 16:14:28,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:30,641 INFO Connection check task start + +2025-09-24 16:14:30,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:30,641 INFO Out dated connection ,size=0 + +2025-09-24 16:14:30,641 INFO Connection check task end + +2025-09-24 16:14:31,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:33,643 INFO Connection check task start + +2025-09-24 16:14:33,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:33,643 INFO Out dated connection ,size=0 + +2025-09-24 16:14:33,644 INFO Connection check task end + +2025-09-24 16:14:34,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:36,645 INFO Connection check task start + +2025-09-24 16:14:36,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:36,660 INFO Out dated connection ,size=0 + +2025-09-24 16:14:36,660 INFO Connection check task end + +2025-09-24 16:14:37,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:39,661 INFO Connection check task start + +2025-09-24 16:14:39,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:39,661 INFO Out dated connection ,size=0 + +2025-09-24 16:14:39,661 INFO Connection check task end + +2025-09-24 16:14:40,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:42,662 INFO Connection check task start + +2025-09-24 16:14:42,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:42,662 INFO Out dated connection ,size=0 + +2025-09-24 16:14:42,662 INFO Connection check task end + +2025-09-24 16:14:43,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:45,663 INFO Connection check task start + +2025-09-24 16:14:45,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:45,663 INFO Out dated connection ,size=0 + +2025-09-24 16:14:45,663 INFO Connection check task end + +2025-09-24 16:14:46,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:48,666 INFO Connection check task start + +2025-09-24 16:14:48,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:48,666 INFO Out dated connection ,size=0 + +2025-09-24 16:14:48,666 INFO Connection check task end + +2025-09-24 16:14:49,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:51,668 INFO Connection check task start + +2025-09-24 16:14:51,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:51,668 INFO Out dated connection ,size=0 + +2025-09-24 16:14:51,668 INFO Connection check task end + +2025-09-24 16:14:52,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:54,670 INFO Connection check task start + +2025-09-24 16:14:54,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:54,670 INFO Out dated connection ,size=0 + +2025-09-24 16:14:54,670 INFO Connection check task end + +2025-09-24 16:14:55,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:14:57,671 INFO Connection check task start + +2025-09-24 16:14:57,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:14:57,671 INFO Out dated connection ,size=0 + +2025-09-24 16:14:57,672 INFO Connection check task end + +2025-09-24 16:14:58,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:00,674 INFO Connection check task start + +2025-09-24 16:15:00,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:00,674 INFO Out dated connection ,size=0 + +2025-09-24 16:15:00,674 INFO Connection check task end + +2025-09-24 16:15:01,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:03,676 INFO Connection check task start + +2025-09-24 16:15:03,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:03,677 INFO Out dated connection ,size=0 + +2025-09-24 16:15:03,677 INFO Connection check task end + +2025-09-24 16:15:04,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:06,677 INFO Connection check task start + +2025-09-24 16:15:06,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:06,677 INFO Out dated connection ,size=0 + +2025-09-24 16:15:06,677 INFO Connection check task end + +2025-09-24 16:15:07,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:09,678 INFO Connection check task start + +2025-09-24 16:15:09,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:09,679 INFO Out dated connection ,size=0 + +2025-09-24 16:15:09,679 INFO Connection check task end + +2025-09-24 16:15:10,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:12,680 INFO Connection check task start + +2025-09-24 16:15:12,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:12,680 INFO Out dated connection ,size=0 + +2025-09-24 16:15:12,680 INFO Connection check task end + +2025-09-24 16:15:13,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:15,682 INFO Connection check task start + +2025-09-24 16:15:15,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:15,683 INFO Out dated connection ,size=0 + +2025-09-24 16:15:15,683 INFO Connection check task end + +2025-09-24 16:15:16,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:18,685 INFO Connection check task start + +2025-09-24 16:15:18,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:18,685 INFO Out dated connection ,size=0 + +2025-09-24 16:15:18,685 INFO Connection check task end + +2025-09-24 16:15:19,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:21,685 INFO Connection check task start + +2025-09-24 16:15:21,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:21,686 INFO Out dated connection ,size=0 + +2025-09-24 16:15:21,686 INFO Connection check task end + +2025-09-24 16:15:22,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:24,686 INFO Connection check task start + +2025-09-24 16:15:24,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:24,686 INFO Out dated connection ,size=0 + +2025-09-24 16:15:24,686 INFO Connection check task end + +2025-09-24 16:15:25,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:27,688 INFO Connection check task start + +2025-09-24 16:15:27,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:27,688 INFO Out dated connection ,size=0 + +2025-09-24 16:15:27,688 INFO Connection check task end + +2025-09-24 16:15:28,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:30,690 INFO Connection check task start + +2025-09-24 16:15:30,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:30,690 INFO Out dated connection ,size=0 + +2025-09-24 16:15:30,691 INFO Connection check task end + +2025-09-24 16:15:31,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:33,691 INFO Connection check task start + +2025-09-24 16:15:33,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:33,691 INFO Out dated connection ,size=0 + +2025-09-24 16:15:33,691 INFO Connection check task end + +2025-09-24 16:15:34,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:36,693 INFO Connection check task start + +2025-09-24 16:15:36,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:36,694 INFO Out dated connection ,size=0 + +2025-09-24 16:15:36,694 INFO Connection check task end + +2025-09-24 16:15:37,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:39,695 INFO Connection check task start + +2025-09-24 16:15:39,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:39,696 INFO Out dated connection ,size=0 + +2025-09-24 16:15:39,696 INFO Connection check task end + +2025-09-24 16:15:40,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:42,697 INFO Connection check task start + +2025-09-24 16:15:42,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:42,697 INFO Out dated connection ,size=0 + +2025-09-24 16:15:42,697 INFO Connection check task end + +2025-09-24 16:15:43,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:45,699 INFO Connection check task start + +2025-09-24 16:15:45,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:45,700 INFO Out dated connection ,size=0 + +2025-09-24 16:15:45,700 INFO Connection check task end + +2025-09-24 16:15:46,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:48,702 INFO Connection check task start + +2025-09-24 16:15:48,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:48,702 INFO Out dated connection ,size=0 + +2025-09-24 16:15:48,702 INFO Connection check task end + +2025-09-24 16:15:49,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:51,703 INFO Connection check task start + +2025-09-24 16:15:51,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:51,703 INFO Out dated connection ,size=0 + +2025-09-24 16:15:51,704 INFO Connection check task end + +2025-09-24 16:15:52,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:54,705 INFO Connection check task start + +2025-09-24 16:15:54,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:54,705 INFO Out dated connection ,size=0 + +2025-09-24 16:15:54,705 INFO Connection check task end + +2025-09-24 16:15:55,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:15:57,706 INFO Connection check task start + +2025-09-24 16:15:57,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:15:57,707 INFO Out dated connection ,size=0 + +2025-09-24 16:15:57,707 INFO Connection check task end + +2025-09-24 16:15:58,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:00,708 INFO Connection check task start + +2025-09-24 16:16:00,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:00,708 INFO Out dated connection ,size=0 + +2025-09-24 16:16:00,708 INFO Connection check task end + +2025-09-24 16:16:01,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:03,710 INFO Connection check task start + +2025-09-24 16:16:03,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:03,710 INFO Out dated connection ,size=0 + +2025-09-24 16:16:03,710 INFO Connection check task end + +2025-09-24 16:16:04,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:06,711 INFO Connection check task start + +2025-09-24 16:16:06,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:06,711 INFO Out dated connection ,size=0 + +2025-09-24 16:16:06,711 INFO Connection check task end + +2025-09-24 16:16:07,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:09,711 INFO Connection check task start + +2025-09-24 16:16:09,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:09,712 INFO Out dated connection ,size=0 + +2025-09-24 16:16:09,712 INFO Connection check task end + +2025-09-24 16:16:10,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:12,714 INFO Connection check task start + +2025-09-24 16:16:12,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:12,714 INFO Out dated connection ,size=0 + +2025-09-24 16:16:12,714 INFO Connection check task end + +2025-09-24 16:16:13,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:15,716 INFO Connection check task start + +2025-09-24 16:16:15,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:15,716 INFO Out dated connection ,size=0 + +2025-09-24 16:16:15,717 INFO Connection check task end + +2025-09-24 16:16:16,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:18,717 INFO Connection check task start + +2025-09-24 16:16:18,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:18,717 INFO Out dated connection ,size=0 + +2025-09-24 16:16:18,717 INFO Connection check task end + +2025-09-24 16:16:19,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:21,717 INFO Connection check task start + +2025-09-24 16:16:21,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:21,718 INFO Out dated connection ,size=0 + +2025-09-24 16:16:21,718 INFO Connection check task end + +2025-09-24 16:16:22,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:24,718 INFO Connection check task start + +2025-09-24 16:16:24,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:24,718 INFO Out dated connection ,size=0 + +2025-09-24 16:16:24,718 INFO Connection check task end + +2025-09-24 16:16:25,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:27,718 INFO Connection check task start + +2025-09-24 16:16:27,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:27,718 INFO Out dated connection ,size=0 + +2025-09-24 16:16:27,718 INFO Connection check task end + +2025-09-24 16:16:28,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:30,718 INFO Connection check task start + +2025-09-24 16:16:30,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:30,719 INFO Out dated connection ,size=0 + +2025-09-24 16:16:30,719 INFO Connection check task end + +2025-09-24 16:16:31,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:33,721 INFO Connection check task start + +2025-09-24 16:16:33,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:33,721 INFO Out dated connection ,size=0 + +2025-09-24 16:16:33,721 INFO Connection check task end + +2025-09-24 16:16:34,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:36,722 INFO Connection check task start + +2025-09-24 16:16:36,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:36,722 INFO Out dated connection ,size=0 + +2025-09-24 16:16:36,722 INFO Connection check task end + +2025-09-24 16:16:37,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:39,724 INFO Connection check task start + +2025-09-24 16:16:39,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:39,724 INFO Out dated connection ,size=0 + +2025-09-24 16:16:39,724 INFO Connection check task end + +2025-09-24 16:16:40,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:42,725 INFO Connection check task start + +2025-09-24 16:16:42,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:42,725 INFO Out dated connection ,size=0 + +2025-09-24 16:16:42,725 INFO Connection check task end + +2025-09-24 16:16:43,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:45,727 INFO Connection check task start + +2025-09-24 16:16:45,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:45,727 INFO Out dated connection ,size=0 + +2025-09-24 16:16:45,727 INFO Connection check task end + +2025-09-24 16:16:46,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:48,728 INFO Connection check task start + +2025-09-24 16:16:48,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:48,728 INFO Out dated connection ,size=0 + +2025-09-24 16:16:48,728 INFO Connection check task end + +2025-09-24 16:16:49,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:51,729 INFO Connection check task start + +2025-09-24 16:16:51,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:51,730 INFO Out dated connection ,size=0 + +2025-09-24 16:16:51,730 INFO Connection check task end + +2025-09-24 16:16:52,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:54,730 INFO Connection check task start + +2025-09-24 16:16:54,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:54,730 INFO Out dated connection ,size=0 + +2025-09-24 16:16:54,730 INFO Connection check task end + +2025-09-24 16:16:55,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:16:57,732 INFO Connection check task start + +2025-09-24 16:16:57,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:16:57,732 INFO Out dated connection ,size=0 + +2025-09-24 16:16:57,732 INFO Connection check task end + +2025-09-24 16:16:58,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:00,733 INFO Connection check task start + +2025-09-24 16:17:00,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:00,734 INFO Out dated connection ,size=0 + +2025-09-24 16:17:00,734 INFO Connection check task end + +2025-09-24 16:17:01,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:03,734 INFO Connection check task start + +2025-09-24 16:17:03,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:03,735 INFO Out dated connection ,size=0 + +2025-09-24 16:17:03,735 INFO Connection check task end + +2025-09-24 16:17:04,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:06,736 INFO Connection check task start + +2025-09-24 16:17:06,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:06,736 INFO Out dated connection ,size=0 + +2025-09-24 16:17:06,736 INFO Connection check task end + +2025-09-24 16:17:07,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:09,737 INFO Connection check task start + +2025-09-24 16:17:09,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:09,737 INFO Out dated connection ,size=0 + +2025-09-24 16:17:09,737 INFO Connection check task end + +2025-09-24 16:17:10,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:12,738 INFO Connection check task start + +2025-09-24 16:17:12,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:12,738 INFO Out dated connection ,size=0 + +2025-09-24 16:17:12,738 INFO Connection check task end + +2025-09-24 16:17:13,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:15,740 INFO Connection check task start + +2025-09-24 16:17:15,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:15,740 INFO Out dated connection ,size=0 + +2025-09-24 16:17:15,740 INFO Connection check task end + +2025-09-24 16:17:16,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:18,743 INFO Connection check task start + +2025-09-24 16:17:18,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:18,743 INFO Out dated connection ,size=0 + +2025-09-24 16:17:18,743 INFO Connection check task end + +2025-09-24 16:17:19,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:21,745 INFO Connection check task start + +2025-09-24 16:17:21,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:21,745 INFO Out dated connection ,size=0 + +2025-09-24 16:17:21,745 INFO Connection check task end + +2025-09-24 16:17:22,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:24,748 INFO Connection check task start + +2025-09-24 16:17:24,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:24,748 INFO Out dated connection ,size=0 + +2025-09-24 16:17:24,748 INFO Connection check task end + +2025-09-24 16:17:25,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:27,748 INFO Connection check task start + +2025-09-24 16:17:27,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:27,748 INFO Out dated connection ,size=0 + +2025-09-24 16:17:27,748 INFO Connection check task end + +2025-09-24 16:17:28,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:30,751 INFO Connection check task start + +2025-09-24 16:17:30,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:30,751 INFO Out dated connection ,size=0 + +2025-09-24 16:17:30,751 INFO Connection check task end + +2025-09-24 16:17:31,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:33,751 INFO Connection check task start + +2025-09-24 16:17:33,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:33,751 INFO Out dated connection ,size=0 + +2025-09-24 16:17:33,752 INFO Connection check task end + +2025-09-24 16:17:34,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:36,752 INFO Connection check task start + +2025-09-24 16:17:36,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:36,752 INFO Out dated connection ,size=0 + +2025-09-24 16:17:36,752 INFO Connection check task end + +2025-09-24 16:17:37,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:39,753 INFO Connection check task start + +2025-09-24 16:17:39,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:39,753 INFO Out dated connection ,size=0 + +2025-09-24 16:17:39,753 INFO Connection check task end + +2025-09-24 16:17:40,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:42,755 INFO Connection check task start + +2025-09-24 16:17:42,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:42,755 INFO Out dated connection ,size=0 + +2025-09-24 16:17:42,756 INFO Connection check task end + +2025-09-24 16:17:43,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:45,756 INFO Connection check task start + +2025-09-24 16:17:45,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:45,756 INFO Out dated connection ,size=0 + +2025-09-24 16:17:45,756 INFO Connection check task end + +2025-09-24 16:17:46,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:48,757 INFO Connection check task start + +2025-09-24 16:17:48,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:48,757 INFO Out dated connection ,size=0 + +2025-09-24 16:17:48,757 INFO Connection check task end + +2025-09-24 16:17:49,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:51,759 INFO Connection check task start + +2025-09-24 16:17:51,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:51,760 INFO Out dated connection ,size=0 + +2025-09-24 16:17:51,760 INFO Connection check task end + +2025-09-24 16:17:52,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:54,762 INFO Connection check task start + +2025-09-24 16:17:54,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:54,762 INFO Out dated connection ,size=0 + +2025-09-24 16:17:54,762 INFO Connection check task end + +2025-09-24 16:17:55,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:17:57,762 INFO Connection check task start + +2025-09-24 16:17:57,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:17:57,763 INFO Out dated connection ,size=0 + +2025-09-24 16:17:57,763 INFO Connection check task end + +2025-09-24 16:17:58,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:00,763 INFO Connection check task start + +2025-09-24 16:18:00,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:00,763 INFO Out dated connection ,size=0 + +2025-09-24 16:18:00,763 INFO Connection check task end + +2025-09-24 16:18:01,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:03,763 INFO Connection check task start + +2025-09-24 16:18:03,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:03,764 INFO Out dated connection ,size=0 + +2025-09-24 16:18:03,764 INFO Connection check task end + +2025-09-24 16:18:04,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:06,766 INFO Connection check task start + +2025-09-24 16:18:06,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:06,766 INFO Out dated connection ,size=0 + +2025-09-24 16:18:06,766 INFO Connection check task end + +2025-09-24 16:18:07,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:09,768 INFO Connection check task start + +2025-09-24 16:18:09,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:09,769 INFO Out dated connection ,size=0 + +2025-09-24 16:18:09,769 INFO Connection check task end + +2025-09-24 16:18:10,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:12,770 INFO Connection check task start + +2025-09-24 16:18:12,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:12,770 INFO Out dated connection ,size=0 + +2025-09-24 16:18:12,770 INFO Connection check task end + +2025-09-24 16:18:13,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:15,774 INFO Connection check task start + +2025-09-24 16:18:15,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:15,774 INFO Out dated connection ,size=0 + +2025-09-24 16:18:15,774 INFO Connection check task end + +2025-09-24 16:18:16,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:18,776 INFO Connection check task start + +2025-09-24 16:18:18,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:18,776 INFO Out dated connection ,size=0 + +2025-09-24 16:18:18,776 INFO Connection check task end + +2025-09-24 16:18:19,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:21,778 INFO Connection check task start + +2025-09-24 16:18:21,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:21,778 INFO Out dated connection ,size=0 + +2025-09-24 16:18:21,778 INFO Connection check task end + +2025-09-24 16:18:22,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:24,778 INFO Connection check task start + +2025-09-24 16:18:24,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:24,778 INFO Out dated connection ,size=0 + +2025-09-24 16:18:24,778 INFO Connection check task end + +2025-09-24 16:18:25,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:27,779 INFO Connection check task start + +2025-09-24 16:18:27,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:27,779 INFO Out dated connection ,size=0 + +2025-09-24 16:18:27,779 INFO Connection check task end + +2025-09-24 16:18:28,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:30,780 INFO Connection check task start + +2025-09-24 16:18:30,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:30,780 INFO Out dated connection ,size=0 + +2025-09-24 16:18:30,780 INFO Connection check task end + +2025-09-24 16:18:31,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:33,781 INFO Connection check task start + +2025-09-24 16:18:33,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:33,781 INFO Out dated connection ,size=0 + +2025-09-24 16:18:33,781 INFO Connection check task end + +2025-09-24 16:18:34,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:36,781 INFO Connection check task start + +2025-09-24 16:18:36,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:36,782 INFO Out dated connection ,size=0 + +2025-09-24 16:18:36,782 INFO Connection check task end + +2025-09-24 16:18:37,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:39,782 INFO Connection check task start + +2025-09-24 16:18:39,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:39,783 INFO Out dated connection ,size=0 + +2025-09-24 16:18:39,783 INFO Connection check task end + +2025-09-24 16:18:40,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:42,783 INFO Connection check task start + +2025-09-24 16:18:42,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:42,784 INFO Out dated connection ,size=0 + +2025-09-24 16:18:42,784 INFO Connection check task end + +2025-09-24 16:18:43,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:45,784 INFO Connection check task start + +2025-09-24 16:18:45,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:45,784 INFO Out dated connection ,size=0 + +2025-09-24 16:18:45,784 INFO Connection check task end + +2025-09-24 16:18:46,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:48,785 INFO Connection check task start + +2025-09-24 16:18:48,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:48,785 INFO Out dated connection ,size=0 + +2025-09-24 16:18:48,785 INFO Connection check task end + +2025-09-24 16:18:49,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:51,785 INFO Connection check task start + +2025-09-24 16:18:51,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:51,785 INFO Out dated connection ,size=0 + +2025-09-24 16:18:51,786 INFO Connection check task end + +2025-09-24 16:18:52,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:54,786 INFO Connection check task start + +2025-09-24 16:18:54,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:54,786 INFO Out dated connection ,size=0 + +2025-09-24 16:18:54,786 INFO Connection check task end + +2025-09-24 16:18:55,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:18:57,787 INFO Connection check task start + +2025-09-24 16:18:57,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:18:57,787 INFO Out dated connection ,size=0 + +2025-09-24 16:18:57,788 INFO Connection check task end + +2025-09-24 16:18:58,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:00,790 INFO Connection check task start + +2025-09-24 16:19:00,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:00,790 INFO Out dated connection ,size=0 + +2025-09-24 16:19:00,790 INFO Connection check task end + +2025-09-24 16:19:01,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:03,790 INFO Connection check task start + +2025-09-24 16:19:03,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:03,790 INFO Out dated connection ,size=0 + +2025-09-24 16:19:03,790 INFO Connection check task end + +2025-09-24 16:19:04,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:06,792 INFO Connection check task start + +2025-09-24 16:19:06,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:06,792 INFO Out dated connection ,size=0 + +2025-09-24 16:19:06,792 INFO Connection check task end + +2025-09-24 16:19:07,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:09,794 INFO Connection check task start + +2025-09-24 16:19:09,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:09,794 INFO Out dated connection ,size=0 + +2025-09-24 16:19:09,794 INFO Connection check task end + +2025-09-24 16:19:10,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:12,794 INFO Connection check task start + +2025-09-24 16:19:12,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:12,795 INFO Out dated connection ,size=0 + +2025-09-24 16:19:12,795 INFO Connection check task end + +2025-09-24 16:19:13,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:15,795 INFO Connection check task start + +2025-09-24 16:19:15,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:15,795 INFO Out dated connection ,size=0 + +2025-09-24 16:19:15,795 INFO Connection check task end + +2025-09-24 16:19:16,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:18,796 INFO Connection check task start + +2025-09-24 16:19:18,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:18,796 INFO Out dated connection ,size=0 + +2025-09-24 16:19:18,797 INFO Connection check task end + +2025-09-24 16:19:19,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:21,797 INFO Connection check task start + +2025-09-24 16:19:21,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:21,797 INFO Out dated connection ,size=0 + +2025-09-24 16:19:21,797 INFO Connection check task end + +2025-09-24 16:19:22,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:24,799 INFO Connection check task start + +2025-09-24 16:19:24,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:24,799 INFO Out dated connection ,size=0 + +2025-09-24 16:19:24,799 INFO Connection check task end + +2025-09-24 16:19:25,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:27,801 INFO Connection check task start + +2025-09-24 16:19:27,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:27,802 INFO Out dated connection ,size=0 + +2025-09-24 16:19:27,802 INFO Connection check task end + +2025-09-24 16:19:28,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:30,802 INFO Connection check task start + +2025-09-24 16:19:30,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:30,802 INFO Out dated connection ,size=0 + +2025-09-24 16:19:30,802 INFO Connection check task end + +2025-09-24 16:19:31,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:33,805 INFO Connection check task start + +2025-09-24 16:19:33,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:33,805 INFO Out dated connection ,size=0 + +2025-09-24 16:19:33,805 INFO Connection check task end + +2025-09-24 16:19:34,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:36,805 INFO Connection check task start + +2025-09-24 16:19:36,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:36,805 INFO Out dated connection ,size=0 + +2025-09-24 16:19:36,805 INFO Connection check task end + +2025-09-24 16:19:37,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:39,806 INFO Connection check task start + +2025-09-24 16:19:39,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:39,806 INFO Out dated connection ,size=0 + +2025-09-24 16:19:39,806 INFO Connection check task end + +2025-09-24 16:19:40,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:42,807 INFO Connection check task start + +2025-09-24 16:19:42,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:42,807 INFO Out dated connection ,size=0 + +2025-09-24 16:19:42,807 INFO Connection check task end + +2025-09-24 16:19:43,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:45,808 INFO Connection check task start + +2025-09-24 16:19:45,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:45,808 INFO Out dated connection ,size=0 + +2025-09-24 16:19:45,808 INFO Connection check task end + +2025-09-24 16:19:46,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:48,808 INFO Connection check task start + +2025-09-24 16:19:48,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:48,808 INFO Out dated connection ,size=0 + +2025-09-24 16:19:48,809 INFO Connection check task end + +2025-09-24 16:19:49,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:51,809 INFO Connection check task start + +2025-09-24 16:19:51,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:51,810 INFO Out dated connection ,size=0 + +2025-09-24 16:19:51,810 INFO Connection check task end + +2025-09-24 16:19:52,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:54,810 INFO Connection check task start + +2025-09-24 16:19:54,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:54,810 INFO Out dated connection ,size=0 + +2025-09-24 16:19:54,810 INFO Connection check task end + +2025-09-24 16:19:55,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:19:57,811 INFO Connection check task start + +2025-09-24 16:19:57,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:19:57,811 INFO Out dated connection ,size=0 + +2025-09-24 16:19:57,811 INFO Connection check task end + +2025-09-24 16:19:58,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:00,813 INFO Connection check task start + +2025-09-24 16:20:00,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:00,813 INFO Out dated connection ,size=0 + +2025-09-24 16:20:00,813 INFO Connection check task end + +2025-09-24 16:20:01,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:03,815 INFO Connection check task start + +2025-09-24 16:20:03,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:03,815 INFO Out dated connection ,size=0 + +2025-09-24 16:20:03,815 INFO Connection check task end + +2025-09-24 16:20:04,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:06,817 INFO Connection check task start + +2025-09-24 16:20:06,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:06,817 INFO Out dated connection ,size=0 + +2025-09-24 16:20:06,817 INFO Connection check task end + +2025-09-24 16:20:07,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:09,818 INFO Connection check task start + +2025-09-24 16:20:09,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:09,818 INFO Out dated connection ,size=0 + +2025-09-24 16:20:09,818 INFO Connection check task end + +2025-09-24 16:20:10,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:12,818 INFO Connection check task start + +2025-09-24 16:20:12,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:12,818 INFO Out dated connection ,size=0 + +2025-09-24 16:20:12,818 INFO Connection check task end + +2025-09-24 16:20:13,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:15,819 INFO Connection check task start + +2025-09-24 16:20:15,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:15,819 INFO Out dated connection ,size=0 + +2025-09-24 16:20:15,819 INFO Connection check task end + +2025-09-24 16:20:16,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:18,820 INFO Connection check task start + +2025-09-24 16:20:18,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:18,820 INFO Out dated connection ,size=0 + +2025-09-24 16:20:18,820 INFO Connection check task end + +2025-09-24 16:20:19,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:21,820 INFO Connection check task start + +2025-09-24 16:20:21,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:21,820 INFO Out dated connection ,size=0 + +2025-09-24 16:20:21,820 INFO Connection check task end + +2025-09-24 16:20:22,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:24,821 INFO Connection check task start + +2025-09-24 16:20:24,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:24,821 INFO Out dated connection ,size=0 + +2025-09-24 16:20:24,821 INFO Connection check task end + +2025-09-24 16:20:25,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:27,821 INFO Connection check task start + +2025-09-24 16:20:27,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:27,821 INFO Out dated connection ,size=0 + +2025-09-24 16:20:27,822 INFO Connection check task end + +2025-09-24 16:20:28,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:30,823 INFO Connection check task start + +2025-09-24 16:20:30,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:30,823 INFO Out dated connection ,size=0 + +2025-09-24 16:20:30,823 INFO Connection check task end + +2025-09-24 16:20:31,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:33,825 INFO Connection check task start + +2025-09-24 16:20:33,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:33,825 INFO Out dated connection ,size=0 + +2025-09-24 16:20:33,825 INFO Connection check task end + +2025-09-24 16:20:34,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:36,826 INFO Connection check task start + +2025-09-24 16:20:36,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:36,826 INFO Out dated connection ,size=0 + +2025-09-24 16:20:36,826 INFO Connection check task end + +2025-09-24 16:20:37,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:39,826 INFO Connection check task start + +2025-09-24 16:20:39,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:39,826 INFO Out dated connection ,size=0 + +2025-09-24 16:20:39,826 INFO Connection check task end + +2025-09-24 16:20:40,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:42,828 INFO Connection check task start + +2025-09-24 16:20:42,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:42,828 INFO Out dated connection ,size=0 + +2025-09-24 16:20:42,828 INFO Connection check task end + +2025-09-24 16:20:43,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:45,829 INFO Connection check task start + +2025-09-24 16:20:45,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:45,830 INFO Out dated connection ,size=0 + +2025-09-24 16:20:45,830 INFO Connection check task end + +2025-09-24 16:20:46,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:48,830 INFO Connection check task start + +2025-09-24 16:20:48,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:48,830 INFO Out dated connection ,size=0 + +2025-09-24 16:20:48,830 INFO Connection check task end + +2025-09-24 16:20:49,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:51,831 INFO Connection check task start + +2025-09-24 16:20:51,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:51,831 INFO Out dated connection ,size=0 + +2025-09-24 16:20:51,831 INFO Connection check task end + +2025-09-24 16:20:52,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:54,831 INFO Connection check task start + +2025-09-24 16:20:54,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:54,832 INFO Out dated connection ,size=0 + +2025-09-24 16:20:54,832 INFO Connection check task end + +2025-09-24 16:20:55,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:20:57,834 INFO Connection check task start + +2025-09-24 16:20:57,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:20:57,834 INFO Out dated connection ,size=0 + +2025-09-24 16:20:57,834 INFO Connection check task end + +2025-09-24 16:20:58,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:00,835 INFO Connection check task start + +2025-09-24 16:21:00,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:00,835 INFO Out dated connection ,size=0 + +2025-09-24 16:21:00,835 INFO Connection check task end + +2025-09-24 16:21:01,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:03,836 INFO Connection check task start + +2025-09-24 16:21:03,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:03,837 INFO Out dated connection ,size=0 + +2025-09-24 16:21:03,837 INFO Connection check task end + +2025-09-24 16:21:04,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:06,838 INFO Connection check task start + +2025-09-24 16:21:06,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:06,839 INFO Out dated connection ,size=0 + +2025-09-24 16:21:06,839 INFO Connection check task end + +2025-09-24 16:21:07,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:09,839 INFO Connection check task start + +2025-09-24 16:21:09,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:09,839 INFO Out dated connection ,size=0 + +2025-09-24 16:21:09,839 INFO Connection check task end + +2025-09-24 16:21:10,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:12,839 INFO Connection check task start + +2025-09-24 16:21:12,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:12,840 INFO Out dated connection ,size=0 + +2025-09-24 16:21:12,840 INFO Connection check task end + +2025-09-24 16:21:13,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:15,840 INFO Connection check task start + +2025-09-24 16:21:15,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:15,840 INFO Out dated connection ,size=0 + +2025-09-24 16:21:15,840 INFO Connection check task end + +2025-09-24 16:21:16,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:18,840 INFO Connection check task start + +2025-09-24 16:21:18,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:18,840 INFO Out dated connection ,size=0 + +2025-09-24 16:21:18,840 INFO Connection check task end + +2025-09-24 16:21:19,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:21,842 INFO Connection check task start + +2025-09-24 16:21:21,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:21,843 INFO Out dated connection ,size=0 + +2025-09-24 16:21:21,843 INFO Connection check task end + +2025-09-24 16:21:22,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:24,844 INFO Connection check task start + +2025-09-24 16:21:24,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:24,845 INFO Out dated connection ,size=0 + +2025-09-24 16:21:24,845 INFO Connection check task end + +2025-09-24 16:21:25,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:27,845 INFO Connection check task start + +2025-09-24 16:21:27,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:27,845 INFO Out dated connection ,size=0 + +2025-09-24 16:21:27,845 INFO Connection check task end + +2025-09-24 16:21:28,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:30,847 INFO Connection check task start + +2025-09-24 16:21:30,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:30,847 INFO Out dated connection ,size=0 + +2025-09-24 16:21:30,847 INFO Connection check task end + +2025-09-24 16:21:31,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:33,849 INFO Connection check task start + +2025-09-24 16:21:33,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:33,850 INFO Out dated connection ,size=0 + +2025-09-24 16:21:33,850 INFO Connection check task end + +2025-09-24 16:21:34,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:36,852 INFO Connection check task start + +2025-09-24 16:21:36,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:36,852 INFO Out dated connection ,size=0 + +2025-09-24 16:21:36,852 INFO Connection check task end + +2025-09-24 16:21:37,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:39,852 INFO Connection check task start + +2025-09-24 16:21:39,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:39,852 INFO Out dated connection ,size=0 + +2025-09-24 16:21:39,852 INFO Connection check task end + +2025-09-24 16:21:40,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:42,854 INFO Connection check task start + +2025-09-24 16:21:42,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:42,854 INFO Out dated connection ,size=0 + +2025-09-24 16:21:42,854 INFO Connection check task end + +2025-09-24 16:21:43,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:45,854 INFO Connection check task start + +2025-09-24 16:21:45,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:45,854 INFO Out dated connection ,size=0 + +2025-09-24 16:21:45,854 INFO Connection check task end + +2025-09-24 16:21:46,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:48,855 INFO Connection check task start + +2025-09-24 16:21:48,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:48,855 INFO Out dated connection ,size=0 + +2025-09-24 16:21:48,855 INFO Connection check task end + +2025-09-24 16:21:49,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:51,857 INFO Connection check task start + +2025-09-24 16:21:51,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:51,857 INFO Out dated connection ,size=0 + +2025-09-24 16:21:51,857 INFO Connection check task end + +2025-09-24 16:21:52,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:54,860 INFO Connection check task start + +2025-09-24 16:21:54,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:54,860 INFO Out dated connection ,size=0 + +2025-09-24 16:21:54,860 INFO Connection check task end + +2025-09-24 16:21:55,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:21:57,860 INFO Connection check task start + +2025-09-24 16:21:57,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:21:57,860 INFO Out dated connection ,size=0 + +2025-09-24 16:21:57,860 INFO Connection check task end + +2025-09-24 16:21:58,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:00,861 INFO Connection check task start + +2025-09-24 16:22:00,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:00,862 INFO Out dated connection ,size=0 + +2025-09-24 16:22:00,862 INFO Connection check task end + +2025-09-24 16:22:01,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:03,862 INFO Connection check task start + +2025-09-24 16:22:03,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:03,862 INFO Out dated connection ,size=0 + +2025-09-24 16:22:03,862 INFO Connection check task end + +2025-09-24 16:22:04,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:06,862 INFO Connection check task start + +2025-09-24 16:22:06,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:06,863 INFO Out dated connection ,size=0 + +2025-09-24 16:22:06,863 INFO Connection check task end + +2025-09-24 16:22:07,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:09,863 INFO Connection check task start + +2025-09-24 16:22:09,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:09,864 INFO Out dated connection ,size=0 + +2025-09-24 16:22:09,864 INFO Connection check task end + +2025-09-24 16:22:10,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:12,866 INFO Connection check task start + +2025-09-24 16:22:12,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:12,866 INFO Out dated connection ,size=0 + +2025-09-24 16:22:12,866 INFO Connection check task end + +2025-09-24 16:22:13,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:15,868 INFO Connection check task start + +2025-09-24 16:22:15,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:15,868 INFO Out dated connection ,size=0 + +2025-09-24 16:22:15,869 INFO Connection check task end + +2025-09-24 16:22:16,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:18,870 INFO Connection check task start + +2025-09-24 16:22:18,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:18,879 INFO Out dated connection ,size=0 + +2025-09-24 16:22:18,879 INFO Connection check task end + +2025-09-24 16:22:19,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:21,879 INFO Connection check task start + +2025-09-24 16:22:21,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:21,880 INFO Out dated connection ,size=0 + +2025-09-24 16:22:21,880 INFO Connection check task end + +2025-09-24 16:22:22,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:24,880 INFO Connection check task start + +2025-09-24 16:22:24,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:24,880 INFO Out dated connection ,size=0 + +2025-09-24 16:22:24,880 INFO Connection check task end + +2025-09-24 16:22:25,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:27,880 INFO Connection check task start + +2025-09-24 16:22:27,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:27,881 INFO Out dated connection ,size=0 + +2025-09-24 16:22:27,881 INFO Connection check task end + +2025-09-24 16:22:28,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:30,882 INFO Connection check task start + +2025-09-24 16:22:30,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:30,883 INFO Out dated connection ,size=0 + +2025-09-24 16:22:30,883 INFO Connection check task end + +2025-09-24 16:22:31,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:33,883 INFO Connection check task start + +2025-09-24 16:22:33,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:33,883 INFO Out dated connection ,size=0 + +2025-09-24 16:22:33,883 INFO Connection check task end + +2025-09-24 16:22:34,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:36,883 INFO Connection check task start + +2025-09-24 16:22:36,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:36,883 INFO Out dated connection ,size=0 + +2025-09-24 16:22:36,883 INFO Connection check task end + +2025-09-24 16:22:37,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:39,884 INFO Connection check task start + +2025-09-24 16:22:39,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:39,884 INFO Out dated connection ,size=0 + +2025-09-24 16:22:39,884 INFO Connection check task end + +2025-09-24 16:22:40,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:42,885 INFO Connection check task start + +2025-09-24 16:22:42,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:42,885 INFO Out dated connection ,size=0 + +2025-09-24 16:22:42,885 INFO Connection check task end + +2025-09-24 16:22:43,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:45,886 INFO Connection check task start + +2025-09-24 16:22:45,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:45,886 INFO Out dated connection ,size=0 + +2025-09-24 16:22:45,886 INFO Connection check task end + +2025-09-24 16:22:46,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:48,886 INFO Connection check task start + +2025-09-24 16:22:48,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:48,899 INFO Out dated connection ,size=0 + +2025-09-24 16:22:48,899 INFO Connection check task end + +2025-09-24 16:22:49,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:51,900 INFO Connection check task start + +2025-09-24 16:22:51,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:51,900 INFO Out dated connection ,size=0 + +2025-09-24 16:22:51,900 INFO Connection check task end + +2025-09-24 16:22:52,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:54,901 INFO Connection check task start + +2025-09-24 16:22:54,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:54,902 INFO Out dated connection ,size=0 + +2025-09-24 16:22:54,902 INFO Connection check task end + +2025-09-24 16:22:55,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:22:57,902 INFO Connection check task start + +2025-09-24 16:22:57,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:22:57,902 INFO Out dated connection ,size=0 + +2025-09-24 16:22:57,902 INFO Connection check task end + +2025-09-24 16:22:58,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:00,902 INFO Connection check task start + +2025-09-24 16:23:00,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:00,903 INFO Out dated connection ,size=0 + +2025-09-24 16:23:00,903 INFO Connection check task end + +2025-09-24 16:23:01,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:03,904 INFO Connection check task start + +2025-09-24 16:23:03,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:03,904 INFO Out dated connection ,size=0 + +2025-09-24 16:23:03,904 INFO Connection check task end + +2025-09-24 16:23:04,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:06,904 INFO Connection check task start + +2025-09-24 16:23:06,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:06,905 INFO Out dated connection ,size=0 + +2025-09-24 16:23:06,905 INFO Connection check task end + +2025-09-24 16:23:07,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:09,905 INFO Connection check task start + +2025-09-24 16:23:09,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:09,905 INFO Out dated connection ,size=0 + +2025-09-24 16:23:09,905 INFO Connection check task end + +2025-09-24 16:23:10,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:12,906 INFO Connection check task start + +2025-09-24 16:23:12,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:12,906 INFO Out dated connection ,size=0 + +2025-09-24 16:23:12,906 INFO Connection check task end + +2025-09-24 16:23:13,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:15,906 INFO Connection check task start + +2025-09-24 16:23:15,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:15,906 INFO Out dated connection ,size=0 + +2025-09-24 16:23:15,906 INFO Connection check task end + +2025-09-24 16:23:16,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:18,906 INFO Connection check task start + +2025-09-24 16:23:18,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:18,907 INFO Out dated connection ,size=0 + +2025-09-24 16:23:18,907 INFO Connection check task end + +2025-09-24 16:23:19,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:21,908 INFO Connection check task start + +2025-09-24 16:23:21,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:21,908 INFO Out dated connection ,size=0 + +2025-09-24 16:23:21,908 INFO Connection check task end + +2025-09-24 16:23:22,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:24,909 INFO Connection check task start + +2025-09-24 16:23:24,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:24,909 INFO Out dated connection ,size=0 + +2025-09-24 16:23:24,909 INFO Connection check task end + +2025-09-24 16:23:25,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:27,911 INFO Connection check task start + +2025-09-24 16:23:27,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:27,911 INFO Out dated connection ,size=0 + +2025-09-24 16:23:27,911 INFO Connection check task end + +2025-09-24 16:23:28,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:30,912 INFO Connection check task start + +2025-09-24 16:23:30,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:30,912 INFO Out dated connection ,size=0 + +2025-09-24 16:23:30,912 INFO Connection check task end + +2025-09-24 16:23:31,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:33,913 INFO Connection check task start + +2025-09-24 16:23:33,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:33,913 INFO Out dated connection ,size=0 + +2025-09-24 16:23:33,913 INFO Connection check task end + +2025-09-24 16:23:34,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:36,915 INFO Connection check task start + +2025-09-24 16:23:36,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:36,915 INFO Out dated connection ,size=0 + +2025-09-24 16:23:36,915 INFO Connection check task end + +2025-09-24 16:23:37,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:39,916 INFO Connection check task start + +2025-09-24 16:23:39,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:39,916 INFO Out dated connection ,size=0 + +2025-09-24 16:23:39,916 INFO Connection check task end + +2025-09-24 16:23:40,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:42,917 INFO Connection check task start + +2025-09-24 16:23:42,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:42,917 INFO Out dated connection ,size=0 + +2025-09-24 16:23:42,917 INFO Connection check task end + +2025-09-24 16:23:43,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:45,919 INFO Connection check task start + +2025-09-24 16:23:45,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:45,919 INFO Out dated connection ,size=0 + +2025-09-24 16:23:45,919 INFO Connection check task end + +2025-09-24 16:23:46,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:48,921 INFO Connection check task start + +2025-09-24 16:23:48,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:48,939 INFO Out dated connection ,size=0 + +2025-09-24 16:23:48,959 INFO Connection check task end + +2025-09-24 16:23:49,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:51,959 INFO Connection check task start + +2025-09-24 16:23:51,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:51,959 INFO Out dated connection ,size=0 + +2025-09-24 16:23:51,959 INFO Connection check task end + +2025-09-24 16:23:52,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:54,960 INFO Connection check task start + +2025-09-24 16:23:54,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:54,960 INFO Out dated connection ,size=0 + +2025-09-24 16:23:54,960 INFO Connection check task end + +2025-09-24 16:23:55,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:23:57,961 INFO Connection check task start + +2025-09-24 16:23:57,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:23:57,961 INFO Out dated connection ,size=0 + +2025-09-24 16:23:57,961 INFO Connection check task end + +2025-09-24 16:23:58,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:00,961 INFO Connection check task start + +2025-09-24 16:24:00,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:00,961 INFO Out dated connection ,size=0 + +2025-09-24 16:24:00,961 INFO Connection check task end + +2025-09-24 16:24:01,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:03,962 INFO Connection check task start + +2025-09-24 16:24:03,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:03,962 INFO Out dated connection ,size=0 + +2025-09-24 16:24:03,962 INFO Connection check task end + +2025-09-24 16:24:04,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:06,963 INFO Connection check task start + +2025-09-24 16:24:06,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:06,963 INFO Out dated connection ,size=0 + +2025-09-24 16:24:06,963 INFO Connection check task end + +2025-09-24 16:24:07,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:09,963 INFO Connection check task start + +2025-09-24 16:24:09,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:09,964 INFO Out dated connection ,size=0 + +2025-09-24 16:24:09,964 INFO Connection check task end + +2025-09-24 16:24:10,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:12,964 INFO Connection check task start + +2025-09-24 16:24:12,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:12,964 INFO Out dated connection ,size=0 + +2025-09-24 16:24:12,964 INFO Connection check task end + +2025-09-24 16:24:13,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:15,965 INFO Connection check task start + +2025-09-24 16:24:15,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:15,965 INFO Out dated connection ,size=0 + +2025-09-24 16:24:15,965 INFO Connection check task end + +2025-09-24 16:24:16,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:18,965 INFO Connection check task start + +2025-09-24 16:24:18,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:18,965 INFO Out dated connection ,size=0 + +2025-09-24 16:24:18,965 INFO Connection check task end + +2025-09-24 16:24:19,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:21,966 INFO Connection check task start + +2025-09-24 16:24:21,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:21,967 INFO Out dated connection ,size=0 + +2025-09-24 16:24:21,967 INFO Connection check task end + +2025-09-24 16:24:22,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:24,967 INFO Connection check task start + +2025-09-24 16:24:24,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:24,967 INFO Out dated connection ,size=0 + +2025-09-24 16:24:24,967 INFO Connection check task end + +2025-09-24 16:24:25,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:27,968 INFO Connection check task start + +2025-09-24 16:24:27,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:27,970 INFO Out dated connection ,size=0 + +2025-09-24 16:24:27,970 INFO Connection check task end + +2025-09-24 16:24:28,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:30,970 INFO Connection check task start + +2025-09-24 16:24:30,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:30,970 INFO Out dated connection ,size=0 + +2025-09-24 16:24:30,970 INFO Connection check task end + +2025-09-24 16:24:31,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:33,971 INFO Connection check task start + +2025-09-24 16:24:33,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:33,971 INFO Out dated connection ,size=0 + +2025-09-24 16:24:33,971 INFO Connection check task end + +2025-09-24 16:24:34,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:36,972 INFO Connection check task start + +2025-09-24 16:24:36,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:36,972 INFO Out dated connection ,size=0 + +2025-09-24 16:24:36,972 INFO Connection check task end + +2025-09-24 16:24:37,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:39,972 INFO Connection check task start + +2025-09-24 16:24:39,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:39,973 INFO Out dated connection ,size=0 + +2025-09-24 16:24:39,973 INFO Connection check task end + +2025-09-24 16:24:40,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:42,973 INFO Connection check task start + +2025-09-24 16:24:42,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:42,973 INFO Out dated connection ,size=0 + +2025-09-24 16:24:42,973 INFO Connection check task end + +2025-09-24 16:24:43,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:45,974 INFO Connection check task start + +2025-09-24 16:24:45,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:45,975 INFO Out dated connection ,size=0 + +2025-09-24 16:24:45,975 INFO Connection check task end + +2025-09-24 16:24:46,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:48,975 INFO Connection check task start + +2025-09-24 16:24:48,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:48,975 INFO Out dated connection ,size=0 + +2025-09-24 16:24:48,975 INFO Connection check task end + +2025-09-24 16:24:49,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:51,975 INFO Connection check task start + +2025-09-24 16:24:51,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:51,975 INFO Out dated connection ,size=0 + +2025-09-24 16:24:51,975 INFO Connection check task end + +2025-09-24 16:24:52,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:54,976 INFO Connection check task start + +2025-09-24 16:24:54,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:54,976 INFO Out dated connection ,size=0 + +2025-09-24 16:24:54,976 INFO Connection check task end + +2025-09-24 16:24:55,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:24:57,976 INFO Connection check task start + +2025-09-24 16:24:57,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:24:57,976 INFO Out dated connection ,size=0 + +2025-09-24 16:24:57,976 INFO Connection check task end + +2025-09-24 16:24:58,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:00,978 INFO Connection check task start + +2025-09-24 16:25:00,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:00,978 INFO Out dated connection ,size=0 + +2025-09-24 16:25:00,978 INFO Connection check task end + +2025-09-24 16:25:01,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:03,980 INFO Connection check task start + +2025-09-24 16:25:03,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:03,980 INFO Out dated connection ,size=0 + +2025-09-24 16:25:03,980 INFO Connection check task end + +2025-09-24 16:25:04,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:06,981 INFO Connection check task start + +2025-09-24 16:25:06,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:06,981 INFO Out dated connection ,size=0 + +2025-09-24 16:25:06,981 INFO Connection check task end + +2025-09-24 16:25:07,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:09,983 INFO Connection check task start + +2025-09-24 16:25:09,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:09,984 INFO Out dated connection ,size=0 + +2025-09-24 16:25:09,984 INFO Connection check task end + +2025-09-24 16:25:10,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:12,986 INFO Connection check task start + +2025-09-24 16:25:12,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:12,986 INFO Out dated connection ,size=0 + +2025-09-24 16:25:12,986 INFO Connection check task end + +2025-09-24 16:25:13,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:15,986 INFO Connection check task start + +2025-09-24 16:25:15,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:15,986 INFO Out dated connection ,size=0 + +2025-09-24 16:25:15,987 INFO Connection check task end + +2025-09-24 16:25:16,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:18,989 INFO Connection check task start + +2025-09-24 16:25:18,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:18,989 INFO Out dated connection ,size=0 + +2025-09-24 16:25:18,989 INFO Connection check task end + +2025-09-24 16:25:19,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:21,992 INFO Connection check task start + +2025-09-24 16:25:21,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:21,993 INFO Out dated connection ,size=0 + +2025-09-24 16:25:21,993 INFO Connection check task end + +2025-09-24 16:25:22,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:24,993 INFO Connection check task start + +2025-09-24 16:25:24,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:24,993 INFO Out dated connection ,size=0 + +2025-09-24 16:25:24,993 INFO Connection check task end + +2025-09-24 16:25:25,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:27,995 INFO Connection check task start + +2025-09-24 16:25:27,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:27,995 INFO Out dated connection ,size=0 + +2025-09-24 16:25:27,995 INFO Connection check task end + +2025-09-24 16:25:28,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:30,996 INFO Connection check task start + +2025-09-24 16:25:30,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:30,996 INFO Out dated connection ,size=0 + +2025-09-24 16:25:30,996 INFO Connection check task end + +2025-09-24 16:25:31,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:33,997 INFO Connection check task start + +2025-09-24 16:25:33,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:33,998 INFO Out dated connection ,size=0 + +2025-09-24 16:25:33,998 INFO Connection check task end + +2025-09-24 16:25:34,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:36,998 INFO Connection check task start + +2025-09-24 16:25:36,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:36,998 INFO Out dated connection ,size=0 + +2025-09-24 16:25:36,998 INFO Connection check task end + +2025-09-24 16:25:37,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:39,998 INFO Connection check task start + +2025-09-24 16:25:39,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:39,999 INFO Out dated connection ,size=0 + +2025-09-24 16:25:39,999 INFO Connection check task end + +2025-09-24 16:25:40,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:43,001 INFO Connection check task start + +2025-09-24 16:25:43,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:43,001 INFO Out dated connection ,size=0 + +2025-09-24 16:25:43,001 INFO Connection check task end + +2025-09-24 16:25:43,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:46,001 INFO Connection check task start + +2025-09-24 16:25:46,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:46,001 INFO Out dated connection ,size=0 + +2025-09-24 16:25:46,001 INFO Connection check task end + +2025-09-24 16:25:46,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:49,002 INFO Connection check task start + +2025-09-24 16:25:49,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:49,002 INFO Out dated connection ,size=0 + +2025-09-24 16:25:49,002 INFO Connection check task end + +2025-09-24 16:25:49,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:52,003 INFO Connection check task start + +2025-09-24 16:25:52,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:52,003 INFO Out dated connection ,size=0 + +2025-09-24 16:25:52,003 INFO Connection check task end + +2025-09-24 16:25:52,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:55,003 INFO Connection check task start + +2025-09-24 16:25:55,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:55,004 INFO Out dated connection ,size=0 + +2025-09-24 16:25:55,004 INFO Connection check task end + +2025-09-24 16:25:55,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:25:58,005 INFO Connection check task start + +2025-09-24 16:25:58,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:25:58,006 INFO Out dated connection ,size=0 + +2025-09-24 16:25:58,006 INFO Connection check task end + +2025-09-24 16:25:58,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:01,008 INFO Connection check task start + +2025-09-24 16:26:01,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:01,008 INFO Out dated connection ,size=0 + +2025-09-24 16:26:01,008 INFO Connection check task end + +2025-09-24 16:26:01,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:04,009 INFO Connection check task start + +2025-09-24 16:26:04,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:04,009 INFO Out dated connection ,size=0 + +2025-09-24 16:26:04,009 INFO Connection check task end + +2025-09-24 16:26:04,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:07,010 INFO Connection check task start + +2025-09-24 16:26:07,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:07,010 INFO Out dated connection ,size=0 + +2025-09-24 16:26:07,010 INFO Connection check task end + +2025-09-24 16:26:07,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:10,011 INFO Connection check task start + +2025-09-24 16:26:10,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:10,011 INFO Out dated connection ,size=0 + +2025-09-24 16:26:10,011 INFO Connection check task end + +2025-09-24 16:26:10,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:13,011 INFO Connection check task start + +2025-09-24 16:26:13,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:13,012 INFO Out dated connection ,size=0 + +2025-09-24 16:26:13,012 INFO Connection check task end + +2025-09-24 16:26:13,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:16,013 INFO Connection check task start + +2025-09-24 16:26:16,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:16,013 INFO Out dated connection ,size=0 + +2025-09-24 16:26:16,013 INFO Connection check task end + +2025-09-24 16:26:16,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:19,013 INFO Connection check task start + +2025-09-24 16:26:19,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:19,013 INFO Out dated connection ,size=0 + +2025-09-24 16:26:19,013 INFO Connection check task end + +2025-09-24 16:26:19,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:22,013 INFO Connection check task start + +2025-09-24 16:26:22,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:22,014 INFO Out dated connection ,size=0 + +2025-09-24 16:26:22,014 INFO Connection check task end + +2025-09-24 16:26:22,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:25,015 INFO Connection check task start + +2025-09-24 16:26:25,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:25,015 INFO Out dated connection ,size=0 + +2025-09-24 16:26:25,015 INFO Connection check task end + +2025-09-24 16:26:25,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:28,015 INFO Connection check task start + +2025-09-24 16:26:28,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:28,015 INFO Out dated connection ,size=0 + +2025-09-24 16:26:28,015 INFO Connection check task end + +2025-09-24 16:26:28,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:31,017 INFO Connection check task start + +2025-09-24 16:26:31,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:31,018 INFO Out dated connection ,size=0 + +2025-09-24 16:26:31,018 INFO Connection check task end + +2025-09-24 16:26:31,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:34,020 INFO Connection check task start + +2025-09-24 16:26:34,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:34,020 INFO Out dated connection ,size=0 + +2025-09-24 16:26:34,020 INFO Connection check task end + +2025-09-24 16:26:34,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:37,021 INFO Connection check task start + +2025-09-24 16:26:37,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:37,021 INFO Out dated connection ,size=0 + +2025-09-24 16:26:37,021 INFO Connection check task end + +2025-09-24 16:26:37,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:40,022 INFO Connection check task start + +2025-09-24 16:26:40,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:40,022 INFO Out dated connection ,size=0 + +2025-09-24 16:26:40,022 INFO Connection check task end + +2025-09-24 16:26:40,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:43,023 INFO Connection check task start + +2025-09-24 16:26:43,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:43,023 INFO Out dated connection ,size=0 + +2025-09-24 16:26:43,023 INFO Connection check task end + +2025-09-24 16:26:43,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:46,024 INFO Connection check task start + +2025-09-24 16:26:46,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:46,024 INFO Out dated connection ,size=0 + +2025-09-24 16:26:46,024 INFO Connection check task end + +2025-09-24 16:26:46,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:49,024 INFO Connection check task start + +2025-09-24 16:26:49,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:49,025 INFO Out dated connection ,size=0 + +2025-09-24 16:26:49,025 INFO Connection check task end + +2025-09-24 16:26:49,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:52,027 INFO Connection check task start + +2025-09-24 16:26:52,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:52,027 INFO Out dated connection ,size=0 + +2025-09-24 16:26:52,027 INFO Connection check task end + +2025-09-24 16:26:52,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:55,028 INFO Connection check task start + +2025-09-24 16:26:55,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:55,028 INFO Out dated connection ,size=0 + +2025-09-24 16:26:55,028 INFO Connection check task end + +2025-09-24 16:26:55,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:26:58,028 INFO Connection check task start + +2025-09-24 16:26:58,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:26:58,028 INFO Out dated connection ,size=0 + +2025-09-24 16:26:58,028 INFO Connection check task end + +2025-09-24 16:26:58,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:01,029 INFO Connection check task start + +2025-09-24 16:27:01,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:01,029 INFO Out dated connection ,size=0 + +2025-09-24 16:27:01,029 INFO Connection check task end + +2025-09-24 16:27:01,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:04,030 INFO Connection check task start + +2025-09-24 16:27:04,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:04,031 INFO Out dated connection ,size=0 + +2025-09-24 16:27:04,031 INFO Connection check task end + +2025-09-24 16:27:04,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:07,032 INFO Connection check task start + +2025-09-24 16:27:07,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:07,032 INFO Out dated connection ,size=0 + +2025-09-24 16:27:07,032 INFO Connection check task end + +2025-09-24 16:27:07,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:10,033 INFO Connection check task start + +2025-09-24 16:27:10,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:10,033 INFO Out dated connection ,size=0 + +2025-09-24 16:27:10,033 INFO Connection check task end + +2025-09-24 16:27:10,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:13,035 INFO Connection check task start + +2025-09-24 16:27:13,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:13,035 INFO Out dated connection ,size=0 + +2025-09-24 16:27:13,035 INFO Connection check task end + +2025-09-24 16:27:13,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:16,037 INFO Connection check task start + +2025-09-24 16:27:16,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:16,037 INFO Out dated connection ,size=0 + +2025-09-24 16:27:16,037 INFO Connection check task end + +2025-09-24 16:27:16,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:19,037 INFO Connection check task start + +2025-09-24 16:27:19,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:19,037 INFO Out dated connection ,size=0 + +2025-09-24 16:27:19,038 INFO Connection check task end + +2025-09-24 16:27:19,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:22,039 INFO Connection check task start + +2025-09-24 16:27:22,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:22,040 INFO Out dated connection ,size=0 + +2025-09-24 16:27:22,040 INFO Connection check task end + +2025-09-24 16:27:22,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:25,040 INFO Connection check task start + +2025-09-24 16:27:25,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:25,040 INFO Out dated connection ,size=0 + +2025-09-24 16:27:25,040 INFO Connection check task end + +2025-09-24 16:27:25,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:28,041 INFO Connection check task start + +2025-09-24 16:27:28,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:28,041 INFO Out dated connection ,size=0 + +2025-09-24 16:27:28,041 INFO Connection check task end + +2025-09-24 16:27:28,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:31,041 INFO Connection check task start + +2025-09-24 16:27:31,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:31,041 INFO Out dated connection ,size=0 + +2025-09-24 16:27:31,041 INFO Connection check task end + +2025-09-24 16:27:31,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:34,042 INFO Connection check task start + +2025-09-24 16:27:34,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:34,042 INFO Out dated connection ,size=0 + +2025-09-24 16:27:34,042 INFO Connection check task end + +2025-09-24 16:27:34,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:37,042 INFO Connection check task start + +2025-09-24 16:27:37,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:37,043 INFO Out dated connection ,size=0 + +2025-09-24 16:27:37,043 INFO Connection check task end + +2025-09-24 16:27:37,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:40,043 INFO Connection check task start + +2025-09-24 16:27:40,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:40,043 INFO Out dated connection ,size=0 + +2025-09-24 16:27:40,043 INFO Connection check task end + +2025-09-24 16:27:40,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:43,044 INFO Connection check task start + +2025-09-24 16:27:43,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:43,045 INFO Out dated connection ,size=0 + +2025-09-24 16:27:43,045 INFO Connection check task end + +2025-09-24 16:27:43,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:46,047 INFO Connection check task start + +2025-09-24 16:27:46,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:46,047 INFO Out dated connection ,size=0 + +2025-09-24 16:27:46,047 INFO Connection check task end + +2025-09-24 16:27:46,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:49,048 INFO Connection check task start + +2025-09-24 16:27:49,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:49,048 INFO Out dated connection ,size=0 + +2025-09-24 16:27:49,048 INFO Connection check task end + +2025-09-24 16:27:49,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:52,050 INFO Connection check task start + +2025-09-24 16:27:52,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:52,050 INFO Out dated connection ,size=0 + +2025-09-24 16:27:52,050 INFO Connection check task end + +2025-09-24 16:27:52,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:55,051 INFO Connection check task start + +2025-09-24 16:27:55,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:55,051 INFO Out dated connection ,size=0 + +2025-09-24 16:27:55,051 INFO Connection check task end + +2025-09-24 16:27:55,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:27:58,053 INFO Connection check task start + +2025-09-24 16:27:58,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:27:58,053 INFO Out dated connection ,size=0 + +2025-09-24 16:27:58,053 INFO Connection check task end + +2025-09-24 16:27:58,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:01,054 INFO Connection check task start + +2025-09-24 16:28:01,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:01,054 INFO Out dated connection ,size=0 + +2025-09-24 16:28:01,054 INFO Connection check task end + +2025-09-24 16:28:01,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:04,056 INFO Connection check task start + +2025-09-24 16:28:04,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:04,056 INFO Out dated connection ,size=0 + +2025-09-24 16:28:04,056 INFO Connection check task end + +2025-09-24 16:28:04,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:07,058 INFO Connection check task start + +2025-09-24 16:28:07,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:07,058 INFO Out dated connection ,size=0 + +2025-09-24 16:28:07,058 INFO Connection check task end + +2025-09-24 16:28:07,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:10,059 INFO Connection check task start + +2025-09-24 16:28:10,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:10,059 INFO Out dated connection ,size=0 + +2025-09-24 16:28:10,059 INFO Connection check task end + +2025-09-24 16:28:10,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:13,060 INFO Connection check task start + +2025-09-24 16:28:13,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:13,060 INFO Out dated connection ,size=0 + +2025-09-24 16:28:13,060 INFO Connection check task end + +2025-09-24 16:28:13,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:16,060 INFO Connection check task start + +2025-09-24 16:28:16,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:16,061 INFO Out dated connection ,size=0 + +2025-09-24 16:28:16,061 INFO Connection check task end + +2025-09-24 16:28:16,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:19,061 INFO Connection check task start + +2025-09-24 16:28:19,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:19,061 INFO Out dated connection ,size=0 + +2025-09-24 16:28:19,061 INFO Connection check task end + +2025-09-24 16:28:19,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:22,061 INFO Connection check task start + +2025-09-24 16:28:22,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:22,061 INFO Out dated connection ,size=0 + +2025-09-24 16:28:22,061 INFO Connection check task end + +2025-09-24 16:28:22,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:25,063 INFO Connection check task start + +2025-09-24 16:28:25,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:25,063 INFO Out dated connection ,size=0 + +2025-09-24 16:28:25,063 INFO Connection check task end + +2025-09-24 16:28:25,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:28,063 INFO Connection check task start + +2025-09-24 16:28:28,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:28,063 INFO Out dated connection ,size=0 + +2025-09-24 16:28:28,063 INFO Connection check task end + +2025-09-24 16:28:28,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:31,064 INFO Connection check task start + +2025-09-24 16:28:31,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:31,064 INFO Out dated connection ,size=0 + +2025-09-24 16:28:31,064 INFO Connection check task end + +2025-09-24 16:28:31,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:34,064 INFO Connection check task start + +2025-09-24 16:28:34,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:34,064 INFO Out dated connection ,size=0 + +2025-09-24 16:28:34,064 INFO Connection check task end + +2025-09-24 16:28:34,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:37,065 INFO Connection check task start + +2025-09-24 16:28:37,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:37,065 INFO Out dated connection ,size=0 + +2025-09-24 16:28:37,065 INFO Connection check task end + +2025-09-24 16:28:37,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:40,065 INFO Connection check task start + +2025-09-24 16:28:40,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:40,065 INFO Out dated connection ,size=0 + +2025-09-24 16:28:40,065 INFO Connection check task end + +2025-09-24 16:28:40,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:43,067 INFO Connection check task start + +2025-09-24 16:28:43,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:43,068 INFO Out dated connection ,size=0 + +2025-09-24 16:28:43,068 INFO Connection check task end + +2025-09-24 16:28:43,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:46,070 INFO Connection check task start + +2025-09-24 16:28:46,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:46,070 INFO Out dated connection ,size=0 + +2025-09-24 16:28:46,070 INFO Connection check task end + +2025-09-24 16:28:46,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:49,070 INFO Connection check task start + +2025-09-24 16:28:49,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:49,071 INFO Out dated connection ,size=0 + +2025-09-24 16:28:49,071 INFO Connection check task end + +2025-09-24 16:28:49,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:52,073 INFO Connection check task start + +2025-09-24 16:28:52,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:52,073 INFO Out dated connection ,size=0 + +2025-09-24 16:28:52,073 INFO Connection check task end + +2025-09-24 16:28:52,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:55,075 INFO Connection check task start + +2025-09-24 16:28:55,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:55,075 INFO Out dated connection ,size=0 + +2025-09-24 16:28:55,075 INFO Connection check task end + +2025-09-24 16:28:55,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:28:58,076 INFO Connection check task start + +2025-09-24 16:28:58,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:28:58,076 INFO Out dated connection ,size=0 + +2025-09-24 16:28:58,076 INFO Connection check task end + +2025-09-24 16:28:58,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:01,077 INFO Connection check task start + +2025-09-24 16:29:01,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:01,077 INFO Out dated connection ,size=0 + +2025-09-24 16:29:01,077 INFO Connection check task end + +2025-09-24 16:29:01,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:04,077 INFO Connection check task start + +2025-09-24 16:29:04,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:04,078 INFO Out dated connection ,size=0 + +2025-09-24 16:29:04,078 INFO Connection check task end + +2025-09-24 16:29:04,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:07,080 INFO Connection check task start + +2025-09-24 16:29:07,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:07,080 INFO Out dated connection ,size=0 + +2025-09-24 16:29:07,080 INFO Connection check task end + +2025-09-24 16:29:07,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:10,080 INFO Connection check task start + +2025-09-24 16:29:10,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:10,080 INFO Out dated connection ,size=0 + +2025-09-24 16:29:10,080 INFO Connection check task end + +2025-09-24 16:29:10,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:13,082 INFO Connection check task start + +2025-09-24 16:29:13,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:13,082 INFO Out dated connection ,size=0 + +2025-09-24 16:29:13,082 INFO Connection check task end + +2025-09-24 16:29:13,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:16,084 INFO Connection check task start + +2025-09-24 16:29:16,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:16,084 INFO Out dated connection ,size=0 + +2025-09-24 16:29:16,084 INFO Connection check task end + +2025-09-24 16:29:16,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:19,085 INFO Connection check task start + +2025-09-24 16:29:19,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:19,085 INFO Out dated connection ,size=0 + +2025-09-24 16:29:19,085 INFO Connection check task end + +2025-09-24 16:29:19,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:22,086 INFO Connection check task start + +2025-09-24 16:29:22,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:22,086 INFO Out dated connection ,size=0 + +2025-09-24 16:29:22,086 INFO Connection check task end + +2025-09-24 16:29:22,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:25,088 INFO Connection check task start + +2025-09-24 16:29:25,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:25,088 INFO Out dated connection ,size=0 + +2025-09-24 16:29:25,088 INFO Connection check task end + +2025-09-24 16:29:25,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:28,090 INFO Connection check task start + +2025-09-24 16:29:28,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:28,090 INFO Out dated connection ,size=0 + +2025-09-24 16:29:28,091 INFO Connection check task end + +2025-09-24 16:29:28,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:31,091 INFO Connection check task start + +2025-09-24 16:29:31,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:31,091 INFO Out dated connection ,size=0 + +2025-09-24 16:29:31,091 INFO Connection check task end + +2025-09-24 16:29:31,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:34,093 INFO Connection check task start + +2025-09-24 16:29:34,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:34,093 INFO Out dated connection ,size=0 + +2025-09-24 16:29:34,093 INFO Connection check task end + +2025-09-24 16:29:34,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:37,095 INFO Connection check task start + +2025-09-24 16:29:37,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:37,096 INFO Out dated connection ,size=0 + +2025-09-24 16:29:37,096 INFO Connection check task end + +2025-09-24 16:29:37,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:40,098 INFO Connection check task start + +2025-09-24 16:29:40,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:40,098 INFO Out dated connection ,size=0 + +2025-09-24 16:29:40,098 INFO Connection check task end + +2025-09-24 16:29:40,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:43,098 INFO Connection check task start + +2025-09-24 16:29:43,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:43,098 INFO Out dated connection ,size=0 + +2025-09-24 16:29:43,098 INFO Connection check task end + +2025-09-24 16:29:43,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:46,099 INFO Connection check task start + +2025-09-24 16:29:46,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:46,099 INFO Out dated connection ,size=0 + +2025-09-24 16:29:46,099 INFO Connection check task end + +2025-09-24 16:29:46,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:49,099 INFO Connection check task start + +2025-09-24 16:29:49,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:49,099 INFO Out dated connection ,size=0 + +2025-09-24 16:29:49,099 INFO Connection check task end + +2025-09-24 16:29:49,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:52,100 INFO Connection check task start + +2025-09-24 16:29:52,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:52,100 INFO Out dated connection ,size=0 + +2025-09-24 16:29:52,100 INFO Connection check task end + +2025-09-24 16:29:52,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:55,101 INFO Connection check task start + +2025-09-24 16:29:55,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:55,101 INFO Out dated connection ,size=0 + +2025-09-24 16:29:55,101 INFO Connection check task end + +2025-09-24 16:29:55,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:29:58,102 INFO Connection check task start + +2025-09-24 16:29:58,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:29:58,102 INFO Out dated connection ,size=0 + +2025-09-24 16:29:58,102 INFO Connection check task end + +2025-09-24 16:29:58,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:01,102 INFO Connection check task start + +2025-09-24 16:30:01,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:01,102 INFO Out dated connection ,size=0 + +2025-09-24 16:30:01,102 INFO Connection check task end + +2025-09-24 16:30:01,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:04,103 INFO Connection check task start + +2025-09-24 16:30:04,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:04,103 INFO Out dated connection ,size=0 + +2025-09-24 16:30:04,103 INFO Connection check task end + +2025-09-24 16:30:04,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:07,105 INFO Connection check task start + +2025-09-24 16:30:07,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:07,105 INFO Out dated connection ,size=0 + +2025-09-24 16:30:07,105 INFO Connection check task end + +2025-09-24 16:30:07,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:10,107 INFO Connection check task start + +2025-09-24 16:30:10,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:10,107 INFO Out dated connection ,size=0 + +2025-09-24 16:30:10,107 INFO Connection check task end + +2025-09-24 16:30:10,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:13,109 INFO Connection check task start + +2025-09-24 16:30:13,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:13,109 INFO Out dated connection ,size=0 + +2025-09-24 16:30:13,109 INFO Connection check task end + +2025-09-24 16:30:13,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:16,111 INFO Connection check task start + +2025-09-24 16:30:16,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:16,112 INFO Out dated connection ,size=0 + +2025-09-24 16:30:16,112 INFO Connection check task end + +2025-09-24 16:30:16,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:19,112 INFO Connection check task start + +2025-09-24 16:30:19,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:19,112 INFO Out dated connection ,size=0 + +2025-09-24 16:30:19,112 INFO Connection check task end + +2025-09-24 16:30:19,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:22,112 INFO Connection check task start + +2025-09-24 16:30:22,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:22,112 INFO Out dated connection ,size=0 + +2025-09-24 16:30:22,113 INFO Connection check task end + +2025-09-24 16:30:22,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:25,114 INFO Connection check task start + +2025-09-24 16:30:25,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:25,114 INFO Out dated connection ,size=0 + +2025-09-24 16:30:25,115 INFO Connection check task end + +2025-09-24 16:30:25,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:28,115 INFO Connection check task start + +2025-09-24 16:30:28,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:28,115 INFO Out dated connection ,size=0 + +2025-09-24 16:30:28,115 INFO Connection check task end + +2025-09-24 16:30:28,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:31,117 INFO Connection check task start + +2025-09-24 16:30:31,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:31,118 INFO Out dated connection ,size=0 + +2025-09-24 16:30:31,118 INFO Connection check task end + +2025-09-24 16:30:31,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:34,118 INFO Connection check task start + +2025-09-24 16:30:34,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:34,119 INFO Out dated connection ,size=0 + +2025-09-24 16:30:34,119 INFO Connection check task end + +2025-09-24 16:30:34,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:37,121 INFO Connection check task start + +2025-09-24 16:30:37,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:37,121 INFO Out dated connection ,size=0 + +2025-09-24 16:30:37,121 INFO Connection check task end + +2025-09-24 16:30:37,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:40,121 INFO Connection check task start + +2025-09-24 16:30:40,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:40,121 INFO Out dated connection ,size=0 + +2025-09-24 16:30:40,121 INFO Connection check task end + +2025-09-24 16:30:40,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:43,122 INFO Connection check task start + +2025-09-24 16:30:43,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:43,123 INFO Out dated connection ,size=0 + +2025-09-24 16:30:43,123 INFO Connection check task end + +2025-09-24 16:30:43,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:46,123 INFO Connection check task start + +2025-09-24 16:30:46,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:46,124 INFO Out dated connection ,size=0 + +2025-09-24 16:30:46,124 INFO Connection check task end + +2025-09-24 16:30:46,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:49,124 INFO Connection check task start + +2025-09-24 16:30:49,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:49,124 INFO Out dated connection ,size=0 + +2025-09-24 16:30:49,124 INFO Connection check task end + +2025-09-24 16:30:49,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:52,125 INFO Connection check task start + +2025-09-24 16:30:52,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:52,125 INFO Out dated connection ,size=0 + +2025-09-24 16:30:52,125 INFO Connection check task end + +2025-09-24 16:30:52,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:55,126 INFO Connection check task start + +2025-09-24 16:30:55,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:55,126 INFO Out dated connection ,size=0 + +2025-09-24 16:30:55,126 INFO Connection check task end + +2025-09-24 16:30:55,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:30:58,126 INFO Connection check task start + +2025-09-24 16:30:58,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:30:58,126 INFO Out dated connection ,size=0 + +2025-09-24 16:30:58,126 INFO Connection check task end + +2025-09-24 16:30:58,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:01,127 INFO Connection check task start + +2025-09-24 16:31:01,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:01,127 INFO Out dated connection ,size=0 + +2025-09-24 16:31:01,127 INFO Connection check task end + +2025-09-24 16:31:01,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:04,129 INFO Connection check task start + +2025-09-24 16:31:04,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:04,129 INFO Out dated connection ,size=0 + +2025-09-24 16:31:04,129 INFO Connection check task end + +2025-09-24 16:31:04,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:07,131 INFO Connection check task start + +2025-09-24 16:31:07,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:07,131 INFO Out dated connection ,size=0 + +2025-09-24 16:31:07,131 INFO Connection check task end + +2025-09-24 16:31:07,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:10,131 INFO Connection check task start + +2025-09-24 16:31:10,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:10,132 INFO Out dated connection ,size=0 + +2025-09-24 16:31:10,132 INFO Connection check task end + +2025-09-24 16:31:10,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:13,132 INFO Connection check task start + +2025-09-24 16:31:13,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:13,133 INFO Out dated connection ,size=0 + +2025-09-24 16:31:13,133 INFO Connection check task end + +2025-09-24 16:31:13,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:16,133 INFO Connection check task start + +2025-09-24 16:31:16,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:16,133 INFO Out dated connection ,size=0 + +2025-09-24 16:31:16,134 INFO Connection check task end + +2025-09-24 16:31:16,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:19,135 INFO Connection check task start + +2025-09-24 16:31:19,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:19,135 INFO Out dated connection ,size=0 + +2025-09-24 16:31:19,135 INFO Connection check task end + +2025-09-24 16:31:19,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:22,136 INFO Connection check task start + +2025-09-24 16:31:22,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:22,136 INFO Out dated connection ,size=0 + +2025-09-24 16:31:22,136 INFO Connection check task end + +2025-09-24 16:31:22,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:25,136 INFO Connection check task start + +2025-09-24 16:31:25,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:25,136 INFO Out dated connection ,size=0 + +2025-09-24 16:31:25,136 INFO Connection check task end + +2025-09-24 16:31:25,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:28,137 INFO Connection check task start + +2025-09-24 16:31:28,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:28,137 INFO Out dated connection ,size=0 + +2025-09-24 16:31:28,137 INFO Connection check task end + +2025-09-24 16:31:28,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:31,139 INFO Connection check task start + +2025-09-24 16:31:31,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:31,140 INFO Out dated connection ,size=0 + +2025-09-24 16:31:31,140 INFO Connection check task end + +2025-09-24 16:31:31,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:34,142 INFO Connection check task start + +2025-09-24 16:31:34,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:34,142 INFO Out dated connection ,size=0 + +2025-09-24 16:31:34,142 INFO Connection check task end + +2025-09-24 16:31:34,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:37,142 INFO Connection check task start + +2025-09-24 16:31:37,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:37,142 INFO Out dated connection ,size=0 + +2025-09-24 16:31:37,143 INFO Connection check task end + +2025-09-24 16:31:37,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:40,144 INFO Connection check task start + +2025-09-24 16:31:40,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:40,145 INFO Out dated connection ,size=0 + +2025-09-24 16:31:40,145 INFO Connection check task end + +2025-09-24 16:31:40,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:43,146 INFO Connection check task start + +2025-09-24 16:31:43,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:43,146 INFO Out dated connection ,size=0 + +2025-09-24 16:31:43,146 INFO Connection check task end + +2025-09-24 16:31:43,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:46,148 INFO Connection check task start + +2025-09-24 16:31:46,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:46,148 INFO Out dated connection ,size=0 + +2025-09-24 16:31:46,148 INFO Connection check task end + +2025-09-24 16:31:46,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:49,149 INFO Connection check task start + +2025-09-24 16:31:49,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:49,149 INFO Out dated connection ,size=0 + +2025-09-24 16:31:49,149 INFO Connection check task end + +2025-09-24 16:31:49,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:52,151 INFO Connection check task start + +2025-09-24 16:31:52,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:52,151 INFO Out dated connection ,size=0 + +2025-09-24 16:31:52,151 INFO Connection check task end + +2025-09-24 16:31:52,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:55,151 INFO Connection check task start + +2025-09-24 16:31:55,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:55,151 INFO Out dated connection ,size=0 + +2025-09-24 16:31:55,151 INFO Connection check task end + +2025-09-24 16:31:55,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:31:58,152 INFO Connection check task start + +2025-09-24 16:31:58,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:31:58,152 INFO Out dated connection ,size=0 + +2025-09-24 16:31:58,152 INFO Connection check task end + +2025-09-24 16:31:58,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:01,154 INFO Connection check task start + +2025-09-24 16:32:01,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:01,154 INFO Out dated connection ,size=0 + +2025-09-24 16:32:01,154 INFO Connection check task end + +2025-09-24 16:32:01,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:04,154 INFO Connection check task start + +2025-09-24 16:32:04,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:04,154 INFO Out dated connection ,size=0 + +2025-09-24 16:32:04,154 INFO Connection check task end + +2025-09-24 16:32:04,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:07,154 INFO Connection check task start + +2025-09-24 16:32:07,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:07,154 INFO Out dated connection ,size=0 + +2025-09-24 16:32:07,155 INFO Connection check task end + +2025-09-24 16:32:07,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:10,157 INFO Connection check task start + +2025-09-24 16:32:10,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:10,157 INFO Out dated connection ,size=0 + +2025-09-24 16:32:10,157 INFO Connection check task end + +2025-09-24 16:32:10,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:13,157 INFO Connection check task start + +2025-09-24 16:32:13,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:13,158 INFO Out dated connection ,size=0 + +2025-09-24 16:32:13,158 INFO Connection check task end + +2025-09-24 16:32:13,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:16,160 INFO Connection check task start + +2025-09-24 16:32:16,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:16,160 INFO Out dated connection ,size=0 + +2025-09-24 16:32:16,160 INFO Connection check task end + +2025-09-24 16:32:16,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:19,161 INFO Connection check task start + +2025-09-24 16:32:19,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:19,161 INFO Out dated connection ,size=0 + +2025-09-24 16:32:19,161 INFO Connection check task end + +2025-09-24 16:32:19,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:22,162 INFO Connection check task start + +2025-09-24 16:32:22,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:22,162 INFO Out dated connection ,size=0 + +2025-09-24 16:32:22,162 INFO Connection check task end + +2025-09-24 16:32:22,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:25,164 INFO Connection check task start + +2025-09-24 16:32:25,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:25,164 INFO Out dated connection ,size=0 + +2025-09-24 16:32:25,164 INFO Connection check task end + +2025-09-24 16:32:25,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:28,165 INFO Connection check task start + +2025-09-24 16:32:28,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:28,165 INFO Out dated connection ,size=0 + +2025-09-24 16:32:28,165 INFO Connection check task end + +2025-09-24 16:32:28,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:31,167 INFO Connection check task start + +2025-09-24 16:32:31,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:31,167 INFO Out dated connection ,size=0 + +2025-09-24 16:32:31,167 INFO Connection check task end + +2025-09-24 16:32:31,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:34,168 INFO Connection check task start + +2025-09-24 16:32:34,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:34,168 INFO Out dated connection ,size=0 + +2025-09-24 16:32:34,168 INFO Connection check task end + +2025-09-24 16:32:34,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:37,170 INFO Connection check task start + +2025-09-24 16:32:37,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:37,170 INFO Out dated connection ,size=0 + +2025-09-24 16:32:37,170 INFO Connection check task end + +2025-09-24 16:32:37,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:40,170 INFO Connection check task start + +2025-09-24 16:32:40,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:40,171 INFO Out dated connection ,size=0 + +2025-09-24 16:32:40,171 INFO Connection check task end + +2025-09-24 16:32:40,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:43,171 INFO Connection check task start + +2025-09-24 16:32:43,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:43,171 INFO Out dated connection ,size=0 + +2025-09-24 16:32:43,171 INFO Connection check task end + +2025-09-24 16:32:43,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:46,172 INFO Connection check task start + +2025-09-24 16:32:46,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:46,172 INFO Out dated connection ,size=0 + +2025-09-24 16:32:46,172 INFO Connection check task end + +2025-09-24 16:32:46,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:49,172 INFO Connection check task start + +2025-09-24 16:32:49,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:49,172 INFO Out dated connection ,size=0 + +2025-09-24 16:32:49,173 INFO Connection check task end + +2025-09-24 16:32:49,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:52,175 INFO Connection check task start + +2025-09-24 16:32:52,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:52,175 INFO Out dated connection ,size=0 + +2025-09-24 16:32:52,175 INFO Connection check task end + +2025-09-24 16:32:52,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:55,177 INFO Connection check task start + +2025-09-24 16:32:55,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:55,177 INFO Out dated connection ,size=0 + +2025-09-24 16:32:55,177 INFO Connection check task end + +2025-09-24 16:32:55,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:32:58,179 INFO Connection check task start + +2025-09-24 16:32:58,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:32:58,179 INFO Out dated connection ,size=0 + +2025-09-24 16:32:58,179 INFO Connection check task end + +2025-09-24 16:32:58,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:01,180 INFO Connection check task start + +2025-09-24 16:33:01,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:01,180 INFO Out dated connection ,size=0 + +2025-09-24 16:33:01,180 INFO Connection check task end + +2025-09-24 16:33:01,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:04,180 INFO Connection check task start + +2025-09-24 16:33:04,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:04,180 INFO Out dated connection ,size=0 + +2025-09-24 16:33:04,180 INFO Connection check task end + +2025-09-24 16:33:04,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:07,181 INFO Connection check task start + +2025-09-24 16:33:07,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:07,181 INFO Out dated connection ,size=0 + +2025-09-24 16:33:07,181 INFO Connection check task end + +2025-09-24 16:33:07,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:10,182 INFO Connection check task start + +2025-09-24 16:33:10,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:10,182 INFO Out dated connection ,size=0 + +2025-09-24 16:33:10,182 INFO Connection check task end + +2025-09-24 16:33:10,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:13,184 INFO Connection check task start + +2025-09-24 16:33:13,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:13,185 INFO Out dated connection ,size=0 + +2025-09-24 16:33:13,185 INFO Connection check task end + +2025-09-24 16:33:13,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:16,187 INFO Connection check task start + +2025-09-24 16:33:16,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:16,187 INFO Out dated connection ,size=0 + +2025-09-24 16:33:16,187 INFO Connection check task end + +2025-09-24 16:33:16,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:19,189 INFO Connection check task start + +2025-09-24 16:33:19,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:19,189 INFO Out dated connection ,size=0 + +2025-09-24 16:33:19,189 INFO Connection check task end + +2025-09-24 16:33:19,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:22,191 INFO Connection check task start + +2025-09-24 16:33:22,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:22,191 INFO Out dated connection ,size=0 + +2025-09-24 16:33:22,191 INFO Connection check task end + +2025-09-24 16:33:22,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:25,192 INFO Connection check task start + +2025-09-24 16:33:25,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:25,192 INFO Out dated connection ,size=0 + +2025-09-24 16:33:25,192 INFO Connection check task end + +2025-09-24 16:33:25,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:28,192 INFO Connection check task start + +2025-09-24 16:33:28,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:28,192 INFO Out dated connection ,size=0 + +2025-09-24 16:33:28,192 INFO Connection check task end + +2025-09-24 16:33:28,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:31,192 INFO Connection check task start + +2025-09-24 16:33:31,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:31,193 INFO Out dated connection ,size=0 + +2025-09-24 16:33:31,193 INFO Connection check task end + +2025-09-24 16:33:31,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:34,193 INFO Connection check task start + +2025-09-24 16:33:34,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:34,193 INFO Out dated connection ,size=0 + +2025-09-24 16:33:34,193 INFO Connection check task end + +2025-09-24 16:33:34,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:37,195 INFO Connection check task start + +2025-09-24 16:33:37,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:37,195 INFO Out dated connection ,size=0 + +2025-09-24 16:33:37,195 INFO Connection check task end + +2025-09-24 16:33:37,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:40,196 INFO Connection check task start + +2025-09-24 16:33:40,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:40,197 INFO Out dated connection ,size=0 + +2025-09-24 16:33:40,197 INFO Connection check task end + +2025-09-24 16:33:40,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:43,197 INFO Connection check task start + +2025-09-24 16:33:43,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:43,197 INFO Out dated connection ,size=0 + +2025-09-24 16:33:43,197 INFO Connection check task end + +2025-09-24 16:33:43,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:46,198 INFO Connection check task start + +2025-09-24 16:33:46,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:46,198 INFO Out dated connection ,size=0 + +2025-09-24 16:33:46,198 INFO Connection check task end + +2025-09-24 16:33:46,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:49,199 INFO Connection check task start + +2025-09-24 16:33:49,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:49,199 INFO Out dated connection ,size=0 + +2025-09-24 16:33:49,199 INFO Connection check task end + +2025-09-24 16:33:49,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:52,200 INFO Connection check task start + +2025-09-24 16:33:52,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:52,200 INFO Out dated connection ,size=0 + +2025-09-24 16:33:52,200 INFO Connection check task end + +2025-09-24 16:33:52,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:55,201 INFO Connection check task start + +2025-09-24 16:33:55,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:55,201 INFO Out dated connection ,size=0 + +2025-09-24 16:33:55,201 INFO Connection check task end + +2025-09-24 16:33:55,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:33:58,201 INFO Connection check task start + +2025-09-24 16:33:58,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:33:58,202 INFO Out dated connection ,size=0 + +2025-09-24 16:33:58,202 INFO Connection check task end + +2025-09-24 16:33:58,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:01,203 INFO Connection check task start + +2025-09-24 16:34:01,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:01,203 INFO Out dated connection ,size=0 + +2025-09-24 16:34:01,203 INFO Connection check task end + +2025-09-24 16:34:01,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:04,203 INFO Connection check task start + +2025-09-24 16:34:04,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:04,203 INFO Out dated connection ,size=0 + +2025-09-24 16:34:04,203 INFO Connection check task end + +2025-09-24 16:34:04,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:07,206 INFO Connection check task start + +2025-09-24 16:34:07,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:07,206 INFO Out dated connection ,size=0 + +2025-09-24 16:34:07,206 INFO Connection check task end + +2025-09-24 16:34:07,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:10,207 INFO Connection check task start + +2025-09-24 16:34:10,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:10,208 INFO Out dated connection ,size=0 + +2025-09-24 16:34:10,208 INFO Connection check task end + +2025-09-24 16:34:10,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:13,208 INFO Connection check task start + +2025-09-24 16:34:13,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:13,208 INFO Out dated connection ,size=0 + +2025-09-24 16:34:13,208 INFO Connection check task end + +2025-09-24 16:34:13,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:16,209 INFO Connection check task start + +2025-09-24 16:34:16,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:16,209 INFO Out dated connection ,size=0 + +2025-09-24 16:34:16,209 INFO Connection check task end + +2025-09-24 16:34:16,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:19,209 INFO Connection check task start + +2025-09-24 16:34:19,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:19,210 INFO Out dated connection ,size=0 + +2025-09-24 16:34:19,210 INFO Connection check task end + +2025-09-24 16:34:19,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:22,211 INFO Connection check task start + +2025-09-24 16:34:22,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:22,211 INFO Out dated connection ,size=0 + +2025-09-24 16:34:22,211 INFO Connection check task end + +2025-09-24 16:34:22,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:25,211 INFO Connection check task start + +2025-09-24 16:34:25,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:25,211 INFO Out dated connection ,size=0 + +2025-09-24 16:34:25,211 INFO Connection check task end + +2025-09-24 16:34:25,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:28,212 INFO Connection check task start + +2025-09-24 16:34:28,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:28,212 INFO Out dated connection ,size=0 + +2025-09-24 16:34:28,212 INFO Connection check task end + +2025-09-24 16:34:28,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:31,212 INFO Connection check task start + +2025-09-24 16:34:31,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:31,213 INFO Out dated connection ,size=0 + +2025-09-24 16:34:31,213 INFO Connection check task end + +2025-09-24 16:34:31,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:34,214 INFO Connection check task start + +2025-09-24 16:34:34,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:34,214 INFO Out dated connection ,size=0 + +2025-09-24 16:34:34,214 INFO Connection check task end + +2025-09-24 16:34:34,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:37,214 INFO Connection check task start + +2025-09-24 16:34:37,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:37,215 INFO Out dated connection ,size=0 + +2025-09-24 16:34:37,215 INFO Connection check task end + +2025-09-24 16:34:37,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:40,216 INFO Connection check task start + +2025-09-24 16:34:40,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:40,216 INFO Out dated connection ,size=0 + +2025-09-24 16:34:40,216 INFO Connection check task end + +2025-09-24 16:34:40,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:43,216 INFO Connection check task start + +2025-09-24 16:34:43,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:43,217 INFO Out dated connection ,size=0 + +2025-09-24 16:34:43,217 INFO Connection check task end + +2025-09-24 16:34:43,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:46,217 INFO Connection check task start + +2025-09-24 16:34:46,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:46,218 INFO Out dated connection ,size=0 + +2025-09-24 16:34:46,218 INFO Connection check task end + +2025-09-24 16:34:46,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:49,219 INFO Connection check task start + +2025-09-24 16:34:49,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:49,220 INFO Out dated connection ,size=0 + +2025-09-24 16:34:49,220 INFO Connection check task end + +2025-09-24 16:34:49,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:52,221 INFO Connection check task start + +2025-09-24 16:34:52,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:52,222 INFO Out dated connection ,size=0 + +2025-09-24 16:34:52,222 INFO Connection check task end + +2025-09-24 16:34:52,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:55,224 INFO Connection check task start + +2025-09-24 16:34:55,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:55,224 INFO Out dated connection ,size=0 + +2025-09-24 16:34:55,224 INFO Connection check task end + +2025-09-24 16:34:55,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:34:58,225 INFO Connection check task start + +2025-09-24 16:34:58,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:34:58,225 INFO Out dated connection ,size=0 + +2025-09-24 16:34:58,225 INFO Connection check task end + +2025-09-24 16:34:58,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:01,225 INFO Connection check task start + +2025-09-24 16:35:01,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:01,225 INFO Out dated connection ,size=0 + +2025-09-24 16:35:01,225 INFO Connection check task end + +2025-09-24 16:35:01,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:04,226 INFO Connection check task start + +2025-09-24 16:35:04,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:04,226 INFO Out dated connection ,size=0 + +2025-09-24 16:35:04,226 INFO Connection check task end + +2025-09-24 16:35:04,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:07,228 INFO Connection check task start + +2025-09-24 16:35:07,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:07,228 INFO Out dated connection ,size=0 + +2025-09-24 16:35:07,228 INFO Connection check task end + +2025-09-24 16:35:07,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:10,228 INFO Connection check task start + +2025-09-24 16:35:10,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:10,229 INFO Out dated connection ,size=0 + +2025-09-24 16:35:10,229 INFO Connection check task end + +2025-09-24 16:35:10,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:13,230 INFO Connection check task start + +2025-09-24 16:35:13,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:13,230 INFO Out dated connection ,size=0 + +2025-09-24 16:35:13,230 INFO Connection check task end + +2025-09-24 16:35:13,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:16,231 INFO Connection check task start + +2025-09-24 16:35:16,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:16,231 INFO Out dated connection ,size=0 + +2025-09-24 16:35:16,231 INFO Connection check task end + +2025-09-24 16:35:16,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:19,232 INFO Connection check task start + +2025-09-24 16:35:19,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:19,233 INFO Out dated connection ,size=0 + +2025-09-24 16:35:19,233 INFO Connection check task end + +2025-09-24 16:35:19,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:22,233 INFO Connection check task start + +2025-09-24 16:35:22,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:22,234 INFO Out dated connection ,size=0 + +2025-09-24 16:35:22,234 INFO Connection check task end + +2025-09-24 16:35:22,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:25,234 INFO Connection check task start + +2025-09-24 16:35:25,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:25,235 INFO Out dated connection ,size=0 + +2025-09-24 16:35:25,235 INFO Connection check task end + +2025-09-24 16:35:25,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:28,235 INFO Connection check task start + +2025-09-24 16:35:28,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:28,235 INFO Out dated connection ,size=0 + +2025-09-24 16:35:28,235 INFO Connection check task end + +2025-09-24 16:35:28,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:31,237 INFO Connection check task start + +2025-09-24 16:35:31,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:31,237 INFO Out dated connection ,size=0 + +2025-09-24 16:35:31,237 INFO Connection check task end + +2025-09-24 16:35:31,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:34,237 INFO Connection check task start + +2025-09-24 16:35:34,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:34,238 INFO Out dated connection ,size=0 + +2025-09-24 16:35:34,238 INFO Connection check task end + +2025-09-24 16:35:34,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:37,239 INFO Connection check task start + +2025-09-24 16:35:37,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:37,239 INFO Out dated connection ,size=0 + +2025-09-24 16:35:37,239 INFO Connection check task end + +2025-09-24 16:35:37,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:40,240 INFO Connection check task start + +2025-09-24 16:35:40,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:40,240 INFO Out dated connection ,size=0 + +2025-09-24 16:35:40,240 INFO Connection check task end + +2025-09-24 16:35:40,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:43,240 INFO Connection check task start + +2025-09-24 16:35:43,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:43,241 INFO Out dated connection ,size=0 + +2025-09-24 16:35:43,241 INFO Connection check task end + +2025-09-24 16:35:43,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:46,243 INFO Connection check task start + +2025-09-24 16:35:46,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:46,243 INFO Out dated connection ,size=0 + +2025-09-24 16:35:46,243 INFO Connection check task end + +2025-09-24 16:35:46,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:49,244 INFO Connection check task start + +2025-09-24 16:35:49,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:49,244 INFO Out dated connection ,size=0 + +2025-09-24 16:35:49,245 INFO Connection check task end + +2025-09-24 16:35:49,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:52,245 INFO Connection check task start + +2025-09-24 16:35:52,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:52,245 INFO Out dated connection ,size=0 + +2025-09-24 16:35:52,245 INFO Connection check task end + +2025-09-24 16:35:52,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:55,247 INFO Connection check task start + +2025-09-24 16:35:55,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:55,248 INFO Out dated connection ,size=0 + +2025-09-24 16:35:55,248 INFO Connection check task end + +2025-09-24 16:35:55,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:35:58,248 INFO Connection check task start + +2025-09-24 16:35:58,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:35:58,248 INFO Out dated connection ,size=0 + +2025-09-24 16:35:58,248 INFO Connection check task end + +2025-09-24 16:35:58,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:01,250 INFO Connection check task start + +2025-09-24 16:36:01,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:01,250 INFO Out dated connection ,size=0 + +2025-09-24 16:36:01,250 INFO Connection check task end + +2025-09-24 16:36:01,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:04,251 INFO Connection check task start + +2025-09-24 16:36:04,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:04,251 INFO Out dated connection ,size=0 + +2025-09-24 16:36:04,251 INFO Connection check task end + +2025-09-24 16:36:04,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:07,252 INFO Connection check task start + +2025-09-24 16:36:07,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:07,252 INFO Out dated connection ,size=0 + +2025-09-24 16:36:07,252 INFO Connection check task end + +2025-09-24 16:36:07,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:10,253 INFO Connection check task start + +2025-09-24 16:36:10,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:10,253 INFO Out dated connection ,size=0 + +2025-09-24 16:36:10,253 INFO Connection check task end + +2025-09-24 16:36:10,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:13,255 INFO Connection check task start + +2025-09-24 16:36:13,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:13,255 INFO Out dated connection ,size=0 + +2025-09-24 16:36:13,255 INFO Connection check task end + +2025-09-24 16:36:13,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:16,256 INFO Connection check task start + +2025-09-24 16:36:16,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:16,256 INFO Out dated connection ,size=0 + +2025-09-24 16:36:16,256 INFO Connection check task end + +2025-09-24 16:36:16,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:19,257 INFO Connection check task start + +2025-09-24 16:36:19,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:19,257 INFO Out dated connection ,size=0 + +2025-09-24 16:36:19,257 INFO Connection check task end + +2025-09-24 16:36:19,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:22,259 INFO Connection check task start + +2025-09-24 16:36:22,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:22,259 INFO Out dated connection ,size=0 + +2025-09-24 16:36:22,259 INFO Connection check task end + +2025-09-24 16:36:22,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:25,261 INFO Connection check task start + +2025-09-24 16:36:25,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:25,261 INFO Out dated connection ,size=0 + +2025-09-24 16:36:25,261 INFO Connection check task end + +2025-09-24 16:36:25,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:28,261 INFO Connection check task start + +2025-09-24 16:36:28,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:28,262 INFO Out dated connection ,size=0 + +2025-09-24 16:36:28,262 INFO Connection check task end + +2025-09-24 16:36:28,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:31,263 INFO Connection check task start + +2025-09-24 16:36:31,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:31,263 INFO Out dated connection ,size=0 + +2025-09-24 16:36:31,263 INFO Connection check task end + +2025-09-24 16:36:31,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:34,264 INFO Connection check task start + +2025-09-24 16:36:34,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:34,264 INFO Out dated connection ,size=0 + +2025-09-24 16:36:34,264 INFO Connection check task end + +2025-09-24 16:36:34,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:37,264 INFO Connection check task start + +2025-09-24 16:36:37,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:37,264 INFO Out dated connection ,size=0 + +2025-09-24 16:36:37,264 INFO Connection check task end + +2025-09-24 16:36:37,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:40,268 INFO Connection check task start + +2025-09-24 16:36:40,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:40,271 INFO Out dated connection ,size=0 + +2025-09-24 16:36:40,271 INFO Connection check task end + +2025-09-24 16:36:40,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:43,271 INFO Connection check task start + +2025-09-24 16:36:43,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:43,272 INFO Out dated connection ,size=0 + +2025-09-24 16:36:43,272 INFO Connection check task end + +2025-09-24 16:36:43,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:46,272 INFO Connection check task start + +2025-09-24 16:36:46,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:46,272 INFO Out dated connection ,size=0 + +2025-09-24 16:36:46,272 INFO Connection check task end + +2025-09-24 16:36:46,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:49,273 INFO Connection check task start + +2025-09-24 16:36:49,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:49,273 INFO Out dated connection ,size=0 + +2025-09-24 16:36:49,273 INFO Connection check task end + +2025-09-24 16:36:49,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:52,274 INFO Connection check task start + +2025-09-24 16:36:52,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:52,274 INFO Out dated connection ,size=0 + +2025-09-24 16:36:52,274 INFO Connection check task end + +2025-09-24 16:36:52,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:55,275 INFO Connection check task start + +2025-09-24 16:36:55,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:55,275 INFO Out dated connection ,size=0 + +2025-09-24 16:36:55,275 INFO Connection check task end + +2025-09-24 16:36:55,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:36:58,276 INFO Connection check task start + +2025-09-24 16:36:58,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:36:58,276 INFO Out dated connection ,size=0 + +2025-09-24 16:36:58,276 INFO Connection check task end + +2025-09-24 16:36:58,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:01,280 INFO Connection check task start + +2025-09-24 16:37:01,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:01,281 INFO Out dated connection ,size=0 + +2025-09-24 16:37:01,281 INFO Connection check task end + +2025-09-24 16:37:01,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:04,313 INFO Connection check task start + +2025-09-24 16:37:04,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:04,314 INFO Out dated connection ,size=0 + +2025-09-24 16:37:04,314 INFO Connection check task end + +2025-09-24 16:37:04,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:07,315 INFO Connection check task start + +2025-09-24 16:37:07,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:07,315 INFO Out dated connection ,size=0 + +2025-09-24 16:37:07,315 INFO Connection check task end + +2025-09-24 16:37:07,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:10,315 INFO Connection check task start + +2025-09-24 16:37:10,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:10,316 INFO Out dated connection ,size=0 + +2025-09-24 16:37:10,316 INFO Connection check task end + +2025-09-24 16:37:10,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:13,316 INFO Connection check task start + +2025-09-24 16:37:13,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:13,316 INFO Out dated connection ,size=0 + +2025-09-24 16:37:13,316 INFO Connection check task end + +2025-09-24 16:37:13,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:16,318 INFO Connection check task start + +2025-09-24 16:37:16,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:16,318 INFO Out dated connection ,size=0 + +2025-09-24 16:37:16,318 INFO Connection check task end + +2025-09-24 16:37:16,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:19,319 INFO Connection check task start + +2025-09-24 16:37:19,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:19,319 INFO Out dated connection ,size=0 + +2025-09-24 16:37:19,319 INFO Connection check task end + +2025-09-24 16:37:19,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:22,320 INFO Connection check task start + +2025-09-24 16:37:22,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:22,321 INFO Out dated connection ,size=0 + +2025-09-24 16:37:22,321 INFO Connection check task end + +2025-09-24 16:37:22,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:25,321 INFO Connection check task start + +2025-09-24 16:37:25,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:25,321 INFO Out dated connection ,size=0 + +2025-09-24 16:37:25,321 INFO Connection check task end + +2025-09-24 16:37:25,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:28,322 INFO Connection check task start + +2025-09-24 16:37:28,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:28,322 INFO Out dated connection ,size=0 + +2025-09-24 16:37:28,322 INFO Connection check task end + +2025-09-24 16:37:28,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:31,322 INFO Connection check task start + +2025-09-24 16:37:31,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:31,322 INFO Out dated connection ,size=0 + +2025-09-24 16:37:31,322 INFO Connection check task end + +2025-09-24 16:37:31,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:34,322 INFO Connection check task start + +2025-09-24 16:37:34,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:34,323 INFO Out dated connection ,size=0 + +2025-09-24 16:37:34,323 INFO Connection check task end + +2025-09-24 16:37:34,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:37,323 INFO Connection check task start + +2025-09-24 16:37:37,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:37,325 INFO Out dated connection ,size=0 + +2025-09-24 16:37:37,325 INFO Connection check task end + +2025-09-24 16:37:37,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:40,325 INFO Connection check task start + +2025-09-24 16:37:40,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:40,325 INFO Out dated connection ,size=0 + +2025-09-24 16:37:40,325 INFO Connection check task end + +2025-09-24 16:37:40,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:43,326 INFO Connection check task start + +2025-09-24 16:37:43,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:43,326 INFO Out dated connection ,size=0 + +2025-09-24 16:37:43,327 INFO Connection check task end + +2025-09-24 16:37:43,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:46,327 INFO Connection check task start + +2025-09-24 16:37:46,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:46,327 INFO Out dated connection ,size=0 + +2025-09-24 16:37:46,327 INFO Connection check task end + +2025-09-24 16:37:46,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:49,328 INFO Connection check task start + +2025-09-24 16:37:49,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:49,328 INFO Out dated connection ,size=0 + +2025-09-24 16:37:49,329 INFO Connection check task end + +2025-09-24 16:37:49,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:52,329 INFO Connection check task start + +2025-09-24 16:37:52,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:52,329 INFO Out dated connection ,size=0 + +2025-09-24 16:37:52,329 INFO Connection check task end + +2025-09-24 16:37:52,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:55,330 INFO Connection check task start + +2025-09-24 16:37:55,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:55,330 INFO Out dated connection ,size=0 + +2025-09-24 16:37:55,330 INFO Connection check task end + +2025-09-24 16:37:55,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:37:58,330 INFO Connection check task start + +2025-09-24 16:37:58,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:37:58,331 INFO Out dated connection ,size=0 + +2025-09-24 16:37:58,331 INFO Connection check task end + +2025-09-24 16:37:58,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:01,332 INFO Connection check task start + +2025-09-24 16:38:01,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:01,332 INFO Out dated connection ,size=0 + +2025-09-24 16:38:01,332 INFO Connection check task end + +2025-09-24 16:38:01,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:04,333 INFO Connection check task start + +2025-09-24 16:38:04,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:04,334 INFO Out dated connection ,size=0 + +2025-09-24 16:38:04,334 INFO Connection check task end + +2025-09-24 16:38:04,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:07,334 INFO Connection check task start + +2025-09-24 16:38:07,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:07,335 INFO Out dated connection ,size=0 + +2025-09-24 16:38:07,335 INFO Connection check task end + +2025-09-24 16:38:07,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:10,335 INFO Connection check task start + +2025-09-24 16:38:10,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:10,335 INFO Out dated connection ,size=0 + +2025-09-24 16:38:10,335 INFO Connection check task end + +2025-09-24 16:38:10,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:13,337 INFO Connection check task start + +2025-09-24 16:38:13,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:13,337 INFO Out dated connection ,size=0 + +2025-09-24 16:38:13,337 INFO Connection check task end + +2025-09-24 16:38:13,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:16,338 INFO Connection check task start + +2025-09-24 16:38:16,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:16,338 INFO Out dated connection ,size=0 + +2025-09-24 16:38:16,338 INFO Connection check task end + +2025-09-24 16:38:16,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:19,338 INFO Connection check task start + +2025-09-24 16:38:19,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:19,339 INFO Out dated connection ,size=0 + +2025-09-24 16:38:19,339 INFO Connection check task end + +2025-09-24 16:38:19,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:22,339 INFO Connection check task start + +2025-09-24 16:38:22,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:22,339 INFO Out dated connection ,size=0 + +2025-09-24 16:38:22,339 INFO Connection check task end + +2025-09-24 16:38:22,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:25,339 INFO Connection check task start + +2025-09-24 16:38:25,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:25,340 INFO Out dated connection ,size=0 + +2025-09-24 16:38:25,340 INFO Connection check task end + +2025-09-24 16:38:25,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:28,340 INFO Connection check task start + +2025-09-24 16:38:28,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:28,342 INFO Out dated connection ,size=0 + +2025-09-24 16:38:28,342 INFO Connection check task end + +2025-09-24 16:38:28,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:31,343 INFO Connection check task start + +2025-09-24 16:38:31,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:31,343 INFO Out dated connection ,size=0 + +2025-09-24 16:38:31,343 INFO Connection check task end + +2025-09-24 16:38:31,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:34,344 INFO Connection check task start + +2025-09-24 16:38:34,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:34,344 INFO Out dated connection ,size=0 + +2025-09-24 16:38:34,344 INFO Connection check task end + +2025-09-24 16:38:34,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:37,345 INFO Connection check task start + +2025-09-24 16:38:37,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:37,345 INFO Out dated connection ,size=0 + +2025-09-24 16:38:37,345 INFO Connection check task end + +2025-09-24 16:38:37,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:40,346 INFO Connection check task start + +2025-09-24 16:38:40,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:40,346 INFO Out dated connection ,size=0 + +2025-09-24 16:38:40,346 INFO Connection check task end + +2025-09-24 16:38:40,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:43,347 INFO Connection check task start + +2025-09-24 16:38:43,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:43,347 INFO Out dated connection ,size=0 + +2025-09-24 16:38:43,347 INFO Connection check task end + +2025-09-24 16:38:43,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:46,348 INFO Connection check task start + +2025-09-24 16:38:46,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:46,348 INFO Out dated connection ,size=0 + +2025-09-24 16:38:46,348 INFO Connection check task end + +2025-09-24 16:38:46,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:49,349 INFO Connection check task start + +2025-09-24 16:38:49,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:49,350 INFO Out dated connection ,size=0 + +2025-09-24 16:38:49,350 INFO Connection check task end + +2025-09-24 16:38:49,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:52,351 INFO Connection check task start + +2025-09-24 16:38:52,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:52,351 INFO Out dated connection ,size=0 + +2025-09-24 16:38:52,351 INFO Connection check task end + +2025-09-24 16:38:52,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:55,352 INFO Connection check task start + +2025-09-24 16:38:55,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:55,352 INFO Out dated connection ,size=0 + +2025-09-24 16:38:55,352 INFO Connection check task end + +2025-09-24 16:38:55,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:38:58,353 INFO Connection check task start + +2025-09-24 16:38:58,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:38:58,353 INFO Out dated connection ,size=0 + +2025-09-24 16:38:58,353 INFO Connection check task end + +2025-09-24 16:38:58,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:01,353 INFO Connection check task start + +2025-09-24 16:39:01,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:01,354 INFO Out dated connection ,size=0 + +2025-09-24 16:39:01,354 INFO Connection check task end + +2025-09-24 16:39:01,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:04,354 INFO Connection check task start + +2025-09-24 16:39:04,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:04,354 INFO Out dated connection ,size=0 + +2025-09-24 16:39:04,354 INFO Connection check task end + +2025-09-24 16:39:04,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:07,355 INFO Connection check task start + +2025-09-24 16:39:07,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:07,356 INFO Out dated connection ,size=0 + +2025-09-24 16:39:07,356 INFO Connection check task end + +2025-09-24 16:39:07,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:10,357 INFO Connection check task start + +2025-09-24 16:39:10,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:10,357 INFO Out dated connection ,size=0 + +2025-09-24 16:39:10,357 INFO Connection check task end + +2025-09-24 16:39:10,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:13,358 INFO Connection check task start + +2025-09-24 16:39:13,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:13,359 INFO Out dated connection ,size=0 + +2025-09-24 16:39:13,360 INFO Connection check task end + +2025-09-24 16:39:13,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:16,361 INFO Connection check task start + +2025-09-24 16:39:16,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:16,361 INFO Out dated connection ,size=0 + +2025-09-24 16:39:16,361 INFO Connection check task end + +2025-09-24 16:39:16,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:19,362 INFO Connection check task start + +2025-09-24 16:39:19,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:19,362 INFO Out dated connection ,size=0 + +2025-09-24 16:39:19,362 INFO Connection check task end + +2025-09-24 16:39:19,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:22,363 INFO Connection check task start + +2025-09-24 16:39:22,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:22,363 INFO Out dated connection ,size=0 + +2025-09-24 16:39:22,363 INFO Connection check task end + +2025-09-24 16:39:22,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:25,364 INFO Connection check task start + +2025-09-24 16:39:25,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:25,364 INFO Out dated connection ,size=0 + +2025-09-24 16:39:25,364 INFO Connection check task end + +2025-09-24 16:39:25,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:28,364 INFO Connection check task start + +2025-09-24 16:39:28,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:28,364 INFO Out dated connection ,size=0 + +2025-09-24 16:39:28,364 INFO Connection check task end + +2025-09-24 16:39:28,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:31,365 INFO Connection check task start + +2025-09-24 16:39:31,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:31,365 INFO Out dated connection ,size=0 + +2025-09-24 16:39:31,365 INFO Connection check task end + +2025-09-24 16:39:31,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:34,366 INFO Connection check task start + +2025-09-24 16:39:34,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:34,366 INFO Out dated connection ,size=0 + +2025-09-24 16:39:34,366 INFO Connection check task end + +2025-09-24 16:39:34,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:37,367 INFO Connection check task start + +2025-09-24 16:39:37,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:37,367 INFO Out dated connection ,size=0 + +2025-09-24 16:39:37,367 INFO Connection check task end + +2025-09-24 16:39:37,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:40,368 INFO Connection check task start + +2025-09-24 16:39:40,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:40,369 INFO Out dated connection ,size=0 + +2025-09-24 16:39:40,369 INFO Connection check task end + +2025-09-24 16:39:40,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:43,369 INFO Connection check task start + +2025-09-24 16:39:43,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:43,369 INFO Out dated connection ,size=0 + +2025-09-24 16:39:43,369 INFO Connection check task end + +2025-09-24 16:39:43,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:46,370 INFO Connection check task start + +2025-09-24 16:39:46,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:46,370 INFO Out dated connection ,size=0 + +2025-09-24 16:39:46,370 INFO Connection check task end + +2025-09-24 16:39:46,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:49,370 INFO Connection check task start + +2025-09-24 16:39:49,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:49,371 INFO Out dated connection ,size=0 + +2025-09-24 16:39:49,371 INFO Connection check task end + +2025-09-24 16:39:49,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:52,371 INFO Connection check task start + +2025-09-24 16:39:52,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:52,371 INFO Out dated connection ,size=0 + +2025-09-24 16:39:52,371 INFO Connection check task end + +2025-09-24 16:39:52,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:55,372 INFO Connection check task start + +2025-09-24 16:39:55,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:55,372 INFO Out dated connection ,size=0 + +2025-09-24 16:39:55,372 INFO Connection check task end + +2025-09-24 16:39:55,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:39:58,372 INFO Connection check task start + +2025-09-24 16:39:58,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:39:58,372 INFO Out dated connection ,size=0 + +2025-09-24 16:39:58,372 INFO Connection check task end + +2025-09-24 16:39:58,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:01,372 INFO Connection check task start + +2025-09-24 16:40:01,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:01,394 INFO Out dated connection ,size=0 + +2025-09-24 16:40:01,394 INFO Connection check task end + +2025-09-24 16:40:01,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:04,395 INFO Connection check task start + +2025-09-24 16:40:04,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:04,396 INFO Out dated connection ,size=0 + +2025-09-24 16:40:04,396 INFO Connection check task end + +2025-09-24 16:40:04,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:07,397 INFO Connection check task start + +2025-09-24 16:40:07,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:07,397 INFO Out dated connection ,size=0 + +2025-09-24 16:40:07,397 INFO Connection check task end + +2025-09-24 16:40:07,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:10,398 INFO Connection check task start + +2025-09-24 16:40:10,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:10,398 INFO Out dated connection ,size=0 + +2025-09-24 16:40:10,399 INFO Connection check task end + +2025-09-24 16:40:10,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:13,399 INFO Connection check task start + +2025-09-24 16:40:13,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:13,399 INFO Out dated connection ,size=0 + +2025-09-24 16:40:13,399 INFO Connection check task end + +2025-09-24 16:40:13,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:16,399 INFO Connection check task start + +2025-09-24 16:40:16,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:16,399 INFO Out dated connection ,size=0 + +2025-09-24 16:40:16,399 INFO Connection check task end + +2025-09-24 16:40:16,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:19,400 INFO Connection check task start + +2025-09-24 16:40:19,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:19,400 INFO Out dated connection ,size=0 + +2025-09-24 16:40:19,400 INFO Connection check task end + +2025-09-24 16:40:19,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:22,401 INFO Connection check task start + +2025-09-24 16:40:22,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:22,402 INFO Out dated connection ,size=0 + +2025-09-24 16:40:22,402 INFO Connection check task end + +2025-09-24 16:40:22,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:25,402 INFO Connection check task start + +2025-09-24 16:40:25,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:25,402 INFO Out dated connection ,size=0 + +2025-09-24 16:40:25,402 INFO Connection check task end + +2025-09-24 16:40:25,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:28,403 INFO Connection check task start + +2025-09-24 16:40:28,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:28,403 INFO Out dated connection ,size=0 + +2025-09-24 16:40:28,403 INFO Connection check task end + +2025-09-24 16:40:28,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:31,403 INFO Connection check task start + +2025-09-24 16:40:31,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:31,403 INFO Out dated connection ,size=0 + +2025-09-24 16:40:31,404 INFO Connection check task end + +2025-09-24 16:40:31,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:34,404 INFO Connection check task start + +2025-09-24 16:40:34,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:34,404 INFO Out dated connection ,size=0 + +2025-09-24 16:40:34,404 INFO Connection check task end + +2025-09-24 16:40:34,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:37,405 INFO Connection check task start + +2025-09-24 16:40:37,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:37,405 INFO Out dated connection ,size=0 + +2025-09-24 16:40:37,405 INFO Connection check task end + +2025-09-24 16:40:37,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:40,406 INFO Connection check task start + +2025-09-24 16:40:40,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:40,406 INFO Out dated connection ,size=0 + +2025-09-24 16:40:40,406 INFO Connection check task end + +2025-09-24 16:40:40,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:43,406 INFO Connection check task start + +2025-09-24 16:40:43,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:43,407 INFO Out dated connection ,size=0 + +2025-09-24 16:40:43,407 INFO Connection check task end + +2025-09-24 16:40:43,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:46,407 INFO Connection check task start + +2025-09-24 16:40:46,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:46,408 INFO Out dated connection ,size=0 + +2025-09-24 16:40:46,408 INFO Connection check task end + +2025-09-24 16:40:46,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:49,409 INFO Connection check task start + +2025-09-24 16:40:49,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:49,409 INFO Out dated connection ,size=0 + +2025-09-24 16:40:49,409 INFO Connection check task end + +2025-09-24 16:40:49,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:52,410 INFO Connection check task start + +2025-09-24 16:40:52,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:52,410 INFO Out dated connection ,size=0 + +2025-09-24 16:40:52,410 INFO Connection check task end + +2025-09-24 16:40:52,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:55,411 INFO Connection check task start + +2025-09-24 16:40:55,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:55,411 INFO Out dated connection ,size=0 + +2025-09-24 16:40:55,411 INFO Connection check task end + +2025-09-24 16:40:55,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:40:58,411 INFO Connection check task start + +2025-09-24 16:40:58,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:40:58,412 INFO Out dated connection ,size=0 + +2025-09-24 16:40:58,412 INFO Connection check task end + +2025-09-24 16:40:58,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:01,412 INFO Connection check task start + +2025-09-24 16:41:01,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:01,413 INFO Out dated connection ,size=0 + +2025-09-24 16:41:01,413 INFO Connection check task end + +2025-09-24 16:41:01,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:04,413 INFO Connection check task start + +2025-09-24 16:41:04,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:04,413 INFO Out dated connection ,size=0 + +2025-09-24 16:41:04,413 INFO Connection check task end + +2025-09-24 16:41:04,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:07,414 INFO Connection check task start + +2025-09-24 16:41:07,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:07,415 INFO Out dated connection ,size=0 + +2025-09-24 16:41:07,415 INFO Connection check task end + +2025-09-24 16:41:07,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:10,415 INFO Connection check task start + +2025-09-24 16:41:10,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:10,415 INFO Out dated connection ,size=0 + +2025-09-24 16:41:10,415 INFO Connection check task end + +2025-09-24 16:41:10,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:13,416 INFO Connection check task start + +2025-09-24 16:41:13,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:13,416 INFO Out dated connection ,size=0 + +2025-09-24 16:41:13,416 INFO Connection check task end + +2025-09-24 16:41:13,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:16,417 INFO Connection check task start + +2025-09-24 16:41:16,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:16,418 INFO Out dated connection ,size=0 + +2025-09-24 16:41:16,418 INFO Connection check task end + +2025-09-24 16:41:16,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:19,419 INFO Connection check task start + +2025-09-24 16:41:19,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:19,420 INFO Out dated connection ,size=0 + +2025-09-24 16:41:19,420 INFO Connection check task end + +2025-09-24 16:41:19,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:22,420 INFO Connection check task start + +2025-09-24 16:41:22,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:22,420 INFO Out dated connection ,size=0 + +2025-09-24 16:41:22,420 INFO Connection check task end + +2025-09-24 16:41:22,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:25,421 INFO Connection check task start + +2025-09-24 16:41:25,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:25,422 INFO Out dated connection ,size=0 + +2025-09-24 16:41:25,422 INFO Connection check task end + +2025-09-24 16:41:25,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:28,423 INFO Connection check task start + +2025-09-24 16:41:28,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:28,423 INFO Out dated connection ,size=0 + +2025-09-24 16:41:28,423 INFO Connection check task end + +2025-09-24 16:41:28,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:31,423 INFO Connection check task start + +2025-09-24 16:41:31,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:31,425 INFO Out dated connection ,size=0 + +2025-09-24 16:41:31,425 INFO Connection check task end + +2025-09-24 16:41:31,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:34,425 INFO Connection check task start + +2025-09-24 16:41:34,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:34,425 INFO Out dated connection ,size=0 + +2025-09-24 16:41:34,425 INFO Connection check task end + +2025-09-24 16:41:34,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:37,426 INFO Connection check task start + +2025-09-24 16:41:37,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:37,426 INFO Out dated connection ,size=0 + +2025-09-24 16:41:37,427 INFO Connection check task end + +2025-09-24 16:41:37,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:40,427 INFO Connection check task start + +2025-09-24 16:41:40,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:40,427 INFO Out dated connection ,size=0 + +2025-09-24 16:41:40,427 INFO Connection check task end + +2025-09-24 16:41:40,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:43,428 INFO Connection check task start + +2025-09-24 16:41:43,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:43,428 INFO Out dated connection ,size=0 + +2025-09-24 16:41:43,428 INFO Connection check task end + +2025-09-24 16:41:43,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:46,428 INFO Connection check task start + +2025-09-24 16:41:46,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:46,429 INFO Out dated connection ,size=0 + +2025-09-24 16:41:46,429 INFO Connection check task end + +2025-09-24 16:41:46,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:49,429 INFO Connection check task start + +2025-09-24 16:41:49,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:49,430 INFO Out dated connection ,size=0 + +2025-09-24 16:41:49,430 INFO Connection check task end + +2025-09-24 16:41:49,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:52,430 INFO Connection check task start + +2025-09-24 16:41:52,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:52,430 INFO Out dated connection ,size=0 + +2025-09-24 16:41:52,430 INFO Connection check task end + +2025-09-24 16:41:52,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:55,430 INFO Connection check task start + +2025-09-24 16:41:55,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:55,431 INFO Out dated connection ,size=0 + +2025-09-24 16:41:55,431 INFO Connection check task end + +2025-09-24 16:41:55,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:41:58,432 INFO Connection check task start + +2025-09-24 16:41:58,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:41:58,432 INFO Out dated connection ,size=0 + +2025-09-24 16:41:58,432 INFO Connection check task end + +2025-09-24 16:41:58,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:01,433 INFO Connection check task start + +2025-09-24 16:42:01,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:01,434 INFO Out dated connection ,size=0 + +2025-09-24 16:42:01,434 INFO Connection check task end + +2025-09-24 16:42:01,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:04,434 INFO Connection check task start + +2025-09-24 16:42:04,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:04,434 INFO Out dated connection ,size=0 + +2025-09-24 16:42:04,434 INFO Connection check task end + +2025-09-24 16:42:04,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:07,435 INFO Connection check task start + +2025-09-24 16:42:07,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:07,436 INFO Out dated connection ,size=0 + +2025-09-24 16:42:07,436 INFO Connection check task end + +2025-09-24 16:42:07,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:10,436 INFO Connection check task start + +2025-09-24 16:42:10,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:10,436 INFO Out dated connection ,size=0 + +2025-09-24 16:42:10,436 INFO Connection check task end + +2025-09-24 16:42:10,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:13,437 INFO Connection check task start + +2025-09-24 16:42:13,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:13,437 INFO Out dated connection ,size=0 + +2025-09-24 16:42:13,437 INFO Connection check task end + +2025-09-24 16:42:13,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:16,438 INFO Connection check task start + +2025-09-24 16:42:16,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:16,438 INFO Out dated connection ,size=0 + +2025-09-24 16:42:16,438 INFO Connection check task end + +2025-09-24 16:42:16,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:19,438 INFO Connection check task start + +2025-09-24 16:42:19,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:19,438 INFO Out dated connection ,size=0 + +2025-09-24 16:42:19,439 INFO Connection check task end + +2025-09-24 16:42:19,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:22,439 INFO Connection check task start + +2025-09-24 16:42:22,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:22,439 INFO Out dated connection ,size=0 + +2025-09-24 16:42:22,439 INFO Connection check task end + +2025-09-24 16:42:22,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:25,440 INFO Connection check task start + +2025-09-24 16:42:25,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:25,440 INFO Out dated connection ,size=0 + +2025-09-24 16:42:25,440 INFO Connection check task end + +2025-09-24 16:42:25,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:28,441 INFO Connection check task start + +2025-09-24 16:42:28,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:28,442 INFO Out dated connection ,size=0 + +2025-09-24 16:42:28,442 INFO Connection check task end + +2025-09-24 16:42:28,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:31,442 INFO Connection check task start + +2025-09-24 16:42:31,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:31,442 INFO Out dated connection ,size=0 + +2025-09-24 16:42:31,442 INFO Connection check task end + +2025-09-24 16:42:31,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:34,443 INFO Connection check task start + +2025-09-24 16:42:34,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:34,443 INFO Out dated connection ,size=0 + +2025-09-24 16:42:34,443 INFO Connection check task end + +2025-09-24 16:42:34,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:37,443 INFO Connection check task start + +2025-09-24 16:42:37,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:37,443 INFO Out dated connection ,size=0 + +2025-09-24 16:42:37,443 INFO Connection check task end + +2025-09-24 16:42:37,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:40,444 INFO Connection check task start + +2025-09-24 16:42:40,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:40,444 INFO Out dated connection ,size=0 + +2025-09-24 16:42:40,444 INFO Connection check task end + +2025-09-24 16:42:40,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:43,445 INFO Connection check task start + +2025-09-24 16:42:43,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:43,445 INFO Out dated connection ,size=0 + +2025-09-24 16:42:43,445 INFO Connection check task end + +2025-09-24 16:42:43,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:46,446 INFO Connection check task start + +2025-09-24 16:42:46,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:46,447 INFO Out dated connection ,size=0 + +2025-09-24 16:42:46,447 INFO Connection check task end + +2025-09-24 16:42:46,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:49,448 INFO Connection check task start + +2025-09-24 16:42:49,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:49,448 INFO Out dated connection ,size=0 + +2025-09-24 16:42:49,448 INFO Connection check task end + +2025-09-24 16:42:49,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:52,450 INFO Connection check task start + +2025-09-24 16:42:52,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:52,451 INFO Out dated connection ,size=0 + +2025-09-24 16:42:52,451 INFO Connection check task end + +2025-09-24 16:42:52,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:55,452 INFO Connection check task start + +2025-09-24 16:42:55,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:55,452 INFO Out dated connection ,size=0 + +2025-09-24 16:42:55,452 INFO Connection check task end + +2025-09-24 16:42:55,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:42:58,453 INFO Connection check task start + +2025-09-24 16:42:58,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:42:58,453 INFO Out dated connection ,size=0 + +2025-09-24 16:42:58,453 INFO Connection check task end + +2025-09-24 16:42:58,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:01,454 INFO Connection check task start + +2025-09-24 16:43:01,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:01,454 INFO Out dated connection ,size=0 + +2025-09-24 16:43:01,454 INFO Connection check task end + +2025-09-24 16:43:01,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:04,454 INFO Connection check task start + +2025-09-24 16:43:04,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:04,455 INFO Out dated connection ,size=0 + +2025-09-24 16:43:04,455 INFO Connection check task end + +2025-09-24 16:43:04,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:07,455 INFO Connection check task start + +2025-09-24 16:43:07,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:07,455 INFO Out dated connection ,size=0 + +2025-09-24 16:43:07,455 INFO Connection check task end + +2025-09-24 16:43:07,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:10,456 INFO Connection check task start + +2025-09-24 16:43:10,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:10,457 INFO Out dated connection ,size=0 + +2025-09-24 16:43:10,457 INFO Connection check task end + +2025-09-24 16:43:10,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:13,457 INFO Connection check task start + +2025-09-24 16:43:13,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:13,457 INFO Out dated connection ,size=0 + +2025-09-24 16:43:13,457 INFO Connection check task end + +2025-09-24 16:43:13,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:16,458 INFO Connection check task start + +2025-09-24 16:43:16,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:16,458 INFO Out dated connection ,size=0 + +2025-09-24 16:43:16,458 INFO Connection check task end + +2025-09-24 16:43:16,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:19,459 INFO Connection check task start + +2025-09-24 16:43:19,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:19,459 INFO Out dated connection ,size=0 + +2025-09-24 16:43:19,459 INFO Connection check task end + +2025-09-24 16:43:19,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:22,459 INFO Connection check task start + +2025-09-24 16:43:22,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:22,459 INFO Out dated connection ,size=0 + +2025-09-24 16:43:22,460 INFO Connection check task end + +2025-09-24 16:43:22,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:25,460 INFO Connection check task start + +2025-09-24 16:43:25,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:25,461 INFO Out dated connection ,size=0 + +2025-09-24 16:43:25,461 INFO Connection check task end + +2025-09-24 16:43:25,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:28,461 INFO Connection check task start + +2025-09-24 16:43:28,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:28,461 INFO Out dated connection ,size=0 + +2025-09-24 16:43:28,461 INFO Connection check task end + +2025-09-24 16:43:28,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:31,462 INFO Connection check task start + +2025-09-24 16:43:31,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:31,462 INFO Out dated connection ,size=0 + +2025-09-24 16:43:31,462 INFO Connection check task end + +2025-09-24 16:43:31,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:34,462 INFO Connection check task start + +2025-09-24 16:43:34,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:34,462 INFO Out dated connection ,size=0 + +2025-09-24 16:43:34,463 INFO Connection check task end + +2025-09-24 16:43:34,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:37,463 INFO Connection check task start + +2025-09-24 16:43:37,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:37,463 INFO Out dated connection ,size=0 + +2025-09-24 16:43:37,463 INFO Connection check task end + +2025-09-24 16:43:37,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:40,464 INFO Connection check task start + +2025-09-24 16:43:40,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:40,464 INFO Out dated connection ,size=0 + +2025-09-24 16:43:40,464 INFO Connection check task end + +2025-09-24 16:43:40,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:43,465 INFO Connection check task start + +2025-09-24 16:43:43,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:43,465 INFO Out dated connection ,size=0 + +2025-09-24 16:43:43,465 INFO Connection check task end + +2025-09-24 16:43:43,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:46,466 INFO Connection check task start + +2025-09-24 16:43:46,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:46,466 INFO Out dated connection ,size=0 + +2025-09-24 16:43:46,466 INFO Connection check task end + +2025-09-24 16:43:46,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:49,467 INFO Connection check task start + +2025-09-24 16:43:49,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:49,467 INFO Out dated connection ,size=0 + +2025-09-24 16:43:49,467 INFO Connection check task end + +2025-09-24 16:43:49,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:52,468 INFO Connection check task start + +2025-09-24 16:43:52,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:52,468 INFO Out dated connection ,size=0 + +2025-09-24 16:43:52,468 INFO Connection check task end + +2025-09-24 16:43:52,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:55,470 INFO Connection check task start + +2025-09-24 16:43:55,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:55,470 INFO Out dated connection ,size=0 + +2025-09-24 16:43:55,470 INFO Connection check task end + +2025-09-24 16:43:55,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:43:58,471 INFO Connection check task start + +2025-09-24 16:43:58,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:43:58,471 INFO Out dated connection ,size=0 + +2025-09-24 16:43:58,471 INFO Connection check task end + +2025-09-24 16:43:58,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:01,471 INFO Connection check task start + +2025-09-24 16:44:01,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:01,472 INFO Out dated connection ,size=0 + +2025-09-24 16:44:01,472 INFO Connection check task end + +2025-09-24 16:44:01,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:04,472 INFO Connection check task start + +2025-09-24 16:44:04,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:04,472 INFO Out dated connection ,size=0 + +2025-09-24 16:44:04,472 INFO Connection check task end + +2025-09-24 16:44:04,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:07,473 INFO Connection check task start + +2025-09-24 16:44:07,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:07,474 INFO Out dated connection ,size=0 + +2025-09-24 16:44:07,474 INFO Connection check task end + +2025-09-24 16:44:07,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:10,474 INFO Connection check task start + +2025-09-24 16:44:10,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:10,474 INFO Out dated connection ,size=0 + +2025-09-24 16:44:10,475 INFO Connection check task end + +2025-09-24 16:44:10,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:13,475 INFO Connection check task start + +2025-09-24 16:44:13,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:13,475 INFO Out dated connection ,size=0 + +2025-09-24 16:44:13,475 INFO Connection check task end + +2025-09-24 16:44:13,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:16,475 INFO Connection check task start + +2025-09-24 16:44:16,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:16,476 INFO Out dated connection ,size=0 + +2025-09-24 16:44:16,476 INFO Connection check task end + +2025-09-24 16:44:16,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:19,477 INFO Connection check task start + +2025-09-24 16:44:19,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:19,477 INFO Out dated connection ,size=0 + +2025-09-24 16:44:19,477 INFO Connection check task end + +2025-09-24 16:44:19,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:22,479 INFO Connection check task start + +2025-09-24 16:44:22,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:22,479 INFO Out dated connection ,size=0 + +2025-09-24 16:44:22,479 INFO Connection check task end + +2025-09-24 16:44:22,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:25,480 INFO Connection check task start + +2025-09-24 16:44:25,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:25,480 INFO Out dated connection ,size=0 + +2025-09-24 16:44:25,481 INFO Connection check task end + +2025-09-24 16:44:25,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:28,482 INFO Connection check task start + +2025-09-24 16:44:28,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:28,482 INFO Out dated connection ,size=0 + +2025-09-24 16:44:28,482 INFO Connection check task end + +2025-09-24 16:44:28,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:31,483 INFO Connection check task start + +2025-09-24 16:44:31,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:31,483 INFO Out dated connection ,size=0 + +2025-09-24 16:44:31,483 INFO Connection check task end + +2025-09-24 16:44:31,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:34,484 INFO Connection check task start + +2025-09-24 16:44:34,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:34,484 INFO Out dated connection ,size=0 + +2025-09-24 16:44:34,484 INFO Connection check task end + +2025-09-24 16:44:34,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:37,485 INFO Connection check task start + +2025-09-24 16:44:37,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:37,485 INFO Out dated connection ,size=0 + +2025-09-24 16:44:37,485 INFO Connection check task end + +2025-09-24 16:44:37,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:40,485 INFO Connection check task start + +2025-09-24 16:44:40,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:40,486 INFO Out dated connection ,size=0 + +2025-09-24 16:44:40,486 INFO Connection check task end + +2025-09-24 16:44:40,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:43,486 INFO Connection check task start + +2025-09-24 16:44:43,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:43,487 INFO Out dated connection ,size=0 + +2025-09-24 16:44:43,487 INFO Connection check task end + +2025-09-24 16:44:43,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:46,488 INFO Connection check task start + +2025-09-24 16:44:46,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:46,488 INFO Out dated connection ,size=0 + +2025-09-24 16:44:46,488 INFO Connection check task end + +2025-09-24 16:44:46,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:49,489 INFO Connection check task start + +2025-09-24 16:44:49,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:49,489 INFO Out dated connection ,size=0 + +2025-09-24 16:44:49,489 INFO Connection check task end + +2025-09-24 16:44:49,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:52,489 INFO Connection check task start + +2025-09-24 16:44:52,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:52,489 INFO Out dated connection ,size=0 + +2025-09-24 16:44:52,489 INFO Connection check task end + +2025-09-24 16:44:52,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:55,490 INFO Connection check task start + +2025-09-24 16:44:55,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:55,491 INFO Out dated connection ,size=0 + +2025-09-24 16:44:55,491 INFO Connection check task end + +2025-09-24 16:44:55,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:44:58,492 INFO Connection check task start + +2025-09-24 16:44:58,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:44:58,492 INFO Out dated connection ,size=0 + +2025-09-24 16:44:58,492 INFO Connection check task end + +2025-09-24 16:44:58,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:01,492 INFO Connection check task start + +2025-09-24 16:45:01,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:01,493 INFO Out dated connection ,size=0 + +2025-09-24 16:45:01,493 INFO Connection check task end + +2025-09-24 16:45:01,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:04,494 INFO Connection check task start + +2025-09-24 16:45:04,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:04,495 INFO Out dated connection ,size=0 + +2025-09-24 16:45:04,495 INFO Connection check task end + +2025-09-24 16:45:04,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:07,495 INFO Connection check task start + +2025-09-24 16:45:07,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:07,495 INFO Out dated connection ,size=0 + +2025-09-24 16:45:07,495 INFO Connection check task end + +2025-09-24 16:45:07,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:10,496 INFO Connection check task start + +2025-09-24 16:45:10,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:10,496 INFO Out dated connection ,size=0 + +2025-09-24 16:45:10,496 INFO Connection check task end + +2025-09-24 16:45:10,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:13,497 INFO Connection check task start + +2025-09-24 16:45:13,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:13,497 INFO Out dated connection ,size=0 + +2025-09-24 16:45:13,497 INFO Connection check task end + +2025-09-24 16:45:13,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:16,498 INFO Connection check task start + +2025-09-24 16:45:16,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:16,498 INFO Out dated connection ,size=0 + +2025-09-24 16:45:16,498 INFO Connection check task end + +2025-09-24 16:45:16,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:19,498 INFO Connection check task start + +2025-09-24 16:45:19,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:19,498 INFO Out dated connection ,size=0 + +2025-09-24 16:45:19,499 INFO Connection check task end + +2025-09-24 16:45:19,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:22,499 INFO Connection check task start + +2025-09-24 16:45:22,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:22,500 INFO Out dated connection ,size=0 + +2025-09-24 16:45:22,500 INFO Connection check task end + +2025-09-24 16:45:22,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:25,500 INFO Connection check task start + +2025-09-24 16:45:25,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:25,500 INFO Out dated connection ,size=0 + +2025-09-24 16:45:25,500 INFO Connection check task end + +2025-09-24 16:45:25,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:28,501 INFO Connection check task start + +2025-09-24 16:45:28,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:28,501 INFO Out dated connection ,size=0 + +2025-09-24 16:45:28,501 INFO Connection check task end + +2025-09-24 16:45:28,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:31,502 INFO Connection check task start + +2025-09-24 16:45:31,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:31,502 INFO Out dated connection ,size=0 + +2025-09-24 16:45:31,502 INFO Connection check task end + +2025-09-24 16:45:31,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:34,503 INFO Connection check task start + +2025-09-24 16:45:34,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:34,504 INFO Out dated connection ,size=0 + +2025-09-24 16:45:34,504 INFO Connection check task end + +2025-09-24 16:45:34,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:37,504 INFO Connection check task start + +2025-09-24 16:45:37,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:37,505 INFO Out dated connection ,size=0 + +2025-09-24 16:45:37,505 INFO Connection check task end + +2025-09-24 16:45:37,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:40,506 INFO Connection check task start + +2025-09-24 16:45:40,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:40,506 INFO Out dated connection ,size=0 + +2025-09-24 16:45:40,506 INFO Connection check task end + +2025-09-24 16:45:40,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:43,507 INFO Connection check task start + +2025-09-24 16:45:43,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:43,507 INFO Out dated connection ,size=0 + +2025-09-24 16:45:43,507 INFO Connection check task end + +2025-09-24 16:45:43,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:46,508 INFO Connection check task start + +2025-09-24 16:45:46,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:46,509 INFO Out dated connection ,size=0 + +2025-09-24 16:45:46,509 INFO Connection check task end + +2025-09-24 16:45:46,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:49,509 INFO Connection check task start + +2025-09-24 16:45:49,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:49,510 INFO Out dated connection ,size=0 + +2025-09-24 16:45:49,510 INFO Connection check task end + +2025-09-24 16:45:49,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:52,510 INFO Connection check task start + +2025-09-24 16:45:52,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:52,510 INFO Out dated connection ,size=0 + +2025-09-24 16:45:52,510 INFO Connection check task end + +2025-09-24 16:45:52,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:55,511 INFO Connection check task start + +2025-09-24 16:45:55,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:55,512 INFO Out dated connection ,size=0 + +2025-09-24 16:45:55,512 INFO Connection check task end + +2025-09-24 16:45:55,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:45:58,512 INFO Connection check task start + +2025-09-24 16:45:58,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:45:58,513 INFO Out dated connection ,size=0 + +2025-09-24 16:45:58,513 INFO Connection check task end + +2025-09-24 16:45:58,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:01,513 INFO Connection check task start + +2025-09-24 16:46:01,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:01,514 INFO Out dated connection ,size=0 + +2025-09-24 16:46:01,514 INFO Connection check task end + +2025-09-24 16:46:01,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:04,518 INFO Connection check task start + +2025-09-24 16:46:04,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:04,531 INFO Out dated connection ,size=0 + +2025-09-24 16:46:04,531 INFO Connection check task end + +2025-09-24 16:46:04,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:07,531 INFO Connection check task start + +2025-09-24 16:46:07,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:07,531 INFO Out dated connection ,size=0 + +2025-09-24 16:46:07,531 INFO Connection check task end + +2025-09-24 16:46:07,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:10,532 INFO Connection check task start + +2025-09-24 16:46:10,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:10,532 INFO Out dated connection ,size=0 + +2025-09-24 16:46:10,532 INFO Connection check task end + +2025-09-24 16:46:10,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:13,532 INFO Connection check task start + +2025-09-24 16:46:13,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:13,533 INFO Out dated connection ,size=0 + +2025-09-24 16:46:13,533 INFO Connection check task end + +2025-09-24 16:46:13,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:16,533 INFO Connection check task start + +2025-09-24 16:46:16,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:16,533 INFO Out dated connection ,size=0 + +2025-09-24 16:46:16,533 INFO Connection check task end + +2025-09-24 16:46:16,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:19,533 INFO Connection check task start + +2025-09-24 16:46:19,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:19,534 INFO Out dated connection ,size=0 + +2025-09-24 16:46:19,534 INFO Connection check task end + +2025-09-24 16:46:19,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:22,534 INFO Connection check task start + +2025-09-24 16:46:22,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:22,534 INFO Out dated connection ,size=0 + +2025-09-24 16:46:22,534 INFO Connection check task end + +2025-09-24 16:46:22,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:25,535 INFO Connection check task start + +2025-09-24 16:46:25,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:25,535 INFO Out dated connection ,size=0 + +2025-09-24 16:46:25,535 INFO Connection check task end + +2025-09-24 16:46:25,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:28,536 INFO Connection check task start + +2025-09-24 16:46:28,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:28,536 INFO Out dated connection ,size=0 + +2025-09-24 16:46:28,536 INFO Connection check task end + +2025-09-24 16:46:28,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:31,536 INFO Connection check task start + +2025-09-24 16:46:31,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:31,536 INFO Out dated connection ,size=0 + +2025-09-24 16:46:31,536 INFO Connection check task end + +2025-09-24 16:46:31,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:34,538 INFO Connection check task start + +2025-09-24 16:46:34,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:34,538 INFO Out dated connection ,size=0 + +2025-09-24 16:46:34,538 INFO Connection check task end + +2025-09-24 16:46:34,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:37,540 INFO Connection check task start + +2025-09-24 16:46:37,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:37,540 INFO Out dated connection ,size=0 + +2025-09-24 16:46:37,540 INFO Connection check task end + +2025-09-24 16:46:37,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:40,540 INFO Connection check task start + +2025-09-24 16:46:40,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:40,540 INFO Out dated connection ,size=0 + +2025-09-24 16:46:40,541 INFO Connection check task end + +2025-09-24 16:46:40,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:43,541 INFO Connection check task start + +2025-09-24 16:46:43,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:43,542 INFO Out dated connection ,size=0 + +2025-09-24 16:46:43,542 INFO Connection check task end + +2025-09-24 16:46:43,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:46,543 INFO Connection check task start + +2025-09-24 16:46:46,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:46,543 INFO Out dated connection ,size=0 + +2025-09-24 16:46:46,544 INFO Connection check task end + +2025-09-24 16:46:46,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:49,544 INFO Connection check task start + +2025-09-24 16:46:49,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:49,544 INFO Out dated connection ,size=0 + +2025-09-24 16:46:49,544 INFO Connection check task end + +2025-09-24 16:46:49,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:52,546 INFO Connection check task start + +2025-09-24 16:46:52,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:52,547 INFO Out dated connection ,size=0 + +2025-09-24 16:46:52,547 INFO Connection check task end + +2025-09-24 16:46:52,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:55,547 INFO Connection check task start + +2025-09-24 16:46:55,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:55,547 INFO Out dated connection ,size=0 + +2025-09-24 16:46:55,547 INFO Connection check task end + +2025-09-24 16:46:55,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:46:58,550 INFO Connection check task start + +2025-09-24 16:46:58,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:46:58,550 INFO Out dated connection ,size=0 + +2025-09-24 16:46:58,550 INFO Connection check task end + +2025-09-24 16:46:58,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:01,550 INFO Connection check task start + +2025-09-24 16:47:01,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:01,550 INFO Out dated connection ,size=0 + +2025-09-24 16:47:01,550 INFO Connection check task end + +2025-09-24 16:47:01,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:04,551 INFO Connection check task start + +2025-09-24 16:47:04,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:04,551 INFO Out dated connection ,size=0 + +2025-09-24 16:47:04,552 INFO Connection check task end + +2025-09-24 16:47:04,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:07,552 INFO Connection check task start + +2025-09-24 16:47:07,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:07,552 INFO Out dated connection ,size=0 + +2025-09-24 16:47:07,552 INFO Connection check task end + +2025-09-24 16:47:07,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:10,553 INFO Connection check task start + +2025-09-24 16:47:10,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:10,553 INFO Out dated connection ,size=0 + +2025-09-24 16:47:10,553 INFO Connection check task end + +2025-09-24 16:47:10,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:13,554 INFO Connection check task start + +2025-09-24 16:47:13,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:13,554 INFO Out dated connection ,size=0 + +2025-09-24 16:47:13,554 INFO Connection check task end + +2025-09-24 16:47:13,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:16,555 INFO Connection check task start + +2025-09-24 16:47:16,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:16,555 INFO Out dated connection ,size=0 + +2025-09-24 16:47:16,555 INFO Connection check task end + +2025-09-24 16:47:16,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:19,555 INFO Connection check task start + +2025-09-24 16:47:19,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:19,556 INFO Out dated connection ,size=0 + +2025-09-24 16:47:19,556 INFO Connection check task end + +2025-09-24 16:47:19,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:22,556 INFO Connection check task start + +2025-09-24 16:47:22,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:22,557 INFO Out dated connection ,size=0 + +2025-09-24 16:47:22,557 INFO Connection check task end + +2025-09-24 16:47:22,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:25,557 INFO Connection check task start + +2025-09-24 16:47:25,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:25,558 INFO Out dated connection ,size=0 + +2025-09-24 16:47:25,558 INFO Connection check task end + +2025-09-24 16:47:25,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:28,558 INFO Connection check task start + +2025-09-24 16:47:28,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:28,558 INFO Out dated connection ,size=0 + +2025-09-24 16:47:28,558 INFO Connection check task end + +2025-09-24 16:47:28,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:31,559 INFO Connection check task start + +2025-09-24 16:47:31,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:31,559 INFO Out dated connection ,size=0 + +2025-09-24 16:47:31,559 INFO Connection check task end + +2025-09-24 16:47:31,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:34,561 INFO Connection check task start + +2025-09-24 16:47:34,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:34,561 INFO Out dated connection ,size=0 + +2025-09-24 16:47:34,561 INFO Connection check task end + +2025-09-24 16:47:34,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:37,562 INFO Connection check task start + +2025-09-24 16:47:37,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:37,562 INFO Out dated connection ,size=0 + +2025-09-24 16:47:37,562 INFO Connection check task end + +2025-09-24 16:47:37,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:40,564 INFO Connection check task start + +2025-09-24 16:47:40,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:40,564 INFO Out dated connection ,size=0 + +2025-09-24 16:47:40,564 INFO Connection check task end + +2025-09-24 16:47:40,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:43,566 INFO Connection check task start + +2025-09-24 16:47:43,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:43,566 INFO Out dated connection ,size=0 + +2025-09-24 16:47:43,566 INFO Connection check task end + +2025-09-24 16:47:43,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:46,566 INFO Connection check task start + +2025-09-24 16:47:46,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:46,567 INFO Out dated connection ,size=0 + +2025-09-24 16:47:46,567 INFO Connection check task end + +2025-09-24 16:47:46,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:49,568 INFO Connection check task start + +2025-09-24 16:47:49,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:49,568 INFO Out dated connection ,size=0 + +2025-09-24 16:47:49,568 INFO Connection check task end + +2025-09-24 16:47:49,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:52,568 INFO Connection check task start + +2025-09-24 16:47:52,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:52,568 INFO Out dated connection ,size=0 + +2025-09-24 16:47:52,568 INFO Connection check task end + +2025-09-24 16:47:52,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:55,570 INFO Connection check task start + +2025-09-24 16:47:55,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:55,570 INFO Out dated connection ,size=0 + +2025-09-24 16:47:55,570 INFO Connection check task end + +2025-09-24 16:47:55,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:47:58,571 INFO Connection check task start + +2025-09-24 16:47:58,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:47:58,571 INFO Out dated connection ,size=0 + +2025-09-24 16:47:58,571 INFO Connection check task end + +2025-09-24 16:47:58,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:01,573 INFO Connection check task start + +2025-09-24 16:48:01,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:01,573 INFO Out dated connection ,size=0 + +2025-09-24 16:48:01,573 INFO Connection check task end + +2025-09-24 16:48:01,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:04,573 INFO Connection check task start + +2025-09-24 16:48:04,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:04,573 INFO Out dated connection ,size=0 + +2025-09-24 16:48:04,573 INFO Connection check task end + +2025-09-24 16:48:04,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:07,574 INFO Connection check task start + +2025-09-24 16:48:07,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:07,575 INFO Out dated connection ,size=0 + +2025-09-24 16:48:07,575 INFO Connection check task end + +2025-09-24 16:48:07,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:10,575 INFO Connection check task start + +2025-09-24 16:48:10,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:10,575 INFO Out dated connection ,size=0 + +2025-09-24 16:48:10,575 INFO Connection check task end + +2025-09-24 16:48:10,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:13,576 INFO Connection check task start + +2025-09-24 16:48:13,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:13,576 INFO Out dated connection ,size=0 + +2025-09-24 16:48:13,576 INFO Connection check task end + +2025-09-24 16:48:13,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:16,576 INFO Connection check task start + +2025-09-24 16:48:16,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:16,577 INFO Out dated connection ,size=0 + +2025-09-24 16:48:16,577 INFO Connection check task end + +2025-09-24 16:48:16,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:19,577 INFO Connection check task start + +2025-09-24 16:48:19,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:19,577 INFO Out dated connection ,size=0 + +2025-09-24 16:48:19,577 INFO Connection check task end + +2025-09-24 16:48:19,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:22,578 INFO Connection check task start + +2025-09-24 16:48:22,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:22,578 INFO Out dated connection ,size=0 + +2025-09-24 16:48:22,578 INFO Connection check task end + +2025-09-24 16:48:22,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:25,579 INFO Connection check task start + +2025-09-24 16:48:25,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:25,579 INFO Out dated connection ,size=0 + +2025-09-24 16:48:25,579 INFO Connection check task end + +2025-09-24 16:48:25,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:28,579 INFO Connection check task start + +2025-09-24 16:48:28,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:28,579 INFO Out dated connection ,size=0 + +2025-09-24 16:48:28,579 INFO Connection check task end + +2025-09-24 16:48:28,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:31,581 INFO Connection check task start + +2025-09-24 16:48:31,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:31,581 INFO Out dated connection ,size=0 + +2025-09-24 16:48:31,581 INFO Connection check task end + +2025-09-24 16:48:31,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:34,583 INFO Connection check task start + +2025-09-24 16:48:34,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:34,583 INFO Out dated connection ,size=0 + +2025-09-24 16:48:34,583 INFO Connection check task end + +2025-09-24 16:48:34,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:37,584 INFO Connection check task start + +2025-09-24 16:48:37,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:37,584 INFO Out dated connection ,size=0 + +2025-09-24 16:48:37,584 INFO Connection check task end + +2025-09-24 16:48:37,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:40,585 INFO Connection check task start + +2025-09-24 16:48:40,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:40,585 INFO Out dated connection ,size=0 + +2025-09-24 16:48:40,585 INFO Connection check task end + +2025-09-24 16:48:40,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:43,586 INFO Connection check task start + +2025-09-24 16:48:43,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:43,586 INFO Out dated connection ,size=0 + +2025-09-24 16:48:43,586 INFO Connection check task end + +2025-09-24 16:48:43,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:46,587 INFO Connection check task start + +2025-09-24 16:48:46,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:46,588 INFO Out dated connection ,size=0 + +2025-09-24 16:48:46,588 INFO Connection check task end + +2025-09-24 16:48:46,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:49,590 INFO Connection check task start + +2025-09-24 16:48:49,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:49,590 INFO Out dated connection ,size=0 + +2025-09-24 16:48:49,590 INFO Connection check task end + +2025-09-24 16:48:49,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:52,590 INFO Connection check task start + +2025-09-24 16:48:52,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:52,590 INFO Out dated connection ,size=0 + +2025-09-24 16:48:52,590 INFO Connection check task end + +2025-09-24 16:48:52,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:55,591 INFO Connection check task start + +2025-09-24 16:48:55,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:55,591 INFO Out dated connection ,size=0 + +2025-09-24 16:48:55,591 INFO Connection check task end + +2025-09-24 16:48:55,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:48:58,592 INFO Connection check task start + +2025-09-24 16:48:58,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:48:58,592 INFO Out dated connection ,size=0 + +2025-09-24 16:48:58,592 INFO Connection check task end + +2025-09-24 16:48:58,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:01,594 INFO Connection check task start + +2025-09-24 16:49:01,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:01,594 INFO Out dated connection ,size=0 + +2025-09-24 16:49:01,594 INFO Connection check task end + +2025-09-24 16:49:01,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:04,596 INFO Connection check task start + +2025-09-24 16:49:04,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:04,596 INFO Out dated connection ,size=0 + +2025-09-24 16:49:04,596 INFO Connection check task end + +2025-09-24 16:49:04,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:07,598 INFO Connection check task start + +2025-09-24 16:49:07,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:07,598 INFO Out dated connection ,size=0 + +2025-09-24 16:49:07,598 INFO Connection check task end + +2025-09-24 16:49:07,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:10,599 INFO Connection check task start + +2025-09-24 16:49:10,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:10,599 INFO Out dated connection ,size=0 + +2025-09-24 16:49:10,599 INFO Connection check task end + +2025-09-24 16:49:10,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:13,601 INFO Connection check task start + +2025-09-24 16:49:13,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:13,601 INFO Out dated connection ,size=0 + +2025-09-24 16:49:13,601 INFO Connection check task end + +2025-09-24 16:49:13,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:16,602 INFO Connection check task start + +2025-09-24 16:49:16,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:16,603 INFO Out dated connection ,size=0 + +2025-09-24 16:49:16,603 INFO Connection check task end + +2025-09-24 16:49:16,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:19,604 INFO Connection check task start + +2025-09-24 16:49:19,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:19,604 INFO Out dated connection ,size=0 + +2025-09-24 16:49:19,604 INFO Connection check task end + +2025-09-24 16:49:19,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:22,605 INFO Connection check task start + +2025-09-24 16:49:22,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:22,605 INFO Out dated connection ,size=0 + +2025-09-24 16:49:22,605 INFO Connection check task end + +2025-09-24 16:49:22,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:25,606 INFO Connection check task start + +2025-09-24 16:49:25,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:25,606 INFO Out dated connection ,size=0 + +2025-09-24 16:49:25,606 INFO Connection check task end + +2025-09-24 16:49:25,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:28,608 INFO Connection check task start + +2025-09-24 16:49:28,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:28,608 INFO Out dated connection ,size=0 + +2025-09-24 16:49:28,608 INFO Connection check task end + +2025-09-24 16:49:28,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:31,610 INFO Connection check task start + +2025-09-24 16:49:31,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:31,610 INFO Out dated connection ,size=0 + +2025-09-24 16:49:31,610 INFO Connection check task end + +2025-09-24 16:49:31,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:34,611 INFO Connection check task start + +2025-09-24 16:49:34,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:34,611 INFO Out dated connection ,size=0 + +2025-09-24 16:49:34,611 INFO Connection check task end + +2025-09-24 16:49:34,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:37,611 INFO Connection check task start + +2025-09-24 16:49:37,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:37,612 INFO Out dated connection ,size=0 + +2025-09-24 16:49:37,612 INFO Connection check task end + +2025-09-24 16:49:37,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:40,612 INFO Connection check task start + +2025-09-24 16:49:40,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:40,612 INFO Out dated connection ,size=0 + +2025-09-24 16:49:40,612 INFO Connection check task end + +2025-09-24 16:49:40,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:43,613 INFO Connection check task start + +2025-09-24 16:49:43,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:43,613 INFO Out dated connection ,size=0 + +2025-09-24 16:49:43,613 INFO Connection check task end + +2025-09-24 16:49:43,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:46,613 INFO Connection check task start + +2025-09-24 16:49:46,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:46,614 INFO Out dated connection ,size=0 + +2025-09-24 16:49:46,614 INFO Connection check task end + +2025-09-24 16:49:46,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:49,614 INFO Connection check task start + +2025-09-24 16:49:49,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:49,614 INFO Out dated connection ,size=0 + +2025-09-24 16:49:49,614 INFO Connection check task end + +2025-09-24 16:49:49,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:52,615 INFO Connection check task start + +2025-09-24 16:49:52,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:52,615 INFO Out dated connection ,size=0 + +2025-09-24 16:49:52,615 INFO Connection check task end + +2025-09-24 16:49:52,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:55,616 INFO Connection check task start + +2025-09-24 16:49:55,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:55,616 INFO Out dated connection ,size=0 + +2025-09-24 16:49:55,616 INFO Connection check task end + +2025-09-24 16:49:55,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:49:58,618 INFO Connection check task start + +2025-09-24 16:49:58,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:49:58,618 INFO Out dated connection ,size=0 + +2025-09-24 16:49:58,619 INFO Connection check task end + +2025-09-24 16:49:58,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:01,620 INFO Connection check task start + +2025-09-24 16:50:01,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:01,620 INFO Out dated connection ,size=0 + +2025-09-24 16:50:01,620 INFO Connection check task end + +2025-09-24 16:50:01,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:04,620 INFO Connection check task start + +2025-09-24 16:50:04,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:04,621 INFO Out dated connection ,size=0 + +2025-09-24 16:50:04,621 INFO Connection check task end + +2025-09-24 16:50:04,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:07,622 INFO Connection check task start + +2025-09-24 16:50:07,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:07,622 INFO Out dated connection ,size=0 + +2025-09-24 16:50:07,623 INFO Connection check task end + +2025-09-24 16:50:07,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:10,624 INFO Connection check task start + +2025-09-24 16:50:10,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:10,625 INFO Out dated connection ,size=0 + +2025-09-24 16:50:10,625 INFO Connection check task end + +2025-09-24 16:50:10,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:13,625 INFO Connection check task start + +2025-09-24 16:50:13,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:13,625 INFO Out dated connection ,size=0 + +2025-09-24 16:50:13,625 INFO Connection check task end + +2025-09-24 16:50:13,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:16,625 INFO Connection check task start + +2025-09-24 16:50:16,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:16,625 INFO Out dated connection ,size=0 + +2025-09-24 16:50:16,625 INFO Connection check task end + +2025-09-24 16:50:16,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:19,626 INFO Connection check task start + +2025-09-24 16:50:19,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:19,626 INFO Out dated connection ,size=0 + +2025-09-24 16:50:19,626 INFO Connection check task end + +2025-09-24 16:50:19,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:22,627 INFO Connection check task start + +2025-09-24 16:50:22,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:22,627 INFO Out dated connection ,size=0 + +2025-09-24 16:50:22,627 INFO Connection check task end + +2025-09-24 16:50:22,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:25,629 INFO Connection check task start + +2025-09-24 16:50:25,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:25,629 INFO Out dated connection ,size=0 + +2025-09-24 16:50:25,629 INFO Connection check task end + +2025-09-24 16:50:25,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:28,630 INFO Connection check task start + +2025-09-24 16:50:28,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:28,630 INFO Out dated connection ,size=0 + +2025-09-24 16:50:28,630 INFO Connection check task end + +2025-09-24 16:50:28,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:31,631 INFO Connection check task start + +2025-09-24 16:50:31,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:31,631 INFO Out dated connection ,size=0 + +2025-09-24 16:50:31,631 INFO Connection check task end + +2025-09-24 16:50:31,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:34,632 INFO Connection check task start + +2025-09-24 16:50:34,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:34,632 INFO Out dated connection ,size=0 + +2025-09-24 16:50:34,632 INFO Connection check task end + +2025-09-24 16:50:34,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:37,632 INFO Connection check task start + +2025-09-24 16:50:37,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:37,632 INFO Out dated connection ,size=0 + +2025-09-24 16:50:37,632 INFO Connection check task end + +2025-09-24 16:50:37,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:40,634 INFO Connection check task start + +2025-09-24 16:50:40,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:40,634 INFO Out dated connection ,size=0 + +2025-09-24 16:50:40,634 INFO Connection check task end + +2025-09-24 16:50:40,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:43,634 INFO Connection check task start + +2025-09-24 16:50:43,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:43,634 INFO Out dated connection ,size=0 + +2025-09-24 16:50:43,634 INFO Connection check task end + +2025-09-24 16:50:43,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:46,636 INFO Connection check task start + +2025-09-24 16:50:46,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:46,636 INFO Out dated connection ,size=0 + +2025-09-24 16:50:46,636 INFO Connection check task end + +2025-09-24 16:50:46,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:49,638 INFO Connection check task start + +2025-09-24 16:50:49,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:49,638 INFO Out dated connection ,size=0 + +2025-09-24 16:50:49,638 INFO Connection check task end + +2025-09-24 16:50:49,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:52,640 INFO Connection check task start + +2025-09-24 16:50:52,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:52,640 INFO Out dated connection ,size=0 + +2025-09-24 16:50:52,640 INFO Connection check task end + +2025-09-24 16:50:52,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:55,642 INFO Connection check task start + +2025-09-24 16:50:55,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:55,642 INFO Out dated connection ,size=0 + +2025-09-24 16:50:55,642 INFO Connection check task end + +2025-09-24 16:50:55,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:50:58,643 INFO Connection check task start + +2025-09-24 16:50:58,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:50:58,643 INFO Out dated connection ,size=0 + +2025-09-24 16:50:58,644 INFO Connection check task end + +2025-09-24 16:50:58,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:01,646 INFO Connection check task start + +2025-09-24 16:51:01,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:01,647 INFO Out dated connection ,size=0 + +2025-09-24 16:51:01,647 INFO Connection check task end + +2025-09-24 16:51:01,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:04,647 INFO Connection check task start + +2025-09-24 16:51:04,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:04,648 INFO Out dated connection ,size=0 + +2025-09-24 16:51:04,648 INFO Connection check task end + +2025-09-24 16:51:04,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:07,649 INFO Connection check task start + +2025-09-24 16:51:07,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:07,650 INFO Out dated connection ,size=0 + +2025-09-24 16:51:07,650 INFO Connection check task end + +2025-09-24 16:51:07,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:10,652 INFO Connection check task start + +2025-09-24 16:51:10,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:10,652 INFO Out dated connection ,size=0 + +2025-09-24 16:51:10,652 INFO Connection check task end + +2025-09-24 16:51:10,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:13,652 INFO Connection check task start + +2025-09-24 16:51:13,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:13,653 INFO Out dated connection ,size=0 + +2025-09-24 16:51:13,653 INFO Connection check task end + +2025-09-24 16:51:13,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:16,653 INFO Connection check task start + +2025-09-24 16:51:16,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:16,653 INFO Out dated connection ,size=0 + +2025-09-24 16:51:16,653 INFO Connection check task end + +2025-09-24 16:51:16,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:19,653 INFO Connection check task start + +2025-09-24 16:51:19,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:19,654 INFO Out dated connection ,size=0 + +2025-09-24 16:51:19,654 INFO Connection check task end + +2025-09-24 16:51:19,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:22,656 INFO Connection check task start + +2025-09-24 16:51:22,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:22,656 INFO Out dated connection ,size=0 + +2025-09-24 16:51:22,656 INFO Connection check task end + +2025-09-24 16:51:22,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:25,656 INFO Connection check task start + +2025-09-24 16:51:25,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:25,656 INFO Out dated connection ,size=0 + +2025-09-24 16:51:25,656 INFO Connection check task end + +2025-09-24 16:51:25,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:28,656 INFO Connection check task start + +2025-09-24 16:51:28,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:28,656 INFO Out dated connection ,size=0 + +2025-09-24 16:51:28,656 INFO Connection check task end + +2025-09-24 16:51:28,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:31,658 INFO Connection check task start + +2025-09-24 16:51:31,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:31,658 INFO Out dated connection ,size=0 + +2025-09-24 16:51:31,659 INFO Connection check task end + +2025-09-24 16:51:31,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:34,661 INFO Connection check task start + +2025-09-24 16:51:34,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:34,661 INFO Out dated connection ,size=0 + +2025-09-24 16:51:34,661 INFO Connection check task end + +2025-09-24 16:51:34,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:37,662 INFO Connection check task start + +2025-09-24 16:51:37,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:37,662 INFO Out dated connection ,size=0 + +2025-09-24 16:51:37,663 INFO Connection check task end + +2025-09-24 16:51:37,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:40,665 INFO Connection check task start + +2025-09-24 16:51:40,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:40,665 INFO Out dated connection ,size=0 + +2025-09-24 16:51:40,665 INFO Connection check task end + +2025-09-24 16:51:40,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:43,666 INFO Connection check task start + +2025-09-24 16:51:43,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:43,667 INFO Out dated connection ,size=0 + +2025-09-24 16:51:43,667 INFO Connection check task end + +2025-09-24 16:51:43,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:46,669 INFO Connection check task start + +2025-09-24 16:51:46,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:46,669 INFO Out dated connection ,size=0 + +2025-09-24 16:51:46,669 INFO Connection check task end + +2025-09-24 16:51:46,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:49,669 INFO Connection check task start + +2025-09-24 16:51:49,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:49,670 INFO Out dated connection ,size=0 + +2025-09-24 16:51:49,670 INFO Connection check task end + +2025-09-24 16:51:49,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:52,672 INFO Connection check task start + +2025-09-24 16:51:52,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:52,672 INFO Out dated connection ,size=0 + +2025-09-24 16:51:52,672 INFO Connection check task end + +2025-09-24 16:51:52,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:55,674 INFO Connection check task start + +2025-09-24 16:51:55,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:55,674 INFO Out dated connection ,size=0 + +2025-09-24 16:51:55,674 INFO Connection check task end + +2025-09-24 16:51:55,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:51:58,676 INFO Connection check task start + +2025-09-24 16:51:58,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:51:58,676 INFO Out dated connection ,size=0 + +2025-09-24 16:51:58,676 INFO Connection check task end + +2025-09-24 16:51:58,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:01,676 INFO Connection check task start + +2025-09-24 16:52:01,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:01,677 INFO Out dated connection ,size=0 + +2025-09-24 16:52:01,677 INFO Connection check task end + +2025-09-24 16:52:01,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:04,678 INFO Connection check task start + +2025-09-24 16:52:04,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:04,678 INFO Out dated connection ,size=0 + +2025-09-24 16:52:04,678 INFO Connection check task end + +2025-09-24 16:52:04,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:07,681 INFO Connection check task start + +2025-09-24 16:52:07,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:07,681 INFO Out dated connection ,size=0 + +2025-09-24 16:52:07,681 INFO Connection check task end + +2025-09-24 16:52:07,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:10,681 INFO Connection check task start + +2025-09-24 16:52:10,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:10,681 INFO Out dated connection ,size=0 + +2025-09-24 16:52:10,682 INFO Connection check task end + +2025-09-24 16:52:10,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:13,683 INFO Connection check task start + +2025-09-24 16:52:13,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:13,684 INFO Out dated connection ,size=0 + +2025-09-24 16:52:13,684 INFO Connection check task end + +2025-09-24 16:52:13,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:16,684 INFO Connection check task start + +2025-09-24 16:52:16,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:16,684 INFO Out dated connection ,size=0 + +2025-09-24 16:52:16,684 INFO Connection check task end + +2025-09-24 16:52:16,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:19,685 INFO Connection check task start + +2025-09-24 16:52:19,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:19,685 INFO Out dated connection ,size=0 + +2025-09-24 16:52:19,685 INFO Connection check task end + +2025-09-24 16:52:19,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:22,686 INFO Connection check task start + +2025-09-24 16:52:22,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:22,686 INFO Out dated connection ,size=0 + +2025-09-24 16:52:22,686 INFO Connection check task end + +2025-09-24 16:52:22,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:25,687 INFO Connection check task start + +2025-09-24 16:52:25,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:25,687 INFO Out dated connection ,size=0 + +2025-09-24 16:52:25,687 INFO Connection check task end + +2025-09-24 16:52:25,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:28,689 INFO Connection check task start + +2025-09-24 16:52:28,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:28,689 INFO Out dated connection ,size=0 + +2025-09-24 16:52:28,689 INFO Connection check task end + +2025-09-24 16:52:28,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:31,690 INFO Connection check task start + +2025-09-24 16:52:31,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:31,690 INFO Out dated connection ,size=0 + +2025-09-24 16:52:31,690 INFO Connection check task end + +2025-09-24 16:52:31,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:34,690 INFO Connection check task start + +2025-09-24 16:52:34,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:34,691 INFO Out dated connection ,size=0 + +2025-09-24 16:52:34,691 INFO Connection check task end + +2025-09-24 16:52:34,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:37,693 INFO Connection check task start + +2025-09-24 16:52:37,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:37,693 INFO Out dated connection ,size=0 + +2025-09-24 16:52:37,693 INFO Connection check task end + +2025-09-24 16:52:37,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:40,693 INFO Connection check task start + +2025-09-24 16:52:40,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:40,694 INFO Out dated connection ,size=0 + +2025-09-24 16:52:40,694 INFO Connection check task end + +2025-09-24 16:52:40,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:43,695 INFO Connection check task start + +2025-09-24 16:52:43,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:43,695 INFO Out dated connection ,size=0 + +2025-09-24 16:52:43,695 INFO Connection check task end + +2025-09-24 16:52:43,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:46,697 INFO Connection check task start + +2025-09-24 16:52:46,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:46,698 INFO Out dated connection ,size=0 + +2025-09-24 16:52:46,698 INFO Connection check task end + +2025-09-24 16:52:46,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:49,700 INFO Connection check task start + +2025-09-24 16:52:49,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:49,700 INFO Out dated connection ,size=0 + +2025-09-24 16:52:49,700 INFO Connection check task end + +2025-09-24 16:52:49,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:52,702 INFO Connection check task start + +2025-09-24 16:52:52,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:52,702 INFO Out dated connection ,size=0 + +2025-09-24 16:52:52,702 INFO Connection check task end + +2025-09-24 16:52:52,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:55,703 INFO Connection check task start + +2025-09-24 16:52:55,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:55,703 INFO Out dated connection ,size=0 + +2025-09-24 16:52:55,703 INFO Connection check task end + +2025-09-24 16:52:55,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:52:58,704 INFO Connection check task start + +2025-09-24 16:52:58,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:52:58,704 INFO Out dated connection ,size=0 + +2025-09-24 16:52:58,704 INFO Connection check task end + +2025-09-24 16:52:58,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:01,706 INFO Connection check task start + +2025-09-24 16:53:01,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:01,706 INFO Out dated connection ,size=0 + +2025-09-24 16:53:01,706 INFO Connection check task end + +2025-09-24 16:53:01,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:04,706 INFO Connection check task start + +2025-09-24 16:53:04,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:04,707 INFO Out dated connection ,size=0 + +2025-09-24 16:53:04,707 INFO Connection check task end + +2025-09-24 16:53:04,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:07,708 INFO Connection check task start + +2025-09-24 16:53:07,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:07,709 INFO Out dated connection ,size=0 + +2025-09-24 16:53:07,709 INFO Connection check task end + +2025-09-24 16:53:07,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:10,709 INFO Connection check task start + +2025-09-24 16:53:10,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:10,711 INFO Out dated connection ,size=0 + +2025-09-24 16:53:10,711 INFO Connection check task end + +2025-09-24 16:53:10,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:13,711 INFO Connection check task start + +2025-09-24 16:53:13,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:13,711 INFO Out dated connection ,size=0 + +2025-09-24 16:53:13,711 INFO Connection check task end + +2025-09-24 16:53:13,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:16,713 INFO Connection check task start + +2025-09-24 16:53:16,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:16,714 INFO Out dated connection ,size=0 + +2025-09-24 16:53:16,714 INFO Connection check task end + +2025-09-24 16:53:16,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:19,714 INFO Connection check task start + +2025-09-24 16:53:19,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:19,714 INFO Out dated connection ,size=0 + +2025-09-24 16:53:19,714 INFO Connection check task end + +2025-09-24 16:53:19,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:22,715 INFO Connection check task start + +2025-09-24 16:53:22,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:22,715 INFO Out dated connection ,size=0 + +2025-09-24 16:53:22,715 INFO Connection check task end + +2025-09-24 16:53:22,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:25,715 INFO Connection check task start + +2025-09-24 16:53:25,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:25,716 INFO Out dated connection ,size=0 + +2025-09-24 16:53:25,716 INFO Connection check task end + +2025-09-24 16:53:26,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:28,716 INFO Connection check task start + +2025-09-24 16:53:28,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:28,716 INFO Out dated connection ,size=0 + +2025-09-24 16:53:28,716 INFO Connection check task end + +2025-09-24 16:53:29,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:31,718 INFO Connection check task start + +2025-09-24 16:53:31,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:31,719 INFO Out dated connection ,size=0 + +2025-09-24 16:53:31,719 INFO Connection check task end + +2025-09-24 16:53:32,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:34,719 INFO Connection check task start + +2025-09-24 16:53:34,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:34,719 INFO Out dated connection ,size=0 + +2025-09-24 16:53:34,719 INFO Connection check task end + +2025-09-24 16:53:35,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:37,721 INFO Connection check task start + +2025-09-24 16:53:37,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:37,721 INFO Out dated connection ,size=0 + +2025-09-24 16:53:37,721 INFO Connection check task end + +2025-09-24 16:53:38,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:40,723 INFO Connection check task start + +2025-09-24 16:53:40,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:40,723 INFO Out dated connection ,size=0 + +2025-09-24 16:53:40,723 INFO Connection check task end + +2025-09-24 16:53:41,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:43,725 INFO Connection check task start + +2025-09-24 16:53:43,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:43,725 INFO Out dated connection ,size=0 + +2025-09-24 16:53:43,725 INFO Connection check task end + +2025-09-24 16:53:44,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:46,728 INFO Connection check task start + +2025-09-24 16:53:46,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:46,728 INFO Out dated connection ,size=0 + +2025-09-24 16:53:46,728 INFO Connection check task end + +2025-09-24 16:53:47,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:49,728 INFO Connection check task start + +2025-09-24 16:53:49,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:49,729 INFO Out dated connection ,size=0 + +2025-09-24 16:53:49,729 INFO Connection check task end + +2025-09-24 16:53:50,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:52,729 INFO Connection check task start + +2025-09-24 16:53:52,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:52,729 INFO Out dated connection ,size=0 + +2025-09-24 16:53:52,729 INFO Connection check task end + +2025-09-24 16:53:53,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:55,731 INFO Connection check task start + +2025-09-24 16:53:55,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:55,732 INFO Out dated connection ,size=0 + +2025-09-24 16:53:55,732 INFO Connection check task end + +2025-09-24 16:53:56,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:53:58,732 INFO Connection check task start + +2025-09-24 16:53:58,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:53:58,732 INFO Out dated connection ,size=0 + +2025-09-24 16:53:58,732 INFO Connection check task end + +2025-09-24 16:53:59,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:01,734 INFO Connection check task start + +2025-09-24 16:54:01,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:01,735 INFO Out dated connection ,size=0 + +2025-09-24 16:54:01,735 INFO Connection check task end + +2025-09-24 16:54:02,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:04,735 INFO Connection check task start + +2025-09-24 16:54:04,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:04,736 INFO Out dated connection ,size=0 + +2025-09-24 16:54:04,736 INFO Connection check task end + +2025-09-24 16:54:05,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:07,736 INFO Connection check task start + +2025-09-24 16:54:07,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:07,736 INFO Out dated connection ,size=0 + +2025-09-24 16:54:07,736 INFO Connection check task end + +2025-09-24 16:54:08,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:10,737 INFO Connection check task start + +2025-09-24 16:54:10,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:10,737 INFO Out dated connection ,size=0 + +2025-09-24 16:54:10,737 INFO Connection check task end + +2025-09-24 16:54:11,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:13,738 INFO Connection check task start + +2025-09-24 16:54:13,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:13,739 INFO Out dated connection ,size=0 + +2025-09-24 16:54:13,739 INFO Connection check task end + +2025-09-24 16:54:14,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:16,739 INFO Connection check task start + +2025-09-24 16:54:16,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:16,739 INFO Out dated connection ,size=0 + +2025-09-24 16:54:16,739 INFO Connection check task end + +2025-09-24 16:54:17,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:19,740 INFO Connection check task start + +2025-09-24 16:54:19,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:19,740 INFO Out dated connection ,size=0 + +2025-09-24 16:54:19,740 INFO Connection check task end + +2025-09-24 16:54:20,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:22,740 INFO Connection check task start + +2025-09-24 16:54:22,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:22,740 INFO Out dated connection ,size=0 + +2025-09-24 16:54:22,740 INFO Connection check task end + +2025-09-24 16:54:23,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:25,741 INFO Connection check task start + +2025-09-24 16:54:25,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:25,742 INFO Out dated connection ,size=0 + +2025-09-24 16:54:25,742 INFO Connection check task end + +2025-09-24 16:54:26,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:28,743 INFO Connection check task start + +2025-09-24 16:54:28,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:28,744 INFO Out dated connection ,size=0 + +2025-09-24 16:54:28,744 INFO Connection check task end + +2025-09-24 16:54:29,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:31,745 INFO Connection check task start + +2025-09-24 16:54:31,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:31,746 INFO Out dated connection ,size=0 + +2025-09-24 16:54:31,746 INFO Connection check task end + +2025-09-24 16:54:32,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:34,746 INFO Connection check task start + +2025-09-24 16:54:34,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:34,746 INFO Out dated connection ,size=0 + +2025-09-24 16:54:34,746 INFO Connection check task end + +2025-09-24 16:54:35,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:37,748 INFO Connection check task start + +2025-09-24 16:54:37,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:37,748 INFO Out dated connection ,size=0 + +2025-09-24 16:54:37,748 INFO Connection check task end + +2025-09-24 16:54:38,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:40,749 INFO Connection check task start + +2025-09-24 16:54:40,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:40,750 INFO Out dated connection ,size=0 + +2025-09-24 16:54:40,750 INFO Connection check task end + +2025-09-24 16:54:41,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:43,752 INFO Connection check task start + +2025-09-24 16:54:43,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:43,752 INFO Out dated connection ,size=0 + +2025-09-24 16:54:43,752 INFO Connection check task end + +2025-09-24 16:54:44,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:46,752 INFO Connection check task start + +2025-09-24 16:54:46,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:46,753 INFO Out dated connection ,size=0 + +2025-09-24 16:54:46,753 INFO Connection check task end + +2025-09-24 16:54:47,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:49,753 INFO Connection check task start + +2025-09-24 16:54:49,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:49,753 INFO Out dated connection ,size=0 + +2025-09-24 16:54:49,753 INFO Connection check task end + +2025-09-24 16:54:50,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:52,753 INFO Connection check task start + +2025-09-24 16:54:52,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:52,754 INFO Out dated connection ,size=0 + +2025-09-24 16:54:52,754 INFO Connection check task end + +2025-09-24 16:54:53,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:55,755 INFO Connection check task start + +2025-09-24 16:54:55,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:55,755 INFO Out dated connection ,size=0 + +2025-09-24 16:54:55,755 INFO Connection check task end + +2025-09-24 16:54:56,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:54:58,757 INFO Connection check task start + +2025-09-24 16:54:58,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:54:58,757 INFO Out dated connection ,size=0 + +2025-09-24 16:54:58,758 INFO Connection check task end + +2025-09-24 16:54:59,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:01,759 INFO Connection check task start + +2025-09-24 16:55:01,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:01,760 INFO Out dated connection ,size=0 + +2025-09-24 16:55:01,760 INFO Connection check task end + +2025-09-24 16:55:02,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:04,762 INFO Connection check task start + +2025-09-24 16:55:04,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:04,762 INFO Out dated connection ,size=0 + +2025-09-24 16:55:04,762 INFO Connection check task end + +2025-09-24 16:55:05,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:07,762 INFO Connection check task start + +2025-09-24 16:55:07,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:07,762 INFO Out dated connection ,size=0 + +2025-09-24 16:55:07,762 INFO Connection check task end + +2025-09-24 16:55:08,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:10,762 INFO Connection check task start + +2025-09-24 16:55:10,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:10,763 INFO Out dated connection ,size=0 + +2025-09-24 16:55:10,763 INFO Connection check task end + +2025-09-24 16:55:11,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:13,763 INFO Connection check task start + +2025-09-24 16:55:13,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:13,763 INFO Out dated connection ,size=0 + +2025-09-24 16:55:13,763 INFO Connection check task end + +2025-09-24 16:55:14,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:16,765 INFO Connection check task start + +2025-09-24 16:55:16,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:16,765 INFO Out dated connection ,size=0 + +2025-09-24 16:55:16,765 INFO Connection check task end + +2025-09-24 16:55:17,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:19,767 INFO Connection check task start + +2025-09-24 16:55:19,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:19,767 INFO Out dated connection ,size=0 + +2025-09-24 16:55:19,767 INFO Connection check task end + +2025-09-24 16:55:20,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:22,769 INFO Connection check task start + +2025-09-24 16:55:22,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:22,769 INFO Out dated connection ,size=0 + +2025-09-24 16:55:22,769 INFO Connection check task end + +2025-09-24 16:55:23,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:25,769 INFO Connection check task start + +2025-09-24 16:55:25,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:25,770 INFO Out dated connection ,size=0 + +2025-09-24 16:55:25,770 INFO Connection check task end + +2025-09-24 16:55:26,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:28,770 INFO Connection check task start + +2025-09-24 16:55:28,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:28,770 INFO Out dated connection ,size=0 + +2025-09-24 16:55:28,770 INFO Connection check task end + +2025-09-24 16:55:29,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:31,771 INFO Connection check task start + +2025-09-24 16:55:31,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:31,771 INFO Out dated connection ,size=0 + +2025-09-24 16:55:31,772 INFO Connection check task end + +2025-09-24 16:55:32,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:34,773 INFO Connection check task start + +2025-09-24 16:55:34,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:34,773 INFO Out dated connection ,size=0 + +2025-09-24 16:55:34,773 INFO Connection check task end + +2025-09-24 16:55:35,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:37,774 INFO Connection check task start + +2025-09-24 16:55:37,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:37,774 INFO Out dated connection ,size=0 + +2025-09-24 16:55:37,774 INFO Connection check task end + +2025-09-24 16:55:38,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:40,776 INFO Connection check task start + +2025-09-24 16:55:40,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:40,776 INFO Out dated connection ,size=0 + +2025-09-24 16:55:40,776 INFO Connection check task end + +2025-09-24 16:55:41,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:43,776 INFO Connection check task start + +2025-09-24 16:55:43,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:43,777 INFO Out dated connection ,size=0 + +2025-09-24 16:55:43,777 INFO Connection check task end + +2025-09-24 16:55:44,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:46,778 INFO Connection check task start + +2025-09-24 16:55:46,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:46,778 INFO Out dated connection ,size=0 + +2025-09-24 16:55:46,779 INFO Connection check task end + +2025-09-24 16:55:47,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:49,779 INFO Connection check task start + +2025-09-24 16:55:49,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:49,779 INFO Out dated connection ,size=0 + +2025-09-24 16:55:49,779 INFO Connection check task end + +2025-09-24 16:55:50,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:52,780 INFO Connection check task start + +2025-09-24 16:55:52,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:52,780 INFO Out dated connection ,size=0 + +2025-09-24 16:55:52,780 INFO Connection check task end + +2025-09-24 16:55:53,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:55,780 INFO Connection check task start + +2025-09-24 16:55:55,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:55,781 INFO Out dated connection ,size=0 + +2025-09-24 16:55:55,781 INFO Connection check task end + +2025-09-24 16:55:56,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:55:58,782 INFO Connection check task start + +2025-09-24 16:55:58,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:55:58,783 INFO Out dated connection ,size=0 + +2025-09-24 16:55:58,783 INFO Connection check task end + +2025-09-24 16:55:59,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:01,784 INFO Connection check task start + +2025-09-24 16:56:01,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:01,784 INFO Out dated connection ,size=0 + +2025-09-24 16:56:01,784 INFO Connection check task end + +2025-09-24 16:56:02,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:04,785 INFO Connection check task start + +2025-09-24 16:56:04,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:04,785 INFO Out dated connection ,size=0 + +2025-09-24 16:56:04,785 INFO Connection check task end + +2025-09-24 16:56:05,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:07,786 INFO Connection check task start + +2025-09-24 16:56:07,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:07,786 INFO Out dated connection ,size=0 + +2025-09-24 16:56:07,786 INFO Connection check task end + +2025-09-24 16:56:08,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:10,786 INFO Connection check task start + +2025-09-24 16:56:10,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:10,787 INFO Out dated connection ,size=0 + +2025-09-24 16:56:10,787 INFO Connection check task end + +2025-09-24 16:56:11,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:13,788 INFO Connection check task start + +2025-09-24 16:56:13,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:13,788 INFO Out dated connection ,size=0 + +2025-09-24 16:56:13,788 INFO Connection check task end + +2025-09-24 16:56:14,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:16,791 INFO Connection check task start + +2025-09-24 16:56:16,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:16,791 INFO Out dated connection ,size=0 + +2025-09-24 16:56:16,791 INFO Connection check task end + +2025-09-24 16:56:17,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:19,793 INFO Connection check task start + +2025-09-24 16:56:19,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:19,793 INFO Out dated connection ,size=0 + +2025-09-24 16:56:19,793 INFO Connection check task end + +2025-09-24 16:56:20,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:22,795 INFO Connection check task start + +2025-09-24 16:56:22,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:22,796 INFO Out dated connection ,size=0 + +2025-09-24 16:56:22,796 INFO Connection check task end + +2025-09-24 16:56:23,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:25,798 INFO Connection check task start + +2025-09-24 16:56:25,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:25,798 INFO Out dated connection ,size=0 + +2025-09-24 16:56:25,798 INFO Connection check task end + +2025-09-24 16:56:26,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:28,799 INFO Connection check task start + +2025-09-24 16:56:28,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:28,799 INFO Out dated connection ,size=0 + +2025-09-24 16:56:28,799 INFO Connection check task end + +2025-09-24 16:56:29,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:31,799 INFO Connection check task start + +2025-09-24 16:56:31,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:31,799 INFO Out dated connection ,size=0 + +2025-09-24 16:56:31,799 INFO Connection check task end + +2025-09-24 16:56:32,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:34,800 INFO Connection check task start + +2025-09-24 16:56:34,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:34,800 INFO Out dated connection ,size=0 + +2025-09-24 16:56:34,800 INFO Connection check task end + +2025-09-24 16:56:35,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:37,802 INFO Connection check task start + +2025-09-24 16:56:37,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:37,802 INFO Out dated connection ,size=0 + +2025-09-24 16:56:37,802 INFO Connection check task end + +2025-09-24 16:56:38,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:40,804 INFO Connection check task start + +2025-09-24 16:56:40,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:40,804 INFO Out dated connection ,size=0 + +2025-09-24 16:56:40,804 INFO Connection check task end + +2025-09-24 16:56:41,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:43,804 INFO Connection check task start + +2025-09-24 16:56:43,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:43,805 INFO Out dated connection ,size=0 + +2025-09-24 16:56:43,805 INFO Connection check task end + +2025-09-24 16:56:44,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:46,805 INFO Connection check task start + +2025-09-24 16:56:46,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:46,805 INFO Out dated connection ,size=0 + +2025-09-24 16:56:46,805 INFO Connection check task end + +2025-09-24 16:56:47,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:49,806 INFO Connection check task start + +2025-09-24 16:56:49,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:49,806 INFO Out dated connection ,size=0 + +2025-09-24 16:56:49,806 INFO Connection check task end + +2025-09-24 16:56:50,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:52,806 INFO Connection check task start + +2025-09-24 16:56:52,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:52,806 INFO Out dated connection ,size=0 + +2025-09-24 16:56:52,806 INFO Connection check task end + +2025-09-24 16:56:53,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:55,807 INFO Connection check task start + +2025-09-24 16:56:55,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:55,807 INFO Out dated connection ,size=0 + +2025-09-24 16:56:55,807 INFO Connection check task end + +2025-09-24 16:56:56,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:56:58,808 INFO Connection check task start + +2025-09-24 16:56:58,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:56:58,808 INFO Out dated connection ,size=0 + +2025-09-24 16:56:58,809 INFO Connection check task end + +2025-09-24 16:56:59,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:01,810 INFO Connection check task start + +2025-09-24 16:57:01,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:01,810 INFO Out dated connection ,size=0 + +2025-09-24 16:57:01,810 INFO Connection check task end + +2025-09-24 16:57:02,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:04,810 INFO Connection check task start + +2025-09-24 16:57:04,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:04,811 INFO Out dated connection ,size=0 + +2025-09-24 16:57:04,811 INFO Connection check task end + +2025-09-24 16:57:05,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:07,811 INFO Connection check task start + +2025-09-24 16:57:07,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:07,811 INFO Out dated connection ,size=0 + +2025-09-24 16:57:07,811 INFO Connection check task end + +2025-09-24 16:57:08,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:10,812 INFO Connection check task start + +2025-09-24 16:57:10,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:10,813 INFO Out dated connection ,size=0 + +2025-09-24 16:57:10,813 INFO Connection check task end + +2025-09-24 16:57:11,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:13,813 INFO Connection check task start + +2025-09-24 16:57:13,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:13,813 INFO Out dated connection ,size=0 + +2025-09-24 16:57:13,813 INFO Connection check task end + +2025-09-24 16:57:14,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:16,814 INFO Connection check task start + +2025-09-24 16:57:16,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:16,814 INFO Out dated connection ,size=0 + +2025-09-24 16:57:16,814 INFO Connection check task end + +2025-09-24 16:57:17,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:19,816 INFO Connection check task start + +2025-09-24 16:57:19,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:19,816 INFO Out dated connection ,size=0 + +2025-09-24 16:57:19,816 INFO Connection check task end + +2025-09-24 16:57:20,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:22,816 INFO Connection check task start + +2025-09-24 16:57:22,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:22,817 INFO Out dated connection ,size=0 + +2025-09-24 16:57:22,817 INFO Connection check task end + +2025-09-24 16:57:23,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:25,819 INFO Connection check task start + +2025-09-24 16:57:25,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:25,819 INFO Out dated connection ,size=0 + +2025-09-24 16:57:25,819 INFO Connection check task end + +2025-09-24 16:57:26,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:28,821 INFO Connection check task start + +2025-09-24 16:57:28,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:28,821 INFO Out dated connection ,size=0 + +2025-09-24 16:57:28,821 INFO Connection check task end + +2025-09-24 16:57:29,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:31,823 INFO Connection check task start + +2025-09-24 16:57:31,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:31,823 INFO Out dated connection ,size=0 + +2025-09-24 16:57:31,823 INFO Connection check task end + +2025-09-24 16:57:32,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:34,825 INFO Connection check task start + +2025-09-24 16:57:34,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:34,825 INFO Out dated connection ,size=0 + +2025-09-24 16:57:34,825 INFO Connection check task end + +2025-09-24 16:57:35,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:37,826 INFO Connection check task start + +2025-09-24 16:57:37,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:37,826 INFO Out dated connection ,size=0 + +2025-09-24 16:57:37,826 INFO Connection check task end + +2025-09-24 16:57:38,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:40,828 INFO Connection check task start + +2025-09-24 16:57:40,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:40,828 INFO Out dated connection ,size=0 + +2025-09-24 16:57:40,828 INFO Connection check task end + +2025-09-24 16:57:41,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:43,830 INFO Connection check task start + +2025-09-24 16:57:43,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:43,831 INFO Out dated connection ,size=0 + +2025-09-24 16:57:43,831 INFO Connection check task end + +2025-09-24 16:57:44,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:46,831 INFO Connection check task start + +2025-09-24 16:57:46,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:46,831 INFO Out dated connection ,size=0 + +2025-09-24 16:57:46,831 INFO Connection check task end + +2025-09-24 16:57:47,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:49,832 INFO Connection check task start + +2025-09-24 16:57:49,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:49,832 INFO Out dated connection ,size=0 + +2025-09-24 16:57:49,832 INFO Connection check task end + +2025-09-24 16:57:50,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:52,832 INFO Connection check task start + +2025-09-24 16:57:52,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:52,833 INFO Out dated connection ,size=0 + +2025-09-24 16:57:52,833 INFO Connection check task end + +2025-09-24 16:57:53,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:55,834 INFO Connection check task start + +2025-09-24 16:57:55,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:55,835 INFO Out dated connection ,size=0 + +2025-09-24 16:57:55,835 INFO Connection check task end + +2025-09-24 16:57:56,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:57:58,835 INFO Connection check task start + +2025-09-24 16:57:58,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:57:58,835 INFO Out dated connection ,size=0 + +2025-09-24 16:57:58,835 INFO Connection check task end + +2025-09-24 16:57:59,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:01,836 INFO Connection check task start + +2025-09-24 16:58:01,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:01,836 INFO Out dated connection ,size=0 + +2025-09-24 16:58:01,836 INFO Connection check task end + +2025-09-24 16:58:02,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:04,838 INFO Connection check task start + +2025-09-24 16:58:04,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:04,838 INFO Out dated connection ,size=0 + +2025-09-24 16:58:04,838 INFO Connection check task end + +2025-09-24 16:58:05,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:07,840 INFO Connection check task start + +2025-09-24 16:58:07,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:07,840 INFO Out dated connection ,size=0 + +2025-09-24 16:58:07,840 INFO Connection check task end + +2025-09-24 16:58:08,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:10,842 INFO Connection check task start + +2025-09-24 16:58:10,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:10,843 INFO Out dated connection ,size=0 + +2025-09-24 16:58:10,843 INFO Connection check task end + +2025-09-24 16:58:11,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:13,843 INFO Connection check task start + +2025-09-24 16:58:13,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:13,844 INFO Out dated connection ,size=0 + +2025-09-24 16:58:13,844 INFO Connection check task end + +2025-09-24 16:58:14,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:16,844 INFO Connection check task start + +2025-09-24 16:58:16,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:16,845 INFO Out dated connection ,size=0 + +2025-09-24 16:58:16,845 INFO Connection check task end + +2025-09-24 16:58:17,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:19,847 INFO Connection check task start + +2025-09-24 16:58:19,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:19,847 INFO Out dated connection ,size=0 + +2025-09-24 16:58:19,847 INFO Connection check task end + +2025-09-24 16:58:20,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:22,847 INFO Connection check task start + +2025-09-24 16:58:22,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:22,847 INFO Out dated connection ,size=0 + +2025-09-24 16:58:22,847 INFO Connection check task end + +2025-09-24 16:58:23,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:25,848 INFO Connection check task start + +2025-09-24 16:58:25,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:25,848 INFO Out dated connection ,size=0 + +2025-09-24 16:58:25,848 INFO Connection check task end + +2025-09-24 16:58:26,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:28,848 INFO Connection check task start + +2025-09-24 16:58:28,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:28,849 INFO Out dated connection ,size=0 + +2025-09-24 16:58:28,849 INFO Connection check task end + +2025-09-24 16:58:29,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:31,849 INFO Connection check task start + +2025-09-24 16:58:31,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:31,849 INFO Out dated connection ,size=0 + +2025-09-24 16:58:31,849 INFO Connection check task end + +2025-09-24 16:58:32,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:34,850 INFO Connection check task start + +2025-09-24 16:58:34,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:34,850 INFO Out dated connection ,size=0 + +2025-09-24 16:58:34,850 INFO Connection check task end + +2025-09-24 16:58:35,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:37,852 INFO Connection check task start + +2025-09-24 16:58:37,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:37,852 INFO Out dated connection ,size=0 + +2025-09-24 16:58:37,852 INFO Connection check task end + +2025-09-24 16:58:38,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:40,853 INFO Connection check task start + +2025-09-24 16:58:40,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:40,853 INFO Out dated connection ,size=0 + +2025-09-24 16:58:40,853 INFO Connection check task end + +2025-09-24 16:58:41,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:43,854 INFO Connection check task start + +2025-09-24 16:58:43,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:43,854 INFO Out dated connection ,size=0 + +2025-09-24 16:58:43,854 INFO Connection check task end + +2025-09-24 16:58:44,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:46,855 INFO Connection check task start + +2025-09-24 16:58:46,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:46,855 INFO Out dated connection ,size=0 + +2025-09-24 16:58:46,855 INFO Connection check task end + +2025-09-24 16:58:47,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:49,856 INFO Connection check task start + +2025-09-24 16:58:49,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:49,856 INFO Out dated connection ,size=0 + +2025-09-24 16:58:49,856 INFO Connection check task end + +2025-09-24 16:58:50,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:52,856 INFO Connection check task start + +2025-09-24 16:58:52,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:52,857 INFO Out dated connection ,size=0 + +2025-09-24 16:58:52,857 INFO Connection check task end + +2025-09-24 16:58:53,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:55,857 INFO Connection check task start + +2025-09-24 16:58:55,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:55,857 INFO Out dated connection ,size=0 + +2025-09-24 16:58:55,857 INFO Connection check task end + +2025-09-24 16:58:56,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:58:58,858 INFO Connection check task start + +2025-09-24 16:58:58,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:58:58,858 INFO Out dated connection ,size=0 + +2025-09-24 16:58:58,858 INFO Connection check task end + +2025-09-24 16:58:59,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:01,859 INFO Connection check task start + +2025-09-24 16:59:01,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:01,859 INFO Out dated connection ,size=0 + +2025-09-24 16:59:01,859 INFO Connection check task end + +2025-09-24 16:59:02,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:04,860 INFO Connection check task start + +2025-09-24 16:59:04,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:04,860 INFO Out dated connection ,size=0 + +2025-09-24 16:59:04,860 INFO Connection check task end + +2025-09-24 16:59:05,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:07,861 INFO Connection check task start + +2025-09-24 16:59:07,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:07,861 INFO Out dated connection ,size=0 + +2025-09-24 16:59:07,861 INFO Connection check task end + +2025-09-24 16:59:08,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:10,861 INFO Connection check task start + +2025-09-24 16:59:10,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:10,861 INFO Out dated connection ,size=0 + +2025-09-24 16:59:10,861 INFO Connection check task end + +2025-09-24 16:59:11,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:13,863 INFO Connection check task start + +2025-09-24 16:59:13,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:13,863 INFO Out dated connection ,size=0 + +2025-09-24 16:59:13,863 INFO Connection check task end + +2025-09-24 16:59:14,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:16,863 INFO Connection check task start + +2025-09-24 16:59:16,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:16,864 INFO Out dated connection ,size=0 + +2025-09-24 16:59:16,864 INFO Connection check task end + +2025-09-24 16:59:17,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:19,864 INFO Connection check task start + +2025-09-24 16:59:19,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:19,864 INFO Out dated connection ,size=0 + +2025-09-24 16:59:19,864 INFO Connection check task end + +2025-09-24 16:59:20,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:22,865 INFO Connection check task start + +2025-09-24 16:59:22,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:22,865 INFO Out dated connection ,size=0 + +2025-09-24 16:59:22,865 INFO Connection check task end + +2025-09-24 16:59:23,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:25,865 INFO Connection check task start + +2025-09-24 16:59:25,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:25,866 INFO Out dated connection ,size=0 + +2025-09-24 16:59:25,866 INFO Connection check task end + +2025-09-24 16:59:26,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:28,867 INFO Connection check task start + +2025-09-24 16:59:28,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:28,867 INFO Out dated connection ,size=0 + +2025-09-24 16:59:28,867 INFO Connection check task end + +2025-09-24 16:59:29,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:31,867 INFO Connection check task start + +2025-09-24 16:59:31,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:31,867 INFO Out dated connection ,size=0 + +2025-09-24 16:59:31,867 INFO Connection check task end + +2025-09-24 16:59:32,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:34,868 INFO Connection check task start + +2025-09-24 16:59:34,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:34,868 INFO Out dated connection ,size=0 + +2025-09-24 16:59:34,868 INFO Connection check task end + +2025-09-24 16:59:35,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:37,868 INFO Connection check task start + +2025-09-24 16:59:37,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:37,868 INFO Out dated connection ,size=0 + +2025-09-24 16:59:37,868 INFO Connection check task end + +2025-09-24 16:59:38,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:40,869 INFO Connection check task start + +2025-09-24 16:59:40,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:40,869 INFO Out dated connection ,size=0 + +2025-09-24 16:59:40,869 INFO Connection check task end + +2025-09-24 16:59:41,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:43,869 INFO Connection check task start + +2025-09-24 16:59:43,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:43,870 INFO Out dated connection ,size=0 + +2025-09-24 16:59:43,870 INFO Connection check task end + +2025-09-24 16:59:44,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:46,870 INFO Connection check task start + +2025-09-24 16:59:46,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:46,870 INFO Out dated connection ,size=0 + +2025-09-24 16:59:46,870 INFO Connection check task end + +2025-09-24 16:59:47,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:49,873 INFO Connection check task start + +2025-09-24 16:59:49,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:49,873 INFO Out dated connection ,size=0 + +2025-09-24 16:59:49,873 INFO Connection check task end + +2025-09-24 16:59:50,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:52,873 INFO Connection check task start + +2025-09-24 16:59:52,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:52,873 INFO Out dated connection ,size=0 + +2025-09-24 16:59:52,873 INFO Connection check task end + +2025-09-24 16:59:53,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:55,874 INFO Connection check task start + +2025-09-24 16:59:55,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:55,874 INFO Out dated connection ,size=0 + +2025-09-24 16:59:55,874 INFO Connection check task end + +2025-09-24 16:59:56,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 16:59:58,874 INFO Connection check task start + +2025-09-24 16:59:58,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 16:59:58,874 INFO Out dated connection ,size=0 + +2025-09-24 16:59:58,874 INFO Connection check task end + +2025-09-24 16:59:59,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:01,875 INFO Connection check task start + +2025-09-24 17:00:01,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:01,875 INFO Out dated connection ,size=0 + +2025-09-24 17:00:01,875 INFO Connection check task end + +2025-09-24 17:00:02,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:04,875 INFO Connection check task start + +2025-09-24 17:00:04,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:04,875 INFO Out dated connection ,size=0 + +2025-09-24 17:00:04,875 INFO Connection check task end + +2025-09-24 17:00:05,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:07,877 INFO Connection check task start + +2025-09-24 17:00:07,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:07,877 INFO Out dated connection ,size=0 + +2025-09-24 17:00:07,877 INFO Connection check task end + +2025-09-24 17:00:08,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:10,879 INFO Connection check task start + +2025-09-24 17:00:10,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:10,879 INFO Out dated connection ,size=0 + +2025-09-24 17:00:10,879 INFO Connection check task end + +2025-09-24 17:00:11,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:13,880 INFO Connection check task start + +2025-09-24 17:00:13,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:13,880 INFO Out dated connection ,size=0 + +2025-09-24 17:00:13,880 INFO Connection check task end + +2025-09-24 17:00:14,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:16,881 INFO Connection check task start + +2025-09-24 17:00:16,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:16,881 INFO Out dated connection ,size=0 + +2025-09-24 17:00:16,881 INFO Connection check task end + +2025-09-24 17:00:17,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:19,883 INFO Connection check task start + +2025-09-24 17:00:19,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:19,883 INFO Out dated connection ,size=0 + +2025-09-24 17:00:19,883 INFO Connection check task end + +2025-09-24 17:00:20,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:22,883 INFO Connection check task start + +2025-09-24 17:00:22,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:22,884 INFO Out dated connection ,size=0 + +2025-09-24 17:00:22,884 INFO Connection check task end + +2025-09-24 17:00:23,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:25,885 INFO Connection check task start + +2025-09-24 17:00:25,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:25,885 INFO Out dated connection ,size=0 + +2025-09-24 17:00:25,885 INFO Connection check task end + +2025-09-24 17:00:26,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:28,886 INFO Connection check task start + +2025-09-24 17:00:28,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:28,886 INFO Out dated connection ,size=0 + +2025-09-24 17:00:28,886 INFO Connection check task end + +2025-09-24 17:00:29,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:31,886 INFO Connection check task start + +2025-09-24 17:00:31,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:31,887 INFO Out dated connection ,size=0 + +2025-09-24 17:00:31,887 INFO Connection check task end + +2025-09-24 17:00:32,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:34,887 INFO Connection check task start + +2025-09-24 17:00:34,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:34,887 INFO Out dated connection ,size=0 + +2025-09-24 17:00:34,887 INFO Connection check task end + +2025-09-24 17:00:35,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:37,889 INFO Connection check task start + +2025-09-24 17:00:37,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:37,889 INFO Out dated connection ,size=0 + +2025-09-24 17:00:37,889 INFO Connection check task end + +2025-09-24 17:00:38,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:40,892 INFO Connection check task start + +2025-09-24 17:00:40,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:40,892 INFO Out dated connection ,size=0 + +2025-09-24 17:00:40,892 INFO Connection check task end + +2025-09-24 17:00:41,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:43,893 INFO Connection check task start + +2025-09-24 17:00:43,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:43,893 INFO Out dated connection ,size=0 + +2025-09-24 17:00:43,893 INFO Connection check task end + +2025-09-24 17:00:44,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:46,895 INFO Connection check task start + +2025-09-24 17:00:46,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:46,896 INFO Out dated connection ,size=0 + +2025-09-24 17:00:46,896 INFO Connection check task end + +2025-09-24 17:00:47,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:49,898 INFO Connection check task start + +2025-09-24 17:00:49,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:49,898 INFO Out dated connection ,size=0 + +2025-09-24 17:00:49,898 INFO Connection check task end + +2025-09-24 17:00:50,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:52,900 INFO Connection check task start + +2025-09-24 17:00:52,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:52,900 INFO Out dated connection ,size=0 + +2025-09-24 17:00:52,900 INFO Connection check task end + +2025-09-24 17:00:53,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:55,901 INFO Connection check task start + +2025-09-24 17:00:55,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:55,901 INFO Out dated connection ,size=0 + +2025-09-24 17:00:55,901 INFO Connection check task end + +2025-09-24 17:00:56,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:00:58,901 INFO Connection check task start + +2025-09-24 17:00:58,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:00:58,902 INFO Out dated connection ,size=0 + +2025-09-24 17:00:58,902 INFO Connection check task end + +2025-09-24 17:00:59,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:01,903 INFO Connection check task start + +2025-09-24 17:01:01,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:01,903 INFO Out dated connection ,size=0 + +2025-09-24 17:01:01,903 INFO Connection check task end + +2025-09-24 17:01:02,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:04,903 INFO Connection check task start + +2025-09-24 17:01:04,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:04,903 INFO Out dated connection ,size=0 + +2025-09-24 17:01:04,903 INFO Connection check task end + +2025-09-24 17:01:05,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:07,904 INFO Connection check task start + +2025-09-24 17:01:07,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:07,904 INFO Out dated connection ,size=0 + +2025-09-24 17:01:07,904 INFO Connection check task end + +2025-09-24 17:01:08,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:10,904 INFO Connection check task start + +2025-09-24 17:01:10,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:10,904 INFO Out dated connection ,size=0 + +2025-09-24 17:01:10,904 INFO Connection check task end + +2025-09-24 17:01:11,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:13,905 INFO Connection check task start + +2025-09-24 17:01:13,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:13,905 INFO Out dated connection ,size=0 + +2025-09-24 17:01:13,905 INFO Connection check task end + +2025-09-24 17:01:14,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:16,907 INFO Connection check task start + +2025-09-24 17:01:16,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:16,908 INFO Out dated connection ,size=0 + +2025-09-24 17:01:16,908 INFO Connection check task end + +2025-09-24 17:01:17,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:19,909 INFO Connection check task start + +2025-09-24 17:01:19,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:19,909 INFO Out dated connection ,size=0 + +2025-09-24 17:01:19,909 INFO Connection check task end + +2025-09-24 17:01:20,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:22,909 INFO Connection check task start + +2025-09-24 17:01:22,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:22,909 INFO Out dated connection ,size=0 + +2025-09-24 17:01:22,909 INFO Connection check task end + +2025-09-24 17:01:23,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:25,910 INFO Connection check task start + +2025-09-24 17:01:25,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:25,910 INFO Out dated connection ,size=0 + +2025-09-24 17:01:25,910 INFO Connection check task end + +2025-09-24 17:01:26,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:28,912 INFO Connection check task start + +2025-09-24 17:01:28,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:28,913 INFO Out dated connection ,size=0 + +2025-09-24 17:01:28,913 INFO Connection check task end + +2025-09-24 17:01:29,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:31,913 INFO Connection check task start + +2025-09-24 17:01:31,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:31,914 INFO Out dated connection ,size=0 + +2025-09-24 17:01:31,914 INFO Connection check task end + +2025-09-24 17:01:32,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:34,916 INFO Connection check task start + +2025-09-24 17:01:34,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:34,916 INFO Out dated connection ,size=0 + +2025-09-24 17:01:34,916 INFO Connection check task end + +2025-09-24 17:01:35,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:37,916 INFO Connection check task start + +2025-09-24 17:01:37,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:37,916 INFO Out dated connection ,size=0 + +2025-09-24 17:01:37,916 INFO Connection check task end + +2025-09-24 17:01:38,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:40,917 INFO Connection check task start + +2025-09-24 17:01:40,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:40,917 INFO Out dated connection ,size=0 + +2025-09-24 17:01:40,917 INFO Connection check task end + +2025-09-24 17:01:41,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:43,918 INFO Connection check task start + +2025-09-24 17:01:43,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:43,918 INFO Out dated connection ,size=0 + +2025-09-24 17:01:43,918 INFO Connection check task end + +2025-09-24 17:01:44,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:46,918 INFO Connection check task start + +2025-09-24 17:01:46,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:46,918 INFO Out dated connection ,size=0 + +2025-09-24 17:01:46,919 INFO Connection check task end + +2025-09-24 17:01:47,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:49,920 INFO Connection check task start + +2025-09-24 17:01:49,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:49,920 INFO Out dated connection ,size=0 + +2025-09-24 17:01:49,920 INFO Connection check task end + +2025-09-24 17:01:50,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:52,921 INFO Connection check task start + +2025-09-24 17:01:52,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:52,921 INFO Out dated connection ,size=0 + +2025-09-24 17:01:52,921 INFO Connection check task end + +2025-09-24 17:01:53,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:55,922 INFO Connection check task start + +2025-09-24 17:01:55,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:55,922 INFO Out dated connection ,size=0 + +2025-09-24 17:01:55,922 INFO Connection check task end + +2025-09-24 17:01:56,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:01:58,922 INFO Connection check task start + +2025-09-24 17:01:58,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:01:58,922 INFO Out dated connection ,size=0 + +2025-09-24 17:01:58,923 INFO Connection check task end + +2025-09-24 17:01:59,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:01,923 INFO Connection check task start + +2025-09-24 17:02:01,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:01,923 INFO Out dated connection ,size=0 + +2025-09-24 17:02:01,923 INFO Connection check task end + +2025-09-24 17:02:02,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:04,924 INFO Connection check task start + +2025-09-24 17:02:04,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:04,924 INFO Out dated connection ,size=0 + +2025-09-24 17:02:04,924 INFO Connection check task end + +2025-09-24 17:02:05,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:07,924 INFO Connection check task start + +2025-09-24 17:02:07,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:07,925 INFO Out dated connection ,size=0 + +2025-09-24 17:02:07,925 INFO Connection check task end + +2025-09-24 17:02:08,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:10,925 INFO Connection check task start + +2025-09-24 17:02:10,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:10,925 INFO Out dated connection ,size=0 + +2025-09-24 17:02:10,925 INFO Connection check task end + +2025-09-24 17:02:11,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:13,926 INFO Connection check task start + +2025-09-24 17:02:13,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:13,926 INFO Out dated connection ,size=0 + +2025-09-24 17:02:13,926 INFO Connection check task end + +2025-09-24 17:02:14,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:16,926 INFO Connection check task start + +2025-09-24 17:02:16,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:16,926 INFO Out dated connection ,size=0 + +2025-09-24 17:02:16,927 INFO Connection check task end + +2025-09-24 17:02:17,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:19,927 INFO Connection check task start + +2025-09-24 17:02:19,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:19,928 INFO Out dated connection ,size=0 + +2025-09-24 17:02:19,928 INFO Connection check task end + +2025-09-24 17:02:20,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:22,929 INFO Connection check task start + +2025-09-24 17:02:22,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:22,929 INFO Out dated connection ,size=0 + +2025-09-24 17:02:22,929 INFO Connection check task end + +2025-09-24 17:02:23,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:25,930 INFO Connection check task start + +2025-09-24 17:02:25,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:25,930 INFO Out dated connection ,size=0 + +2025-09-24 17:02:25,930 INFO Connection check task end + +2025-09-24 17:02:26,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:28,932 INFO Connection check task start + +2025-09-24 17:02:28,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:28,932 INFO Out dated connection ,size=0 + +2025-09-24 17:02:28,932 INFO Connection check task end + +2025-09-24 17:02:29,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:31,933 INFO Connection check task start + +2025-09-24 17:02:31,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:31,933 INFO Out dated connection ,size=0 + +2025-09-24 17:02:31,933 INFO Connection check task end + +2025-09-24 17:02:32,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:34,934 INFO Connection check task start + +2025-09-24 17:02:34,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:34,934 INFO Out dated connection ,size=0 + +2025-09-24 17:02:34,934 INFO Connection check task end + +2025-09-24 17:02:35,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:37,935 INFO Connection check task start + +2025-09-24 17:02:37,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:37,935 INFO Out dated connection ,size=0 + +2025-09-24 17:02:37,935 INFO Connection check task end + +2025-09-24 17:02:38,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:40,935 INFO Connection check task start + +2025-09-24 17:02:40,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:40,935 INFO Out dated connection ,size=0 + +2025-09-24 17:02:40,935 INFO Connection check task end + +2025-09-24 17:02:41,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:43,936 INFO Connection check task start + +2025-09-24 17:02:43,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:43,936 INFO Out dated connection ,size=0 + +2025-09-24 17:02:43,936 INFO Connection check task end + +2025-09-24 17:02:44,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:46,938 INFO Connection check task start + +2025-09-24 17:02:46,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:46,938 INFO Out dated connection ,size=0 + +2025-09-24 17:02:46,938 INFO Connection check task end + +2025-09-24 17:02:47,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:49,939 INFO Connection check task start + +2025-09-24 17:02:49,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:49,939 INFO Out dated connection ,size=0 + +2025-09-24 17:02:49,939 INFO Connection check task end + +2025-09-24 17:02:50,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:52,940 INFO Connection check task start + +2025-09-24 17:02:52,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:52,940 INFO Out dated connection ,size=0 + +2025-09-24 17:02:52,940 INFO Connection check task end + +2025-09-24 17:02:53,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:55,940 INFO Connection check task start + +2025-09-24 17:02:55,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:55,940 INFO Out dated connection ,size=0 + +2025-09-24 17:02:55,940 INFO Connection check task end + +2025-09-24 17:02:56,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:02:58,941 INFO Connection check task start + +2025-09-24 17:02:58,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:02:58,941 INFO Out dated connection ,size=0 + +2025-09-24 17:02:58,941 INFO Connection check task end + +2025-09-24 17:02:59,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:01,941 INFO Connection check task start + +2025-09-24 17:03:01,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:01,942 INFO Out dated connection ,size=0 + +2025-09-24 17:03:01,942 INFO Connection check task end + +2025-09-24 17:03:02,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:04,942 INFO Connection check task start + +2025-09-24 17:03:04,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:04,942 INFO Out dated connection ,size=0 + +2025-09-24 17:03:04,943 INFO Connection check task end + +2025-09-24 17:03:05,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:07,943 INFO Connection check task start + +2025-09-24 17:03:07,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:07,944 INFO Out dated connection ,size=0 + +2025-09-24 17:03:07,944 INFO Connection check task end + +2025-09-24 17:03:08,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:10,944 INFO Connection check task start + +2025-09-24 17:03:10,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:10,944 INFO Out dated connection ,size=0 + +2025-09-24 17:03:10,944 INFO Connection check task end + +2025-09-24 17:03:11,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:13,946 INFO Connection check task start + +2025-09-24 17:03:13,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:13,946 INFO Out dated connection ,size=0 + +2025-09-24 17:03:13,946 INFO Connection check task end + +2025-09-24 17:03:14,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:16,947 INFO Connection check task start + +2025-09-24 17:03:16,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:16,947 INFO Out dated connection ,size=0 + +2025-09-24 17:03:16,947 INFO Connection check task end + +2025-09-24 17:03:17,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:19,949 INFO Connection check task start + +2025-09-24 17:03:19,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:19,949 INFO Out dated connection ,size=0 + +2025-09-24 17:03:19,949 INFO Connection check task end + +2025-09-24 17:03:20,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:22,949 INFO Connection check task start + +2025-09-24 17:03:22,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:22,950 INFO Out dated connection ,size=0 + +2025-09-24 17:03:22,950 INFO Connection check task end + +2025-09-24 17:03:23,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:25,951 INFO Connection check task start + +2025-09-24 17:03:25,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:25,952 INFO Out dated connection ,size=0 + +2025-09-24 17:03:25,952 INFO Connection check task end + +2025-09-24 17:03:26,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:28,952 INFO Connection check task start + +2025-09-24 17:03:28,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:28,952 INFO Out dated connection ,size=0 + +2025-09-24 17:03:28,952 INFO Connection check task end + +2025-09-24 17:03:29,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:31,952 INFO Connection check task start + +2025-09-24 17:03:31,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:31,953 INFO Out dated connection ,size=0 + +2025-09-24 17:03:31,953 INFO Connection check task end + +2025-09-24 17:03:32,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:34,953 INFO Connection check task start + +2025-09-24 17:03:34,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:34,953 INFO Out dated connection ,size=0 + +2025-09-24 17:03:34,953 INFO Connection check task end + +2025-09-24 17:03:35,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:37,953 INFO Connection check task start + +2025-09-24 17:03:37,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:37,953 INFO Out dated connection ,size=0 + +2025-09-24 17:03:37,954 INFO Connection check task end + +2025-09-24 17:03:38,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:40,954 INFO Connection check task start + +2025-09-24 17:03:40,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:40,955 INFO Out dated connection ,size=0 + +2025-09-24 17:03:40,955 INFO Connection check task end + +2025-09-24 17:03:41,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:43,955 INFO Connection check task start + +2025-09-24 17:03:43,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:43,955 INFO Out dated connection ,size=0 + +2025-09-24 17:03:43,955 INFO Connection check task end + +2025-09-24 17:03:44,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:46,955 INFO Connection check task start + +2025-09-24 17:03:46,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:46,956 INFO Out dated connection ,size=0 + +2025-09-24 17:03:46,956 INFO Connection check task end + +2025-09-24 17:03:47,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:49,958 INFO Connection check task start + +2025-09-24 17:03:49,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:49,958 INFO Out dated connection ,size=0 + +2025-09-24 17:03:49,958 INFO Connection check task end + +2025-09-24 17:03:50,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:52,959 INFO Connection check task start + +2025-09-24 17:03:52,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:52,959 INFO Out dated connection ,size=0 + +2025-09-24 17:03:52,959 INFO Connection check task end + +2025-09-24 17:03:53,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:55,961 INFO Connection check task start + +2025-09-24 17:03:55,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:55,962 INFO Out dated connection ,size=0 + +2025-09-24 17:03:55,962 INFO Connection check task end + +2025-09-24 17:03:56,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:03:58,962 INFO Connection check task start + +2025-09-24 17:03:58,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:03:58,962 INFO Out dated connection ,size=0 + +2025-09-24 17:03:58,962 INFO Connection check task end + +2025-09-24 17:03:59,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:01,964 INFO Connection check task start + +2025-09-24 17:04:01,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:01,964 INFO Out dated connection ,size=0 + +2025-09-24 17:04:01,964 INFO Connection check task end + +2025-09-24 17:04:02,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:04,964 INFO Connection check task start + +2025-09-24 17:04:04,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:04,964 INFO Out dated connection ,size=0 + +2025-09-24 17:04:04,964 INFO Connection check task end + +2025-09-24 17:04:05,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:07,964 INFO Connection check task start + +2025-09-24 17:04:07,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:07,965 INFO Out dated connection ,size=0 + +2025-09-24 17:04:07,965 INFO Connection check task end + +2025-09-24 17:04:08,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:10,966 INFO Connection check task start + +2025-09-24 17:04:10,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:10,967 INFO Out dated connection ,size=0 + +2025-09-24 17:04:10,967 INFO Connection check task end + +2025-09-24 17:04:11,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:13,969 INFO Connection check task start + +2025-09-24 17:04:13,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:13,969 INFO Out dated connection ,size=0 + +2025-09-24 17:04:13,969 INFO Connection check task end + +2025-09-24 17:04:14,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:16,970 INFO Connection check task start + +2025-09-24 17:04:16,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:16,970 INFO Out dated connection ,size=0 + +2025-09-24 17:04:16,970 INFO Connection check task end + +2025-09-24 17:04:17,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:19,972 INFO Connection check task start + +2025-09-24 17:04:19,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:19,972 INFO Out dated connection ,size=0 + +2025-09-24 17:04:19,972 INFO Connection check task end + +2025-09-24 17:04:20,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:22,973 INFO Connection check task start + +2025-09-24 17:04:22,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:22,974 INFO Out dated connection ,size=0 + +2025-09-24 17:04:22,974 INFO Connection check task end + +2025-09-24 17:04:23,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:25,974 INFO Connection check task start + +2025-09-24 17:04:25,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:25,975 INFO Out dated connection ,size=0 + +2025-09-24 17:04:25,975 INFO Connection check task end + +2025-09-24 17:04:26,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:28,976 INFO Connection check task start + +2025-09-24 17:04:28,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:28,976 INFO Out dated connection ,size=0 + +2025-09-24 17:04:28,976 INFO Connection check task end + +2025-09-24 17:04:29,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:31,976 INFO Connection check task start + +2025-09-24 17:04:31,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:31,976 INFO Out dated connection ,size=0 + +2025-09-24 17:04:31,976 INFO Connection check task end + +2025-09-24 17:04:32,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:34,977 INFO Connection check task start + +2025-09-24 17:04:34,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:34,977 INFO Out dated connection ,size=0 + +2025-09-24 17:04:34,977 INFO Connection check task end + +2025-09-24 17:04:35,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:37,978 INFO Connection check task start + +2025-09-24 17:04:37,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:37,978 INFO Out dated connection ,size=0 + +2025-09-24 17:04:37,978 INFO Connection check task end + +2025-09-24 17:04:38,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:40,978 INFO Connection check task start + +2025-09-24 17:04:40,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:40,978 INFO Out dated connection ,size=0 + +2025-09-24 17:04:40,978 INFO Connection check task end + +2025-09-24 17:04:41,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:43,979 INFO Connection check task start + +2025-09-24 17:04:43,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:43,979 INFO Out dated connection ,size=0 + +2025-09-24 17:04:43,979 INFO Connection check task end + +2025-09-24 17:04:44,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:46,980 INFO Connection check task start + +2025-09-24 17:04:46,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:46,980 INFO Out dated connection ,size=0 + +2025-09-24 17:04:46,980 INFO Connection check task end + +2025-09-24 17:04:47,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:49,980 INFO Connection check task start + +2025-09-24 17:04:49,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:49,980 INFO Out dated connection ,size=0 + +2025-09-24 17:04:49,980 INFO Connection check task end + +2025-09-24 17:04:50,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:52,981 INFO Connection check task start + +2025-09-24 17:04:52,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:52,981 INFO Out dated connection ,size=0 + +2025-09-24 17:04:52,981 INFO Connection check task end + +2025-09-24 17:04:53,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:55,983 INFO Connection check task start + +2025-09-24 17:04:55,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:55,983 INFO Out dated connection ,size=0 + +2025-09-24 17:04:55,983 INFO Connection check task end + +2025-09-24 17:04:56,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:04:58,983 INFO Connection check task start + +2025-09-24 17:04:58,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:04:58,983 INFO Out dated connection ,size=0 + +2025-09-24 17:04:58,983 INFO Connection check task end + +2025-09-24 17:04:59,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:01,984 INFO Connection check task start + +2025-09-24 17:05:01,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:01,984 INFO Out dated connection ,size=0 + +2025-09-24 17:05:01,984 INFO Connection check task end + +2025-09-24 17:05:02,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:04,985 INFO Connection check task start + +2025-09-24 17:05:04,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:04,985 INFO Out dated connection ,size=0 + +2025-09-24 17:05:04,985 INFO Connection check task end + +2025-09-24 17:05:05,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:07,985 INFO Connection check task start + +2025-09-24 17:05:07,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:07,986 INFO Out dated connection ,size=0 + +2025-09-24 17:05:07,986 INFO Connection check task end + +2025-09-24 17:05:08,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:10,986 INFO Connection check task start + +2025-09-24 17:05:10,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:10,986 INFO Out dated connection ,size=0 + +2025-09-24 17:05:10,986 INFO Connection check task end + +2025-09-24 17:05:11,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:13,987 INFO Connection check task start + +2025-09-24 17:05:13,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:13,988 INFO Out dated connection ,size=0 + +2025-09-24 17:05:13,988 INFO Connection check task end + +2025-09-24 17:05:14,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:16,988 INFO Connection check task start + +2025-09-24 17:05:16,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:16,988 INFO Out dated connection ,size=0 + +2025-09-24 17:05:16,988 INFO Connection check task end + +2025-09-24 17:05:17,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:19,989 INFO Connection check task start + +2025-09-24 17:05:19,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:19,989 INFO Out dated connection ,size=0 + +2025-09-24 17:05:19,989 INFO Connection check task end + +2025-09-24 17:05:20,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:22,989 INFO Connection check task start + +2025-09-24 17:05:22,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:22,990 INFO Out dated connection ,size=0 + +2025-09-24 17:05:22,990 INFO Connection check task end + +2025-09-24 17:05:23,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:25,991 INFO Connection check task start + +2025-09-24 17:05:25,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:25,991 INFO Out dated connection ,size=0 + +2025-09-24 17:05:25,992 INFO Connection check task end + +2025-09-24 17:05:26,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:28,992 INFO Connection check task start + +2025-09-24 17:05:28,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:28,992 INFO Out dated connection ,size=0 + +2025-09-24 17:05:28,992 INFO Connection check task end + +2025-09-24 17:05:29,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:31,992 INFO Connection check task start + +2025-09-24 17:05:31,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:31,993 INFO Out dated connection ,size=0 + +2025-09-24 17:05:31,993 INFO Connection check task end + +2025-09-24 17:05:32,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:34,993 INFO Connection check task start + +2025-09-24 17:05:34,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:34,993 INFO Out dated connection ,size=0 + +2025-09-24 17:05:34,993 INFO Connection check task end + +2025-09-24 17:05:35,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:37,994 INFO Connection check task start + +2025-09-24 17:05:37,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:37,994 INFO Out dated connection ,size=0 + +2025-09-24 17:05:37,994 INFO Connection check task end + +2025-09-24 17:05:38,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:40,995 INFO Connection check task start + +2025-09-24 17:05:40,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:40,995 INFO Out dated connection ,size=0 + +2025-09-24 17:05:40,995 INFO Connection check task end + +2025-09-24 17:05:41,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:43,997 INFO Connection check task start + +2025-09-24 17:05:43,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:43,997 INFO Out dated connection ,size=0 + +2025-09-24 17:05:43,997 INFO Connection check task end + +2025-09-24 17:05:44,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:46,998 INFO Connection check task start + +2025-09-24 17:05:46,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:46,998 INFO Out dated connection ,size=0 + +2025-09-24 17:05:46,998 INFO Connection check task end + +2025-09-24 17:05:47,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:49,999 INFO Connection check task start + +2025-09-24 17:05:49,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:49,999 INFO Out dated connection ,size=0 + +2025-09-24 17:05:49,999 INFO Connection check task end + +2025-09-24 17:05:50,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:53,001 INFO Connection check task start + +2025-09-24 17:05:53,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:53,001 INFO Out dated connection ,size=0 + +2025-09-24 17:05:53,001 INFO Connection check task end + +2025-09-24 17:05:53,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:56,002 INFO Connection check task start + +2025-09-24 17:05:56,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:56,002 INFO Out dated connection ,size=0 + +2025-09-24 17:05:56,003 INFO Connection check task end + +2025-09-24 17:05:56,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:05:59,003 INFO Connection check task start + +2025-09-24 17:05:59,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:05:59,003 INFO Out dated connection ,size=0 + +2025-09-24 17:05:59,003 INFO Connection check task end + +2025-09-24 17:05:59,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:02,005 INFO Connection check task start + +2025-09-24 17:06:02,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:02,006 INFO Out dated connection ,size=0 + +2025-09-24 17:06:02,006 INFO Connection check task end + +2025-09-24 17:06:02,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:05,006 INFO Connection check task start + +2025-09-24 17:06:05,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:05,006 INFO Out dated connection ,size=0 + +2025-09-24 17:06:05,006 INFO Connection check task end + +2025-09-24 17:06:05,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:08,008 INFO Connection check task start + +2025-09-24 17:06:08,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:08,008 INFO Out dated connection ,size=0 + +2025-09-24 17:06:08,008 INFO Connection check task end + +2025-09-24 17:06:08,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:11,009 INFO Connection check task start + +2025-09-24 17:06:11,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:11,009 INFO Out dated connection ,size=0 + +2025-09-24 17:06:11,009 INFO Connection check task end + +2025-09-24 17:06:11,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:14,010 INFO Connection check task start + +2025-09-24 17:06:14,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:14,011 INFO Out dated connection ,size=0 + +2025-09-24 17:06:14,011 INFO Connection check task end + +2025-09-24 17:06:14,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:17,011 INFO Connection check task start + +2025-09-24 17:06:17,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:17,011 INFO Out dated connection ,size=0 + +2025-09-24 17:06:17,011 INFO Connection check task end + +2025-09-24 17:06:17,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:20,011 INFO Connection check task start + +2025-09-24 17:06:20,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:20,012 INFO Out dated connection ,size=0 + +2025-09-24 17:06:20,012 INFO Connection check task end + +2025-09-24 17:06:20,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:23,012 INFO Connection check task start + +2025-09-24 17:06:23,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:23,012 INFO Out dated connection ,size=0 + +2025-09-24 17:06:23,012 INFO Connection check task end + +2025-09-24 17:06:23,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:26,012 INFO Connection check task start + +2025-09-24 17:06:26,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:26,013 INFO Out dated connection ,size=0 + +2025-09-24 17:06:26,013 INFO Connection check task end + +2025-09-24 17:06:26,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:29,014 INFO Connection check task start + +2025-09-24 17:06:29,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:29,015 INFO Out dated connection ,size=0 + +2025-09-24 17:06:29,015 INFO Connection check task end + +2025-09-24 17:06:29,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:32,016 INFO Connection check task start + +2025-09-24 17:06:32,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:32,016 INFO Out dated connection ,size=0 + +2025-09-24 17:06:32,016 INFO Connection check task end + +2025-09-24 17:06:32,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:35,018 INFO Connection check task start + +2025-09-24 17:06:35,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:35,018 INFO Out dated connection ,size=0 + +2025-09-24 17:06:35,018 INFO Connection check task end + +2025-09-24 17:06:35,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:38,018 INFO Connection check task start + +2025-09-24 17:06:38,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:38,019 INFO Out dated connection ,size=0 + +2025-09-24 17:06:38,019 INFO Connection check task end + +2025-09-24 17:06:38,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:41,019 INFO Connection check task start + +2025-09-24 17:06:41,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:41,019 INFO Out dated connection ,size=0 + +2025-09-24 17:06:41,019 INFO Connection check task end + +2025-09-24 17:06:41,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:44,020 INFO Connection check task start + +2025-09-24 17:06:44,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:44,020 INFO Out dated connection ,size=0 + +2025-09-24 17:06:44,020 INFO Connection check task end + +2025-09-24 17:06:44,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:47,020 INFO Connection check task start + +2025-09-24 17:06:47,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:47,020 INFO Out dated connection ,size=0 + +2025-09-24 17:06:47,020 INFO Connection check task end + +2025-09-24 17:06:47,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:50,021 INFO Connection check task start + +2025-09-24 17:06:50,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:50,021 INFO Out dated connection ,size=0 + +2025-09-24 17:06:50,021 INFO Connection check task end + +2025-09-24 17:06:50,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:53,022 INFO Connection check task start + +2025-09-24 17:06:53,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:53,022 INFO Out dated connection ,size=0 + +2025-09-24 17:06:53,022 INFO Connection check task end + +2025-09-24 17:06:53,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:56,022 INFO Connection check task start + +2025-09-24 17:06:56,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:56,023 INFO Out dated connection ,size=0 + +2025-09-24 17:06:56,023 INFO Connection check task end + +2025-09-24 17:06:56,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:06:59,023 INFO Connection check task start + +2025-09-24 17:06:59,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:06:59,023 INFO Out dated connection ,size=0 + +2025-09-24 17:06:59,023 INFO Connection check task end + +2025-09-24 17:06:59,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:02,023 INFO Connection check task start + +2025-09-24 17:07:02,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:02,023 INFO Out dated connection ,size=0 + +2025-09-24 17:07:02,024 INFO Connection check task end + +2025-09-24 17:07:02,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:05,024 INFO Connection check task start + +2025-09-24 17:07:05,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:05,024 INFO Out dated connection ,size=0 + +2025-09-24 17:07:05,024 INFO Connection check task end + +2025-09-24 17:07:05,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:08,024 INFO Connection check task start + +2025-09-24 17:07:08,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:08,025 INFO Out dated connection ,size=0 + +2025-09-24 17:07:08,025 INFO Connection check task end + +2025-09-24 17:07:08,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:11,027 INFO Connection check task start + +2025-09-24 17:07:11,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:11,028 INFO Out dated connection ,size=0 + +2025-09-24 17:07:11,028 INFO Connection check task end + +2025-09-24 17:07:11,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:14,029 INFO Connection check task start + +2025-09-24 17:07:14,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:14,029 INFO Out dated connection ,size=0 + +2025-09-24 17:07:14,029 INFO Connection check task end + +2025-09-24 17:07:14,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:17,029 INFO Connection check task start + +2025-09-24 17:07:17,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:17,029 INFO Out dated connection ,size=0 + +2025-09-24 17:07:17,029 INFO Connection check task end + +2025-09-24 17:07:17,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:20,030 INFO Connection check task start + +2025-09-24 17:07:20,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:20,030 INFO Out dated connection ,size=0 + +2025-09-24 17:07:20,030 INFO Connection check task end + +2025-09-24 17:07:20,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:23,031 INFO Connection check task start + +2025-09-24 17:07:23,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:23,031 INFO Out dated connection ,size=0 + +2025-09-24 17:07:23,031 INFO Connection check task end + +2025-09-24 17:07:23,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:26,032 INFO Connection check task start + +2025-09-24 17:07:26,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:26,032 INFO Out dated connection ,size=0 + +2025-09-24 17:07:26,032 INFO Connection check task end + +2025-09-24 17:07:26,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:29,032 INFO Connection check task start + +2025-09-24 17:07:29,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:29,032 INFO Out dated connection ,size=0 + +2025-09-24 17:07:29,032 INFO Connection check task end + +2025-09-24 17:07:29,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:32,032 INFO Connection check task start + +2025-09-24 17:07:32,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:32,033 INFO Out dated connection ,size=0 + +2025-09-24 17:07:32,033 INFO Connection check task end + +2025-09-24 17:07:32,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:35,034 INFO Connection check task start + +2025-09-24 17:07:35,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:35,034 INFO Out dated connection ,size=0 + +2025-09-24 17:07:35,034 INFO Connection check task end + +2025-09-24 17:07:35,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:38,034 INFO Connection check task start + +2025-09-24 17:07:38,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:38,035 INFO Out dated connection ,size=0 + +2025-09-24 17:07:38,035 INFO Connection check task end + +2025-09-24 17:07:38,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:41,035 INFO Connection check task start + +2025-09-24 17:07:41,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:41,035 INFO Out dated connection ,size=0 + +2025-09-24 17:07:41,035 INFO Connection check task end + +2025-09-24 17:07:41,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:44,035 INFO Connection check task start + +2025-09-24 17:07:44,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:44,035 INFO Out dated connection ,size=0 + +2025-09-24 17:07:44,035 INFO Connection check task end + +2025-09-24 17:07:44,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:47,036 INFO Connection check task start + +2025-09-24 17:07:47,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:47,036 INFO Out dated connection ,size=0 + +2025-09-24 17:07:47,036 INFO Connection check task end + +2025-09-24 17:07:47,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:50,038 INFO Connection check task start + +2025-09-24 17:07:50,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:50,038 INFO Out dated connection ,size=0 + +2025-09-24 17:07:50,038 INFO Connection check task end + +2025-09-24 17:07:50,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:53,038 INFO Connection check task start + +2025-09-24 17:07:53,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:53,038 INFO Out dated connection ,size=0 + +2025-09-24 17:07:53,038 INFO Connection check task end + +2025-09-24 17:07:53,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:56,038 INFO Connection check task start + +2025-09-24 17:07:56,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:56,039 INFO Out dated connection ,size=0 + +2025-09-24 17:07:56,039 INFO Connection check task end + +2025-09-24 17:07:56,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:07:59,039 INFO Connection check task start + +2025-09-24 17:07:59,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:07:59,039 INFO Out dated connection ,size=0 + +2025-09-24 17:07:59,039 INFO Connection check task end + +2025-09-24 17:07:59,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:02,040 INFO Connection check task start + +2025-09-24 17:08:02,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:02,040 INFO Out dated connection ,size=0 + +2025-09-24 17:08:02,040 INFO Connection check task end + +2025-09-24 17:08:02,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:05,040 INFO Connection check task start + +2025-09-24 17:08:05,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:05,040 INFO Out dated connection ,size=0 + +2025-09-24 17:08:05,040 INFO Connection check task end + +2025-09-24 17:08:05,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:08,040 INFO Connection check task start + +2025-09-24 17:08:08,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:08,040 INFO Out dated connection ,size=0 + +2025-09-24 17:08:08,040 INFO Connection check task end + +2025-09-24 17:08:08,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:11,041 INFO Connection check task start + +2025-09-24 17:08:11,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:11,041 INFO Out dated connection ,size=0 + +2025-09-24 17:08:11,041 INFO Connection check task end + +2025-09-24 17:08:11,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:14,041 INFO Connection check task start + +2025-09-24 17:08:14,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:14,041 INFO Out dated connection ,size=0 + +2025-09-24 17:08:14,042 INFO Connection check task end + +2025-09-24 17:08:14,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:17,042 INFO Connection check task start + +2025-09-24 17:08:17,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:17,042 INFO Out dated connection ,size=0 + +2025-09-24 17:08:17,042 INFO Connection check task end + +2025-09-24 17:08:17,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:20,044 INFO Connection check task start + +2025-09-24 17:08:20,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:20,044 INFO Out dated connection ,size=0 + +2025-09-24 17:08:20,044 INFO Connection check task end + +2025-09-24 17:08:20,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:23,044 INFO Connection check task start + +2025-09-24 17:08:23,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:23,044 INFO Out dated connection ,size=0 + +2025-09-24 17:08:23,044 INFO Connection check task end + +2025-09-24 17:08:23,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:26,045 INFO Connection check task start + +2025-09-24 17:08:26,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:26,045 INFO Out dated connection ,size=0 + +2025-09-24 17:08:26,045 INFO Connection check task end + +2025-09-24 17:08:26,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:29,045 INFO Connection check task start + +2025-09-24 17:08:29,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:29,045 INFO Out dated connection ,size=0 + +2025-09-24 17:08:29,045 INFO Connection check task end + +2025-09-24 17:08:29,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:32,046 INFO Connection check task start + +2025-09-24 17:08:32,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:32,046 INFO Out dated connection ,size=0 + +2025-09-24 17:08:32,046 INFO Connection check task end + +2025-09-24 17:08:32,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:35,046 INFO Connection check task start + +2025-09-24 17:08:35,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:35,047 INFO Out dated connection ,size=0 + +2025-09-24 17:08:35,047 INFO Connection check task end + +2025-09-24 17:08:35,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:38,049 INFO Connection check task start + +2025-09-24 17:08:38,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:38,049 INFO Out dated connection ,size=0 + +2025-09-24 17:08:38,049 INFO Connection check task end + +2025-09-24 17:08:38,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:41,049 INFO Connection check task start + +2025-09-24 17:08:41,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:41,050 INFO Out dated connection ,size=0 + +2025-09-24 17:08:41,050 INFO Connection check task end + +2025-09-24 17:08:41,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:44,050 INFO Connection check task start + +2025-09-24 17:08:44,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:44,050 INFO Out dated connection ,size=0 + +2025-09-24 17:08:44,050 INFO Connection check task end + +2025-09-24 17:08:44,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:47,052 INFO Connection check task start + +2025-09-24 17:08:47,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:47,052 INFO Out dated connection ,size=0 + +2025-09-24 17:08:47,052 INFO Connection check task end + +2025-09-24 17:08:47,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:50,053 INFO Connection check task start + +2025-09-24 17:08:50,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:50,054 INFO Out dated connection ,size=0 + +2025-09-24 17:08:50,054 INFO Connection check task end + +2025-09-24 17:08:50,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:53,055 INFO Connection check task start + +2025-09-24 17:08:53,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:53,055 INFO Out dated connection ,size=0 + +2025-09-24 17:08:53,055 INFO Connection check task end + +2025-09-24 17:08:53,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:56,056 INFO Connection check task start + +2025-09-24 17:08:56,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:56,056 INFO Out dated connection ,size=0 + +2025-09-24 17:08:56,056 INFO Connection check task end + +2025-09-24 17:08:56,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:08:59,058 INFO Connection check task start + +2025-09-24 17:08:59,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:08:59,058 INFO Out dated connection ,size=0 + +2025-09-24 17:08:59,058 INFO Connection check task end + +2025-09-24 17:08:59,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:02,061 INFO Connection check task start + +2025-09-24 17:09:02,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:02,061 INFO Out dated connection ,size=0 + +2025-09-24 17:09:02,061 INFO Connection check task end + +2025-09-24 17:09:02,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:05,063 INFO Connection check task start + +2025-09-24 17:09:05,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:05,063 INFO Out dated connection ,size=0 + +2025-09-24 17:09:05,063 INFO Connection check task end + +2025-09-24 17:09:05,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:08,064 INFO Connection check task start + +2025-09-24 17:09:08,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:08,064 INFO Out dated connection ,size=0 + +2025-09-24 17:09:08,064 INFO Connection check task end + +2025-09-24 17:09:08,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:11,065 INFO Connection check task start + +2025-09-24 17:09:11,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:11,066 INFO Out dated connection ,size=0 + +2025-09-24 17:09:11,066 INFO Connection check task end + +2025-09-24 17:09:11,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:14,066 INFO Connection check task start + +2025-09-24 17:09:14,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:14,067 INFO Out dated connection ,size=0 + +2025-09-24 17:09:14,067 INFO Connection check task end + +2025-09-24 17:09:14,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:17,069 INFO Connection check task start + +2025-09-24 17:09:17,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:17,069 INFO Out dated connection ,size=0 + +2025-09-24 17:09:17,069 INFO Connection check task end + +2025-09-24 17:09:17,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:20,069 INFO Connection check task start + +2025-09-24 17:09:20,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:20,069 INFO Out dated connection ,size=0 + +2025-09-24 17:09:20,069 INFO Connection check task end + +2025-09-24 17:09:20,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:23,070 INFO Connection check task start + +2025-09-24 17:09:23,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:23,071 INFO Out dated connection ,size=0 + +2025-09-24 17:09:23,071 INFO Connection check task end + +2025-09-24 17:09:23,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:26,071 INFO Connection check task start + +2025-09-24 17:09:26,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:26,071 INFO Out dated connection ,size=0 + +2025-09-24 17:09:26,071 INFO Connection check task end + +2025-09-24 17:09:26,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:29,071 INFO Connection check task start + +2025-09-24 17:09:29,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:29,072 INFO Out dated connection ,size=0 + +2025-09-24 17:09:29,072 INFO Connection check task end + +2025-09-24 17:09:29,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:32,074 INFO Connection check task start + +2025-09-24 17:09:32,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:32,074 INFO Out dated connection ,size=0 + +2025-09-24 17:09:32,074 INFO Connection check task end + +2025-09-24 17:09:32,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:35,075 INFO Connection check task start + +2025-09-24 17:09:35,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:35,075 INFO Out dated connection ,size=0 + +2025-09-24 17:09:35,075 INFO Connection check task end + +2025-09-24 17:09:35,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:38,075 INFO Connection check task start + +2025-09-24 17:09:38,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:38,075 INFO Out dated connection ,size=0 + +2025-09-24 17:09:38,075 INFO Connection check task end + +2025-09-24 17:09:38,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:41,077 INFO Connection check task start + +2025-09-24 17:09:41,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:41,077 INFO Out dated connection ,size=0 + +2025-09-24 17:09:41,077 INFO Connection check task end + +2025-09-24 17:09:41,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:44,078 INFO Connection check task start + +2025-09-24 17:09:44,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:44,084 INFO Out dated connection ,size=0 + +2025-09-24 17:09:44,085 INFO Connection check task end + +2025-09-24 17:09:44,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:47,085 INFO Connection check task start + +2025-09-24 17:09:47,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:47,085 INFO Out dated connection ,size=0 + +2025-09-24 17:09:47,085 INFO Connection check task end + +2025-09-24 17:09:47,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:50,086 INFO Connection check task start + +2025-09-24 17:09:50,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:50,086 INFO Out dated connection ,size=0 + +2025-09-24 17:09:50,086 INFO Connection check task end + +2025-09-24 17:09:50,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:53,087 INFO Connection check task start + +2025-09-24 17:09:53,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:53,087 INFO Out dated connection ,size=0 + +2025-09-24 17:09:53,087 INFO Connection check task end + +2025-09-24 17:09:53,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:56,088 INFO Connection check task start + +2025-09-24 17:09:56,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:56,088 INFO Out dated connection ,size=0 + +2025-09-24 17:09:56,088 INFO Connection check task end + +2025-09-24 17:09:56,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:09:59,089 INFO Connection check task start + +2025-09-24 17:09:59,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:09:59,089 INFO Out dated connection ,size=0 + +2025-09-24 17:09:59,089 INFO Connection check task end + +2025-09-24 17:09:59,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:02,090 INFO Connection check task start + +2025-09-24 17:10:02,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:02,090 INFO Out dated connection ,size=0 + +2025-09-24 17:10:02,090 INFO Connection check task end + +2025-09-24 17:10:02,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:05,091 INFO Connection check task start + +2025-09-24 17:10:05,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:05,092 INFO Out dated connection ,size=0 + +2025-09-24 17:10:05,092 INFO Connection check task end + +2025-09-24 17:10:05,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:08,092 INFO Connection check task start + +2025-09-24 17:10:08,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:08,093 INFO Out dated connection ,size=0 + +2025-09-24 17:10:08,093 INFO Connection check task end + +2025-09-24 17:10:08,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:11,093 INFO Connection check task start + +2025-09-24 17:10:11,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:11,093 INFO Out dated connection ,size=0 + +2025-09-24 17:10:11,093 INFO Connection check task end + +2025-09-24 17:10:11,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:14,094 INFO Connection check task start + +2025-09-24 17:10:14,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:14,094 INFO Out dated connection ,size=0 + +2025-09-24 17:10:14,094 INFO Connection check task end + +2025-09-24 17:10:14,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:17,094 INFO Connection check task start + +2025-09-24 17:10:17,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:17,095 INFO Out dated connection ,size=0 + +2025-09-24 17:10:17,095 INFO Connection check task end + +2025-09-24 17:10:17,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:20,095 INFO Connection check task start + +2025-09-24 17:10:20,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:20,095 INFO Out dated connection ,size=0 + +2025-09-24 17:10:20,096 INFO Connection check task end + +2025-09-24 17:10:20,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:23,098 INFO Connection check task start + +2025-09-24 17:10:23,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:23,099 INFO Out dated connection ,size=0 + +2025-09-24 17:10:23,099 INFO Connection check task end + +2025-09-24 17:10:23,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:26,099 INFO Connection check task start + +2025-09-24 17:10:26,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:26,099 INFO Out dated connection ,size=0 + +2025-09-24 17:10:26,099 INFO Connection check task end + +2025-09-24 17:10:26,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:29,101 INFO Connection check task start + +2025-09-24 17:10:29,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:29,101 INFO Out dated connection ,size=0 + +2025-09-24 17:10:29,101 INFO Connection check task end + +2025-09-24 17:10:29,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:32,102 INFO Connection check task start + +2025-09-24 17:10:32,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:32,102 INFO Out dated connection ,size=0 + +2025-09-24 17:10:32,102 INFO Connection check task end + +2025-09-24 17:10:32,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:35,104 INFO Connection check task start + +2025-09-24 17:10:35,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:35,104 INFO Out dated connection ,size=0 + +2025-09-24 17:10:35,104 INFO Connection check task end + +2025-09-24 17:10:35,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:38,104 INFO Connection check task start + +2025-09-24 17:10:38,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:38,105 INFO Out dated connection ,size=0 + +2025-09-24 17:10:38,105 INFO Connection check task end + +2025-09-24 17:10:38,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:41,105 INFO Connection check task start + +2025-09-24 17:10:41,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:41,105 INFO Out dated connection ,size=0 + +2025-09-24 17:10:41,105 INFO Connection check task end + +2025-09-24 17:10:41,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:44,106 INFO Connection check task start + +2025-09-24 17:10:44,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:44,106 INFO Out dated connection ,size=0 + +2025-09-24 17:10:44,106 INFO Connection check task end + +2025-09-24 17:10:44,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:47,107 INFO Connection check task start + +2025-09-24 17:10:47,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:47,108 INFO Out dated connection ,size=0 + +2025-09-24 17:10:47,108 INFO Connection check task end + +2025-09-24 17:10:47,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:50,110 INFO Connection check task start + +2025-09-24 17:10:50,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:50,110 INFO Out dated connection ,size=0 + +2025-09-24 17:10:50,110 INFO Connection check task end + +2025-09-24 17:10:50,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:53,111 INFO Connection check task start + +2025-09-24 17:10:53,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:53,112 INFO Out dated connection ,size=0 + +2025-09-24 17:10:53,112 INFO Connection check task end + +2025-09-24 17:10:53,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:56,113 INFO Connection check task start + +2025-09-24 17:10:56,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:56,114 INFO Out dated connection ,size=0 + +2025-09-24 17:10:56,114 INFO Connection check task end + +2025-09-24 17:10:56,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:10:59,114 INFO Connection check task start + +2025-09-24 17:10:59,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:10:59,114 INFO Out dated connection ,size=0 + +2025-09-24 17:10:59,114 INFO Connection check task end + +2025-09-24 17:10:59,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:02,115 INFO Connection check task start + +2025-09-24 17:11:02,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:02,115 INFO Out dated connection ,size=0 + +2025-09-24 17:11:02,115 INFO Connection check task end + +2025-09-24 17:11:02,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:05,116 INFO Connection check task start + +2025-09-24 17:11:05,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:05,116 INFO Out dated connection ,size=0 + +2025-09-24 17:11:05,116 INFO Connection check task end + +2025-09-24 17:11:05,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:08,116 INFO Connection check task start + +2025-09-24 17:11:08,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:08,116 INFO Out dated connection ,size=0 + +2025-09-24 17:11:08,116 INFO Connection check task end + +2025-09-24 17:11:08,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:11,116 INFO Connection check task start + +2025-09-24 17:11:11,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:11,117 INFO Out dated connection ,size=0 + +2025-09-24 17:11:11,117 INFO Connection check task end + +2025-09-24 17:11:11,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:14,117 INFO Connection check task start + +2025-09-24 17:11:14,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:14,117 INFO Out dated connection ,size=0 + +2025-09-24 17:11:14,117 INFO Connection check task end + +2025-09-24 17:11:14,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:17,118 INFO Connection check task start + +2025-09-24 17:11:17,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:17,118 INFO Out dated connection ,size=0 + +2025-09-24 17:11:17,118 INFO Connection check task end + +2025-09-24 17:11:17,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:20,120 INFO Connection check task start + +2025-09-24 17:11:20,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:20,120 INFO Out dated connection ,size=0 + +2025-09-24 17:11:20,120 INFO Connection check task end + +2025-09-24 17:11:20,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:23,121 INFO Connection check task start + +2025-09-24 17:11:23,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:23,121 INFO Out dated connection ,size=0 + +2025-09-24 17:11:23,121 INFO Connection check task end + +2025-09-24 17:11:23,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:26,123 INFO Connection check task start + +2025-09-24 17:11:26,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:26,123 INFO Out dated connection ,size=0 + +2025-09-24 17:11:26,123 INFO Connection check task end + +2025-09-24 17:11:26,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:29,124 INFO Connection check task start + +2025-09-24 17:11:29,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:29,124 INFO Out dated connection ,size=0 + +2025-09-24 17:11:29,124 INFO Connection check task end + +2025-09-24 17:11:29,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:32,125 INFO Connection check task start + +2025-09-24 17:11:32,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:32,125 INFO Out dated connection ,size=0 + +2025-09-24 17:11:32,125 INFO Connection check task end + +2025-09-24 17:11:32,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:35,125 INFO Connection check task start + +2025-09-24 17:11:35,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:35,126 INFO Out dated connection ,size=0 + +2025-09-24 17:11:35,126 INFO Connection check task end + +2025-09-24 17:11:35,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:38,126 INFO Connection check task start + +2025-09-24 17:11:38,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:38,127 INFO Out dated connection ,size=0 + +2025-09-24 17:11:38,127 INFO Connection check task end + +2025-09-24 17:11:38,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:41,127 INFO Connection check task start + +2025-09-24 17:11:41,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:41,127 INFO Out dated connection ,size=0 + +2025-09-24 17:11:41,127 INFO Connection check task end + +2025-09-24 17:11:41,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:44,128 INFO Connection check task start + +2025-09-24 17:11:44,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:44,128 INFO Out dated connection ,size=0 + +2025-09-24 17:11:44,128 INFO Connection check task end + +2025-09-24 17:11:44,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:47,129 INFO Connection check task start + +2025-09-24 17:11:47,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:47,129 INFO Out dated connection ,size=0 + +2025-09-24 17:11:47,129 INFO Connection check task end + +2025-09-24 17:11:47,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:50,130 INFO Connection check task start + +2025-09-24 17:11:50,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:50,130 INFO Out dated connection ,size=0 + +2025-09-24 17:11:50,130 INFO Connection check task end + +2025-09-24 17:11:50,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:53,130 INFO Connection check task start + +2025-09-24 17:11:53,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:53,131 INFO Out dated connection ,size=0 + +2025-09-24 17:11:53,131 INFO Connection check task end + +2025-09-24 17:11:53,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:56,131 INFO Connection check task start + +2025-09-24 17:11:56,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:56,131 INFO Out dated connection ,size=0 + +2025-09-24 17:11:56,131 INFO Connection check task end + +2025-09-24 17:11:56,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:11:59,132 INFO Connection check task start + +2025-09-24 17:11:59,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:11:59,132 INFO Out dated connection ,size=0 + +2025-09-24 17:11:59,132 INFO Connection check task end + +2025-09-24 17:11:59,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:02,132 INFO Connection check task start + +2025-09-24 17:12:02,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:02,132 INFO Out dated connection ,size=0 + +2025-09-24 17:12:02,132 INFO Connection check task end + +2025-09-24 17:12:02,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:05,132 INFO Connection check task start + +2025-09-24 17:12:05,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:05,133 INFO Out dated connection ,size=0 + +2025-09-24 17:12:05,133 INFO Connection check task end + +2025-09-24 17:12:05,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:08,133 INFO Connection check task start + +2025-09-24 17:12:08,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:08,133 INFO Out dated connection ,size=0 + +2025-09-24 17:12:08,133 INFO Connection check task end + +2025-09-24 17:12:08,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:11,134 INFO Connection check task start + +2025-09-24 17:12:11,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:11,134 INFO Out dated connection ,size=0 + +2025-09-24 17:12:11,134 INFO Connection check task end + +2025-09-24 17:12:11,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:14,134 INFO Connection check task start + +2025-09-24 17:12:14,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:14,135 INFO Out dated connection ,size=0 + +2025-09-24 17:12:14,135 INFO Connection check task end + +2025-09-24 17:12:14,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:17,136 INFO Connection check task start + +2025-09-24 17:12:17,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:17,136 INFO Out dated connection ,size=0 + +2025-09-24 17:12:17,136 INFO Connection check task end + +2025-09-24 17:12:17,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:20,137 INFO Connection check task start + +2025-09-24 17:12:20,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:20,137 INFO Out dated connection ,size=0 + +2025-09-24 17:12:20,137 INFO Connection check task end + +2025-09-24 17:12:20,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:23,138 INFO Connection check task start + +2025-09-24 17:12:23,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:23,138 INFO Out dated connection ,size=0 + +2025-09-24 17:12:23,138 INFO Connection check task end + +2025-09-24 17:12:23,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:26,138 INFO Connection check task start + +2025-09-24 17:12:26,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:26,139 INFO Out dated connection ,size=0 + +2025-09-24 17:12:26,139 INFO Connection check task end + +2025-09-24 17:12:26,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:29,139 INFO Connection check task start + +2025-09-24 17:12:29,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:29,139 INFO Out dated connection ,size=0 + +2025-09-24 17:12:29,139 INFO Connection check task end + +2025-09-24 17:12:29,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:32,141 INFO Connection check task start + +2025-09-24 17:12:32,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:32,141 INFO Out dated connection ,size=0 + +2025-09-24 17:12:32,141 INFO Connection check task end + +2025-09-24 17:12:32,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:35,142 INFO Connection check task start + +2025-09-24 17:12:35,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:35,143 INFO Out dated connection ,size=0 + +2025-09-24 17:12:35,143 INFO Connection check task end + +2025-09-24 17:12:35,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:38,143 INFO Connection check task start + +2025-09-24 17:12:38,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:38,143 INFO Out dated connection ,size=0 + +2025-09-24 17:12:38,143 INFO Connection check task end + +2025-09-24 17:12:38,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:41,144 INFO Connection check task start + +2025-09-24 17:12:41,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:41,144 INFO Out dated connection ,size=0 + +2025-09-24 17:12:41,144 INFO Connection check task end + +2025-09-24 17:12:41,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:44,144 INFO Connection check task start + +2025-09-24 17:12:44,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:44,144 INFO Out dated connection ,size=0 + +2025-09-24 17:12:44,144 INFO Connection check task end + +2025-09-24 17:12:44,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:47,145 INFO Connection check task start + +2025-09-24 17:12:47,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:47,145 INFO Out dated connection ,size=0 + +2025-09-24 17:12:47,145 INFO Connection check task end + +2025-09-24 17:12:47,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:50,147 INFO Connection check task start + +2025-09-24 17:12:50,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:50,147 INFO Out dated connection ,size=0 + +2025-09-24 17:12:50,147 INFO Connection check task end + +2025-09-24 17:12:50,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:53,147 INFO Connection check task start + +2025-09-24 17:12:53,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:53,147 INFO Out dated connection ,size=0 + +2025-09-24 17:12:53,147 INFO Connection check task end + +2025-09-24 17:12:53,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:56,148 INFO Connection check task start + +2025-09-24 17:12:56,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:56,148 INFO Out dated connection ,size=0 + +2025-09-24 17:12:56,148 INFO Connection check task end + +2025-09-24 17:12:56,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:12:59,149 INFO Connection check task start + +2025-09-24 17:12:59,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:12:59,149 INFO Out dated connection ,size=0 + +2025-09-24 17:12:59,149 INFO Connection check task end + +2025-09-24 17:12:59,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:02,151 INFO Connection check task start + +2025-09-24 17:13:02,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:02,152 INFO Out dated connection ,size=0 + +2025-09-24 17:13:02,152 INFO Connection check task end + +2025-09-24 17:13:02,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:05,152 INFO Connection check task start + +2025-09-24 17:13:05,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:05,152 INFO Out dated connection ,size=0 + +2025-09-24 17:13:05,152 INFO Connection check task end + +2025-09-24 17:13:05,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:08,153 INFO Connection check task start + +2025-09-24 17:13:08,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:08,153 INFO Out dated connection ,size=0 + +2025-09-24 17:13:08,153 INFO Connection check task end + +2025-09-24 17:13:08,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:11,155 INFO Connection check task start + +2025-09-24 17:13:11,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:11,155 INFO Out dated connection ,size=0 + +2025-09-24 17:13:11,155 INFO Connection check task end + +2025-09-24 17:13:11,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:14,156 INFO Connection check task start + +2025-09-24 17:13:14,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:14,156 INFO Out dated connection ,size=0 + +2025-09-24 17:13:14,156 INFO Connection check task end + +2025-09-24 17:13:14,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:17,158 INFO Connection check task start + +2025-09-24 17:13:17,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:17,158 INFO Out dated connection ,size=0 + +2025-09-24 17:13:17,158 INFO Connection check task end + +2025-09-24 17:13:17,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:20,159 INFO Connection check task start + +2025-09-24 17:13:20,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:20,159 INFO Out dated connection ,size=0 + +2025-09-24 17:13:20,159 INFO Connection check task end + +2025-09-24 17:13:20,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:23,160 INFO Connection check task start + +2025-09-24 17:13:23,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:23,160 INFO Out dated connection ,size=0 + +2025-09-24 17:13:23,160 INFO Connection check task end + +2025-09-24 17:13:23,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:26,160 INFO Connection check task start + +2025-09-24 17:13:26,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:26,160 INFO Out dated connection ,size=0 + +2025-09-24 17:13:26,160 INFO Connection check task end + +2025-09-24 17:13:26,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:29,162 INFO Connection check task start + +2025-09-24 17:13:29,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:29,162 INFO Out dated connection ,size=0 + +2025-09-24 17:13:29,162 INFO Connection check task end + +2025-09-24 17:13:29,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:32,164 INFO Connection check task start + +2025-09-24 17:13:32,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:32,164 INFO Out dated connection ,size=0 + +2025-09-24 17:13:32,164 INFO Connection check task end + +2025-09-24 17:13:32,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:35,166 INFO Connection check task start + +2025-09-24 17:13:35,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:35,166 INFO Out dated connection ,size=0 + +2025-09-24 17:13:35,166 INFO Connection check task end + +2025-09-24 17:13:35,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:38,168 INFO Connection check task start + +2025-09-24 17:13:38,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:38,169 INFO Out dated connection ,size=0 + +2025-09-24 17:13:38,169 INFO Connection check task end + +2025-09-24 17:13:38,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:41,169 INFO Connection check task start + +2025-09-24 17:13:41,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:41,169 INFO Out dated connection ,size=0 + +2025-09-24 17:13:41,169 INFO Connection check task end + +2025-09-24 17:13:41,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:44,171 INFO Connection check task start + +2025-09-24 17:13:44,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:44,172 INFO Out dated connection ,size=0 + +2025-09-24 17:13:44,172 INFO Connection check task end + +2025-09-24 17:13:44,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:47,172 INFO Connection check task start + +2025-09-24 17:13:47,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:47,172 INFO Out dated connection ,size=0 + +2025-09-24 17:13:47,172 INFO Connection check task end + +2025-09-24 17:13:47,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:50,173 INFO Connection check task start + +2025-09-24 17:13:50,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:50,173 INFO Out dated connection ,size=0 + +2025-09-24 17:13:50,173 INFO Connection check task end + +2025-09-24 17:13:50,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:53,174 INFO Connection check task start + +2025-09-24 17:13:53,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:53,174 INFO Out dated connection ,size=0 + +2025-09-24 17:13:53,174 INFO Connection check task end + +2025-09-24 17:13:53,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:56,177 INFO Connection check task start + +2025-09-24 17:13:56,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:56,177 INFO Out dated connection ,size=0 + +2025-09-24 17:13:56,177 INFO Connection check task end + +2025-09-24 17:13:56,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:13:59,177 INFO Connection check task start + +2025-09-24 17:13:59,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:13:59,177 INFO Out dated connection ,size=0 + +2025-09-24 17:13:59,177 INFO Connection check task end + +2025-09-24 17:13:59,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:02,178 INFO Connection check task start + +2025-09-24 17:14:02,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:02,178 INFO Out dated connection ,size=0 + +2025-09-24 17:14:02,178 INFO Connection check task end + +2025-09-24 17:14:02,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:05,178 INFO Connection check task start + +2025-09-24 17:14:05,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:05,179 INFO Out dated connection ,size=0 + +2025-09-24 17:14:05,179 INFO Connection check task end + +2025-09-24 17:14:05,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:08,179 INFO Connection check task start + +2025-09-24 17:14:08,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:08,179 INFO Out dated connection ,size=0 + +2025-09-24 17:14:08,179 INFO Connection check task end + +2025-09-24 17:14:08,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:11,181 INFO Connection check task start + +2025-09-24 17:14:11,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:11,181 INFO Out dated connection ,size=0 + +2025-09-24 17:14:11,181 INFO Connection check task end + +2025-09-24 17:14:11,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:14,183 INFO Connection check task start + +2025-09-24 17:14:14,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:14,183 INFO Out dated connection ,size=0 + +2025-09-24 17:14:14,183 INFO Connection check task end + +2025-09-24 17:14:14,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:17,184 INFO Connection check task start + +2025-09-24 17:14:17,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:17,184 INFO Out dated connection ,size=0 + +2025-09-24 17:14:17,184 INFO Connection check task end + +2025-09-24 17:14:17,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:20,185 INFO Connection check task start + +2025-09-24 17:14:20,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:20,185 INFO Out dated connection ,size=0 + +2025-09-24 17:14:20,185 INFO Connection check task end + +2025-09-24 17:14:20,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:23,185 INFO Connection check task start + +2025-09-24 17:14:23,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:23,186 INFO Out dated connection ,size=0 + +2025-09-24 17:14:23,186 INFO Connection check task end + +2025-09-24 17:14:23,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:26,186 INFO Connection check task start + +2025-09-24 17:14:26,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:26,187 INFO Out dated connection ,size=0 + +2025-09-24 17:14:26,187 INFO Connection check task end + +2025-09-24 17:14:26,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:29,187 INFO Connection check task start + +2025-09-24 17:14:29,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:29,187 INFO Out dated connection ,size=0 + +2025-09-24 17:14:29,187 INFO Connection check task end + +2025-09-24 17:14:29,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:32,189 INFO Connection check task start + +2025-09-24 17:14:32,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:32,190 INFO Out dated connection ,size=0 + +2025-09-24 17:14:32,190 INFO Connection check task end + +2025-09-24 17:14:32,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:35,192 INFO Connection check task start + +2025-09-24 17:14:35,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:35,192 INFO Out dated connection ,size=0 + +2025-09-24 17:14:35,192 INFO Connection check task end + +2025-09-24 17:14:35,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:38,194 INFO Connection check task start + +2025-09-24 17:14:38,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:38,194 INFO Out dated connection ,size=0 + +2025-09-24 17:14:38,194 INFO Connection check task end + +2025-09-24 17:14:38,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:41,196 INFO Connection check task start + +2025-09-24 17:14:41,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:41,196 INFO Out dated connection ,size=0 + +2025-09-24 17:14:41,196 INFO Connection check task end + +2025-09-24 17:14:41,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:44,197 INFO Connection check task start + +2025-09-24 17:14:44,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:44,197 INFO Out dated connection ,size=0 + +2025-09-24 17:14:44,197 INFO Connection check task end + +2025-09-24 17:14:44,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:47,199 INFO Connection check task start + +2025-09-24 17:14:47,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:47,199 INFO Out dated connection ,size=0 + +2025-09-24 17:14:47,199 INFO Connection check task end + +2025-09-24 17:14:47,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:50,200 INFO Connection check task start + +2025-09-24 17:14:50,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:50,200 INFO Out dated connection ,size=0 + +2025-09-24 17:14:50,200 INFO Connection check task end + +2025-09-24 17:14:50,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:53,201 INFO Connection check task start + +2025-09-24 17:14:53,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:53,201 INFO Out dated connection ,size=0 + +2025-09-24 17:14:53,201 INFO Connection check task end + +2025-09-24 17:14:53,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:56,201 INFO Connection check task start + +2025-09-24 17:14:56,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:56,201 INFO Out dated connection ,size=0 + +2025-09-24 17:14:56,202 INFO Connection check task end + +2025-09-24 17:14:56,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:14:59,203 INFO Connection check task start + +2025-09-24 17:14:59,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:14:59,204 INFO Out dated connection ,size=0 + +2025-09-24 17:14:59,204 INFO Connection check task end + +2025-09-24 17:14:59,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:02,204 INFO Connection check task start + +2025-09-24 17:15:02,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:02,204 INFO Out dated connection ,size=0 + +2025-09-24 17:15:02,204 INFO Connection check task end + +2025-09-24 17:15:02,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:05,206 INFO Connection check task start + +2025-09-24 17:15:05,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:05,206 INFO Out dated connection ,size=0 + +2025-09-24 17:15:05,207 INFO Connection check task end + +2025-09-24 17:15:05,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:08,207 INFO Connection check task start + +2025-09-24 17:15:08,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:08,207 INFO Out dated connection ,size=0 + +2025-09-24 17:15:08,207 INFO Connection check task end + +2025-09-24 17:15:08,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:11,207 INFO Connection check task start + +2025-09-24 17:15:11,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:11,208 INFO Out dated connection ,size=0 + +2025-09-24 17:15:11,208 INFO Connection check task end + +2025-09-24 17:15:11,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:14,208 INFO Connection check task start + +2025-09-24 17:15:14,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:14,208 INFO Out dated connection ,size=0 + +2025-09-24 17:15:14,208 INFO Connection check task end + +2025-09-24 17:15:14,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:17,211 INFO Connection check task start + +2025-09-24 17:15:17,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:17,211 INFO Out dated connection ,size=0 + +2025-09-24 17:15:17,211 INFO Connection check task end + +2025-09-24 17:15:17,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:20,212 INFO Connection check task start + +2025-09-24 17:15:20,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:20,213 INFO Out dated connection ,size=0 + +2025-09-24 17:15:20,213 INFO Connection check task end + +2025-09-24 17:15:20,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:23,213 INFO Connection check task start + +2025-09-24 17:15:23,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:23,214 INFO Out dated connection ,size=0 + +2025-09-24 17:15:23,214 INFO Connection check task end + +2025-09-24 17:15:23,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:26,216 INFO Connection check task start + +2025-09-24 17:15:26,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:26,216 INFO Out dated connection ,size=0 + +2025-09-24 17:15:26,216 INFO Connection check task end + +2025-09-24 17:15:26,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:29,216 INFO Connection check task start + +2025-09-24 17:15:29,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:29,216 INFO Out dated connection ,size=0 + +2025-09-24 17:15:29,216 INFO Connection check task end + +2025-09-24 17:15:29,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:32,217 INFO Connection check task start + +2025-09-24 17:15:32,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:32,217 INFO Out dated connection ,size=0 + +2025-09-24 17:15:32,217 INFO Connection check task end + +2025-09-24 17:15:32,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:35,219 INFO Connection check task start + +2025-09-24 17:15:35,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:35,219 INFO Out dated connection ,size=0 + +2025-09-24 17:15:35,219 INFO Connection check task end + +2025-09-24 17:15:35,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:38,221 INFO Connection check task start + +2025-09-24 17:15:38,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:38,221 INFO Out dated connection ,size=0 + +2025-09-24 17:15:38,221 INFO Connection check task end + +2025-09-24 17:15:38,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:41,224 INFO Connection check task start + +2025-09-24 17:15:41,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:41,224 INFO Out dated connection ,size=0 + +2025-09-24 17:15:41,224 INFO Connection check task end + +2025-09-24 17:15:41,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:44,224 INFO Connection check task start + +2025-09-24 17:15:44,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:44,224 INFO Out dated connection ,size=0 + +2025-09-24 17:15:44,224 INFO Connection check task end + +2025-09-24 17:15:44,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:47,225 INFO Connection check task start + +2025-09-24 17:15:47,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:47,225 INFO Out dated connection ,size=0 + +2025-09-24 17:15:47,225 INFO Connection check task end + +2025-09-24 17:15:47,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:50,225 INFO Connection check task start + +2025-09-24 17:15:50,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:50,225 INFO Out dated connection ,size=0 + +2025-09-24 17:15:50,225 INFO Connection check task end + +2025-09-24 17:15:50,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:53,225 INFO Connection check task start + +2025-09-24 17:15:53,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:53,226 INFO Out dated connection ,size=0 + +2025-09-24 17:15:53,226 INFO Connection check task end + +2025-09-24 17:15:53,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:56,227 INFO Connection check task start + +2025-09-24 17:15:56,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:56,227 INFO Out dated connection ,size=0 + +2025-09-24 17:15:56,227 INFO Connection check task end + +2025-09-24 17:15:56,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:15:59,227 INFO Connection check task start + +2025-09-24 17:15:59,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:15:59,227 INFO Out dated connection ,size=0 + +2025-09-24 17:15:59,227 INFO Connection check task end + +2025-09-24 17:15:59,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:02,230 INFO Connection check task start + +2025-09-24 17:16:02,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:02,230 INFO Out dated connection ,size=0 + +2025-09-24 17:16:02,230 INFO Connection check task end + +2025-09-24 17:16:02,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:05,232 INFO Connection check task start + +2025-09-24 17:16:05,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:05,232 INFO Out dated connection ,size=0 + +2025-09-24 17:16:05,232 INFO Connection check task end + +2025-09-24 17:16:05,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:08,232 INFO Connection check task start + +2025-09-24 17:16:08,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:08,232 INFO Out dated connection ,size=0 + +2025-09-24 17:16:08,232 INFO Connection check task end + +2025-09-24 17:16:08,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:11,233 INFO Connection check task start + +2025-09-24 17:16:11,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:11,233 INFO Out dated connection ,size=0 + +2025-09-24 17:16:11,233 INFO Connection check task end + +2025-09-24 17:16:11,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:14,235 INFO Connection check task start + +2025-09-24 17:16:14,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:14,235 INFO Out dated connection ,size=0 + +2025-09-24 17:16:14,235 INFO Connection check task end + +2025-09-24 17:16:14,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:17,236 INFO Connection check task start + +2025-09-24 17:16:17,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:17,236 INFO Out dated connection ,size=0 + +2025-09-24 17:16:17,236 INFO Connection check task end + +2025-09-24 17:16:17,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:20,237 INFO Connection check task start + +2025-09-24 17:16:20,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:20,237 INFO Out dated connection ,size=0 + +2025-09-24 17:16:20,237 INFO Connection check task end + +2025-09-24 17:16:20,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:23,238 INFO Connection check task start + +2025-09-24 17:16:23,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:23,239 INFO Out dated connection ,size=0 + +2025-09-24 17:16:23,239 INFO Connection check task end + +2025-09-24 17:16:23,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:26,239 INFO Connection check task start + +2025-09-24 17:16:26,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:26,239 INFO Out dated connection ,size=0 + +2025-09-24 17:16:26,239 INFO Connection check task end + +2025-09-24 17:16:26,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:29,239 INFO Connection check task start + +2025-09-24 17:16:29,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:29,240 INFO Out dated connection ,size=0 + +2025-09-24 17:16:29,240 INFO Connection check task end + +2025-09-24 17:16:29,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:32,241 INFO Connection check task start + +2025-09-24 17:16:32,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:32,241 INFO Out dated connection ,size=0 + +2025-09-24 17:16:32,241 INFO Connection check task end + +2025-09-24 17:16:32,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:35,243 INFO Connection check task start + +2025-09-24 17:16:35,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:35,243 INFO Out dated connection ,size=0 + +2025-09-24 17:16:35,243 INFO Connection check task end + +2025-09-24 17:16:35,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:38,245 INFO Connection check task start + +2025-09-24 17:16:38,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:38,245 INFO Out dated connection ,size=0 + +2025-09-24 17:16:38,245 INFO Connection check task end + +2025-09-24 17:16:38,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:41,247 INFO Connection check task start + +2025-09-24 17:16:41,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:41,247 INFO Out dated connection ,size=0 + +2025-09-24 17:16:41,248 INFO Connection check task end + +2025-09-24 17:16:41,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:44,248 INFO Connection check task start + +2025-09-24 17:16:44,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:44,248 INFO Out dated connection ,size=0 + +2025-09-24 17:16:44,248 INFO Connection check task end + +2025-09-24 17:16:44,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:47,250 INFO Connection check task start + +2025-09-24 17:16:47,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:47,250 INFO Out dated connection ,size=0 + +2025-09-24 17:16:47,250 INFO Connection check task end + +2025-09-24 17:16:47,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:50,252 INFO Connection check task start + +2025-09-24 17:16:50,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:50,252 INFO Out dated connection ,size=0 + +2025-09-24 17:16:50,252 INFO Connection check task end + +2025-09-24 17:16:50,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:53,253 INFO Connection check task start + +2025-09-24 17:16:53,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:53,253 INFO Out dated connection ,size=0 + +2025-09-24 17:16:53,253 INFO Connection check task end + +2025-09-24 17:16:53,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:56,253 INFO Connection check task start + +2025-09-24 17:16:56,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:56,254 INFO Out dated connection ,size=0 + +2025-09-24 17:16:56,254 INFO Connection check task end + +2025-09-24 17:16:56,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:16:59,254 INFO Connection check task start + +2025-09-24 17:16:59,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:16:59,254 INFO Out dated connection ,size=0 + +2025-09-24 17:16:59,254 INFO Connection check task end + +2025-09-24 17:16:59,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:02,256 INFO Connection check task start + +2025-09-24 17:17:02,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:02,256 INFO Out dated connection ,size=0 + +2025-09-24 17:17:02,256 INFO Connection check task end + +2025-09-24 17:17:02,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:05,257 INFO Connection check task start + +2025-09-24 17:17:05,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:05,257 INFO Out dated connection ,size=0 + +2025-09-24 17:17:05,257 INFO Connection check task end + +2025-09-24 17:17:05,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:08,259 INFO Connection check task start + +2025-09-24 17:17:08,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:08,259 INFO Out dated connection ,size=0 + +2025-09-24 17:17:08,259 INFO Connection check task end + +2025-09-24 17:17:08,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:11,260 INFO Connection check task start + +2025-09-24 17:17:11,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:11,260 INFO Out dated connection ,size=0 + +2025-09-24 17:17:11,260 INFO Connection check task end + +2025-09-24 17:17:11,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:14,260 INFO Connection check task start + +2025-09-24 17:17:14,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:14,261 INFO Out dated connection ,size=0 + +2025-09-24 17:17:14,261 INFO Connection check task end + +2025-09-24 17:17:14,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:17,262 INFO Connection check task start + +2025-09-24 17:17:17,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:17,262 INFO Out dated connection ,size=0 + +2025-09-24 17:17:17,263 INFO Connection check task end + +2025-09-24 17:17:17,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:20,263 INFO Connection check task start + +2025-09-24 17:17:20,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:20,263 INFO Out dated connection ,size=0 + +2025-09-24 17:17:20,263 INFO Connection check task end + +2025-09-24 17:17:20,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:23,264 INFO Connection check task start + +2025-09-24 17:17:23,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:23,267 INFO Out dated connection ,size=0 + +2025-09-24 17:17:23,267 INFO Connection check task end + +2025-09-24 17:17:23,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:26,267 INFO Connection check task start + +2025-09-24 17:17:26,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:26,268 INFO Out dated connection ,size=0 + +2025-09-24 17:17:26,268 INFO Connection check task end + +2025-09-24 17:17:26,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:29,268 INFO Connection check task start + +2025-09-24 17:17:29,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:29,268 INFO Out dated connection ,size=0 + +2025-09-24 17:17:29,268 INFO Connection check task end + +2025-09-24 17:17:29,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:32,268 INFO Connection check task start + +2025-09-24 17:17:32,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:32,269 INFO Out dated connection ,size=0 + +2025-09-24 17:17:32,269 INFO Connection check task end + +2025-09-24 17:17:32,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:35,270 INFO Connection check task start + +2025-09-24 17:17:35,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:35,270 INFO Out dated connection ,size=0 + +2025-09-24 17:17:35,270 INFO Connection check task end + +2025-09-24 17:17:35,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:38,270 INFO Connection check task start + +2025-09-24 17:17:38,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:38,270 INFO Out dated connection ,size=0 + +2025-09-24 17:17:38,271 INFO Connection check task end + +2025-09-24 17:17:38,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:41,271 INFO Connection check task start + +2025-09-24 17:17:41,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:41,271 INFO Out dated connection ,size=0 + +2025-09-24 17:17:41,271 INFO Connection check task end + +2025-09-24 17:17:41,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:44,273 INFO Connection check task start + +2025-09-24 17:17:44,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:44,273 INFO Out dated connection ,size=0 + +2025-09-24 17:17:44,273 INFO Connection check task end + +2025-09-24 17:17:44,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:47,274 INFO Connection check task start + +2025-09-24 17:17:47,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:47,274 INFO Out dated connection ,size=0 + +2025-09-24 17:17:47,274 INFO Connection check task end + +2025-09-24 17:17:47,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:50,276 INFO Connection check task start + +2025-09-24 17:17:50,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:50,276 INFO Out dated connection ,size=0 + +2025-09-24 17:17:50,276 INFO Connection check task end + +2025-09-24 17:17:50,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:53,279 INFO Connection check task start + +2025-09-24 17:17:53,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:53,279 INFO Out dated connection ,size=0 + +2025-09-24 17:17:53,279 INFO Connection check task end + +2025-09-24 17:17:53,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:56,281 INFO Connection check task start + +2025-09-24 17:17:56,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:56,281 INFO Out dated connection ,size=0 + +2025-09-24 17:17:56,281 INFO Connection check task end + +2025-09-24 17:17:56,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:17:59,283 INFO Connection check task start + +2025-09-24 17:17:59,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:17:59,283 INFO Out dated connection ,size=0 + +2025-09-24 17:17:59,284 INFO Connection check task end + +2025-09-24 17:17:59,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:02,285 INFO Connection check task start + +2025-09-24 17:18:02,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:02,286 INFO Out dated connection ,size=0 + +2025-09-24 17:18:02,286 INFO Connection check task end + +2025-09-24 17:18:02,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:05,288 INFO Connection check task start + +2025-09-24 17:18:05,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:05,288 INFO Out dated connection ,size=0 + +2025-09-24 17:18:05,288 INFO Connection check task end + +2025-09-24 17:18:05,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:08,288 INFO Connection check task start + +2025-09-24 17:18:08,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:08,288 INFO Out dated connection ,size=0 + +2025-09-24 17:18:08,288 INFO Connection check task end + +2025-09-24 17:18:08,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:11,290 INFO Connection check task start + +2025-09-24 17:18:11,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:11,290 INFO Out dated connection ,size=0 + +2025-09-24 17:18:11,290 INFO Connection check task end + +2025-09-24 17:18:11,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:14,292 INFO Connection check task start + +2025-09-24 17:18:14,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:14,292 INFO Out dated connection ,size=0 + +2025-09-24 17:18:14,292 INFO Connection check task end + +2025-09-24 17:18:14,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:17,294 INFO Connection check task start + +2025-09-24 17:18:17,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:17,294 INFO Out dated connection ,size=0 + +2025-09-24 17:18:17,294 INFO Connection check task end + +2025-09-24 17:18:17,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:20,295 INFO Connection check task start + +2025-09-24 17:18:20,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:20,295 INFO Out dated connection ,size=0 + +2025-09-24 17:18:20,295 INFO Connection check task end + +2025-09-24 17:18:20,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:23,295 INFO Connection check task start + +2025-09-24 17:18:23,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:23,296 INFO Out dated connection ,size=0 + +2025-09-24 17:18:23,296 INFO Connection check task end + +2025-09-24 17:18:23,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:26,298 INFO Connection check task start + +2025-09-24 17:18:26,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:26,298 INFO Out dated connection ,size=0 + +2025-09-24 17:18:26,298 INFO Connection check task end + +2025-09-24 17:18:26,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:29,299 INFO Connection check task start + +2025-09-24 17:18:29,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:29,299 INFO Out dated connection ,size=0 + +2025-09-24 17:18:29,299 INFO Connection check task end + +2025-09-24 17:18:29,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:32,299 INFO Connection check task start + +2025-09-24 17:18:32,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:32,299 INFO Out dated connection ,size=0 + +2025-09-24 17:18:32,300 INFO Connection check task end + +2025-09-24 17:18:32,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:35,300 INFO Connection check task start + +2025-09-24 17:18:35,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:35,300 INFO Out dated connection ,size=0 + +2025-09-24 17:18:35,300 INFO Connection check task end + +2025-09-24 17:18:35,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:38,302 INFO Connection check task start + +2025-09-24 17:18:38,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:38,302 INFO Out dated connection ,size=0 + +2025-09-24 17:18:38,302 INFO Connection check task end + +2025-09-24 17:18:38,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:41,304 INFO Connection check task start + +2025-09-24 17:18:41,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:41,304 INFO Out dated connection ,size=0 + +2025-09-24 17:18:41,305 INFO Connection check task end + +2025-09-24 17:18:41,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:44,307 INFO Connection check task start + +2025-09-24 17:18:44,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:44,307 INFO Out dated connection ,size=0 + +2025-09-24 17:18:44,307 INFO Connection check task end + +2025-09-24 17:18:44,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:47,307 INFO Connection check task start + +2025-09-24 17:18:47,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:47,308 INFO Out dated connection ,size=0 + +2025-09-24 17:18:47,308 INFO Connection check task end + +2025-09-24 17:18:47,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:50,310 INFO Connection check task start + +2025-09-24 17:18:50,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:50,310 INFO Out dated connection ,size=0 + +2025-09-24 17:18:50,310 INFO Connection check task end + +2025-09-24 17:18:50,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:53,312 INFO Connection check task start + +2025-09-24 17:18:53,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:53,312 INFO Out dated connection ,size=0 + +2025-09-24 17:18:53,313 INFO Connection check task end + +2025-09-24 17:18:53,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:56,313 INFO Connection check task start + +2025-09-24 17:18:56,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:56,314 INFO Out dated connection ,size=0 + +2025-09-24 17:18:56,314 INFO Connection check task end + +2025-09-24 17:18:56,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:18:59,314 INFO Connection check task start + +2025-09-24 17:18:59,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:18:59,314 INFO Out dated connection ,size=0 + +2025-09-24 17:18:59,314 INFO Connection check task end + +2025-09-24 17:18:59,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:02,316 INFO Connection check task start + +2025-09-24 17:19:02,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:02,316 INFO Out dated connection ,size=0 + +2025-09-24 17:19:02,316 INFO Connection check task end + +2025-09-24 17:19:02,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:05,316 INFO Connection check task start + +2025-09-24 17:19:05,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:05,316 INFO Out dated connection ,size=0 + +2025-09-24 17:19:05,316 INFO Connection check task end + +2025-09-24 17:19:05,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:08,317 INFO Connection check task start + +2025-09-24 17:19:08,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:08,317 INFO Out dated connection ,size=0 + +2025-09-24 17:19:08,317 INFO Connection check task end + +2025-09-24 17:19:08,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:11,317 INFO Connection check task start + +2025-09-24 17:19:11,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:11,318 INFO Out dated connection ,size=0 + +2025-09-24 17:19:11,318 INFO Connection check task end + +2025-09-24 17:19:11,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:14,319 INFO Connection check task start + +2025-09-24 17:19:14,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:14,319 INFO Out dated connection ,size=0 + +2025-09-24 17:19:14,319 INFO Connection check task end + +2025-09-24 17:19:14,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:17,322 INFO Connection check task start + +2025-09-24 17:19:17,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:17,322 INFO Out dated connection ,size=0 + +2025-09-24 17:19:17,322 INFO Connection check task end + +2025-09-24 17:19:17,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:20,322 INFO Connection check task start + +2025-09-24 17:19:20,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:20,322 INFO Out dated connection ,size=0 + +2025-09-24 17:19:20,322 INFO Connection check task end + +2025-09-24 17:19:20,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:23,323 INFO Connection check task start + +2025-09-24 17:19:23,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:23,323 INFO Out dated connection ,size=0 + +2025-09-24 17:19:23,323 INFO Connection check task end + +2025-09-24 17:19:23,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:26,324 INFO Connection check task start + +2025-09-24 17:19:26,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:26,324 INFO Out dated connection ,size=0 + +2025-09-24 17:19:26,324 INFO Connection check task end + +2025-09-24 17:19:26,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:29,324 INFO Connection check task start + +2025-09-24 17:19:29,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:29,324 INFO Out dated connection ,size=0 + +2025-09-24 17:19:29,324 INFO Connection check task end + +2025-09-24 17:19:29,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:32,325 INFO Connection check task start + +2025-09-24 17:19:32,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:32,325 INFO Out dated connection ,size=0 + +2025-09-24 17:19:32,325 INFO Connection check task end + +2025-09-24 17:19:32,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:35,325 INFO Connection check task start + +2025-09-24 17:19:35,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:35,325 INFO Out dated connection ,size=0 + +2025-09-24 17:19:35,325 INFO Connection check task end + +2025-09-24 17:19:35,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:38,327 INFO Connection check task start + +2025-09-24 17:19:38,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:38,327 INFO Out dated connection ,size=0 + +2025-09-24 17:19:38,327 INFO Connection check task end + +2025-09-24 17:19:38,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:41,328 INFO Connection check task start + +2025-09-24 17:19:41,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:41,328 INFO Out dated connection ,size=0 + +2025-09-24 17:19:41,328 INFO Connection check task end + +2025-09-24 17:19:41,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:44,329 INFO Connection check task start + +2025-09-24 17:19:44,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:44,329 INFO Out dated connection ,size=0 + +2025-09-24 17:19:44,329 INFO Connection check task end + +2025-09-24 17:19:44,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:47,329 INFO Connection check task start + +2025-09-24 17:19:47,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:47,330 INFO Out dated connection ,size=0 + +2025-09-24 17:19:47,330 INFO Connection check task end + +2025-09-24 17:19:47,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:50,330 INFO Connection check task start + +2025-09-24 17:19:50,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:50,330 INFO Out dated connection ,size=0 + +2025-09-24 17:19:50,330 INFO Connection check task end + +2025-09-24 17:19:50,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:53,331 INFO Connection check task start + +2025-09-24 17:19:53,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:53,331 INFO Out dated connection ,size=0 + +2025-09-24 17:19:53,331 INFO Connection check task end + +2025-09-24 17:19:53,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:56,331 INFO Connection check task start + +2025-09-24 17:19:56,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:56,332 INFO Out dated connection ,size=0 + +2025-09-24 17:19:56,332 INFO Connection check task end + +2025-09-24 17:19:56,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:19:59,332 INFO Connection check task start + +2025-09-24 17:19:59,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:19:59,332 INFO Out dated connection ,size=0 + +2025-09-24 17:19:59,332 INFO Connection check task end + +2025-09-24 17:19:59,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:02,333 INFO Connection check task start + +2025-09-24 17:20:02,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:02,333 INFO Out dated connection ,size=0 + +2025-09-24 17:20:02,333 INFO Connection check task end + +2025-09-24 17:20:02,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:05,334 INFO Connection check task start + +2025-09-24 17:20:05,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:05,334 INFO Out dated connection ,size=0 + +2025-09-24 17:20:05,334 INFO Connection check task end + +2025-09-24 17:20:05,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:08,334 INFO Connection check task start + +2025-09-24 17:20:08,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:08,334 INFO Out dated connection ,size=0 + +2025-09-24 17:20:08,334 INFO Connection check task end + +2025-09-24 17:20:08,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:11,335 INFO Connection check task start + +2025-09-24 17:20:11,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:11,335 INFO Out dated connection ,size=0 + +2025-09-24 17:20:11,335 INFO Connection check task end + +2025-09-24 17:20:11,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:14,335 INFO Connection check task start + +2025-09-24 17:20:14,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:14,335 INFO Out dated connection ,size=0 + +2025-09-24 17:20:14,335 INFO Connection check task end + +2025-09-24 17:20:14,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:17,336 INFO Connection check task start + +2025-09-24 17:20:17,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:17,337 INFO Out dated connection ,size=0 + +2025-09-24 17:20:17,337 INFO Connection check task end + +2025-09-24 17:20:17,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:20,337 INFO Connection check task start + +2025-09-24 17:20:20,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:20,337 INFO Out dated connection ,size=0 + +2025-09-24 17:20:20,337 INFO Connection check task end + +2025-09-24 17:20:20,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:23,338 INFO Connection check task start + +2025-09-24 17:20:23,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:23,339 INFO Out dated connection ,size=0 + +2025-09-24 17:20:23,339 INFO Connection check task end + +2025-09-24 17:20:23,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:26,339 INFO Connection check task start + +2025-09-24 17:20:26,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:26,339 INFO Out dated connection ,size=0 + +2025-09-24 17:20:26,339 INFO Connection check task end + +2025-09-24 17:20:26,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:29,340 INFO Connection check task start + +2025-09-24 17:20:29,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:29,340 INFO Out dated connection ,size=0 + +2025-09-24 17:20:29,340 INFO Connection check task end + +2025-09-24 17:20:29,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:32,340 INFO Connection check task start + +2025-09-24 17:20:32,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:32,340 INFO Out dated connection ,size=0 + +2025-09-24 17:20:32,340 INFO Connection check task end + +2025-09-24 17:20:32,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:35,341 INFO Connection check task start + +2025-09-24 17:20:35,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:35,341 INFO Out dated connection ,size=0 + +2025-09-24 17:20:35,341 INFO Connection check task end + +2025-09-24 17:20:35,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:38,341 INFO Connection check task start + +2025-09-24 17:20:38,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:38,341 INFO Out dated connection ,size=0 + +2025-09-24 17:20:38,341 INFO Connection check task end + +2025-09-24 17:20:38,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:41,341 INFO Connection check task start + +2025-09-24 17:20:41,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:41,342 INFO Out dated connection ,size=0 + +2025-09-24 17:20:41,342 INFO Connection check task end + +2025-09-24 17:20:41,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:44,342 INFO Connection check task start + +2025-09-24 17:20:44,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:44,342 INFO Out dated connection ,size=0 + +2025-09-24 17:20:44,342 INFO Connection check task end + +2025-09-24 17:20:44,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:47,344 INFO Connection check task start + +2025-09-24 17:20:47,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:47,344 INFO Out dated connection ,size=0 + +2025-09-24 17:20:47,344 INFO Connection check task end + +2025-09-24 17:20:47,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:50,345 INFO Connection check task start + +2025-09-24 17:20:50,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:50,345 INFO Out dated connection ,size=0 + +2025-09-24 17:20:50,345 INFO Connection check task end + +2025-09-24 17:20:50,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:53,347 INFO Connection check task start + +2025-09-24 17:20:53,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:53,347 INFO Out dated connection ,size=0 + +2025-09-24 17:20:53,347 INFO Connection check task end + +2025-09-24 17:20:53,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:56,349 INFO Connection check task start + +2025-09-24 17:20:56,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:56,349 INFO Out dated connection ,size=0 + +2025-09-24 17:20:56,349 INFO Connection check task end + +2025-09-24 17:20:56,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:20:59,349 INFO Connection check task start + +2025-09-24 17:20:59,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:20:59,349 INFO Out dated connection ,size=0 + +2025-09-24 17:20:59,349 INFO Connection check task end + +2025-09-24 17:20:59,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:02,350 INFO Connection check task start + +2025-09-24 17:21:02,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:02,350 INFO Out dated connection ,size=0 + +2025-09-24 17:21:02,350 INFO Connection check task end + +2025-09-24 17:21:02,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:05,351 INFO Connection check task start + +2025-09-24 17:21:05,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:05,351 INFO Out dated connection ,size=0 + +2025-09-24 17:21:05,351 INFO Connection check task end + +2025-09-24 17:21:05,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:08,353 INFO Connection check task start + +2025-09-24 17:21:08,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:08,354 INFO Out dated connection ,size=0 + +2025-09-24 17:21:08,354 INFO Connection check task end + +2025-09-24 17:21:08,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:11,356 INFO Connection check task start + +2025-09-24 17:21:11,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:11,356 INFO Out dated connection ,size=0 + +2025-09-24 17:21:11,356 INFO Connection check task end + +2025-09-24 17:21:11,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:14,357 INFO Connection check task start + +2025-09-24 17:21:14,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:14,358 INFO Out dated connection ,size=0 + +2025-09-24 17:21:14,358 INFO Connection check task end + +2025-09-24 17:21:14,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:17,358 INFO Connection check task start + +2025-09-24 17:21:17,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:17,358 INFO Out dated connection ,size=0 + +2025-09-24 17:21:17,358 INFO Connection check task end + +2025-09-24 17:21:17,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:20,358 INFO Connection check task start + +2025-09-24 17:21:20,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:20,359 INFO Out dated connection ,size=0 + +2025-09-24 17:21:20,359 INFO Connection check task end + +2025-09-24 17:21:20,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:23,360 INFO Connection check task start + +2025-09-24 17:21:23,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:23,360 INFO Out dated connection ,size=0 + +2025-09-24 17:21:23,360 INFO Connection check task end + +2025-09-24 17:21:23,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:26,362 INFO Connection check task start + +2025-09-24 17:21:26,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:26,362 INFO Out dated connection ,size=0 + +2025-09-24 17:21:26,363 INFO Connection check task end + +2025-09-24 17:21:26,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:29,364 INFO Connection check task start + +2025-09-24 17:21:29,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:29,364 INFO Out dated connection ,size=0 + +2025-09-24 17:21:29,364 INFO Connection check task end + +2025-09-24 17:21:29,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:32,365 INFO Connection check task start + +2025-09-24 17:21:32,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:32,365 INFO Out dated connection ,size=0 + +2025-09-24 17:21:32,365 INFO Connection check task end + +2025-09-24 17:21:32,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:35,366 INFO Connection check task start + +2025-09-24 17:21:35,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:35,366 INFO Out dated connection ,size=0 + +2025-09-24 17:21:35,366 INFO Connection check task end + +2025-09-24 17:21:35,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:38,367 INFO Connection check task start + +2025-09-24 17:21:38,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:38,367 INFO Out dated connection ,size=0 + +2025-09-24 17:21:38,367 INFO Connection check task end + +2025-09-24 17:21:38,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:41,369 INFO Connection check task start + +2025-09-24 17:21:41,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:41,369 INFO Out dated connection ,size=0 + +2025-09-24 17:21:41,369 INFO Connection check task end + +2025-09-24 17:21:41,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:44,371 INFO Connection check task start + +2025-09-24 17:21:44,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:44,371 INFO Out dated connection ,size=0 + +2025-09-24 17:21:44,371 INFO Connection check task end + +2025-09-24 17:21:44,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:47,372 INFO Connection check task start + +2025-09-24 17:21:47,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:47,372 INFO Out dated connection ,size=0 + +2025-09-24 17:21:47,372 INFO Connection check task end + +2025-09-24 17:21:47,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:50,372 INFO Connection check task start + +2025-09-24 17:21:50,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:50,373 INFO Out dated connection ,size=0 + +2025-09-24 17:21:50,373 INFO Connection check task end + +2025-09-24 17:21:50,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:53,374 INFO Connection check task start + +2025-09-24 17:21:53,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:53,375 INFO Out dated connection ,size=0 + +2025-09-24 17:21:53,375 INFO Connection check task end + +2025-09-24 17:21:53,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:56,376 INFO Connection check task start + +2025-09-24 17:21:56,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:56,376 INFO Out dated connection ,size=0 + +2025-09-24 17:21:56,376 INFO Connection check task end + +2025-09-24 17:21:56,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:21:59,377 INFO Connection check task start + +2025-09-24 17:21:59,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:21:59,377 INFO Out dated connection ,size=0 + +2025-09-24 17:21:59,377 INFO Connection check task end + +2025-09-24 17:21:59,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:02,377 INFO Connection check task start + +2025-09-24 17:22:02,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:02,378 INFO Out dated connection ,size=0 + +2025-09-24 17:22:02,378 INFO Connection check task end + +2025-09-24 17:22:02,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:05,378 INFO Connection check task start + +2025-09-24 17:22:05,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:05,378 INFO Out dated connection ,size=0 + +2025-09-24 17:22:05,379 INFO Connection check task end + +2025-09-24 17:22:05,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:08,380 INFO Connection check task start + +2025-09-24 17:22:08,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:08,380 INFO Out dated connection ,size=0 + +2025-09-24 17:22:08,380 INFO Connection check task end + +2025-09-24 17:22:08,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:11,382 INFO Connection check task start + +2025-09-24 17:22:11,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:11,382 INFO Out dated connection ,size=0 + +2025-09-24 17:22:11,382 INFO Connection check task end + +2025-09-24 17:22:11,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:14,382 INFO Connection check task start + +2025-09-24 17:22:14,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:14,382 INFO Out dated connection ,size=0 + +2025-09-24 17:22:14,382 INFO Connection check task end + +2025-09-24 17:22:14,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:17,384 INFO Connection check task start + +2025-09-24 17:22:17,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:17,385 INFO Out dated connection ,size=0 + +2025-09-24 17:22:17,385 INFO Connection check task end + +2025-09-24 17:22:17,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:20,386 INFO Connection check task start + +2025-09-24 17:22:20,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:20,386 INFO Out dated connection ,size=0 + +2025-09-24 17:22:20,386 INFO Connection check task end + +2025-09-24 17:22:20,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:23,387 INFO Connection check task start + +2025-09-24 17:22:23,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:23,388 INFO Out dated connection ,size=0 + +2025-09-24 17:22:23,388 INFO Connection check task end + +2025-09-24 17:22:23,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:26,390 INFO Connection check task start + +2025-09-24 17:22:26,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:26,390 INFO Out dated connection ,size=0 + +2025-09-24 17:22:26,391 INFO Connection check task end + +2025-09-24 17:22:26,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:29,392 INFO Connection check task start + +2025-09-24 17:22:29,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:29,393 INFO Out dated connection ,size=0 + +2025-09-24 17:22:29,393 INFO Connection check task end + +2025-09-24 17:22:29,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:32,395 INFO Connection check task start + +2025-09-24 17:22:32,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:32,395 INFO Out dated connection ,size=0 + +2025-09-24 17:22:32,395 INFO Connection check task end + +2025-09-24 17:22:32,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:35,395 INFO Connection check task start + +2025-09-24 17:22:35,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:35,395 INFO Out dated connection ,size=0 + +2025-09-24 17:22:35,395 INFO Connection check task end + +2025-09-24 17:22:35,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:38,396 INFO Connection check task start + +2025-09-24 17:22:38,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:38,396 INFO Out dated connection ,size=0 + +2025-09-24 17:22:38,396 INFO Connection check task end + +2025-09-24 17:22:38,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:41,402 INFO Connection check task start + +2025-09-24 17:22:41,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:41,402 INFO Out dated connection ,size=0 + +2025-09-24 17:22:41,402 INFO Connection check task end + +2025-09-24 17:22:41,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:44,404 INFO Connection check task start + +2025-09-24 17:22:44,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:44,404 INFO Out dated connection ,size=0 + +2025-09-24 17:22:44,404 INFO Connection check task end + +2025-09-24 17:22:44,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:47,406 INFO Connection check task start + +2025-09-24 17:22:47,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:47,407 INFO Out dated connection ,size=0 + +2025-09-24 17:22:47,407 INFO Connection check task end + +2025-09-24 17:22:47,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:50,407 INFO Connection check task start + +2025-09-24 17:22:50,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:50,407 INFO Out dated connection ,size=0 + +2025-09-24 17:22:50,407 INFO Connection check task end + +2025-09-24 17:22:50,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:53,407 INFO Connection check task start + +2025-09-24 17:22:53,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:53,408 INFO Out dated connection ,size=0 + +2025-09-24 17:22:53,408 INFO Connection check task end + +2025-09-24 17:22:53,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:56,410 INFO Connection check task start + +2025-09-24 17:22:56,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:56,410 INFO Out dated connection ,size=0 + +2025-09-24 17:22:56,410 INFO Connection check task end + +2025-09-24 17:22:56,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:22:59,410 INFO Connection check task start + +2025-09-24 17:22:59,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:22:59,411 INFO Out dated connection ,size=0 + +2025-09-24 17:22:59,411 INFO Connection check task end + +2025-09-24 17:22:59,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:02,413 INFO Connection check task start + +2025-09-24 17:23:02,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:02,413 INFO Out dated connection ,size=0 + +2025-09-24 17:23:02,413 INFO Connection check task end + +2025-09-24 17:23:02,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:05,413 INFO Connection check task start + +2025-09-24 17:23:05,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:05,414 INFO Out dated connection ,size=0 + +2025-09-24 17:23:05,414 INFO Connection check task end + +2025-09-24 17:23:05,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:08,414 INFO Connection check task start + +2025-09-24 17:23:08,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:08,414 INFO Out dated connection ,size=0 + +2025-09-24 17:23:08,414 INFO Connection check task end + +2025-09-24 17:23:08,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:11,416 INFO Connection check task start + +2025-09-24 17:23:11,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:11,416 INFO Out dated connection ,size=0 + +2025-09-24 17:23:11,416 INFO Connection check task end + +2025-09-24 17:23:11,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:14,417 INFO Connection check task start + +2025-09-24 17:23:14,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:14,417 INFO Out dated connection ,size=0 + +2025-09-24 17:23:14,417 INFO Connection check task end + +2025-09-24 17:23:14,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:17,417 INFO Connection check task start + +2025-09-24 17:23:17,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:17,417 INFO Out dated connection ,size=0 + +2025-09-24 17:23:17,417 INFO Connection check task end + +2025-09-24 17:23:17,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:20,417 INFO Connection check task start + +2025-09-24 17:23:20,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:20,417 INFO Out dated connection ,size=0 + +2025-09-24 17:23:20,417 INFO Connection check task end + +2025-09-24 17:23:20,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:23,418 INFO Connection check task start + +2025-09-24 17:23:23,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:23,419 INFO Out dated connection ,size=0 + +2025-09-24 17:23:23,419 INFO Connection check task end + +2025-09-24 17:23:23,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:26,420 INFO Connection check task start + +2025-09-24 17:23:26,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:26,420 INFO Out dated connection ,size=0 + +2025-09-24 17:23:26,420 INFO Connection check task end + +2025-09-24 17:23:26,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:29,421 INFO Connection check task start + +2025-09-24 17:23:29,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:29,421 INFO Out dated connection ,size=0 + +2025-09-24 17:23:29,421 INFO Connection check task end + +2025-09-24 17:23:29,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:32,423 INFO Connection check task start + +2025-09-24 17:23:32,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:32,423 INFO Out dated connection ,size=0 + +2025-09-24 17:23:32,423 INFO Connection check task end + +2025-09-24 17:23:32,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:35,425 INFO Connection check task start + +2025-09-24 17:23:35,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:35,425 INFO Out dated connection ,size=0 + +2025-09-24 17:23:35,425 INFO Connection check task end + +2025-09-24 17:23:35,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:38,426 INFO Connection check task start + +2025-09-24 17:23:38,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:38,426 INFO Out dated connection ,size=0 + +2025-09-24 17:23:38,426 INFO Connection check task end + +2025-09-24 17:23:38,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:41,428 INFO Connection check task start + +2025-09-24 17:23:41,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:41,428 INFO Out dated connection ,size=0 + +2025-09-24 17:23:41,428 INFO Connection check task end + +2025-09-24 17:23:41,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:44,429 INFO Connection check task start + +2025-09-24 17:23:44,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:44,430 INFO Out dated connection ,size=0 + +2025-09-24 17:23:44,430 INFO Connection check task end + +2025-09-24 17:23:44,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:47,431 INFO Connection check task start + +2025-09-24 17:23:47,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:47,431 INFO Out dated connection ,size=0 + +2025-09-24 17:23:47,431 INFO Connection check task end + +2025-09-24 17:23:47,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:50,432 INFO Connection check task start + +2025-09-24 17:23:50,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:50,432 INFO Out dated connection ,size=0 + +2025-09-24 17:23:50,432 INFO Connection check task end + +2025-09-24 17:23:50,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:53,434 INFO Connection check task start + +2025-09-24 17:23:53,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:53,434 INFO Out dated connection ,size=0 + +2025-09-24 17:23:53,434 INFO Connection check task end + +2025-09-24 17:23:53,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:56,436 INFO Connection check task start + +2025-09-24 17:23:56,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:56,436 INFO Out dated connection ,size=0 + +2025-09-24 17:23:56,436 INFO Connection check task end + +2025-09-24 17:23:56,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:23:59,438 INFO Connection check task start + +2025-09-24 17:23:59,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:23:59,438 INFO Out dated connection ,size=0 + +2025-09-24 17:23:59,438 INFO Connection check task end + +2025-09-24 17:23:59,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:02,440 INFO Connection check task start + +2025-09-24 17:24:02,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:02,440 INFO Out dated connection ,size=0 + +2025-09-24 17:24:02,440 INFO Connection check task end + +2025-09-24 17:24:02,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:05,442 INFO Connection check task start + +2025-09-24 17:24:05,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:05,442 INFO Out dated connection ,size=0 + +2025-09-24 17:24:05,442 INFO Connection check task end + +2025-09-24 17:24:05,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:08,442 INFO Connection check task start + +2025-09-24 17:24:08,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:08,443 INFO Out dated connection ,size=0 + +2025-09-24 17:24:08,443 INFO Connection check task end + +2025-09-24 17:24:08,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:11,443 INFO Connection check task start + +2025-09-24 17:24:11,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:11,443 INFO Out dated connection ,size=0 + +2025-09-24 17:24:11,443 INFO Connection check task end + +2025-09-24 17:24:11,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:14,444 INFO Connection check task start + +2025-09-24 17:24:14,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:14,444 INFO Out dated connection ,size=0 + +2025-09-24 17:24:14,444 INFO Connection check task end + +2025-09-24 17:24:14,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:17,444 INFO Connection check task start + +2025-09-24 17:24:17,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:17,445 INFO Out dated connection ,size=0 + +2025-09-24 17:24:17,445 INFO Connection check task end + +2025-09-24 17:24:17,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:20,445 INFO Connection check task start + +2025-09-24 17:24:20,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:20,445 INFO Out dated connection ,size=0 + +2025-09-24 17:24:20,445 INFO Connection check task end + +2025-09-24 17:24:20,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:23,445 INFO Connection check task start + +2025-09-24 17:24:23,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:23,446 INFO Out dated connection ,size=0 + +2025-09-24 17:24:23,446 INFO Connection check task end + +2025-09-24 17:24:23,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:26,446 INFO Connection check task start + +2025-09-24 17:24:26,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:26,446 INFO Out dated connection ,size=0 + +2025-09-24 17:24:26,446 INFO Connection check task end + +2025-09-24 17:24:26,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:29,446 INFO Connection check task start + +2025-09-24 17:24:29,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:29,446 INFO Out dated connection ,size=0 + +2025-09-24 17:24:29,446 INFO Connection check task end + +2025-09-24 17:24:29,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:32,447 INFO Connection check task start + +2025-09-24 17:24:32,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:32,447 INFO Out dated connection ,size=0 + +2025-09-24 17:24:32,447 INFO Connection check task end + +2025-09-24 17:24:32,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:35,447 INFO Connection check task start + +2025-09-24 17:24:35,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:35,447 INFO Out dated connection ,size=0 + +2025-09-24 17:24:35,447 INFO Connection check task end + +2025-09-24 17:24:35,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:38,448 INFO Connection check task start + +2025-09-24 17:24:38,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:38,448 INFO Out dated connection ,size=0 + +2025-09-24 17:24:38,448 INFO Connection check task end + +2025-09-24 17:24:38,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:41,449 INFO Connection check task start + +2025-09-24 17:24:41,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:41,449 INFO Out dated connection ,size=0 + +2025-09-24 17:24:41,449 INFO Connection check task end + +2025-09-24 17:24:41,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:44,449 INFO Connection check task start + +2025-09-24 17:24:44,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:44,450 INFO Out dated connection ,size=0 + +2025-09-24 17:24:44,450 INFO Connection check task end + +2025-09-24 17:24:44,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:47,451 INFO Connection check task start + +2025-09-24 17:24:47,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:47,452 INFO Out dated connection ,size=0 + +2025-09-24 17:24:47,452 INFO Connection check task end + +2025-09-24 17:24:47,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:50,452 INFO Connection check task start + +2025-09-24 17:24:50,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:50,452 INFO Out dated connection ,size=0 + +2025-09-24 17:24:50,452 INFO Connection check task end + +2025-09-24 17:24:50,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:53,453 INFO Connection check task start + +2025-09-24 17:24:53,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:53,453 INFO Out dated connection ,size=0 + +2025-09-24 17:24:53,453 INFO Connection check task end + +2025-09-24 17:24:53,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:56,453 INFO Connection check task start + +2025-09-24 17:24:56,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:56,453 INFO Out dated connection ,size=0 + +2025-09-24 17:24:56,453 INFO Connection check task end + +2025-09-24 17:24:56,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:24:59,455 INFO Connection check task start + +2025-09-24 17:24:59,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:24:59,455 INFO Out dated connection ,size=0 + +2025-09-24 17:24:59,455 INFO Connection check task end + +2025-09-24 17:24:59,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:02,456 INFO Connection check task start + +2025-09-24 17:25:02,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:02,456 INFO Out dated connection ,size=0 + +2025-09-24 17:25:02,456 INFO Connection check task end + +2025-09-24 17:25:02,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:05,457 INFO Connection check task start + +2025-09-24 17:25:05,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:05,457 INFO Out dated connection ,size=0 + +2025-09-24 17:25:05,457 INFO Connection check task end + +2025-09-24 17:25:05,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:08,459 INFO Connection check task start + +2025-09-24 17:25:08,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:08,459 INFO Out dated connection ,size=0 + +2025-09-24 17:25:08,459 INFO Connection check task end + +2025-09-24 17:25:08,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:11,461 INFO Connection check task start + +2025-09-24 17:25:11,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:11,461 INFO Out dated connection ,size=0 + +2025-09-24 17:25:11,461 INFO Connection check task end + +2025-09-24 17:25:11,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:14,461 INFO Connection check task start + +2025-09-24 17:25:14,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:14,461 INFO Out dated connection ,size=0 + +2025-09-24 17:25:14,461 INFO Connection check task end + +2025-09-24 17:25:14,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:17,462 INFO Connection check task start + +2025-09-24 17:25:17,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:17,462 INFO Out dated connection ,size=0 + +2025-09-24 17:25:17,462 INFO Connection check task end + +2025-09-24 17:25:17,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:20,463 INFO Connection check task start + +2025-09-24 17:25:20,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:20,463 INFO Out dated connection ,size=0 + +2025-09-24 17:25:20,463 INFO Connection check task end + +2025-09-24 17:25:20,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:23,465 INFO Connection check task start + +2025-09-24 17:25:23,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:23,466 INFO Out dated connection ,size=0 + +2025-09-24 17:25:23,466 INFO Connection check task end + +2025-09-24 17:25:23,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:26,468 INFO Connection check task start + +2025-09-24 17:25:26,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:26,468 INFO Out dated connection ,size=0 + +2025-09-24 17:25:26,468 INFO Connection check task end + +2025-09-24 17:25:26,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:29,469 INFO Connection check task start + +2025-09-24 17:25:29,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:29,469 INFO Out dated connection ,size=0 + +2025-09-24 17:25:29,469 INFO Connection check task end + +2025-09-24 17:25:29,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:32,472 INFO Connection check task start + +2025-09-24 17:25:32,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:32,472 INFO Out dated connection ,size=0 + +2025-09-24 17:25:32,472 INFO Connection check task end + +2025-09-24 17:25:32,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:35,472 INFO Connection check task start + +2025-09-24 17:25:35,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:35,472 INFO Out dated connection ,size=0 + +2025-09-24 17:25:35,472 INFO Connection check task end + +2025-09-24 17:25:35,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:38,474 INFO Connection check task start + +2025-09-24 17:25:38,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:38,474 INFO Out dated connection ,size=0 + +2025-09-24 17:25:38,474 INFO Connection check task end + +2025-09-24 17:25:38,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:41,476 INFO Connection check task start + +2025-09-24 17:25:41,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:41,477 INFO Out dated connection ,size=0 + +2025-09-24 17:25:41,477 INFO Connection check task end + +2025-09-24 17:25:41,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:44,479 INFO Connection check task start + +2025-09-24 17:25:44,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:44,479 INFO Out dated connection ,size=0 + +2025-09-24 17:25:44,479 INFO Connection check task end + +2025-09-24 17:25:44,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:47,480 INFO Connection check task start + +2025-09-24 17:25:47,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:47,480 INFO Out dated connection ,size=0 + +2025-09-24 17:25:47,480 INFO Connection check task end + +2025-09-24 17:25:47,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:50,481 INFO Connection check task start + +2025-09-24 17:25:50,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:50,481 INFO Out dated connection ,size=0 + +2025-09-24 17:25:50,481 INFO Connection check task end + +2025-09-24 17:25:50,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:53,482 INFO Connection check task start + +2025-09-24 17:25:53,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:53,482 INFO Out dated connection ,size=0 + +2025-09-24 17:25:53,482 INFO Connection check task end + +2025-09-24 17:25:53,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:56,484 INFO Connection check task start + +2025-09-24 17:25:56,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:56,484 INFO Out dated connection ,size=0 + +2025-09-24 17:25:56,484 INFO Connection check task end + +2025-09-24 17:25:56,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:25:59,485 INFO Connection check task start + +2025-09-24 17:25:59,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:25:59,485 INFO Out dated connection ,size=0 + +2025-09-24 17:25:59,485 INFO Connection check task end + +2025-09-24 17:25:59,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:02,485 INFO Connection check task start + +2025-09-24 17:26:02,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:02,485 INFO Out dated connection ,size=0 + +2025-09-24 17:26:02,485 INFO Connection check task end + +2025-09-24 17:26:02,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:05,486 INFO Connection check task start + +2025-09-24 17:26:05,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:05,486 INFO Out dated connection ,size=0 + +2025-09-24 17:26:05,486 INFO Connection check task end + +2025-09-24 17:26:05,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:08,487 INFO Connection check task start + +2025-09-24 17:26:08,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:08,487 INFO Out dated connection ,size=0 + +2025-09-24 17:26:08,487 INFO Connection check task end + +2025-09-24 17:26:08,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:11,487 INFO Connection check task start + +2025-09-24 17:26:11,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:11,488 INFO Out dated connection ,size=0 + +2025-09-24 17:26:11,488 INFO Connection check task end + +2025-09-24 17:26:11,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:14,490 INFO Connection check task start + +2025-09-24 17:26:14,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:14,490 INFO Out dated connection ,size=0 + +2025-09-24 17:26:14,490 INFO Connection check task end + +2025-09-24 17:26:14,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:17,492 INFO Connection check task start + +2025-09-24 17:26:17,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:17,492 INFO Out dated connection ,size=0 + +2025-09-24 17:26:17,492 INFO Connection check task end + +2025-09-24 17:26:17,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:20,492 INFO Connection check task start + +2025-09-24 17:26:20,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:20,492 INFO Out dated connection ,size=0 + +2025-09-24 17:26:20,493 INFO Connection check task end + +2025-09-24 17:26:20,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:23,493 INFO Connection check task start + +2025-09-24 17:26:23,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:23,493 INFO Out dated connection ,size=0 + +2025-09-24 17:26:23,493 INFO Connection check task end + +2025-09-24 17:26:23,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:26,494 INFO Connection check task start + +2025-09-24 17:26:26,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:26,494 INFO Out dated connection ,size=0 + +2025-09-24 17:26:26,494 INFO Connection check task end + +2025-09-24 17:26:26,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:29,494 INFO Connection check task start + +2025-09-24 17:26:29,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:29,494 INFO Out dated connection ,size=0 + +2025-09-24 17:26:29,495 INFO Connection check task end + +2025-09-24 17:26:29,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:32,495 INFO Connection check task start + +2025-09-24 17:26:32,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:32,495 INFO Out dated connection ,size=0 + +2025-09-24 17:26:32,495 INFO Connection check task end + +2025-09-24 17:26:32,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:35,496 INFO Connection check task start + +2025-09-24 17:26:35,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:35,496 INFO Out dated connection ,size=0 + +2025-09-24 17:26:35,496 INFO Connection check task end + +2025-09-24 17:26:35,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:38,498 INFO Connection check task start + +2025-09-24 17:26:38,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:38,498 INFO Out dated connection ,size=0 + +2025-09-24 17:26:38,498 INFO Connection check task end + +2025-09-24 17:26:38,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:41,498 INFO Connection check task start + +2025-09-24 17:26:41,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:41,499 INFO Out dated connection ,size=0 + +2025-09-24 17:26:41,499 INFO Connection check task end + +2025-09-24 17:26:41,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:44,500 INFO Connection check task start + +2025-09-24 17:26:44,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:44,501 INFO Out dated connection ,size=0 + +2025-09-24 17:26:44,501 INFO Connection check task end + +2025-09-24 17:26:44,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:47,501 INFO Connection check task start + +2025-09-24 17:26:47,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:47,501 INFO Out dated connection ,size=0 + +2025-09-24 17:26:47,501 INFO Connection check task end + +2025-09-24 17:26:47,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:50,502 INFO Connection check task start + +2025-09-24 17:26:50,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:50,503 INFO Out dated connection ,size=0 + +2025-09-24 17:26:50,503 INFO Connection check task end + +2025-09-24 17:26:50,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:53,503 INFO Connection check task start + +2025-09-24 17:26:53,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:53,503 INFO Out dated connection ,size=0 + +2025-09-24 17:26:53,503 INFO Connection check task end + +2025-09-24 17:26:53,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:56,504 INFO Connection check task start + +2025-09-24 17:26:56,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:56,504 INFO Out dated connection ,size=0 + +2025-09-24 17:26:56,504 INFO Connection check task end + +2025-09-24 17:26:56,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:26:59,506 INFO Connection check task start + +2025-09-24 17:26:59,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:26:59,506 INFO Out dated connection ,size=0 + +2025-09-24 17:26:59,506 INFO Connection check task end + +2025-09-24 17:26:59,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:02,506 INFO Connection check task start + +2025-09-24 17:27:02,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:02,507 INFO Out dated connection ,size=0 + +2025-09-24 17:27:02,507 INFO Connection check task end + +2025-09-24 17:27:02,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:05,507 INFO Connection check task start + +2025-09-24 17:27:05,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:05,507 INFO Out dated connection ,size=0 + +2025-09-24 17:27:05,507 INFO Connection check task end + +2025-09-24 17:27:05,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:08,508 INFO Connection check task start + +2025-09-24 17:27:08,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:08,508 INFO Out dated connection ,size=0 + +2025-09-24 17:27:08,508 INFO Connection check task end + +2025-09-24 17:27:08,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:11,510 INFO Connection check task start + +2025-09-24 17:27:11,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:11,511 INFO Out dated connection ,size=0 + +2025-09-24 17:27:11,511 INFO Connection check task end + +2025-09-24 17:27:11,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:14,511 INFO Connection check task start + +2025-09-24 17:27:14,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:14,511 INFO Out dated connection ,size=0 + +2025-09-24 17:27:14,511 INFO Connection check task end + +2025-09-24 17:27:14,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:17,513 INFO Connection check task start + +2025-09-24 17:27:17,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:17,513 INFO Out dated connection ,size=0 + +2025-09-24 17:27:17,513 INFO Connection check task end + +2025-09-24 17:27:17,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:20,515 INFO Connection check task start + +2025-09-24 17:27:20,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:20,515 INFO Out dated connection ,size=0 + +2025-09-24 17:27:20,515 INFO Connection check task end + +2025-09-24 17:27:20,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:23,517 INFO Connection check task start + +2025-09-24 17:27:23,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:23,517 INFO Out dated connection ,size=0 + +2025-09-24 17:27:23,517 INFO Connection check task end + +2025-09-24 17:27:23,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:26,518 INFO Connection check task start + +2025-09-24 17:27:26,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:26,518 INFO Out dated connection ,size=0 + +2025-09-24 17:27:26,518 INFO Connection check task end + +2025-09-24 17:27:26,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:29,520 INFO Connection check task start + +2025-09-24 17:27:29,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:29,520 INFO Out dated connection ,size=0 + +2025-09-24 17:27:29,520 INFO Connection check task end + +2025-09-24 17:27:29,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:32,521 INFO Connection check task start + +2025-09-24 17:27:32,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:32,521 INFO Out dated connection ,size=0 + +2025-09-24 17:27:32,521 INFO Connection check task end + +2025-09-24 17:27:32,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:35,522 INFO Connection check task start + +2025-09-24 17:27:35,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:35,522 INFO Out dated connection ,size=0 + +2025-09-24 17:27:35,522 INFO Connection check task end + +2025-09-24 17:27:35,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:38,523 INFO Connection check task start + +2025-09-24 17:27:38,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:38,523 INFO Out dated connection ,size=0 + +2025-09-24 17:27:38,523 INFO Connection check task end + +2025-09-24 17:27:38,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:41,525 INFO Connection check task start + +2025-09-24 17:27:41,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:41,525 INFO Out dated connection ,size=0 + +2025-09-24 17:27:41,525 INFO Connection check task end + +2025-09-24 17:27:41,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:44,527 INFO Connection check task start + +2025-09-24 17:27:44,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:44,527 INFO Out dated connection ,size=0 + +2025-09-24 17:27:44,527 INFO Connection check task end + +2025-09-24 17:27:44,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:47,529 INFO Connection check task start + +2025-09-24 17:27:47,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:47,529 INFO Out dated connection ,size=0 + +2025-09-24 17:27:47,529 INFO Connection check task end + +2025-09-24 17:27:47,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:50,530 INFO Connection check task start + +2025-09-24 17:27:50,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:50,531 INFO Out dated connection ,size=0 + +2025-09-24 17:27:50,531 INFO Connection check task end + +2025-09-24 17:27:50,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:53,531 INFO Connection check task start + +2025-09-24 17:27:53,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:53,531 INFO Out dated connection ,size=0 + +2025-09-24 17:27:53,531 INFO Connection check task end + +2025-09-24 17:27:53,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:56,532 INFO Connection check task start + +2025-09-24 17:27:56,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:56,532 INFO Out dated connection ,size=0 + +2025-09-24 17:27:56,532 INFO Connection check task end + +2025-09-24 17:27:56,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:27:59,532 INFO Connection check task start + +2025-09-24 17:27:59,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:27:59,532 INFO Out dated connection ,size=0 + +2025-09-24 17:27:59,532 INFO Connection check task end + +2025-09-24 17:27:59,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:02,534 INFO Connection check task start + +2025-09-24 17:28:02,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:02,534 INFO Out dated connection ,size=0 + +2025-09-24 17:28:02,535 INFO Connection check task end + +2025-09-24 17:28:02,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:05,536 INFO Connection check task start + +2025-09-24 17:28:05,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:05,536 INFO Out dated connection ,size=0 + +2025-09-24 17:28:05,536 INFO Connection check task end + +2025-09-24 17:28:05,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:08,539 INFO Connection check task start + +2025-09-24 17:28:08,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:08,541 INFO Out dated connection ,size=0 + +2025-09-24 17:28:08,541 INFO Connection check task end + +2025-09-24 17:28:08,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:11,542 INFO Connection check task start + +2025-09-24 17:28:11,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:11,543 INFO Out dated connection ,size=0 + +2025-09-24 17:28:11,543 INFO Connection check task end + +2025-09-24 17:28:11,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:14,544 INFO Connection check task start + +2025-09-24 17:28:14,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:14,544 INFO Out dated connection ,size=0 + +2025-09-24 17:28:14,544 INFO Connection check task end + +2025-09-24 17:28:14,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:17,545 INFO Connection check task start + +2025-09-24 17:28:17,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:17,545 INFO Out dated connection ,size=0 + +2025-09-24 17:28:17,545 INFO Connection check task end + +2025-09-24 17:28:17,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:20,546 INFO Connection check task start + +2025-09-24 17:28:20,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:20,546 INFO Out dated connection ,size=0 + +2025-09-24 17:28:20,546 INFO Connection check task end + +2025-09-24 17:28:20,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:23,548 INFO Connection check task start + +2025-09-24 17:28:23,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:23,548 INFO Out dated connection ,size=0 + +2025-09-24 17:28:23,548 INFO Connection check task end + +2025-09-24 17:28:23,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:26,549 INFO Connection check task start + +2025-09-24 17:28:26,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:26,549 INFO Out dated connection ,size=0 + +2025-09-24 17:28:26,549 INFO Connection check task end + +2025-09-24 17:28:26,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:29,550 INFO Connection check task start + +2025-09-24 17:28:29,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:29,550 INFO Out dated connection ,size=0 + +2025-09-24 17:28:29,550 INFO Connection check task end + +2025-09-24 17:28:29,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:32,550 INFO Connection check task start + +2025-09-24 17:28:32,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:32,551 INFO Out dated connection ,size=0 + +2025-09-24 17:28:32,551 INFO Connection check task end + +2025-09-24 17:28:32,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:35,552 INFO Connection check task start + +2025-09-24 17:28:35,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:35,552 INFO Out dated connection ,size=0 + +2025-09-24 17:28:35,552 INFO Connection check task end + +2025-09-24 17:28:35,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:38,553 INFO Connection check task start + +2025-09-24 17:28:38,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:38,553 INFO Out dated connection ,size=0 + +2025-09-24 17:28:38,553 INFO Connection check task end + +2025-09-24 17:28:38,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:41,553 INFO Connection check task start + +2025-09-24 17:28:41,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:41,553 INFO Out dated connection ,size=0 + +2025-09-24 17:28:41,553 INFO Connection check task end + +2025-09-24 17:28:41,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:44,554 INFO Connection check task start + +2025-09-24 17:28:44,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:44,554 INFO Out dated connection ,size=0 + +2025-09-24 17:28:44,554 INFO Connection check task end + +2025-09-24 17:28:44,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:47,554 INFO Connection check task start + +2025-09-24 17:28:47,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:47,554 INFO Out dated connection ,size=0 + +2025-09-24 17:28:47,554 INFO Connection check task end + +2025-09-24 17:28:47,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:50,555 INFO Connection check task start + +2025-09-24 17:28:50,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:50,555 INFO Out dated connection ,size=0 + +2025-09-24 17:28:50,555 INFO Connection check task end + +2025-09-24 17:28:50,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:53,555 INFO Connection check task start + +2025-09-24 17:28:53,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:53,555 INFO Out dated connection ,size=0 + +2025-09-24 17:28:53,555 INFO Connection check task end + +2025-09-24 17:28:53,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:56,556 INFO Connection check task start + +2025-09-24 17:28:56,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:56,556 INFO Out dated connection ,size=0 + +2025-09-24 17:28:56,556 INFO Connection check task end + +2025-09-24 17:28:56,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:28:59,557 INFO Connection check task start + +2025-09-24 17:28:59,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:28:59,557 INFO Out dated connection ,size=0 + +2025-09-24 17:28:59,557 INFO Connection check task end + +2025-09-24 17:28:59,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:02,558 INFO Connection check task start + +2025-09-24 17:29:02,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:02,558 INFO Out dated connection ,size=0 + +2025-09-24 17:29:02,558 INFO Connection check task end + +2025-09-24 17:29:02,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:05,559 INFO Connection check task start + +2025-09-24 17:29:05,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:05,559 INFO Out dated connection ,size=0 + +2025-09-24 17:29:05,559 INFO Connection check task end + +2025-09-24 17:29:05,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:08,560 INFO Connection check task start + +2025-09-24 17:29:08,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:08,560 INFO Out dated connection ,size=0 + +2025-09-24 17:29:08,560 INFO Connection check task end + +2025-09-24 17:29:08,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:11,560 INFO Connection check task start + +2025-09-24 17:29:11,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:11,560 INFO Out dated connection ,size=0 + +2025-09-24 17:29:11,561 INFO Connection check task end + +2025-09-24 17:29:11,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:14,563 INFO Connection check task start + +2025-09-24 17:29:14,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:14,563 INFO Out dated connection ,size=0 + +2025-09-24 17:29:14,563 INFO Connection check task end + +2025-09-24 17:29:14,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:17,565 INFO Connection check task start + +2025-09-24 17:29:17,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:17,565 INFO Out dated connection ,size=0 + +2025-09-24 17:29:17,565 INFO Connection check task end + +2025-09-24 17:29:17,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:20,565 INFO Connection check task start + +2025-09-24 17:29:20,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:20,565 INFO Out dated connection ,size=0 + +2025-09-24 17:29:20,565 INFO Connection check task end + +2025-09-24 17:29:20,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:23,566 INFO Connection check task start + +2025-09-24 17:29:23,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:23,566 INFO Out dated connection ,size=0 + +2025-09-24 17:29:23,566 INFO Connection check task end + +2025-09-24 17:29:23,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:26,568 INFO Connection check task start + +2025-09-24 17:29:26,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:26,568 INFO Out dated connection ,size=0 + +2025-09-24 17:29:26,568 INFO Connection check task end + +2025-09-24 17:29:26,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:29,570 INFO Connection check task start + +2025-09-24 17:29:29,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:29,570 INFO Out dated connection ,size=0 + +2025-09-24 17:29:29,570 INFO Connection check task end + +2025-09-24 17:29:29,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:32,571 INFO Connection check task start + +2025-09-24 17:29:32,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:32,571 INFO Out dated connection ,size=0 + +2025-09-24 17:29:32,571 INFO Connection check task end + +2025-09-24 17:29:32,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:35,573 INFO Connection check task start + +2025-09-24 17:29:35,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:35,573 INFO Out dated connection ,size=0 + +2025-09-24 17:29:35,573 INFO Connection check task end + +2025-09-24 17:29:35,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:38,573 INFO Connection check task start + +2025-09-24 17:29:38,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:38,573 INFO Out dated connection ,size=0 + +2025-09-24 17:29:38,573 INFO Connection check task end + +2025-09-24 17:29:38,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:41,574 INFO Connection check task start + +2025-09-24 17:29:41,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:41,574 INFO Out dated connection ,size=0 + +2025-09-24 17:29:41,574 INFO Connection check task end + +2025-09-24 17:29:41,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:44,574 INFO Connection check task start + +2025-09-24 17:29:44,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:44,574 INFO Out dated connection ,size=0 + +2025-09-24 17:29:44,574 INFO Connection check task end + +2025-09-24 17:29:44,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:47,575 INFO Connection check task start + +2025-09-24 17:29:47,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:47,575 INFO Out dated connection ,size=0 + +2025-09-24 17:29:47,575 INFO Connection check task end + +2025-09-24 17:29:47,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:50,576 INFO Connection check task start + +2025-09-24 17:29:50,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:50,576 INFO Out dated connection ,size=0 + +2025-09-24 17:29:50,576 INFO Connection check task end + +2025-09-24 17:29:50,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:53,578 INFO Connection check task start + +2025-09-24 17:29:53,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:53,578 INFO Out dated connection ,size=0 + +2025-09-24 17:29:53,579 INFO Connection check task end + +2025-09-24 17:29:53,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:56,579 INFO Connection check task start + +2025-09-24 17:29:56,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:56,579 INFO Out dated connection ,size=0 + +2025-09-24 17:29:56,579 INFO Connection check task end + +2025-09-24 17:29:56,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:29:59,580 INFO Connection check task start + +2025-09-24 17:29:59,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:29:59,580 INFO Out dated connection ,size=0 + +2025-09-24 17:29:59,580 INFO Connection check task end + +2025-09-24 17:29:59,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:02,580 INFO Connection check task start + +2025-09-24 17:30:02,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:02,581 INFO Out dated connection ,size=0 + +2025-09-24 17:30:02,581 INFO Connection check task end + +2025-09-24 17:30:02,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:05,582 INFO Connection check task start + +2025-09-24 17:30:05,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:05,582 INFO Out dated connection ,size=0 + +2025-09-24 17:30:05,582 INFO Connection check task end + +2025-09-24 17:30:05,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:08,582 INFO Connection check task start + +2025-09-24 17:30:08,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:08,582 INFO Out dated connection ,size=0 + +2025-09-24 17:30:08,582 INFO Connection check task end + +2025-09-24 17:30:08,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:11,584 INFO Connection check task start + +2025-09-24 17:30:11,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:11,584 INFO Out dated connection ,size=0 + +2025-09-24 17:30:11,584 INFO Connection check task end + +2025-09-24 17:30:11,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:14,584 INFO Connection check task start + +2025-09-24 17:30:14,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:14,585 INFO Out dated connection ,size=0 + +2025-09-24 17:30:14,585 INFO Connection check task end + +2025-09-24 17:30:14,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:17,585 INFO Connection check task start + +2025-09-24 17:30:17,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:17,585 INFO Out dated connection ,size=0 + +2025-09-24 17:30:17,585 INFO Connection check task end + +2025-09-24 17:30:17,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:20,586 INFO Connection check task start + +2025-09-24 17:30:20,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:20,586 INFO Out dated connection ,size=0 + +2025-09-24 17:30:20,586 INFO Connection check task end + +2025-09-24 17:30:20,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:23,586 INFO Connection check task start + +2025-09-24 17:30:23,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:23,587 INFO Out dated connection ,size=0 + +2025-09-24 17:30:23,587 INFO Connection check task end + +2025-09-24 17:30:23,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:26,589 INFO Connection check task start + +2025-09-24 17:30:26,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:26,589 INFO Out dated connection ,size=0 + +2025-09-24 17:30:26,589 INFO Connection check task end + +2025-09-24 17:30:26,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:29,590 INFO Connection check task start + +2025-09-24 17:30:29,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:29,590 INFO Out dated connection ,size=0 + +2025-09-24 17:30:29,590 INFO Connection check task end + +2025-09-24 17:30:29,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:32,592 INFO Connection check task start + +2025-09-24 17:30:32,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:32,592 INFO Out dated connection ,size=0 + +2025-09-24 17:30:32,592 INFO Connection check task end + +2025-09-24 17:30:32,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:35,592 INFO Connection check task start + +2025-09-24 17:30:35,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:35,592 INFO Out dated connection ,size=0 + +2025-09-24 17:30:35,592 INFO Connection check task end + +2025-09-24 17:30:35,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:38,593 INFO Connection check task start + +2025-09-24 17:30:38,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:38,593 INFO Out dated connection ,size=0 + +2025-09-24 17:30:38,593 INFO Connection check task end + +2025-09-24 17:30:38,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:41,594 INFO Connection check task start + +2025-09-24 17:30:41,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:41,594 INFO Out dated connection ,size=0 + +2025-09-24 17:30:41,594 INFO Connection check task end + +2025-09-24 17:30:41,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:44,594 INFO Connection check task start + +2025-09-24 17:30:44,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:44,594 INFO Out dated connection ,size=0 + +2025-09-24 17:30:44,594 INFO Connection check task end + +2025-09-24 17:30:44,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:47,595 INFO Connection check task start + +2025-09-24 17:30:47,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:47,595 INFO Out dated connection ,size=0 + +2025-09-24 17:30:47,595 INFO Connection check task end + +2025-09-24 17:30:47,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:50,596 INFO Connection check task start + +2025-09-24 17:30:50,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:50,596 INFO Out dated connection ,size=0 + +2025-09-24 17:30:50,596 INFO Connection check task end + +2025-09-24 17:30:50,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:53,597 INFO Connection check task start + +2025-09-24 17:30:53,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:53,597 INFO Out dated connection ,size=0 + +2025-09-24 17:30:53,597 INFO Connection check task end + +2025-09-24 17:30:53,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:56,598 INFO Connection check task start + +2025-09-24 17:30:56,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:56,598 INFO Out dated connection ,size=0 + +2025-09-24 17:30:56,598 INFO Connection check task end + +2025-09-24 17:30:56,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:30:59,598 INFO Connection check task start + +2025-09-24 17:30:59,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:30:59,598 INFO Out dated connection ,size=0 + +2025-09-24 17:30:59,598 INFO Connection check task end + +2025-09-24 17:30:59,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:02,599 INFO Connection check task start + +2025-09-24 17:31:02,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:02,599 INFO Out dated connection ,size=0 + +2025-09-24 17:31:02,599 INFO Connection check task end + +2025-09-24 17:31:02,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:05,600 INFO Connection check task start + +2025-09-24 17:31:05,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:05,600 INFO Out dated connection ,size=0 + +2025-09-24 17:31:05,600 INFO Connection check task end + +2025-09-24 17:31:05,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:08,600 INFO Connection check task start + +2025-09-24 17:31:08,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:08,600 INFO Out dated connection ,size=0 + +2025-09-24 17:31:08,600 INFO Connection check task end + +2025-09-24 17:31:08,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:11,601 INFO Connection check task start + +2025-09-24 17:31:11,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:11,601 INFO Out dated connection ,size=0 + +2025-09-24 17:31:11,601 INFO Connection check task end + +2025-09-24 17:31:11,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:14,601 INFO Connection check task start + +2025-09-24 17:31:14,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:14,602 INFO Out dated connection ,size=0 + +2025-09-24 17:31:14,602 INFO Connection check task end + +2025-09-24 17:31:14,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:17,602 INFO Connection check task start + +2025-09-24 17:31:17,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:17,602 INFO Out dated connection ,size=0 + +2025-09-24 17:31:17,602 INFO Connection check task end + +2025-09-24 17:31:17,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:20,602 INFO Connection check task start + +2025-09-24 17:31:20,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:20,603 INFO Out dated connection ,size=0 + +2025-09-24 17:31:20,603 INFO Connection check task end + +2025-09-24 17:31:20,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:23,603 INFO Connection check task start + +2025-09-24 17:31:23,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:23,603 INFO Out dated connection ,size=0 + +2025-09-24 17:31:23,603 INFO Connection check task end + +2025-09-24 17:31:23,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:26,603 INFO Connection check task start + +2025-09-24 17:31:26,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:26,604 INFO Out dated connection ,size=0 + +2025-09-24 17:31:26,604 INFO Connection check task end + +2025-09-24 17:31:26,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:29,604 INFO Connection check task start + +2025-09-24 17:31:29,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:29,604 INFO Out dated connection ,size=0 + +2025-09-24 17:31:29,604 INFO Connection check task end + +2025-09-24 17:31:29,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:32,605 INFO Connection check task start + +2025-09-24 17:31:32,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:32,605 INFO Out dated connection ,size=0 + +2025-09-24 17:31:32,605 INFO Connection check task end + +2025-09-24 17:31:32,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:35,607 INFO Connection check task start + +2025-09-24 17:31:35,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:35,607 INFO Out dated connection ,size=0 + +2025-09-24 17:31:35,607 INFO Connection check task end + +2025-09-24 17:31:35,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:38,609 INFO Connection check task start + +2025-09-24 17:31:38,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:38,609 INFO Out dated connection ,size=0 + +2025-09-24 17:31:38,609 INFO Connection check task end + +2025-09-24 17:31:38,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:41,610 INFO Connection check task start + +2025-09-24 17:31:41,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:41,610 INFO Out dated connection ,size=0 + +2025-09-24 17:31:41,610 INFO Connection check task end + +2025-09-24 17:31:41,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:44,612 INFO Connection check task start + +2025-09-24 17:31:44,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:44,612 INFO Out dated connection ,size=0 + +2025-09-24 17:31:44,612 INFO Connection check task end + +2025-09-24 17:31:44,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:47,612 INFO Connection check task start + +2025-09-24 17:31:47,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:47,612 INFO Out dated connection ,size=0 + +2025-09-24 17:31:47,612 INFO Connection check task end + +2025-09-24 17:31:47,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:50,615 INFO Connection check task start + +2025-09-24 17:31:50,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:50,615 INFO Out dated connection ,size=0 + +2025-09-24 17:31:50,615 INFO Connection check task end + +2025-09-24 17:31:50,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:53,617 INFO Connection check task start + +2025-09-24 17:31:53,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:53,617 INFO Out dated connection ,size=0 + +2025-09-24 17:31:53,617 INFO Connection check task end + +2025-09-24 17:31:53,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:56,618 INFO Connection check task start + +2025-09-24 17:31:56,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:56,618 INFO Out dated connection ,size=0 + +2025-09-24 17:31:56,618 INFO Connection check task end + +2025-09-24 17:31:56,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:31:59,620 INFO Connection check task start + +2025-09-24 17:31:59,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:31:59,620 INFO Out dated connection ,size=0 + +2025-09-24 17:31:59,620 INFO Connection check task end + +2025-09-24 17:31:59,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:02,620 INFO Connection check task start + +2025-09-24 17:32:02,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:02,620 INFO Out dated connection ,size=0 + +2025-09-24 17:32:02,620 INFO Connection check task end + +2025-09-24 17:32:02,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:05,621 INFO Connection check task start + +2025-09-24 17:32:05,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:05,621 INFO Out dated connection ,size=0 + +2025-09-24 17:32:05,621 INFO Connection check task end + +2025-09-24 17:32:05,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:08,623 INFO Connection check task start + +2025-09-24 17:32:08,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:08,623 INFO Out dated connection ,size=0 + +2025-09-24 17:32:08,623 INFO Connection check task end + +2025-09-24 17:32:08,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:11,623 INFO Connection check task start + +2025-09-24 17:32:11,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:11,623 INFO Out dated connection ,size=0 + +2025-09-24 17:32:11,623 INFO Connection check task end + +2025-09-24 17:32:11,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:14,624 INFO Connection check task start + +2025-09-24 17:32:14,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:14,624 INFO Out dated connection ,size=0 + +2025-09-24 17:32:14,624 INFO Connection check task end + +2025-09-24 17:32:14,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:17,624 INFO Connection check task start + +2025-09-24 17:32:17,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:17,624 INFO Out dated connection ,size=0 + +2025-09-24 17:32:17,624 INFO Connection check task end + +2025-09-24 17:32:17,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:20,625 INFO Connection check task start + +2025-09-24 17:32:20,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:20,637 INFO Out dated connection ,size=0 + +2025-09-24 17:32:20,637 INFO Connection check task end + +2025-09-24 17:32:20,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:23,638 INFO Connection check task start + +2025-09-24 17:32:23,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:23,638 INFO Out dated connection ,size=0 + +2025-09-24 17:32:23,638 INFO Connection check task end + +2025-09-24 17:32:23,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:26,640 INFO Connection check task start + +2025-09-24 17:32:26,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:26,640 INFO Out dated connection ,size=0 + +2025-09-24 17:32:26,640 INFO Connection check task end + +2025-09-24 17:32:26,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:29,640 INFO Connection check task start + +2025-09-24 17:32:29,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:29,641 INFO Out dated connection ,size=0 + +2025-09-24 17:32:29,641 INFO Connection check task end + +2025-09-24 17:32:29,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:32,643 INFO Connection check task start + +2025-09-24 17:32:32,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:32,643 INFO Out dated connection ,size=0 + +2025-09-24 17:32:32,643 INFO Connection check task end + +2025-09-24 17:32:32,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:35,645 INFO Connection check task start + +2025-09-24 17:32:35,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:35,645 INFO Out dated connection ,size=0 + +2025-09-24 17:32:35,645 INFO Connection check task end + +2025-09-24 17:32:35,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:38,647 INFO Connection check task start + +2025-09-24 17:32:38,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:38,648 INFO Out dated connection ,size=0 + +2025-09-24 17:32:38,648 INFO Connection check task end + +2025-09-24 17:32:38,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:41,648 INFO Connection check task start + +2025-09-24 17:32:41,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:41,648 INFO Out dated connection ,size=0 + +2025-09-24 17:32:41,648 INFO Connection check task end + +2025-09-24 17:32:41,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:44,649 INFO Connection check task start + +2025-09-24 17:32:44,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:44,649 INFO Out dated connection ,size=0 + +2025-09-24 17:32:44,649 INFO Connection check task end + +2025-09-24 17:32:44,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:47,651 INFO Connection check task start + +2025-09-24 17:32:47,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:47,651 INFO Out dated connection ,size=0 + +2025-09-24 17:32:47,651 INFO Connection check task end + +2025-09-24 17:32:47,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:50,652 INFO Connection check task start + +2025-09-24 17:32:50,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:50,653 INFO Out dated connection ,size=0 + +2025-09-24 17:32:50,653 INFO Connection check task end + +2025-09-24 17:32:50,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:53,653 INFO Connection check task start + +2025-09-24 17:32:53,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:53,653 INFO Out dated connection ,size=0 + +2025-09-24 17:32:53,653 INFO Connection check task end + +2025-09-24 17:32:53,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:56,653 INFO Connection check task start + +2025-09-24 17:32:56,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:56,653 INFO Out dated connection ,size=0 + +2025-09-24 17:32:56,653 INFO Connection check task end + +2025-09-24 17:32:56,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:32:59,653 INFO Connection check task start + +2025-09-24 17:32:59,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:32:59,654 INFO Out dated connection ,size=0 + +2025-09-24 17:32:59,654 INFO Connection check task end + +2025-09-24 17:32:59,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:02,656 INFO Connection check task start + +2025-09-24 17:33:02,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:02,656 INFO Out dated connection ,size=0 + +2025-09-24 17:33:02,656 INFO Connection check task end + +2025-09-24 17:33:02,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:05,656 INFO Connection check task start + +2025-09-24 17:33:05,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:05,656 INFO Out dated connection ,size=0 + +2025-09-24 17:33:05,656 INFO Connection check task end + +2025-09-24 17:33:05,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:08,657 INFO Connection check task start + +2025-09-24 17:33:08,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:08,658 INFO Out dated connection ,size=0 + +2025-09-24 17:33:08,658 INFO Connection check task end + +2025-09-24 17:33:08,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:11,658 INFO Connection check task start + +2025-09-24 17:33:11,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:11,658 INFO Out dated connection ,size=0 + +2025-09-24 17:33:11,658 INFO Connection check task end + +2025-09-24 17:33:11,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:14,659 INFO Connection check task start + +2025-09-24 17:33:14,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:14,659 INFO Out dated connection ,size=0 + +2025-09-24 17:33:14,659 INFO Connection check task end + +2025-09-24 17:33:14,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:17,661 INFO Connection check task start + +2025-09-24 17:33:17,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:17,661 INFO Out dated connection ,size=0 + +2025-09-24 17:33:17,661 INFO Connection check task end + +2025-09-24 17:33:17,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:20,662 INFO Connection check task start + +2025-09-24 17:33:20,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:20,663 INFO Out dated connection ,size=0 + +2025-09-24 17:33:20,663 INFO Connection check task end + +2025-09-24 17:33:20,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:23,663 INFO Connection check task start + +2025-09-24 17:33:23,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:23,664 INFO Out dated connection ,size=0 + +2025-09-24 17:33:23,664 INFO Connection check task end + +2025-09-24 17:33:23,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:26,666 INFO Connection check task start + +2025-09-24 17:33:26,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:26,666 INFO Out dated connection ,size=0 + +2025-09-24 17:33:26,666 INFO Connection check task end + +2025-09-24 17:33:26,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:29,668 INFO Connection check task start + +2025-09-24 17:33:29,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:29,668 INFO Out dated connection ,size=0 + +2025-09-24 17:33:29,668 INFO Connection check task end + +2025-09-24 17:33:29,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:32,669 INFO Connection check task start + +2025-09-24 17:33:32,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:32,670 INFO Out dated connection ,size=0 + +2025-09-24 17:33:32,670 INFO Connection check task end + +2025-09-24 17:33:32,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:35,670 INFO Connection check task start + +2025-09-24 17:33:35,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:35,670 INFO Out dated connection ,size=0 + +2025-09-24 17:33:35,670 INFO Connection check task end + +2025-09-24 17:33:35,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:38,670 INFO Connection check task start + +2025-09-24 17:33:38,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:38,671 INFO Out dated connection ,size=0 + +2025-09-24 17:33:38,671 INFO Connection check task end + +2025-09-24 17:33:38,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:41,672 INFO Connection check task start + +2025-09-24 17:33:41,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:41,673 INFO Out dated connection ,size=0 + +2025-09-24 17:33:41,673 INFO Connection check task end + +2025-09-24 17:33:41,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:44,673 INFO Connection check task start + +2025-09-24 17:33:44,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:44,673 INFO Out dated connection ,size=0 + +2025-09-24 17:33:44,673 INFO Connection check task end + +2025-09-24 17:33:44,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:47,675 INFO Connection check task start + +2025-09-24 17:33:47,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:47,676 INFO Out dated connection ,size=0 + +2025-09-24 17:33:47,676 INFO Connection check task end + +2025-09-24 17:33:47,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:50,676 INFO Connection check task start + +2025-09-24 17:33:50,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:50,676 INFO Out dated connection ,size=0 + +2025-09-24 17:33:50,676 INFO Connection check task end + +2025-09-24 17:33:50,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:53,677 INFO Connection check task start + +2025-09-24 17:33:53,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:53,677 INFO Out dated connection ,size=0 + +2025-09-24 17:33:53,677 INFO Connection check task end + +2025-09-24 17:33:53,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:56,677 INFO Connection check task start + +2025-09-24 17:33:56,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:56,678 INFO Out dated connection ,size=0 + +2025-09-24 17:33:56,678 INFO Connection check task end + +2025-09-24 17:33:56,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:33:59,678 INFO Connection check task start + +2025-09-24 17:33:59,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:33:59,678 INFO Out dated connection ,size=0 + +2025-09-24 17:33:59,678 INFO Connection check task end + +2025-09-24 17:33:59,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:02,681 INFO Connection check task start + +2025-09-24 17:34:02,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:02,681 INFO Out dated connection ,size=0 + +2025-09-24 17:34:02,681 INFO Connection check task end + +2025-09-24 17:34:02,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:05,683 INFO Connection check task start + +2025-09-24 17:34:05,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:05,683 INFO Out dated connection ,size=0 + +2025-09-24 17:34:05,683 INFO Connection check task end + +2025-09-24 17:34:05,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:08,685 INFO Connection check task start + +2025-09-24 17:34:08,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:08,685 INFO Out dated connection ,size=0 + +2025-09-24 17:34:08,685 INFO Connection check task end + +2025-09-24 17:34:08,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:11,687 INFO Connection check task start + +2025-09-24 17:34:11,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:11,687 INFO Out dated connection ,size=0 + +2025-09-24 17:34:11,687 INFO Connection check task end + +2025-09-24 17:34:11,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:14,689 INFO Connection check task start + +2025-09-24 17:34:14,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:14,689 INFO Out dated connection ,size=0 + +2025-09-24 17:34:14,689 INFO Connection check task end + +2025-09-24 17:34:14,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:17,690 INFO Connection check task start + +2025-09-24 17:34:17,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:17,690 INFO Out dated connection ,size=0 + +2025-09-24 17:34:17,690 INFO Connection check task end + +2025-09-24 17:34:17,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:20,692 INFO Connection check task start + +2025-09-24 17:34:20,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:20,692 INFO Out dated connection ,size=0 + +2025-09-24 17:34:20,692 INFO Connection check task end + +2025-09-24 17:34:20,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:23,693 INFO Connection check task start + +2025-09-24 17:34:23,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:23,694 INFO Out dated connection ,size=0 + +2025-09-24 17:34:23,694 INFO Connection check task end + +2025-09-24 17:34:23,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:26,694 INFO Connection check task start + +2025-09-24 17:34:26,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:26,695 INFO Out dated connection ,size=0 + +2025-09-24 17:34:26,695 INFO Connection check task end + +2025-09-24 17:34:26,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:29,695 INFO Connection check task start + +2025-09-24 17:34:29,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:29,695 INFO Out dated connection ,size=0 + +2025-09-24 17:34:29,695 INFO Connection check task end + +2025-09-24 17:34:29,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:32,696 INFO Connection check task start + +2025-09-24 17:34:32,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:32,696 INFO Out dated connection ,size=0 + +2025-09-24 17:34:32,696 INFO Connection check task end + +2025-09-24 17:34:32,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:35,697 INFO Connection check task start + +2025-09-24 17:34:35,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:35,697 INFO Out dated connection ,size=0 + +2025-09-24 17:34:35,697 INFO Connection check task end + +2025-09-24 17:34:35,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:38,697 INFO Connection check task start + +2025-09-24 17:34:38,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:38,698 INFO Out dated connection ,size=0 + +2025-09-24 17:34:38,698 INFO Connection check task end + +2025-09-24 17:34:38,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:41,699 INFO Connection check task start + +2025-09-24 17:34:41,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:41,699 INFO Out dated connection ,size=0 + +2025-09-24 17:34:41,699 INFO Connection check task end + +2025-09-24 17:34:41,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:44,699 INFO Connection check task start + +2025-09-24 17:34:44,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:44,699 INFO Out dated connection ,size=0 + +2025-09-24 17:34:44,699 INFO Connection check task end + +2025-09-24 17:34:44,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:47,701 INFO Connection check task start + +2025-09-24 17:34:47,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:47,702 INFO Out dated connection ,size=0 + +2025-09-24 17:34:47,702 INFO Connection check task end + +2025-09-24 17:34:47,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:50,702 INFO Connection check task start + +2025-09-24 17:34:50,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:50,703 INFO Out dated connection ,size=0 + +2025-09-24 17:34:50,703 INFO Connection check task end + +2025-09-24 17:34:50,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:53,704 INFO Connection check task start + +2025-09-24 17:34:53,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:53,705 INFO Out dated connection ,size=0 + +2025-09-24 17:34:53,705 INFO Connection check task end + +2025-09-24 17:34:53,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:56,705 INFO Connection check task start + +2025-09-24 17:34:56,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:56,705 INFO Out dated connection ,size=0 + +2025-09-24 17:34:56,705 INFO Connection check task end + +2025-09-24 17:34:56,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:34:59,707 INFO Connection check task start + +2025-09-24 17:34:59,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:34:59,707 INFO Out dated connection ,size=0 + +2025-09-24 17:34:59,707 INFO Connection check task end + +2025-09-24 17:34:59,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:02,707 INFO Connection check task start + +2025-09-24 17:35:02,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:02,707 INFO Out dated connection ,size=0 + +2025-09-24 17:35:02,707 INFO Connection check task end + +2025-09-24 17:35:02,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:05,708 INFO Connection check task start + +2025-09-24 17:35:05,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:05,708 INFO Out dated connection ,size=0 + +2025-09-24 17:35:05,708 INFO Connection check task end + +2025-09-24 17:35:05,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:08,710 INFO Connection check task start + +2025-09-24 17:35:08,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:08,710 INFO Out dated connection ,size=0 + +2025-09-24 17:35:08,710 INFO Connection check task end + +2025-09-24 17:35:08,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:11,712 INFO Connection check task start + +2025-09-24 17:35:11,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:11,712 INFO Out dated connection ,size=0 + +2025-09-24 17:35:11,712 INFO Connection check task end + +2025-09-24 17:35:11,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:14,712 INFO Connection check task start + +2025-09-24 17:35:14,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:14,713 INFO Out dated connection ,size=0 + +2025-09-24 17:35:14,713 INFO Connection check task end + +2025-09-24 17:35:14,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:17,713 INFO Connection check task start + +2025-09-24 17:35:17,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:17,713 INFO Out dated connection ,size=0 + +2025-09-24 17:35:17,713 INFO Connection check task end + +2025-09-24 17:35:17,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:20,713 INFO Connection check task start + +2025-09-24 17:35:20,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:20,713 INFO Out dated connection ,size=0 + +2025-09-24 17:35:20,713 INFO Connection check task end + +2025-09-24 17:35:20,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:23,714 INFO Connection check task start + +2025-09-24 17:35:23,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:23,715 INFO Out dated connection ,size=0 + +2025-09-24 17:35:23,715 INFO Connection check task end + +2025-09-24 17:35:23,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:26,716 INFO Connection check task start + +2025-09-24 17:35:26,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:26,716 INFO Out dated connection ,size=0 + +2025-09-24 17:35:26,716 INFO Connection check task end + +2025-09-24 17:35:26,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:29,717 INFO Connection check task start + +2025-09-24 17:35:29,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:29,718 INFO Out dated connection ,size=0 + +2025-09-24 17:35:29,718 INFO Connection check task end + +2025-09-24 17:35:29,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:32,718 INFO Connection check task start + +2025-09-24 17:35:32,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:32,718 INFO Out dated connection ,size=0 + +2025-09-24 17:35:32,718 INFO Connection check task end + +2025-09-24 17:35:32,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:35,718 INFO Connection check task start + +2025-09-24 17:35:35,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:35,718 INFO Out dated connection ,size=0 + +2025-09-24 17:35:35,718 INFO Connection check task end + +2025-09-24 17:35:35,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:38,719 INFO Connection check task start + +2025-09-24 17:35:38,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:38,719 INFO Out dated connection ,size=0 + +2025-09-24 17:35:38,719 INFO Connection check task end + +2025-09-24 17:35:38,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:41,719 INFO Connection check task start + +2025-09-24 17:35:41,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:41,719 INFO Out dated connection ,size=0 + +2025-09-24 17:35:41,719 INFO Connection check task end + +2025-09-24 17:35:41,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:44,719 INFO Connection check task start + +2025-09-24 17:35:44,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:44,720 INFO Out dated connection ,size=0 + +2025-09-24 17:35:44,720 INFO Connection check task end + +2025-09-24 17:35:44,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:47,720 INFO Connection check task start + +2025-09-24 17:35:47,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:47,721 INFO Out dated connection ,size=0 + +2025-09-24 17:35:47,721 INFO Connection check task end + +2025-09-24 17:35:47,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:50,722 INFO Connection check task start + +2025-09-24 17:35:50,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:50,723 INFO Out dated connection ,size=0 + +2025-09-24 17:35:50,723 INFO Connection check task end + +2025-09-24 17:35:50,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:53,723 INFO Connection check task start + +2025-09-24 17:35:53,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:53,723 INFO Out dated connection ,size=0 + +2025-09-24 17:35:53,723 INFO Connection check task end + +2025-09-24 17:35:53,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:56,723 INFO Connection check task start + +2025-09-24 17:35:56,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:56,724 INFO Out dated connection ,size=0 + +2025-09-24 17:35:56,724 INFO Connection check task end + +2025-09-24 17:35:56,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:35:59,724 INFO Connection check task start + +2025-09-24 17:35:59,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:35:59,725 INFO Out dated connection ,size=0 + +2025-09-24 17:35:59,725 INFO Connection check task end + +2025-09-24 17:35:59,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:02,725 INFO Connection check task start + +2025-09-24 17:36:02,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:02,725 INFO Out dated connection ,size=0 + +2025-09-24 17:36:02,725 INFO Connection check task end + +2025-09-24 17:36:02,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:05,725 INFO Connection check task start + +2025-09-24 17:36:05,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:05,725 INFO Out dated connection ,size=0 + +2025-09-24 17:36:05,726 INFO Connection check task end + +2025-09-24 17:36:05,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:08,726 INFO Connection check task start + +2025-09-24 17:36:08,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:08,726 INFO Out dated connection ,size=0 + +2025-09-24 17:36:08,726 INFO Connection check task end + +2025-09-24 17:36:08,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:11,727 INFO Connection check task start + +2025-09-24 17:36:11,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:11,727 INFO Out dated connection ,size=0 + +2025-09-24 17:36:11,727 INFO Connection check task end + +2025-09-24 17:36:11,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:14,729 INFO Connection check task start + +2025-09-24 17:36:14,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:14,729 INFO Out dated connection ,size=0 + +2025-09-24 17:36:14,729 INFO Connection check task end + +2025-09-24 17:36:14,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:17,730 INFO Connection check task start + +2025-09-24 17:36:17,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:17,730 INFO Out dated connection ,size=0 + +2025-09-24 17:36:17,730 INFO Connection check task end + +2025-09-24 17:36:17,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:20,730 INFO Connection check task start + +2025-09-24 17:36:20,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:20,730 INFO Out dated connection ,size=0 + +2025-09-24 17:36:20,730 INFO Connection check task end + +2025-09-24 17:36:20,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:23,732 INFO Connection check task start + +2025-09-24 17:36:23,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:23,733 INFO Out dated connection ,size=0 + +2025-09-24 17:36:23,733 INFO Connection check task end + +2025-09-24 17:36:23,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:26,734 INFO Connection check task start + +2025-09-24 17:36:26,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:26,734 INFO Out dated connection ,size=0 + +2025-09-24 17:36:26,735 INFO Connection check task end + +2025-09-24 17:36:26,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:29,735 INFO Connection check task start + +2025-09-24 17:36:29,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:29,735 INFO Out dated connection ,size=0 + +2025-09-24 17:36:29,735 INFO Connection check task end + +2025-09-24 17:36:29,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:32,736 INFO Connection check task start + +2025-09-24 17:36:32,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:32,736 INFO Out dated connection ,size=0 + +2025-09-24 17:36:32,736 INFO Connection check task end + +2025-09-24 17:36:32,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:35,738 INFO Connection check task start + +2025-09-24 17:36:35,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:35,739 INFO Out dated connection ,size=0 + +2025-09-24 17:36:35,739 INFO Connection check task end + +2025-09-24 17:36:35,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:38,740 INFO Connection check task start + +2025-09-24 17:36:38,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:38,740 INFO Out dated connection ,size=0 + +2025-09-24 17:36:38,740 INFO Connection check task end + +2025-09-24 17:36:38,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:41,741 INFO Connection check task start + +2025-09-24 17:36:41,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:41,741 INFO Out dated connection ,size=0 + +2025-09-24 17:36:41,741 INFO Connection check task end + +2025-09-24 17:36:41,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:44,741 INFO Connection check task start + +2025-09-24 17:36:44,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:44,741 INFO Out dated connection ,size=0 + +2025-09-24 17:36:44,741 INFO Connection check task end + +2025-09-24 17:36:44,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:47,742 INFO Connection check task start + +2025-09-24 17:36:47,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:47,742 INFO Out dated connection ,size=0 + +2025-09-24 17:36:47,742 INFO Connection check task end + +2025-09-24 17:36:47,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:50,743 INFO Connection check task start + +2025-09-24 17:36:50,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:50,743 INFO Out dated connection ,size=0 + +2025-09-24 17:36:50,743 INFO Connection check task end + +2025-09-24 17:36:50,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:53,743 INFO Connection check task start + +2025-09-24 17:36:53,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:53,744 INFO Out dated connection ,size=0 + +2025-09-24 17:36:53,744 INFO Connection check task end + +2025-09-24 17:36:53,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:56,745 INFO Connection check task start + +2025-09-24 17:36:56,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:56,746 INFO Out dated connection ,size=0 + +2025-09-24 17:36:56,746 INFO Connection check task end + +2025-09-24 17:36:56,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:36:59,746 INFO Connection check task start + +2025-09-24 17:36:59,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:36:59,746 INFO Out dated connection ,size=0 + +2025-09-24 17:36:59,746 INFO Connection check task end + +2025-09-24 17:36:59,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:02,748 INFO Connection check task start + +2025-09-24 17:37:02,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:02,748 INFO Out dated connection ,size=0 + +2025-09-24 17:37:02,748 INFO Connection check task end + +2025-09-24 17:37:02,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:05,750 INFO Connection check task start + +2025-09-24 17:37:05,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:05,750 INFO Out dated connection ,size=0 + +2025-09-24 17:37:05,750 INFO Connection check task end + +2025-09-24 17:37:05,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:08,753 INFO Connection check task start + +2025-09-24 17:37:08,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:08,753 INFO Out dated connection ,size=0 + +2025-09-24 17:37:08,753 INFO Connection check task end + +2025-09-24 17:37:08,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:11,755 INFO Connection check task start + +2025-09-24 17:37:11,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:11,755 INFO Out dated connection ,size=0 + +2025-09-24 17:37:11,755 INFO Connection check task end + +2025-09-24 17:37:11,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:14,757 INFO Connection check task start + +2025-09-24 17:37:14,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:14,758 INFO Out dated connection ,size=0 + +2025-09-24 17:37:14,758 INFO Connection check task end + +2025-09-24 17:37:14,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:17,758 INFO Connection check task start + +2025-09-24 17:37:17,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:17,758 INFO Out dated connection ,size=0 + +2025-09-24 17:37:17,758 INFO Connection check task end + +2025-09-24 17:37:17,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:20,760 INFO Connection check task start + +2025-09-24 17:37:20,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:20,761 INFO Out dated connection ,size=0 + +2025-09-24 17:37:20,761 INFO Connection check task end + +2025-09-24 17:37:20,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:23,761 INFO Connection check task start + +2025-09-24 17:37:23,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:23,761 INFO Out dated connection ,size=0 + +2025-09-24 17:37:23,761 INFO Connection check task end + +2025-09-24 17:37:23,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:26,764 INFO Connection check task start + +2025-09-24 17:37:26,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:26,764 INFO Out dated connection ,size=0 + +2025-09-24 17:37:26,764 INFO Connection check task end + +2025-09-24 17:37:26,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:29,764 INFO Connection check task start + +2025-09-24 17:37:29,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:29,764 INFO Out dated connection ,size=0 + +2025-09-24 17:37:29,765 INFO Connection check task end + +2025-09-24 17:37:29,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:32,765 INFO Connection check task start + +2025-09-24 17:37:32,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:32,766 INFO Out dated connection ,size=0 + +2025-09-24 17:37:32,766 INFO Connection check task end + +2025-09-24 17:37:32,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:35,766 INFO Connection check task start + +2025-09-24 17:37:35,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:35,766 INFO Out dated connection ,size=0 + +2025-09-24 17:37:35,766 INFO Connection check task end + +2025-09-24 17:37:35,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:38,766 INFO Connection check task start + +2025-09-24 17:37:38,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:38,767 INFO Out dated connection ,size=0 + +2025-09-24 17:37:38,767 INFO Connection check task end + +2025-09-24 17:37:38,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:41,768 INFO Connection check task start + +2025-09-24 17:37:41,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:41,768 INFO Out dated connection ,size=0 + +2025-09-24 17:37:41,768 INFO Connection check task end + +2025-09-24 17:37:41,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:44,770 INFO Connection check task start + +2025-09-24 17:37:44,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:44,770 INFO Out dated connection ,size=0 + +2025-09-24 17:37:44,770 INFO Connection check task end + +2025-09-24 17:37:44,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:47,772 INFO Connection check task start + +2025-09-24 17:37:47,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:47,772 INFO Out dated connection ,size=0 + +2025-09-24 17:37:47,773 INFO Connection check task end + +2025-09-24 17:37:47,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:50,775 INFO Connection check task start + +2025-09-24 17:37:50,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:50,775 INFO Out dated connection ,size=0 + +2025-09-24 17:37:50,775 INFO Connection check task end + +2025-09-24 17:37:50,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:53,776 INFO Connection check task start + +2025-09-24 17:37:53,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:53,776 INFO Out dated connection ,size=0 + +2025-09-24 17:37:53,776 INFO Connection check task end + +2025-09-24 17:37:53,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:56,776 INFO Connection check task start + +2025-09-24 17:37:56,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:56,777 INFO Out dated connection ,size=0 + +2025-09-24 17:37:56,777 INFO Connection check task end + +2025-09-24 17:37:56,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:37:59,778 INFO Connection check task start + +2025-09-24 17:37:59,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:37:59,778 INFO Out dated connection ,size=0 + +2025-09-24 17:37:59,779 INFO Connection check task end + +2025-09-24 17:37:59,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:02,781 INFO Connection check task start + +2025-09-24 17:38:02,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:02,781 INFO Out dated connection ,size=0 + +2025-09-24 17:38:02,781 INFO Connection check task end + +2025-09-24 17:38:02,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:05,781 INFO Connection check task start + +2025-09-24 17:38:05,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:05,781 INFO Out dated connection ,size=0 + +2025-09-24 17:38:05,781 INFO Connection check task end + +2025-09-24 17:38:05,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:08,782 INFO Connection check task start + +2025-09-24 17:38:08,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:08,782 INFO Out dated connection ,size=0 + +2025-09-24 17:38:08,782 INFO Connection check task end + +2025-09-24 17:38:08,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:11,782 INFO Connection check task start + +2025-09-24 17:38:11,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:11,783 INFO Out dated connection ,size=0 + +2025-09-24 17:38:11,783 INFO Connection check task end + +2025-09-24 17:38:11,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:14,783 INFO Connection check task start + +2025-09-24 17:38:14,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:14,783 INFO Out dated connection ,size=0 + +2025-09-24 17:38:14,783 INFO Connection check task end + +2025-09-24 17:38:14,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:17,785 INFO Connection check task start + +2025-09-24 17:38:17,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:17,785 INFO Out dated connection ,size=0 + +2025-09-24 17:38:17,785 INFO Connection check task end + +2025-09-24 17:38:17,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:20,785 INFO Connection check task start + +2025-09-24 17:38:20,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:20,786 INFO Out dated connection ,size=0 + +2025-09-24 17:38:20,786 INFO Connection check task end + +2025-09-24 17:38:20,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:23,786 INFO Connection check task start + +2025-09-24 17:38:23,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:23,786 INFO Out dated connection ,size=0 + +2025-09-24 17:38:23,786 INFO Connection check task end + +2025-09-24 17:38:23,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:26,788 INFO Connection check task start + +2025-09-24 17:38:26,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:26,788 INFO Out dated connection ,size=0 + +2025-09-24 17:38:26,788 INFO Connection check task end + +2025-09-24 17:38:26,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:29,790 INFO Connection check task start + +2025-09-24 17:38:29,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:29,790 INFO Out dated connection ,size=0 + +2025-09-24 17:38:29,790 INFO Connection check task end + +2025-09-24 17:38:29,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:32,791 INFO Connection check task start + +2025-09-24 17:38:32,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:32,791 INFO Out dated connection ,size=0 + +2025-09-24 17:38:32,791 INFO Connection check task end + +2025-09-24 17:38:32,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:35,792 INFO Connection check task start + +2025-09-24 17:38:35,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:35,792 INFO Out dated connection ,size=0 + +2025-09-24 17:38:35,792 INFO Connection check task end + +2025-09-24 17:38:35,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:38,792 INFO Connection check task start + +2025-09-24 17:38:38,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:38,792 INFO Out dated connection ,size=0 + +2025-09-24 17:38:38,792 INFO Connection check task end + +2025-09-24 17:38:38,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:41,794 INFO Connection check task start + +2025-09-24 17:38:41,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:41,794 INFO Out dated connection ,size=0 + +2025-09-24 17:38:41,794 INFO Connection check task end + +2025-09-24 17:38:41,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:44,795 INFO Connection check task start + +2025-09-24 17:38:44,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:44,795 INFO Out dated connection ,size=0 + +2025-09-24 17:38:44,795 INFO Connection check task end + +2025-09-24 17:38:44,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:47,796 INFO Connection check task start + +2025-09-24 17:38:47,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:47,796 INFO Out dated connection ,size=0 + +2025-09-24 17:38:47,796 INFO Connection check task end + +2025-09-24 17:38:47,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:50,798 INFO Connection check task start + +2025-09-24 17:38:50,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:50,798 INFO Out dated connection ,size=0 + +2025-09-24 17:38:50,798 INFO Connection check task end + +2025-09-24 17:38:50,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:53,800 INFO Connection check task start + +2025-09-24 17:38:53,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:53,800 INFO Out dated connection ,size=0 + +2025-09-24 17:38:53,800 INFO Connection check task end + +2025-09-24 17:38:53,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:56,802 INFO Connection check task start + +2025-09-24 17:38:56,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:56,802 INFO Out dated connection ,size=0 + +2025-09-24 17:38:56,802 INFO Connection check task end + +2025-09-24 17:38:56,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:38:59,804 INFO Connection check task start + +2025-09-24 17:38:59,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:38:59,805 INFO Out dated connection ,size=0 + +2025-09-24 17:38:59,805 INFO Connection check task end + +2025-09-24 17:38:59,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:02,807 INFO Connection check task start + +2025-09-24 17:39:02,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:02,807 INFO Out dated connection ,size=0 + +2025-09-24 17:39:02,807 INFO Connection check task end + +2025-09-24 17:39:02,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:05,807 INFO Connection check task start + +2025-09-24 17:39:05,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:05,808 INFO Out dated connection ,size=0 + +2025-09-24 17:39:05,808 INFO Connection check task end + +2025-09-24 17:39:05,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:08,808 INFO Connection check task start + +2025-09-24 17:39:08,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:08,808 INFO Out dated connection ,size=0 + +2025-09-24 17:39:08,808 INFO Connection check task end + +2025-09-24 17:39:08,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:11,809 INFO Connection check task start + +2025-09-24 17:39:11,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:11,809 INFO Out dated connection ,size=0 + +2025-09-24 17:39:11,809 INFO Connection check task end + +2025-09-24 17:39:11,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:14,810 INFO Connection check task start + +2025-09-24 17:39:14,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:14,810 INFO Out dated connection ,size=0 + +2025-09-24 17:39:14,810 INFO Connection check task end + +2025-09-24 17:39:14,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:17,811 INFO Connection check task start + +2025-09-24 17:39:17,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:17,811 INFO Out dated connection ,size=0 + +2025-09-24 17:39:17,811 INFO Connection check task end + +2025-09-24 17:39:17,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:20,811 INFO Connection check task start + +2025-09-24 17:39:20,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:20,812 INFO Out dated connection ,size=0 + +2025-09-24 17:39:20,812 INFO Connection check task end + +2025-09-24 17:39:20,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:23,813 INFO Connection check task start + +2025-09-24 17:39:23,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:23,813 INFO Out dated connection ,size=0 + +2025-09-24 17:39:23,813 INFO Connection check task end + +2025-09-24 17:39:23,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:26,815 INFO Connection check task start + +2025-09-24 17:39:26,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:26,815 INFO Out dated connection ,size=0 + +2025-09-24 17:39:26,815 INFO Connection check task end + +2025-09-24 17:39:26,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:29,817 INFO Connection check task start + +2025-09-24 17:39:29,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:29,818 INFO Out dated connection ,size=0 + +2025-09-24 17:39:29,818 INFO Connection check task end + +2025-09-24 17:39:29,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:32,818 INFO Connection check task start + +2025-09-24 17:39:32,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:32,818 INFO Out dated connection ,size=0 + +2025-09-24 17:39:32,818 INFO Connection check task end + +2025-09-24 17:39:32,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:35,820 INFO Connection check task start + +2025-09-24 17:39:35,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:35,820 INFO Out dated connection ,size=0 + +2025-09-24 17:39:35,820 INFO Connection check task end + +2025-09-24 17:39:35,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:38,820 INFO Connection check task start + +2025-09-24 17:39:38,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:38,821 INFO Out dated connection ,size=0 + +2025-09-24 17:39:38,821 INFO Connection check task end + +2025-09-24 17:39:38,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:41,823 INFO Connection check task start + +2025-09-24 17:39:41,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:41,823 INFO Out dated connection ,size=0 + +2025-09-24 17:39:41,823 INFO Connection check task end + +2025-09-24 17:39:41,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:44,825 INFO Connection check task start + +2025-09-24 17:39:44,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:44,825 INFO Out dated connection ,size=0 + +2025-09-24 17:39:44,825 INFO Connection check task end + +2025-09-24 17:39:44,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:47,828 INFO Connection check task start + +2025-09-24 17:39:47,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:47,828 INFO Out dated connection ,size=0 + +2025-09-24 17:39:47,828 INFO Connection check task end + +2025-09-24 17:39:47,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:50,829 INFO Connection check task start + +2025-09-24 17:39:50,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:50,829 INFO Out dated connection ,size=0 + +2025-09-24 17:39:50,829 INFO Connection check task end + +2025-09-24 17:39:50,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:53,831 INFO Connection check task start + +2025-09-24 17:39:53,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:53,831 INFO Out dated connection ,size=0 + +2025-09-24 17:39:53,831 INFO Connection check task end + +2025-09-24 17:39:53,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:56,834 INFO Connection check task start + +2025-09-24 17:39:56,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:56,834 INFO Out dated connection ,size=0 + +2025-09-24 17:39:56,834 INFO Connection check task end + +2025-09-24 17:39:56,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:39:59,834 INFO Connection check task start + +2025-09-24 17:39:59,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:39:59,834 INFO Out dated connection ,size=0 + +2025-09-24 17:39:59,834 INFO Connection check task end + +2025-09-24 17:39:59,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:02,836 INFO Connection check task start + +2025-09-24 17:40:02,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:02,836 INFO Out dated connection ,size=0 + +2025-09-24 17:40:02,836 INFO Connection check task end + +2025-09-24 17:40:02,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:05,838 INFO Connection check task start + +2025-09-24 17:40:05,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:05,838 INFO Out dated connection ,size=0 + +2025-09-24 17:40:05,838 INFO Connection check task end + +2025-09-24 17:40:05,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:08,838 INFO Connection check task start + +2025-09-24 17:40:08,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:08,838 INFO Out dated connection ,size=0 + +2025-09-24 17:40:08,838 INFO Connection check task end + +2025-09-24 17:40:08,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:11,839 INFO Connection check task start + +2025-09-24 17:40:11,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:11,839 INFO Out dated connection ,size=0 + +2025-09-24 17:40:11,839 INFO Connection check task end + +2025-09-24 17:40:11,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:14,839 INFO Connection check task start + +2025-09-24 17:40:14,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:14,840 INFO Out dated connection ,size=0 + +2025-09-24 17:40:14,840 INFO Connection check task end + +2025-09-24 17:40:14,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:17,840 INFO Connection check task start + +2025-09-24 17:40:17,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:17,840 INFO Out dated connection ,size=0 + +2025-09-24 17:40:17,840 INFO Connection check task end + +2025-09-24 17:40:17,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:20,842 INFO Connection check task start + +2025-09-24 17:40:20,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:20,843 INFO Out dated connection ,size=0 + +2025-09-24 17:40:20,843 INFO Connection check task end + +2025-09-24 17:40:20,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:23,844 INFO Connection check task start + +2025-09-24 17:40:23,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:23,845 INFO Out dated connection ,size=0 + +2025-09-24 17:40:23,845 INFO Connection check task end + +2025-09-24 17:40:23,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:26,846 INFO Connection check task start + +2025-09-24 17:40:26,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:26,847 INFO Out dated connection ,size=0 + +2025-09-24 17:40:26,847 INFO Connection check task end + +2025-09-24 17:40:26,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:29,847 INFO Connection check task start + +2025-09-24 17:40:29,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:29,847 INFO Out dated connection ,size=0 + +2025-09-24 17:40:29,847 INFO Connection check task end + +2025-09-24 17:40:29,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:32,849 INFO Connection check task start + +2025-09-24 17:40:32,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:32,849 INFO Out dated connection ,size=0 + +2025-09-24 17:40:32,849 INFO Connection check task end + +2025-09-24 17:40:32,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:35,850 INFO Connection check task start + +2025-09-24 17:40:35,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:35,850 INFO Out dated connection ,size=0 + +2025-09-24 17:40:35,850 INFO Connection check task end + +2025-09-24 17:40:35,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:38,851 INFO Connection check task start + +2025-09-24 17:40:38,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:38,851 INFO Out dated connection ,size=0 + +2025-09-24 17:40:38,851 INFO Connection check task end + +2025-09-24 17:40:38,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:41,853 INFO Connection check task start + +2025-09-24 17:40:41,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:41,853 INFO Out dated connection ,size=0 + +2025-09-24 17:40:41,854 INFO Connection check task end + +2025-09-24 17:40:41,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:44,854 INFO Connection check task start + +2025-09-24 17:40:44,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:44,854 INFO Out dated connection ,size=0 + +2025-09-24 17:40:44,854 INFO Connection check task end + +2025-09-24 17:40:44,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:47,855 INFO Connection check task start + +2025-09-24 17:40:47,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:47,855 INFO Out dated connection ,size=0 + +2025-09-24 17:40:47,855 INFO Connection check task end + +2025-09-24 17:40:47,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:50,855 INFO Connection check task start + +2025-09-24 17:40:50,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:50,856 INFO Out dated connection ,size=0 + +2025-09-24 17:40:50,856 INFO Connection check task end + +2025-09-24 17:40:50,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:53,858 INFO Connection check task start + +2025-09-24 17:40:53,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:53,858 INFO Out dated connection ,size=0 + +2025-09-24 17:40:53,858 INFO Connection check task end + +2025-09-24 17:40:53,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:56,858 INFO Connection check task start + +2025-09-24 17:40:56,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:56,858 INFO Out dated connection ,size=0 + +2025-09-24 17:40:56,859 INFO Connection check task end + +2025-09-24 17:40:56,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:40:59,859 INFO Connection check task start + +2025-09-24 17:40:59,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:40:59,859 INFO Out dated connection ,size=0 + +2025-09-24 17:40:59,859 INFO Connection check task end + +2025-09-24 17:40:59,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:02,860 INFO Connection check task start + +2025-09-24 17:41:02,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:02,860 INFO Out dated connection ,size=0 + +2025-09-24 17:41:02,860 INFO Connection check task end + +2025-09-24 17:41:02,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:05,861 INFO Connection check task start + +2025-09-24 17:41:05,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:05,861 INFO Out dated connection ,size=0 + +2025-09-24 17:41:05,861 INFO Connection check task end + +2025-09-24 17:41:05,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:08,862 INFO Connection check task start + +2025-09-24 17:41:08,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:08,862 INFO Out dated connection ,size=0 + +2025-09-24 17:41:08,862 INFO Connection check task end + +2025-09-24 17:41:08,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:11,863 INFO Connection check task start + +2025-09-24 17:41:11,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:11,863 INFO Out dated connection ,size=0 + +2025-09-24 17:41:11,863 INFO Connection check task end + +2025-09-24 17:41:11,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:14,864 INFO Connection check task start + +2025-09-24 17:41:14,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:14,864 INFO Out dated connection ,size=0 + +2025-09-24 17:41:14,864 INFO Connection check task end + +2025-09-24 17:41:14,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:17,866 INFO Connection check task start + +2025-09-24 17:41:17,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:17,866 INFO Out dated connection ,size=0 + +2025-09-24 17:41:17,866 INFO Connection check task end + +2025-09-24 17:41:17,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:20,868 INFO Connection check task start + +2025-09-24 17:41:20,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:20,868 INFO Out dated connection ,size=0 + +2025-09-24 17:41:20,869 INFO Connection check task end + +2025-09-24 17:41:20,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:23,869 INFO Connection check task start + +2025-09-24 17:41:23,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:23,870 INFO Out dated connection ,size=0 + +2025-09-24 17:41:23,870 INFO Connection check task end + +2025-09-24 17:41:23,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:26,870 INFO Connection check task start + +2025-09-24 17:41:26,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:26,871 INFO Out dated connection ,size=0 + +2025-09-24 17:41:26,871 INFO Connection check task end + +2025-09-24 17:41:26,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:29,871 INFO Connection check task start + +2025-09-24 17:41:29,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:29,871 INFO Out dated connection ,size=0 + +2025-09-24 17:41:29,871 INFO Connection check task end + +2025-09-24 17:41:29,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:32,872 INFO Connection check task start + +2025-09-24 17:41:32,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:32,872 INFO Out dated connection ,size=0 + +2025-09-24 17:41:32,872 INFO Connection check task end + +2025-09-24 17:41:32,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:35,873 INFO Connection check task start + +2025-09-24 17:41:35,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:35,874 INFO Out dated connection ,size=0 + +2025-09-24 17:41:35,874 INFO Connection check task end + +2025-09-24 17:41:35,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:38,874 INFO Connection check task start + +2025-09-24 17:41:38,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:38,874 INFO Out dated connection ,size=0 + +2025-09-24 17:41:38,874 INFO Connection check task end + +2025-09-24 17:41:38,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:41,876 INFO Connection check task start + +2025-09-24 17:41:41,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:41,876 INFO Out dated connection ,size=0 + +2025-09-24 17:41:41,876 INFO Connection check task end + +2025-09-24 17:41:41,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:44,878 INFO Connection check task start + +2025-09-24 17:41:44,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:44,879 INFO Out dated connection ,size=0 + +2025-09-24 17:41:44,879 INFO Connection check task end + +2025-09-24 17:41:44,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:47,879 INFO Connection check task start + +2025-09-24 17:41:47,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:47,879 INFO Out dated connection ,size=0 + +2025-09-24 17:41:47,879 INFO Connection check task end + +2025-09-24 17:41:48,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:50,881 INFO Connection check task start + +2025-09-24 17:41:50,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:50,882 INFO Out dated connection ,size=0 + +2025-09-24 17:41:50,882 INFO Connection check task end + +2025-09-24 17:41:51,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:53,882 INFO Connection check task start + +2025-09-24 17:41:53,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:53,882 INFO Out dated connection ,size=0 + +2025-09-24 17:41:53,882 INFO Connection check task end + +2025-09-24 17:41:54,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:56,882 INFO Connection check task start + +2025-09-24 17:41:56,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:56,883 INFO Out dated connection ,size=0 + +2025-09-24 17:41:56,883 INFO Connection check task end + +2025-09-24 17:41:57,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:41:59,885 INFO Connection check task start + +2025-09-24 17:41:59,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:41:59,885 INFO Out dated connection ,size=0 + +2025-09-24 17:41:59,885 INFO Connection check task end + +2025-09-24 17:42:00,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:02,886 INFO Connection check task start + +2025-09-24 17:42:02,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:02,886 INFO Out dated connection ,size=0 + +2025-09-24 17:42:02,886 INFO Connection check task end + +2025-09-24 17:42:03,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:05,887 INFO Connection check task start + +2025-09-24 17:42:05,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:05,887 INFO Out dated connection ,size=0 + +2025-09-24 17:42:05,887 INFO Connection check task end + +2025-09-24 17:42:06,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:08,887 INFO Connection check task start + +2025-09-24 17:42:08,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:08,888 INFO Out dated connection ,size=0 + +2025-09-24 17:42:08,888 INFO Connection check task end + +2025-09-24 17:42:09,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:11,888 INFO Connection check task start + +2025-09-24 17:42:11,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:11,888 INFO Out dated connection ,size=0 + +2025-09-24 17:42:11,888 INFO Connection check task end + +2025-09-24 17:42:12,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:14,890 INFO Connection check task start + +2025-09-24 17:42:14,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:14,891 INFO Out dated connection ,size=0 + +2025-09-24 17:42:14,891 INFO Connection check task end + +2025-09-24 17:42:15,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:17,893 INFO Connection check task start + +2025-09-24 17:42:17,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:17,893 INFO Out dated connection ,size=0 + +2025-09-24 17:42:17,893 INFO Connection check task end + +2025-09-24 17:42:18,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:20,895 INFO Connection check task start + +2025-09-24 17:42:20,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:20,895 INFO Out dated connection ,size=0 + +2025-09-24 17:42:20,895 INFO Connection check task end + +2025-09-24 17:42:21,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:23,897 INFO Connection check task start + +2025-09-24 17:42:23,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:23,898 INFO Out dated connection ,size=0 + +2025-09-24 17:42:23,898 INFO Connection check task end + +2025-09-24 17:42:24,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:26,898 INFO Connection check task start + +2025-09-24 17:42:26,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:26,898 INFO Out dated connection ,size=0 + +2025-09-24 17:42:26,898 INFO Connection check task end + +2025-09-24 17:42:27,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:29,899 INFO Connection check task start + +2025-09-24 17:42:29,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:29,899 INFO Out dated connection ,size=0 + +2025-09-24 17:42:29,899 INFO Connection check task end + +2025-09-24 17:42:30,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:32,900 INFO Connection check task start + +2025-09-24 17:42:32,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:32,900 INFO Out dated connection ,size=0 + +2025-09-24 17:42:32,900 INFO Connection check task end + +2025-09-24 17:42:33,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:35,901 INFO Connection check task start + +2025-09-24 17:42:35,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:35,901 INFO Out dated connection ,size=0 + +2025-09-24 17:42:35,901 INFO Connection check task end + +2025-09-24 17:42:36,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:38,902 INFO Connection check task start + +2025-09-24 17:42:38,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:38,902 INFO Out dated connection ,size=0 + +2025-09-24 17:42:38,902 INFO Connection check task end + +2025-09-24 17:42:39,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:41,902 INFO Connection check task start + +2025-09-24 17:42:41,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:41,902 INFO Out dated connection ,size=0 + +2025-09-24 17:42:41,902 INFO Connection check task end + +2025-09-24 17:42:42,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:44,903 INFO Connection check task start + +2025-09-24 17:42:44,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:44,903 INFO Out dated connection ,size=0 + +2025-09-24 17:42:44,903 INFO Connection check task end + +2025-09-24 17:42:45,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:47,905 INFO Connection check task start + +2025-09-24 17:42:47,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:47,905 INFO Out dated connection ,size=0 + +2025-09-24 17:42:47,905 INFO Connection check task end + +2025-09-24 17:42:48,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:50,905 INFO Connection check task start + +2025-09-24 17:42:50,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:50,906 INFO Out dated connection ,size=0 + +2025-09-24 17:42:50,906 INFO Connection check task end + +2025-09-24 17:42:51,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:53,906 INFO Connection check task start + +2025-09-24 17:42:53,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:53,906 INFO Out dated connection ,size=0 + +2025-09-24 17:42:53,906 INFO Connection check task end + +2025-09-24 17:42:54,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:56,907 INFO Connection check task start + +2025-09-24 17:42:56,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:56,907 INFO Out dated connection ,size=0 + +2025-09-24 17:42:56,907 INFO Connection check task end + +2025-09-24 17:42:57,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:42:59,907 INFO Connection check task start + +2025-09-24 17:42:59,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:42:59,908 INFO Out dated connection ,size=0 + +2025-09-24 17:42:59,908 INFO Connection check task end + +2025-09-24 17:43:00,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:02,910 INFO Connection check task start + +2025-09-24 17:43:02,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:02,910 INFO Out dated connection ,size=0 + +2025-09-24 17:43:02,910 INFO Connection check task end + +2025-09-24 17:43:03,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:05,910 INFO Connection check task start + +2025-09-24 17:43:05,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:05,911 INFO Out dated connection ,size=0 + +2025-09-24 17:43:05,911 INFO Connection check task end + +2025-09-24 17:43:06,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:08,911 INFO Connection check task start + +2025-09-24 17:43:08,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:08,911 INFO Out dated connection ,size=0 + +2025-09-24 17:43:08,911 INFO Connection check task end + +2025-09-24 17:43:09,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:11,912 INFO Connection check task start + +2025-09-24 17:43:11,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:11,912 INFO Out dated connection ,size=0 + +2025-09-24 17:43:11,912 INFO Connection check task end + +2025-09-24 17:43:12,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:14,913 INFO Connection check task start + +2025-09-24 17:43:14,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:14,913 INFO Out dated connection ,size=0 + +2025-09-24 17:43:14,913 INFO Connection check task end + +2025-09-24 17:43:15,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:17,914 INFO Connection check task start + +2025-09-24 17:43:17,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:17,914 INFO Out dated connection ,size=0 + +2025-09-24 17:43:17,914 INFO Connection check task end + +2025-09-24 17:43:18,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:20,916 INFO Connection check task start + +2025-09-24 17:43:20,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:20,916 INFO Out dated connection ,size=0 + +2025-09-24 17:43:20,916 INFO Connection check task end + +2025-09-24 17:43:21,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:23,918 INFO Connection check task start + +2025-09-24 17:43:23,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:23,919 INFO Out dated connection ,size=0 + +2025-09-24 17:43:23,919 INFO Connection check task end + +2025-09-24 17:43:24,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:26,920 INFO Connection check task start + +2025-09-24 17:43:26,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:26,920 INFO Out dated connection ,size=0 + +2025-09-24 17:43:26,920 INFO Connection check task end + +2025-09-24 17:43:27,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:29,921 INFO Connection check task start + +2025-09-24 17:43:29,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:29,921 INFO Out dated connection ,size=0 + +2025-09-24 17:43:29,921 INFO Connection check task end + +2025-09-24 17:43:30,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:32,923 INFO Connection check task start + +2025-09-24 17:43:32,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:32,923 INFO Out dated connection ,size=0 + +2025-09-24 17:43:32,923 INFO Connection check task end + +2025-09-24 17:43:33,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:35,925 INFO Connection check task start + +2025-09-24 17:43:35,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:35,925 INFO Out dated connection ,size=0 + +2025-09-24 17:43:35,925 INFO Connection check task end + +2025-09-24 17:43:36,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:38,926 INFO Connection check task start + +2025-09-24 17:43:38,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:38,926 INFO Out dated connection ,size=0 + +2025-09-24 17:43:38,926 INFO Connection check task end + +2025-09-24 17:43:39,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:41,926 INFO Connection check task start + +2025-09-24 17:43:41,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:41,927 INFO Out dated connection ,size=0 + +2025-09-24 17:43:41,927 INFO Connection check task end + +2025-09-24 17:43:42,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:44,927 INFO Connection check task start + +2025-09-24 17:43:44,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:44,927 INFO Out dated connection ,size=0 + +2025-09-24 17:43:44,927 INFO Connection check task end + +2025-09-24 17:43:45,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:47,928 INFO Connection check task start + +2025-09-24 17:43:47,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:47,928 INFO Out dated connection ,size=0 + +2025-09-24 17:43:47,928 INFO Connection check task end + +2025-09-24 17:43:48,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:50,930 INFO Connection check task start + +2025-09-24 17:43:50,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:50,930 INFO Out dated connection ,size=0 + +2025-09-24 17:43:50,931 INFO Connection check task end + +2025-09-24 17:43:51,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:53,932 INFO Connection check task start + +2025-09-24 17:43:53,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:53,932 INFO Out dated connection ,size=0 + +2025-09-24 17:43:53,932 INFO Connection check task end + +2025-09-24 17:43:54,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:56,934 INFO Connection check task start + +2025-09-24 17:43:56,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:56,934 INFO Out dated connection ,size=0 + +2025-09-24 17:43:56,934 INFO Connection check task end + +2025-09-24 17:43:57,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:43:59,935 INFO Connection check task start + +2025-09-24 17:43:59,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:43:59,935 INFO Out dated connection ,size=0 + +2025-09-24 17:43:59,935 INFO Connection check task end + +2025-09-24 17:44:00,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:02,938 INFO Connection check task start + +2025-09-24 17:44:02,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:02,938 INFO Out dated connection ,size=0 + +2025-09-24 17:44:02,938 INFO Connection check task end + +2025-09-24 17:44:03,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:05,940 INFO Connection check task start + +2025-09-24 17:44:05,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:05,940 INFO Out dated connection ,size=0 + +2025-09-24 17:44:05,940 INFO Connection check task end + +2025-09-24 17:44:06,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:08,942 INFO Connection check task start + +2025-09-24 17:44:08,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:08,943 INFO Out dated connection ,size=0 + +2025-09-24 17:44:08,943 INFO Connection check task end + +2025-09-24 17:44:09,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:11,943 INFO Connection check task start + +2025-09-24 17:44:11,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:11,943 INFO Out dated connection ,size=0 + +2025-09-24 17:44:11,944 INFO Connection check task end + +2025-09-24 17:44:12,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:14,945 INFO Connection check task start + +2025-09-24 17:44:14,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:14,945 INFO Out dated connection ,size=0 + +2025-09-24 17:44:14,945 INFO Connection check task end + +2025-09-24 17:44:15,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:17,946 INFO Connection check task start + +2025-09-24 17:44:17,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:17,946 INFO Out dated connection ,size=0 + +2025-09-24 17:44:17,946 INFO Connection check task end + +2025-09-24 17:44:18,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:20,947 INFO Connection check task start + +2025-09-24 17:44:20,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:20,948 INFO Out dated connection ,size=0 + +2025-09-24 17:44:20,948 INFO Connection check task end + +2025-09-24 17:44:21,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:23,950 INFO Connection check task start + +2025-09-24 17:44:23,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:23,951 INFO Out dated connection ,size=0 + +2025-09-24 17:44:23,951 INFO Connection check task end + +2025-09-24 17:44:24,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:26,951 INFO Connection check task start + +2025-09-24 17:44:26,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:26,951 INFO Out dated connection ,size=0 + +2025-09-24 17:44:26,951 INFO Connection check task end + +2025-09-24 17:44:27,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:29,952 INFO Connection check task start + +2025-09-24 17:44:29,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:29,952 INFO Out dated connection ,size=0 + +2025-09-24 17:44:29,952 INFO Connection check task end + +2025-09-24 17:44:30,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:32,953 INFO Connection check task start + +2025-09-24 17:44:32,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:32,953 INFO Out dated connection ,size=0 + +2025-09-24 17:44:32,953 INFO Connection check task end + +2025-09-24 17:44:33,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:35,954 INFO Connection check task start + +2025-09-24 17:44:35,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:35,954 INFO Out dated connection ,size=0 + +2025-09-24 17:44:35,954 INFO Connection check task end + +2025-09-24 17:44:36,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:38,954 INFO Connection check task start + +2025-09-24 17:44:38,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:38,954 INFO Out dated connection ,size=0 + +2025-09-24 17:44:38,954 INFO Connection check task end + +2025-09-24 17:44:39,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:41,956 INFO Connection check task start + +2025-09-24 17:44:41,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:41,956 INFO Out dated connection ,size=0 + +2025-09-24 17:44:41,956 INFO Connection check task end + +2025-09-24 17:44:42,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:44,957 INFO Connection check task start + +2025-09-24 17:44:44,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:44,957 INFO Out dated connection ,size=0 + +2025-09-24 17:44:44,957 INFO Connection check task end + +2025-09-24 17:44:45,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:47,959 INFO Connection check task start + +2025-09-24 17:44:47,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:47,960 INFO Out dated connection ,size=0 + +2025-09-24 17:44:47,960 INFO Connection check task end + +2025-09-24 17:44:48,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:50,960 INFO Connection check task start + +2025-09-24 17:44:50,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:50,960 INFO Out dated connection ,size=0 + +2025-09-24 17:44:50,960 INFO Connection check task end + +2025-09-24 17:44:51,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:53,962 INFO Connection check task start + +2025-09-24 17:44:53,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:53,962 INFO Out dated connection ,size=0 + +2025-09-24 17:44:53,962 INFO Connection check task end + +2025-09-24 17:44:54,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:56,964 INFO Connection check task start + +2025-09-24 17:44:56,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:56,964 INFO Out dated connection ,size=0 + +2025-09-24 17:44:56,964 INFO Connection check task end + +2025-09-24 17:44:57,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:44:59,967 INFO Connection check task start + +2025-09-24 17:44:59,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:44:59,967 INFO Out dated connection ,size=0 + +2025-09-24 17:44:59,967 INFO Connection check task end + +2025-09-24 17:45:00,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:02,968 INFO Connection check task start + +2025-09-24 17:45:02,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:02,968 INFO Out dated connection ,size=0 + +2025-09-24 17:45:02,968 INFO Connection check task end + +2025-09-24 17:45:03,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:05,968 INFO Connection check task start + +2025-09-24 17:45:05,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:05,969 INFO Out dated connection ,size=0 + +2025-09-24 17:45:05,969 INFO Connection check task end + +2025-09-24 17:45:06,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:08,969 INFO Connection check task start + +2025-09-24 17:45:08,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:08,969 INFO Out dated connection ,size=0 + +2025-09-24 17:45:08,969 INFO Connection check task end + +2025-09-24 17:45:09,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:11,971 INFO Connection check task start + +2025-09-24 17:45:11,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:11,971 INFO Out dated connection ,size=0 + +2025-09-24 17:45:11,971 INFO Connection check task end + +2025-09-24 17:45:12,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:14,973 INFO Connection check task start + +2025-09-24 17:45:14,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:14,973 INFO Out dated connection ,size=0 + +2025-09-24 17:45:14,973 INFO Connection check task end + +2025-09-24 17:45:15,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:17,975 INFO Connection check task start + +2025-09-24 17:45:17,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:17,976 INFO Out dated connection ,size=0 + +2025-09-24 17:45:17,976 INFO Connection check task end + +2025-09-24 17:45:18,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:20,976 INFO Connection check task start + +2025-09-24 17:45:20,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:20,976 INFO Out dated connection ,size=0 + +2025-09-24 17:45:20,976 INFO Connection check task end + +2025-09-24 17:45:21,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:23,977 INFO Connection check task start + +2025-09-24 17:45:23,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:23,978 INFO Out dated connection ,size=0 + +2025-09-24 17:45:23,978 INFO Connection check task end + +2025-09-24 17:45:24,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:26,979 INFO Connection check task start + +2025-09-24 17:45:26,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:26,979 INFO Out dated connection ,size=0 + +2025-09-24 17:45:26,979 INFO Connection check task end + +2025-09-24 17:45:27,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:29,979 INFO Connection check task start + +2025-09-24 17:45:29,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:29,979 INFO Out dated connection ,size=0 + +2025-09-24 17:45:29,979 INFO Connection check task end + +2025-09-24 17:45:30,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:32,979 INFO Connection check task start + +2025-09-24 17:45:32,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:32,980 INFO Out dated connection ,size=0 + +2025-09-24 17:45:32,980 INFO Connection check task end + +2025-09-24 17:45:33,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:35,981 INFO Connection check task start + +2025-09-24 17:45:35,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:35,981 INFO Out dated connection ,size=0 + +2025-09-24 17:45:35,981 INFO Connection check task end + +2025-09-24 17:45:36,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:38,982 INFO Connection check task start + +2025-09-24 17:45:38,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:38,982 INFO Out dated connection ,size=0 + +2025-09-24 17:45:38,982 INFO Connection check task end + +2025-09-24 17:45:39,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:41,982 INFO Connection check task start + +2025-09-24 17:45:41,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:41,982 INFO Out dated connection ,size=0 + +2025-09-24 17:45:41,982 INFO Connection check task end + +2025-09-24 17:45:42,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:44,983 INFO Connection check task start + +2025-09-24 17:45:44,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:44,983 INFO Out dated connection ,size=0 + +2025-09-24 17:45:44,983 INFO Connection check task end + +2025-09-24 17:45:45,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:47,985 INFO Connection check task start + +2025-09-24 17:45:47,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:47,986 INFO Out dated connection ,size=0 + +2025-09-24 17:45:47,986 INFO Connection check task end + +2025-09-24 17:45:48,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:50,986 INFO Connection check task start + +2025-09-24 17:45:50,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:50,987 INFO Out dated connection ,size=0 + +2025-09-24 17:45:50,987 INFO Connection check task end + +2025-09-24 17:45:51,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:53,988 INFO Connection check task start + +2025-09-24 17:45:53,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:53,988 INFO Out dated connection ,size=0 + +2025-09-24 17:45:53,988 INFO Connection check task end + +2025-09-24 17:45:54,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:56,989 INFO Connection check task start + +2025-09-24 17:45:56,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:56,989 INFO Out dated connection ,size=0 + +2025-09-24 17:45:56,989 INFO Connection check task end + +2025-09-24 17:45:57,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:45:59,989 INFO Connection check task start + +2025-09-24 17:45:59,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:45:59,989 INFO Out dated connection ,size=0 + +2025-09-24 17:45:59,989 INFO Connection check task end + +2025-09-24 17:46:00,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:02,989 INFO Connection check task start + +2025-09-24 17:46:02,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:02,990 INFO Out dated connection ,size=0 + +2025-09-24 17:46:02,990 INFO Connection check task end + +2025-09-24 17:46:03,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:05,991 INFO Connection check task start + +2025-09-24 17:46:05,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:05,992 INFO Out dated connection ,size=0 + +2025-09-24 17:46:05,992 INFO Connection check task end + +2025-09-24 17:46:06,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:08,992 INFO Connection check task start + +2025-09-24 17:46:08,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:08,993 INFO Out dated connection ,size=0 + +2025-09-24 17:46:08,993 INFO Connection check task end + +2025-09-24 17:46:09,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:11,993 INFO Connection check task start + +2025-09-24 17:46:11,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:11,993 INFO Out dated connection ,size=0 + +2025-09-24 17:46:11,993 INFO Connection check task end + +2025-09-24 17:46:12,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:14,993 INFO Connection check task start + +2025-09-24 17:46:14,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:14,993 INFO Out dated connection ,size=0 + +2025-09-24 17:46:14,994 INFO Connection check task end + +2025-09-24 17:46:15,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:17,996 INFO Connection check task start + +2025-09-24 17:46:17,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:17,996 INFO Out dated connection ,size=0 + +2025-09-24 17:46:17,996 INFO Connection check task end + +2025-09-24 17:46:18,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:20,996 INFO Connection check task start + +2025-09-24 17:46:20,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:20,997 INFO Out dated connection ,size=0 + +2025-09-24 17:46:20,997 INFO Connection check task end + +2025-09-24 17:46:21,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:23,997 INFO Connection check task start + +2025-09-24 17:46:23,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:23,997 INFO Out dated connection ,size=0 + +2025-09-24 17:46:23,997 INFO Connection check task end + +2025-09-24 17:46:24,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:26,998 INFO Connection check task start + +2025-09-24 17:46:26,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:26,998 INFO Out dated connection ,size=0 + +2025-09-24 17:46:26,998 INFO Connection check task end + +2025-09-24 17:46:27,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:30,000 INFO Connection check task start + +2025-09-24 17:46:30,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:30,000 INFO Out dated connection ,size=0 + +2025-09-24 17:46:30,000 INFO Connection check task end + +2025-09-24 17:46:30,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:33,000 INFO Connection check task start + +2025-09-24 17:46:33,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:33,000 INFO Out dated connection ,size=0 + +2025-09-24 17:46:33,000 INFO Connection check task end + +2025-09-24 17:46:33,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:36,001 INFO Connection check task start + +2025-09-24 17:46:36,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:36,001 INFO Out dated connection ,size=0 + +2025-09-24 17:46:36,001 INFO Connection check task end + +2025-09-24 17:46:36,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:39,001 INFO Connection check task start + +2025-09-24 17:46:39,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:39,001 INFO Out dated connection ,size=0 + +2025-09-24 17:46:39,001 INFO Connection check task end + +2025-09-24 17:46:39,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:42,001 INFO Connection check task start + +2025-09-24 17:46:42,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:42,001 INFO Out dated connection ,size=0 + +2025-09-24 17:46:42,001 INFO Connection check task end + +2025-09-24 17:46:42,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:45,002 INFO Connection check task start + +2025-09-24 17:46:45,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:45,002 INFO Out dated connection ,size=0 + +2025-09-24 17:46:45,002 INFO Connection check task end + +2025-09-24 17:46:45,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:48,002 INFO Connection check task start + +2025-09-24 17:46:48,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:48,002 INFO Out dated connection ,size=0 + +2025-09-24 17:46:48,002 INFO Connection check task end + +2025-09-24 17:46:48,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:51,003 INFO Connection check task start + +2025-09-24 17:46:51,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:51,003 INFO Out dated connection ,size=0 + +2025-09-24 17:46:51,003 INFO Connection check task end + +2025-09-24 17:46:51,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:54,003 INFO Connection check task start + +2025-09-24 17:46:54,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:54,003 INFO Out dated connection ,size=0 + +2025-09-24 17:46:54,003 INFO Connection check task end + +2025-09-24 17:46:54,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:46:57,004 INFO Connection check task start + +2025-09-24 17:46:57,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:46:57,004 INFO Out dated connection ,size=0 + +2025-09-24 17:46:57,004 INFO Connection check task end + +2025-09-24 17:46:57,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:00,004 INFO Connection check task start + +2025-09-24 17:47:00,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:00,004 INFO Out dated connection ,size=0 + +2025-09-24 17:47:00,004 INFO Connection check task end + +2025-09-24 17:47:00,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:03,005 INFO Connection check task start + +2025-09-24 17:47:03,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:03,005 INFO Out dated connection ,size=0 + +2025-09-24 17:47:03,005 INFO Connection check task end + +2025-09-24 17:47:03,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:06,005 INFO Connection check task start + +2025-09-24 17:47:06,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:06,005 INFO Out dated connection ,size=0 + +2025-09-24 17:47:06,005 INFO Connection check task end + +2025-09-24 17:47:06,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:09,007 INFO Connection check task start + +2025-09-24 17:47:09,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:09,008 INFO Out dated connection ,size=0 + +2025-09-24 17:47:09,008 INFO Connection check task end + +2025-09-24 17:47:09,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:12,009 INFO Connection check task start + +2025-09-24 17:47:12,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:12,009 INFO Out dated connection ,size=0 + +2025-09-24 17:47:12,009 INFO Connection check task end + +2025-09-24 17:47:12,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:15,009 INFO Connection check task start + +2025-09-24 17:47:15,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:15,009 INFO Out dated connection ,size=0 + +2025-09-24 17:47:15,009 INFO Connection check task end + +2025-09-24 17:47:15,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:18,010 INFO Connection check task start + +2025-09-24 17:47:18,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:18,010 INFO Out dated connection ,size=0 + +2025-09-24 17:47:18,010 INFO Connection check task end + +2025-09-24 17:47:18,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:21,010 INFO Connection check task start + +2025-09-24 17:47:21,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:21,011 INFO Out dated connection ,size=0 + +2025-09-24 17:47:21,011 INFO Connection check task end + +2025-09-24 17:47:21,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:24,011 INFO Connection check task start + +2025-09-24 17:47:24,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:24,011 INFO Out dated connection ,size=0 + +2025-09-24 17:47:24,011 INFO Connection check task end + +2025-09-24 17:47:24,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:27,012 INFO Connection check task start + +2025-09-24 17:47:27,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:27,012 INFO Out dated connection ,size=0 + +2025-09-24 17:47:27,012 INFO Connection check task end + +2025-09-24 17:47:27,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:30,012 INFO Connection check task start + +2025-09-24 17:47:30,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:30,013 INFO Out dated connection ,size=0 + +2025-09-24 17:47:30,013 INFO Connection check task end + +2025-09-24 17:47:30,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:33,013 INFO Connection check task start + +2025-09-24 17:47:33,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:33,014 INFO Out dated connection ,size=0 + +2025-09-24 17:47:33,014 INFO Connection check task end + +2025-09-24 17:47:33,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:36,014 INFO Connection check task start + +2025-09-24 17:47:36,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:36,014 INFO Out dated connection ,size=0 + +2025-09-24 17:47:36,014 INFO Connection check task end + +2025-09-24 17:47:36,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:39,014 INFO Connection check task start + +2025-09-24 17:47:39,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:39,015 INFO Out dated connection ,size=0 + +2025-09-24 17:47:39,015 INFO Connection check task end + +2025-09-24 17:47:39,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:42,015 INFO Connection check task start + +2025-09-24 17:47:42,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:42,015 INFO Out dated connection ,size=0 + +2025-09-24 17:47:42,015 INFO Connection check task end + +2025-09-24 17:47:42,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:45,015 INFO Connection check task start + +2025-09-24 17:47:45,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:45,015 INFO Out dated connection ,size=0 + +2025-09-24 17:47:45,015 INFO Connection check task end + +2025-09-24 17:47:45,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:48,016 INFO Connection check task start + +2025-09-24 17:47:48,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:48,016 INFO Out dated connection ,size=0 + +2025-09-24 17:47:48,016 INFO Connection check task end + +2025-09-24 17:47:48,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:51,016 INFO Connection check task start + +2025-09-24 17:47:51,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:51,016 INFO Out dated connection ,size=0 + +2025-09-24 17:47:51,017 INFO Connection check task end + +2025-09-24 17:47:51,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:54,017 INFO Connection check task start + +2025-09-24 17:47:54,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:54,017 INFO Out dated connection ,size=0 + +2025-09-24 17:47:54,017 INFO Connection check task end + +2025-09-24 17:47:54,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:47:57,018 INFO Connection check task start + +2025-09-24 17:47:57,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:47:57,018 INFO Out dated connection ,size=0 + +2025-09-24 17:47:57,018 INFO Connection check task end + +2025-09-24 17:47:57,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:00,018 INFO Connection check task start + +2025-09-24 17:48:00,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:00,019 INFO Out dated connection ,size=0 + +2025-09-24 17:48:00,019 INFO Connection check task end + +2025-09-24 17:48:00,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:03,019 INFO Connection check task start + +2025-09-24 17:48:03,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:03,019 INFO Out dated connection ,size=0 + +2025-09-24 17:48:03,019 INFO Connection check task end + +2025-09-24 17:48:03,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:06,019 INFO Connection check task start + +2025-09-24 17:48:06,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:06,020 INFO Out dated connection ,size=0 + +2025-09-24 17:48:06,020 INFO Connection check task end + +2025-09-24 17:48:06,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:09,021 INFO Connection check task start + +2025-09-24 17:48:09,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:09,021 INFO Out dated connection ,size=0 + +2025-09-24 17:48:09,021 INFO Connection check task end + +2025-09-24 17:48:09,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:12,021 INFO Connection check task start + +2025-09-24 17:48:12,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:12,021 INFO Out dated connection ,size=0 + +2025-09-24 17:48:12,021 INFO Connection check task end + +2025-09-24 17:48:12,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:15,022 INFO Connection check task start + +2025-09-24 17:48:15,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:15,022 INFO Out dated connection ,size=0 + +2025-09-24 17:48:15,022 INFO Connection check task end + +2025-09-24 17:48:15,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:18,023 INFO Connection check task start + +2025-09-24 17:48:18,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:18,023 INFO Out dated connection ,size=0 + +2025-09-24 17:48:18,023 INFO Connection check task end + +2025-09-24 17:48:18,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:21,023 INFO Connection check task start + +2025-09-24 17:48:21,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:21,023 INFO Out dated connection ,size=0 + +2025-09-24 17:48:21,024 INFO Connection check task end + +2025-09-24 17:48:21,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:24,024 INFO Connection check task start + +2025-09-24 17:48:24,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:24,025 INFO Out dated connection ,size=0 + +2025-09-24 17:48:24,025 INFO Connection check task end + +2025-09-24 17:48:24,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:27,026 INFO Connection check task start + +2025-09-24 17:48:27,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:27,026 INFO Out dated connection ,size=0 + +2025-09-24 17:48:27,026 INFO Connection check task end + +2025-09-24 17:48:27,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:30,026 INFO Connection check task start + +2025-09-24 17:48:30,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:30,026 INFO Out dated connection ,size=0 + +2025-09-24 17:48:30,026 INFO Connection check task end + +2025-09-24 17:48:30,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:33,027 INFO Connection check task start + +2025-09-24 17:48:33,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:33,027 INFO Out dated connection ,size=0 + +2025-09-24 17:48:33,027 INFO Connection check task end + +2025-09-24 17:48:33,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:36,027 INFO Connection check task start + +2025-09-24 17:48:36,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:36,027 INFO Out dated connection ,size=0 + +2025-09-24 17:48:36,027 INFO Connection check task end + +2025-09-24 17:48:36,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:39,028 INFO Connection check task start + +2025-09-24 17:48:39,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:39,028 INFO Out dated connection ,size=0 + +2025-09-24 17:48:39,028 INFO Connection check task end + +2025-09-24 17:48:39,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:42,029 INFO Connection check task start + +2025-09-24 17:48:42,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:42,029 INFO Out dated connection ,size=0 + +2025-09-24 17:48:42,029 INFO Connection check task end + +2025-09-24 17:48:42,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:45,029 INFO Connection check task start + +2025-09-24 17:48:45,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:45,029 INFO Out dated connection ,size=0 + +2025-09-24 17:48:45,029 INFO Connection check task end + +2025-09-24 17:48:45,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:48,030 INFO Connection check task start + +2025-09-24 17:48:48,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:48,030 INFO Out dated connection ,size=0 + +2025-09-24 17:48:48,030 INFO Connection check task end + +2025-09-24 17:48:48,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:51,030 INFO Connection check task start + +2025-09-24 17:48:51,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:51,030 INFO Out dated connection ,size=0 + +2025-09-24 17:48:51,030 INFO Connection check task end + +2025-09-24 17:48:51,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:54,031 INFO Connection check task start + +2025-09-24 17:48:54,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:54,031 INFO Out dated connection ,size=0 + +2025-09-24 17:48:54,031 INFO Connection check task end + +2025-09-24 17:48:54,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:48:57,032 INFO Connection check task start + +2025-09-24 17:48:57,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:48:57,032 INFO Out dated connection ,size=0 + +2025-09-24 17:48:57,032 INFO Connection check task end + +2025-09-24 17:48:57,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:00,032 INFO Connection check task start + +2025-09-24 17:49:00,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:00,032 INFO Out dated connection ,size=0 + +2025-09-24 17:49:00,032 INFO Connection check task end + +2025-09-24 17:49:00,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:03,033 INFO Connection check task start + +2025-09-24 17:49:03,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:03,033 INFO Out dated connection ,size=0 + +2025-09-24 17:49:03,033 INFO Connection check task end + +2025-09-24 17:49:03,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:06,033 INFO Connection check task start + +2025-09-24 17:49:06,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:06,034 INFO Out dated connection ,size=0 + +2025-09-24 17:49:06,034 INFO Connection check task end + +2025-09-24 17:49:06,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:09,035 INFO Connection check task start + +2025-09-24 17:49:09,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:09,035 INFO Out dated connection ,size=0 + +2025-09-24 17:49:09,035 INFO Connection check task end + +2025-09-24 17:49:09,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:12,035 INFO Connection check task start + +2025-09-24 17:49:12,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:12,035 INFO Out dated connection ,size=0 + +2025-09-24 17:49:12,036 INFO Connection check task end + +2025-09-24 17:49:12,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:15,036 INFO Connection check task start + +2025-09-24 17:49:15,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:15,036 INFO Out dated connection ,size=0 + +2025-09-24 17:49:15,036 INFO Connection check task end + +2025-09-24 17:49:15,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:18,036 INFO Connection check task start + +2025-09-24 17:49:18,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:18,036 INFO Out dated connection ,size=0 + +2025-09-24 17:49:18,036 INFO Connection check task end + +2025-09-24 17:49:18,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:21,037 INFO Connection check task start + +2025-09-24 17:49:21,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:21,038 INFO Out dated connection ,size=0 + +2025-09-24 17:49:21,038 INFO Connection check task end + +2025-09-24 17:49:21,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:24,038 INFO Connection check task start + +2025-09-24 17:49:24,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:24,039 INFO Out dated connection ,size=0 + +2025-09-24 17:49:24,039 INFO Connection check task end + +2025-09-24 17:49:24,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:27,039 INFO Connection check task start + +2025-09-24 17:49:27,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:27,039 INFO Out dated connection ,size=0 + +2025-09-24 17:49:27,040 INFO Connection check task end + +2025-09-24 17:49:27,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:30,040 INFO Connection check task start + +2025-09-24 17:49:30,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:30,040 INFO Out dated connection ,size=0 + +2025-09-24 17:49:30,040 INFO Connection check task end + +2025-09-24 17:49:30,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:33,040 INFO Connection check task start + +2025-09-24 17:49:33,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:33,040 INFO Out dated connection ,size=0 + +2025-09-24 17:49:33,040 INFO Connection check task end + +2025-09-24 17:49:33,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:36,040 INFO Connection check task start + +2025-09-24 17:49:36,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:36,040 INFO Out dated connection ,size=0 + +2025-09-24 17:49:36,041 INFO Connection check task end + +2025-09-24 17:49:36,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:39,041 INFO Connection check task start + +2025-09-24 17:49:39,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:39,041 INFO Out dated connection ,size=0 + +2025-09-24 17:49:39,041 INFO Connection check task end + +2025-09-24 17:49:39,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:42,041 INFO Connection check task start + +2025-09-24 17:49:42,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:42,041 INFO Out dated connection ,size=0 + +2025-09-24 17:49:42,041 INFO Connection check task end + +2025-09-24 17:49:42,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:45,042 INFO Connection check task start + +2025-09-24 17:49:45,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:45,042 INFO Out dated connection ,size=0 + +2025-09-24 17:49:45,042 INFO Connection check task end + +2025-09-24 17:49:45,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:48,043 INFO Connection check task start + +2025-09-24 17:49:48,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:48,043 INFO Out dated connection ,size=0 + +2025-09-24 17:49:48,043 INFO Connection check task end + +2025-09-24 17:49:48,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:51,044 INFO Connection check task start + +2025-09-24 17:49:51,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:51,044 INFO Out dated connection ,size=0 + +2025-09-24 17:49:51,044 INFO Connection check task end + +2025-09-24 17:49:51,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:54,044 INFO Connection check task start + +2025-09-24 17:49:54,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:54,045 INFO Out dated connection ,size=0 + +2025-09-24 17:49:54,045 INFO Connection check task end + +2025-09-24 17:49:54,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:49:57,045 INFO Connection check task start + +2025-09-24 17:49:57,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:49:57,045 INFO Out dated connection ,size=0 + +2025-09-24 17:49:57,045 INFO Connection check task end + +2025-09-24 17:49:57,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:00,046 INFO Connection check task start + +2025-09-24 17:50:00,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:00,046 INFO Out dated connection ,size=0 + +2025-09-24 17:50:00,046 INFO Connection check task end + +2025-09-24 17:50:00,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:03,047 INFO Connection check task start + +2025-09-24 17:50:03,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:03,047 INFO Out dated connection ,size=0 + +2025-09-24 17:50:03,047 INFO Connection check task end + +2025-09-24 17:50:03,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:06,048 INFO Connection check task start + +2025-09-24 17:50:06,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:06,048 INFO Out dated connection ,size=0 + +2025-09-24 17:50:06,048 INFO Connection check task end + +2025-09-24 17:50:06,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:09,048 INFO Connection check task start + +2025-09-24 17:50:09,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:09,048 INFO Out dated connection ,size=0 + +2025-09-24 17:50:09,048 INFO Connection check task end + +2025-09-24 17:50:09,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:12,048 INFO Connection check task start + +2025-09-24 17:50:12,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:12,049 INFO Out dated connection ,size=0 + +2025-09-24 17:50:12,049 INFO Connection check task end + +2025-09-24 17:50:12,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:15,049 INFO Connection check task start + +2025-09-24 17:50:15,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:15,049 INFO Out dated connection ,size=0 + +2025-09-24 17:50:15,049 INFO Connection check task end + +2025-09-24 17:50:15,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:18,050 INFO Connection check task start + +2025-09-24 17:50:18,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:18,050 INFO Out dated connection ,size=0 + +2025-09-24 17:50:18,050 INFO Connection check task end + +2025-09-24 17:50:18,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:21,050 INFO Connection check task start + +2025-09-24 17:50:21,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:21,050 INFO Out dated connection ,size=0 + +2025-09-24 17:50:21,050 INFO Connection check task end + +2025-09-24 17:50:21,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:24,051 INFO Connection check task start + +2025-09-24 17:50:24,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:24,051 INFO Out dated connection ,size=0 + +2025-09-24 17:50:24,051 INFO Connection check task end + +2025-09-24 17:50:24,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:27,051 INFO Connection check task start + +2025-09-24 17:50:27,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:27,051 INFO Out dated connection ,size=0 + +2025-09-24 17:50:27,051 INFO Connection check task end + +2025-09-24 17:50:27,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:30,052 INFO Connection check task start + +2025-09-24 17:50:30,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:30,052 INFO Out dated connection ,size=0 + +2025-09-24 17:50:30,052 INFO Connection check task end + +2025-09-24 17:50:30,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:33,052 INFO Connection check task start + +2025-09-24 17:50:33,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:33,052 INFO Out dated connection ,size=0 + +2025-09-24 17:50:33,052 INFO Connection check task end + +2025-09-24 17:50:33,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:36,053 INFO Connection check task start + +2025-09-24 17:50:36,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:36,053 INFO Out dated connection ,size=0 + +2025-09-24 17:50:36,053 INFO Connection check task end + +2025-09-24 17:50:36,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:39,053 INFO Connection check task start + +2025-09-24 17:50:39,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:39,053 INFO Out dated connection ,size=0 + +2025-09-24 17:50:39,053 INFO Connection check task end + +2025-09-24 17:50:39,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:42,053 INFO Connection check task start + +2025-09-24 17:50:42,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:42,054 INFO Out dated connection ,size=0 + +2025-09-24 17:50:42,054 INFO Connection check task end + +2025-09-24 17:50:42,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:45,054 INFO Connection check task start + +2025-09-24 17:50:45,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:45,054 INFO Out dated connection ,size=0 + +2025-09-24 17:50:45,054 INFO Connection check task end + +2025-09-24 17:50:45,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:48,055 INFO Connection check task start + +2025-09-24 17:50:48,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:48,055 INFO Out dated connection ,size=0 + +2025-09-24 17:50:48,055 INFO Connection check task end + +2025-09-24 17:50:48,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:51,055 INFO Connection check task start + +2025-09-24 17:50:51,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:51,055 INFO Out dated connection ,size=0 + +2025-09-24 17:50:51,055 INFO Connection check task end + +2025-09-24 17:50:51,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:54,056 INFO Connection check task start + +2025-09-24 17:50:54,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:54,056 INFO Out dated connection ,size=0 + +2025-09-24 17:50:54,056 INFO Connection check task end + +2025-09-24 17:50:54,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:50:57,056 INFO Connection check task start + +2025-09-24 17:50:57,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:50:57,056 INFO Out dated connection ,size=0 + +2025-09-24 17:50:57,056 INFO Connection check task end + +2025-09-24 17:50:57,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:00,057 INFO Connection check task start + +2025-09-24 17:51:00,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:00,057 INFO Out dated connection ,size=0 + +2025-09-24 17:51:00,057 INFO Connection check task end + +2025-09-24 17:51:00,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:03,057 INFO Connection check task start + +2025-09-24 17:51:03,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:03,057 INFO Out dated connection ,size=0 + +2025-09-24 17:51:03,057 INFO Connection check task end + +2025-09-24 17:51:03,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:06,057 INFO Connection check task start + +2025-09-24 17:51:06,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:06,058 INFO Out dated connection ,size=0 + +2025-09-24 17:51:06,058 INFO Connection check task end + +2025-09-24 17:51:06,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:09,058 INFO Connection check task start + +2025-09-24 17:51:09,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:09,058 INFO Out dated connection ,size=0 + +2025-09-24 17:51:09,058 INFO Connection check task end + +2025-09-24 17:51:09,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:12,058 INFO Connection check task start + +2025-09-24 17:51:12,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:12,059 INFO Out dated connection ,size=0 + +2025-09-24 17:51:12,059 INFO Connection check task end + +2025-09-24 17:51:12,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:15,059 INFO Connection check task start + +2025-09-24 17:51:15,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:15,060 INFO Out dated connection ,size=0 + +2025-09-24 17:51:15,060 INFO Connection check task end + +2025-09-24 17:51:15,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:18,060 INFO Connection check task start + +2025-09-24 17:51:18,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:18,060 INFO Out dated connection ,size=0 + +2025-09-24 17:51:18,060 INFO Connection check task end + +2025-09-24 17:51:18,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:21,061 INFO Connection check task start + +2025-09-24 17:51:21,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:21,061 INFO Out dated connection ,size=0 + +2025-09-24 17:51:21,061 INFO Connection check task end + +2025-09-24 17:51:21,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:24,061 INFO Connection check task start + +2025-09-24 17:51:24,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:24,062 INFO Out dated connection ,size=0 + +2025-09-24 17:51:24,062 INFO Connection check task end + +2025-09-24 17:51:24,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:27,062 INFO Connection check task start + +2025-09-24 17:51:27,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:27,062 INFO Out dated connection ,size=0 + +2025-09-24 17:51:27,062 INFO Connection check task end + +2025-09-24 17:51:27,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:30,065 INFO Connection check task start + +2025-09-24 17:51:30,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:30,065 INFO Out dated connection ,size=0 + +2025-09-24 17:51:30,065 INFO Connection check task end + +2025-09-24 17:51:30,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:33,066 INFO Connection check task start + +2025-09-24 17:51:33,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:33,066 INFO Out dated connection ,size=0 + +2025-09-24 17:51:33,066 INFO Connection check task end + +2025-09-24 17:51:33,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:36,066 INFO Connection check task start + +2025-09-24 17:51:36,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:36,067 INFO Out dated connection ,size=0 + +2025-09-24 17:51:36,067 INFO Connection check task end + +2025-09-24 17:51:36,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:39,069 INFO Connection check task start + +2025-09-24 17:51:39,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:39,069 INFO Out dated connection ,size=0 + +2025-09-24 17:51:39,069 INFO Connection check task end + +2025-09-24 17:51:39,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:42,069 INFO Connection check task start + +2025-09-24 17:51:42,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:42,069 INFO Out dated connection ,size=0 + +2025-09-24 17:51:42,069 INFO Connection check task end + +2025-09-24 17:51:42,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:45,071 INFO Connection check task start + +2025-09-24 17:51:45,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:45,071 INFO Out dated connection ,size=0 + +2025-09-24 17:51:45,071 INFO Connection check task end + +2025-09-24 17:51:45,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:48,071 INFO Connection check task start + +2025-09-24 17:51:48,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:48,072 INFO Out dated connection ,size=0 + +2025-09-24 17:51:48,072 INFO Connection check task end + +2025-09-24 17:51:48,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:51,073 INFO Connection check task start + +2025-09-24 17:51:51,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:51,073 INFO Out dated connection ,size=0 + +2025-09-24 17:51:51,073 INFO Connection check task end + +2025-09-24 17:51:51,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:54,073 INFO Connection check task start + +2025-09-24 17:51:54,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:54,074 INFO Out dated connection ,size=0 + +2025-09-24 17:51:54,074 INFO Connection check task end + +2025-09-24 17:51:54,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:51:57,074 INFO Connection check task start + +2025-09-24 17:51:57,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:51:57,074 INFO Out dated connection ,size=0 + +2025-09-24 17:51:57,074 INFO Connection check task end + +2025-09-24 17:51:57,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:00,075 INFO Connection check task start + +2025-09-24 17:52:00,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:00,075 INFO Out dated connection ,size=0 + +2025-09-24 17:52:00,075 INFO Connection check task end + +2025-09-24 17:52:00,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:03,075 INFO Connection check task start + +2025-09-24 17:52:03,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:03,076 INFO Out dated connection ,size=0 + +2025-09-24 17:52:03,076 INFO Connection check task end + +2025-09-24 17:52:03,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:06,076 INFO Connection check task start + +2025-09-24 17:52:06,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:06,077 INFO Out dated connection ,size=0 + +2025-09-24 17:52:06,077 INFO Connection check task end + +2025-09-24 17:52:06,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:09,077 INFO Connection check task start + +2025-09-24 17:52:09,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:09,077 INFO Out dated connection ,size=0 + +2025-09-24 17:52:09,077 INFO Connection check task end + +2025-09-24 17:52:09,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:12,078 INFO Connection check task start + +2025-09-24 17:52:12,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:12,079 INFO Out dated connection ,size=0 + +2025-09-24 17:52:12,079 INFO Connection check task end + +2025-09-24 17:52:12,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:15,081 INFO Connection check task start + +2025-09-24 17:52:15,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:15,081 INFO Out dated connection ,size=0 + +2025-09-24 17:52:15,081 INFO Connection check task end + +2025-09-24 17:52:15,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:18,083 INFO Connection check task start + +2025-09-24 17:52:18,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:18,083 INFO Out dated connection ,size=0 + +2025-09-24 17:52:18,083 INFO Connection check task end + +2025-09-24 17:52:18,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:21,084 INFO Connection check task start + +2025-09-24 17:52:21,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:21,085 INFO Out dated connection ,size=0 + +2025-09-24 17:52:21,085 INFO Connection check task end + +2025-09-24 17:52:21,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:24,086 INFO Connection check task start + +2025-09-24 17:52:24,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:24,087 INFO Out dated connection ,size=0 + +2025-09-24 17:52:24,087 INFO Connection check task end + +2025-09-24 17:52:24,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:27,087 INFO Connection check task start + +2025-09-24 17:52:27,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:27,087 INFO Out dated connection ,size=0 + +2025-09-24 17:52:27,087 INFO Connection check task end + +2025-09-24 17:52:27,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:30,088 INFO Connection check task start + +2025-09-24 17:52:30,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:30,089 INFO Out dated connection ,size=0 + +2025-09-24 17:52:30,089 INFO Connection check task end + +2025-09-24 17:52:30,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:33,089 INFO Connection check task start + +2025-09-24 17:52:33,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:33,090 INFO Out dated connection ,size=0 + +2025-09-24 17:52:33,090 INFO Connection check task end + +2025-09-24 17:52:33,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:36,090 INFO Connection check task start + +2025-09-24 17:52:36,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:36,090 INFO Out dated connection ,size=0 + +2025-09-24 17:52:36,091 INFO Connection check task end + +2025-09-24 17:52:36,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:39,095 INFO Connection check task start + +2025-09-24 17:52:39,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:39,095 INFO Out dated connection ,size=0 + +2025-09-24 17:52:39,095 INFO Connection check task end + +2025-09-24 17:52:39,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:42,095 INFO Connection check task start + +2025-09-24 17:52:42,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:42,095 INFO Out dated connection ,size=0 + +2025-09-24 17:52:42,095 INFO Connection check task end + +2025-09-24 17:52:42,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:45,097 INFO Connection check task start + +2025-09-24 17:52:45,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:45,097 INFO Out dated connection ,size=0 + +2025-09-24 17:52:45,097 INFO Connection check task end + +2025-09-24 17:52:45,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:48,098 INFO Connection check task start + +2025-09-24 17:52:48,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:48,098 INFO Out dated connection ,size=0 + +2025-09-24 17:52:48,098 INFO Connection check task end + +2025-09-24 17:52:48,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:51,100 INFO Connection check task start + +2025-09-24 17:52:51,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:51,100 INFO Out dated connection ,size=0 + +2025-09-24 17:52:51,101 INFO Connection check task end + +2025-09-24 17:52:51,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:54,101 INFO Connection check task start + +2025-09-24 17:52:54,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:54,101 INFO Out dated connection ,size=0 + +2025-09-24 17:52:54,101 INFO Connection check task end + +2025-09-24 17:52:54,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:52:57,103 INFO Connection check task start + +2025-09-24 17:52:57,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:52:57,103 INFO Out dated connection ,size=0 + +2025-09-24 17:52:57,103 INFO Connection check task end + +2025-09-24 17:52:57,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:00,105 INFO Connection check task start + +2025-09-24 17:53:00,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:00,106 INFO Out dated connection ,size=0 + +2025-09-24 17:53:00,106 INFO Connection check task end + +2025-09-24 17:53:00,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:03,108 INFO Connection check task start + +2025-09-24 17:53:03,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:03,108 INFO Out dated connection ,size=0 + +2025-09-24 17:53:03,108 INFO Connection check task end + +2025-09-24 17:53:03,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:06,108 INFO Connection check task start + +2025-09-24 17:53:06,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:06,109 INFO Out dated connection ,size=0 + +2025-09-24 17:53:06,109 INFO Connection check task end + +2025-09-24 17:53:06,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:09,111 INFO Connection check task start + +2025-09-24 17:53:09,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:09,111 INFO Out dated connection ,size=0 + +2025-09-24 17:53:09,111 INFO Connection check task end + +2025-09-24 17:53:09,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:12,111 INFO Connection check task start + +2025-09-24 17:53:12,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:12,111 INFO Out dated connection ,size=0 + +2025-09-24 17:53:12,111 INFO Connection check task end + +2025-09-24 17:53:12,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:15,113 INFO Connection check task start + +2025-09-24 17:53:15,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:15,113 INFO Out dated connection ,size=0 + +2025-09-24 17:53:15,114 INFO Connection check task end + +2025-09-24 17:53:15,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:18,114 INFO Connection check task start + +2025-09-24 17:53:18,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:18,114 INFO Out dated connection ,size=0 + +2025-09-24 17:53:18,114 INFO Connection check task end + +2025-09-24 17:53:18,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:21,114 INFO Connection check task start + +2025-09-24 17:53:21,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:21,115 INFO Out dated connection ,size=0 + +2025-09-24 17:53:21,115 INFO Connection check task end + +2025-09-24 17:53:21,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:24,115 INFO Connection check task start + +2025-09-24 17:53:24,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:24,115 INFO Out dated connection ,size=0 + +2025-09-24 17:53:24,115 INFO Connection check task end + +2025-09-24 17:53:24,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:27,116 INFO Connection check task start + +2025-09-24 17:53:27,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:27,116 INFO Out dated connection ,size=0 + +2025-09-24 17:53:27,116 INFO Connection check task end + +2025-09-24 17:53:27,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:30,116 INFO Connection check task start + +2025-09-24 17:53:30,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:30,116 INFO Out dated connection ,size=0 + +2025-09-24 17:53:30,116 INFO Connection check task end + +2025-09-24 17:53:30,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:33,118 INFO Connection check task start + +2025-09-24 17:53:33,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:33,118 INFO Out dated connection ,size=0 + +2025-09-24 17:53:33,118 INFO Connection check task end + +2025-09-24 17:53:33,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:36,120 INFO Connection check task start + +2025-09-24 17:53:36,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:36,120 INFO Out dated connection ,size=0 + +2025-09-24 17:53:36,120 INFO Connection check task end + +2025-09-24 17:53:36,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:39,120 INFO Connection check task start + +2025-09-24 17:53:39,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:39,121 INFO Out dated connection ,size=0 + +2025-09-24 17:53:39,121 INFO Connection check task end + +2025-09-24 17:53:39,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:42,122 INFO Connection check task start + +2025-09-24 17:53:42,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:42,123 INFO Out dated connection ,size=0 + +2025-09-24 17:53:42,123 INFO Connection check task end + +2025-09-24 17:53:42,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:45,123 INFO Connection check task start + +2025-09-24 17:53:45,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:45,123 INFO Out dated connection ,size=0 + +2025-09-24 17:53:45,123 INFO Connection check task end + +2025-09-24 17:53:45,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:48,125 INFO Connection check task start + +2025-09-24 17:53:48,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:48,126 INFO Out dated connection ,size=0 + +2025-09-24 17:53:48,126 INFO Connection check task end + +2025-09-24 17:53:48,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:51,128 INFO Connection check task start + +2025-09-24 17:53:51,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:51,128 INFO Out dated connection ,size=0 + +2025-09-24 17:53:51,128 INFO Connection check task end + +2025-09-24 17:53:51,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:54,130 INFO Connection check task start + +2025-09-24 17:53:54,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:54,130 INFO Out dated connection ,size=0 + +2025-09-24 17:53:54,130 INFO Connection check task end + +2025-09-24 17:53:54,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:53:57,132 INFO Connection check task start + +2025-09-24 17:53:57,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:53:57,132 INFO Out dated connection ,size=0 + +2025-09-24 17:53:57,132 INFO Connection check task end + +2025-09-24 17:53:57,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:00,133 INFO Connection check task start + +2025-09-24 17:54:00,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:00,133 INFO Out dated connection ,size=0 + +2025-09-24 17:54:00,133 INFO Connection check task end + +2025-09-24 17:54:00,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:03,134 INFO Connection check task start + +2025-09-24 17:54:03,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:03,134 INFO Out dated connection ,size=0 + +2025-09-24 17:54:03,134 INFO Connection check task end + +2025-09-24 17:54:03,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:06,134 INFO Connection check task start + +2025-09-24 17:54:06,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:06,134 INFO Out dated connection ,size=0 + +2025-09-24 17:54:06,134 INFO Connection check task end + +2025-09-24 17:54:06,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:09,135 INFO Connection check task start + +2025-09-24 17:54:09,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:09,135 INFO Out dated connection ,size=0 + +2025-09-24 17:54:09,135 INFO Connection check task end + +2025-09-24 17:54:09,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:12,135 INFO Connection check task start + +2025-09-24 17:54:12,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:12,136 INFO Out dated connection ,size=0 + +2025-09-24 17:54:12,136 INFO Connection check task end + +2025-09-24 17:54:12,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:15,136 INFO Connection check task start + +2025-09-24 17:54:15,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:15,136 INFO Out dated connection ,size=0 + +2025-09-24 17:54:15,136 INFO Connection check task end + +2025-09-24 17:54:15,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:18,138 INFO Connection check task start + +2025-09-24 17:54:18,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:18,138 INFO Out dated connection ,size=0 + +2025-09-24 17:54:18,138 INFO Connection check task end + +2025-09-24 17:54:18,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:21,139 INFO Connection check task start + +2025-09-24 17:54:21,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:21,140 INFO Out dated connection ,size=0 + +2025-09-24 17:54:21,140 INFO Connection check task end + +2025-09-24 17:54:21,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:24,140 INFO Connection check task start + +2025-09-24 17:54:24,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:24,141 INFO Out dated connection ,size=0 + +2025-09-24 17:54:24,141 INFO Connection check task end + +2025-09-24 17:54:24,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:27,142 INFO Connection check task start + +2025-09-24 17:54:27,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:27,142 INFO Out dated connection ,size=0 + +2025-09-24 17:54:27,142 INFO Connection check task end + +2025-09-24 17:54:27,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:30,143 INFO Connection check task start + +2025-09-24 17:54:30,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:30,143 INFO Out dated connection ,size=0 + +2025-09-24 17:54:30,143 INFO Connection check task end + +2025-09-24 17:54:30,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:33,143 INFO Connection check task start + +2025-09-24 17:54:33,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:33,143 INFO Out dated connection ,size=0 + +2025-09-24 17:54:33,143 INFO Connection check task end + +2025-09-24 17:54:33,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:36,145 INFO Connection check task start + +2025-09-24 17:54:36,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:36,145 INFO Out dated connection ,size=0 + +2025-09-24 17:54:36,145 INFO Connection check task end + +2025-09-24 17:54:36,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:39,147 INFO Connection check task start + +2025-09-24 17:54:39,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:39,148 INFO Out dated connection ,size=0 + +2025-09-24 17:54:39,148 INFO Connection check task end + +2025-09-24 17:54:39,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:42,148 INFO Connection check task start + +2025-09-24 17:54:42,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:42,148 INFO Out dated connection ,size=0 + +2025-09-24 17:54:42,148 INFO Connection check task end + +2025-09-24 17:54:42,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:45,149 INFO Connection check task start + +2025-09-24 17:54:45,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:45,149 INFO Out dated connection ,size=0 + +2025-09-24 17:54:45,149 INFO Connection check task end + +2025-09-24 17:54:45,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:48,150 INFO Connection check task start + +2025-09-24 17:54:48,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:48,150 INFO Out dated connection ,size=0 + +2025-09-24 17:54:48,150 INFO Connection check task end + +2025-09-24 17:54:48,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:51,150 INFO Connection check task start + +2025-09-24 17:54:51,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:51,151 INFO Out dated connection ,size=0 + +2025-09-24 17:54:51,151 INFO Connection check task end + +2025-09-24 17:54:51,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:54,152 INFO Connection check task start + +2025-09-24 17:54:54,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:54,152 INFO Out dated connection ,size=0 + +2025-09-24 17:54:54,152 INFO Connection check task end + +2025-09-24 17:54:54,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:54:57,153 INFO Connection check task start + +2025-09-24 17:54:57,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:54:57,153 INFO Out dated connection ,size=0 + +2025-09-24 17:54:57,153 INFO Connection check task end + +2025-09-24 17:54:57,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:00,153 INFO Connection check task start + +2025-09-24 17:55:00,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:00,154 INFO Out dated connection ,size=0 + +2025-09-24 17:55:00,154 INFO Connection check task end + +2025-09-24 17:55:00,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:03,154 INFO Connection check task start + +2025-09-24 17:55:03,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:03,155 INFO Out dated connection ,size=0 + +2025-09-24 17:55:03,155 INFO Connection check task end + +2025-09-24 17:55:03,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:06,155 INFO Connection check task start + +2025-09-24 17:55:06,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:06,155 INFO Out dated connection ,size=0 + +2025-09-24 17:55:06,155 INFO Connection check task end + +2025-09-24 17:55:06,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:09,155 INFO Connection check task start + +2025-09-24 17:55:09,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:09,156 INFO Out dated connection ,size=0 + +2025-09-24 17:55:09,156 INFO Connection check task end + +2025-09-24 17:55:09,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:12,158 INFO Connection check task start + +2025-09-24 17:55:12,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:12,158 INFO Out dated connection ,size=0 + +2025-09-24 17:55:12,158 INFO Connection check task end + +2025-09-24 17:55:12,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:15,158 INFO Connection check task start + +2025-09-24 17:55:15,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:15,158 INFO Out dated connection ,size=0 + +2025-09-24 17:55:15,158 INFO Connection check task end + +2025-09-24 17:55:15,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:18,159 INFO Connection check task start + +2025-09-24 17:55:18,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:18,159 INFO Out dated connection ,size=0 + +2025-09-24 17:55:18,159 INFO Connection check task end + +2025-09-24 17:55:18,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:21,159 INFO Connection check task start + +2025-09-24 17:55:21,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:21,160 INFO Out dated connection ,size=0 + +2025-09-24 17:55:21,160 INFO Connection check task end + +2025-09-24 17:55:21,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:24,160 INFO Connection check task start + +2025-09-24 17:55:24,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:24,161 INFO Out dated connection ,size=0 + +2025-09-24 17:55:24,161 INFO Connection check task end + +2025-09-24 17:55:24,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:27,162 INFO Connection check task start + +2025-09-24 17:55:27,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:27,162 INFO Out dated connection ,size=0 + +2025-09-24 17:55:27,162 INFO Connection check task end + +2025-09-24 17:55:27,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:30,162 INFO Connection check task start + +2025-09-24 17:55:30,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:30,163 INFO Out dated connection ,size=0 + +2025-09-24 17:55:30,163 INFO Connection check task end + +2025-09-24 17:55:30,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:33,163 INFO Connection check task start + +2025-09-24 17:55:33,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:33,163 INFO Out dated connection ,size=0 + +2025-09-24 17:55:33,163 INFO Connection check task end + +2025-09-24 17:55:33,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:36,165 INFO Connection check task start + +2025-09-24 17:55:36,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:36,166 INFO Out dated connection ,size=0 + +2025-09-24 17:55:36,166 INFO Connection check task end + +2025-09-24 17:55:36,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:39,166 INFO Connection check task start + +2025-09-24 17:55:39,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:39,166 INFO Out dated connection ,size=0 + +2025-09-24 17:55:39,166 INFO Connection check task end + +2025-09-24 17:55:39,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:42,168 INFO Connection check task start + +2025-09-24 17:55:42,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:42,168 INFO Out dated connection ,size=0 + +2025-09-24 17:55:42,168 INFO Connection check task end + +2025-09-24 17:55:42,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:45,169 INFO Connection check task start + +2025-09-24 17:55:45,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:45,169 INFO Out dated connection ,size=0 + +2025-09-24 17:55:45,169 INFO Connection check task end + +2025-09-24 17:55:45,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:48,170 INFO Connection check task start + +2025-09-24 17:55:48,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:48,170 INFO Out dated connection ,size=0 + +2025-09-24 17:55:48,171 INFO Connection check task end + +2025-09-24 17:55:48,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:51,171 INFO Connection check task start + +2025-09-24 17:55:51,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:51,171 INFO Out dated connection ,size=0 + +2025-09-24 17:55:51,171 INFO Connection check task end + +2025-09-24 17:55:51,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:54,172 INFO Connection check task start + +2025-09-24 17:55:54,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:54,172 INFO Out dated connection ,size=0 + +2025-09-24 17:55:54,172 INFO Connection check task end + +2025-09-24 17:55:54,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:55:57,173 INFO Connection check task start + +2025-09-24 17:55:57,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:55:57,173 INFO Out dated connection ,size=0 + +2025-09-24 17:55:57,173 INFO Connection check task end + +2025-09-24 17:55:57,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:00,173 INFO Connection check task start + +2025-09-24 17:56:00,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:00,174 INFO Out dated connection ,size=0 + +2025-09-24 17:56:00,174 INFO Connection check task end + +2025-09-24 17:56:00,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:03,176 INFO Connection check task start + +2025-09-24 17:56:03,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:03,176 INFO Out dated connection ,size=0 + +2025-09-24 17:56:03,176 INFO Connection check task end + +2025-09-24 17:56:03,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:06,178 INFO Connection check task start + +2025-09-24 17:56:06,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:06,179 INFO Out dated connection ,size=0 + +2025-09-24 17:56:06,179 INFO Connection check task end + +2025-09-24 17:56:06,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:09,179 INFO Connection check task start + +2025-09-24 17:56:09,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:09,179 INFO Out dated connection ,size=0 + +2025-09-24 17:56:09,179 INFO Connection check task end + +2025-09-24 17:56:09,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:12,181 INFO Connection check task start + +2025-09-24 17:56:12,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:12,181 INFO Out dated connection ,size=0 + +2025-09-24 17:56:12,181 INFO Connection check task end + +2025-09-24 17:56:12,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:15,182 INFO Connection check task start + +2025-09-24 17:56:15,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:15,182 INFO Out dated connection ,size=0 + +2025-09-24 17:56:15,182 INFO Connection check task end + +2025-09-24 17:56:15,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:18,183 INFO Connection check task start + +2025-09-24 17:56:18,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:18,183 INFO Out dated connection ,size=0 + +2025-09-24 17:56:18,184 INFO Connection check task end + +2025-09-24 17:56:18,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:21,184 INFO Connection check task start + +2025-09-24 17:56:21,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:21,184 INFO Out dated connection ,size=0 + +2025-09-24 17:56:21,184 INFO Connection check task end + +2025-09-24 17:56:21,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:24,186 INFO Connection check task start + +2025-09-24 17:56:24,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:24,187 INFO Out dated connection ,size=0 + +2025-09-24 17:56:24,187 INFO Connection check task end + +2025-09-24 17:56:24,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:27,188 INFO Connection check task start + +2025-09-24 17:56:27,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:27,188 INFO Out dated connection ,size=0 + +2025-09-24 17:56:27,188 INFO Connection check task end + +2025-09-24 17:56:27,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:30,188 INFO Connection check task start + +2025-09-24 17:56:30,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:30,188 INFO Out dated connection ,size=0 + +2025-09-24 17:56:30,188 INFO Connection check task end + +2025-09-24 17:56:30,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:33,190 INFO Connection check task start + +2025-09-24 17:56:33,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:33,190 INFO Out dated connection ,size=0 + +2025-09-24 17:56:33,191 INFO Connection check task end + +2025-09-24 17:56:33,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:36,192 INFO Connection check task start + +2025-09-24 17:56:36,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:36,193 INFO Out dated connection ,size=0 + +2025-09-24 17:56:36,193 INFO Connection check task end + +2025-09-24 17:56:36,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:39,193 INFO Connection check task start + +2025-09-24 17:56:39,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:39,193 INFO Out dated connection ,size=0 + +2025-09-24 17:56:39,193 INFO Connection check task end + +2025-09-24 17:56:39,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:42,195 INFO Connection check task start + +2025-09-24 17:56:42,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:42,195 INFO Out dated connection ,size=0 + +2025-09-24 17:56:42,195 INFO Connection check task end + +2025-09-24 17:56:42,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:45,197 INFO Connection check task start + +2025-09-24 17:56:45,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:45,197 INFO Out dated connection ,size=0 + +2025-09-24 17:56:45,197 INFO Connection check task end + +2025-09-24 17:56:45,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:48,200 INFO Connection check task start + +2025-09-24 17:56:48,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:48,200 INFO Out dated connection ,size=0 + +2025-09-24 17:56:48,200 INFO Connection check task end + +2025-09-24 17:56:48,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:51,201 INFO Connection check task start + +2025-09-24 17:56:51,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:51,201 INFO Out dated connection ,size=0 + +2025-09-24 17:56:51,202 INFO Connection check task end + +2025-09-24 17:56:51,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:54,204 INFO Connection check task start + +2025-09-24 17:56:54,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:54,204 INFO Out dated connection ,size=0 + +2025-09-24 17:56:54,204 INFO Connection check task end + +2025-09-24 17:56:54,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:56:57,205 INFO Connection check task start + +2025-09-24 17:56:57,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:56:57,206 INFO Out dated connection ,size=0 + +2025-09-24 17:56:57,206 INFO Connection check task end + +2025-09-24 17:56:57,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:00,207 INFO Connection check task start + +2025-09-24 17:57:00,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:00,207 INFO Out dated connection ,size=0 + +2025-09-24 17:57:00,207 INFO Connection check task end + +2025-09-24 17:57:00,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:03,207 INFO Connection check task start + +2025-09-24 17:57:03,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:03,207 INFO Out dated connection ,size=0 + +2025-09-24 17:57:03,208 INFO Connection check task end + +2025-09-24 17:57:03,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:06,208 INFO Connection check task start + +2025-09-24 17:57:06,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:06,209 INFO Out dated connection ,size=0 + +2025-09-24 17:57:06,209 INFO Connection check task end + +2025-09-24 17:57:06,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:09,211 INFO Connection check task start + +2025-09-24 17:57:09,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:09,211 INFO Out dated connection ,size=0 + +2025-09-24 17:57:09,211 INFO Connection check task end + +2025-09-24 17:57:09,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:12,211 INFO Connection check task start + +2025-09-24 17:57:12,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:12,211 INFO Out dated connection ,size=0 + +2025-09-24 17:57:12,211 INFO Connection check task end + +2025-09-24 17:57:12,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:15,213 INFO Connection check task start + +2025-09-24 17:57:15,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:15,214 INFO Out dated connection ,size=0 + +2025-09-24 17:57:15,214 INFO Connection check task end + +2025-09-24 17:57:15,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:18,216 INFO Connection check task start + +2025-09-24 17:57:18,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:18,216 INFO Out dated connection ,size=0 + +2025-09-24 17:57:18,216 INFO Connection check task end + +2025-09-24 17:57:18,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:21,216 INFO Connection check task start + +2025-09-24 17:57:21,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:21,217 INFO Out dated connection ,size=0 + +2025-09-24 17:57:21,217 INFO Connection check task end + +2025-09-24 17:57:21,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:24,217 INFO Connection check task start + +2025-09-24 17:57:24,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:24,218 INFO Out dated connection ,size=0 + +2025-09-24 17:57:24,218 INFO Connection check task end + +2025-09-24 17:57:24,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:27,218 INFO Connection check task start + +2025-09-24 17:57:27,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:27,218 INFO Out dated connection ,size=0 + +2025-09-24 17:57:27,218 INFO Connection check task end + +2025-09-24 17:57:27,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:30,220 INFO Connection check task start + +2025-09-24 17:57:30,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:30,221 INFO Out dated connection ,size=0 + +2025-09-24 17:57:30,221 INFO Connection check task end + +2025-09-24 17:57:30,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:33,222 INFO Connection check task start + +2025-09-24 17:57:33,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:33,222 INFO Out dated connection ,size=0 + +2025-09-24 17:57:33,222 INFO Connection check task end + +2025-09-24 17:57:33,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:36,224 INFO Connection check task start + +2025-09-24 17:57:36,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:36,224 INFO Out dated connection ,size=0 + +2025-09-24 17:57:36,224 INFO Connection check task end + +2025-09-24 17:57:36,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:39,224 INFO Connection check task start + +2025-09-24 17:57:39,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:39,225 INFO Out dated connection ,size=0 + +2025-09-24 17:57:39,225 INFO Connection check task end + +2025-09-24 17:57:39,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:42,225 INFO Connection check task start + +2025-09-24 17:57:42,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:42,225 INFO Out dated connection ,size=0 + +2025-09-24 17:57:42,225 INFO Connection check task end + +2025-09-24 17:57:42,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:45,227 INFO Connection check task start + +2025-09-24 17:57:45,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:45,227 INFO Out dated connection ,size=0 + +2025-09-24 17:57:45,227 INFO Connection check task end + +2025-09-24 17:57:45,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:48,228 INFO Connection check task start + +2025-09-24 17:57:48,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:48,228 INFO Out dated connection ,size=0 + +2025-09-24 17:57:48,228 INFO Connection check task end + +2025-09-24 17:57:48,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:51,229 INFO Connection check task start + +2025-09-24 17:57:51,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:51,230 INFO Out dated connection ,size=0 + +2025-09-24 17:57:51,230 INFO Connection check task end + +2025-09-24 17:57:51,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:54,231 INFO Connection check task start + +2025-09-24 17:57:54,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:54,231 INFO Out dated connection ,size=0 + +2025-09-24 17:57:54,231 INFO Connection check task end + +2025-09-24 17:57:54,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:57:57,231 INFO Connection check task start + +2025-09-24 17:57:57,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:57:57,232 INFO Out dated connection ,size=0 + +2025-09-24 17:57:57,232 INFO Connection check task end + +2025-09-24 17:57:57,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:00,233 INFO Connection check task start + +2025-09-24 17:58:00,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:00,233 INFO Out dated connection ,size=0 + +2025-09-24 17:58:00,233 INFO Connection check task end + +2025-09-24 17:58:00,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:03,234 INFO Connection check task start + +2025-09-24 17:58:03,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:03,234 INFO Out dated connection ,size=0 + +2025-09-24 17:58:03,234 INFO Connection check task end + +2025-09-24 17:58:03,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:06,236 INFO Connection check task start + +2025-09-24 17:58:06,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:06,236 INFO Out dated connection ,size=0 + +2025-09-24 17:58:06,236 INFO Connection check task end + +2025-09-24 17:58:06,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:09,237 INFO Connection check task start + +2025-09-24 17:58:09,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:09,237 INFO Out dated connection ,size=0 + +2025-09-24 17:58:09,237 INFO Connection check task end + +2025-09-24 17:58:09,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:12,238 INFO Connection check task start + +2025-09-24 17:58:12,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:12,238 INFO Out dated connection ,size=0 + +2025-09-24 17:58:12,238 INFO Connection check task end + +2025-09-24 17:58:12,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:15,238 INFO Connection check task start + +2025-09-24 17:58:15,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:15,238 INFO Out dated connection ,size=0 + +2025-09-24 17:58:15,238 INFO Connection check task end + +2025-09-24 17:58:15,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:18,240 INFO Connection check task start + +2025-09-24 17:58:18,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:18,240 INFO Out dated connection ,size=0 + +2025-09-24 17:58:18,240 INFO Connection check task end + +2025-09-24 17:58:18,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:21,241 INFO Connection check task start + +2025-09-24 17:58:21,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:21,241 INFO Out dated connection ,size=0 + +2025-09-24 17:58:21,241 INFO Connection check task end + +2025-09-24 17:58:21,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:24,243 INFO Connection check task start + +2025-09-24 17:58:24,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:24,244 INFO Out dated connection ,size=0 + +2025-09-24 17:58:24,244 INFO Connection check task end + +2025-09-24 17:58:24,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:27,245 INFO Connection check task start + +2025-09-24 17:58:27,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:27,245 INFO Out dated connection ,size=0 + +2025-09-24 17:58:27,245 INFO Connection check task end + +2025-09-24 17:58:27,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:30,247 INFO Connection check task start + +2025-09-24 17:58:30,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:30,247 INFO Out dated connection ,size=0 + +2025-09-24 17:58:30,247 INFO Connection check task end + +2025-09-24 17:58:30,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:33,248 INFO Connection check task start + +2025-09-24 17:58:33,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:33,248 INFO Out dated connection ,size=0 + +2025-09-24 17:58:33,248 INFO Connection check task end + +2025-09-24 17:58:33,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:36,248 INFO Connection check task start + +2025-09-24 17:58:36,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:36,249 INFO Out dated connection ,size=0 + +2025-09-24 17:58:36,249 INFO Connection check task end + +2025-09-24 17:58:36,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:39,249 INFO Connection check task start + +2025-09-24 17:58:39,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:39,249 INFO Out dated connection ,size=0 + +2025-09-24 17:58:39,249 INFO Connection check task end + +2025-09-24 17:58:39,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:42,251 INFO Connection check task start + +2025-09-24 17:58:42,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:42,251 INFO Out dated connection ,size=0 + +2025-09-24 17:58:42,251 INFO Connection check task end + +2025-09-24 17:58:42,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:45,252 INFO Connection check task start + +2025-09-24 17:58:45,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:45,252 INFO Out dated connection ,size=0 + +2025-09-24 17:58:45,252 INFO Connection check task end + +2025-09-24 17:58:45,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:48,253 INFO Connection check task start + +2025-09-24 17:58:48,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:48,253 INFO Out dated connection ,size=0 + +2025-09-24 17:58:48,254 INFO Connection check task end + +2025-09-24 17:58:48,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:51,254 INFO Connection check task start + +2025-09-24 17:58:51,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:51,254 INFO Out dated connection ,size=0 + +2025-09-24 17:58:51,254 INFO Connection check task end + +2025-09-24 17:58:51,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:54,255 INFO Connection check task start + +2025-09-24 17:58:54,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:54,255 INFO Out dated connection ,size=0 + +2025-09-24 17:58:54,255 INFO Connection check task end + +2025-09-24 17:58:54,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:58:57,257 INFO Connection check task start + +2025-09-24 17:58:57,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:58:57,257 INFO Out dated connection ,size=0 + +2025-09-24 17:58:57,257 INFO Connection check task end + +2025-09-24 17:58:57,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:00,259 INFO Connection check task start + +2025-09-24 17:59:00,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:00,259 INFO Out dated connection ,size=0 + +2025-09-24 17:59:00,259 INFO Connection check task end + +2025-09-24 17:59:00,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:03,261 INFO Connection check task start + +2025-09-24 17:59:03,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:03,261 INFO Out dated connection ,size=0 + +2025-09-24 17:59:03,261 INFO Connection check task end + +2025-09-24 17:59:03,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:06,263 INFO Connection check task start + +2025-09-24 17:59:06,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:06,263 INFO Out dated connection ,size=0 + +2025-09-24 17:59:06,263 INFO Connection check task end + +2025-09-24 17:59:06,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:09,263 INFO Connection check task start + +2025-09-24 17:59:09,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:09,264 INFO Out dated connection ,size=0 + +2025-09-24 17:59:09,264 INFO Connection check task end + +2025-09-24 17:59:09,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:12,264 INFO Connection check task start + +2025-09-24 17:59:12,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:12,264 INFO Out dated connection ,size=0 + +2025-09-24 17:59:12,265 INFO Connection check task end + +2025-09-24 17:59:12,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:15,267 INFO Connection check task start + +2025-09-24 17:59:15,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:15,267 INFO Out dated connection ,size=0 + +2025-09-24 17:59:15,267 INFO Connection check task end + +2025-09-24 17:59:15,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:18,267 INFO Connection check task start + +2025-09-24 17:59:18,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:18,267 INFO Out dated connection ,size=0 + +2025-09-24 17:59:18,267 INFO Connection check task end + +2025-09-24 17:59:18,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:21,268 INFO Connection check task start + +2025-09-24 17:59:21,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:21,268 INFO Out dated connection ,size=0 + +2025-09-24 17:59:21,268 INFO Connection check task end + +2025-09-24 17:59:21,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:24,269 INFO Connection check task start + +2025-09-24 17:59:24,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:24,270 INFO Out dated connection ,size=0 + +2025-09-24 17:59:24,270 INFO Connection check task end + +2025-09-24 17:59:24,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:27,271 INFO Connection check task start + +2025-09-24 17:59:27,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:27,271 INFO Out dated connection ,size=0 + +2025-09-24 17:59:27,271 INFO Connection check task end + +2025-09-24 17:59:27,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:30,272 INFO Connection check task start + +2025-09-24 17:59:30,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:30,272 INFO Out dated connection ,size=0 + +2025-09-24 17:59:30,272 INFO Connection check task end + +2025-09-24 17:59:30,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:33,273 INFO Connection check task start + +2025-09-24 17:59:33,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:33,273 INFO Out dated connection ,size=0 + +2025-09-24 17:59:33,273 INFO Connection check task end + +2025-09-24 17:59:33,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:36,275 INFO Connection check task start + +2025-09-24 17:59:36,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:36,275 INFO Out dated connection ,size=0 + +2025-09-24 17:59:36,275 INFO Connection check task end + +2025-09-24 17:59:36,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:39,276 INFO Connection check task start + +2025-09-24 17:59:39,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:39,276 INFO Out dated connection ,size=0 + +2025-09-24 17:59:39,276 INFO Connection check task end + +2025-09-24 17:59:39,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:42,277 INFO Connection check task start + +2025-09-24 17:59:42,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:42,277 INFO Out dated connection ,size=0 + +2025-09-24 17:59:42,277 INFO Connection check task end + +2025-09-24 17:59:42,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:45,279 INFO Connection check task start + +2025-09-24 17:59:45,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:45,279 INFO Out dated connection ,size=0 + +2025-09-24 17:59:45,279 INFO Connection check task end + +2025-09-24 17:59:45,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:48,279 INFO Connection check task start + +2025-09-24 17:59:48,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:48,280 INFO Out dated connection ,size=0 + +2025-09-24 17:59:48,280 INFO Connection check task end + +2025-09-24 17:59:48,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:51,280 INFO Connection check task start + +2025-09-24 17:59:51,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:51,280 INFO Out dated connection ,size=0 + +2025-09-24 17:59:51,280 INFO Connection check task end + +2025-09-24 17:59:51,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:54,282 INFO Connection check task start + +2025-09-24 17:59:54,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:54,282 INFO Out dated connection ,size=0 + +2025-09-24 17:59:54,282 INFO Connection check task end + +2025-09-24 17:59:54,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 17:59:57,283 INFO Connection check task start + +2025-09-24 17:59:57,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 17:59:57,283 INFO Out dated connection ,size=0 + +2025-09-24 17:59:57,283 INFO Connection check task end + +2025-09-24 17:59:57,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:00,284 INFO Connection check task start + +2025-09-24 18:00:00,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:00,284 INFO Out dated connection ,size=0 + +2025-09-24 18:00:00,284 INFO Connection check task end + +2025-09-24 18:00:00,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:03,284 INFO Connection check task start + +2025-09-24 18:00:03,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:03,285 INFO Out dated connection ,size=0 + +2025-09-24 18:00:03,285 INFO Connection check task end + +2025-09-24 18:00:03,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:06,286 INFO Connection check task start + +2025-09-24 18:00:06,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:06,286 INFO Out dated connection ,size=0 + +2025-09-24 18:00:06,286 INFO Connection check task end + +2025-09-24 18:00:06,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:09,288 INFO Connection check task start + +2025-09-24 18:00:09,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:09,288 INFO Out dated connection ,size=0 + +2025-09-24 18:00:09,288 INFO Connection check task end + +2025-09-24 18:00:09,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:12,288 INFO Connection check task start + +2025-09-24 18:00:12,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:12,289 INFO Out dated connection ,size=0 + +2025-09-24 18:00:12,289 INFO Connection check task end + +2025-09-24 18:00:12,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:15,291 INFO Connection check task start + +2025-09-24 18:00:15,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:15,291 INFO Out dated connection ,size=0 + +2025-09-24 18:00:15,291 INFO Connection check task end + +2025-09-24 18:00:15,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:18,291 INFO Connection check task start + +2025-09-24 18:00:18,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:18,292 INFO Out dated connection ,size=0 + +2025-09-24 18:00:18,292 INFO Connection check task end + +2025-09-24 18:00:18,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:21,294 INFO Connection check task start + +2025-09-24 18:00:21,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:21,294 INFO Out dated connection ,size=0 + +2025-09-24 18:00:21,294 INFO Connection check task end + +2025-09-24 18:00:21,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:24,294 INFO Connection check task start + +2025-09-24 18:00:24,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:24,295 INFO Out dated connection ,size=0 + +2025-09-24 18:00:24,295 INFO Connection check task end + +2025-09-24 18:00:24,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:27,295 INFO Connection check task start + +2025-09-24 18:00:27,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:27,295 INFO Out dated connection ,size=0 + +2025-09-24 18:00:27,296 INFO Connection check task end + +2025-09-24 18:00:27,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:30,296 INFO Connection check task start + +2025-09-24 18:00:30,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:30,296 INFO Out dated connection ,size=0 + +2025-09-24 18:00:30,296 INFO Connection check task end + +2025-09-24 18:00:30,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:33,296 INFO Connection check task start + +2025-09-24 18:00:33,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:33,297 INFO Out dated connection ,size=0 + +2025-09-24 18:00:33,297 INFO Connection check task end + +2025-09-24 18:00:33,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:36,299 INFO Connection check task start + +2025-09-24 18:00:36,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:36,299 INFO Out dated connection ,size=0 + +2025-09-24 18:00:36,299 INFO Connection check task end + +2025-09-24 18:00:36,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:39,299 INFO Connection check task start + +2025-09-24 18:00:39,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:39,299 INFO Out dated connection ,size=0 + +2025-09-24 18:00:39,299 INFO Connection check task end + +2025-09-24 18:00:39,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:42,301 INFO Connection check task start + +2025-09-24 18:00:42,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:42,302 INFO Out dated connection ,size=0 + +2025-09-24 18:00:42,302 INFO Connection check task end + +2025-09-24 18:00:42,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:45,302 INFO Connection check task start + +2025-09-24 18:00:45,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:45,302 INFO Out dated connection ,size=0 + +2025-09-24 18:00:45,302 INFO Connection check task end + +2025-09-24 18:00:45,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:48,304 INFO Connection check task start + +2025-09-24 18:00:48,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:48,304 INFO Out dated connection ,size=0 + +2025-09-24 18:00:48,304 INFO Connection check task end + +2025-09-24 18:00:48,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:51,306 INFO Connection check task start + +2025-09-24 18:00:51,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:51,306 INFO Out dated connection ,size=0 + +2025-09-24 18:00:51,306 INFO Connection check task end + +2025-09-24 18:00:51,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:54,306 INFO Connection check task start + +2025-09-24 18:00:54,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:54,307 INFO Out dated connection ,size=0 + +2025-09-24 18:00:54,307 INFO Connection check task end + +2025-09-24 18:00:54,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:00:57,307 INFO Connection check task start + +2025-09-24 18:00:57,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:00:57,307 INFO Out dated connection ,size=0 + +2025-09-24 18:00:57,307 INFO Connection check task end + +2025-09-24 18:00:57,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:00,309 INFO Connection check task start + +2025-09-24 18:01:00,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:00,309 INFO Out dated connection ,size=0 + +2025-09-24 18:01:00,309 INFO Connection check task end + +2025-09-24 18:01:00,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:03,310 INFO Connection check task start + +2025-09-24 18:01:03,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:03,310 INFO Out dated connection ,size=0 + +2025-09-24 18:01:03,310 INFO Connection check task end + +2025-09-24 18:01:03,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:06,310 INFO Connection check task start + +2025-09-24 18:01:06,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:06,311 INFO Out dated connection ,size=0 + +2025-09-24 18:01:06,311 INFO Connection check task end + +2025-09-24 18:01:06,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:09,311 INFO Connection check task start + +2025-09-24 18:01:09,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:09,311 INFO Out dated connection ,size=0 + +2025-09-24 18:01:09,311 INFO Connection check task end + +2025-09-24 18:01:09,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:12,313 INFO Connection check task start + +2025-09-24 18:01:12,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:12,313 INFO Out dated connection ,size=0 + +2025-09-24 18:01:12,313 INFO Connection check task end + +2025-09-24 18:01:12,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:15,315 INFO Connection check task start + +2025-09-24 18:01:15,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:15,316 INFO Out dated connection ,size=0 + +2025-09-24 18:01:15,316 INFO Connection check task end + +2025-09-24 18:01:15,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:18,318 INFO Connection check task start + +2025-09-24 18:01:18,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:18,318 INFO Out dated connection ,size=0 + +2025-09-24 18:01:18,318 INFO Connection check task end + +2025-09-24 18:01:18,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:21,319 INFO Connection check task start + +2025-09-24 18:01:21,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:21,320 INFO Out dated connection ,size=0 + +2025-09-24 18:01:21,320 INFO Connection check task end + +2025-09-24 18:01:21,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:24,320 INFO Connection check task start + +2025-09-24 18:01:24,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:24,320 INFO Out dated connection ,size=0 + +2025-09-24 18:01:24,320 INFO Connection check task end + +2025-09-24 18:01:24,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:27,320 INFO Connection check task start + +2025-09-24 18:01:27,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:27,321 INFO Out dated connection ,size=0 + +2025-09-24 18:01:27,321 INFO Connection check task end + +2025-09-24 18:01:27,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:30,322 INFO Connection check task start + +2025-09-24 18:01:30,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:30,322 INFO Out dated connection ,size=0 + +2025-09-24 18:01:30,323 INFO Connection check task end + +2025-09-24 18:01:30,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:33,324 INFO Connection check task start + +2025-09-24 18:01:33,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:33,324 INFO Out dated connection ,size=0 + +2025-09-24 18:01:33,324 INFO Connection check task end + +2025-09-24 18:01:33,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:36,324 INFO Connection check task start + +2025-09-24 18:01:36,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:36,324 INFO Out dated connection ,size=0 + +2025-09-24 18:01:36,324 INFO Connection check task end + +2025-09-24 18:01:36,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:39,325 INFO Connection check task start + +2025-09-24 18:01:39,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:39,326 INFO Out dated connection ,size=0 + +2025-09-24 18:01:39,326 INFO Connection check task end + +2025-09-24 18:01:39,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:42,327 INFO Connection check task start + +2025-09-24 18:01:42,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:42,328 INFO Out dated connection ,size=0 + +2025-09-24 18:01:42,328 INFO Connection check task end + +2025-09-24 18:01:42,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:45,328 INFO Connection check task start + +2025-09-24 18:01:45,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:45,328 INFO Out dated connection ,size=0 + +2025-09-24 18:01:45,328 INFO Connection check task end + +2025-09-24 18:01:45,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:48,330 INFO Connection check task start + +2025-09-24 18:01:48,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:48,330 INFO Out dated connection ,size=0 + +2025-09-24 18:01:48,331 INFO Connection check task end + +2025-09-24 18:01:48,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:51,331 INFO Connection check task start + +2025-09-24 18:01:51,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:51,331 INFO Out dated connection ,size=0 + +2025-09-24 18:01:51,331 INFO Connection check task end + +2025-09-24 18:01:51,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:54,333 INFO Connection check task start + +2025-09-24 18:01:54,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:54,333 INFO Out dated connection ,size=0 + +2025-09-24 18:01:54,333 INFO Connection check task end + +2025-09-24 18:01:54,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:01:57,334 INFO Connection check task start + +2025-09-24 18:01:57,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:01:57,334 INFO Out dated connection ,size=0 + +2025-09-24 18:01:57,334 INFO Connection check task end + +2025-09-24 18:01:57,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:00,336 INFO Connection check task start + +2025-09-24 18:02:00,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:00,336 INFO Out dated connection ,size=0 + +2025-09-24 18:02:00,336 INFO Connection check task end + +2025-09-24 18:02:00,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:03,337 INFO Connection check task start + +2025-09-24 18:02:03,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:03,337 INFO Out dated connection ,size=0 + +2025-09-24 18:02:03,337 INFO Connection check task end + +2025-09-24 18:02:03,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:06,338 INFO Connection check task start + +2025-09-24 18:02:06,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:06,339 INFO Out dated connection ,size=0 + +2025-09-24 18:02:06,339 INFO Connection check task end + +2025-09-24 18:02:06,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:09,340 INFO Connection check task start + +2025-09-24 18:02:09,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:09,340 INFO Out dated connection ,size=0 + +2025-09-24 18:02:09,340 INFO Connection check task end + +2025-09-24 18:02:09,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:12,341 INFO Connection check task start + +2025-09-24 18:02:12,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:12,341 INFO Out dated connection ,size=0 + +2025-09-24 18:02:12,341 INFO Connection check task end + +2025-09-24 18:02:12,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:15,343 INFO Connection check task start + +2025-09-24 18:02:15,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:15,343 INFO Out dated connection ,size=0 + +2025-09-24 18:02:15,343 INFO Connection check task end + +2025-09-24 18:02:15,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:18,345 INFO Connection check task start + +2025-09-24 18:02:18,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:18,345 INFO Out dated connection ,size=0 + +2025-09-24 18:02:18,345 INFO Connection check task end + +2025-09-24 18:02:18,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:21,347 INFO Connection check task start + +2025-09-24 18:02:21,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:21,347 INFO Out dated connection ,size=0 + +2025-09-24 18:02:21,348 INFO Connection check task end + +2025-09-24 18:02:21,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:24,349 INFO Connection check task start + +2025-09-24 18:02:24,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:24,349 INFO Out dated connection ,size=0 + +2025-09-24 18:02:24,349 INFO Connection check task end + +2025-09-24 18:02:24,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:27,351 INFO Connection check task start + +2025-09-24 18:02:27,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:27,352 INFO Out dated connection ,size=0 + +2025-09-24 18:02:27,352 INFO Connection check task end + +2025-09-24 18:02:27,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:30,352 INFO Connection check task start + +2025-09-24 18:02:30,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:30,352 INFO Out dated connection ,size=0 + +2025-09-24 18:02:30,352 INFO Connection check task end + +2025-09-24 18:02:30,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:33,352 INFO Connection check task start + +2025-09-24 18:02:33,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:33,353 INFO Out dated connection ,size=0 + +2025-09-24 18:02:33,353 INFO Connection check task end + +2025-09-24 18:02:33,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:36,354 INFO Connection check task start + +2025-09-24 18:02:36,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:36,354 INFO Out dated connection ,size=0 + +2025-09-24 18:02:36,354 INFO Connection check task end + +2025-09-24 18:02:36,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:39,355 INFO Connection check task start + +2025-09-24 18:02:39,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:39,355 INFO Out dated connection ,size=0 + +2025-09-24 18:02:39,355 INFO Connection check task end + +2025-09-24 18:02:39,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:42,355 INFO Connection check task start + +2025-09-24 18:02:42,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:42,356 INFO Out dated connection ,size=0 + +2025-09-24 18:02:42,356 INFO Connection check task end + +2025-09-24 18:02:42,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:45,356 INFO Connection check task start + +2025-09-24 18:02:45,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:45,356 INFO Out dated connection ,size=0 + +2025-09-24 18:02:45,356 INFO Connection check task end + +2025-09-24 18:02:45,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:48,356 INFO Connection check task start + +2025-09-24 18:02:48,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:48,357 INFO Out dated connection ,size=0 + +2025-09-24 18:02:48,357 INFO Connection check task end + +2025-09-24 18:02:48,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:51,357 INFO Connection check task start + +2025-09-24 18:02:51,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:51,357 INFO Out dated connection ,size=0 + +2025-09-24 18:02:51,357 INFO Connection check task end + +2025-09-24 18:02:51,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:54,358 INFO Connection check task start + +2025-09-24 18:02:54,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:54,358 INFO Out dated connection ,size=0 + +2025-09-24 18:02:54,358 INFO Connection check task end + +2025-09-24 18:02:54,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:02:57,358 INFO Connection check task start + +2025-09-24 18:02:57,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:02:57,358 INFO Out dated connection ,size=0 + +2025-09-24 18:02:57,358 INFO Connection check task end + +2025-09-24 18:02:57,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:00,359 INFO Connection check task start + +2025-09-24 18:03:00,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:00,360 INFO Out dated connection ,size=0 + +2025-09-24 18:03:00,360 INFO Connection check task end + +2025-09-24 18:03:00,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:03,360 INFO Connection check task start + +2025-09-24 18:03:03,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:03,360 INFO Out dated connection ,size=0 + +2025-09-24 18:03:03,360 INFO Connection check task end + +2025-09-24 18:03:03,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:06,362 INFO Connection check task start + +2025-09-24 18:03:06,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:06,363 INFO Out dated connection ,size=0 + +2025-09-24 18:03:06,363 INFO Connection check task end + +2025-09-24 18:03:06,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:09,364 INFO Connection check task start + +2025-09-24 18:03:09,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:09,364 INFO Out dated connection ,size=0 + +2025-09-24 18:03:09,364 INFO Connection check task end + +2025-09-24 18:03:09,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:12,365 INFO Connection check task start + +2025-09-24 18:03:12,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:12,365 INFO Out dated connection ,size=0 + +2025-09-24 18:03:12,366 INFO Connection check task end + +2025-09-24 18:03:12,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:15,366 INFO Connection check task start + +2025-09-24 18:03:15,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:15,366 INFO Out dated connection ,size=0 + +2025-09-24 18:03:15,366 INFO Connection check task end + +2025-09-24 18:03:15,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:18,368 INFO Connection check task start + +2025-09-24 18:03:18,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:18,368 INFO Out dated connection ,size=0 + +2025-09-24 18:03:18,368 INFO Connection check task end + +2025-09-24 18:03:18,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:21,368 INFO Connection check task start + +2025-09-24 18:03:21,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:21,369 INFO Out dated connection ,size=0 + +2025-09-24 18:03:21,369 INFO Connection check task end + +2025-09-24 18:03:21,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:24,369 INFO Connection check task start + +2025-09-24 18:03:24,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:24,370 INFO Out dated connection ,size=0 + +2025-09-24 18:03:24,370 INFO Connection check task end + +2025-09-24 18:03:24,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:27,371 INFO Connection check task start + +2025-09-24 18:03:27,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:27,371 INFO Out dated connection ,size=0 + +2025-09-24 18:03:27,372 INFO Connection check task end + +2025-09-24 18:03:27,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:30,372 INFO Connection check task start + +2025-09-24 18:03:30,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:30,372 INFO Out dated connection ,size=0 + +2025-09-24 18:03:30,372 INFO Connection check task end + +2025-09-24 18:03:30,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:33,374 INFO Connection check task start + +2025-09-24 18:03:33,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:33,374 INFO Out dated connection ,size=0 + +2025-09-24 18:03:33,374 INFO Connection check task end + +2025-09-24 18:03:33,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:36,375 INFO Connection check task start + +2025-09-24 18:03:36,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:36,376 INFO Out dated connection ,size=0 + +2025-09-24 18:03:36,376 INFO Connection check task end + +2025-09-24 18:03:36,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:39,376 INFO Connection check task start + +2025-09-24 18:03:39,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:39,376 INFO Out dated connection ,size=0 + +2025-09-24 18:03:39,376 INFO Connection check task end + +2025-09-24 18:03:39,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:42,378 INFO Connection check task start + +2025-09-24 18:03:42,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:42,378 INFO Out dated connection ,size=0 + +2025-09-24 18:03:42,378 INFO Connection check task end + +2025-09-24 18:03:42,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:45,379 INFO Connection check task start + +2025-09-24 18:03:45,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:45,379 INFO Out dated connection ,size=0 + +2025-09-24 18:03:45,379 INFO Connection check task end + +2025-09-24 18:03:45,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:48,379 INFO Connection check task start + +2025-09-24 18:03:48,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:48,380 INFO Out dated connection ,size=0 + +2025-09-24 18:03:48,380 INFO Connection check task end + +2025-09-24 18:03:48,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:51,380 INFO Connection check task start + +2025-09-24 18:03:51,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:51,380 INFO Out dated connection ,size=0 + +2025-09-24 18:03:51,380 INFO Connection check task end + +2025-09-24 18:03:51,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:54,382 INFO Connection check task start + +2025-09-24 18:03:54,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:54,382 INFO Out dated connection ,size=0 + +2025-09-24 18:03:54,382 INFO Connection check task end + +2025-09-24 18:03:54,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:03:57,382 INFO Connection check task start + +2025-09-24 18:03:57,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:03:57,383 INFO Out dated connection ,size=0 + +2025-09-24 18:03:57,383 INFO Connection check task end + +2025-09-24 18:03:57,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:00,384 INFO Connection check task start + +2025-09-24 18:04:00,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:00,384 INFO Out dated connection ,size=0 + +2025-09-24 18:04:00,384 INFO Connection check task end + +2025-09-24 18:04:00,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:03,384 INFO Connection check task start + +2025-09-24 18:04:03,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:03,384 INFO Out dated connection ,size=0 + +2025-09-24 18:04:03,384 INFO Connection check task end + +2025-09-24 18:04:03,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:06,386 INFO Connection check task start + +2025-09-24 18:04:06,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:06,387 INFO Out dated connection ,size=0 + +2025-09-24 18:04:06,387 INFO Connection check task end + +2025-09-24 18:04:06,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:09,388 INFO Connection check task start + +2025-09-24 18:04:09,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:09,388 INFO Out dated connection ,size=0 + +2025-09-24 18:04:09,388 INFO Connection check task end + +2025-09-24 18:04:09,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:12,389 INFO Connection check task start + +2025-09-24 18:04:12,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:12,389 INFO Out dated connection ,size=0 + +2025-09-24 18:04:12,389 INFO Connection check task end + +2025-09-24 18:04:12,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:15,390 INFO Connection check task start + +2025-09-24 18:04:15,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:15,390 INFO Out dated connection ,size=0 + +2025-09-24 18:04:15,390 INFO Connection check task end + +2025-09-24 18:04:15,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:18,390 INFO Connection check task start + +2025-09-24 18:04:18,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:18,391 INFO Out dated connection ,size=0 + +2025-09-24 18:04:18,391 INFO Connection check task end + +2025-09-24 18:04:18,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:21,391 INFO Connection check task start + +2025-09-24 18:04:21,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:21,391 INFO Out dated connection ,size=0 + +2025-09-24 18:04:21,391 INFO Connection check task end + +2025-09-24 18:04:21,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:24,392 INFO Connection check task start + +2025-09-24 18:04:24,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:24,392 INFO Out dated connection ,size=0 + +2025-09-24 18:04:24,393 INFO Connection check task end + +2025-09-24 18:04:24,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:27,393 INFO Connection check task start + +2025-09-24 18:04:27,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:27,393 INFO Out dated connection ,size=0 + +2025-09-24 18:04:27,393 INFO Connection check task end + +2025-09-24 18:04:27,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:30,395 INFO Connection check task start + +2025-09-24 18:04:30,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:30,395 INFO Out dated connection ,size=0 + +2025-09-24 18:04:30,395 INFO Connection check task end + +2025-09-24 18:04:30,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:33,396 INFO Connection check task start + +2025-09-24 18:04:33,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:33,396 INFO Out dated connection ,size=0 + +2025-09-24 18:04:33,396 INFO Connection check task end + +2025-09-24 18:04:33,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:36,398 INFO Connection check task start + +2025-09-24 18:04:36,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:36,398 INFO Out dated connection ,size=0 + +2025-09-24 18:04:36,398 INFO Connection check task end + +2025-09-24 18:04:36,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:39,399 INFO Connection check task start + +2025-09-24 18:04:39,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:39,399 INFO Out dated connection ,size=0 + +2025-09-24 18:04:39,399 INFO Connection check task end + +2025-09-24 18:04:39,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:42,401 INFO Connection check task start + +2025-09-24 18:04:42,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:42,401 INFO Out dated connection ,size=0 + +2025-09-24 18:04:42,401 INFO Connection check task end + +2025-09-24 18:04:42,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:45,402 INFO Connection check task start + +2025-09-24 18:04:45,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:45,402 INFO Out dated connection ,size=0 + +2025-09-24 18:04:45,403 INFO Connection check task end + +2025-09-24 18:04:45,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:48,405 INFO Connection check task start + +2025-09-24 18:04:48,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:48,405 INFO Out dated connection ,size=0 + +2025-09-24 18:04:48,405 INFO Connection check task end + +2025-09-24 18:04:48,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:51,405 INFO Connection check task start + +2025-09-24 18:04:51,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:51,406 INFO Out dated connection ,size=0 + +2025-09-24 18:04:51,406 INFO Connection check task end + +2025-09-24 18:04:51,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:54,407 INFO Connection check task start + +2025-09-24 18:04:54,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:54,407 INFO Out dated connection ,size=0 + +2025-09-24 18:04:54,407 INFO Connection check task end + +2025-09-24 18:04:54,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:04:57,408 INFO Connection check task start + +2025-09-24 18:04:57,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:04:57,408 INFO Out dated connection ,size=0 + +2025-09-24 18:04:57,408 INFO Connection check task end + +2025-09-24 18:04:57,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:00,409 INFO Connection check task start + +2025-09-24 18:05:00,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:00,409 INFO Out dated connection ,size=0 + +2025-09-24 18:05:00,409 INFO Connection check task end + +2025-09-24 18:05:00,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:03,410 INFO Connection check task start + +2025-09-24 18:05:03,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:03,410 INFO Out dated connection ,size=0 + +2025-09-24 18:05:03,410 INFO Connection check task end + +2025-09-24 18:05:03,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:06,412 INFO Connection check task start + +2025-09-24 18:05:06,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:06,412 INFO Out dated connection ,size=0 + +2025-09-24 18:05:06,412 INFO Connection check task end + +2025-09-24 18:05:06,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:09,413 INFO Connection check task start + +2025-09-24 18:05:09,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:09,413 INFO Out dated connection ,size=0 + +2025-09-24 18:05:09,413 INFO Connection check task end + +2025-09-24 18:05:09,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:12,413 INFO Connection check task start + +2025-09-24 18:05:12,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:12,414 INFO Out dated connection ,size=0 + +2025-09-24 18:05:12,414 INFO Connection check task end + +2025-09-24 18:05:12,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:15,415 INFO Connection check task start + +2025-09-24 18:05:15,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:15,415 INFO Out dated connection ,size=0 + +2025-09-24 18:05:15,415 INFO Connection check task end + +2025-09-24 18:05:15,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:18,417 INFO Connection check task start + +2025-09-24 18:05:18,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:18,418 INFO Out dated connection ,size=0 + +2025-09-24 18:05:18,418 INFO Connection check task end + +2025-09-24 18:05:18,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:21,418 INFO Connection check task start + +2025-09-24 18:05:21,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:21,418 INFO Out dated connection ,size=0 + +2025-09-24 18:05:21,418 INFO Connection check task end + +2025-09-24 18:05:21,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:24,419 INFO Connection check task start + +2025-09-24 18:05:24,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:24,419 INFO Out dated connection ,size=0 + +2025-09-24 18:05:24,419 INFO Connection check task end + +2025-09-24 18:05:24,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:27,419 INFO Connection check task start + +2025-09-24 18:05:27,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:27,420 INFO Out dated connection ,size=0 + +2025-09-24 18:05:27,420 INFO Connection check task end + +2025-09-24 18:05:27,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:30,420 INFO Connection check task start + +2025-09-24 18:05:30,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:30,420 INFO Out dated connection ,size=0 + +2025-09-24 18:05:30,420 INFO Connection check task end + +2025-09-24 18:05:30,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:33,421 INFO Connection check task start + +2025-09-24 18:05:33,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:33,421 INFO Out dated connection ,size=0 + +2025-09-24 18:05:33,421 INFO Connection check task end + +2025-09-24 18:05:33,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:36,422 INFO Connection check task start + +2025-09-24 18:05:36,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:36,423 INFO Out dated connection ,size=0 + +2025-09-24 18:05:36,423 INFO Connection check task end + +2025-09-24 18:05:36,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:39,423 INFO Connection check task start + +2025-09-24 18:05:39,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:39,423 INFO Out dated connection ,size=0 + +2025-09-24 18:05:39,423 INFO Connection check task end + +2025-09-24 18:05:39,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:42,423 INFO Connection check task start + +2025-09-24 18:05:42,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:42,423 INFO Out dated connection ,size=0 + +2025-09-24 18:05:42,423 INFO Connection check task end + +2025-09-24 18:05:42,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:45,425 INFO Connection check task start + +2025-09-24 18:05:45,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:45,425 INFO Out dated connection ,size=0 + +2025-09-24 18:05:45,425 INFO Connection check task end + +2025-09-24 18:05:45,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:48,425 INFO Connection check task start + +2025-09-24 18:05:48,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:48,426 INFO Out dated connection ,size=0 + +2025-09-24 18:05:48,426 INFO Connection check task end + +2025-09-24 18:05:48,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:51,428 INFO Connection check task start + +2025-09-24 18:05:51,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:51,428 INFO Out dated connection ,size=0 + +2025-09-24 18:05:51,428 INFO Connection check task end + +2025-09-24 18:05:51,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:54,429 INFO Connection check task start + +2025-09-24 18:05:54,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:54,429 INFO Out dated connection ,size=0 + +2025-09-24 18:05:54,429 INFO Connection check task end + +2025-09-24 18:05:54,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:05:57,430 INFO Connection check task start + +2025-09-24 18:05:57,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:05:57,430 INFO Out dated connection ,size=0 + +2025-09-24 18:05:57,430 INFO Connection check task end + +2025-09-24 18:05:57,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:00,431 INFO Connection check task start + +2025-09-24 18:06:00,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:00,431 INFO Out dated connection ,size=0 + +2025-09-24 18:06:00,431 INFO Connection check task end + +2025-09-24 18:06:00,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:03,433 INFO Connection check task start + +2025-09-24 18:06:03,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:03,433 INFO Out dated connection ,size=0 + +2025-09-24 18:06:03,433 INFO Connection check task end + +2025-09-24 18:06:03,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:06,433 INFO Connection check task start + +2025-09-24 18:06:06,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:06,434 INFO Out dated connection ,size=0 + +2025-09-24 18:06:06,434 INFO Connection check task end + +2025-09-24 18:06:06,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:09,434 INFO Connection check task start + +2025-09-24 18:06:09,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:09,434 INFO Out dated connection ,size=0 + +2025-09-24 18:06:09,434 INFO Connection check task end + +2025-09-24 18:06:09,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:12,434 INFO Connection check task start + +2025-09-24 18:06:12,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:12,435 INFO Out dated connection ,size=0 + +2025-09-24 18:06:12,435 INFO Connection check task end + +2025-09-24 18:06:12,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:15,435 INFO Connection check task start + +2025-09-24 18:06:15,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:15,435 INFO Out dated connection ,size=0 + +2025-09-24 18:06:15,435 INFO Connection check task end + +2025-09-24 18:06:15,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:18,435 INFO Connection check task start + +2025-09-24 18:06:18,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:18,435 INFO Out dated connection ,size=0 + +2025-09-24 18:06:18,436 INFO Connection check task end + +2025-09-24 18:06:18,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:21,436 INFO Connection check task start + +2025-09-24 18:06:21,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:21,436 INFO Out dated connection ,size=0 + +2025-09-24 18:06:21,436 INFO Connection check task end + +2025-09-24 18:06:21,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:24,438 INFO Connection check task start + +2025-09-24 18:06:24,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:24,439 INFO Out dated connection ,size=0 + +2025-09-24 18:06:24,440 INFO Connection check task end + +2025-09-24 18:06:24,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:27,441 INFO Connection check task start + +2025-09-24 18:06:27,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:27,442 INFO Out dated connection ,size=0 + +2025-09-24 18:06:27,442 INFO Connection check task end + +2025-09-24 18:06:27,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:30,442 INFO Connection check task start + +2025-09-24 18:06:30,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:30,442 INFO Out dated connection ,size=0 + +2025-09-24 18:06:30,442 INFO Connection check task end + +2025-09-24 18:06:30,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:33,443 INFO Connection check task start + +2025-09-24 18:06:33,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:33,443 INFO Out dated connection ,size=0 + +2025-09-24 18:06:33,443 INFO Connection check task end + +2025-09-24 18:06:33,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:36,445 INFO Connection check task start + +2025-09-24 18:06:36,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:36,445 INFO Out dated connection ,size=0 + +2025-09-24 18:06:36,445 INFO Connection check task end + +2025-09-24 18:06:36,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:39,445 INFO Connection check task start + +2025-09-24 18:06:39,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:39,445 INFO Out dated connection ,size=0 + +2025-09-24 18:06:39,445 INFO Connection check task end + +2025-09-24 18:06:39,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:42,447 INFO Connection check task start + +2025-09-24 18:06:42,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:42,447 INFO Out dated connection ,size=0 + +2025-09-24 18:06:42,447 INFO Connection check task end + +2025-09-24 18:06:42,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:45,448 INFO Connection check task start + +2025-09-24 18:06:45,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:45,448 INFO Out dated connection ,size=0 + +2025-09-24 18:06:45,448 INFO Connection check task end + +2025-09-24 18:06:45,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:48,449 INFO Connection check task start + +2025-09-24 18:06:48,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:48,449 INFO Out dated connection ,size=0 + +2025-09-24 18:06:48,449 INFO Connection check task end + +2025-09-24 18:06:48,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:51,449 INFO Connection check task start + +2025-09-24 18:06:51,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:51,453 INFO Out dated connection ,size=0 + +2025-09-24 18:06:51,453 INFO Connection check task end + +2025-09-24 18:06:51,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:54,454 INFO Connection check task start + +2025-09-24 18:06:54,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:54,454 INFO Out dated connection ,size=0 + +2025-09-24 18:06:54,454 INFO Connection check task end + +2025-09-24 18:06:54,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:06:57,455 INFO Connection check task start + +2025-09-24 18:06:57,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:06:57,455 INFO Out dated connection ,size=0 + +2025-09-24 18:06:57,455 INFO Connection check task end + +2025-09-24 18:06:57,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:00,456 INFO Connection check task start + +2025-09-24 18:07:00,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:00,456 INFO Out dated connection ,size=0 + +2025-09-24 18:07:00,456 INFO Connection check task end + +2025-09-24 18:07:00,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:03,458 INFO Connection check task start + +2025-09-24 18:07:03,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:03,458 INFO Out dated connection ,size=0 + +2025-09-24 18:07:03,458 INFO Connection check task end + +2025-09-24 18:07:03,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:06,460 INFO Connection check task start + +2025-09-24 18:07:06,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:06,460 INFO Out dated connection ,size=0 + +2025-09-24 18:07:06,460 INFO Connection check task end + +2025-09-24 18:07:06,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:09,462 INFO Connection check task start + +2025-09-24 18:07:09,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:09,462 INFO Out dated connection ,size=0 + +2025-09-24 18:07:09,462 INFO Connection check task end + +2025-09-24 18:07:09,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:12,464 INFO Connection check task start + +2025-09-24 18:07:12,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:12,464 INFO Out dated connection ,size=0 + +2025-09-24 18:07:12,464 INFO Connection check task end + +2025-09-24 18:07:12,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:15,465 INFO Connection check task start + +2025-09-24 18:07:15,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:15,465 INFO Out dated connection ,size=0 + +2025-09-24 18:07:15,465 INFO Connection check task end + +2025-09-24 18:07:15,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:18,467 INFO Connection check task start + +2025-09-24 18:07:18,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:18,467 INFO Out dated connection ,size=0 + +2025-09-24 18:07:18,467 INFO Connection check task end + +2025-09-24 18:07:18,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:21,469 INFO Connection check task start + +2025-09-24 18:07:21,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:21,470 INFO Out dated connection ,size=0 + +2025-09-24 18:07:21,470 INFO Connection check task end + +2025-09-24 18:07:21,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:24,472 INFO Connection check task start + +2025-09-24 18:07:24,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:24,473 INFO Out dated connection ,size=0 + +2025-09-24 18:07:24,473 INFO Connection check task end + +2025-09-24 18:07:24,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:27,474 INFO Connection check task start + +2025-09-24 18:07:27,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:27,474 INFO Out dated connection ,size=0 + +2025-09-24 18:07:27,474 INFO Connection check task end + +2025-09-24 18:07:27,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:30,474 INFO Connection check task start + +2025-09-24 18:07:30,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:30,475 INFO Out dated connection ,size=0 + +2025-09-24 18:07:30,475 INFO Connection check task end + +2025-09-24 18:07:30,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:33,476 INFO Connection check task start + +2025-09-24 18:07:33,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:33,476 INFO Out dated connection ,size=0 + +2025-09-24 18:07:33,476 INFO Connection check task end + +2025-09-24 18:07:33,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:36,477 INFO Connection check task start + +2025-09-24 18:07:36,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:36,477 INFO Out dated connection ,size=0 + +2025-09-24 18:07:36,477 INFO Connection check task end + +2025-09-24 18:07:36,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:39,477 INFO Connection check task start + +2025-09-24 18:07:39,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:39,478 INFO Out dated connection ,size=0 + +2025-09-24 18:07:39,478 INFO Connection check task end + +2025-09-24 18:07:39,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:42,478 INFO Connection check task start + +2025-09-24 18:07:42,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:42,478 INFO Out dated connection ,size=0 + +2025-09-24 18:07:42,478 INFO Connection check task end + +2025-09-24 18:07:42,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:45,479 INFO Connection check task start + +2025-09-24 18:07:45,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:45,480 INFO Out dated connection ,size=0 + +2025-09-24 18:07:45,480 INFO Connection check task end + +2025-09-24 18:07:45,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:48,480 INFO Connection check task start + +2025-09-24 18:07:48,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:48,480 INFO Out dated connection ,size=0 + +2025-09-24 18:07:48,480 INFO Connection check task end + +2025-09-24 18:07:48,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:51,482 INFO Connection check task start + +2025-09-24 18:07:51,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:51,482 INFO Out dated connection ,size=0 + +2025-09-24 18:07:51,482 INFO Connection check task end + +2025-09-24 18:07:51,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:54,482 INFO Connection check task start + +2025-09-24 18:07:54,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:54,482 INFO Out dated connection ,size=0 + +2025-09-24 18:07:54,482 INFO Connection check task end + +2025-09-24 18:07:54,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:07:57,483 INFO Connection check task start + +2025-09-24 18:07:57,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:07:57,484 INFO Out dated connection ,size=0 + +2025-09-24 18:07:57,484 INFO Connection check task end + +2025-09-24 18:07:57,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:00,484 INFO Connection check task start + +2025-09-24 18:08:00,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:00,484 INFO Out dated connection ,size=0 + +2025-09-24 18:08:00,484 INFO Connection check task end + +2025-09-24 18:08:00,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:03,486 INFO Connection check task start + +2025-09-24 18:08:03,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:03,486 INFO Out dated connection ,size=0 + +2025-09-24 18:08:03,486 INFO Connection check task end + +2025-09-24 18:08:03,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:06,486 INFO Connection check task start + +2025-09-24 18:08:06,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:06,486 INFO Out dated connection ,size=0 + +2025-09-24 18:08:06,486 INFO Connection check task end + +2025-09-24 18:08:06,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:09,486 INFO Connection check task start + +2025-09-24 18:08:09,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:09,486 INFO Out dated connection ,size=0 + +2025-09-24 18:08:09,486 INFO Connection check task end + +2025-09-24 18:08:09,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:12,488 INFO Connection check task start + +2025-09-24 18:08:12,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:12,488 INFO Out dated connection ,size=0 + +2025-09-24 18:08:12,488 INFO Connection check task end + +2025-09-24 18:08:12,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:15,488 INFO Connection check task start + +2025-09-24 18:08:15,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:15,489 INFO Out dated connection ,size=0 + +2025-09-24 18:08:15,489 INFO Connection check task end + +2025-09-24 18:08:15,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:18,490 INFO Connection check task start + +2025-09-24 18:08:18,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:18,490 INFO Out dated connection ,size=0 + +2025-09-24 18:08:18,491 INFO Connection check task end + +2025-09-24 18:08:18,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:21,492 INFO Connection check task start + +2025-09-24 18:08:21,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:21,492 INFO Out dated connection ,size=0 + +2025-09-24 18:08:21,492 INFO Connection check task end + +2025-09-24 18:08:21,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:24,492 INFO Connection check task start + +2025-09-24 18:08:24,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:24,493 INFO Out dated connection ,size=0 + +2025-09-24 18:08:24,493 INFO Connection check task end + +2025-09-24 18:08:24,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:27,493 INFO Connection check task start + +2025-09-24 18:08:27,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:27,494 INFO Out dated connection ,size=0 + +2025-09-24 18:08:27,494 INFO Connection check task end + +2025-09-24 18:08:27,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:30,495 INFO Connection check task start + +2025-09-24 18:08:30,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:30,496 INFO Out dated connection ,size=0 + +2025-09-24 18:08:30,496 INFO Connection check task end + +2025-09-24 18:08:30,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:33,496 INFO Connection check task start + +2025-09-24 18:08:33,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:33,496 INFO Out dated connection ,size=0 + +2025-09-24 18:08:33,496 INFO Connection check task end + +2025-09-24 18:08:33,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:36,497 INFO Connection check task start + +2025-09-24 18:08:36,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:36,498 INFO Out dated connection ,size=0 + +2025-09-24 18:08:36,498 INFO Connection check task end + +2025-09-24 18:08:36,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:39,500 INFO Connection check task start + +2025-09-24 18:08:39,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:39,500 INFO Out dated connection ,size=0 + +2025-09-24 18:08:39,500 INFO Connection check task end + +2025-09-24 18:08:39,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:42,502 INFO Connection check task start + +2025-09-24 18:08:42,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:42,502 INFO Out dated connection ,size=0 + +2025-09-24 18:08:42,502 INFO Connection check task end + +2025-09-24 18:08:42,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:45,503 INFO Connection check task start + +2025-09-24 18:08:45,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:45,503 INFO Out dated connection ,size=0 + +2025-09-24 18:08:45,503 INFO Connection check task end + +2025-09-24 18:08:45,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:48,503 INFO Connection check task start + +2025-09-24 18:08:48,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:48,503 INFO Out dated connection ,size=0 + +2025-09-24 18:08:48,504 INFO Connection check task end + +2025-09-24 18:08:48,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:51,504 INFO Connection check task start + +2025-09-24 18:08:51,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:51,504 INFO Out dated connection ,size=0 + +2025-09-24 18:08:51,504 INFO Connection check task end + +2025-09-24 18:08:51,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:54,504 INFO Connection check task start + +2025-09-24 18:08:54,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:54,504 INFO Out dated connection ,size=0 + +2025-09-24 18:08:54,505 INFO Connection check task end + +2025-09-24 18:08:54,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:08:57,506 INFO Connection check task start + +2025-09-24 18:08:57,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:08:57,506 INFO Out dated connection ,size=0 + +2025-09-24 18:08:57,506 INFO Connection check task end + +2025-09-24 18:08:57,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:00,508 INFO Connection check task start + +2025-09-24 18:09:00,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:00,508 INFO Out dated connection ,size=0 + +2025-09-24 18:09:00,508 INFO Connection check task end + +2025-09-24 18:09:00,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:03,510 INFO Connection check task start + +2025-09-24 18:09:03,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:03,510 INFO Out dated connection ,size=0 + +2025-09-24 18:09:03,510 INFO Connection check task end + +2025-09-24 18:09:03,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:06,511 INFO Connection check task start + +2025-09-24 18:09:06,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:06,512 INFO Out dated connection ,size=0 + +2025-09-24 18:09:06,512 INFO Connection check task end + +2025-09-24 18:09:06,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:09,513 INFO Connection check task start + +2025-09-24 18:09:09,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:09,513 INFO Out dated connection ,size=0 + +2025-09-24 18:09:09,513 INFO Connection check task end + +2025-09-24 18:09:09,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:12,515 INFO Connection check task start + +2025-09-24 18:09:12,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:12,515 INFO Out dated connection ,size=0 + +2025-09-24 18:09:12,515 INFO Connection check task end + +2025-09-24 18:09:12,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:15,516 INFO Connection check task start + +2025-09-24 18:09:15,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:15,516 INFO Out dated connection ,size=0 + +2025-09-24 18:09:15,516 INFO Connection check task end + +2025-09-24 18:09:15,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:18,517 INFO Connection check task start + +2025-09-24 18:09:18,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:18,517 INFO Out dated connection ,size=0 + +2025-09-24 18:09:18,517 INFO Connection check task end + +2025-09-24 18:09:18,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:21,519 INFO Connection check task start + +2025-09-24 18:09:21,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:21,519 INFO Out dated connection ,size=0 + +2025-09-24 18:09:21,519 INFO Connection check task end + +2025-09-24 18:09:21,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:24,520 INFO Connection check task start + +2025-09-24 18:09:24,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:24,520 INFO Out dated connection ,size=0 + +2025-09-24 18:09:24,520 INFO Connection check task end + +2025-09-24 18:09:24,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:27,520 INFO Connection check task start + +2025-09-24 18:09:27,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:27,520 INFO Out dated connection ,size=0 + +2025-09-24 18:09:27,520 INFO Connection check task end + +2025-09-24 18:09:27,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:30,521 INFO Connection check task start + +2025-09-24 18:09:30,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:30,522 INFO Out dated connection ,size=0 + +2025-09-24 18:09:30,522 INFO Connection check task end + +2025-09-24 18:09:30,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:33,523 INFO Connection check task start + +2025-09-24 18:09:33,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:33,523 INFO Out dated connection ,size=0 + +2025-09-24 18:09:33,523 INFO Connection check task end + +2025-09-24 18:09:33,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:36,524 INFO Connection check task start + +2025-09-24 18:09:36,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:36,524 INFO Out dated connection ,size=0 + +2025-09-24 18:09:36,524 INFO Connection check task end + +2025-09-24 18:09:36,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:39,526 INFO Connection check task start + +2025-09-24 18:09:39,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:39,526 INFO Out dated connection ,size=0 + +2025-09-24 18:09:39,526 INFO Connection check task end + +2025-09-24 18:09:39,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:42,526 INFO Connection check task start + +2025-09-24 18:09:42,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:42,527 INFO Out dated connection ,size=0 + +2025-09-24 18:09:42,527 INFO Connection check task end + +2025-09-24 18:09:42,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:45,527 INFO Connection check task start + +2025-09-24 18:09:45,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:45,527 INFO Out dated connection ,size=0 + +2025-09-24 18:09:45,528 INFO Connection check task end + +2025-09-24 18:09:45,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:48,528 INFO Connection check task start + +2025-09-24 18:09:48,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:48,528 INFO Out dated connection ,size=0 + +2025-09-24 18:09:48,528 INFO Connection check task end + +2025-09-24 18:09:48,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:51,528 INFO Connection check task start + +2025-09-24 18:09:51,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:51,528 INFO Out dated connection ,size=0 + +2025-09-24 18:09:51,528 INFO Connection check task end + +2025-09-24 18:09:51,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:54,530 INFO Connection check task start + +2025-09-24 18:09:54,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:54,530 INFO Out dated connection ,size=0 + +2025-09-24 18:09:54,530 INFO Connection check task end + +2025-09-24 18:09:54,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:09:57,532 INFO Connection check task start + +2025-09-24 18:09:57,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:09:57,532 INFO Out dated connection ,size=0 + +2025-09-24 18:09:57,532 INFO Connection check task end + +2025-09-24 18:09:57,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:00,533 INFO Connection check task start + +2025-09-24 18:10:00,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:00,533 INFO Out dated connection ,size=0 + +2025-09-24 18:10:00,533 INFO Connection check task end + +2025-09-24 18:10:00,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:03,533 INFO Connection check task start + +2025-09-24 18:10:03,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:03,534 INFO Out dated connection ,size=0 + +2025-09-24 18:10:03,534 INFO Connection check task end + +2025-09-24 18:10:03,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:06,534 INFO Connection check task start + +2025-09-24 18:10:06,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:06,534 INFO Out dated connection ,size=0 + +2025-09-24 18:10:06,534 INFO Connection check task end + +2025-09-24 18:10:06,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:09,535 INFO Connection check task start + +2025-09-24 18:10:09,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:09,535 INFO Out dated connection ,size=0 + +2025-09-24 18:10:09,535 INFO Connection check task end + +2025-09-24 18:10:09,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:12,537 INFO Connection check task start + +2025-09-24 18:10:12,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:12,537 INFO Out dated connection ,size=0 + +2025-09-24 18:10:12,537 INFO Connection check task end + +2025-09-24 18:10:12,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:15,538 INFO Connection check task start + +2025-09-24 18:10:15,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:15,538 INFO Out dated connection ,size=0 + +2025-09-24 18:10:15,538 INFO Connection check task end + +2025-09-24 18:10:15,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:18,538 INFO Connection check task start + +2025-09-24 18:10:18,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:18,538 INFO Out dated connection ,size=0 + +2025-09-24 18:10:18,538 INFO Connection check task end + +2025-09-24 18:10:18,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:21,539 INFO Connection check task start + +2025-09-24 18:10:21,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:21,539 INFO Out dated connection ,size=0 + +2025-09-24 18:10:21,539 INFO Connection check task end + +2025-09-24 18:10:21,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:24,540 INFO Connection check task start + +2025-09-24 18:10:24,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:24,540 INFO Out dated connection ,size=0 + +2025-09-24 18:10:24,540 INFO Connection check task end + +2025-09-24 18:10:24,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:27,541 INFO Connection check task start + +2025-09-24 18:10:27,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:27,541 INFO Out dated connection ,size=0 + +2025-09-24 18:10:27,541 INFO Connection check task end + +2025-09-24 18:10:27,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:30,542 INFO Connection check task start + +2025-09-24 18:10:30,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:30,542 INFO Out dated connection ,size=0 + +2025-09-24 18:10:30,542 INFO Connection check task end + +2025-09-24 18:10:30,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:33,542 INFO Connection check task start + +2025-09-24 18:10:33,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:33,542 INFO Out dated connection ,size=0 + +2025-09-24 18:10:33,542 INFO Connection check task end + +2025-09-24 18:10:33,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:36,544 INFO Connection check task start + +2025-09-24 18:10:36,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:36,544 INFO Out dated connection ,size=0 + +2025-09-24 18:10:36,544 INFO Connection check task end + +2025-09-24 18:10:36,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:39,545 INFO Connection check task start + +2025-09-24 18:10:39,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:39,545 INFO Out dated connection ,size=0 + +2025-09-24 18:10:39,545 INFO Connection check task end + +2025-09-24 18:10:39,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:42,546 INFO Connection check task start + +2025-09-24 18:10:42,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:42,546 INFO Out dated connection ,size=0 + +2025-09-24 18:10:42,546 INFO Connection check task end + +2025-09-24 18:10:42,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:45,548 INFO Connection check task start + +2025-09-24 18:10:45,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:45,548 INFO Out dated connection ,size=0 + +2025-09-24 18:10:45,548 INFO Connection check task end + +2025-09-24 18:10:45,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:48,548 INFO Connection check task start + +2025-09-24 18:10:48,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:48,549 INFO Out dated connection ,size=0 + +2025-09-24 18:10:48,549 INFO Connection check task end + +2025-09-24 18:10:48,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:51,551 INFO Connection check task start + +2025-09-24 18:10:51,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:51,551 INFO Out dated connection ,size=0 + +2025-09-24 18:10:51,551 INFO Connection check task end + +2025-09-24 18:10:51,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:54,551 INFO Connection check task start + +2025-09-24 18:10:54,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:54,551 INFO Out dated connection ,size=0 + +2025-09-24 18:10:54,551 INFO Connection check task end + +2025-09-24 18:10:54,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:10:57,553 INFO Connection check task start + +2025-09-24 18:10:57,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:10:57,553 INFO Out dated connection ,size=0 + +2025-09-24 18:10:57,553 INFO Connection check task end + +2025-09-24 18:10:57,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:00,554 INFO Connection check task start + +2025-09-24 18:11:00,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:00,554 INFO Out dated connection ,size=0 + +2025-09-24 18:11:00,554 INFO Connection check task end + +2025-09-24 18:11:00,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:03,555 INFO Connection check task start + +2025-09-24 18:11:03,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:03,555 INFO Out dated connection ,size=0 + +2025-09-24 18:11:03,555 INFO Connection check task end + +2025-09-24 18:11:03,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:06,556 INFO Connection check task start + +2025-09-24 18:11:06,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:06,556 INFO Out dated connection ,size=0 + +2025-09-24 18:11:06,556 INFO Connection check task end + +2025-09-24 18:11:06,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:09,556 INFO Connection check task start + +2025-09-24 18:11:09,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:09,557 INFO Out dated connection ,size=0 + +2025-09-24 18:11:09,557 INFO Connection check task end + +2025-09-24 18:11:09,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:12,558 INFO Connection check task start + +2025-09-24 18:11:12,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:12,558 INFO Out dated connection ,size=0 + +2025-09-24 18:11:12,559 INFO Connection check task end + +2025-09-24 18:11:12,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:15,559 INFO Connection check task start + +2025-09-24 18:11:15,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:15,559 INFO Out dated connection ,size=0 + +2025-09-24 18:11:15,559 INFO Connection check task end + +2025-09-24 18:11:15,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:18,560 INFO Connection check task start + +2025-09-24 18:11:18,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:18,560 INFO Out dated connection ,size=0 + +2025-09-24 18:11:18,560 INFO Connection check task end + +2025-09-24 18:11:18,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:21,562 INFO Connection check task start + +2025-09-24 18:11:21,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:21,562 INFO Out dated connection ,size=0 + +2025-09-24 18:11:21,562 INFO Connection check task end + +2025-09-24 18:11:21,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:24,564 INFO Connection check task start + +2025-09-24 18:11:24,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:24,565 INFO Out dated connection ,size=0 + +2025-09-24 18:11:24,565 INFO Connection check task end + +2025-09-24 18:11:24,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:27,567 INFO Connection check task start + +2025-09-24 18:11:27,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:27,567 INFO Out dated connection ,size=0 + +2025-09-24 18:11:27,567 INFO Connection check task end + +2025-09-24 18:11:27,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:30,568 INFO Connection check task start + +2025-09-24 18:11:30,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:30,568 INFO Out dated connection ,size=0 + +2025-09-24 18:11:30,568 INFO Connection check task end + +2025-09-24 18:11:30,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:33,568 INFO Connection check task start + +2025-09-24 18:11:33,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:33,569 INFO Out dated connection ,size=0 + +2025-09-24 18:11:33,569 INFO Connection check task end + +2025-09-24 18:11:33,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:36,571 INFO Connection check task start + +2025-09-24 18:11:36,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:36,571 INFO Out dated connection ,size=0 + +2025-09-24 18:11:36,571 INFO Connection check task end + +2025-09-24 18:11:36,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:39,571 INFO Connection check task start + +2025-09-24 18:11:39,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:39,571 INFO Out dated connection ,size=0 + +2025-09-24 18:11:39,571 INFO Connection check task end + +2025-09-24 18:11:39,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:42,572 INFO Connection check task start + +2025-09-24 18:11:42,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:42,572 INFO Out dated connection ,size=0 + +2025-09-24 18:11:42,572 INFO Connection check task end + +2025-09-24 18:11:42,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:45,572 INFO Connection check task start + +2025-09-24 18:11:45,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:45,573 INFO Out dated connection ,size=0 + +2025-09-24 18:11:45,573 INFO Connection check task end + +2025-09-24 18:11:45,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:48,574 INFO Connection check task start + +2025-09-24 18:11:48,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:48,574 INFO Out dated connection ,size=0 + +2025-09-24 18:11:48,574 INFO Connection check task end + +2025-09-24 18:11:48,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:51,576 INFO Connection check task start + +2025-09-24 18:11:51,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:51,576 INFO Out dated connection ,size=0 + +2025-09-24 18:11:51,576 INFO Connection check task end + +2025-09-24 18:11:51,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:54,577 INFO Connection check task start + +2025-09-24 18:11:54,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:54,577 INFO Out dated connection ,size=0 + +2025-09-24 18:11:54,577 INFO Connection check task end + +2025-09-24 18:11:54,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:11:57,578 INFO Connection check task start + +2025-09-24 18:11:57,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:11:57,578 INFO Out dated connection ,size=0 + +2025-09-24 18:11:57,578 INFO Connection check task end + +2025-09-24 18:11:57,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:00,579 INFO Connection check task start + +2025-09-24 18:12:00,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:00,579 INFO Out dated connection ,size=0 + +2025-09-24 18:12:00,579 INFO Connection check task end + +2025-09-24 18:12:00,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:03,579 INFO Connection check task start + +2025-09-24 18:12:03,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:03,579 INFO Out dated connection ,size=0 + +2025-09-24 18:12:03,579 INFO Connection check task end + +2025-09-24 18:12:03,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:06,580 INFO Connection check task start + +2025-09-24 18:12:06,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:06,580 INFO Out dated connection ,size=0 + +2025-09-24 18:12:06,580 INFO Connection check task end + +2025-09-24 18:12:06,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:09,580 INFO Connection check task start + +2025-09-24 18:12:09,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:09,580 INFO Out dated connection ,size=0 + +2025-09-24 18:12:09,580 INFO Connection check task end + +2025-09-24 18:12:09,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:12,582 INFO Connection check task start + +2025-09-24 18:12:12,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:12,582 INFO Out dated connection ,size=0 + +2025-09-24 18:12:12,582 INFO Connection check task end + +2025-09-24 18:12:12,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:15,584 INFO Connection check task start + +2025-09-24 18:12:15,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:15,584 INFO Out dated connection ,size=0 + +2025-09-24 18:12:15,584 INFO Connection check task end + +2025-09-24 18:12:15,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:18,586 INFO Connection check task start + +2025-09-24 18:12:18,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:18,586 INFO Out dated connection ,size=0 + +2025-09-24 18:12:18,586 INFO Connection check task end + +2025-09-24 18:12:18,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:21,588 INFO Connection check task start + +2025-09-24 18:12:21,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:21,588 INFO Out dated connection ,size=0 + +2025-09-24 18:12:21,588 INFO Connection check task end + +2025-09-24 18:12:21,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:24,590 INFO Connection check task start + +2025-09-24 18:12:24,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:24,590 INFO Out dated connection ,size=0 + +2025-09-24 18:12:24,590 INFO Connection check task end + +2025-09-24 18:12:24,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:27,591 INFO Connection check task start + +2025-09-24 18:12:27,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:27,592 INFO Out dated connection ,size=0 + +2025-09-24 18:12:27,592 INFO Connection check task end + +2025-09-24 18:12:27,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:30,594 INFO Connection check task start + +2025-09-24 18:12:30,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:30,594 INFO Out dated connection ,size=0 + +2025-09-24 18:12:30,594 INFO Connection check task end + +2025-09-24 18:12:30,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:33,596 INFO Connection check task start + +2025-09-24 18:12:33,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:33,596 INFO Out dated connection ,size=0 + +2025-09-24 18:12:33,596 INFO Connection check task end + +2025-09-24 18:12:33,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:36,598 INFO Connection check task start + +2025-09-24 18:12:36,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:36,598 INFO Out dated connection ,size=0 + +2025-09-24 18:12:36,598 INFO Connection check task end + +2025-09-24 18:12:36,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:39,600 INFO Connection check task start + +2025-09-24 18:12:39,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:39,600 INFO Out dated connection ,size=0 + +2025-09-24 18:12:39,600 INFO Connection check task end + +2025-09-24 18:12:39,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:42,601 INFO Connection check task start + +2025-09-24 18:12:42,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:42,601 INFO Out dated connection ,size=0 + +2025-09-24 18:12:42,601 INFO Connection check task end + +2025-09-24 18:12:42,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:45,601 INFO Connection check task start + +2025-09-24 18:12:45,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:45,602 INFO Out dated connection ,size=0 + +2025-09-24 18:12:45,602 INFO Connection check task end + +2025-09-24 18:12:45,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:48,604 INFO Connection check task start + +2025-09-24 18:12:48,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:48,604 INFO Out dated connection ,size=0 + +2025-09-24 18:12:48,604 INFO Connection check task end + +2025-09-24 18:12:48,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:51,606 INFO Connection check task start + +2025-09-24 18:12:51,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:51,606 INFO Out dated connection ,size=0 + +2025-09-24 18:12:51,606 INFO Connection check task end + +2025-09-24 18:12:51,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:54,606 INFO Connection check task start + +2025-09-24 18:12:54,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:54,607 INFO Out dated connection ,size=0 + +2025-09-24 18:12:54,607 INFO Connection check task end + +2025-09-24 18:12:54,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:12:57,607 INFO Connection check task start + +2025-09-24 18:12:57,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:12:57,607 INFO Out dated connection ,size=0 + +2025-09-24 18:12:57,607 INFO Connection check task end + +2025-09-24 18:12:57,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:00,608 INFO Connection check task start + +2025-09-24 18:13:00,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:00,608 INFO Out dated connection ,size=0 + +2025-09-24 18:13:00,608 INFO Connection check task end + +2025-09-24 18:13:00,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:03,608 INFO Connection check task start + +2025-09-24 18:13:03,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:03,609 INFO Out dated connection ,size=0 + +2025-09-24 18:13:03,609 INFO Connection check task end + +2025-09-24 18:13:03,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:06,611 INFO Connection check task start + +2025-09-24 18:13:06,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:06,611 INFO Out dated connection ,size=0 + +2025-09-24 18:13:06,611 INFO Connection check task end + +2025-09-24 18:13:06,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:09,611 INFO Connection check task start + +2025-09-24 18:13:09,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:09,611 INFO Out dated connection ,size=0 + +2025-09-24 18:13:09,611 INFO Connection check task end + +2025-09-24 18:13:09,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:12,613 INFO Connection check task start + +2025-09-24 18:13:12,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:12,613 INFO Out dated connection ,size=0 + +2025-09-24 18:13:12,613 INFO Connection check task end + +2025-09-24 18:13:12,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:15,615 INFO Connection check task start + +2025-09-24 18:13:15,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:15,615 INFO Out dated connection ,size=0 + +2025-09-24 18:13:15,615 INFO Connection check task end + +2025-09-24 18:13:15,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:18,616 INFO Connection check task start + +2025-09-24 18:13:18,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:18,616 INFO Out dated connection ,size=0 + +2025-09-24 18:13:18,616 INFO Connection check task end + +2025-09-24 18:13:18,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:21,616 INFO Connection check task start + +2025-09-24 18:13:21,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:21,617 INFO Out dated connection ,size=0 + +2025-09-24 18:13:21,617 INFO Connection check task end + +2025-09-24 18:13:21,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:24,618 INFO Connection check task start + +2025-09-24 18:13:24,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:24,618 INFO Out dated connection ,size=0 + +2025-09-24 18:13:24,618 INFO Connection check task end + +2025-09-24 18:13:24,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:27,619 INFO Connection check task start + +2025-09-24 18:13:27,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:27,619 INFO Out dated connection ,size=0 + +2025-09-24 18:13:27,619 INFO Connection check task end + +2025-09-24 18:13:27,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:30,621 INFO Connection check task start + +2025-09-24 18:13:30,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:30,621 INFO Out dated connection ,size=0 + +2025-09-24 18:13:30,621 INFO Connection check task end + +2025-09-24 18:13:30,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:33,622 INFO Connection check task start + +2025-09-24 18:13:33,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:33,622 INFO Out dated connection ,size=0 + +2025-09-24 18:13:33,623 INFO Connection check task end + +2025-09-24 18:13:33,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:36,623 INFO Connection check task start + +2025-09-24 18:13:36,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:36,623 INFO Out dated connection ,size=0 + +2025-09-24 18:13:36,624 INFO Connection check task end + +2025-09-24 18:13:36,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:39,624 INFO Connection check task start + +2025-09-24 18:13:39,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:39,624 INFO Out dated connection ,size=0 + +2025-09-24 18:13:39,624 INFO Connection check task end + +2025-09-24 18:13:39,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:42,624 INFO Connection check task start + +2025-09-24 18:13:42,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:42,624 INFO Out dated connection ,size=0 + +2025-09-24 18:13:42,624 INFO Connection check task end + +2025-09-24 18:13:42,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:45,625 INFO Connection check task start + +2025-09-24 18:13:45,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:45,625 INFO Out dated connection ,size=0 + +2025-09-24 18:13:45,625 INFO Connection check task end + +2025-09-24 18:13:45,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:48,625 INFO Connection check task start + +2025-09-24 18:13:48,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:48,625 INFO Out dated connection ,size=0 + +2025-09-24 18:13:48,626 INFO Connection check task end + +2025-09-24 18:13:48,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:51,627 INFO Connection check task start + +2025-09-24 18:13:51,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:51,628 INFO Out dated connection ,size=0 + +2025-09-24 18:13:51,628 INFO Connection check task end + +2025-09-24 18:13:51,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:54,628 INFO Connection check task start + +2025-09-24 18:13:54,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:54,628 INFO Out dated connection ,size=0 + +2025-09-24 18:13:54,628 INFO Connection check task end + +2025-09-24 18:13:54,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:13:57,630 INFO Connection check task start + +2025-09-24 18:13:57,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:13:57,630 INFO Out dated connection ,size=0 + +2025-09-24 18:13:57,630 INFO Connection check task end + +2025-09-24 18:13:57,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:00,631 INFO Connection check task start + +2025-09-24 18:14:00,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:00,631 INFO Out dated connection ,size=0 + +2025-09-24 18:14:00,631 INFO Connection check task end + +2025-09-24 18:14:00,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:03,633 INFO Connection check task start + +2025-09-24 18:14:03,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:03,633 INFO Out dated connection ,size=0 + +2025-09-24 18:14:03,633 INFO Connection check task end + +2025-09-24 18:14:03,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:06,633 INFO Connection check task start + +2025-09-24 18:14:06,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:06,633 INFO Out dated connection ,size=0 + +2025-09-24 18:14:06,633 INFO Connection check task end + +2025-09-24 18:14:06,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:09,633 INFO Connection check task start + +2025-09-24 18:14:09,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:09,634 INFO Out dated connection ,size=0 + +2025-09-24 18:14:09,634 INFO Connection check task end + +2025-09-24 18:14:09,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:12,635 INFO Connection check task start + +2025-09-24 18:14:12,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:12,635 INFO Out dated connection ,size=0 + +2025-09-24 18:14:12,635 INFO Connection check task end + +2025-09-24 18:14:12,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:15,636 INFO Connection check task start + +2025-09-24 18:14:15,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:15,637 INFO Out dated connection ,size=0 + +2025-09-24 18:14:15,637 INFO Connection check task end + +2025-09-24 18:14:15,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:18,637 INFO Connection check task start + +2025-09-24 18:14:18,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:18,637 INFO Out dated connection ,size=0 + +2025-09-24 18:14:18,637 INFO Connection check task end + +2025-09-24 18:14:18,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:21,638 INFO Connection check task start + +2025-09-24 18:14:21,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:21,638 INFO Out dated connection ,size=0 + +2025-09-24 18:14:21,638 INFO Connection check task end + +2025-09-24 18:14:21,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:24,638 INFO Connection check task start + +2025-09-24 18:14:24,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:24,638 INFO Out dated connection ,size=0 + +2025-09-24 18:14:24,638 INFO Connection check task end + +2025-09-24 18:14:24,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:27,641 INFO Connection check task start + +2025-09-24 18:14:27,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:27,641 INFO Out dated connection ,size=0 + +2025-09-24 18:14:27,641 INFO Connection check task end + +2025-09-24 18:14:27,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:30,642 INFO Connection check task start + +2025-09-24 18:14:30,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:30,642 INFO Out dated connection ,size=0 + +2025-09-24 18:14:30,642 INFO Connection check task end + +2025-09-24 18:14:30,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:33,644 INFO Connection check task start + +2025-09-24 18:14:33,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:33,644 INFO Out dated connection ,size=0 + +2025-09-24 18:14:33,644 INFO Connection check task end + +2025-09-24 18:14:33,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:36,645 INFO Connection check task start + +2025-09-24 18:14:36,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:36,659 INFO Out dated connection ,size=0 + +2025-09-24 18:14:36,659 INFO Connection check task end + +2025-09-24 18:14:36,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:39,659 INFO Connection check task start + +2025-09-24 18:14:39,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:39,659 INFO Out dated connection ,size=0 + +2025-09-24 18:14:39,659 INFO Connection check task end + +2025-09-24 18:14:39,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:42,660 INFO Connection check task start + +2025-09-24 18:14:42,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:42,660 INFO Out dated connection ,size=0 + +2025-09-24 18:14:42,660 INFO Connection check task end + +2025-09-24 18:14:42,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:45,661 INFO Connection check task start + +2025-09-24 18:14:45,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:45,661 INFO Out dated connection ,size=0 + +2025-09-24 18:14:45,661 INFO Connection check task end + +2025-09-24 18:14:45,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:48,664 INFO Connection check task start + +2025-09-24 18:14:48,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:48,664 INFO Out dated connection ,size=0 + +2025-09-24 18:14:48,664 INFO Connection check task end + +2025-09-24 18:14:48,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:51,666 INFO Connection check task start + +2025-09-24 18:14:51,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:51,666 INFO Out dated connection ,size=0 + +2025-09-24 18:14:51,666 INFO Connection check task end + +2025-09-24 18:14:51,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:54,666 INFO Connection check task start + +2025-09-24 18:14:54,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:54,666 INFO Out dated connection ,size=0 + +2025-09-24 18:14:54,666 INFO Connection check task end + +2025-09-24 18:14:54,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:14:57,667 INFO Connection check task start + +2025-09-24 18:14:57,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:14:57,668 INFO Out dated connection ,size=0 + +2025-09-24 18:14:57,668 INFO Connection check task end + +2025-09-24 18:14:57,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:00,670 INFO Connection check task start + +2025-09-24 18:15:00,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:00,670 INFO Out dated connection ,size=0 + +2025-09-24 18:15:00,670 INFO Connection check task end + +2025-09-24 18:15:00,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:03,672 INFO Connection check task start + +2025-09-24 18:15:03,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:03,672 INFO Out dated connection ,size=0 + +2025-09-24 18:15:03,672 INFO Connection check task end + +2025-09-24 18:15:03,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:06,675 INFO Connection check task start + +2025-09-24 18:15:06,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:06,675 INFO Out dated connection ,size=0 + +2025-09-24 18:15:06,675 INFO Connection check task end + +2025-09-24 18:15:06,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:09,675 INFO Connection check task start + +2025-09-24 18:15:09,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:09,675 INFO Out dated connection ,size=0 + +2025-09-24 18:15:09,675 INFO Connection check task end + +2025-09-24 18:15:09,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:12,677 INFO Connection check task start + +2025-09-24 18:15:12,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:12,677 INFO Out dated connection ,size=0 + +2025-09-24 18:15:12,677 INFO Connection check task end + +2025-09-24 18:15:12,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:15,677 INFO Connection check task start + +2025-09-24 18:15:15,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:15,678 INFO Out dated connection ,size=0 + +2025-09-24 18:15:15,678 INFO Connection check task end + +2025-09-24 18:15:15,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:18,680 INFO Connection check task start + +2025-09-24 18:15:18,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:18,680 INFO Out dated connection ,size=0 + +2025-09-24 18:15:18,680 INFO Connection check task end + +2025-09-24 18:15:18,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:21,682 INFO Connection check task start + +2025-09-24 18:15:21,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:21,682 INFO Out dated connection ,size=0 + +2025-09-24 18:15:21,682 INFO Connection check task end + +2025-09-24 18:15:21,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:24,684 INFO Connection check task start + +2025-09-24 18:15:24,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:24,684 INFO Out dated connection ,size=0 + +2025-09-24 18:15:24,684 INFO Connection check task end + +2025-09-24 18:15:24,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:27,684 INFO Connection check task start + +2025-09-24 18:15:27,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:27,684 INFO Out dated connection ,size=0 + +2025-09-24 18:15:27,684 INFO Connection check task end + +2025-09-24 18:15:27,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:30,685 INFO Connection check task start + +2025-09-24 18:15:30,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:30,685 INFO Out dated connection ,size=0 + +2025-09-24 18:15:30,685 INFO Connection check task end + +2025-09-24 18:15:30,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:33,685 INFO Connection check task start + +2025-09-24 18:15:33,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:33,685 INFO Out dated connection ,size=0 + +2025-09-24 18:15:33,686 INFO Connection check task end + +2025-09-24 18:15:33,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:36,686 INFO Connection check task start + +2025-09-24 18:15:36,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:36,686 INFO Out dated connection ,size=0 + +2025-09-24 18:15:36,686 INFO Connection check task end + +2025-09-24 18:15:36,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:39,688 INFO Connection check task start + +2025-09-24 18:15:39,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:39,688 INFO Out dated connection ,size=0 + +2025-09-24 18:15:39,688 INFO Connection check task end + +2025-09-24 18:15:39,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:42,689 INFO Connection check task start + +2025-09-24 18:15:42,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:42,689 INFO Out dated connection ,size=0 + +2025-09-24 18:15:42,689 INFO Connection check task end + +2025-09-24 18:15:42,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:45,691 INFO Connection check task start + +2025-09-24 18:15:45,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:45,691 INFO Out dated connection ,size=0 + +2025-09-24 18:15:45,691 INFO Connection check task end + +2025-09-24 18:15:45,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:48,692 INFO Connection check task start + +2025-09-24 18:15:48,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:48,692 INFO Out dated connection ,size=0 + +2025-09-24 18:15:48,692 INFO Connection check task end + +2025-09-24 18:15:48,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:51,692 INFO Connection check task start + +2025-09-24 18:15:51,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:51,700 INFO Out dated connection ,size=0 + +2025-09-24 18:15:51,701 INFO Connection check task end + +2025-09-24 18:15:51,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:54,703 INFO Connection check task start + +2025-09-24 18:15:54,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:54,703 INFO Out dated connection ,size=0 + +2025-09-24 18:15:54,703 INFO Connection check task end + +2025-09-24 18:15:54,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:15:57,703 INFO Connection check task start + +2025-09-24 18:15:57,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:15:57,703 INFO Out dated connection ,size=0 + +2025-09-24 18:15:57,703 INFO Connection check task end + +2025-09-24 18:15:57,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:00,704 INFO Connection check task start + +2025-09-24 18:16:00,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:00,705 INFO Out dated connection ,size=0 + +2025-09-24 18:16:00,705 INFO Connection check task end + +2025-09-24 18:16:00,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:03,705 INFO Connection check task start + +2025-09-24 18:16:03,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:03,705 INFO Out dated connection ,size=0 + +2025-09-24 18:16:03,705 INFO Connection check task end + +2025-09-24 18:16:03,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:06,706 INFO Connection check task start + +2025-09-24 18:16:06,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:06,706 INFO Out dated connection ,size=0 + +2025-09-24 18:16:06,706 INFO Connection check task end + +2025-09-24 18:16:06,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:09,707 INFO Connection check task start + +2025-09-24 18:16:09,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:09,707 INFO Out dated connection ,size=0 + +2025-09-24 18:16:09,707 INFO Connection check task end + +2025-09-24 18:16:09,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:12,709 INFO Connection check task start + +2025-09-24 18:16:12,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:12,709 INFO Out dated connection ,size=0 + +2025-09-24 18:16:12,709 INFO Connection check task end + +2025-09-24 18:16:12,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:15,711 INFO Connection check task start + +2025-09-24 18:16:15,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:15,711 INFO Out dated connection ,size=0 + +2025-09-24 18:16:15,711 INFO Connection check task end + +2025-09-24 18:16:15,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:18,712 INFO Connection check task start + +2025-09-24 18:16:18,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:18,712 INFO Out dated connection ,size=0 + +2025-09-24 18:16:18,712 INFO Connection check task end + +2025-09-24 18:16:18,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:21,713 INFO Connection check task start + +2025-09-24 18:16:21,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:21,713 INFO Out dated connection ,size=0 + +2025-09-24 18:16:21,713 INFO Connection check task end + +2025-09-24 18:16:21,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:24,715 INFO Connection check task start + +2025-09-24 18:16:24,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:24,716 INFO Out dated connection ,size=0 + +2025-09-24 18:16:24,716 INFO Connection check task end + +2025-09-24 18:16:24,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:27,716 INFO Connection check task start + +2025-09-24 18:16:27,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:27,716 INFO Out dated connection ,size=0 + +2025-09-24 18:16:27,716 INFO Connection check task end + +2025-09-24 18:16:27,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:30,717 INFO Connection check task start + +2025-09-24 18:16:30,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:30,717 INFO Out dated connection ,size=0 + +2025-09-24 18:16:30,717 INFO Connection check task end + +2025-09-24 18:16:30,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:33,718 INFO Connection check task start + +2025-09-24 18:16:33,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:33,718 INFO Out dated connection ,size=0 + +2025-09-24 18:16:33,718 INFO Connection check task end + +2025-09-24 18:16:33,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:36,718 INFO Connection check task start + +2025-09-24 18:16:36,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:36,718 INFO Out dated connection ,size=0 + +2025-09-24 18:16:36,718 INFO Connection check task end + +2025-09-24 18:16:36,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:39,720 INFO Connection check task start + +2025-09-24 18:16:39,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:39,721 INFO Out dated connection ,size=0 + +2025-09-24 18:16:39,721 INFO Connection check task end + +2025-09-24 18:16:39,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:42,723 INFO Connection check task start + +2025-09-24 18:16:42,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:42,723 INFO Out dated connection ,size=0 + +2025-09-24 18:16:42,723 INFO Connection check task end + +2025-09-24 18:16:42,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:45,725 INFO Connection check task start + +2025-09-24 18:16:45,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:45,725 INFO Out dated connection ,size=0 + +2025-09-24 18:16:45,725 INFO Connection check task end + +2025-09-24 18:16:45,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:48,726 INFO Connection check task start + +2025-09-24 18:16:48,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:48,726 INFO Out dated connection ,size=0 + +2025-09-24 18:16:48,726 INFO Connection check task end + +2025-09-24 18:16:48,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:51,727 INFO Connection check task start + +2025-09-24 18:16:51,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:51,727 INFO Out dated connection ,size=0 + +2025-09-24 18:16:51,727 INFO Connection check task end + +2025-09-24 18:16:51,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:54,729 INFO Connection check task start + +2025-09-24 18:16:54,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:54,729 INFO Out dated connection ,size=0 + +2025-09-24 18:16:54,729 INFO Connection check task end + +2025-09-24 18:16:54,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:16:57,730 INFO Connection check task start + +2025-09-24 18:16:57,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:16:57,730 INFO Out dated connection ,size=0 + +2025-09-24 18:16:57,730 INFO Connection check task end + +2025-09-24 18:16:57,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:00,730 INFO Connection check task start + +2025-09-24 18:17:00,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:00,730 INFO Out dated connection ,size=0 + +2025-09-24 18:17:00,731 INFO Connection check task end + +2025-09-24 18:17:00,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:03,733 INFO Connection check task start + +2025-09-24 18:17:03,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:03,733 INFO Out dated connection ,size=0 + +2025-09-24 18:17:03,733 INFO Connection check task end + +2025-09-24 18:17:03,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:06,733 INFO Connection check task start + +2025-09-24 18:17:06,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:06,733 INFO Out dated connection ,size=0 + +2025-09-24 18:17:06,733 INFO Connection check task end + +2025-09-24 18:17:06,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:09,735 INFO Connection check task start + +2025-09-24 18:17:09,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:09,735 INFO Out dated connection ,size=0 + +2025-09-24 18:17:09,735 INFO Connection check task end + +2025-09-24 18:17:09,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:12,737 INFO Connection check task start + +2025-09-24 18:17:12,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:12,737 INFO Out dated connection ,size=0 + +2025-09-24 18:17:12,737 INFO Connection check task end + +2025-09-24 18:17:12,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:15,739 INFO Connection check task start + +2025-09-24 18:17:15,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:15,740 INFO Out dated connection ,size=0 + +2025-09-24 18:17:15,740 INFO Connection check task end + +2025-09-24 18:17:15,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:18,740 INFO Connection check task start + +2025-09-24 18:17:18,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:18,740 INFO Out dated connection ,size=0 + +2025-09-24 18:17:18,740 INFO Connection check task end + +2025-09-24 18:17:18,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:21,742 INFO Connection check task start + +2025-09-24 18:17:21,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:21,742 INFO Out dated connection ,size=0 + +2025-09-24 18:17:21,742 INFO Connection check task end + +2025-09-24 18:17:21,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:24,745 INFO Connection check task start + +2025-09-24 18:17:24,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:24,745 INFO Out dated connection ,size=0 + +2025-09-24 18:17:24,746 INFO Connection check task end + +2025-09-24 18:17:24,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:27,748 INFO Connection check task start + +2025-09-24 18:17:27,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:27,748 INFO Out dated connection ,size=0 + +2025-09-24 18:17:27,748 INFO Connection check task end + +2025-09-24 18:17:27,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:30,749 INFO Connection check task start + +2025-09-24 18:17:30,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:30,749 INFO Out dated connection ,size=0 + +2025-09-24 18:17:30,749 INFO Connection check task end + +2025-09-24 18:17:30,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:33,749 INFO Connection check task start + +2025-09-24 18:17:33,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:33,750 INFO Out dated connection ,size=0 + +2025-09-24 18:17:33,750 INFO Connection check task end + +2025-09-24 18:17:33,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:36,751 INFO Connection check task start + +2025-09-24 18:17:36,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:36,752 INFO Out dated connection ,size=0 + +2025-09-24 18:17:36,752 INFO Connection check task end + +2025-09-24 18:17:36,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:39,753 INFO Connection check task start + +2025-09-24 18:17:39,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:39,753 INFO Out dated connection ,size=0 + +2025-09-24 18:17:39,753 INFO Connection check task end + +2025-09-24 18:17:39,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:42,755 INFO Connection check task start + +2025-09-24 18:17:42,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:42,755 INFO Out dated connection ,size=0 + +2025-09-24 18:17:42,755 INFO Connection check task end + +2025-09-24 18:17:42,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:45,757 INFO Connection check task start + +2025-09-24 18:17:45,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:45,757 INFO Out dated connection ,size=0 + +2025-09-24 18:17:45,757 INFO Connection check task end + +2025-09-24 18:17:45,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:48,757 INFO Connection check task start + +2025-09-24 18:17:48,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:48,758 INFO Out dated connection ,size=0 + +2025-09-24 18:17:48,758 INFO Connection check task end + +2025-09-24 18:17:48,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:51,758 INFO Connection check task start + +2025-09-24 18:17:51,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:51,758 INFO Out dated connection ,size=0 + +2025-09-24 18:17:51,758 INFO Connection check task end + +2025-09-24 18:17:51,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:54,759 INFO Connection check task start + +2025-09-24 18:17:54,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:54,759 INFO Out dated connection ,size=0 + +2025-09-24 18:17:54,759 INFO Connection check task end + +2025-09-24 18:17:54,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:17:57,761 INFO Connection check task start + +2025-09-24 18:17:57,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:17:57,761 INFO Out dated connection ,size=0 + +2025-09-24 18:17:57,761 INFO Connection check task end + +2025-09-24 18:17:57,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:00,763 INFO Connection check task start + +2025-09-24 18:18:00,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:00,763 INFO Out dated connection ,size=0 + +2025-09-24 18:18:00,763 INFO Connection check task end + +2025-09-24 18:18:00,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:03,764 INFO Connection check task start + +2025-09-24 18:18:03,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:03,764 INFO Out dated connection ,size=0 + +2025-09-24 18:18:03,764 INFO Connection check task end + +2025-09-24 18:18:03,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:06,764 INFO Connection check task start + +2025-09-24 18:18:06,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:06,764 INFO Out dated connection ,size=0 + +2025-09-24 18:18:06,764 INFO Connection check task end + +2025-09-24 18:18:06,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:09,766 INFO Connection check task start + +2025-09-24 18:18:09,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:09,766 INFO Out dated connection ,size=0 + +2025-09-24 18:18:09,766 INFO Connection check task end + +2025-09-24 18:18:09,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:12,766 INFO Connection check task start + +2025-09-24 18:18:12,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:12,767 INFO Out dated connection ,size=0 + +2025-09-24 18:18:12,767 INFO Connection check task end + +2025-09-24 18:18:12,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:15,769 INFO Connection check task start + +2025-09-24 18:18:15,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:15,769 INFO Out dated connection ,size=0 + +2025-09-24 18:18:15,769 INFO Connection check task end + +2025-09-24 18:18:15,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:18,771 INFO Connection check task start + +2025-09-24 18:18:18,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:18,771 INFO Out dated connection ,size=0 + +2025-09-24 18:18:18,771 INFO Connection check task end + +2025-09-24 18:18:18,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:21,772 INFO Connection check task start + +2025-09-24 18:18:21,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:21,772 INFO Out dated connection ,size=0 + +2025-09-24 18:18:21,772 INFO Connection check task end + +2025-09-24 18:18:21,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:24,773 INFO Connection check task start + +2025-09-24 18:18:24,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:24,774 INFO Out dated connection ,size=0 + +2025-09-24 18:18:24,774 INFO Connection check task end + +2025-09-24 18:18:24,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:27,776 INFO Connection check task start + +2025-09-24 18:18:27,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:27,776 INFO Out dated connection ,size=0 + +2025-09-24 18:18:27,776 INFO Connection check task end + +2025-09-24 18:18:27,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:30,777 INFO Connection check task start + +2025-09-24 18:18:30,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:30,777 INFO Out dated connection ,size=0 + +2025-09-24 18:18:30,777 INFO Connection check task end + +2025-09-24 18:18:30,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:33,777 INFO Connection check task start + +2025-09-24 18:18:33,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:33,777 INFO Out dated connection ,size=0 + +2025-09-24 18:18:33,777 INFO Connection check task end + +2025-09-24 18:18:33,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:36,778 INFO Connection check task start + +2025-09-24 18:18:36,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:36,778 INFO Out dated connection ,size=0 + +2025-09-24 18:18:36,779 INFO Connection check task end + +2025-09-24 18:18:36,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:39,779 INFO Connection check task start + +2025-09-24 18:18:39,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:39,779 INFO Out dated connection ,size=0 + +2025-09-24 18:18:39,779 INFO Connection check task end + +2025-09-24 18:18:39,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:42,779 INFO Connection check task start + +2025-09-24 18:18:42,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:42,780 INFO Out dated connection ,size=0 + +2025-09-24 18:18:42,780 INFO Connection check task end + +2025-09-24 18:18:42,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:45,780 INFO Connection check task start + +2025-09-24 18:18:45,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:45,780 INFO Out dated connection ,size=0 + +2025-09-24 18:18:45,780 INFO Connection check task end + +2025-09-24 18:18:45,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:48,781 INFO Connection check task start + +2025-09-24 18:18:48,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:48,781 INFO Out dated connection ,size=0 + +2025-09-24 18:18:48,781 INFO Connection check task end + +2025-09-24 18:18:48,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:51,782 INFO Connection check task start + +2025-09-24 18:18:51,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:51,782 INFO Out dated connection ,size=0 + +2025-09-24 18:18:51,782 INFO Connection check task end + +2025-09-24 18:18:51,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:54,783 INFO Connection check task start + +2025-09-24 18:18:54,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:54,783 INFO Out dated connection ,size=0 + +2025-09-24 18:18:54,783 INFO Connection check task end + +2025-09-24 18:18:54,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:18:57,784 INFO Connection check task start + +2025-09-24 18:18:57,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:18:57,785 INFO Out dated connection ,size=0 + +2025-09-24 18:18:57,785 INFO Connection check task end + +2025-09-24 18:18:57,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:00,785 INFO Connection check task start + +2025-09-24 18:19:00,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:00,786 INFO Out dated connection ,size=0 + +2025-09-24 18:19:00,786 INFO Connection check task end + +2025-09-24 18:19:00,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:03,788 INFO Connection check task start + +2025-09-24 18:19:03,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:03,788 INFO Out dated connection ,size=0 + +2025-09-24 18:19:03,788 INFO Connection check task end + +2025-09-24 18:19:03,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:06,788 INFO Connection check task start + +2025-09-24 18:19:06,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:06,789 INFO Out dated connection ,size=0 + +2025-09-24 18:19:06,789 INFO Connection check task end + +2025-09-24 18:19:06,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:09,789 INFO Connection check task start + +2025-09-24 18:19:09,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:09,789 INFO Out dated connection ,size=0 + +2025-09-24 18:19:09,789 INFO Connection check task end + +2025-09-24 18:19:09,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:12,791 INFO Connection check task start + +2025-09-24 18:19:12,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:12,791 INFO Out dated connection ,size=0 + +2025-09-24 18:19:12,791 INFO Connection check task end + +2025-09-24 18:19:12,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:15,793 INFO Connection check task start + +2025-09-24 18:19:15,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:15,793 INFO Out dated connection ,size=0 + +2025-09-24 18:19:15,793 INFO Connection check task end + +2025-09-24 18:19:15,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:18,793 INFO Connection check task start + +2025-09-24 18:19:18,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:18,793 INFO Out dated connection ,size=0 + +2025-09-24 18:19:18,793 INFO Connection check task end + +2025-09-24 18:19:18,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:21,794 INFO Connection check task start + +2025-09-24 18:19:21,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:21,794 INFO Out dated connection ,size=0 + +2025-09-24 18:19:21,794 INFO Connection check task end + +2025-09-24 18:19:21,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:24,794 INFO Connection check task start + +2025-09-24 18:19:24,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:24,794 INFO Out dated connection ,size=0 + +2025-09-24 18:19:24,794 INFO Connection check task end + +2025-09-24 18:19:24,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:27,795 INFO Connection check task start + +2025-09-24 18:19:27,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:27,795 INFO Out dated connection ,size=0 + +2025-09-24 18:19:27,795 INFO Connection check task end + +2025-09-24 18:19:27,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:30,795 INFO Connection check task start + +2025-09-24 18:19:30,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:30,795 INFO Out dated connection ,size=0 + +2025-09-24 18:19:30,796 INFO Connection check task end + +2025-09-24 18:19:30,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:33,796 INFO Connection check task start + +2025-09-24 18:19:33,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:33,796 INFO Out dated connection ,size=0 + +2025-09-24 18:19:33,796 INFO Connection check task end + +2025-09-24 18:19:33,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:36,798 INFO Connection check task start + +2025-09-24 18:19:36,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:36,798 INFO Out dated connection ,size=0 + +2025-09-24 18:19:36,798 INFO Connection check task end + +2025-09-24 18:19:36,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:39,798 INFO Connection check task start + +2025-09-24 18:19:39,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:39,799 INFO Out dated connection ,size=0 + +2025-09-24 18:19:39,799 INFO Connection check task end + +2025-09-24 18:19:39,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:42,799 INFO Connection check task start + +2025-09-24 18:19:42,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:42,799 INFO Out dated connection ,size=0 + +2025-09-24 18:19:42,799 INFO Connection check task end + +2025-09-24 18:19:42,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:45,801 INFO Connection check task start + +2025-09-24 18:19:45,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:45,801 INFO Out dated connection ,size=0 + +2025-09-24 18:19:45,801 INFO Connection check task end + +2025-09-24 18:19:45,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:48,801 INFO Connection check task start + +2025-09-24 18:19:48,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:48,802 INFO Out dated connection ,size=0 + +2025-09-24 18:19:48,802 INFO Connection check task end + +2025-09-24 18:19:48,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:51,802 INFO Connection check task start + +2025-09-24 18:19:51,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:51,807 INFO Out dated connection ,size=0 + +2025-09-24 18:19:51,807 INFO Connection check task end + +2025-09-24 18:19:51,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:54,807 INFO Connection check task start + +2025-09-24 18:19:54,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:54,807 INFO Out dated connection ,size=0 + +2025-09-24 18:19:54,807 INFO Connection check task end + +2025-09-24 18:19:54,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:19:57,808 INFO Connection check task start + +2025-09-24 18:19:57,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:19:57,808 INFO Out dated connection ,size=0 + +2025-09-24 18:19:57,808 INFO Connection check task end + +2025-09-24 18:19:57,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:00,809 INFO Connection check task start + +2025-09-24 18:20:00,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:00,809 INFO Out dated connection ,size=0 + +2025-09-24 18:20:00,809 INFO Connection check task end + +2025-09-24 18:20:00,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:03,809 INFO Connection check task start + +2025-09-24 18:20:03,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:03,809 INFO Out dated connection ,size=0 + +2025-09-24 18:20:03,810 INFO Connection check task end + +2025-09-24 18:20:03,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:06,812 INFO Connection check task start + +2025-09-24 18:20:06,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:06,812 INFO Out dated connection ,size=0 + +2025-09-24 18:20:06,812 INFO Connection check task end + +2025-09-24 18:20:06,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:09,813 INFO Connection check task start + +2025-09-24 18:20:09,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:09,813 INFO Out dated connection ,size=0 + +2025-09-24 18:20:09,813 INFO Connection check task end + +2025-09-24 18:20:09,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:12,813 INFO Connection check task start + +2025-09-24 18:20:12,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:12,813 INFO Out dated connection ,size=0 + +2025-09-24 18:20:12,813 INFO Connection check task end + +2025-09-24 18:20:12,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:15,814 INFO Connection check task start + +2025-09-24 18:20:15,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:15,814 INFO Out dated connection ,size=0 + +2025-09-24 18:20:15,814 INFO Connection check task end + +2025-09-24 18:20:15,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:18,816 INFO Connection check task start + +2025-09-24 18:20:18,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:18,816 INFO Out dated connection ,size=0 + +2025-09-24 18:20:18,816 INFO Connection check task end + +2025-09-24 18:20:18,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:21,819 INFO Connection check task start + +2025-09-24 18:20:21,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:21,819 INFO Out dated connection ,size=0 + +2025-09-24 18:20:21,819 INFO Connection check task end + +2025-09-24 18:20:21,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:24,820 INFO Connection check task start + +2025-09-24 18:20:24,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:24,820 INFO Out dated connection ,size=0 + +2025-09-24 18:20:24,820 INFO Connection check task end + +2025-09-24 18:20:24,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:27,820 INFO Connection check task start + +2025-09-24 18:20:27,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:27,821 INFO Out dated connection ,size=0 + +2025-09-24 18:20:27,821 INFO Connection check task end + +2025-09-24 18:20:27,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:30,821 INFO Connection check task start + +2025-09-24 18:20:30,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:30,821 INFO Out dated connection ,size=0 + +2025-09-24 18:20:30,821 INFO Connection check task end + +2025-09-24 18:20:30,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:33,822 INFO Connection check task start + +2025-09-24 18:20:33,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:33,822 INFO Out dated connection ,size=0 + +2025-09-24 18:20:33,822 INFO Connection check task end + +2025-09-24 18:20:33,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:36,823 INFO Connection check task start + +2025-09-24 18:20:36,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:36,823 INFO Out dated connection ,size=0 + +2025-09-24 18:20:36,823 INFO Connection check task end + +2025-09-24 18:20:36,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:39,824 INFO Connection check task start + +2025-09-24 18:20:39,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:39,824 INFO Out dated connection ,size=0 + +2025-09-24 18:20:39,824 INFO Connection check task end + +2025-09-24 18:20:39,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:42,826 INFO Connection check task start + +2025-09-24 18:20:42,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:42,827 INFO Out dated connection ,size=0 + +2025-09-24 18:20:42,827 INFO Connection check task end + +2025-09-24 18:20:42,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:45,829 INFO Connection check task start + +2025-09-24 18:20:45,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:45,829 INFO Out dated connection ,size=0 + +2025-09-24 18:20:45,829 INFO Connection check task end + +2025-09-24 18:20:45,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:48,831 INFO Connection check task start + +2025-09-24 18:20:48,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:48,831 INFO Out dated connection ,size=0 + +2025-09-24 18:20:48,831 INFO Connection check task end + +2025-09-24 18:20:48,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:51,832 INFO Connection check task start + +2025-09-24 18:20:51,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:51,832 INFO Out dated connection ,size=0 + +2025-09-24 18:20:51,832 INFO Connection check task end + +2025-09-24 18:20:51,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:54,833 INFO Connection check task start + +2025-09-24 18:20:54,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:54,833 INFO Out dated connection ,size=0 + +2025-09-24 18:20:54,833 INFO Connection check task end + +2025-09-24 18:20:54,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:20:57,834 INFO Connection check task start + +2025-09-24 18:20:57,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:20:57,834 INFO Out dated connection ,size=0 + +2025-09-24 18:20:57,834 INFO Connection check task end + +2025-09-24 18:20:57,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:00,834 INFO Connection check task start + +2025-09-24 18:21:00,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:00,835 INFO Out dated connection ,size=0 + +2025-09-24 18:21:00,835 INFO Connection check task end + +2025-09-24 18:21:00,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:03,836 INFO Connection check task start + +2025-09-24 18:21:03,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:03,837 INFO Out dated connection ,size=0 + +2025-09-24 18:21:03,837 INFO Connection check task end + +2025-09-24 18:21:03,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:06,837 INFO Connection check task start + +2025-09-24 18:21:06,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:06,837 INFO Out dated connection ,size=0 + +2025-09-24 18:21:06,837 INFO Connection check task end + +2025-09-24 18:21:06,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:09,838 INFO Connection check task start + +2025-09-24 18:21:09,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:09,838 INFO Out dated connection ,size=0 + +2025-09-24 18:21:09,838 INFO Connection check task end + +2025-09-24 18:21:09,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:12,838 INFO Connection check task start + +2025-09-24 18:21:12,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:12,838 INFO Out dated connection ,size=0 + +2025-09-24 18:21:12,838 INFO Connection check task end + +2025-09-24 18:21:12,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:15,839 INFO Connection check task start + +2025-09-24 18:21:15,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:15,839 INFO Out dated connection ,size=0 + +2025-09-24 18:21:15,839 INFO Connection check task end + +2025-09-24 18:21:15,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:18,839 INFO Connection check task start + +2025-09-24 18:21:18,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:18,840 INFO Out dated connection ,size=0 + +2025-09-24 18:21:18,840 INFO Connection check task end + +2025-09-24 18:21:18,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:21,841 INFO Connection check task start + +2025-09-24 18:21:21,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:21,841 INFO Out dated connection ,size=0 + +2025-09-24 18:21:21,841 INFO Connection check task end + +2025-09-24 18:21:21,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:24,842 INFO Connection check task start + +2025-09-24 18:21:24,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:24,842 INFO Out dated connection ,size=0 + +2025-09-24 18:21:24,842 INFO Connection check task end + +2025-09-24 18:21:24,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:27,844 INFO Connection check task start + +2025-09-24 18:21:27,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:27,844 INFO Out dated connection ,size=0 + +2025-09-24 18:21:27,844 INFO Connection check task end + +2025-09-24 18:21:27,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:30,844 INFO Connection check task start + +2025-09-24 18:21:30,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:30,845 INFO Out dated connection ,size=0 + +2025-09-24 18:21:30,845 INFO Connection check task end + +2025-09-24 18:21:30,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:33,845 INFO Connection check task start + +2025-09-24 18:21:33,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:33,845 INFO Out dated connection ,size=0 + +2025-09-24 18:21:33,845 INFO Connection check task end + +2025-09-24 18:21:33,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:36,848 INFO Connection check task start + +2025-09-24 18:21:36,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:36,848 INFO Out dated connection ,size=0 + +2025-09-24 18:21:36,848 INFO Connection check task end + +2025-09-24 18:21:36,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:39,848 INFO Connection check task start + +2025-09-24 18:21:39,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:39,848 INFO Out dated connection ,size=0 + +2025-09-24 18:21:39,848 INFO Connection check task end + +2025-09-24 18:21:39,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:42,848 INFO Connection check task start + +2025-09-24 18:21:42,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:42,849 INFO Out dated connection ,size=0 + +2025-09-24 18:21:42,849 INFO Connection check task end + +2025-09-24 18:21:42,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:45,849 INFO Connection check task start + +2025-09-24 18:21:45,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:45,850 INFO Out dated connection ,size=0 + +2025-09-24 18:21:45,850 INFO Connection check task end + +2025-09-24 18:21:45,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:48,852 INFO Connection check task start + +2025-09-24 18:21:48,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:48,852 INFO Out dated connection ,size=0 + +2025-09-24 18:21:48,852 INFO Connection check task end + +2025-09-24 18:21:48,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:51,854 INFO Connection check task start + +2025-09-24 18:21:51,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:51,855 INFO Out dated connection ,size=0 + +2025-09-24 18:21:51,855 INFO Connection check task end + +2025-09-24 18:21:51,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:54,855 INFO Connection check task start + +2025-09-24 18:21:54,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:54,855 INFO Out dated connection ,size=0 + +2025-09-24 18:21:54,855 INFO Connection check task end + +2025-09-24 18:21:54,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:21:57,857 INFO Connection check task start + +2025-09-24 18:21:57,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:21:57,857 INFO Out dated connection ,size=0 + +2025-09-24 18:21:57,857 INFO Connection check task end + +2025-09-24 18:21:57,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:00,857 INFO Connection check task start + +2025-09-24 18:22:00,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:00,857 INFO Out dated connection ,size=0 + +2025-09-24 18:22:00,857 INFO Connection check task end + +2025-09-24 18:22:00,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:03,858 INFO Connection check task start + +2025-09-24 18:22:03,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:03,858 INFO Out dated connection ,size=0 + +2025-09-24 18:22:03,858 INFO Connection check task end + +2025-09-24 18:22:03,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:06,859 INFO Connection check task start + +2025-09-24 18:22:06,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:06,859 INFO Out dated connection ,size=0 + +2025-09-24 18:22:06,859 INFO Connection check task end + +2025-09-24 18:22:06,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:09,860 INFO Connection check task start + +2025-09-24 18:22:09,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:09,860 INFO Out dated connection ,size=0 + +2025-09-24 18:22:09,860 INFO Connection check task end + +2025-09-24 18:22:09,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:12,861 INFO Connection check task start + +2025-09-24 18:22:12,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:12,862 INFO Out dated connection ,size=0 + +2025-09-24 18:22:12,862 INFO Connection check task end + +2025-09-24 18:22:12,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:15,862 INFO Connection check task start + +2025-09-24 18:22:15,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:15,862 INFO Out dated connection ,size=0 + +2025-09-24 18:22:15,862 INFO Connection check task end + +2025-09-24 18:22:15,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:18,864 INFO Connection check task start + +2025-09-24 18:22:18,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:18,865 INFO Out dated connection ,size=0 + +2025-09-24 18:22:18,865 INFO Connection check task end + +2025-09-24 18:22:18,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:21,866 INFO Connection check task start + +2025-09-24 18:22:21,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:21,866 INFO Out dated connection ,size=0 + +2025-09-24 18:22:21,866 INFO Connection check task end + +2025-09-24 18:22:21,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:24,868 INFO Connection check task start + +2025-09-24 18:22:24,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:24,868 INFO Out dated connection ,size=0 + +2025-09-24 18:22:24,868 INFO Connection check task end + +2025-09-24 18:22:24,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:27,870 INFO Connection check task start + +2025-09-24 18:22:27,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:27,871 INFO Out dated connection ,size=0 + +2025-09-24 18:22:27,871 INFO Connection check task end + +2025-09-24 18:22:27,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:30,871 INFO Connection check task start + +2025-09-24 18:22:30,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:30,871 INFO Out dated connection ,size=0 + +2025-09-24 18:22:30,871 INFO Connection check task end + +2025-09-24 18:22:30,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:33,873 INFO Connection check task start + +2025-09-24 18:22:33,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:33,873 INFO Out dated connection ,size=0 + +2025-09-24 18:22:33,873 INFO Connection check task end + +2025-09-24 18:22:33,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:36,876 INFO Connection check task start + +2025-09-24 18:22:36,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:36,876 INFO Out dated connection ,size=0 + +2025-09-24 18:22:36,876 INFO Connection check task end + +2025-09-24 18:22:36,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:39,878 INFO Connection check task start + +2025-09-24 18:22:39,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:39,878 INFO Out dated connection ,size=0 + +2025-09-24 18:22:39,878 INFO Connection check task end + +2025-09-24 18:22:39,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:42,879 INFO Connection check task start + +2025-09-24 18:22:42,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:42,879 INFO Out dated connection ,size=0 + +2025-09-24 18:22:42,879 INFO Connection check task end + +2025-09-24 18:22:42,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:45,881 INFO Connection check task start + +2025-09-24 18:22:45,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:45,882 INFO Out dated connection ,size=0 + +2025-09-24 18:22:45,882 INFO Connection check task end + +2025-09-24 18:22:45,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:48,883 INFO Connection check task start + +2025-09-24 18:22:48,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:48,883 INFO Out dated connection ,size=0 + +2025-09-24 18:22:48,883 INFO Connection check task end + +2025-09-24 18:22:48,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:51,883 INFO Connection check task start + +2025-09-24 18:22:51,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:51,884 INFO Out dated connection ,size=0 + +2025-09-24 18:22:51,884 INFO Connection check task end + +2025-09-24 18:22:51,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:54,884 INFO Connection check task start + +2025-09-24 18:22:54,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:54,884 INFO Out dated connection ,size=0 + +2025-09-24 18:22:54,884 INFO Connection check task end + +2025-09-24 18:22:54,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:22:57,884 INFO Connection check task start + +2025-09-24 18:22:57,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:22:57,885 INFO Out dated connection ,size=0 + +2025-09-24 18:22:57,885 INFO Connection check task end + +2025-09-24 18:22:57,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:00,887 INFO Connection check task start + +2025-09-24 18:23:00,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:00,887 INFO Out dated connection ,size=0 + +2025-09-24 18:23:00,887 INFO Connection check task end + +2025-09-24 18:23:00,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:03,888 INFO Connection check task start + +2025-09-24 18:23:03,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:03,888 INFO Out dated connection ,size=0 + +2025-09-24 18:23:03,888 INFO Connection check task end + +2025-09-24 18:23:03,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:06,888 INFO Connection check task start + +2025-09-24 18:23:06,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:06,888 INFO Out dated connection ,size=0 + +2025-09-24 18:23:06,888 INFO Connection check task end + +2025-09-24 18:23:06,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:09,890 INFO Connection check task start + +2025-09-24 18:23:09,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:09,891 INFO Out dated connection ,size=0 + +2025-09-24 18:23:09,891 INFO Connection check task end + +2025-09-24 18:23:09,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:12,891 INFO Connection check task start + +2025-09-24 18:23:12,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:12,892 INFO Out dated connection ,size=0 + +2025-09-24 18:23:12,892 INFO Connection check task end + +2025-09-24 18:23:12,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:15,892 INFO Connection check task start + +2025-09-24 18:23:15,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:15,892 INFO Out dated connection ,size=0 + +2025-09-24 18:23:15,892 INFO Connection check task end + +2025-09-24 18:23:15,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:18,894 INFO Connection check task start + +2025-09-24 18:23:18,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:18,894 INFO Out dated connection ,size=0 + +2025-09-24 18:23:18,894 INFO Connection check task end + +2025-09-24 18:23:18,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:21,895 INFO Connection check task start + +2025-09-24 18:23:21,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:21,895 INFO Out dated connection ,size=0 + +2025-09-24 18:23:21,895 INFO Connection check task end + +2025-09-24 18:23:21,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:24,896 INFO Connection check task start + +2025-09-24 18:23:24,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:24,896 INFO Out dated connection ,size=0 + +2025-09-24 18:23:24,896 INFO Connection check task end + +2025-09-24 18:23:24,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:27,898 INFO Connection check task start + +2025-09-24 18:23:27,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:27,898 INFO Out dated connection ,size=0 + +2025-09-24 18:23:27,898 INFO Connection check task end + +2025-09-24 18:23:27,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:30,899 INFO Connection check task start + +2025-09-24 18:23:30,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:30,899 INFO Out dated connection ,size=0 + +2025-09-24 18:23:30,899 INFO Connection check task end + +2025-09-24 18:23:30,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:33,899 INFO Connection check task start + +2025-09-24 18:23:33,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:33,899 INFO Out dated connection ,size=0 + +2025-09-24 18:23:33,899 INFO Connection check task end + +2025-09-24 18:23:33,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:36,901 INFO Connection check task start + +2025-09-24 18:23:36,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:36,901 INFO Out dated connection ,size=0 + +2025-09-24 18:23:36,901 INFO Connection check task end + +2025-09-24 18:23:36,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:39,901 INFO Connection check task start + +2025-09-24 18:23:39,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:39,901 INFO Out dated connection ,size=0 + +2025-09-24 18:23:39,901 INFO Connection check task end + +2025-09-24 18:23:39,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:42,901 INFO Connection check task start + +2025-09-24 18:23:42,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:42,902 INFO Out dated connection ,size=0 + +2025-09-24 18:23:42,902 INFO Connection check task end + +2025-09-24 18:23:42,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:45,902 INFO Connection check task start + +2025-09-24 18:23:45,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:45,902 INFO Out dated connection ,size=0 + +2025-09-24 18:23:45,902 INFO Connection check task end + +2025-09-24 18:23:45,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:48,903 INFO Connection check task start + +2025-09-24 18:23:48,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:48,903 INFO Out dated connection ,size=0 + +2025-09-24 18:23:48,903 INFO Connection check task end + +2025-09-24 18:23:48,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:51,904 INFO Connection check task start + +2025-09-24 18:23:51,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:51,904 INFO Out dated connection ,size=0 + +2025-09-24 18:23:51,904 INFO Connection check task end + +2025-09-24 18:23:51,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:54,907 INFO Connection check task start + +2025-09-24 18:23:54,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:54,907 INFO Out dated connection ,size=0 + +2025-09-24 18:23:54,907 INFO Connection check task end + +2025-09-24 18:23:54,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:23:57,907 INFO Connection check task start + +2025-09-24 18:23:57,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:23:57,907 INFO Out dated connection ,size=0 + +2025-09-24 18:23:57,907 INFO Connection check task end + +2025-09-24 18:23:57,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:00,908 INFO Connection check task start + +2025-09-24 18:24:00,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:00,908 INFO Out dated connection ,size=0 + +2025-09-24 18:24:00,908 INFO Connection check task end + +2025-09-24 18:24:00,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:03,908 INFO Connection check task start + +2025-09-24 18:24:03,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:03,909 INFO Out dated connection ,size=0 + +2025-09-24 18:24:03,909 INFO Connection check task end + +2025-09-24 18:24:03,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:06,909 INFO Connection check task start + +2025-09-24 18:24:06,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:06,909 INFO Out dated connection ,size=0 + +2025-09-24 18:24:06,909 INFO Connection check task end + +2025-09-24 18:24:06,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:09,910 INFO Connection check task start + +2025-09-24 18:24:09,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:09,910 INFO Out dated connection ,size=0 + +2025-09-24 18:24:09,910 INFO Connection check task end + +2025-09-24 18:24:09,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:12,912 INFO Connection check task start + +2025-09-24 18:24:12,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:12,912 INFO Out dated connection ,size=0 + +2025-09-24 18:24:12,912 INFO Connection check task end + +2025-09-24 18:24:12,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:15,914 INFO Connection check task start + +2025-09-24 18:24:15,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:15,914 INFO Out dated connection ,size=0 + +2025-09-24 18:24:15,914 INFO Connection check task end + +2025-09-24 18:24:15,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:18,914 INFO Connection check task start + +2025-09-24 18:24:18,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:18,915 INFO Out dated connection ,size=0 + +2025-09-24 18:24:18,915 INFO Connection check task end + +2025-09-24 18:24:18,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:21,916 INFO Connection check task start + +2025-09-24 18:24:21,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:21,916 INFO Out dated connection ,size=0 + +2025-09-24 18:24:21,916 INFO Connection check task end + +2025-09-24 18:24:21,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:24,916 INFO Connection check task start + +2025-09-24 18:24:24,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:24,916 INFO Out dated connection ,size=0 + +2025-09-24 18:24:24,916 INFO Connection check task end + +2025-09-24 18:24:24,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:27,917 INFO Connection check task start + +2025-09-24 18:24:27,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:27,917 INFO Out dated connection ,size=0 + +2025-09-24 18:24:27,917 INFO Connection check task end + +2025-09-24 18:24:27,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:30,918 INFO Connection check task start + +2025-09-24 18:24:30,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:30,918 INFO Out dated connection ,size=0 + +2025-09-24 18:24:30,918 INFO Connection check task end + +2025-09-24 18:24:30,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:33,919 INFO Connection check task start + +2025-09-24 18:24:33,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:33,919 INFO Out dated connection ,size=0 + +2025-09-24 18:24:33,919 INFO Connection check task end + +2025-09-24 18:24:33,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:36,920 INFO Connection check task start + +2025-09-24 18:24:36,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:36,920 INFO Out dated connection ,size=0 + +2025-09-24 18:24:36,920 INFO Connection check task end + +2025-09-24 18:24:36,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:39,920 INFO Connection check task start + +2025-09-24 18:24:39,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:39,920 INFO Out dated connection ,size=0 + +2025-09-24 18:24:39,920 INFO Connection check task end + +2025-09-24 18:24:39,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:42,922 INFO Connection check task start + +2025-09-24 18:24:42,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:42,922 INFO Out dated connection ,size=0 + +2025-09-24 18:24:42,922 INFO Connection check task end + +2025-09-24 18:24:42,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:45,923 INFO Connection check task start + +2025-09-24 18:24:45,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:45,924 INFO Out dated connection ,size=0 + +2025-09-24 18:24:45,924 INFO Connection check task end + +2025-09-24 18:24:45,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:48,924 INFO Connection check task start + +2025-09-24 18:24:48,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:48,924 INFO Out dated connection ,size=0 + +2025-09-24 18:24:48,924 INFO Connection check task end + +2025-09-24 18:24:48,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:51,926 INFO Connection check task start + +2025-09-24 18:24:51,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:51,927 INFO Out dated connection ,size=0 + +2025-09-24 18:24:51,927 INFO Connection check task end + +2025-09-24 18:24:51,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:54,927 INFO Connection check task start + +2025-09-24 18:24:54,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:54,928 INFO Out dated connection ,size=0 + +2025-09-24 18:24:54,928 INFO Connection check task end + +2025-09-24 18:24:54,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:24:57,928 INFO Connection check task start + +2025-09-24 18:24:57,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:24:57,929 INFO Out dated connection ,size=0 + +2025-09-24 18:24:57,929 INFO Connection check task end + +2025-09-24 18:24:57,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:00,929 INFO Connection check task start + +2025-09-24 18:25:00,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:00,929 INFO Out dated connection ,size=0 + +2025-09-24 18:25:00,929 INFO Connection check task end + +2025-09-24 18:25:00,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:03,930 INFO Connection check task start + +2025-09-24 18:25:03,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:03,930 INFO Out dated connection ,size=0 + +2025-09-24 18:25:03,930 INFO Connection check task end + +2025-09-24 18:25:03,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:06,932 INFO Connection check task start + +2025-09-24 18:25:06,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:06,932 INFO Out dated connection ,size=0 + +2025-09-24 18:25:06,932 INFO Connection check task end + +2025-09-24 18:25:06,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:09,934 INFO Connection check task start + +2025-09-24 18:25:09,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:09,934 INFO Out dated connection ,size=0 + +2025-09-24 18:25:09,934 INFO Connection check task end + +2025-09-24 18:25:09,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:12,934 INFO Connection check task start + +2025-09-24 18:25:12,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:12,935 INFO Out dated connection ,size=0 + +2025-09-24 18:25:12,935 INFO Connection check task end + +2025-09-24 18:25:12,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:15,936 INFO Connection check task start + +2025-09-24 18:25:15,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:15,936 INFO Out dated connection ,size=0 + +2025-09-24 18:25:15,936 INFO Connection check task end + +2025-09-24 18:25:15,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:18,937 INFO Connection check task start + +2025-09-24 18:25:18,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:18,938 INFO Out dated connection ,size=0 + +2025-09-24 18:25:18,938 INFO Connection check task end + +2025-09-24 18:25:18,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:21,938 INFO Connection check task start + +2025-09-24 18:25:21,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:21,938 INFO Out dated connection ,size=0 + +2025-09-24 18:25:21,938 INFO Connection check task end + +2025-09-24 18:25:21,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:24,940 INFO Connection check task start + +2025-09-24 18:25:24,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:24,940 INFO Out dated connection ,size=0 + +2025-09-24 18:25:24,940 INFO Connection check task end + +2025-09-24 18:25:24,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:27,940 INFO Connection check task start + +2025-09-24 18:25:27,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:27,940 INFO Out dated connection ,size=0 + +2025-09-24 18:25:27,940 INFO Connection check task end + +2025-09-24 18:25:27,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:30,943 INFO Connection check task start + +2025-09-24 18:25:30,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:30,943 INFO Out dated connection ,size=0 + +2025-09-24 18:25:30,943 INFO Connection check task end + +2025-09-24 18:25:30,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:33,944 INFO Connection check task start + +2025-09-24 18:25:33,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:33,944 INFO Out dated connection ,size=0 + +2025-09-24 18:25:33,944 INFO Connection check task end + +2025-09-24 18:25:33,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:36,945 INFO Connection check task start + +2025-09-24 18:25:36,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:36,945 INFO Out dated connection ,size=0 + +2025-09-24 18:25:36,945 INFO Connection check task end + +2025-09-24 18:25:36,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:39,947 INFO Connection check task start + +2025-09-24 18:25:39,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:39,948 INFO Out dated connection ,size=0 + +2025-09-24 18:25:39,948 INFO Connection check task end + +2025-09-24 18:25:39,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:42,948 INFO Connection check task start + +2025-09-24 18:25:42,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:42,948 INFO Out dated connection ,size=0 + +2025-09-24 18:25:42,948 INFO Connection check task end + +2025-09-24 18:25:42,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:45,949 INFO Connection check task start + +2025-09-24 18:25:45,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:45,949 INFO Out dated connection ,size=0 + +2025-09-24 18:25:45,949 INFO Connection check task end + +2025-09-24 18:25:45,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:48,949 INFO Connection check task start + +2025-09-24 18:25:48,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:48,949 INFO Out dated connection ,size=0 + +2025-09-24 18:25:48,949 INFO Connection check task end + +2025-09-24 18:25:48,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:51,950 INFO Connection check task start + +2025-09-24 18:25:51,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:51,950 INFO Out dated connection ,size=0 + +2025-09-24 18:25:51,950 INFO Connection check task end + +2025-09-24 18:25:51,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:54,952 INFO Connection check task start + +2025-09-24 18:25:54,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:54,952 INFO Out dated connection ,size=0 + +2025-09-24 18:25:54,952 INFO Connection check task end + +2025-09-24 18:25:54,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:25:57,953 INFO Connection check task start + +2025-09-24 18:25:57,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:25:57,953 INFO Out dated connection ,size=0 + +2025-09-24 18:25:57,953 INFO Connection check task end + +2025-09-24 18:25:57,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:00,953 INFO Connection check task start + +2025-09-24 18:26:00,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:00,953 INFO Out dated connection ,size=0 + +2025-09-24 18:26:00,953 INFO Connection check task end + +2025-09-24 18:26:00,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:03,955 INFO Connection check task start + +2025-09-24 18:26:03,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:03,955 INFO Out dated connection ,size=0 + +2025-09-24 18:26:03,955 INFO Connection check task end + +2025-09-24 18:26:03,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:06,957 INFO Connection check task start + +2025-09-24 18:26:06,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:06,958 INFO Out dated connection ,size=0 + +2025-09-24 18:26:06,958 INFO Connection check task end + +2025-09-24 18:26:06,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:09,958 INFO Connection check task start + +2025-09-24 18:26:09,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:09,958 INFO Out dated connection ,size=0 + +2025-09-24 18:26:09,958 INFO Connection check task end + +2025-09-24 18:26:09,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:12,960 INFO Connection check task start + +2025-09-24 18:26:12,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:12,960 INFO Out dated connection ,size=0 + +2025-09-24 18:26:12,960 INFO Connection check task end + +2025-09-24 18:26:12,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:15,961 INFO Connection check task start + +2025-09-24 18:26:15,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:15,961 INFO Out dated connection ,size=0 + +2025-09-24 18:26:15,961 INFO Connection check task end + +2025-09-24 18:26:16,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:18,962 INFO Connection check task start + +2025-09-24 18:26:18,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:18,963 INFO Out dated connection ,size=0 + +2025-09-24 18:26:18,963 INFO Connection check task end + +2025-09-24 18:26:19,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:21,964 INFO Connection check task start + +2025-09-24 18:26:21,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:21,964 INFO Out dated connection ,size=0 + +2025-09-24 18:26:21,964 INFO Connection check task end + +2025-09-24 18:26:22,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:24,964 INFO Connection check task start + +2025-09-24 18:26:24,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:24,965 INFO Out dated connection ,size=0 + +2025-09-24 18:26:24,965 INFO Connection check task end + +2025-09-24 18:26:25,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:27,965 INFO Connection check task start + +2025-09-24 18:26:27,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:27,965 INFO Out dated connection ,size=0 + +2025-09-24 18:26:27,965 INFO Connection check task end + +2025-09-24 18:26:28,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:30,966 INFO Connection check task start + +2025-09-24 18:26:30,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:30,966 INFO Out dated connection ,size=0 + +2025-09-24 18:26:30,966 INFO Connection check task end + +2025-09-24 18:26:31,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:33,966 INFO Connection check task start + +2025-09-24 18:26:33,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:33,967 INFO Out dated connection ,size=0 + +2025-09-24 18:26:33,967 INFO Connection check task end + +2025-09-24 18:26:34,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:36,969 INFO Connection check task start + +2025-09-24 18:26:36,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:36,969 INFO Out dated connection ,size=0 + +2025-09-24 18:26:36,969 INFO Connection check task end + +2025-09-24 18:26:37,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:39,971 INFO Connection check task start + +2025-09-24 18:26:39,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:39,971 INFO Out dated connection ,size=0 + +2025-09-24 18:26:39,971 INFO Connection check task end + +2025-09-24 18:26:40,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:42,972 INFO Connection check task start + +2025-09-24 18:26:42,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:42,973 INFO Out dated connection ,size=0 + +2025-09-24 18:26:42,973 INFO Connection check task end + +2025-09-24 18:26:43,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:45,974 INFO Connection check task start + +2025-09-24 18:26:45,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:45,975 INFO Out dated connection ,size=0 + +2025-09-24 18:26:45,975 INFO Connection check task end + +2025-09-24 18:26:46,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:48,976 INFO Connection check task start + +2025-09-24 18:26:48,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:48,976 INFO Out dated connection ,size=0 + +2025-09-24 18:26:48,976 INFO Connection check task end + +2025-09-24 18:26:49,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:51,978 INFO Connection check task start + +2025-09-24 18:26:51,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:51,978 INFO Out dated connection ,size=0 + +2025-09-24 18:26:51,978 INFO Connection check task end + +2025-09-24 18:26:52,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:54,979 INFO Connection check task start + +2025-09-24 18:26:54,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:54,979 INFO Out dated connection ,size=0 + +2025-09-24 18:26:54,979 INFO Connection check task end + +2025-09-24 18:26:55,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:26:57,979 INFO Connection check task start + +2025-09-24 18:26:57,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:26:57,980 INFO Out dated connection ,size=0 + +2025-09-24 18:26:57,980 INFO Connection check task end + +2025-09-24 18:26:58,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:00,980 INFO Connection check task start + +2025-09-24 18:27:00,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:00,980 INFO Out dated connection ,size=0 + +2025-09-24 18:27:00,980 INFO Connection check task end + +2025-09-24 18:27:01,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:03,980 INFO Connection check task start + +2025-09-24 18:27:03,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:03,981 INFO Out dated connection ,size=0 + +2025-09-24 18:27:03,981 INFO Connection check task end + +2025-09-24 18:27:04,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:06,981 INFO Connection check task start + +2025-09-24 18:27:06,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:06,982 INFO Out dated connection ,size=0 + +2025-09-24 18:27:06,982 INFO Connection check task end + +2025-09-24 18:27:07,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:09,983 INFO Connection check task start + +2025-09-24 18:27:09,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:09,984 INFO Out dated connection ,size=0 + +2025-09-24 18:27:09,984 INFO Connection check task end + +2025-09-24 18:27:10,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:12,984 INFO Connection check task start + +2025-09-24 18:27:12,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:12,984 INFO Out dated connection ,size=0 + +2025-09-24 18:27:12,984 INFO Connection check task end + +2025-09-24 18:27:13,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:15,985 INFO Connection check task start + +2025-09-24 18:27:15,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:15,986 INFO Out dated connection ,size=0 + +2025-09-24 18:27:15,986 INFO Connection check task end + +2025-09-24 18:27:16,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:18,987 INFO Connection check task start + +2025-09-24 18:27:18,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:18,987 INFO Out dated connection ,size=0 + +2025-09-24 18:27:18,987 INFO Connection check task end + +2025-09-24 18:27:19,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:21,987 INFO Connection check task start + +2025-09-24 18:27:21,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:21,991 INFO Out dated connection ,size=0 + +2025-09-24 18:27:21,991 INFO Connection check task end + +2025-09-24 18:27:22,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:24,991 INFO Connection check task start + +2025-09-24 18:27:24,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:24,991 INFO Out dated connection ,size=0 + +2025-09-24 18:27:24,991 INFO Connection check task end + +2025-09-24 18:27:25,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:27,993 INFO Connection check task start + +2025-09-24 18:27:27,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:27,993 INFO Out dated connection ,size=0 + +2025-09-24 18:27:27,993 INFO Connection check task end + +2025-09-24 18:27:28,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:30,993 INFO Connection check task start + +2025-09-24 18:27:30,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:30,993 INFO Out dated connection ,size=0 + +2025-09-24 18:27:30,993 INFO Connection check task end + +2025-09-24 18:27:31,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:33,996 INFO Connection check task start + +2025-09-24 18:27:33,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:33,996 INFO Out dated connection ,size=0 + +2025-09-24 18:27:33,996 INFO Connection check task end + +2025-09-24 18:27:34,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:36,997 INFO Connection check task start + +2025-09-24 18:27:36,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:36,998 INFO Out dated connection ,size=0 + +2025-09-24 18:27:36,998 INFO Connection check task end + +2025-09-24 18:27:37,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:40,000 INFO Connection check task start + +2025-09-24 18:27:40,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:40,000 INFO Out dated connection ,size=0 + +2025-09-24 18:27:40,000 INFO Connection check task end + +2025-09-24 18:27:40,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:43,002 INFO Connection check task start + +2025-09-24 18:27:43,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:43,002 INFO Out dated connection ,size=0 + +2025-09-24 18:27:43,002 INFO Connection check task end + +2025-09-24 18:27:43,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:46,003 INFO Connection check task start + +2025-09-24 18:27:46,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:46,004 INFO Out dated connection ,size=0 + +2025-09-24 18:27:46,004 INFO Connection check task end + +2025-09-24 18:27:46,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:49,004 INFO Connection check task start + +2025-09-24 18:27:49,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:49,023 INFO Out dated connection ,size=0 + +2025-09-24 18:27:49,023 INFO Connection check task end + +2025-09-24 18:27:49,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:52,023 INFO Connection check task start + +2025-09-24 18:27:52,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:52,023 INFO Out dated connection ,size=0 + +2025-09-24 18:27:52,023 INFO Connection check task end + +2025-09-24 18:27:52,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:55,025 INFO Connection check task start + +2025-09-24 18:27:55,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:55,026 INFO Out dated connection ,size=0 + +2025-09-24 18:27:55,026 INFO Connection check task end + +2025-09-24 18:27:55,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:27:58,026 INFO Connection check task start + +2025-09-24 18:27:58,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:27:58,026 INFO Out dated connection ,size=0 + +2025-09-24 18:27:58,026 INFO Connection check task end + +2025-09-24 18:27:58,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:01,028 INFO Connection check task start + +2025-09-24 18:28:01,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:01,028 INFO Out dated connection ,size=0 + +2025-09-24 18:28:01,028 INFO Connection check task end + +2025-09-24 18:28:01,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:04,028 INFO Connection check task start + +2025-09-24 18:28:04,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:04,028 INFO Out dated connection ,size=0 + +2025-09-24 18:28:04,028 INFO Connection check task end + +2025-09-24 18:28:04,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:07,030 INFO Connection check task start + +2025-09-24 18:28:07,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:07,031 INFO Out dated connection ,size=0 + +2025-09-24 18:28:07,031 INFO Connection check task end + +2025-09-24 18:28:07,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:10,031 INFO Connection check task start + +2025-09-24 18:28:10,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:10,031 INFO Out dated connection ,size=0 + +2025-09-24 18:28:10,031 INFO Connection check task end + +2025-09-24 18:28:10,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:13,031 INFO Connection check task start + +2025-09-24 18:28:13,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:13,032 INFO Out dated connection ,size=0 + +2025-09-24 18:28:13,032 INFO Connection check task end + +2025-09-24 18:28:13,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:16,032 INFO Connection check task start + +2025-09-24 18:28:16,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:16,032 INFO Out dated connection ,size=0 + +2025-09-24 18:28:16,032 INFO Connection check task end + +2025-09-24 18:28:16,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:19,032 INFO Connection check task start + +2025-09-24 18:28:19,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:19,032 INFO Out dated connection ,size=0 + +2025-09-24 18:28:19,033 INFO Connection check task end + +2025-09-24 18:28:19,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:22,033 INFO Connection check task start + +2025-09-24 18:28:22,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:22,033 INFO Out dated connection ,size=0 + +2025-09-24 18:28:22,033 INFO Connection check task end + +2025-09-24 18:28:22,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:25,033 INFO Connection check task start + +2025-09-24 18:28:25,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:25,033 INFO Out dated connection ,size=0 + +2025-09-24 18:28:25,033 INFO Connection check task end + +2025-09-24 18:28:25,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:28,034 INFO Connection check task start + +2025-09-24 18:28:28,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:28,034 INFO Out dated connection ,size=0 + +2025-09-24 18:28:28,034 INFO Connection check task end + +2025-09-24 18:28:28,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:31,035 INFO Connection check task start + +2025-09-24 18:28:31,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:31,035 INFO Out dated connection ,size=0 + +2025-09-24 18:28:31,035 INFO Connection check task end + +2025-09-24 18:28:31,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:34,036 INFO Connection check task start + +2025-09-24 18:28:34,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:34,036 INFO Out dated connection ,size=0 + +2025-09-24 18:28:34,036 INFO Connection check task end + +2025-09-24 18:28:34,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:37,036 INFO Connection check task start + +2025-09-24 18:28:37,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:37,036 INFO Out dated connection ,size=0 + +2025-09-24 18:28:37,036 INFO Connection check task end + +2025-09-24 18:28:37,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:40,037 INFO Connection check task start + +2025-09-24 18:28:40,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:40,037 INFO Out dated connection ,size=0 + +2025-09-24 18:28:40,037 INFO Connection check task end + +2025-09-24 18:28:40,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:43,037 INFO Connection check task start + +2025-09-24 18:28:43,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:43,037 INFO Out dated connection ,size=0 + +2025-09-24 18:28:43,037 INFO Connection check task end + +2025-09-24 18:28:43,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:46,037 INFO Connection check task start + +2025-09-24 18:28:46,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:46,037 INFO Out dated connection ,size=0 + +2025-09-24 18:28:46,037 INFO Connection check task end + +2025-09-24 18:28:46,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:49,039 INFO Connection check task start + +2025-09-24 18:28:49,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:49,066 INFO Out dated connection ,size=0 + +2025-09-24 18:28:49,066 INFO Connection check task end + +2025-09-24 18:28:49,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:52,066 INFO Connection check task start + +2025-09-24 18:28:52,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:52,066 INFO Out dated connection ,size=0 + +2025-09-24 18:28:52,066 INFO Connection check task end + +2025-09-24 18:28:52,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:55,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:55,067 INFO Connection check task start + +2025-09-24 18:28:55,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:55,067 INFO Out dated connection ,size=0 + +2025-09-24 18:28:55,067 INFO Connection check task end + +2025-09-24 18:28:58,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:28:58,067 INFO Connection check task start + +2025-09-24 18:28:58,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:28:58,067 INFO Out dated connection ,size=0 + +2025-09-24 18:28:58,067 INFO Connection check task end + +2025-09-24 18:29:01,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:01,068 INFO Connection check task start + +2025-09-24 18:29:01,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:01,068 INFO Out dated connection ,size=0 + +2025-09-24 18:29:01,068 INFO Connection check task end + +2025-09-24 18:29:04,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:04,068 INFO Connection check task start + +2025-09-24 18:29:04,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:04,068 INFO Out dated connection ,size=0 + +2025-09-24 18:29:04,068 INFO Connection check task end + +2025-09-24 18:29:07,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:07,069 INFO Connection check task start + +2025-09-24 18:29:07,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:07,069 INFO Out dated connection ,size=0 + +2025-09-24 18:29:07,069 INFO Connection check task end + +2025-09-24 18:29:10,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:10,069 INFO Connection check task start + +2025-09-24 18:29:10,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:10,069 INFO Out dated connection ,size=0 + +2025-09-24 18:29:10,069 INFO Connection check task end + +2025-09-24 18:29:13,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:13,069 INFO Connection check task start + +2025-09-24 18:29:13,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:13,069 INFO Out dated connection ,size=0 + +2025-09-24 18:29:13,069 INFO Connection check task end + +2025-09-24 18:29:16,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:16,070 INFO Connection check task start + +2025-09-24 18:29:16,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:16,070 INFO Out dated connection ,size=0 + +2025-09-24 18:29:16,070 INFO Connection check task end + +2025-09-24 18:29:19,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:19,070 INFO Connection check task start + +2025-09-24 18:29:19,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:19,070 INFO Out dated connection ,size=0 + +2025-09-24 18:29:19,070 INFO Connection check task end + +2025-09-24 18:29:22,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:22,071 INFO Connection check task start + +2025-09-24 18:29:22,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:22,071 INFO Out dated connection ,size=0 + +2025-09-24 18:29:22,071 INFO Connection check task end + +2025-09-24 18:29:25,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:25,071 INFO Connection check task start + +2025-09-24 18:29:25,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:25,071 INFO Out dated connection ,size=0 + +2025-09-24 18:29:25,071 INFO Connection check task end + +2025-09-24 18:29:28,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:28,073 INFO Connection check task start + +2025-09-24 18:29:28,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:28,073 INFO Out dated connection ,size=0 + +2025-09-24 18:29:28,073 INFO Connection check task end + +2025-09-24 18:29:31,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:31,074 INFO Connection check task start + +2025-09-24 18:29:31,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:31,074 INFO Out dated connection ,size=0 + +2025-09-24 18:29:31,074 INFO Connection check task end + +2025-09-24 18:29:34,077 INFO Connection check task start + +2025-09-24 18:29:34,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:34,077 INFO Out dated connection ,size=0 + +2025-09-24 18:29:34,077 INFO Connection check task end + +2025-09-24 18:29:34,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:37,078 INFO Connection check task start + +2025-09-24 18:29:37,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:37,078 INFO Out dated connection ,size=0 + +2025-09-24 18:29:37,078 INFO Connection check task end + +2025-09-24 18:29:37,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:40,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:40,079 INFO Connection check task start + +2025-09-24 18:29:40,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:40,079 INFO Out dated connection ,size=0 + +2025-09-24 18:29:40,079 INFO Connection check task end + +2025-09-24 18:29:43,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:43,080 INFO Connection check task start + +2025-09-24 18:29:43,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:43,080 INFO Out dated connection ,size=0 + +2025-09-24 18:29:43,080 INFO Connection check task end + +2025-09-24 18:29:46,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:46,081 INFO Connection check task start + +2025-09-24 18:29:46,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:46,081 INFO Out dated connection ,size=0 + +2025-09-24 18:29:46,081 INFO Connection check task end + +2025-09-24 18:29:49,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:49,081 INFO Connection check task start + +2025-09-24 18:29:49,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:49,081 INFO Out dated connection ,size=0 + +2025-09-24 18:29:49,081 INFO Connection check task end + +2025-09-24 18:29:52,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:52,081 INFO Connection check task start + +2025-09-24 18:29:52,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:52,082 INFO Out dated connection ,size=0 + +2025-09-24 18:29:52,082 INFO Connection check task end + +2025-09-24 18:29:55,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:29:55,082 INFO Connection check task start + +2025-09-24 18:29:55,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:55,082 INFO Out dated connection ,size=0 + +2025-09-24 18:29:55,082 INFO Connection check task end + +2025-09-24 18:29:58,084 INFO Connection check task start + +2025-09-24 18:29:58,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:29:58,084 INFO Out dated connection ,size=0 + +2025-09-24 18:29:58,084 INFO Connection check task end + +2025-09-24 18:29:58,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:01,084 INFO Connection check task start + +2025-09-24 18:30:01,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:01,084 INFO Out dated connection ,size=0 + +2025-09-24 18:30:01,084 INFO Connection check task end + +2025-09-24 18:30:01,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:04,085 INFO Connection check task start + +2025-09-24 18:30:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:04,085 INFO Out dated connection ,size=0 + +2025-09-24 18:30:04,085 INFO Connection check task end + +2025-09-24 18:30:04,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:07,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:07,087 INFO Connection check task start + +2025-09-24 18:30:07,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:07,087 INFO Out dated connection ,size=0 + +2025-09-24 18:30:07,087 INFO Connection check task end + +2025-09-24 18:30:10,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:10,088 INFO Connection check task start + +2025-09-24 18:30:10,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:10,088 INFO Out dated connection ,size=0 + +2025-09-24 18:30:10,088 INFO Connection check task end + +2025-09-24 18:30:13,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:13,088 INFO Connection check task start + +2025-09-24 18:30:13,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:13,088 INFO Out dated connection ,size=0 + +2025-09-24 18:30:13,088 INFO Connection check task end + +2025-09-24 18:30:16,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:16,089 INFO Connection check task start + +2025-09-24 18:30:16,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:16,089 INFO Out dated connection ,size=0 + +2025-09-24 18:30:16,089 INFO Connection check task end + +2025-09-24 18:30:19,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:19,089 INFO Connection check task start + +2025-09-24 18:30:19,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:19,089 INFO Out dated connection ,size=0 + +2025-09-24 18:30:19,089 INFO Connection check task end + +2025-09-24 18:30:22,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:22,090 INFO Connection check task start + +2025-09-24 18:30:22,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:22,090 INFO Out dated connection ,size=0 + +2025-09-24 18:30:22,090 INFO Connection check task end + +2025-09-24 18:30:25,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:25,092 INFO Connection check task start + +2025-09-24 18:30:25,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:25,092 INFO Out dated connection ,size=0 + +2025-09-24 18:30:25,092 INFO Connection check task end + +2025-09-24 18:30:28,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:28,093 INFO Connection check task start + +2025-09-24 18:30:28,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:28,093 INFO Out dated connection ,size=0 + +2025-09-24 18:30:28,093 INFO Connection check task end + +2025-09-24 18:30:31,093 INFO Connection check task start + +2025-09-24 18:30:31,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:31,094 INFO Out dated connection ,size=0 + +2025-09-24 18:30:31,094 INFO Connection check task end + +2025-09-24 18:30:31,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:34,094 INFO Connection check task start + +2025-09-24 18:30:34,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:34,094 INFO Out dated connection ,size=0 + +2025-09-24 18:30:34,094 INFO Connection check task end + +2025-09-24 18:30:34,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:37,095 INFO Connection check task start + +2025-09-24 18:30:37,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:37,095 INFO Out dated connection ,size=0 + +2025-09-24 18:30:37,095 INFO Connection check task end + +2025-09-24 18:30:37,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:40,096 INFO Connection check task start + +2025-09-24 18:30:40,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:40,096 INFO Out dated connection ,size=0 + +2025-09-24 18:30:40,097 INFO Connection check task end + +2025-09-24 18:30:40,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:43,097 INFO Connection check task start + +2025-09-24 18:30:43,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:43,097 INFO Out dated connection ,size=0 + +2025-09-24 18:30:43,097 INFO Connection check task end + +2025-09-24 18:30:43,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:46,099 INFO Connection check task start + +2025-09-24 18:30:46,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:46,099 INFO Out dated connection ,size=0 + +2025-09-24 18:30:46,100 INFO Connection check task end + +2025-09-24 18:30:46,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:49,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:49,100 INFO Connection check task start + +2025-09-24 18:30:49,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:49,100 INFO Out dated connection ,size=0 + +2025-09-24 18:30:49,100 INFO Connection check task end + +2025-09-24 18:30:52,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:52,101 INFO Connection check task start + +2025-09-24 18:30:52,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:52,102 INFO Out dated connection ,size=0 + +2025-09-24 18:30:52,102 INFO Connection check task end + +2025-09-24 18:30:55,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:55,102 INFO Connection check task start + +2025-09-24 18:30:55,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:55,102 INFO Out dated connection ,size=0 + +2025-09-24 18:30:55,102 INFO Connection check task end + +2025-09-24 18:30:58,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:30:58,102 INFO Connection check task start + +2025-09-24 18:30:58,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:30:58,102 INFO Out dated connection ,size=0 + +2025-09-24 18:30:58,102 INFO Connection check task end + +2025-09-24 18:31:01,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:01,103 INFO Connection check task start + +2025-09-24 18:31:01,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:01,103 INFO Out dated connection ,size=0 + +2025-09-24 18:31:01,103 INFO Connection check task end + +2025-09-24 18:31:04,104 INFO Connection check task start + +2025-09-24 18:31:04,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:04,104 INFO Out dated connection ,size=0 + +2025-09-24 18:31:04,104 INFO Connection check task end + +2025-09-24 18:31:04,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:07,105 INFO Connection check task start + +2025-09-24 18:31:07,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:07,105 INFO Out dated connection ,size=0 + +2025-09-24 18:31:07,105 INFO Connection check task end + +2025-09-24 18:31:07,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:10,106 INFO Connection check task start + +2025-09-24 18:31:10,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:10,106 INFO Out dated connection ,size=0 + +2025-09-24 18:31:10,106 INFO Connection check task end + +2025-09-24 18:31:10,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:13,107 INFO Connection check task start + +2025-09-24 18:31:13,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:13,107 INFO Out dated connection ,size=0 + +2025-09-24 18:31:13,107 INFO Connection check task end + +2025-09-24 18:31:13,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:16,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:16,108 INFO Connection check task start + +2025-09-24 18:31:16,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:16,109 INFO Out dated connection ,size=0 + +2025-09-24 18:31:16,109 INFO Connection check task end + +2025-09-24 18:31:19,109 INFO Connection check task start + +2025-09-24 18:31:19,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:19,109 INFO Out dated connection ,size=0 + +2025-09-24 18:31:19,109 INFO Connection check task end + +2025-09-24 18:31:19,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:22,109 INFO Connection check task start + +2025-09-24 18:31:22,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:22,109 INFO Out dated connection ,size=0 + +2025-09-24 18:31:22,109 INFO Connection check task end + +2025-09-24 18:31:22,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:25,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:25,111 INFO Connection check task start + +2025-09-24 18:31:25,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:25,111 INFO Out dated connection ,size=0 + +2025-09-24 18:31:25,111 INFO Connection check task end + +2025-09-24 18:31:28,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:28,113 INFO Connection check task start + +2025-09-24 18:31:28,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:28,114 INFO Out dated connection ,size=0 + +2025-09-24 18:31:28,114 INFO Connection check task end + +2025-09-24 18:31:31,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:31,114 INFO Connection check task start + +2025-09-24 18:31:31,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:31,114 INFO Out dated connection ,size=0 + +2025-09-24 18:31:31,114 INFO Connection check task end + +2025-09-24 18:31:34,116 INFO Connection check task start + +2025-09-24 18:31:34,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:34,116 INFO Out dated connection ,size=0 + +2025-09-24 18:31:34,116 INFO Connection check task end + +2025-09-24 18:31:34,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:37,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:37,117 INFO Connection check task start + +2025-09-24 18:31:37,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:37,118 INFO Out dated connection ,size=0 + +2025-09-24 18:31:37,118 INFO Connection check task end + +2025-09-24 18:31:40,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:40,118 INFO Connection check task start + +2025-09-24 18:31:40,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:40,118 INFO Out dated connection ,size=0 + +2025-09-24 18:31:40,118 INFO Connection check task end + +2025-09-24 18:31:43,118 INFO Connection check task start + +2025-09-24 18:31:43,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:43,118 INFO Out dated connection ,size=0 + +2025-09-24 18:31:43,118 INFO Connection check task end + +2025-09-24 18:31:43,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:46,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:46,119 INFO Connection check task start + +2025-09-24 18:31:46,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:46,119 INFO Out dated connection ,size=0 + +2025-09-24 18:31:46,119 INFO Connection check task end + +2025-09-24 18:31:49,121 INFO Connection check task start + +2025-09-24 18:31:49,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:49,121 INFO Out dated connection ,size=0 + +2025-09-24 18:31:49,121 INFO Connection check task end + +2025-09-24 18:31:49,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:52,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:52,123 INFO Connection check task start + +2025-09-24 18:31:52,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:52,123 INFO Out dated connection ,size=0 + +2025-09-24 18:31:52,123 INFO Connection check task end + +2025-09-24 18:31:55,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:55,124 INFO Connection check task start + +2025-09-24 18:31:55,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:55,124 INFO Out dated connection ,size=0 + +2025-09-24 18:31:55,124 INFO Connection check task end + +2025-09-24 18:31:58,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:31:58,124 INFO Connection check task start + +2025-09-24 18:31:58,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:31:58,124 INFO Out dated connection ,size=0 + +2025-09-24 18:31:58,124 INFO Connection check task end + +2025-09-24 18:32:01,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:01,125 INFO Connection check task start + +2025-09-24 18:32:01,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:01,125 INFO Out dated connection ,size=0 + +2025-09-24 18:32:01,125 INFO Connection check task end + +2025-09-24 18:32:04,125 INFO Connection check task start + +2025-09-24 18:32:04,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:04,126 INFO Out dated connection ,size=0 + +2025-09-24 18:32:04,126 INFO Connection check task end + +2025-09-24 18:32:04,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:07,126 INFO Connection check task start + +2025-09-24 18:32:07,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:07,126 INFO Out dated connection ,size=0 + +2025-09-24 18:32:07,127 INFO Connection check task end + +2025-09-24 18:32:07,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:10,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:10,127 INFO Connection check task start + +2025-09-24 18:32:10,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:10,127 INFO Out dated connection ,size=0 + +2025-09-24 18:32:10,127 INFO Connection check task end + +2025-09-24 18:32:13,129 INFO Connection check task start + +2025-09-24 18:32:13,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:13,129 INFO Out dated connection ,size=0 + +2025-09-24 18:32:13,129 INFO Connection check task end + +2025-09-24 18:32:13,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:16,130 INFO Connection check task start + +2025-09-24 18:32:16,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:16,130 INFO Out dated connection ,size=0 + +2025-09-24 18:32:16,130 INFO Connection check task end + +2025-09-24 18:32:16,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:19,130 INFO Connection check task start + +2025-09-24 18:32:19,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:19,130 INFO Out dated connection ,size=0 + +2025-09-24 18:32:19,130 INFO Connection check task end + +2025-09-24 18:32:19,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:22,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:22,132 INFO Connection check task start + +2025-09-24 18:32:22,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:22,132 INFO Out dated connection ,size=0 + +2025-09-24 18:32:22,133 INFO Connection check task end + +2025-09-24 18:32:25,133 INFO Connection check task start + +2025-09-24 18:32:25,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:25,133 INFO Out dated connection ,size=0 + +2025-09-24 18:32:25,133 INFO Connection check task end + +2025-09-24 18:32:25,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:28,134 INFO Connection check task start + +2025-09-24 18:32:28,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:28,134 INFO Out dated connection ,size=0 + +2025-09-24 18:32:28,134 INFO Connection check task end + +2025-09-24 18:32:28,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:31,134 INFO Connection check task start + +2025-09-24 18:32:31,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:31,135 INFO Out dated connection ,size=0 + +2025-09-24 18:32:31,135 INFO Connection check task end + +2025-09-24 18:32:31,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:34,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:34,136 INFO Connection check task start + +2025-09-24 18:32:34,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:34,136 INFO Out dated connection ,size=0 + +2025-09-24 18:32:34,136 INFO Connection check task end + +2025-09-24 18:32:37,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:37,138 INFO Connection check task start + +2025-09-24 18:32:37,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:37,138 INFO Out dated connection ,size=0 + +2025-09-24 18:32:37,138 INFO Connection check task end + +2025-09-24 18:32:40,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:40,138 INFO Connection check task start + +2025-09-24 18:32:40,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:40,138 INFO Out dated connection ,size=0 + +2025-09-24 18:32:40,139 INFO Connection check task end + +2025-09-24 18:32:43,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:43,139 INFO Connection check task start + +2025-09-24 18:32:43,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:43,139 INFO Out dated connection ,size=0 + +2025-09-24 18:32:43,139 INFO Connection check task end + +2025-09-24 18:32:46,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:46,139 INFO Connection check task start + +2025-09-24 18:32:46,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:46,139 INFO Out dated connection ,size=0 + +2025-09-24 18:32:46,139 INFO Connection check task end + +2025-09-24 18:32:49,140 INFO Connection check task start + +2025-09-24 18:32:49,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:49,140 INFO Out dated connection ,size=0 + +2025-09-24 18:32:49,140 INFO Connection check task end + +2025-09-24 18:32:49,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:52,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:52,142 INFO Connection check task start + +2025-09-24 18:32:52,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:52,142 INFO Out dated connection ,size=0 + +2025-09-24 18:32:52,142 INFO Connection check task end + +2025-09-24 18:32:55,143 INFO Connection check task start + +2025-09-24 18:32:55,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:55,143 INFO Out dated connection ,size=0 + +2025-09-24 18:32:55,143 INFO Connection check task end + +2025-09-24 18:32:55,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:32:58,144 INFO Connection check task start + +2025-09-24 18:32:58,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:32:58,144 INFO Out dated connection ,size=0 + +2025-09-24 18:32:58,144 INFO Connection check task end + +2025-09-24 18:32:58,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:01,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:01,145 INFO Connection check task start + +2025-09-24 18:33:01,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:01,145 INFO Out dated connection ,size=0 + +2025-09-24 18:33:01,145 INFO Connection check task end + +2025-09-24 18:33:04,147 INFO Connection check task start + +2025-09-24 18:33:04,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:04,147 INFO Out dated connection ,size=0 + +2025-09-24 18:33:04,147 INFO Connection check task end + +2025-09-24 18:33:04,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:07,148 INFO Connection check task start + +2025-09-24 18:33:07,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:07,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:07,148 INFO Out dated connection ,size=0 + +2025-09-24 18:33:07,148 INFO Connection check task end + +2025-09-24 18:33:10,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:10,148 INFO Connection check task start + +2025-09-24 18:33:10,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:10,148 INFO Out dated connection ,size=0 + +2025-09-24 18:33:10,148 INFO Connection check task end + +2025-09-24 18:33:13,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:13,148 INFO Connection check task start + +2025-09-24 18:33:13,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:13,149 INFO Out dated connection ,size=0 + +2025-09-24 18:33:13,149 INFO Connection check task end + +2025-09-24 18:33:16,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:16,150 INFO Connection check task start + +2025-09-24 18:33:16,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:16,150 INFO Out dated connection ,size=0 + +2025-09-24 18:33:16,150 INFO Connection check task end + +2025-09-24 18:33:19,151 INFO Connection check task start + +2025-09-24 18:33:19,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:19,152 INFO Out dated connection ,size=0 + +2025-09-24 18:33:19,152 INFO Connection check task end + +2025-09-24 18:33:19,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:22,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:22,152 INFO Connection check task start + +2025-09-24 18:33:22,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:22,152 INFO Out dated connection ,size=0 + +2025-09-24 18:33:22,152 INFO Connection check task end + +2025-09-24 18:33:25,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:25,153 INFO Connection check task start + +2025-09-24 18:33:25,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:25,153 INFO Out dated connection ,size=0 + +2025-09-24 18:33:25,153 INFO Connection check task end + +2025-09-24 18:33:28,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:28,153 INFO Connection check task start + +2025-09-24 18:33:28,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:28,153 INFO Out dated connection ,size=0 + +2025-09-24 18:33:28,153 INFO Connection check task end + +2025-09-24 18:33:31,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:31,154 INFO Connection check task start + +2025-09-24 18:33:31,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:31,154 INFO Out dated connection ,size=0 + +2025-09-24 18:33:31,154 INFO Connection check task end + +2025-09-24 18:33:34,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:34,155 INFO Connection check task start + +2025-09-24 18:33:34,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:34,155 INFO Out dated connection ,size=0 + +2025-09-24 18:33:34,155 INFO Connection check task end + +2025-09-24 18:33:37,155 INFO Connection check task start + +2025-09-24 18:33:37,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:37,155 INFO Out dated connection ,size=0 + +2025-09-24 18:33:37,155 INFO Connection check task end + +2025-09-24 18:33:37,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:40,156 INFO Connection check task start + +2025-09-24 18:33:40,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:40,156 INFO Out dated connection ,size=0 + +2025-09-24 18:33:40,156 INFO Connection check task end + +2025-09-24 18:33:40,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:43,157 INFO Connection check task start + +2025-09-24 18:33:43,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:43,157 INFO Out dated connection ,size=0 + +2025-09-24 18:33:43,157 INFO Connection check task end + +2025-09-24 18:33:43,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:46,158 INFO Connection check task start + +2025-09-24 18:33:46,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:46,158 INFO Out dated connection ,size=0 + +2025-09-24 18:33:46,158 INFO Connection check task end + +2025-09-24 18:33:46,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:49,160 INFO Connection check task start + +2025-09-24 18:33:49,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:49,160 INFO Out dated connection ,size=0 + +2025-09-24 18:33:49,160 INFO Connection check task end + +2025-09-24 18:33:49,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:52,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:52,164 INFO Connection check task start + +2025-09-24 18:33:52,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:52,164 INFO Out dated connection ,size=0 + +2025-09-24 18:33:52,164 INFO Connection check task end + +2025-09-24 18:33:55,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:55,165 INFO Connection check task start + +2025-09-24 18:33:55,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:55,165 INFO Out dated connection ,size=0 + +2025-09-24 18:33:55,165 INFO Connection check task end + +2025-09-24 18:33:58,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:33:58,166 INFO Connection check task start + +2025-09-24 18:33:58,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:33:58,166 INFO Out dated connection ,size=0 + +2025-09-24 18:33:58,166 INFO Connection check task end + +2025-09-24 18:34:01,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:01,168 INFO Connection check task start + +2025-09-24 18:34:01,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:01,168 INFO Out dated connection ,size=0 + +2025-09-24 18:34:01,168 INFO Connection check task end + +2025-09-24 18:34:04,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:04,169 INFO Connection check task start + +2025-09-24 18:34:04,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:04,169 INFO Out dated connection ,size=0 + +2025-09-24 18:34:04,169 INFO Connection check task end + +2025-09-24 18:34:07,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:07,171 INFO Connection check task start + +2025-09-24 18:34:07,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:07,172 INFO Out dated connection ,size=0 + +2025-09-24 18:34:07,172 INFO Connection check task end + +2025-09-24 18:34:10,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:10,172 INFO Connection check task start + +2025-09-24 18:34:10,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:10,172 INFO Out dated connection ,size=0 + +2025-09-24 18:34:10,172 INFO Connection check task end + +2025-09-24 18:34:13,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:13,174 INFO Connection check task start + +2025-09-24 18:34:13,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:13,174 INFO Out dated connection ,size=0 + +2025-09-24 18:34:13,174 INFO Connection check task end + +2025-09-24 18:34:16,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:16,176 INFO Connection check task start + +2025-09-24 18:34:16,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:16,176 INFO Out dated connection ,size=0 + +2025-09-24 18:34:16,177 INFO Connection check task end + +2025-09-24 18:34:19,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:19,179 INFO Connection check task start + +2025-09-24 18:34:19,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:19,179 INFO Out dated connection ,size=0 + +2025-09-24 18:34:19,179 INFO Connection check task end + +2025-09-24 18:34:22,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:22,179 INFO Connection check task start + +2025-09-24 18:34:22,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:22,179 INFO Out dated connection ,size=0 + +2025-09-24 18:34:22,179 INFO Connection check task end + +2025-09-24 18:34:25,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:25,179 INFO Connection check task start + +2025-09-24 18:34:25,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:25,180 INFO Out dated connection ,size=0 + +2025-09-24 18:34:25,180 INFO Connection check task end + +2025-09-24 18:34:28,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:28,182 INFO Connection check task start + +2025-09-24 18:34:28,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:28,182 INFO Out dated connection ,size=0 + +2025-09-24 18:34:28,182 INFO Connection check task end + +2025-09-24 18:34:31,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:31,184 INFO Connection check task start + +2025-09-24 18:34:31,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:31,184 INFO Out dated connection ,size=0 + +2025-09-24 18:34:31,184 INFO Connection check task end + +2025-09-24 18:34:34,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:34,185 INFO Connection check task start + +2025-09-24 18:34:34,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:34,185 INFO Out dated connection ,size=0 + +2025-09-24 18:34:34,185 INFO Connection check task end + +2025-09-24 18:34:37,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:37,187 INFO Connection check task start + +2025-09-24 18:34:37,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:37,187 INFO Out dated connection ,size=0 + +2025-09-24 18:34:37,187 INFO Connection check task end + +2025-09-24 18:34:40,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:40,189 INFO Connection check task start + +2025-09-24 18:34:40,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:40,189 INFO Out dated connection ,size=0 + +2025-09-24 18:34:40,189 INFO Connection check task end + +2025-09-24 18:34:43,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:43,191 INFO Connection check task start + +2025-09-24 18:34:43,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:43,192 INFO Out dated connection ,size=0 + +2025-09-24 18:34:43,192 INFO Connection check task end + +2025-09-24 18:34:46,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:46,192 INFO Connection check task start + +2025-09-24 18:34:46,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:46,192 INFO Out dated connection ,size=0 + +2025-09-24 18:34:46,192 INFO Connection check task end + +2025-09-24 18:34:49,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:49,193 INFO Connection check task start + +2025-09-24 18:34:49,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:49,193 INFO Out dated connection ,size=0 + +2025-09-24 18:34:49,193 INFO Connection check task end + +2025-09-24 18:34:52,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:52,195 INFO Connection check task start + +2025-09-24 18:34:52,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:52,195 INFO Out dated connection ,size=0 + +2025-09-24 18:34:52,195 INFO Connection check task end + +2025-09-24 18:34:55,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:55,197 INFO Connection check task start + +2025-09-24 18:34:55,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:55,197 INFO Out dated connection ,size=0 + +2025-09-24 18:34:55,197 INFO Connection check task end + +2025-09-24 18:34:58,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:34:58,197 INFO Connection check task start + +2025-09-24 18:34:58,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:34:58,198 INFO Out dated connection ,size=0 + +2025-09-24 18:34:58,198 INFO Connection check task end + +2025-09-24 18:35:01,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:01,200 INFO Connection check task start + +2025-09-24 18:35:01,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:01,200 INFO Out dated connection ,size=0 + +2025-09-24 18:35:01,200 INFO Connection check task end + +2025-09-24 18:35:04,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:04,202 INFO Connection check task start + +2025-09-24 18:35:04,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:04,202 INFO Out dated connection ,size=0 + +2025-09-24 18:35:04,202 INFO Connection check task end + +2025-09-24 18:35:07,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:07,202 INFO Connection check task start + +2025-09-24 18:35:07,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:07,202 INFO Out dated connection ,size=0 + +2025-09-24 18:35:07,202 INFO Connection check task end + +2025-09-24 18:35:10,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:10,204 INFO Connection check task start + +2025-09-24 18:35:10,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:10,205 INFO Out dated connection ,size=0 + +2025-09-24 18:35:10,205 INFO Connection check task end + +2025-09-24 18:35:13,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:13,205 INFO Connection check task start + +2025-09-24 18:35:13,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:13,205 INFO Out dated connection ,size=0 + +2025-09-24 18:35:13,205 INFO Connection check task end + +2025-09-24 18:35:16,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:16,206 INFO Connection check task start + +2025-09-24 18:35:16,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:16,206 INFO Out dated connection ,size=0 + +2025-09-24 18:35:16,206 INFO Connection check task end + +2025-09-24 18:35:19,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:19,207 INFO Connection check task start + +2025-09-24 18:35:19,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:19,207 INFO Out dated connection ,size=0 + +2025-09-24 18:35:19,207 INFO Connection check task end + +2025-09-24 18:35:22,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:22,207 INFO Connection check task start + +2025-09-24 18:35:22,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:22,207 INFO Out dated connection ,size=0 + +2025-09-24 18:35:22,207 INFO Connection check task end + +2025-09-24 18:35:25,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:25,207 INFO Connection check task start + +2025-09-24 18:35:25,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:25,207 INFO Out dated connection ,size=0 + +2025-09-24 18:35:25,208 INFO Connection check task end + +2025-09-24 18:35:28,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:28,208 INFO Connection check task start + +2025-09-24 18:35:28,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:28,208 INFO Out dated connection ,size=0 + +2025-09-24 18:35:28,208 INFO Connection check task end + +2025-09-24 18:35:31,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:31,210 INFO Connection check task start + +2025-09-24 18:35:31,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:31,210 INFO Out dated connection ,size=0 + +2025-09-24 18:35:31,210 INFO Connection check task end + +2025-09-24 18:35:34,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:34,210 INFO Connection check task start + +2025-09-24 18:35:34,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:34,211 INFO Out dated connection ,size=0 + +2025-09-24 18:35:34,211 INFO Connection check task end + +2025-09-24 18:35:37,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:37,211 INFO Connection check task start + +2025-09-24 18:35:37,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:37,211 INFO Out dated connection ,size=0 + +2025-09-24 18:35:37,211 INFO Connection check task end + +2025-09-24 18:35:40,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:40,212 INFO Connection check task start + +2025-09-24 18:35:40,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:40,212 INFO Out dated connection ,size=0 + +2025-09-24 18:35:40,212 INFO Connection check task end + +2025-09-24 18:35:43,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:43,214 INFO Connection check task start + +2025-09-24 18:35:43,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:43,214 INFO Out dated connection ,size=0 + +2025-09-24 18:35:43,214 INFO Connection check task end + +2025-09-24 18:35:46,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:46,217 INFO Connection check task start + +2025-09-24 18:35:46,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:46,217 INFO Out dated connection ,size=0 + +2025-09-24 18:35:46,217 INFO Connection check task end + +2025-09-24 18:35:49,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:49,217 INFO Connection check task start + +2025-09-24 18:35:49,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:49,217 INFO Out dated connection ,size=0 + +2025-09-24 18:35:49,217 INFO Connection check task end + +2025-09-24 18:35:52,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:52,218 INFO Connection check task start + +2025-09-24 18:35:52,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:52,218 INFO Out dated connection ,size=0 + +2025-09-24 18:35:52,218 INFO Connection check task end + +2025-09-24 18:35:55,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:55,218 INFO Connection check task start + +2025-09-24 18:35:55,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:55,219 INFO Out dated connection ,size=0 + +2025-09-24 18:35:55,219 INFO Connection check task end + +2025-09-24 18:35:58,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:35:58,219 INFO Connection check task start + +2025-09-24 18:35:58,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:35:58,219 INFO Out dated connection ,size=0 + +2025-09-24 18:35:58,219 INFO Connection check task end + +2025-09-24 18:36:01,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:01,221 INFO Connection check task start + +2025-09-24 18:36:01,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:01,221 INFO Out dated connection ,size=0 + +2025-09-24 18:36:01,221 INFO Connection check task end + +2025-09-24 18:36:04,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:04,221 INFO Connection check task start + +2025-09-24 18:36:04,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:04,221 INFO Out dated connection ,size=0 + +2025-09-24 18:36:04,221 INFO Connection check task end + +2025-09-24 18:36:07,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:07,222 INFO Connection check task start + +2025-09-24 18:36:07,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:07,222 INFO Out dated connection ,size=0 + +2025-09-24 18:36:07,222 INFO Connection check task end + +2025-09-24 18:36:10,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:10,223 INFO Connection check task start + +2025-09-24 18:36:10,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:10,224 INFO Out dated connection ,size=0 + +2025-09-24 18:36:10,224 INFO Connection check task end + +2025-09-24 18:36:13,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:13,226 INFO Connection check task start + +2025-09-24 18:36:13,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:13,226 INFO Out dated connection ,size=0 + +2025-09-24 18:36:13,226 INFO Connection check task end + +2025-09-24 18:36:16,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:16,226 INFO Connection check task start + +2025-09-24 18:36:16,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:16,226 INFO Out dated connection ,size=0 + +2025-09-24 18:36:16,226 INFO Connection check task end + +2025-09-24 18:36:19,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:19,227 INFO Connection check task start + +2025-09-24 18:36:19,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:19,227 INFO Out dated connection ,size=0 + +2025-09-24 18:36:19,227 INFO Connection check task end + +2025-09-24 18:36:22,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:22,227 INFO Connection check task start + +2025-09-24 18:36:22,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:22,228 INFO Out dated connection ,size=0 + +2025-09-24 18:36:22,228 INFO Connection check task end + +2025-09-24 18:36:25,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:25,228 INFO Connection check task start + +2025-09-24 18:36:25,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:25,228 INFO Out dated connection ,size=0 + +2025-09-24 18:36:25,228 INFO Connection check task end + +2025-09-24 18:36:28,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:28,229 INFO Connection check task start + +2025-09-24 18:36:28,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:28,229 INFO Out dated connection ,size=0 + +2025-09-24 18:36:28,229 INFO Connection check task end + +2025-09-24 18:36:31,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:31,231 INFO Connection check task start + +2025-09-24 18:36:31,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:31,231 INFO Out dated connection ,size=0 + +2025-09-24 18:36:31,231 INFO Connection check task end + +2025-09-24 18:36:34,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:34,231 INFO Connection check task start + +2025-09-24 18:36:34,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:34,232 INFO Out dated connection ,size=0 + +2025-09-24 18:36:34,232 INFO Connection check task end + +2025-09-24 18:36:37,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:37,233 INFO Connection check task start + +2025-09-24 18:36:37,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:37,233 INFO Out dated connection ,size=0 + +2025-09-24 18:36:37,233 INFO Connection check task end + +2025-09-24 18:36:40,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:40,235 INFO Connection check task start + +2025-09-24 18:36:40,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:40,235 INFO Out dated connection ,size=0 + +2025-09-24 18:36:40,235 INFO Connection check task end + +2025-09-24 18:36:43,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:43,237 INFO Connection check task start + +2025-09-24 18:36:43,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:43,237 INFO Out dated connection ,size=0 + +2025-09-24 18:36:43,237 INFO Connection check task end + +2025-09-24 18:36:46,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:46,238 INFO Connection check task start + +2025-09-24 18:36:46,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:46,238 INFO Out dated connection ,size=0 + +2025-09-24 18:36:46,238 INFO Connection check task end + +2025-09-24 18:36:49,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:49,238 INFO Connection check task start + +2025-09-24 18:36:49,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:49,238 INFO Out dated connection ,size=0 + +2025-09-24 18:36:49,238 INFO Connection check task end + +2025-09-24 18:36:52,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:52,239 INFO Connection check task start + +2025-09-24 18:36:52,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:52,239 INFO Out dated connection ,size=0 + +2025-09-24 18:36:52,239 INFO Connection check task end + +2025-09-24 18:36:55,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:55,240 INFO Connection check task start + +2025-09-24 18:36:55,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:55,240 INFO Out dated connection ,size=0 + +2025-09-24 18:36:55,240 INFO Connection check task end + +2025-09-24 18:36:58,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:36:58,240 INFO Connection check task start + +2025-09-24 18:36:58,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:36:58,240 INFO Out dated connection ,size=0 + +2025-09-24 18:36:58,240 INFO Connection check task end + +2025-09-24 18:37:01,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:01,242 INFO Connection check task start + +2025-09-24 18:37:01,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:01,242 INFO Out dated connection ,size=0 + +2025-09-24 18:37:01,242 INFO Connection check task end + +2025-09-24 18:37:04,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:04,244 INFO Connection check task start + +2025-09-24 18:37:04,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:04,244 INFO Out dated connection ,size=0 + +2025-09-24 18:37:04,244 INFO Connection check task end + +2025-09-24 18:37:07,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:07,246 INFO Connection check task start + +2025-09-24 18:37:07,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:07,246 INFO Out dated connection ,size=0 + +2025-09-24 18:37:07,246 INFO Connection check task end + +2025-09-24 18:37:10,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:10,247 INFO Connection check task start + +2025-09-24 18:37:10,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:10,247 INFO Out dated connection ,size=0 + +2025-09-24 18:37:10,247 INFO Connection check task end + +2025-09-24 18:37:13,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:13,247 INFO Connection check task start + +2025-09-24 18:37:13,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:13,247 INFO Out dated connection ,size=0 + +2025-09-24 18:37:13,247 INFO Connection check task end + +2025-09-24 18:37:16,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:16,248 INFO Connection check task start + +2025-09-24 18:37:16,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:16,249 INFO Out dated connection ,size=0 + +2025-09-24 18:37:16,249 INFO Connection check task end + +2025-09-24 18:37:19,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:19,249 INFO Connection check task start + +2025-09-24 18:37:19,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:19,249 INFO Out dated connection ,size=0 + +2025-09-24 18:37:19,249 INFO Connection check task end + +2025-09-24 18:37:22,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:22,250 INFO Connection check task start + +2025-09-24 18:37:22,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:22,251 INFO Out dated connection ,size=0 + +2025-09-24 18:37:22,251 INFO Connection check task end + +2025-09-24 18:37:25,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:25,252 INFO Connection check task start + +2025-09-24 18:37:25,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:25,252 INFO Out dated connection ,size=0 + +2025-09-24 18:37:25,252 INFO Connection check task end + +2025-09-24 18:37:28,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:28,254 INFO Connection check task start + +2025-09-24 18:37:28,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:28,254 INFO Out dated connection ,size=0 + +2025-09-24 18:37:28,254 INFO Connection check task end + +2025-09-24 18:37:31,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:31,254 INFO Connection check task start + +2025-09-24 18:37:31,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:31,255 INFO Out dated connection ,size=0 + +2025-09-24 18:37:31,255 INFO Connection check task end + +2025-09-24 18:37:34,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:34,255 INFO Connection check task start + +2025-09-24 18:37:34,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:34,255 INFO Out dated connection ,size=0 + +2025-09-24 18:37:34,255 INFO Connection check task end + +2025-09-24 18:37:37,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:37,257 INFO Connection check task start + +2025-09-24 18:37:37,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:37,258 INFO Out dated connection ,size=0 + +2025-09-24 18:37:37,258 INFO Connection check task end + +2025-09-24 18:37:40,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:40,259 INFO Connection check task start + +2025-09-24 18:37:40,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:40,259 INFO Out dated connection ,size=0 + +2025-09-24 18:37:40,259 INFO Connection check task end + +2025-09-24 18:37:43,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:43,261 INFO Connection check task start + +2025-09-24 18:37:43,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:43,261 INFO Out dated connection ,size=0 + +2025-09-24 18:37:43,261 INFO Connection check task end + +2025-09-24 18:37:46,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:46,261 INFO Connection check task start + +2025-09-24 18:37:46,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:46,262 INFO Out dated connection ,size=0 + +2025-09-24 18:37:46,262 INFO Connection check task end + +2025-09-24 18:37:49,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:49,263 INFO Connection check task start + +2025-09-24 18:37:49,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:49,263 INFO Out dated connection ,size=0 + +2025-09-24 18:37:49,263 INFO Connection check task end + +2025-09-24 18:37:52,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:52,264 INFO Connection check task start + +2025-09-24 18:37:52,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:52,265 INFO Out dated connection ,size=0 + +2025-09-24 18:37:52,265 INFO Connection check task end + +2025-09-24 18:37:55,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:55,265 INFO Connection check task start + +2025-09-24 18:37:55,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:55,265 INFO Out dated connection ,size=0 + +2025-09-24 18:37:55,265 INFO Connection check task end + +2025-09-24 18:37:58,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:37:58,266 INFO Connection check task start + +2025-09-24 18:37:58,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:37:58,266 INFO Out dated connection ,size=0 + +2025-09-24 18:37:58,266 INFO Connection check task end + +2025-09-24 18:38:01,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:01,268 INFO Connection check task start + +2025-09-24 18:38:01,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:01,268 INFO Out dated connection ,size=0 + +2025-09-24 18:38:01,268 INFO Connection check task end + +2025-09-24 18:38:04,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:04,270 INFO Connection check task start + +2025-09-24 18:38:04,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:04,270 INFO Out dated connection ,size=0 + +2025-09-24 18:38:04,270 INFO Connection check task end + +2025-09-24 18:38:07,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:07,271 INFO Connection check task start + +2025-09-24 18:38:07,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:07,271 INFO Out dated connection ,size=0 + +2025-09-24 18:38:07,272 INFO Connection check task end + +2025-09-24 18:38:10,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:10,272 INFO Connection check task start + +2025-09-24 18:38:10,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:10,273 INFO Out dated connection ,size=0 + +2025-09-24 18:38:10,273 INFO Connection check task end + +2025-09-24 18:38:13,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:13,274 INFO Connection check task start + +2025-09-24 18:38:13,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:13,274 INFO Out dated connection ,size=0 + +2025-09-24 18:38:13,274 INFO Connection check task end + +2025-09-24 18:38:16,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:16,275 INFO Connection check task start + +2025-09-24 18:38:16,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:16,275 INFO Out dated connection ,size=0 + +2025-09-24 18:38:16,275 INFO Connection check task end + +2025-09-24 18:38:19,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:19,276 INFO Connection check task start + +2025-09-24 18:38:19,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:19,276 INFO Out dated connection ,size=0 + +2025-09-24 18:38:19,276 INFO Connection check task end + +2025-09-24 18:38:22,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:22,277 INFO Connection check task start + +2025-09-24 18:38:22,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:22,277 INFO Out dated connection ,size=0 + +2025-09-24 18:38:22,277 INFO Connection check task end + +2025-09-24 18:38:25,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:25,279 INFO Connection check task start + +2025-09-24 18:38:25,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:25,279 INFO Out dated connection ,size=0 + +2025-09-24 18:38:25,279 INFO Connection check task end + +2025-09-24 18:38:28,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:28,280 INFO Connection check task start + +2025-09-24 18:38:28,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:28,280 INFO Out dated connection ,size=0 + +2025-09-24 18:38:28,280 INFO Connection check task end + +2025-09-24 18:38:31,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:31,281 INFO Connection check task start + +2025-09-24 18:38:31,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:31,281 INFO Out dated connection ,size=0 + +2025-09-24 18:38:31,281 INFO Connection check task end + +2025-09-24 18:38:34,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:34,282 INFO Connection check task start + +2025-09-24 18:38:34,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:34,282 INFO Out dated connection ,size=0 + +2025-09-24 18:38:34,282 INFO Connection check task end + +2025-09-24 18:38:37,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:37,284 INFO Connection check task start + +2025-09-24 18:38:37,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:37,284 INFO Out dated connection ,size=0 + +2025-09-24 18:38:37,285 INFO Connection check task end + +2025-09-24 18:38:40,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:40,286 INFO Connection check task start + +2025-09-24 18:38:40,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:40,287 INFO Out dated connection ,size=0 + +2025-09-24 18:38:40,287 INFO Connection check task end + +2025-09-24 18:38:43,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:43,287 INFO Connection check task start + +2025-09-24 18:38:43,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:43,287 INFO Out dated connection ,size=0 + +2025-09-24 18:38:43,288 INFO Connection check task end + +2025-09-24 18:38:46,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:46,289 INFO Connection check task start + +2025-09-24 18:38:46,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:46,289 INFO Out dated connection ,size=0 + +2025-09-24 18:38:46,289 INFO Connection check task end + +2025-09-24 18:38:49,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:49,291 INFO Connection check task start + +2025-09-24 18:38:49,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:49,291 INFO Out dated connection ,size=0 + +2025-09-24 18:38:49,291 INFO Connection check task end + +2025-09-24 18:38:52,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:52,293 INFO Connection check task start + +2025-09-24 18:38:52,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:52,293 INFO Out dated connection ,size=0 + +2025-09-24 18:38:52,293 INFO Connection check task end + +2025-09-24 18:38:55,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:55,293 INFO Connection check task start + +2025-09-24 18:38:55,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:55,294 INFO Out dated connection ,size=0 + +2025-09-24 18:38:55,294 INFO Connection check task end + +2025-09-24 18:38:58,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:38:58,296 INFO Connection check task start + +2025-09-24 18:38:58,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:38:58,296 INFO Out dated connection ,size=0 + +2025-09-24 18:38:58,296 INFO Connection check task end + +2025-09-24 18:39:01,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:01,298 INFO Connection check task start + +2025-09-24 18:39:01,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:01,298 INFO Out dated connection ,size=0 + +2025-09-24 18:39:01,298 INFO Connection check task end + +2025-09-24 18:39:04,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:04,299 INFO Connection check task start + +2025-09-24 18:39:04,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:04,299 INFO Out dated connection ,size=0 + +2025-09-24 18:39:04,299 INFO Connection check task end + +2025-09-24 18:39:07,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:07,300 INFO Connection check task start + +2025-09-24 18:39:07,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:07,300 INFO Out dated connection ,size=0 + +2025-09-24 18:39:07,300 INFO Connection check task end + +2025-09-24 18:39:10,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:10,301 INFO Connection check task start + +2025-09-24 18:39:10,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:10,301 INFO Out dated connection ,size=0 + +2025-09-24 18:39:10,301 INFO Connection check task end + +2025-09-24 18:39:13,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:13,301 INFO Connection check task start + +2025-09-24 18:39:13,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:13,301 INFO Out dated connection ,size=0 + +2025-09-24 18:39:13,301 INFO Connection check task end + +2025-09-24 18:39:16,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:16,302 INFO Connection check task start + +2025-09-24 18:39:16,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:16,302 INFO Out dated connection ,size=0 + +2025-09-24 18:39:16,302 INFO Connection check task end + +2025-09-24 18:39:19,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:19,304 INFO Connection check task start + +2025-09-24 18:39:19,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:19,304 INFO Out dated connection ,size=0 + +2025-09-24 18:39:19,304 INFO Connection check task end + +2025-09-24 18:39:22,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:22,304 INFO Connection check task start + +2025-09-24 18:39:22,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:22,304 INFO Out dated connection ,size=0 + +2025-09-24 18:39:22,304 INFO Connection check task end + +2025-09-24 18:39:25,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:25,305 INFO Connection check task start + +2025-09-24 18:39:25,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:25,305 INFO Out dated connection ,size=0 + +2025-09-24 18:39:25,305 INFO Connection check task end + +2025-09-24 18:39:28,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:28,306 INFO Connection check task start + +2025-09-24 18:39:28,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:28,306 INFO Out dated connection ,size=0 + +2025-09-24 18:39:28,306 INFO Connection check task end + +2025-09-24 18:39:31,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:31,307 INFO Connection check task start + +2025-09-24 18:39:31,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:31,307 INFO Out dated connection ,size=0 + +2025-09-24 18:39:31,307 INFO Connection check task end + +2025-09-24 18:39:34,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:34,307 INFO Connection check task start + +2025-09-24 18:39:34,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:34,307 INFO Out dated connection ,size=0 + +2025-09-24 18:39:34,307 INFO Connection check task end + +2025-09-24 18:39:37,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:37,308 INFO Connection check task start + +2025-09-24 18:39:37,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:37,308 INFO Out dated connection ,size=0 + +2025-09-24 18:39:37,308 INFO Connection check task end + +2025-09-24 18:39:40,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:40,310 INFO Connection check task start + +2025-09-24 18:39:40,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:40,310 INFO Out dated connection ,size=0 + +2025-09-24 18:39:40,311 INFO Connection check task end + +2025-09-24 18:39:43,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:43,311 INFO Connection check task start + +2025-09-24 18:39:43,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:43,312 INFO Out dated connection ,size=0 + +2025-09-24 18:39:43,312 INFO Connection check task end + +2025-09-24 18:39:46,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:46,312 INFO Connection check task start + +2025-09-24 18:39:46,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:46,312 INFO Out dated connection ,size=0 + +2025-09-24 18:39:46,312 INFO Connection check task end + +2025-09-24 18:39:49,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:49,314 INFO Connection check task start + +2025-09-24 18:39:49,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:49,314 INFO Out dated connection ,size=0 + +2025-09-24 18:39:49,314 INFO Connection check task end + +2025-09-24 18:39:52,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:52,315 INFO Connection check task start + +2025-09-24 18:39:52,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:52,316 INFO Out dated connection ,size=0 + +2025-09-24 18:39:52,316 INFO Connection check task end + +2025-09-24 18:39:55,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:55,317 INFO Connection check task start + +2025-09-24 18:39:55,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:55,318 INFO Out dated connection ,size=0 + +2025-09-24 18:39:55,318 INFO Connection check task end + +2025-09-24 18:39:58,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:39:58,318 INFO Connection check task start + +2025-09-24 18:39:58,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:39:58,318 INFO Out dated connection ,size=0 + +2025-09-24 18:39:58,318 INFO Connection check task end + +2025-09-24 18:40:01,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:01,318 INFO Connection check task start + +2025-09-24 18:40:01,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:01,319 INFO Out dated connection ,size=0 + +2025-09-24 18:40:01,319 INFO Connection check task end + +2025-09-24 18:40:04,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:04,319 INFO Connection check task start + +2025-09-24 18:40:04,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:04,319 INFO Out dated connection ,size=0 + +2025-09-24 18:40:04,319 INFO Connection check task end + +2025-09-24 18:40:07,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:07,320 INFO Connection check task start + +2025-09-24 18:40:07,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:07,320 INFO Out dated connection ,size=0 + +2025-09-24 18:40:07,320 INFO Connection check task end + +2025-09-24 18:40:10,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:10,320 INFO Connection check task start + +2025-09-24 18:40:10,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:10,320 INFO Out dated connection ,size=0 + +2025-09-24 18:40:10,320 INFO Connection check task end + +2025-09-24 18:40:13,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:13,320 INFO Connection check task start + +2025-09-24 18:40:13,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:13,321 INFO Out dated connection ,size=0 + +2025-09-24 18:40:13,321 INFO Connection check task end + +2025-09-24 18:40:16,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:16,321 INFO Connection check task start + +2025-09-24 18:40:16,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:16,321 INFO Out dated connection ,size=0 + +2025-09-24 18:40:16,321 INFO Connection check task end + +2025-09-24 18:40:19,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:19,321 INFO Connection check task start + +2025-09-24 18:40:19,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:19,321 INFO Out dated connection ,size=0 + +2025-09-24 18:40:19,321 INFO Connection check task end + +2025-09-24 18:40:22,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:22,323 INFO Connection check task start + +2025-09-24 18:40:22,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:22,323 INFO Out dated connection ,size=0 + +2025-09-24 18:40:22,323 INFO Connection check task end + +2025-09-24 18:40:25,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:25,324 INFO Connection check task start + +2025-09-24 18:40:25,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:25,324 INFO Out dated connection ,size=0 + +2025-09-24 18:40:25,324 INFO Connection check task end + +2025-09-24 18:40:28,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:28,326 INFO Connection check task start + +2025-09-24 18:40:28,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:28,327 INFO Out dated connection ,size=0 + +2025-09-24 18:40:28,327 INFO Connection check task end + +2025-09-24 18:40:31,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:31,327 INFO Connection check task start + +2025-09-24 18:40:31,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:31,327 INFO Out dated connection ,size=0 + +2025-09-24 18:40:31,327 INFO Connection check task end + +2025-09-24 18:40:34,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:34,327 INFO Connection check task start + +2025-09-24 18:40:34,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:34,328 INFO Out dated connection ,size=0 + +2025-09-24 18:40:34,328 INFO Connection check task end + +2025-09-24 18:40:37,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:37,328 INFO Connection check task start + +2025-09-24 18:40:37,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:37,328 INFO Out dated connection ,size=0 + +2025-09-24 18:40:37,328 INFO Connection check task end + +2025-09-24 18:40:40,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:40,330 INFO Connection check task start + +2025-09-24 18:40:40,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:40,330 INFO Out dated connection ,size=0 + +2025-09-24 18:40:40,330 INFO Connection check task end + +2025-09-24 18:40:43,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:43,331 INFO Connection check task start + +2025-09-24 18:40:43,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:43,331 INFO Out dated connection ,size=0 + +2025-09-24 18:40:43,331 INFO Connection check task end + +2025-09-24 18:40:46,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:46,333 INFO Connection check task start + +2025-09-24 18:40:46,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:46,333 INFO Out dated connection ,size=0 + +2025-09-24 18:40:46,333 INFO Connection check task end + +2025-09-24 18:40:49,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:49,333 INFO Connection check task start + +2025-09-24 18:40:49,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:49,334 INFO Out dated connection ,size=0 + +2025-09-24 18:40:49,334 INFO Connection check task end + +2025-09-24 18:40:52,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:52,336 INFO Connection check task start + +2025-09-24 18:40:52,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:52,336 INFO Out dated connection ,size=0 + +2025-09-24 18:40:52,336 INFO Connection check task end + +2025-09-24 18:40:55,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:55,337 INFO Connection check task start + +2025-09-24 18:40:55,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:55,337 INFO Out dated connection ,size=0 + +2025-09-24 18:40:55,337 INFO Connection check task end + +2025-09-24 18:40:58,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:40:58,339 INFO Connection check task start + +2025-09-24 18:40:58,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:40:58,339 INFO Out dated connection ,size=0 + +2025-09-24 18:40:58,339 INFO Connection check task end + +2025-09-24 18:41:01,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:01,342 INFO Connection check task start + +2025-09-24 18:41:01,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:01,342 INFO Out dated connection ,size=0 + +2025-09-24 18:41:01,342 INFO Connection check task end + +2025-09-24 18:41:04,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:04,343 INFO Connection check task start + +2025-09-24 18:41:04,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:04,344 INFO Out dated connection ,size=0 + +2025-09-24 18:41:04,344 INFO Connection check task end + +2025-09-24 18:41:07,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:07,344 INFO Connection check task start + +2025-09-24 18:41:07,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:07,345 INFO Out dated connection ,size=0 + +2025-09-24 18:41:07,345 INFO Connection check task end + +2025-09-24 18:41:10,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:10,347 INFO Connection check task start + +2025-09-24 18:41:10,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:10,347 INFO Out dated connection ,size=0 + +2025-09-24 18:41:10,347 INFO Connection check task end + +2025-09-24 18:41:13,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:13,349 INFO Connection check task start + +2025-09-24 18:41:13,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:13,349 INFO Out dated connection ,size=0 + +2025-09-24 18:41:13,349 INFO Connection check task end + +2025-09-24 18:41:16,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:16,350 INFO Connection check task start + +2025-09-24 18:41:16,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:16,350 INFO Out dated connection ,size=0 + +2025-09-24 18:41:16,350 INFO Connection check task end + +2025-09-24 18:41:19,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:19,350 INFO Connection check task start + +2025-09-24 18:41:19,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:19,350 INFO Out dated connection ,size=0 + +2025-09-24 18:41:19,350 INFO Connection check task end + +2025-09-24 18:41:22,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:22,351 INFO Connection check task start + +2025-09-24 18:41:22,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:22,351 INFO Out dated connection ,size=0 + +2025-09-24 18:41:22,351 INFO Connection check task end + +2025-09-24 18:41:25,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:25,351 INFO Connection check task start + +2025-09-24 18:41:25,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:25,351 INFO Out dated connection ,size=0 + +2025-09-24 18:41:25,351 INFO Connection check task end + +2025-09-24 18:41:28,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:28,352 INFO Connection check task start + +2025-09-24 18:41:28,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:28,352 INFO Out dated connection ,size=0 + +2025-09-24 18:41:28,352 INFO Connection check task end + +2025-09-24 18:41:31,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:31,354 INFO Connection check task start + +2025-09-24 18:41:31,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:31,354 INFO Out dated connection ,size=0 + +2025-09-24 18:41:31,354 INFO Connection check task end + +2025-09-24 18:41:34,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:34,354 INFO Connection check task start + +2025-09-24 18:41:34,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:34,355 INFO Out dated connection ,size=0 + +2025-09-24 18:41:34,355 INFO Connection check task end + +2025-09-24 18:41:37,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:37,355 INFO Connection check task start + +2025-09-24 18:41:37,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:37,355 INFO Out dated connection ,size=0 + +2025-09-24 18:41:37,355 INFO Connection check task end + +2025-09-24 18:41:40,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:40,356 INFO Connection check task start + +2025-09-24 18:41:40,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:40,356 INFO Out dated connection ,size=0 + +2025-09-24 18:41:40,356 INFO Connection check task end + +2025-09-24 18:41:43,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:43,358 INFO Connection check task start + +2025-09-24 18:41:43,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:43,358 INFO Out dated connection ,size=0 + +2025-09-24 18:41:43,358 INFO Connection check task end + +2025-09-24 18:41:46,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:46,358 INFO Connection check task start + +2025-09-24 18:41:46,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:46,359 INFO Out dated connection ,size=0 + +2025-09-24 18:41:46,359 INFO Connection check task end + +2025-09-24 18:41:49,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:49,359 INFO Connection check task start + +2025-09-24 18:41:49,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:49,359 INFO Out dated connection ,size=0 + +2025-09-24 18:41:49,359 INFO Connection check task end + +2025-09-24 18:41:52,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:52,360 INFO Connection check task start + +2025-09-24 18:41:52,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:52,360 INFO Out dated connection ,size=0 + +2025-09-24 18:41:52,360 INFO Connection check task end + +2025-09-24 18:41:55,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:55,360 INFO Connection check task start + +2025-09-24 18:41:55,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:55,360 INFO Out dated connection ,size=0 + +2025-09-24 18:41:55,360 INFO Connection check task end + +2025-09-24 18:41:58,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:41:58,362 INFO Connection check task start + +2025-09-24 18:41:58,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:41:58,363 INFO Out dated connection ,size=0 + +2025-09-24 18:41:58,363 INFO Connection check task end + +2025-09-24 18:42:01,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:01,363 INFO Connection check task start + +2025-09-24 18:42:01,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:01,364 INFO Out dated connection ,size=0 + +2025-09-24 18:42:01,364 INFO Connection check task end + +2025-09-24 18:42:04,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:04,364 INFO Connection check task start + +2025-09-24 18:42:04,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:04,364 INFO Out dated connection ,size=0 + +2025-09-24 18:42:04,364 INFO Connection check task end + +2025-09-24 18:42:07,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:07,366 INFO Connection check task start + +2025-09-24 18:42:07,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:07,366 INFO Out dated connection ,size=0 + +2025-09-24 18:42:07,367 INFO Connection check task end + +2025-09-24 18:42:10,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:10,369 INFO Connection check task start + +2025-09-24 18:42:10,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:10,369 INFO Out dated connection ,size=0 + +2025-09-24 18:42:10,369 INFO Connection check task end + +2025-09-24 18:42:13,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:13,371 INFO Connection check task start + +2025-09-24 18:42:13,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:13,371 INFO Out dated connection ,size=0 + +2025-09-24 18:42:13,371 INFO Connection check task end + +2025-09-24 18:42:16,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:16,372 INFO Connection check task start + +2025-09-24 18:42:16,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:16,372 INFO Out dated connection ,size=0 + +2025-09-24 18:42:16,372 INFO Connection check task end + +2025-09-24 18:42:19,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:19,372 INFO Connection check task start + +2025-09-24 18:42:19,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:19,372 INFO Out dated connection ,size=0 + +2025-09-24 18:42:19,373 INFO Connection check task end + +2025-09-24 18:42:22,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:22,373 INFO Connection check task start + +2025-09-24 18:42:22,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:22,373 INFO Out dated connection ,size=0 + +2025-09-24 18:42:22,373 INFO Connection check task end + +2025-09-24 18:42:25,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:25,375 INFO Connection check task start + +2025-09-24 18:42:25,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:25,375 INFO Out dated connection ,size=0 + +2025-09-24 18:42:25,375 INFO Connection check task end + +2025-09-24 18:42:28,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:28,378 INFO Connection check task start + +2025-09-24 18:42:28,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:28,378 INFO Out dated connection ,size=0 + +2025-09-24 18:42:28,378 INFO Connection check task end + +2025-09-24 18:42:31,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:31,379 INFO Connection check task start + +2025-09-24 18:42:31,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:31,379 INFO Out dated connection ,size=0 + +2025-09-24 18:42:31,379 INFO Connection check task end + +2025-09-24 18:42:34,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:34,379 INFO Connection check task start + +2025-09-24 18:42:34,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:34,379 INFO Out dated connection ,size=0 + +2025-09-24 18:42:34,379 INFO Connection check task end + +2025-09-24 18:42:37,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:37,381 INFO Connection check task start + +2025-09-24 18:42:37,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:37,381 INFO Out dated connection ,size=0 + +2025-09-24 18:42:37,381 INFO Connection check task end + +2025-09-24 18:42:40,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:40,382 INFO Connection check task start + +2025-09-24 18:42:40,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:40,382 INFO Out dated connection ,size=0 + +2025-09-24 18:42:40,382 INFO Connection check task end + +2025-09-24 18:42:43,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:43,383 INFO Connection check task start + +2025-09-24 18:42:43,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:43,383 INFO Out dated connection ,size=0 + +2025-09-24 18:42:43,383 INFO Connection check task end + +2025-09-24 18:42:46,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:46,383 INFO Connection check task start + +2025-09-24 18:42:46,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:46,383 INFO Out dated connection ,size=0 + +2025-09-24 18:42:46,384 INFO Connection check task end + +2025-09-24 18:42:49,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:49,385 INFO Connection check task start + +2025-09-24 18:42:49,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:49,385 INFO Out dated connection ,size=0 + +2025-09-24 18:42:49,385 INFO Connection check task end + +2025-09-24 18:42:52,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:52,385 INFO Connection check task start + +2025-09-24 18:42:52,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:52,385 INFO Out dated connection ,size=0 + +2025-09-24 18:42:52,385 INFO Connection check task end + +2025-09-24 18:42:55,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:55,386 INFO Connection check task start + +2025-09-24 18:42:55,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:55,386 INFO Out dated connection ,size=0 + +2025-09-24 18:42:55,386 INFO Connection check task end + +2025-09-24 18:42:58,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:42:58,386 INFO Connection check task start + +2025-09-24 18:42:58,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:42:58,386 INFO Out dated connection ,size=0 + +2025-09-24 18:42:58,387 INFO Connection check task end + +2025-09-24 18:43:01,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:01,387 INFO Connection check task start + +2025-09-24 18:43:01,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:01,387 INFO Out dated connection ,size=0 + +2025-09-24 18:43:01,387 INFO Connection check task end + +2025-09-24 18:43:04,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:04,388 INFO Connection check task start + +2025-09-24 18:43:04,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:04,388 INFO Out dated connection ,size=0 + +2025-09-24 18:43:04,388 INFO Connection check task end + +2025-09-24 18:43:07,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:07,391 INFO Connection check task start + +2025-09-24 18:43:07,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:07,391 INFO Out dated connection ,size=0 + +2025-09-24 18:43:07,391 INFO Connection check task end + +2025-09-24 18:43:10,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:10,392 INFO Connection check task start + +2025-09-24 18:43:10,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:10,392 INFO Out dated connection ,size=0 + +2025-09-24 18:43:10,392 INFO Connection check task end + +2025-09-24 18:43:13,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:13,392 INFO Connection check task start + +2025-09-24 18:43:13,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:13,392 INFO Out dated connection ,size=0 + +2025-09-24 18:43:13,392 INFO Connection check task end + +2025-09-24 18:43:16,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:16,393 INFO Connection check task start + +2025-09-24 18:43:16,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:16,393 INFO Out dated connection ,size=0 + +2025-09-24 18:43:16,393 INFO Connection check task end + +2025-09-24 18:43:19,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:19,393 INFO Connection check task start + +2025-09-24 18:43:19,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:19,393 INFO Out dated connection ,size=0 + +2025-09-24 18:43:19,393 INFO Connection check task end + +2025-09-24 18:43:22,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:22,394 INFO Connection check task start + +2025-09-24 18:43:22,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:22,394 INFO Out dated connection ,size=0 + +2025-09-24 18:43:22,394 INFO Connection check task end + +2025-09-24 18:43:25,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:25,396 INFO Connection check task start + +2025-09-24 18:43:25,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:25,396 INFO Out dated connection ,size=0 + +2025-09-24 18:43:25,396 INFO Connection check task end + +2025-09-24 18:43:28,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:28,397 INFO Connection check task start + +2025-09-24 18:43:28,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:28,397 INFO Out dated connection ,size=0 + +2025-09-24 18:43:28,397 INFO Connection check task end + +2025-09-24 18:43:31,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:31,397 INFO Connection check task start + +2025-09-24 18:43:31,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:31,398 INFO Out dated connection ,size=0 + +2025-09-24 18:43:31,398 INFO Connection check task end + +2025-09-24 18:43:34,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:34,398 INFO Connection check task start + +2025-09-24 18:43:34,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:34,398 INFO Out dated connection ,size=0 + +2025-09-24 18:43:34,398 INFO Connection check task end + +2025-09-24 18:43:37,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:37,399 INFO Connection check task start + +2025-09-24 18:43:37,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:37,399 INFO Out dated connection ,size=0 + +2025-09-24 18:43:37,399 INFO Connection check task end + +2025-09-24 18:43:40,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:40,399 INFO Connection check task start + +2025-09-24 18:43:40,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:40,399 INFO Out dated connection ,size=0 + +2025-09-24 18:43:40,399 INFO Connection check task end + +2025-09-24 18:43:43,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:43,400 INFO Connection check task start + +2025-09-24 18:43:43,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:43,400 INFO Out dated connection ,size=0 + +2025-09-24 18:43:43,400 INFO Connection check task end + +2025-09-24 18:43:46,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:46,402 INFO Connection check task start + +2025-09-24 18:43:46,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:46,402 INFO Out dated connection ,size=0 + +2025-09-24 18:43:46,402 INFO Connection check task end + +2025-09-24 18:43:49,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:49,402 INFO Connection check task start + +2025-09-24 18:43:49,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:49,402 INFO Out dated connection ,size=0 + +2025-09-24 18:43:49,402 INFO Connection check task end + +2025-09-24 18:43:52,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:52,403 INFO Connection check task start + +2025-09-24 18:43:52,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:52,403 INFO Out dated connection ,size=0 + +2025-09-24 18:43:52,403 INFO Connection check task end + +2025-09-24 18:43:55,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:55,405 INFO Connection check task start + +2025-09-24 18:43:55,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:55,405 INFO Out dated connection ,size=0 + +2025-09-24 18:43:55,405 INFO Connection check task end + +2025-09-24 18:43:58,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:43:58,407 INFO Connection check task start + +2025-09-24 18:43:58,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:43:58,408 INFO Out dated connection ,size=0 + +2025-09-24 18:43:58,408 INFO Connection check task end + +2025-09-24 18:44:01,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:01,408 INFO Connection check task start + +2025-09-24 18:44:01,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:01,409 INFO Out dated connection ,size=0 + +2025-09-24 18:44:01,409 INFO Connection check task end + +2025-09-24 18:44:04,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:04,409 INFO Connection check task start + +2025-09-24 18:44:04,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:04,410 INFO Out dated connection ,size=0 + +2025-09-24 18:44:04,410 INFO Connection check task end + +2025-09-24 18:44:07,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:07,412 INFO Connection check task start + +2025-09-24 18:44:07,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:07,412 INFO Out dated connection ,size=0 + +2025-09-24 18:44:07,412 INFO Connection check task end + +2025-09-24 18:44:10,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:10,414 INFO Connection check task start + +2025-09-24 18:44:10,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:10,414 INFO Out dated connection ,size=0 + +2025-09-24 18:44:10,414 INFO Connection check task end + +2025-09-24 18:44:13,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:13,414 INFO Connection check task start + +2025-09-24 18:44:13,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:13,415 INFO Out dated connection ,size=0 + +2025-09-24 18:44:13,415 INFO Connection check task end + +2025-09-24 18:44:16,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:16,415 INFO Connection check task start + +2025-09-24 18:44:16,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:16,415 INFO Out dated connection ,size=0 + +2025-09-24 18:44:16,415 INFO Connection check task end + +2025-09-24 18:44:19,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:19,417 INFO Connection check task start + +2025-09-24 18:44:19,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:19,418 INFO Out dated connection ,size=0 + +2025-09-24 18:44:19,418 INFO Connection check task end + +2025-09-24 18:44:22,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:22,418 INFO Connection check task start + +2025-09-24 18:44:22,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:22,419 INFO Out dated connection ,size=0 + +2025-09-24 18:44:22,419 INFO Connection check task end + +2025-09-24 18:44:25,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:25,420 INFO Connection check task start + +2025-09-24 18:44:25,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:25,420 INFO Out dated connection ,size=0 + +2025-09-24 18:44:25,420 INFO Connection check task end + +2025-09-24 18:44:28,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:28,421 INFO Connection check task start + +2025-09-24 18:44:28,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:28,421 INFO Out dated connection ,size=0 + +2025-09-24 18:44:28,421 INFO Connection check task end + +2025-09-24 18:44:31,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:31,421 INFO Connection check task start + +2025-09-24 18:44:31,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:31,422 INFO Out dated connection ,size=0 + +2025-09-24 18:44:31,422 INFO Connection check task end + +2025-09-24 18:44:34,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:34,423 INFO Connection check task start + +2025-09-24 18:44:34,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:34,423 INFO Out dated connection ,size=0 + +2025-09-24 18:44:34,423 INFO Connection check task end + +2025-09-24 18:44:37,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:37,425 INFO Connection check task start + +2025-09-24 18:44:37,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:37,425 INFO Out dated connection ,size=0 + +2025-09-24 18:44:37,425 INFO Connection check task end + +2025-09-24 18:44:40,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:40,426 INFO Connection check task start + +2025-09-24 18:44:40,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:40,426 INFO Out dated connection ,size=0 + +2025-09-24 18:44:40,426 INFO Connection check task end + +2025-09-24 18:44:43,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:43,428 INFO Connection check task start + +2025-09-24 18:44:43,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:43,428 INFO Out dated connection ,size=0 + +2025-09-24 18:44:43,428 INFO Connection check task end + +2025-09-24 18:44:46,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:46,429 INFO Connection check task start + +2025-09-24 18:44:46,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:46,429 INFO Out dated connection ,size=0 + +2025-09-24 18:44:46,429 INFO Connection check task end + +2025-09-24 18:44:49,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:49,429 INFO Connection check task start + +2025-09-24 18:44:49,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:49,430 INFO Out dated connection ,size=0 + +2025-09-24 18:44:49,430 INFO Connection check task end + +2025-09-24 18:44:52,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:52,432 INFO Connection check task start + +2025-09-24 18:44:52,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:52,432 INFO Out dated connection ,size=0 + +2025-09-24 18:44:52,432 INFO Connection check task end + +2025-09-24 18:44:55,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:55,434 INFO Connection check task start + +2025-09-24 18:44:55,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:55,434 INFO Out dated connection ,size=0 + +2025-09-24 18:44:55,434 INFO Connection check task end + +2025-09-24 18:44:58,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:44:58,436 INFO Connection check task start + +2025-09-24 18:44:58,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:44:58,436 INFO Out dated connection ,size=0 + +2025-09-24 18:44:58,436 INFO Connection check task end + +2025-09-24 18:45:01,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:01,437 INFO Connection check task start + +2025-09-24 18:45:01,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:01,437 INFO Out dated connection ,size=0 + +2025-09-24 18:45:01,437 INFO Connection check task end + +2025-09-24 18:45:04,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:04,439 INFO Connection check task start + +2025-09-24 18:45:04,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:04,439 INFO Out dated connection ,size=0 + +2025-09-24 18:45:04,439 INFO Connection check task end + +2025-09-24 18:45:07,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:07,440 INFO Connection check task start + +2025-09-24 18:45:07,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:07,440 INFO Out dated connection ,size=0 + +2025-09-24 18:45:07,440 INFO Connection check task end + +2025-09-24 18:45:10,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:10,442 INFO Connection check task start + +2025-09-24 18:45:10,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:10,442 INFO Out dated connection ,size=0 + +2025-09-24 18:45:10,442 INFO Connection check task end + +2025-09-24 18:45:13,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:13,444 INFO Connection check task start + +2025-09-24 18:45:13,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:13,444 INFO Out dated connection ,size=0 + +2025-09-24 18:45:13,445 INFO Connection check task end + +2025-09-24 18:45:16,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:16,446 INFO Connection check task start + +2025-09-24 18:45:16,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:16,446 INFO Out dated connection ,size=0 + +2025-09-24 18:45:16,446 INFO Connection check task end + +2025-09-24 18:45:19,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:19,447 INFO Connection check task start + +2025-09-24 18:45:19,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:19,447 INFO Out dated connection ,size=0 + +2025-09-24 18:45:19,447 INFO Connection check task end + +2025-09-24 18:45:22,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:22,447 INFO Connection check task start + +2025-09-24 18:45:22,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:22,448 INFO Out dated connection ,size=0 + +2025-09-24 18:45:22,448 INFO Connection check task end + +2025-09-24 18:45:25,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:25,449 INFO Connection check task start + +2025-09-24 18:45:25,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:25,450 INFO Out dated connection ,size=0 + +2025-09-24 18:45:25,450 INFO Connection check task end + +2025-09-24 18:45:28,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:28,450 INFO Connection check task start + +2025-09-24 18:45:28,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:28,450 INFO Out dated connection ,size=0 + +2025-09-24 18:45:28,450 INFO Connection check task end + +2025-09-24 18:45:31,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:31,450 INFO Connection check task start + +2025-09-24 18:45:31,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:31,451 INFO Out dated connection ,size=0 + +2025-09-24 18:45:31,451 INFO Connection check task end + +2025-09-24 18:45:34,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:34,452 INFO Connection check task start + +2025-09-24 18:45:34,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:34,453 INFO Out dated connection ,size=0 + +2025-09-24 18:45:34,453 INFO Connection check task end + +2025-09-24 18:45:37,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:37,453 INFO Connection check task start + +2025-09-24 18:45:37,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:37,453 INFO Out dated connection ,size=0 + +2025-09-24 18:45:37,453 INFO Connection check task end + +2025-09-24 18:45:40,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:40,454 INFO Connection check task start + +2025-09-24 18:45:40,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:40,454 INFO Out dated connection ,size=0 + +2025-09-24 18:45:40,454 INFO Connection check task end + +2025-09-24 18:45:43,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:43,456 INFO Connection check task start + +2025-09-24 18:45:43,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:43,456 INFO Out dated connection ,size=0 + +2025-09-24 18:45:43,456 INFO Connection check task end + +2025-09-24 18:45:46,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:46,458 INFO Connection check task start + +2025-09-24 18:45:46,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:46,458 INFO Out dated connection ,size=0 + +2025-09-24 18:45:46,458 INFO Connection check task end + +2025-09-24 18:45:49,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:49,459 INFO Connection check task start + +2025-09-24 18:45:49,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:49,459 INFO Out dated connection ,size=0 + +2025-09-24 18:45:49,459 INFO Connection check task end + +2025-09-24 18:45:52,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:52,461 INFO Connection check task start + +2025-09-24 18:45:52,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:52,461 INFO Out dated connection ,size=0 + +2025-09-24 18:45:52,461 INFO Connection check task end + +2025-09-24 18:45:55,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:55,462 INFO Connection check task start + +2025-09-24 18:45:55,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:55,462 INFO Out dated connection ,size=0 + +2025-09-24 18:45:55,462 INFO Connection check task end + +2025-09-24 18:45:58,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:45:58,464 INFO Connection check task start + +2025-09-24 18:45:58,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:45:58,464 INFO Out dated connection ,size=0 + +2025-09-24 18:45:58,464 INFO Connection check task end + +2025-09-24 18:46:01,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:01,464 INFO Connection check task start + +2025-09-24 18:46:01,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:01,465 INFO Out dated connection ,size=0 + +2025-09-24 18:46:01,465 INFO Connection check task end + +2025-09-24 18:46:04,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:04,466 INFO Connection check task start + +2025-09-24 18:46:04,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:04,466 INFO Out dated connection ,size=0 + +2025-09-24 18:46:04,467 INFO Connection check task end + +2025-09-24 18:46:07,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:07,469 INFO Connection check task start + +2025-09-24 18:46:07,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:07,469 INFO Out dated connection ,size=0 + +2025-09-24 18:46:07,469 INFO Connection check task end + +2025-09-24 18:46:10,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:10,469 INFO Connection check task start + +2025-09-24 18:46:10,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:10,469 INFO Out dated connection ,size=0 + +2025-09-24 18:46:10,469 INFO Connection check task end + +2025-09-24 18:46:13,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:13,469 INFO Connection check task start + +2025-09-24 18:46:13,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:13,469 INFO Out dated connection ,size=0 + +2025-09-24 18:46:13,469 INFO Connection check task end + +2025-09-24 18:46:16,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:16,470 INFO Connection check task start + +2025-09-24 18:46:16,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:16,470 INFO Out dated connection ,size=0 + +2025-09-24 18:46:16,470 INFO Connection check task end + +2025-09-24 18:46:19,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:19,470 INFO Connection check task start + +2025-09-24 18:46:19,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:19,470 INFO Out dated connection ,size=0 + +2025-09-24 18:46:19,470 INFO Connection check task end + +2025-09-24 18:46:22,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:22,471 INFO Connection check task start + +2025-09-24 18:46:22,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:22,472 INFO Out dated connection ,size=0 + +2025-09-24 18:46:22,472 INFO Connection check task end + +2025-09-24 18:46:25,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:25,472 INFO Connection check task start + +2025-09-24 18:46:25,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:25,472 INFO Out dated connection ,size=0 + +2025-09-24 18:46:25,472 INFO Connection check task end + +2025-09-24 18:46:28,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:28,475 INFO Connection check task start + +2025-09-24 18:46:28,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:28,475 INFO Out dated connection ,size=0 + +2025-09-24 18:46:28,475 INFO Connection check task end + +2025-09-24 18:46:31,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:31,475 INFO Connection check task start + +2025-09-24 18:46:31,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:31,476 INFO Out dated connection ,size=0 + +2025-09-24 18:46:31,476 INFO Connection check task end + +2025-09-24 18:46:34,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:34,476 INFO Connection check task start + +2025-09-24 18:46:34,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:34,476 INFO Out dated connection ,size=0 + +2025-09-24 18:46:34,476 INFO Connection check task end + +2025-09-24 18:46:37,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:37,478 INFO Connection check task start + +2025-09-24 18:46:37,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:37,478 INFO Out dated connection ,size=0 + +2025-09-24 18:46:37,478 INFO Connection check task end + +2025-09-24 18:46:40,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:40,479 INFO Connection check task start + +2025-09-24 18:46:40,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:40,479 INFO Out dated connection ,size=0 + +2025-09-24 18:46:40,480 INFO Connection check task end + +2025-09-24 18:46:43,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:43,481 INFO Connection check task start + +2025-09-24 18:46:43,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:43,482 INFO Out dated connection ,size=0 + +2025-09-24 18:46:43,482 INFO Connection check task end + +2025-09-24 18:46:46,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:46,482 INFO Connection check task start + +2025-09-24 18:46:46,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:46,482 INFO Out dated connection ,size=0 + +2025-09-24 18:46:46,482 INFO Connection check task end + +2025-09-24 18:46:49,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:49,484 INFO Connection check task start + +2025-09-24 18:46:49,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:49,484 INFO Out dated connection ,size=0 + +2025-09-24 18:46:49,484 INFO Connection check task end + +2025-09-24 18:46:52,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:52,486 INFO Connection check task start + +2025-09-24 18:46:52,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:52,486 INFO Out dated connection ,size=0 + +2025-09-24 18:46:52,486 INFO Connection check task end + +2025-09-24 18:46:55,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:55,486 INFO Connection check task start + +2025-09-24 18:46:55,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:55,487 INFO Out dated connection ,size=0 + +2025-09-24 18:46:55,487 INFO Connection check task end + +2025-09-24 18:46:58,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:46:58,487 INFO Connection check task start + +2025-09-24 18:46:58,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:46:58,487 INFO Out dated connection ,size=0 + +2025-09-24 18:46:58,487 INFO Connection check task end + +2025-09-24 18:47:01,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:01,489 INFO Connection check task start + +2025-09-24 18:47:01,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:01,489 INFO Out dated connection ,size=0 + +2025-09-24 18:47:01,489 INFO Connection check task end + +2025-09-24 18:47:04,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:04,491 INFO Connection check task start + +2025-09-24 18:47:04,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:04,491 INFO Out dated connection ,size=0 + +2025-09-24 18:47:04,491 INFO Connection check task end + +2025-09-24 18:47:07,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:07,492 INFO Connection check task start + +2025-09-24 18:47:07,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:07,493 INFO Out dated connection ,size=0 + +2025-09-24 18:47:07,493 INFO Connection check task end + +2025-09-24 18:47:10,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:10,493 INFO Connection check task start + +2025-09-24 18:47:10,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:10,493 INFO Out dated connection ,size=0 + +2025-09-24 18:47:10,493 INFO Connection check task end + +2025-09-24 18:47:13,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:13,494 INFO Connection check task start + +2025-09-24 18:47:13,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:13,494 INFO Out dated connection ,size=0 + +2025-09-24 18:47:13,494 INFO Connection check task end + +2025-09-24 18:47:16,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:16,495 INFO Connection check task start + +2025-09-24 18:47:16,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:16,495 INFO Out dated connection ,size=0 + +2025-09-24 18:47:16,495 INFO Connection check task end + +2025-09-24 18:47:19,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:19,497 INFO Connection check task start + +2025-09-24 18:47:19,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:19,497 INFO Out dated connection ,size=0 + +2025-09-24 18:47:19,498 INFO Connection check task end + +2025-09-24 18:47:22,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:22,499 INFO Connection check task start + +2025-09-24 18:47:22,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:22,499 INFO Out dated connection ,size=0 + +2025-09-24 18:47:22,499 INFO Connection check task end + +2025-09-24 18:47:25,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:25,500 INFO Connection check task start + +2025-09-24 18:47:25,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:25,500 INFO Out dated connection ,size=0 + +2025-09-24 18:47:25,500 INFO Connection check task end + +2025-09-24 18:47:28,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:28,501 INFO Connection check task start + +2025-09-24 18:47:28,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:28,501 INFO Out dated connection ,size=0 + +2025-09-24 18:47:28,501 INFO Connection check task end + +2025-09-24 18:47:31,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:31,501 INFO Connection check task start + +2025-09-24 18:47:31,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:31,502 INFO Out dated connection ,size=0 + +2025-09-24 18:47:31,502 INFO Connection check task end + +2025-09-24 18:47:34,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:34,503 INFO Connection check task start + +2025-09-24 18:47:34,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:34,503 INFO Out dated connection ,size=0 + +2025-09-24 18:47:34,503 INFO Connection check task end + +2025-09-24 18:47:37,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:37,504 INFO Connection check task start + +2025-09-24 18:47:37,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:37,504 INFO Out dated connection ,size=0 + +2025-09-24 18:47:37,504 INFO Connection check task end + +2025-09-24 18:47:40,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:40,506 INFO Connection check task start + +2025-09-24 18:47:40,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:40,506 INFO Out dated connection ,size=0 + +2025-09-24 18:47:40,507 INFO Connection check task end + +2025-09-24 18:47:43,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:43,508 INFO Connection check task start + +2025-09-24 18:47:43,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:43,508 INFO Out dated connection ,size=0 + +2025-09-24 18:47:43,508 INFO Connection check task end + +2025-09-24 18:47:46,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:46,509 INFO Connection check task start + +2025-09-24 18:47:46,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:46,509 INFO Out dated connection ,size=0 + +2025-09-24 18:47:46,509 INFO Connection check task end + +2025-09-24 18:47:49,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:49,510 INFO Connection check task start + +2025-09-24 18:47:49,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:49,510 INFO Out dated connection ,size=0 + +2025-09-24 18:47:49,510 INFO Connection check task end + +2025-09-24 18:47:52,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:52,512 INFO Connection check task start + +2025-09-24 18:47:52,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:52,513 INFO Out dated connection ,size=0 + +2025-09-24 18:47:52,513 INFO Connection check task end + +2025-09-24 18:47:55,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:55,515 INFO Connection check task start + +2025-09-24 18:47:55,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:55,515 INFO Out dated connection ,size=0 + +2025-09-24 18:47:55,515 INFO Connection check task end + +2025-09-24 18:47:58,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:47:58,517 INFO Connection check task start + +2025-09-24 18:47:58,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:47:58,517 INFO Out dated connection ,size=0 + +2025-09-24 18:47:58,517 INFO Connection check task end + +2025-09-24 18:48:01,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:01,520 INFO Connection check task start + +2025-09-24 18:48:01,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:01,520 INFO Out dated connection ,size=0 + +2025-09-24 18:48:01,520 INFO Connection check task end + +2025-09-24 18:48:04,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:04,520 INFO Connection check task start + +2025-09-24 18:48:04,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:04,521 INFO Out dated connection ,size=0 + +2025-09-24 18:48:04,521 INFO Connection check task end + +2025-09-24 18:48:07,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:07,521 INFO Connection check task start + +2025-09-24 18:48:07,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:07,521 INFO Out dated connection ,size=0 + +2025-09-24 18:48:07,521 INFO Connection check task end + +2025-09-24 18:48:10,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:10,524 INFO Connection check task start + +2025-09-24 18:48:10,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:10,524 INFO Out dated connection ,size=0 + +2025-09-24 18:48:10,524 INFO Connection check task end + +2025-09-24 18:48:13,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:13,526 INFO Connection check task start + +2025-09-24 18:48:13,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:13,526 INFO Out dated connection ,size=0 + +2025-09-24 18:48:13,526 INFO Connection check task end + +2025-09-24 18:48:16,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:16,527 INFO Connection check task start + +2025-09-24 18:48:16,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:16,527 INFO Out dated connection ,size=0 + +2025-09-24 18:48:16,527 INFO Connection check task end + +2025-09-24 18:48:19,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:19,529 INFO Connection check task start + +2025-09-24 18:48:19,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:19,529 INFO Out dated connection ,size=0 + +2025-09-24 18:48:19,529 INFO Connection check task end + +2025-09-24 18:48:22,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:22,532 INFO Connection check task start + +2025-09-24 18:48:22,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:22,532 INFO Out dated connection ,size=0 + +2025-09-24 18:48:22,532 INFO Connection check task end + +2025-09-24 18:48:25,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:25,533 INFO Connection check task start + +2025-09-24 18:48:25,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:25,534 INFO Out dated connection ,size=0 + +2025-09-24 18:48:25,534 INFO Connection check task end + +2025-09-24 18:48:28,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:28,535 INFO Connection check task start + +2025-09-24 18:48:28,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:28,536 INFO Out dated connection ,size=0 + +2025-09-24 18:48:28,536 INFO Connection check task end + +2025-09-24 18:48:31,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:31,537 INFO Connection check task start + +2025-09-24 18:48:31,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:31,537 INFO Out dated connection ,size=0 + +2025-09-24 18:48:31,538 INFO Connection check task end + +2025-09-24 18:48:34,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:34,538 INFO Connection check task start + +2025-09-24 18:48:34,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:34,538 INFO Out dated connection ,size=0 + +2025-09-24 18:48:34,538 INFO Connection check task end + +2025-09-24 18:48:37,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:37,539 INFO Connection check task start + +2025-09-24 18:48:37,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:37,539 INFO Out dated connection ,size=0 + +2025-09-24 18:48:37,539 INFO Connection check task end + +2025-09-24 18:48:40,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:40,542 INFO Connection check task start + +2025-09-24 18:48:40,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:40,542 INFO Out dated connection ,size=0 + +2025-09-24 18:48:40,542 INFO Connection check task end + +2025-09-24 18:48:43,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:43,544 INFO Connection check task start + +2025-09-24 18:48:43,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:43,545 INFO Out dated connection ,size=0 + +2025-09-24 18:48:43,545 INFO Connection check task end + +2025-09-24 18:48:46,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:46,546 INFO Connection check task start + +2025-09-24 18:48:46,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:46,546 INFO Out dated connection ,size=0 + +2025-09-24 18:48:46,546 INFO Connection check task end + +2025-09-24 18:48:49,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:49,548 INFO Connection check task start + +2025-09-24 18:48:49,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:49,548 INFO Out dated connection ,size=0 + +2025-09-24 18:48:49,548 INFO Connection check task end + +2025-09-24 18:48:52,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:52,549 INFO Connection check task start + +2025-09-24 18:48:52,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:52,549 INFO Out dated connection ,size=0 + +2025-09-24 18:48:52,549 INFO Connection check task end + +2025-09-24 18:48:55,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:55,549 INFO Connection check task start + +2025-09-24 18:48:55,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:55,550 INFO Out dated connection ,size=0 + +2025-09-24 18:48:55,550 INFO Connection check task end + +2025-09-24 18:48:58,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:48:58,550 INFO Connection check task start + +2025-09-24 18:48:58,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:48:58,550 INFO Out dated connection ,size=0 + +2025-09-24 18:48:58,550 INFO Connection check task end + +2025-09-24 18:49:01,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:01,551 INFO Connection check task start + +2025-09-24 18:49:01,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:01,551 INFO Out dated connection ,size=0 + +2025-09-24 18:49:01,551 INFO Connection check task end + +2025-09-24 18:49:04,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:04,551 INFO Connection check task start + +2025-09-24 18:49:04,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:04,551 INFO Out dated connection ,size=0 + +2025-09-24 18:49:04,551 INFO Connection check task end + +2025-09-24 18:49:07,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:07,551 INFO Connection check task start + +2025-09-24 18:49:07,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:07,551 INFO Out dated connection ,size=0 + +2025-09-24 18:49:07,551 INFO Connection check task end + +2025-09-24 18:49:10,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:10,552 INFO Connection check task start + +2025-09-24 18:49:10,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:10,552 INFO Out dated connection ,size=0 + +2025-09-24 18:49:10,552 INFO Connection check task end + +2025-09-24 18:49:13,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:13,552 INFO Connection check task start + +2025-09-24 18:49:13,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:13,552 INFO Out dated connection ,size=0 + +2025-09-24 18:49:13,552 INFO Connection check task end + +2025-09-24 18:49:16,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:16,553 INFO Connection check task start + +2025-09-24 18:49:16,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:16,553 INFO Out dated connection ,size=0 + +2025-09-24 18:49:16,553 INFO Connection check task end + +2025-09-24 18:49:19,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:19,554 INFO Connection check task start + +2025-09-24 18:49:19,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:19,554 INFO Out dated connection ,size=0 + +2025-09-24 18:49:19,554 INFO Connection check task end + +2025-09-24 18:49:22,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:22,556 INFO Connection check task start + +2025-09-24 18:49:22,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:22,556 INFO Out dated connection ,size=0 + +2025-09-24 18:49:22,556 INFO Connection check task end + +2025-09-24 18:49:25,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:25,558 INFO Connection check task start + +2025-09-24 18:49:25,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:25,558 INFO Out dated connection ,size=0 + +2025-09-24 18:49:25,558 INFO Connection check task end + +2025-09-24 18:49:28,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:28,558 INFO Connection check task start + +2025-09-24 18:49:28,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:28,558 INFO Out dated connection ,size=0 + +2025-09-24 18:49:28,558 INFO Connection check task end + +2025-09-24 18:49:31,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:31,558 INFO Connection check task start + +2025-09-24 18:49:31,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:31,559 INFO Out dated connection ,size=0 + +2025-09-24 18:49:31,559 INFO Connection check task end + +2025-09-24 18:49:34,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:34,559 INFO Connection check task start + +2025-09-24 18:49:34,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:34,559 INFO Out dated connection ,size=0 + +2025-09-24 18:49:34,559 INFO Connection check task end + +2025-09-24 18:49:37,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:37,561 INFO Connection check task start + +2025-09-24 18:49:37,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:37,561 INFO Out dated connection ,size=0 + +2025-09-24 18:49:37,561 INFO Connection check task end + +2025-09-24 18:49:40,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:40,563 INFO Connection check task start + +2025-09-24 18:49:40,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:40,563 INFO Out dated connection ,size=0 + +2025-09-24 18:49:40,563 INFO Connection check task end + +2025-09-24 18:49:43,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:43,564 INFO Connection check task start + +2025-09-24 18:49:43,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:43,564 INFO Out dated connection ,size=0 + +2025-09-24 18:49:43,564 INFO Connection check task end + +2025-09-24 18:49:46,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:46,566 INFO Connection check task start + +2025-09-24 18:49:46,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:46,566 INFO Out dated connection ,size=0 + +2025-09-24 18:49:46,566 INFO Connection check task end + +2025-09-24 18:49:49,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:49,568 INFO Connection check task start + +2025-09-24 18:49:49,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:49,568 INFO Out dated connection ,size=0 + +2025-09-24 18:49:49,568 INFO Connection check task end + +2025-09-24 18:49:52,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:52,569 INFO Connection check task start + +2025-09-24 18:49:52,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:52,569 INFO Out dated connection ,size=0 + +2025-09-24 18:49:52,569 INFO Connection check task end + +2025-09-24 18:49:55,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:55,569 INFO Connection check task start + +2025-09-24 18:49:55,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:55,569 INFO Out dated connection ,size=0 + +2025-09-24 18:49:55,569 INFO Connection check task end + +2025-09-24 18:49:58,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:49:58,571 INFO Connection check task start + +2025-09-24 18:49:58,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:49:58,571 INFO Out dated connection ,size=0 + +2025-09-24 18:49:58,571 INFO Connection check task end + +2025-09-24 18:50:01,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:01,571 INFO Connection check task start + +2025-09-24 18:50:01,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:01,571 INFO Out dated connection ,size=0 + +2025-09-24 18:50:01,571 INFO Connection check task end + +2025-09-24 18:50:04,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:04,572 INFO Connection check task start + +2025-09-24 18:50:04,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:04,572 INFO Out dated connection ,size=0 + +2025-09-24 18:50:04,572 INFO Connection check task end + +2025-09-24 18:50:07,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:07,573 INFO Connection check task start + +2025-09-24 18:50:07,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:07,573 INFO Out dated connection ,size=0 + +2025-09-24 18:50:07,573 INFO Connection check task end + +2025-09-24 18:50:10,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:10,573 INFO Connection check task start + +2025-09-24 18:50:10,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:10,574 INFO Out dated connection ,size=0 + +2025-09-24 18:50:10,574 INFO Connection check task end + +2025-09-24 18:50:13,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:13,576 INFO Connection check task start + +2025-09-24 18:50:13,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:13,576 INFO Out dated connection ,size=0 + +2025-09-24 18:50:13,576 INFO Connection check task end + +2025-09-24 18:50:16,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:16,577 INFO Connection check task start + +2025-09-24 18:50:16,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:16,577 INFO Out dated connection ,size=0 + +2025-09-24 18:50:16,577 INFO Connection check task end + +2025-09-24 18:50:19,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:19,579 INFO Connection check task start + +2025-09-24 18:50:19,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:19,579 INFO Out dated connection ,size=0 + +2025-09-24 18:50:19,579 INFO Connection check task end + +2025-09-24 18:50:22,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:22,579 INFO Connection check task start + +2025-09-24 18:50:22,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:22,579 INFO Out dated connection ,size=0 + +2025-09-24 18:50:22,579 INFO Connection check task end + +2025-09-24 18:50:25,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:25,581 INFO Connection check task start + +2025-09-24 18:50:25,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:25,581 INFO Out dated connection ,size=0 + +2025-09-24 18:50:25,581 INFO Connection check task end + +2025-09-24 18:50:28,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:28,581 INFO Connection check task start + +2025-09-24 18:50:28,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:28,582 INFO Out dated connection ,size=0 + +2025-09-24 18:50:28,582 INFO Connection check task end + +2025-09-24 18:50:31,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:31,584 INFO Connection check task start + +2025-09-24 18:50:31,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:31,584 INFO Out dated connection ,size=0 + +2025-09-24 18:50:31,584 INFO Connection check task end + +2025-09-24 18:50:34,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:34,584 INFO Connection check task start + +2025-09-24 18:50:34,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:34,584 INFO Out dated connection ,size=0 + +2025-09-24 18:50:34,584 INFO Connection check task end + +2025-09-24 18:50:37,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:37,587 INFO Connection check task start + +2025-09-24 18:50:37,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:37,587 INFO Out dated connection ,size=0 + +2025-09-24 18:50:37,587 INFO Connection check task end + +2025-09-24 18:50:40,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:40,587 INFO Connection check task start + +2025-09-24 18:50:40,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:40,587 INFO Out dated connection ,size=0 + +2025-09-24 18:50:40,587 INFO Connection check task end + +2025-09-24 18:50:43,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:43,588 INFO Connection check task start + +2025-09-24 18:50:43,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:43,588 INFO Out dated connection ,size=0 + +2025-09-24 18:50:43,588 INFO Connection check task end + +2025-09-24 18:50:46,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:46,590 INFO Connection check task start + +2025-09-24 18:50:46,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:46,591 INFO Out dated connection ,size=0 + +2025-09-24 18:50:46,591 INFO Connection check task end + +2025-09-24 18:50:49,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:49,593 INFO Connection check task start + +2025-09-24 18:50:49,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:49,593 INFO Out dated connection ,size=0 + +2025-09-24 18:50:49,593 INFO Connection check task end + +2025-09-24 18:50:52,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:52,595 INFO Connection check task start + +2025-09-24 18:50:52,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:52,595 INFO Out dated connection ,size=0 + +2025-09-24 18:50:52,595 INFO Connection check task end + +2025-09-24 18:50:55,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:55,597 INFO Connection check task start + +2025-09-24 18:50:55,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:55,598 INFO Out dated connection ,size=0 + +2025-09-24 18:50:55,598 INFO Connection check task end + +2025-09-24 18:50:58,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:50:58,599 INFO Connection check task start + +2025-09-24 18:50:58,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:50:58,599 INFO Out dated connection ,size=0 + +2025-09-24 18:50:58,599 INFO Connection check task end + +2025-09-24 18:51:01,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:01,601 INFO Connection check task start + +2025-09-24 18:51:01,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:01,601 INFO Out dated connection ,size=0 + +2025-09-24 18:51:01,601 INFO Connection check task end + +2025-09-24 18:51:04,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:04,602 INFO Connection check task start + +2025-09-24 18:51:04,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:04,603 INFO Out dated connection ,size=0 + +2025-09-24 18:51:04,603 INFO Connection check task end + +2025-09-24 18:51:07,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:07,605 INFO Connection check task start + +2025-09-24 18:51:07,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:07,605 INFO Out dated connection ,size=0 + +2025-09-24 18:51:07,605 INFO Connection check task end + +2025-09-24 18:51:10,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:10,606 INFO Connection check task start + +2025-09-24 18:51:10,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:10,606 INFO Out dated connection ,size=0 + +2025-09-24 18:51:10,606 INFO Connection check task end + +2025-09-24 18:51:13,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:13,607 INFO Connection check task start + +2025-09-24 18:51:13,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:13,608 INFO Out dated connection ,size=0 + +2025-09-24 18:51:13,608 INFO Connection check task end + +2025-09-24 18:51:16,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:16,608 INFO Connection check task start + +2025-09-24 18:51:16,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:16,608 INFO Out dated connection ,size=0 + +2025-09-24 18:51:16,608 INFO Connection check task end + +2025-09-24 18:51:19,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:19,610 INFO Connection check task start + +2025-09-24 18:51:19,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:19,610 INFO Out dated connection ,size=0 + +2025-09-24 18:51:19,610 INFO Connection check task end + +2025-09-24 18:51:22,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:22,610 INFO Connection check task start + +2025-09-24 18:51:22,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:22,611 INFO Out dated connection ,size=0 + +2025-09-24 18:51:22,611 INFO Connection check task end + +2025-09-24 18:51:25,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:25,613 INFO Connection check task start + +2025-09-24 18:51:25,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:25,613 INFO Out dated connection ,size=0 + +2025-09-24 18:51:25,613 INFO Connection check task end + +2025-09-24 18:51:28,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:28,615 INFO Connection check task start + +2025-09-24 18:51:28,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:28,615 INFO Out dated connection ,size=0 + +2025-09-24 18:51:28,615 INFO Connection check task end + +2025-09-24 18:51:31,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:31,616 INFO Connection check task start + +2025-09-24 18:51:31,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:31,616 INFO Out dated connection ,size=0 + +2025-09-24 18:51:31,616 INFO Connection check task end + +2025-09-24 18:51:34,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:34,618 INFO Connection check task start + +2025-09-24 18:51:34,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:34,618 INFO Out dated connection ,size=0 + +2025-09-24 18:51:34,618 INFO Connection check task end + +2025-09-24 18:51:37,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:37,621 INFO Connection check task start + +2025-09-24 18:51:37,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:37,621 INFO Out dated connection ,size=0 + +2025-09-24 18:51:37,621 INFO Connection check task end + +2025-09-24 18:51:40,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:40,622 INFO Connection check task start + +2025-09-24 18:51:40,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:40,622 INFO Out dated connection ,size=0 + +2025-09-24 18:51:40,622 INFO Connection check task end + +2025-09-24 18:51:43,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:43,623 INFO Connection check task start + +2025-09-24 18:51:43,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:43,623 INFO Out dated connection ,size=0 + +2025-09-24 18:51:43,623 INFO Connection check task end + +2025-09-24 18:51:46,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:46,625 INFO Connection check task start + +2025-09-24 18:51:46,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:46,626 INFO Out dated connection ,size=0 + +2025-09-24 18:51:46,626 INFO Connection check task end + +2025-09-24 18:51:49,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:49,626 INFO Connection check task start + +2025-09-24 18:51:49,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:49,626 INFO Out dated connection ,size=0 + +2025-09-24 18:51:49,626 INFO Connection check task end + +2025-09-24 18:51:52,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:52,626 INFO Connection check task start + +2025-09-24 18:51:52,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:52,627 INFO Out dated connection ,size=0 + +2025-09-24 18:51:52,627 INFO Connection check task end + +2025-09-24 18:51:55,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:55,628 INFO Connection check task start + +2025-09-24 18:51:55,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:55,628 INFO Out dated connection ,size=0 + +2025-09-24 18:51:55,628 INFO Connection check task end + +2025-09-24 18:51:58,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:51:58,630 INFO Connection check task start + +2025-09-24 18:51:58,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:51:58,630 INFO Out dated connection ,size=0 + +2025-09-24 18:51:58,631 INFO Connection check task end + +2025-09-24 18:52:01,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:01,631 INFO Connection check task start + +2025-09-24 18:52:01,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:01,631 INFO Out dated connection ,size=0 + +2025-09-24 18:52:01,631 INFO Connection check task end + +2025-09-24 18:52:04,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:04,633 INFO Connection check task start + +2025-09-24 18:52:04,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:04,633 INFO Out dated connection ,size=0 + +2025-09-24 18:52:04,633 INFO Connection check task end + +2025-09-24 18:52:07,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:07,633 INFO Connection check task start + +2025-09-24 18:52:07,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:07,633 INFO Out dated connection ,size=0 + +2025-09-24 18:52:07,634 INFO Connection check task end + +2025-09-24 18:52:10,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:10,636 INFO Connection check task start + +2025-09-24 18:52:10,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:10,636 INFO Out dated connection ,size=0 + +2025-09-24 18:52:10,636 INFO Connection check task end + +2025-09-24 18:52:13,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:13,636 INFO Connection check task start + +2025-09-24 18:52:13,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:13,636 INFO Out dated connection ,size=0 + +2025-09-24 18:52:13,636 INFO Connection check task end + +2025-09-24 18:52:16,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:16,637 INFO Connection check task start + +2025-09-24 18:52:16,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:16,637 INFO Out dated connection ,size=0 + +2025-09-24 18:52:16,637 INFO Connection check task end + +2025-09-24 18:52:19,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:19,638 INFO Connection check task start + +2025-09-24 18:52:19,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:19,638 INFO Out dated connection ,size=0 + +2025-09-24 18:52:19,638 INFO Connection check task end + +2025-09-24 18:52:22,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:22,638 INFO Connection check task start + +2025-09-24 18:52:22,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:22,638 INFO Out dated connection ,size=0 + +2025-09-24 18:52:22,638 INFO Connection check task end + +2025-09-24 18:52:25,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:25,639 INFO Connection check task start + +2025-09-24 18:52:25,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:25,639 INFO Out dated connection ,size=0 + +2025-09-24 18:52:25,639 INFO Connection check task end + +2025-09-24 18:52:28,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:28,639 INFO Connection check task start + +2025-09-24 18:52:28,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:28,639 INFO Out dated connection ,size=0 + +2025-09-24 18:52:28,639 INFO Connection check task end + +2025-09-24 18:52:31,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:31,640 INFO Connection check task start + +2025-09-24 18:52:31,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:31,640 INFO Out dated connection ,size=0 + +2025-09-24 18:52:31,640 INFO Connection check task end + +2025-09-24 18:52:34,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:34,641 INFO Connection check task start + +2025-09-24 18:52:34,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:34,641 INFO Out dated connection ,size=0 + +2025-09-24 18:52:34,642 INFO Connection check task end + +2025-09-24 18:52:37,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:37,642 INFO Connection check task start + +2025-09-24 18:52:37,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:37,642 INFO Out dated connection ,size=0 + +2025-09-24 18:52:37,642 INFO Connection check task end + +2025-09-24 18:52:40,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:40,643 INFO Connection check task start + +2025-09-24 18:52:40,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:40,643 INFO Out dated connection ,size=0 + +2025-09-24 18:52:40,643 INFO Connection check task end + +2025-09-24 18:52:43,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:43,643 INFO Connection check task start + +2025-09-24 18:52:43,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:43,643 INFO Out dated connection ,size=0 + +2025-09-24 18:52:43,643 INFO Connection check task end + +2025-09-24 18:52:46,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:46,645 INFO Connection check task start + +2025-09-24 18:52:46,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:46,645 INFO Out dated connection ,size=0 + +2025-09-24 18:52:46,645 INFO Connection check task end + +2025-09-24 18:52:49,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:49,646 INFO Connection check task start + +2025-09-24 18:52:49,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:49,646 INFO Out dated connection ,size=0 + +2025-09-24 18:52:49,646 INFO Connection check task end + +2025-09-24 18:52:52,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:52,647 INFO Connection check task start + +2025-09-24 18:52:52,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:52,647 INFO Out dated connection ,size=0 + +2025-09-24 18:52:52,647 INFO Connection check task end + +2025-09-24 18:52:55,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:55,648 INFO Connection check task start + +2025-09-24 18:52:55,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:55,648 INFO Out dated connection ,size=0 + +2025-09-24 18:52:55,648 INFO Connection check task end + +2025-09-24 18:52:58,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:52:58,648 INFO Connection check task start + +2025-09-24 18:52:58,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:52:58,649 INFO Out dated connection ,size=0 + +2025-09-24 18:52:58,649 INFO Connection check task end + +2025-09-24 18:53:01,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:01,649 INFO Connection check task start + +2025-09-24 18:53:01,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:01,649 INFO Out dated connection ,size=0 + +2025-09-24 18:53:01,649 INFO Connection check task end + +2025-09-24 18:53:04,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:04,650 INFO Connection check task start + +2025-09-24 18:53:04,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:04,650 INFO Out dated connection ,size=0 + +2025-09-24 18:53:04,650 INFO Connection check task end + +2025-09-24 18:53:07,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:07,650 INFO Connection check task start + +2025-09-24 18:53:07,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:07,650 INFO Out dated connection ,size=0 + +2025-09-24 18:53:07,650 INFO Connection check task end + +2025-09-24 18:53:10,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:10,651 INFO Connection check task start + +2025-09-24 18:53:10,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:10,651 INFO Out dated connection ,size=0 + +2025-09-24 18:53:10,651 INFO Connection check task end + +2025-09-24 18:53:13,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:13,652 INFO Connection check task start + +2025-09-24 18:53:13,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:13,652 INFO Out dated connection ,size=0 + +2025-09-24 18:53:13,652 INFO Connection check task end + +2025-09-24 18:53:16,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:16,653 INFO Connection check task start + +2025-09-24 18:53:16,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:16,654 INFO Out dated connection ,size=0 + +2025-09-24 18:53:16,654 INFO Connection check task end + +2025-09-24 18:53:19,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:19,654 INFO Connection check task start + +2025-09-24 18:53:19,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:19,654 INFO Out dated connection ,size=0 + +2025-09-24 18:53:19,654 INFO Connection check task end + +2025-09-24 18:53:22,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:22,654 INFO Connection check task start + +2025-09-24 18:53:22,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:22,654 INFO Out dated connection ,size=0 + +2025-09-24 18:53:22,654 INFO Connection check task end + +2025-09-24 18:53:25,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:25,656 INFO Connection check task start + +2025-09-24 18:53:25,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:25,657 INFO Out dated connection ,size=0 + +2025-09-24 18:53:25,657 INFO Connection check task end + +2025-09-24 18:53:28,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:28,657 INFO Connection check task start + +2025-09-24 18:53:28,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:28,657 INFO Out dated connection ,size=0 + +2025-09-24 18:53:28,657 INFO Connection check task end + +2025-09-24 18:53:31,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:31,657 INFO Connection check task start + +2025-09-24 18:53:31,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:31,657 INFO Out dated connection ,size=0 + +2025-09-24 18:53:31,657 INFO Connection check task end + +2025-09-24 18:53:34,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:34,658 INFO Connection check task start + +2025-09-24 18:53:34,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:34,658 INFO Out dated connection ,size=0 + +2025-09-24 18:53:34,658 INFO Connection check task end + +2025-09-24 18:53:37,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:37,659 INFO Connection check task start + +2025-09-24 18:53:37,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:37,660 INFO Out dated connection ,size=0 + +2025-09-24 18:53:37,660 INFO Connection check task end + +2025-09-24 18:53:40,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:40,660 INFO Connection check task start + +2025-09-24 18:53:40,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:40,660 INFO Out dated connection ,size=0 + +2025-09-24 18:53:40,660 INFO Connection check task end + +2025-09-24 18:53:43,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:43,662 INFO Connection check task start + +2025-09-24 18:53:43,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:43,662 INFO Out dated connection ,size=0 + +2025-09-24 18:53:43,662 INFO Connection check task end + +2025-09-24 18:53:46,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:46,663 INFO Connection check task start + +2025-09-24 18:53:46,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:46,663 INFO Out dated connection ,size=0 + +2025-09-24 18:53:46,663 INFO Connection check task end + +2025-09-24 18:53:49,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:49,665 INFO Connection check task start + +2025-09-24 18:53:49,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:49,665 INFO Out dated connection ,size=0 + +2025-09-24 18:53:49,665 INFO Connection check task end + +2025-09-24 18:53:52,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:52,665 INFO Connection check task start + +2025-09-24 18:53:52,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:52,666 INFO Out dated connection ,size=0 + +2025-09-24 18:53:52,666 INFO Connection check task end + +2025-09-24 18:53:55,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:55,666 INFO Connection check task start + +2025-09-24 18:53:55,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:55,666 INFO Out dated connection ,size=0 + +2025-09-24 18:53:55,666 INFO Connection check task end + +2025-09-24 18:53:58,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:53:58,667 INFO Connection check task start + +2025-09-24 18:53:58,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:53:58,667 INFO Out dated connection ,size=0 + +2025-09-24 18:53:58,667 INFO Connection check task end + +2025-09-24 18:54:01,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:01,667 INFO Connection check task start + +2025-09-24 18:54:01,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:01,667 INFO Out dated connection ,size=0 + +2025-09-24 18:54:01,667 INFO Connection check task end + +2025-09-24 18:54:04,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:04,668 INFO Connection check task start + +2025-09-24 18:54:04,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:04,668 INFO Out dated connection ,size=0 + +2025-09-24 18:54:04,668 INFO Connection check task end + +2025-09-24 18:54:07,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:07,669 INFO Connection check task start + +2025-09-24 18:54:07,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:07,669 INFO Out dated connection ,size=0 + +2025-09-24 18:54:07,669 INFO Connection check task end + +2025-09-24 18:54:10,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:10,671 INFO Connection check task start + +2025-09-24 18:54:10,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:10,671 INFO Out dated connection ,size=0 + +2025-09-24 18:54:10,671 INFO Connection check task end + +2025-09-24 18:54:13,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:13,671 INFO Connection check task start + +2025-09-24 18:54:13,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:13,672 INFO Out dated connection ,size=0 + +2025-09-24 18:54:13,672 INFO Connection check task end + +2025-09-24 18:54:16,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:16,672 INFO Connection check task start + +2025-09-24 18:54:16,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:16,672 INFO Out dated connection ,size=0 + +2025-09-24 18:54:16,672 INFO Connection check task end + +2025-09-24 18:54:19,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:19,673 INFO Connection check task start + +2025-09-24 18:54:19,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:19,673 INFO Out dated connection ,size=0 + +2025-09-24 18:54:19,673 INFO Connection check task end + +2025-09-24 18:54:22,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:22,674 INFO Connection check task start + +2025-09-24 18:54:22,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:22,674 INFO Out dated connection ,size=0 + +2025-09-24 18:54:22,674 INFO Connection check task end + +2025-09-24 18:54:25,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:25,674 INFO Connection check task start + +2025-09-24 18:54:25,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:25,674 INFO Out dated connection ,size=0 + +2025-09-24 18:54:25,674 INFO Connection check task end + +2025-09-24 18:54:28,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:28,675 INFO Connection check task start + +2025-09-24 18:54:28,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:28,675 INFO Out dated connection ,size=0 + +2025-09-24 18:54:28,675 INFO Connection check task end + +2025-09-24 18:54:31,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:31,676 INFO Connection check task start + +2025-09-24 18:54:31,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:31,676 INFO Out dated connection ,size=0 + +2025-09-24 18:54:31,676 INFO Connection check task end + +2025-09-24 18:54:34,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:34,677 INFO Connection check task start + +2025-09-24 18:54:34,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:34,677 INFO Out dated connection ,size=0 + +2025-09-24 18:54:34,677 INFO Connection check task end + +2025-09-24 18:54:37,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:37,677 INFO Connection check task start + +2025-09-24 18:54:37,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:37,677 INFO Out dated connection ,size=0 + +2025-09-24 18:54:37,677 INFO Connection check task end + +2025-09-24 18:54:40,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:40,678 INFO Connection check task start + +2025-09-24 18:54:40,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:40,678 INFO Out dated connection ,size=0 + +2025-09-24 18:54:40,678 INFO Connection check task end + +2025-09-24 18:54:43,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:43,680 INFO Connection check task start + +2025-09-24 18:54:43,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:43,680 INFO Out dated connection ,size=0 + +2025-09-24 18:54:43,681 INFO Connection check task end + +2025-09-24 18:54:46,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:46,681 INFO Connection check task start + +2025-09-24 18:54:46,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:46,681 INFO Out dated connection ,size=0 + +2025-09-24 18:54:46,681 INFO Connection check task end + +2025-09-24 18:54:49,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:49,682 INFO Connection check task start + +2025-09-24 18:54:49,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:49,682 INFO Out dated connection ,size=0 + +2025-09-24 18:54:49,682 INFO Connection check task end + +2025-09-24 18:54:52,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:52,683 INFO Connection check task start + +2025-09-24 18:54:52,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:52,683 INFO Out dated connection ,size=0 + +2025-09-24 18:54:52,683 INFO Connection check task end + +2025-09-24 18:54:55,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:55,684 INFO Connection check task start + +2025-09-24 18:54:55,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:55,684 INFO Out dated connection ,size=0 + +2025-09-24 18:54:55,684 INFO Connection check task end + +2025-09-24 18:54:58,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:54:58,685 INFO Connection check task start + +2025-09-24 18:54:58,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:54:58,685 INFO Out dated connection ,size=0 + +2025-09-24 18:54:58,685 INFO Connection check task end + +2025-09-24 18:55:01,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:01,685 INFO Connection check task start + +2025-09-24 18:55:01,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:01,686 INFO Out dated connection ,size=0 + +2025-09-24 18:55:01,686 INFO Connection check task end + +2025-09-24 18:55:04,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:04,686 INFO Connection check task start + +2025-09-24 18:55:04,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:04,686 INFO Out dated connection ,size=0 + +2025-09-24 18:55:04,686 INFO Connection check task end + +2025-09-24 18:55:07,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:07,687 INFO Connection check task start + +2025-09-24 18:55:07,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:07,687 INFO Out dated connection ,size=0 + +2025-09-24 18:55:07,687 INFO Connection check task end + +2025-09-24 18:55:10,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:10,688 INFO Connection check task start + +2025-09-24 18:55:10,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:10,688 INFO Out dated connection ,size=0 + +2025-09-24 18:55:10,688 INFO Connection check task end + +2025-09-24 18:55:13,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:13,688 INFO Connection check task start + +2025-09-24 18:55:13,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:13,688 INFO Out dated connection ,size=0 + +2025-09-24 18:55:13,689 INFO Connection check task end + +2025-09-24 18:55:16,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:16,691 INFO Connection check task start + +2025-09-24 18:55:16,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:16,691 INFO Out dated connection ,size=0 + +2025-09-24 18:55:16,691 INFO Connection check task end + +2025-09-24 18:55:19,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:19,692 INFO Connection check task start + +2025-09-24 18:55:19,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:19,692 INFO Out dated connection ,size=0 + +2025-09-24 18:55:19,692 INFO Connection check task end + +2025-09-24 18:55:22,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:22,694 INFO Connection check task start + +2025-09-24 18:55:22,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:22,694 INFO Out dated connection ,size=0 + +2025-09-24 18:55:22,694 INFO Connection check task end + +2025-09-24 18:55:25,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:25,696 INFO Connection check task start + +2025-09-24 18:55:25,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:25,696 INFO Out dated connection ,size=0 + +2025-09-24 18:55:25,696 INFO Connection check task end + +2025-09-24 18:55:28,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:28,698 INFO Connection check task start + +2025-09-24 18:55:28,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:28,699 INFO Out dated connection ,size=0 + +2025-09-24 18:55:28,699 INFO Connection check task end + +2025-09-24 18:55:31,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:31,701 INFO Connection check task start + +2025-09-24 18:55:31,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:31,701 INFO Out dated connection ,size=0 + +2025-09-24 18:55:31,701 INFO Connection check task end + +2025-09-24 18:55:34,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:34,702 INFO Connection check task start + +2025-09-24 18:55:34,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:34,702 INFO Out dated connection ,size=0 + +2025-09-24 18:55:34,702 INFO Connection check task end + +2025-09-24 18:55:37,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:37,702 INFO Connection check task start + +2025-09-24 18:55:37,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:37,702 INFO Out dated connection ,size=0 + +2025-09-24 18:55:37,702 INFO Connection check task end + +2025-09-24 18:55:40,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:40,704 INFO Connection check task start + +2025-09-24 18:55:40,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:40,704 INFO Out dated connection ,size=0 + +2025-09-24 18:55:40,705 INFO Connection check task end + +2025-09-24 18:55:43,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:43,707 INFO Connection check task start + +2025-09-24 18:55:43,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:43,707 INFO Out dated connection ,size=0 + +2025-09-24 18:55:43,707 INFO Connection check task end + +2025-09-24 18:55:46,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:46,709 INFO Connection check task start + +2025-09-24 18:55:46,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:46,709 INFO Out dated connection ,size=0 + +2025-09-24 18:55:46,709 INFO Connection check task end + +2025-09-24 18:55:49,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:49,711 INFO Connection check task start + +2025-09-24 18:55:49,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:49,711 INFO Out dated connection ,size=0 + +2025-09-24 18:55:49,711 INFO Connection check task end + +2025-09-24 18:55:52,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:52,712 INFO Connection check task start + +2025-09-24 18:55:52,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:52,712 INFO Out dated connection ,size=0 + +2025-09-24 18:55:52,712 INFO Connection check task end + +2025-09-24 18:55:55,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:55,713 INFO Connection check task start + +2025-09-24 18:55:55,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:55,713 INFO Out dated connection ,size=0 + +2025-09-24 18:55:55,714 INFO Connection check task end + +2025-09-24 18:55:58,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:55:58,714 INFO Connection check task start + +2025-09-24 18:55:58,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:55:58,715 INFO Out dated connection ,size=0 + +2025-09-24 18:55:58,715 INFO Connection check task end + +2025-09-24 18:56:01,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:01,715 INFO Connection check task start + +2025-09-24 18:56:01,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:01,715 INFO Out dated connection ,size=0 + +2025-09-24 18:56:01,715 INFO Connection check task end + +2025-09-24 18:56:04,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:04,716 INFO Connection check task start + +2025-09-24 18:56:04,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:04,716 INFO Out dated connection ,size=0 + +2025-09-24 18:56:04,716 INFO Connection check task end + +2025-09-24 18:56:07,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:07,719 INFO Connection check task start + +2025-09-24 18:56:07,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:07,719 INFO Out dated connection ,size=0 + +2025-09-24 18:56:07,719 INFO Connection check task end + +2025-09-24 18:56:10,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:10,721 INFO Connection check task start + +2025-09-24 18:56:10,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:10,721 INFO Out dated connection ,size=0 + +2025-09-24 18:56:10,721 INFO Connection check task end + +2025-09-24 18:56:13,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:13,722 INFO Connection check task start + +2025-09-24 18:56:13,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:13,722 INFO Out dated connection ,size=0 + +2025-09-24 18:56:13,723 INFO Connection check task end + +2025-09-24 18:56:16,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:16,723 INFO Connection check task start + +2025-09-24 18:56:16,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:16,723 INFO Out dated connection ,size=0 + +2025-09-24 18:56:16,723 INFO Connection check task end + +2025-09-24 18:56:19,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:19,725 INFO Connection check task start + +2025-09-24 18:56:19,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:19,725 INFO Out dated connection ,size=0 + +2025-09-24 18:56:19,725 INFO Connection check task end + +2025-09-24 18:56:22,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:22,725 INFO Connection check task start + +2025-09-24 18:56:22,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:22,725 INFO Out dated connection ,size=0 + +2025-09-24 18:56:22,725 INFO Connection check task end + +2025-09-24 18:56:25,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:25,727 INFO Connection check task start + +2025-09-24 18:56:25,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:25,728 INFO Out dated connection ,size=0 + +2025-09-24 18:56:25,728 INFO Connection check task end + +2025-09-24 18:56:28,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:28,729 INFO Connection check task start + +2025-09-24 18:56:28,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:28,729 INFO Out dated connection ,size=0 + +2025-09-24 18:56:28,729 INFO Connection check task end + +2025-09-24 18:56:31,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:31,730 INFO Connection check task start + +2025-09-24 18:56:31,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:31,730 INFO Out dated connection ,size=0 + +2025-09-24 18:56:31,730 INFO Connection check task end + +2025-09-24 18:56:34,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:34,730 INFO Connection check task start + +2025-09-24 18:56:34,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:34,731 INFO Out dated connection ,size=0 + +2025-09-24 18:56:34,731 INFO Connection check task end + +2025-09-24 18:56:37,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:37,731 INFO Connection check task start + +2025-09-24 18:56:37,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:37,731 INFO Out dated connection ,size=0 + +2025-09-24 18:56:37,731 INFO Connection check task end + +2025-09-24 18:56:40,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:40,733 INFO Connection check task start + +2025-09-24 18:56:40,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:40,733 INFO Out dated connection ,size=0 + +2025-09-24 18:56:40,733 INFO Connection check task end + +2025-09-24 18:56:43,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:43,734 INFO Connection check task start + +2025-09-24 18:56:43,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:43,734 INFO Out dated connection ,size=0 + +2025-09-24 18:56:43,734 INFO Connection check task end + +2025-09-24 18:56:46,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:46,735 INFO Connection check task start + +2025-09-24 18:56:46,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:46,735 INFO Out dated connection ,size=0 + +2025-09-24 18:56:46,735 INFO Connection check task end + +2025-09-24 18:56:49,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:49,735 INFO Connection check task start + +2025-09-24 18:56:49,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:49,735 INFO Out dated connection ,size=0 + +2025-09-24 18:56:49,735 INFO Connection check task end + +2025-09-24 18:56:52,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:52,737 INFO Connection check task start + +2025-09-24 18:56:52,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:52,738 INFO Out dated connection ,size=0 + +2025-09-24 18:56:52,738 INFO Connection check task end + +2025-09-24 18:56:55,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:55,738 INFO Connection check task start + +2025-09-24 18:56:55,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:55,738 INFO Out dated connection ,size=0 + +2025-09-24 18:56:55,738 INFO Connection check task end + +2025-09-24 18:56:58,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:56:58,739 INFO Connection check task start + +2025-09-24 18:56:58,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:56:58,739 INFO Out dated connection ,size=0 + +2025-09-24 18:56:58,739 INFO Connection check task end + +2025-09-24 18:57:01,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:01,739 INFO Connection check task start + +2025-09-24 18:57:01,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:01,740 INFO Out dated connection ,size=0 + +2025-09-24 18:57:01,740 INFO Connection check task end + +2025-09-24 18:57:04,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:04,742 INFO Connection check task start + +2025-09-24 18:57:04,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:04,742 INFO Out dated connection ,size=0 + +2025-09-24 18:57:04,742 INFO Connection check task end + +2025-09-24 18:57:07,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:07,744 INFO Connection check task start + +2025-09-24 18:57:07,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:07,744 INFO Out dated connection ,size=0 + +2025-09-24 18:57:07,744 INFO Connection check task end + +2025-09-24 18:57:10,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:10,745 INFO Connection check task start + +2025-09-24 18:57:10,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:10,745 INFO Out dated connection ,size=0 + +2025-09-24 18:57:10,745 INFO Connection check task end + +2025-09-24 18:57:13,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:13,745 INFO Connection check task start + +2025-09-24 18:57:13,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:13,746 INFO Out dated connection ,size=0 + +2025-09-24 18:57:13,746 INFO Connection check task end + +2025-09-24 18:57:16,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:16,747 INFO Connection check task start + +2025-09-24 18:57:16,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:16,747 INFO Out dated connection ,size=0 + +2025-09-24 18:57:16,747 INFO Connection check task end + +2025-09-24 18:57:19,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:19,750 INFO Connection check task start + +2025-09-24 18:57:19,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:19,750 INFO Out dated connection ,size=0 + +2025-09-24 18:57:19,750 INFO Connection check task end + +2025-09-24 18:57:22,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:22,751 INFO Connection check task start + +2025-09-24 18:57:22,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:22,752 INFO Out dated connection ,size=0 + +2025-09-24 18:57:22,752 INFO Connection check task end + +2025-09-24 18:57:25,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:25,754 INFO Connection check task start + +2025-09-24 18:57:25,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:25,754 INFO Out dated connection ,size=0 + +2025-09-24 18:57:25,754 INFO Connection check task end + +2025-09-24 18:57:28,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:28,755 INFO Connection check task start + +2025-09-24 18:57:28,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:28,756 INFO Out dated connection ,size=0 + +2025-09-24 18:57:28,756 INFO Connection check task end + +2025-09-24 18:57:31,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:31,757 INFO Connection check task start + +2025-09-24 18:57:31,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:31,757 INFO Out dated connection ,size=0 + +2025-09-24 18:57:31,757 INFO Connection check task end + +2025-09-24 18:57:34,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:34,758 INFO Connection check task start + +2025-09-24 18:57:34,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:34,759 INFO Out dated connection ,size=0 + +2025-09-24 18:57:34,759 INFO Connection check task end + +2025-09-24 18:57:37,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:37,760 INFO Connection check task start + +2025-09-24 18:57:37,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:37,760 INFO Out dated connection ,size=0 + +2025-09-24 18:57:37,760 INFO Connection check task end + +2025-09-24 18:57:40,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:40,761 INFO Connection check task start + +2025-09-24 18:57:40,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:40,761 INFO Out dated connection ,size=0 + +2025-09-24 18:57:40,761 INFO Connection check task end + +2025-09-24 18:57:43,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:43,763 INFO Connection check task start + +2025-09-24 18:57:43,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:43,763 INFO Out dated connection ,size=0 + +2025-09-24 18:57:43,764 INFO Connection check task end + +2025-09-24 18:57:46,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:46,766 INFO Connection check task start + +2025-09-24 18:57:46,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:46,766 INFO Out dated connection ,size=0 + +2025-09-24 18:57:46,766 INFO Connection check task end + +2025-09-24 18:57:49,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:49,767 INFO Connection check task start + +2025-09-24 18:57:49,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:49,767 INFO Out dated connection ,size=0 + +2025-09-24 18:57:49,767 INFO Connection check task end + +2025-09-24 18:57:52,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:52,767 INFO Connection check task start + +2025-09-24 18:57:52,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:52,767 INFO Out dated connection ,size=0 + +2025-09-24 18:57:52,767 INFO Connection check task end + +2025-09-24 18:57:55,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:55,767 INFO Connection check task start + +2025-09-24 18:57:55,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:55,768 INFO Out dated connection ,size=0 + +2025-09-24 18:57:55,768 INFO Connection check task end + +2025-09-24 18:57:58,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:57:58,770 INFO Connection check task start + +2025-09-24 18:57:58,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:57:58,770 INFO Out dated connection ,size=0 + +2025-09-24 18:57:58,770 INFO Connection check task end + +2025-09-24 18:58:01,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:01,770 INFO Connection check task start + +2025-09-24 18:58:01,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:01,771 INFO Out dated connection ,size=0 + +2025-09-24 18:58:01,771 INFO Connection check task end + +2025-09-24 18:58:04,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:04,771 INFO Connection check task start + +2025-09-24 18:58:04,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:04,771 INFO Out dated connection ,size=0 + +2025-09-24 18:58:04,771 INFO Connection check task end + +2025-09-24 18:58:07,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:07,771 INFO Connection check task start + +2025-09-24 18:58:07,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:07,772 INFO Out dated connection ,size=0 + +2025-09-24 18:58:07,772 INFO Connection check task end + +2025-09-24 18:58:10,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:10,772 INFO Connection check task start + +2025-09-24 18:58:10,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:10,772 INFO Out dated connection ,size=0 + +2025-09-24 18:58:10,772 INFO Connection check task end + +2025-09-24 18:58:13,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:13,773 INFO Connection check task start + +2025-09-24 18:58:13,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:13,773 INFO Out dated connection ,size=0 + +2025-09-24 18:58:13,773 INFO Connection check task end + +2025-09-24 18:58:16,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:16,774 INFO Connection check task start + +2025-09-24 18:58:16,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:16,774 INFO Out dated connection ,size=0 + +2025-09-24 18:58:16,774 INFO Connection check task end + +2025-09-24 18:58:19,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:19,776 INFO Connection check task start + +2025-09-24 18:58:19,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:19,776 INFO Out dated connection ,size=0 + +2025-09-24 18:58:19,777 INFO Connection check task end + +2025-09-24 18:58:22,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:22,777 INFO Connection check task start + +2025-09-24 18:58:22,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:22,777 INFO Out dated connection ,size=0 + +2025-09-24 18:58:22,777 INFO Connection check task end + +2025-09-24 18:58:25,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:25,778 INFO Connection check task start + +2025-09-24 18:58:25,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:25,778 INFO Out dated connection ,size=0 + +2025-09-24 18:58:25,778 INFO Connection check task end + +2025-09-24 18:58:28,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:28,779 INFO Connection check task start + +2025-09-24 18:58:28,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:28,779 INFO Out dated connection ,size=0 + +2025-09-24 18:58:28,779 INFO Connection check task end + +2025-09-24 18:58:31,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:31,782 INFO Connection check task start + +2025-09-24 18:58:31,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:31,782 INFO Out dated connection ,size=0 + +2025-09-24 18:58:31,782 INFO Connection check task end + +2025-09-24 18:58:34,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:34,782 INFO Connection check task start + +2025-09-24 18:58:34,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:34,782 INFO Out dated connection ,size=0 + +2025-09-24 18:58:34,782 INFO Connection check task end + +2025-09-24 18:58:37,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:37,783 INFO Connection check task start + +2025-09-24 18:58:37,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:37,783 INFO Out dated connection ,size=0 + +2025-09-24 18:58:37,783 INFO Connection check task end + +2025-09-24 18:58:40,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:40,784 INFO Connection check task start + +2025-09-24 18:58:40,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:40,784 INFO Out dated connection ,size=0 + +2025-09-24 18:58:40,784 INFO Connection check task end + +2025-09-24 18:58:43,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:43,785 INFO Connection check task start + +2025-09-24 18:58:43,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:43,785 INFO Out dated connection ,size=0 + +2025-09-24 18:58:43,785 INFO Connection check task end + +2025-09-24 18:58:46,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:46,786 INFO Connection check task start + +2025-09-24 18:58:46,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:46,786 INFO Out dated connection ,size=0 + +2025-09-24 18:58:46,786 INFO Connection check task end + +2025-09-24 18:58:49,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:49,788 INFO Connection check task start + +2025-09-24 18:58:49,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:49,788 INFO Out dated connection ,size=0 + +2025-09-24 18:58:49,788 INFO Connection check task end + +2025-09-24 18:58:52,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:52,790 INFO Connection check task start + +2025-09-24 18:58:52,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:52,791 INFO Out dated connection ,size=0 + +2025-09-24 18:58:52,791 INFO Connection check task end + +2025-09-24 18:58:55,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:55,793 INFO Connection check task start + +2025-09-24 18:58:55,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:55,793 INFO Out dated connection ,size=0 + +2025-09-24 18:58:55,793 INFO Connection check task end + +2025-09-24 18:58:58,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:58:58,794 INFO Connection check task start + +2025-09-24 18:58:58,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:58:58,795 INFO Out dated connection ,size=0 + +2025-09-24 18:58:58,795 INFO Connection check task end + +2025-09-24 18:59:01,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:01,795 INFO Connection check task start + +2025-09-24 18:59:01,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:01,795 INFO Out dated connection ,size=0 + +2025-09-24 18:59:01,795 INFO Connection check task end + +2025-09-24 18:59:04,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:04,796 INFO Connection check task start + +2025-09-24 18:59:04,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:04,796 INFO Out dated connection ,size=0 + +2025-09-24 18:59:04,796 INFO Connection check task end + +2025-09-24 18:59:07,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:07,796 INFO Connection check task start + +2025-09-24 18:59:07,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:07,797 INFO Out dated connection ,size=0 + +2025-09-24 18:59:07,797 INFO Connection check task end + +2025-09-24 18:59:10,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:10,799 INFO Connection check task start + +2025-09-24 18:59:10,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:10,799 INFO Out dated connection ,size=0 + +2025-09-24 18:59:10,799 INFO Connection check task end + +2025-09-24 18:59:13,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:13,800 INFO Connection check task start + +2025-09-24 18:59:13,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:13,800 INFO Out dated connection ,size=0 + +2025-09-24 18:59:13,800 INFO Connection check task end + +2025-09-24 18:59:16,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:16,801 INFO Connection check task start + +2025-09-24 18:59:16,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:16,801 INFO Out dated connection ,size=0 + +2025-09-24 18:59:16,801 INFO Connection check task end + +2025-09-24 18:59:19,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:19,804 INFO Connection check task start + +2025-09-24 18:59:19,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:19,804 INFO Out dated connection ,size=0 + +2025-09-24 18:59:19,804 INFO Connection check task end + +2025-09-24 18:59:22,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:22,804 INFO Connection check task start + +2025-09-24 18:59:22,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:22,805 INFO Out dated connection ,size=0 + +2025-09-24 18:59:22,805 INFO Connection check task end + +2025-09-24 18:59:25,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:25,806 INFO Connection check task start + +2025-09-24 18:59:25,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:25,807 INFO Out dated connection ,size=0 + +2025-09-24 18:59:25,807 INFO Connection check task end + +2025-09-24 18:59:28,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:28,807 INFO Connection check task start + +2025-09-24 18:59:28,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:28,807 INFO Out dated connection ,size=0 + +2025-09-24 18:59:28,808 INFO Connection check task end + +2025-09-24 18:59:31,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:31,809 INFO Connection check task start + +2025-09-24 18:59:31,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:31,809 INFO Out dated connection ,size=0 + +2025-09-24 18:59:31,809 INFO Connection check task end + +2025-09-24 18:59:34,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:34,810 INFO Connection check task start + +2025-09-24 18:59:34,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:34,811 INFO Out dated connection ,size=0 + +2025-09-24 18:59:34,811 INFO Connection check task end + +2025-09-24 18:59:37,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:37,811 INFO Connection check task start + +2025-09-24 18:59:37,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:37,811 INFO Out dated connection ,size=0 + +2025-09-24 18:59:37,811 INFO Connection check task end + +2025-09-24 18:59:40,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:40,812 INFO Connection check task start + +2025-09-24 18:59:40,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:40,812 INFO Out dated connection ,size=0 + +2025-09-24 18:59:40,812 INFO Connection check task end + +2025-09-24 18:59:43,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:43,813 INFO Connection check task start + +2025-09-24 18:59:43,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:43,814 INFO Out dated connection ,size=0 + +2025-09-24 18:59:43,814 INFO Connection check task end + +2025-09-24 18:59:46,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:46,816 INFO Connection check task start + +2025-09-24 18:59:46,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:46,816 INFO Out dated connection ,size=0 + +2025-09-24 18:59:46,816 INFO Connection check task end + +2025-09-24 18:59:49,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:49,818 INFO Connection check task start + +2025-09-24 18:59:49,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:49,818 INFO Out dated connection ,size=0 + +2025-09-24 18:59:49,818 INFO Connection check task end + +2025-09-24 18:59:52,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:52,820 INFO Connection check task start + +2025-09-24 18:59:52,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:52,820 INFO Out dated connection ,size=0 + +2025-09-24 18:59:52,820 INFO Connection check task end + +2025-09-24 18:59:55,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:55,821 INFO Connection check task start + +2025-09-24 18:59:55,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:55,821 INFO Out dated connection ,size=0 + +2025-09-24 18:59:55,821 INFO Connection check task end + +2025-09-24 18:59:58,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 18:59:58,821 INFO Connection check task start + +2025-09-24 18:59:58,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 18:59:58,822 INFO Out dated connection ,size=0 + +2025-09-24 18:59:58,822 INFO Connection check task end + +2025-09-24 19:00:01,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:01,822 INFO Connection check task start + +2025-09-24 19:00:01,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:01,822 INFO Out dated connection ,size=0 + +2025-09-24 19:00:01,822 INFO Connection check task end + +2025-09-24 19:00:04,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:04,823 INFO Connection check task start + +2025-09-24 19:00:04,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:04,823 INFO Out dated connection ,size=0 + +2025-09-24 19:00:04,823 INFO Connection check task end + +2025-09-24 19:00:07,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:07,824 INFO Connection check task start + +2025-09-24 19:00:07,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:07,824 INFO Out dated connection ,size=0 + +2025-09-24 19:00:07,824 INFO Connection check task end + +2025-09-24 19:00:10,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:10,826 INFO Connection check task start + +2025-09-24 19:00:10,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:10,827 INFO Out dated connection ,size=0 + +2025-09-24 19:00:10,827 INFO Connection check task end + +2025-09-24 19:00:13,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:13,829 INFO Connection check task start + +2025-09-24 19:00:13,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:13,829 INFO Out dated connection ,size=0 + +2025-09-24 19:00:13,829 INFO Connection check task end + +2025-09-24 19:00:16,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:16,831 INFO Connection check task start + +2025-09-24 19:00:16,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:16,831 INFO Out dated connection ,size=0 + +2025-09-24 19:00:16,831 INFO Connection check task end + +2025-09-24 19:00:19,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:19,832 INFO Connection check task start + +2025-09-24 19:00:19,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:19,832 INFO Out dated connection ,size=0 + +2025-09-24 19:00:19,832 INFO Connection check task end + +2025-09-24 19:00:22,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:22,834 INFO Connection check task start + +2025-09-24 19:00:22,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:22,835 INFO Out dated connection ,size=0 + +2025-09-24 19:00:22,835 INFO Connection check task end + +2025-09-24 19:00:25,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:25,836 INFO Connection check task start + +2025-09-24 19:00:25,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:25,836 INFO Out dated connection ,size=0 + +2025-09-24 19:00:25,836 INFO Connection check task end + +2025-09-24 19:00:28,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:28,837 INFO Connection check task start + +2025-09-24 19:00:28,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:28,837 INFO Out dated connection ,size=0 + +2025-09-24 19:00:28,837 INFO Connection check task end + +2025-09-24 19:00:31,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:31,837 INFO Connection check task start + +2025-09-24 19:00:31,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:31,837 INFO Out dated connection ,size=0 + +2025-09-24 19:00:31,837 INFO Connection check task end + +2025-09-24 19:00:34,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:34,840 INFO Connection check task start + +2025-09-24 19:00:34,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:34,840 INFO Out dated connection ,size=0 + +2025-09-24 19:00:34,840 INFO Connection check task end + +2025-09-24 19:00:37,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:37,840 INFO Connection check task start + +2025-09-24 19:00:37,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:37,840 INFO Out dated connection ,size=0 + +2025-09-24 19:00:37,840 INFO Connection check task end + +2025-09-24 19:00:40,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:40,841 INFO Connection check task start + +2025-09-24 19:00:40,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:40,842 INFO Out dated connection ,size=0 + +2025-09-24 19:00:40,842 INFO Connection check task end + +2025-09-24 19:00:43,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:43,843 INFO Connection check task start + +2025-09-24 19:00:43,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:43,843 INFO Out dated connection ,size=0 + +2025-09-24 19:00:43,843 INFO Connection check task end + +2025-09-24 19:00:46,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:46,843 INFO Connection check task start + +2025-09-24 19:00:46,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:46,844 INFO Out dated connection ,size=0 + +2025-09-24 19:00:46,844 INFO Connection check task end + +2025-09-24 19:00:49,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:49,844 INFO Connection check task start + +2025-09-24 19:00:49,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:49,844 INFO Out dated connection ,size=0 + +2025-09-24 19:00:49,844 INFO Connection check task end + +2025-09-24 19:00:52,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:52,845 INFO Connection check task start + +2025-09-24 19:00:52,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:52,845 INFO Out dated connection ,size=0 + +2025-09-24 19:00:52,845 INFO Connection check task end + +2025-09-24 19:00:55,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:55,845 INFO Connection check task start + +2025-09-24 19:00:55,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:55,845 INFO Out dated connection ,size=0 + +2025-09-24 19:00:55,846 INFO Connection check task end + +2025-09-24 19:00:58,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:00:58,848 INFO Connection check task start + +2025-09-24 19:00:58,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:00:58,848 INFO Out dated connection ,size=0 + +2025-09-24 19:00:58,848 INFO Connection check task end + +2025-09-24 19:01:01,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:01,849 INFO Connection check task start + +2025-09-24 19:01:01,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:01,850 INFO Out dated connection ,size=0 + +2025-09-24 19:01:01,850 INFO Connection check task end + +2025-09-24 19:01:04,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:04,850 INFO Connection check task start + +2025-09-24 19:01:04,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:04,850 INFO Out dated connection ,size=0 + +2025-09-24 19:01:04,850 INFO Connection check task end + +2025-09-24 19:01:07,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:07,851 INFO Connection check task start + +2025-09-24 19:01:07,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:07,851 INFO Out dated connection ,size=0 + +2025-09-24 19:01:07,852 INFO Connection check task end + +2025-09-24 19:01:10,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:10,854 INFO Connection check task start + +2025-09-24 19:01:10,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:10,854 INFO Out dated connection ,size=0 + +2025-09-24 19:01:10,854 INFO Connection check task end + +2025-09-24 19:01:13,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:13,856 INFO Connection check task start + +2025-09-24 19:01:13,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:13,856 INFO Out dated connection ,size=0 + +2025-09-24 19:01:13,856 INFO Connection check task end + +2025-09-24 19:01:16,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:16,857 INFO Connection check task start + +2025-09-24 19:01:16,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:16,857 INFO Out dated connection ,size=0 + +2025-09-24 19:01:16,857 INFO Connection check task end + +2025-09-24 19:01:19,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:19,858 INFO Connection check task start + +2025-09-24 19:01:19,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:19,858 INFO Out dated connection ,size=0 + +2025-09-24 19:01:19,858 INFO Connection check task end + +2025-09-24 19:01:22,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:22,860 INFO Connection check task start + +2025-09-24 19:01:22,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:22,861 INFO Out dated connection ,size=0 + +2025-09-24 19:01:22,861 INFO Connection check task end + +2025-09-24 19:01:25,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:25,861 INFO Connection check task start + +2025-09-24 19:01:25,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:25,861 INFO Out dated connection ,size=0 + +2025-09-24 19:01:25,861 INFO Connection check task end + +2025-09-24 19:01:28,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:28,862 INFO Connection check task start + +2025-09-24 19:01:28,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:28,862 INFO Out dated connection ,size=0 + +2025-09-24 19:01:28,862 INFO Connection check task end + +2025-09-24 19:01:31,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:31,864 INFO Connection check task start + +2025-09-24 19:01:31,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:31,864 INFO Out dated connection ,size=0 + +2025-09-24 19:01:31,864 INFO Connection check task end + +2025-09-24 19:01:34,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:34,865 INFO Connection check task start + +2025-09-24 19:01:34,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:34,866 INFO Out dated connection ,size=0 + +2025-09-24 19:01:34,866 INFO Connection check task end + +2025-09-24 19:01:37,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:37,866 INFO Connection check task start + +2025-09-24 19:01:37,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:37,866 INFO Out dated connection ,size=0 + +2025-09-24 19:01:37,866 INFO Connection check task end + +2025-09-24 19:01:40,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:40,867 INFO Connection check task start + +2025-09-24 19:01:40,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:40,867 INFO Out dated connection ,size=0 + +2025-09-24 19:01:40,867 INFO Connection check task end + +2025-09-24 19:01:43,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:43,868 INFO Connection check task start + +2025-09-24 19:01:43,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:43,868 INFO Out dated connection ,size=0 + +2025-09-24 19:01:43,868 INFO Connection check task end + +2025-09-24 19:01:46,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:46,870 INFO Connection check task start + +2025-09-24 19:01:46,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:46,870 INFO Out dated connection ,size=0 + +2025-09-24 19:01:46,870 INFO Connection check task end + +2025-09-24 19:01:49,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:49,870 INFO Connection check task start + +2025-09-24 19:01:49,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:49,870 INFO Out dated connection ,size=0 + +2025-09-24 19:01:49,870 INFO Connection check task end + +2025-09-24 19:01:52,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:52,872 INFO Connection check task start + +2025-09-24 19:01:52,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:52,872 INFO Out dated connection ,size=0 + +2025-09-24 19:01:52,872 INFO Connection check task end + +2025-09-24 19:01:55,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:55,873 INFO Connection check task start + +2025-09-24 19:01:55,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:55,873 INFO Out dated connection ,size=0 + +2025-09-24 19:01:55,873 INFO Connection check task end + +2025-09-24 19:01:58,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:01:58,873 INFO Connection check task start + +2025-09-24 19:01:58,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:01:58,873 INFO Out dated connection ,size=0 + +2025-09-24 19:01:58,873 INFO Connection check task end + +2025-09-24 19:02:01,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:01,874 INFO Connection check task start + +2025-09-24 19:02:01,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:01,874 INFO Out dated connection ,size=0 + +2025-09-24 19:02:01,874 INFO Connection check task end + +2025-09-24 19:02:04,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:04,875 INFO Connection check task start + +2025-09-24 19:02:04,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:04,875 INFO Out dated connection ,size=0 + +2025-09-24 19:02:04,875 INFO Connection check task end + +2025-09-24 19:02:07,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:07,876 INFO Connection check task start + +2025-09-24 19:02:07,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:07,876 INFO Out dated connection ,size=0 + +2025-09-24 19:02:07,876 INFO Connection check task end + +2025-09-24 19:02:10,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:10,876 INFO Connection check task start + +2025-09-24 19:02:10,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:10,877 INFO Out dated connection ,size=0 + +2025-09-24 19:02:10,877 INFO Connection check task end + +2025-09-24 19:02:13,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:13,877 INFO Connection check task start + +2025-09-24 19:02:13,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:13,877 INFO Out dated connection ,size=0 + +2025-09-24 19:02:13,877 INFO Connection check task end + +2025-09-24 19:02:16,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:16,877 INFO Connection check task start + +2025-09-24 19:02:16,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:16,878 INFO Out dated connection ,size=0 + +2025-09-24 19:02:16,878 INFO Connection check task end + +2025-09-24 19:02:19,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:19,878 INFO Connection check task start + +2025-09-24 19:02:19,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:19,878 INFO Out dated connection ,size=0 + +2025-09-24 19:02:19,878 INFO Connection check task end + +2025-09-24 19:02:22,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:22,879 INFO Connection check task start + +2025-09-24 19:02:22,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:22,879 INFO Out dated connection ,size=0 + +2025-09-24 19:02:22,880 INFO Connection check task end + +2025-09-24 19:02:25,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:25,880 INFO Connection check task start + +2025-09-24 19:02:25,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:25,880 INFO Out dated connection ,size=0 + +2025-09-24 19:02:25,880 INFO Connection check task end + +2025-09-24 19:02:28,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:28,881 INFO Connection check task start + +2025-09-24 19:02:28,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:28,881 INFO Out dated connection ,size=0 + +2025-09-24 19:02:28,881 INFO Connection check task end + +2025-09-24 19:02:31,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:31,882 INFO Connection check task start + +2025-09-24 19:02:31,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:31,883 INFO Out dated connection ,size=0 + +2025-09-24 19:02:31,883 INFO Connection check task end + +2025-09-24 19:02:34,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:34,885 INFO Connection check task start + +2025-09-24 19:02:34,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:34,885 INFO Out dated connection ,size=0 + +2025-09-24 19:02:34,885 INFO Connection check task end + +2025-09-24 19:02:37,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:37,885 INFO Connection check task start + +2025-09-24 19:02:37,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:37,886 INFO Out dated connection ,size=0 + +2025-09-24 19:02:37,886 INFO Connection check task end + +2025-09-24 19:02:40,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:40,887 INFO Connection check task start + +2025-09-24 19:02:40,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:40,887 INFO Out dated connection ,size=0 + +2025-09-24 19:02:40,887 INFO Connection check task end + +2025-09-24 19:02:43,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:43,888 INFO Connection check task start + +2025-09-24 19:02:43,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:43,889 INFO Out dated connection ,size=0 + +2025-09-24 19:02:43,889 INFO Connection check task end + +2025-09-24 19:02:46,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:46,889 INFO Connection check task start + +2025-09-24 19:02:46,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:46,889 INFO Out dated connection ,size=0 + +2025-09-24 19:02:46,889 INFO Connection check task end + +2025-09-24 19:02:49,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:49,891 INFO Connection check task start + +2025-09-24 19:02:49,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:49,891 INFO Out dated connection ,size=0 + +2025-09-24 19:02:49,891 INFO Connection check task end + +2025-09-24 19:02:52,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:52,893 INFO Connection check task start + +2025-09-24 19:02:52,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:52,893 INFO Out dated connection ,size=0 + +2025-09-24 19:02:52,893 INFO Connection check task end + +2025-09-24 19:02:55,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:55,893 INFO Connection check task start + +2025-09-24 19:02:55,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:55,894 INFO Out dated connection ,size=0 + +2025-09-24 19:02:55,894 INFO Connection check task end + +2025-09-24 19:02:58,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:02:58,894 INFO Connection check task start + +2025-09-24 19:02:58,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:02:58,894 INFO Out dated connection ,size=0 + +2025-09-24 19:02:58,894 INFO Connection check task end + +2025-09-24 19:03:01,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:01,895 INFO Connection check task start + +2025-09-24 19:03:01,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:01,895 INFO Out dated connection ,size=0 + +2025-09-24 19:03:01,896 INFO Connection check task end + +2025-09-24 19:03:04,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:04,896 INFO Connection check task start + +2025-09-24 19:03:04,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:04,896 INFO Out dated connection ,size=0 + +2025-09-24 19:03:04,896 INFO Connection check task end + +2025-09-24 19:03:07,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:07,899 INFO Connection check task start + +2025-09-24 19:03:07,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:07,899 INFO Out dated connection ,size=0 + +2025-09-24 19:03:07,899 INFO Connection check task end + +2025-09-24 19:03:10,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:10,899 INFO Connection check task start + +2025-09-24 19:03:10,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:10,899 INFO Out dated connection ,size=0 + +2025-09-24 19:03:10,899 INFO Connection check task end + +2025-09-24 19:03:13,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:13,901 INFO Connection check task start + +2025-09-24 19:03:13,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:13,902 INFO Out dated connection ,size=0 + +2025-09-24 19:03:13,902 INFO Connection check task end + +2025-09-24 19:03:16,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:16,904 INFO Connection check task start + +2025-09-24 19:03:16,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:16,904 INFO Out dated connection ,size=0 + +2025-09-24 19:03:16,904 INFO Connection check task end + +2025-09-24 19:03:19,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:19,906 INFO Connection check task start + +2025-09-24 19:03:19,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:19,906 INFO Out dated connection ,size=0 + +2025-09-24 19:03:19,906 INFO Connection check task end + +2025-09-24 19:03:22,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:22,907 INFO Connection check task start + +2025-09-24 19:03:22,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:22,907 INFO Out dated connection ,size=0 + +2025-09-24 19:03:22,907 INFO Connection check task end + +2025-09-24 19:03:25,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:25,907 INFO Connection check task start + +2025-09-24 19:03:25,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:25,907 INFO Out dated connection ,size=0 + +2025-09-24 19:03:25,907 INFO Connection check task end + +2025-09-24 19:03:28,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:28,908 INFO Connection check task start + +2025-09-24 19:03:28,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:28,908 INFO Out dated connection ,size=0 + +2025-09-24 19:03:28,908 INFO Connection check task end + +2025-09-24 19:03:31,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:31,909 INFO Connection check task start + +2025-09-24 19:03:31,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:31,909 INFO Out dated connection ,size=0 + +2025-09-24 19:03:31,910 INFO Connection check task end + +2025-09-24 19:03:34,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:34,910 INFO Connection check task start + +2025-09-24 19:03:34,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:34,910 INFO Out dated connection ,size=0 + +2025-09-24 19:03:34,911 INFO Connection check task end + +2025-09-24 19:03:37,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:37,911 INFO Connection check task start + +2025-09-24 19:03:37,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:37,911 INFO Out dated connection ,size=0 + +2025-09-24 19:03:37,911 INFO Connection check task end + +2025-09-24 19:03:40,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:40,911 INFO Connection check task start + +2025-09-24 19:03:40,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:40,912 INFO Out dated connection ,size=0 + +2025-09-24 19:03:40,912 INFO Connection check task end + +2025-09-24 19:03:43,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:43,912 INFO Connection check task start + +2025-09-24 19:03:43,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:43,912 INFO Out dated connection ,size=0 + +2025-09-24 19:03:43,912 INFO Connection check task end + +2025-09-24 19:03:46,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:46,913 INFO Connection check task start + +2025-09-24 19:03:46,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:46,913 INFO Out dated connection ,size=0 + +2025-09-24 19:03:46,913 INFO Connection check task end + +2025-09-24 19:03:49,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:49,914 INFO Connection check task start + +2025-09-24 19:03:49,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:49,914 INFO Out dated connection ,size=0 + +2025-09-24 19:03:49,915 INFO Connection check task end + +2025-09-24 19:03:52,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:52,917 INFO Connection check task start + +2025-09-24 19:03:52,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:52,917 INFO Out dated connection ,size=0 + +2025-09-24 19:03:52,917 INFO Connection check task end + +2025-09-24 19:03:55,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:55,918 INFO Connection check task start + +2025-09-24 19:03:55,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:55,918 INFO Out dated connection ,size=0 + +2025-09-24 19:03:55,918 INFO Connection check task end + +2025-09-24 19:03:58,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:03:58,918 INFO Connection check task start + +2025-09-24 19:03:58,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:03:58,918 INFO Out dated connection ,size=0 + +2025-09-24 19:03:58,919 INFO Connection check task end + +2025-09-24 19:04:01,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:01,920 INFO Connection check task start + +2025-09-24 19:04:01,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:01,920 INFO Out dated connection ,size=0 + +2025-09-24 19:04:01,921 INFO Connection check task end + +2025-09-24 19:04:04,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:04,921 INFO Connection check task start + +2025-09-24 19:04:04,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:04,921 INFO Out dated connection ,size=0 + +2025-09-24 19:04:04,921 INFO Connection check task end + +2025-09-24 19:04:07,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:07,923 INFO Connection check task start + +2025-09-24 19:04:07,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:07,923 INFO Out dated connection ,size=0 + +2025-09-24 19:04:07,923 INFO Connection check task end + +2025-09-24 19:04:10,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:10,924 INFO Connection check task start + +2025-09-24 19:04:10,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:10,924 INFO Out dated connection ,size=0 + +2025-09-24 19:04:10,924 INFO Connection check task end + +2025-09-24 19:04:13,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:13,925 INFO Connection check task start + +2025-09-24 19:04:13,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:13,925 INFO Out dated connection ,size=0 + +2025-09-24 19:04:13,925 INFO Connection check task end + +2025-09-24 19:04:16,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:16,925 INFO Connection check task start + +2025-09-24 19:04:16,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:16,926 INFO Out dated connection ,size=0 + +2025-09-24 19:04:16,926 INFO Connection check task end + +2025-09-24 19:04:19,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:19,926 INFO Connection check task start + +2025-09-24 19:04:19,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:19,926 INFO Out dated connection ,size=0 + +2025-09-24 19:04:19,926 INFO Connection check task end + +2025-09-24 19:04:22,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:22,926 INFO Connection check task start + +2025-09-24 19:04:22,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:22,927 INFO Out dated connection ,size=0 + +2025-09-24 19:04:22,927 INFO Connection check task end + +2025-09-24 19:04:25,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:25,927 INFO Connection check task start + +2025-09-24 19:04:25,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:25,927 INFO Out dated connection ,size=0 + +2025-09-24 19:04:25,927 INFO Connection check task end + +2025-09-24 19:04:28,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:28,929 INFO Connection check task start + +2025-09-24 19:04:28,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:28,929 INFO Out dated connection ,size=0 + +2025-09-24 19:04:28,929 INFO Connection check task end + +2025-09-24 19:04:31,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:31,929 INFO Connection check task start + +2025-09-24 19:04:31,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:31,930 INFO Out dated connection ,size=0 + +2025-09-24 19:04:31,930 INFO Connection check task end + +2025-09-24 19:04:34,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:34,932 INFO Connection check task start + +2025-09-24 19:04:34,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:34,932 INFO Out dated connection ,size=0 + +2025-09-24 19:04:34,932 INFO Connection check task end + +2025-09-24 19:04:37,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:37,932 INFO Connection check task start + +2025-09-24 19:04:37,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:37,932 INFO Out dated connection ,size=0 + +2025-09-24 19:04:37,932 INFO Connection check task end + +2025-09-24 19:04:40,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:40,933 INFO Connection check task start + +2025-09-24 19:04:40,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:40,933 INFO Out dated connection ,size=0 + +2025-09-24 19:04:40,933 INFO Connection check task end + +2025-09-24 19:04:43,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:43,934 INFO Connection check task start + +2025-09-24 19:04:43,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:43,934 INFO Out dated connection ,size=0 + +2025-09-24 19:04:43,934 INFO Connection check task end + +2025-09-24 19:04:46,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:46,936 INFO Connection check task start + +2025-09-24 19:04:46,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:46,936 INFO Out dated connection ,size=0 + +2025-09-24 19:04:46,936 INFO Connection check task end + +2025-09-24 19:04:49,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:49,938 INFO Connection check task start + +2025-09-24 19:04:49,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:49,938 INFO Out dated connection ,size=0 + +2025-09-24 19:04:49,938 INFO Connection check task end + +2025-09-24 19:04:52,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:52,938 INFO Connection check task start + +2025-09-24 19:04:52,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:52,939 INFO Out dated connection ,size=0 + +2025-09-24 19:04:52,939 INFO Connection check task end + +2025-09-24 19:04:55,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:55,941 INFO Connection check task start + +2025-09-24 19:04:55,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:55,941 INFO Out dated connection ,size=0 + +2025-09-24 19:04:55,941 INFO Connection check task end + +2025-09-24 19:04:58,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:04:58,941 INFO Connection check task start + +2025-09-24 19:04:58,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:04:58,941 INFO Out dated connection ,size=0 + +2025-09-24 19:04:58,941 INFO Connection check task end + +2025-09-24 19:05:01,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:01,942 INFO Connection check task start + +2025-09-24 19:05:01,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:01,943 INFO Out dated connection ,size=0 + +2025-09-24 19:05:01,943 INFO Connection check task end + +2025-09-24 19:05:04,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:04,944 INFO Connection check task start + +2025-09-24 19:05:04,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:04,944 INFO Out dated connection ,size=0 + +2025-09-24 19:05:04,944 INFO Connection check task end + +2025-09-24 19:05:07,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:07,945 INFO Connection check task start + +2025-09-24 19:05:07,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:07,945 INFO Out dated connection ,size=0 + +2025-09-24 19:05:07,946 INFO Connection check task end + +2025-09-24 19:05:10,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:10,948 INFO Connection check task start + +2025-09-24 19:05:10,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:10,948 INFO Out dated connection ,size=0 + +2025-09-24 19:05:10,948 INFO Connection check task end + +2025-09-24 19:05:13,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:13,949 INFO Connection check task start + +2025-09-24 19:05:13,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:13,949 INFO Out dated connection ,size=0 + +2025-09-24 19:05:13,949 INFO Connection check task end + +2025-09-24 19:05:16,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:16,949 INFO Connection check task start + +2025-09-24 19:05:16,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:16,949 INFO Out dated connection ,size=0 + +2025-09-24 19:05:16,949 INFO Connection check task end + +2025-09-24 19:05:19,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:19,949 INFO Connection check task start + +2025-09-24 19:05:19,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:19,950 INFO Out dated connection ,size=0 + +2025-09-24 19:05:19,950 INFO Connection check task end + +2025-09-24 19:05:22,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:22,950 INFO Connection check task start + +2025-09-24 19:05:22,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:22,950 INFO Out dated connection ,size=0 + +2025-09-24 19:05:22,950 INFO Connection check task end + +2025-09-24 19:05:25,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:25,950 INFO Connection check task start + +2025-09-24 19:05:25,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:25,950 INFO Out dated connection ,size=0 + +2025-09-24 19:05:25,950 INFO Connection check task end + +2025-09-24 19:05:28,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:28,951 INFO Connection check task start + +2025-09-24 19:05:28,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:28,951 INFO Out dated connection ,size=0 + +2025-09-24 19:05:28,951 INFO Connection check task end + +2025-09-24 19:05:31,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:31,951 INFO Connection check task start + +2025-09-24 19:05:31,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:31,952 INFO Out dated connection ,size=0 + +2025-09-24 19:05:31,952 INFO Connection check task end + +2025-09-24 19:05:34,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:34,952 INFO Connection check task start + +2025-09-24 19:05:34,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:34,952 INFO Out dated connection ,size=0 + +2025-09-24 19:05:34,952 INFO Connection check task end + +2025-09-24 19:05:37,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:37,952 INFO Connection check task start + +2025-09-24 19:05:37,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:37,953 INFO Out dated connection ,size=0 + +2025-09-24 19:05:37,953 INFO Connection check task end + +2025-09-24 19:05:40,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:40,953 INFO Connection check task start + +2025-09-24 19:05:40,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:40,953 INFO Out dated connection ,size=0 + +2025-09-24 19:05:40,953 INFO Connection check task end + +2025-09-24 19:05:43,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:43,954 INFO Connection check task start + +2025-09-24 19:05:43,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:43,954 INFO Out dated connection ,size=0 + +2025-09-24 19:05:43,954 INFO Connection check task end + +2025-09-24 19:05:46,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:46,955 INFO Connection check task start + +2025-09-24 19:05:46,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:46,955 INFO Out dated connection ,size=0 + +2025-09-24 19:05:46,955 INFO Connection check task end + +2025-09-24 19:05:49,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:49,955 INFO Connection check task start + +2025-09-24 19:05:49,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:49,955 INFO Out dated connection ,size=0 + +2025-09-24 19:05:49,955 INFO Connection check task end + +2025-09-24 19:05:52,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:52,956 INFO Connection check task start + +2025-09-24 19:05:52,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:52,956 INFO Out dated connection ,size=0 + +2025-09-24 19:05:52,956 INFO Connection check task end + +2025-09-24 19:05:55,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:55,956 INFO Connection check task start + +2025-09-24 19:05:55,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:55,957 INFO Out dated connection ,size=0 + +2025-09-24 19:05:55,957 INFO Connection check task end + +2025-09-24 19:05:58,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:05:58,957 INFO Connection check task start + +2025-09-24 19:05:58,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:05:58,958 INFO Out dated connection ,size=0 + +2025-09-24 19:05:58,958 INFO Connection check task end + +2025-09-24 19:06:01,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:01,958 INFO Connection check task start + +2025-09-24 19:06:01,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:01,958 INFO Out dated connection ,size=0 + +2025-09-24 19:06:01,958 INFO Connection check task end + +2025-09-24 19:06:04,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:04,959 INFO Connection check task start + +2025-09-24 19:06:04,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:04,959 INFO Out dated connection ,size=0 + +2025-09-24 19:06:04,959 INFO Connection check task end + +2025-09-24 19:06:07,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:07,959 INFO Connection check task start + +2025-09-24 19:06:07,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:07,959 INFO Out dated connection ,size=0 + +2025-09-24 19:06:07,959 INFO Connection check task end + +2025-09-24 19:06:10,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:10,959 INFO Connection check task start + +2025-09-24 19:06:10,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:10,960 INFO Out dated connection ,size=0 + +2025-09-24 19:06:10,960 INFO Connection check task end + +2025-09-24 19:06:13,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:13,960 INFO Connection check task start + +2025-09-24 19:06:13,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:13,960 INFO Out dated connection ,size=0 + +2025-09-24 19:06:13,960 INFO Connection check task end + +2025-09-24 19:06:16,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:16,960 INFO Connection check task start + +2025-09-24 19:06:16,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:16,960 INFO Out dated connection ,size=0 + +2025-09-24 19:06:16,960 INFO Connection check task end + +2025-09-24 19:06:19,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:19,961 INFO Connection check task start + +2025-09-24 19:06:19,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:19,961 INFO Out dated connection ,size=0 + +2025-09-24 19:06:19,961 INFO Connection check task end + +2025-09-24 19:06:22,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:22,961 INFO Connection check task start + +2025-09-24 19:06:22,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:22,961 INFO Out dated connection ,size=0 + +2025-09-24 19:06:22,961 INFO Connection check task end + +2025-09-24 19:06:25,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:25,962 INFO Connection check task start + +2025-09-24 19:06:25,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:25,962 INFO Out dated connection ,size=0 + +2025-09-24 19:06:25,962 INFO Connection check task end + +2025-09-24 19:06:28,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:28,963 INFO Connection check task start + +2025-09-24 19:06:28,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:28,964 INFO Out dated connection ,size=0 + +2025-09-24 19:06:28,964 INFO Connection check task end + +2025-09-24 19:06:31,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:31,964 INFO Connection check task start + +2025-09-24 19:06:31,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:31,964 INFO Out dated connection ,size=0 + +2025-09-24 19:06:31,964 INFO Connection check task end + +2025-09-24 19:06:34,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:34,965 INFO Connection check task start + +2025-09-24 19:06:34,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:34,965 INFO Out dated connection ,size=0 + +2025-09-24 19:06:34,965 INFO Connection check task end + +2025-09-24 19:06:37,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:37,965 INFO Connection check task start + +2025-09-24 19:06:37,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:37,965 INFO Out dated connection ,size=0 + +2025-09-24 19:06:37,965 INFO Connection check task end + +2025-09-24 19:06:40,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:40,965 INFO Connection check task start + +2025-09-24 19:06:40,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:40,966 INFO Out dated connection ,size=0 + +2025-09-24 19:06:40,966 INFO Connection check task end + +2025-09-24 19:06:43,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:43,966 INFO Connection check task start + +2025-09-24 19:06:43,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:43,966 INFO Out dated connection ,size=0 + +2025-09-24 19:06:43,966 INFO Connection check task end + +2025-09-24 19:06:46,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:46,967 INFO Connection check task start + +2025-09-24 19:06:46,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:46,968 INFO Out dated connection ,size=0 + +2025-09-24 19:06:46,968 INFO Connection check task end + +2025-09-24 19:06:49,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:49,968 INFO Connection check task start + +2025-09-24 19:06:49,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:49,968 INFO Out dated connection ,size=0 + +2025-09-24 19:06:49,968 INFO Connection check task end + +2025-09-24 19:06:52,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:52,969 INFO Connection check task start + +2025-09-24 19:06:52,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:52,969 INFO Out dated connection ,size=0 + +2025-09-24 19:06:52,969 INFO Connection check task end + +2025-09-24 19:06:55,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:55,969 INFO Connection check task start + +2025-09-24 19:06:55,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:55,969 INFO Out dated connection ,size=0 + +2025-09-24 19:06:55,969 INFO Connection check task end + +2025-09-24 19:06:58,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:06:58,970 INFO Connection check task start + +2025-09-24 19:06:58,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:06:58,970 INFO Out dated connection ,size=0 + +2025-09-24 19:06:58,970 INFO Connection check task end + +2025-09-24 19:07:01,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:01,970 INFO Connection check task start + +2025-09-24 19:07:01,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:01,970 INFO Out dated connection ,size=0 + +2025-09-24 19:07:01,971 INFO Connection check task end + +2025-09-24 19:07:04,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:04,971 INFO Connection check task start + +2025-09-24 19:07:04,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:04,971 INFO Out dated connection ,size=0 + +2025-09-24 19:07:04,971 INFO Connection check task end + +2025-09-24 19:07:07,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:07,971 INFO Connection check task start + +2025-09-24 19:07:07,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:07,971 INFO Out dated connection ,size=0 + +2025-09-24 19:07:07,972 INFO Connection check task end + +2025-09-24 19:07:10,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:10,972 INFO Connection check task start + +2025-09-24 19:07:10,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:10,972 INFO Out dated connection ,size=0 + +2025-09-24 19:07:10,972 INFO Connection check task end + +2025-09-24 19:07:13,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:13,972 INFO Connection check task start + +2025-09-24 19:07:13,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:13,973 INFO Out dated connection ,size=0 + +2025-09-24 19:07:13,973 INFO Connection check task end + +2025-09-24 19:07:16,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:16,973 INFO Connection check task start + +2025-09-24 19:07:16,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:16,973 INFO Out dated connection ,size=0 + +2025-09-24 19:07:16,973 INFO Connection check task end + +2025-09-24 19:07:19,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:19,973 INFO Connection check task start + +2025-09-24 19:07:19,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:19,973 INFO Out dated connection ,size=0 + +2025-09-24 19:07:19,973 INFO Connection check task end + +2025-09-24 19:07:22,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:22,974 INFO Connection check task start + +2025-09-24 19:07:22,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:22,974 INFO Out dated connection ,size=0 + +2025-09-24 19:07:22,974 INFO Connection check task end + +2025-09-24 19:07:25,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:25,974 INFO Connection check task start + +2025-09-24 19:07:25,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:25,975 INFO Out dated connection ,size=0 + +2025-09-24 19:07:25,975 INFO Connection check task end + +2025-09-24 19:07:28,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:28,975 INFO Connection check task start + +2025-09-24 19:07:28,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:28,975 INFO Out dated connection ,size=0 + +2025-09-24 19:07:28,975 INFO Connection check task end + +2025-09-24 19:07:31,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:31,975 INFO Connection check task start + +2025-09-24 19:07:31,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:31,975 INFO Out dated connection ,size=0 + +2025-09-24 19:07:31,976 INFO Connection check task end + +2025-09-24 19:07:34,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:34,976 INFO Connection check task start + +2025-09-24 19:07:34,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:34,976 INFO Out dated connection ,size=0 + +2025-09-24 19:07:34,976 INFO Connection check task end + +2025-09-24 19:07:37,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:37,976 INFO Connection check task start + +2025-09-24 19:07:37,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:37,977 INFO Out dated connection ,size=0 + +2025-09-24 19:07:37,977 INFO Connection check task end + +2025-09-24 19:07:40,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:40,977 INFO Connection check task start + +2025-09-24 19:07:40,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:40,977 INFO Out dated connection ,size=0 + +2025-09-24 19:07:40,977 INFO Connection check task end + +2025-09-24 19:07:43,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:43,978 INFO Connection check task start + +2025-09-24 19:07:43,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:43,978 INFO Out dated connection ,size=0 + +2025-09-24 19:07:43,978 INFO Connection check task end + +2025-09-24 19:07:46,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:46,978 INFO Connection check task start + +2025-09-24 19:07:46,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:46,979 INFO Out dated connection ,size=0 + +2025-09-24 19:07:46,979 INFO Connection check task end + +2025-09-24 19:07:49,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:49,979 INFO Connection check task start + +2025-09-24 19:07:49,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:49,979 INFO Out dated connection ,size=0 + +2025-09-24 19:07:49,979 INFO Connection check task end + +2025-09-24 19:07:52,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:52,980 INFO Connection check task start + +2025-09-24 19:07:52,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:52,980 INFO Out dated connection ,size=0 + +2025-09-24 19:07:52,980 INFO Connection check task end + +2025-09-24 19:07:55,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:55,982 INFO Connection check task start + +2025-09-24 19:07:55,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:55,982 INFO Out dated connection ,size=0 + +2025-09-24 19:07:55,982 INFO Connection check task end + +2025-09-24 19:07:58,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:07:58,984 INFO Connection check task start + +2025-09-24 19:07:58,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:07:58,984 INFO Out dated connection ,size=0 + +2025-09-24 19:07:58,984 INFO Connection check task end + +2025-09-24 19:08:01,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:01,984 INFO Connection check task start + +2025-09-24 19:08:01,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:01,984 INFO Out dated connection ,size=0 + +2025-09-24 19:08:01,984 INFO Connection check task end + +2025-09-24 19:08:04,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:04,984 INFO Connection check task start + +2025-09-24 19:08:04,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:04,984 INFO Out dated connection ,size=0 + +2025-09-24 19:08:04,984 INFO Connection check task end + +2025-09-24 19:08:07,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:07,985 INFO Connection check task start + +2025-09-24 19:08:07,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:07,985 INFO Out dated connection ,size=0 + +2025-09-24 19:08:07,985 INFO Connection check task end + +2025-09-24 19:08:10,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:10,987 INFO Connection check task start + +2025-09-24 19:08:10,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:10,987 INFO Out dated connection ,size=0 + +2025-09-24 19:08:10,987 INFO Connection check task end + +2025-09-24 19:08:13,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:13,988 INFO Connection check task start + +2025-09-24 19:08:13,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:13,988 INFO Out dated connection ,size=0 + +2025-09-24 19:08:13,988 INFO Connection check task end + +2025-09-24 19:08:16,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:16,990 INFO Connection check task start + +2025-09-24 19:08:16,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:16,990 INFO Out dated connection ,size=0 + +2025-09-24 19:08:16,990 INFO Connection check task end + +2025-09-24 19:08:19,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:19,990 INFO Connection check task start + +2025-09-24 19:08:19,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:19,990 INFO Out dated connection ,size=0 + +2025-09-24 19:08:19,990 INFO Connection check task end + +2025-09-24 19:08:22,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:22,992 INFO Connection check task start + +2025-09-24 19:08:22,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:22,992 INFO Out dated connection ,size=0 + +2025-09-24 19:08:22,992 INFO Connection check task end + +2025-09-24 19:08:25,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:25,992 INFO Connection check task start + +2025-09-24 19:08:25,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:25,992 INFO Out dated connection ,size=0 + +2025-09-24 19:08:25,992 INFO Connection check task end + +2025-09-24 19:08:28,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:28,993 INFO Connection check task start + +2025-09-24 19:08:28,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:28,993 INFO Out dated connection ,size=0 + +2025-09-24 19:08:28,993 INFO Connection check task end + +2025-09-24 19:08:31,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:31,995 INFO Connection check task start + +2025-09-24 19:08:31,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:31,995 INFO Out dated connection ,size=0 + +2025-09-24 19:08:31,995 INFO Connection check task end + +2025-09-24 19:08:34,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:34,997 INFO Connection check task start + +2025-09-24 19:08:34,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:34,997 INFO Out dated connection ,size=0 + +2025-09-24 19:08:34,997 INFO Connection check task end + +2025-09-24 19:08:37,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:37,999 INFO Connection check task start + +2025-09-24 19:08:37,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:37,999 INFO Out dated connection ,size=0 + +2025-09-24 19:08:37,999 INFO Connection check task end + +2025-09-24 19:08:40,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:41,000 INFO Connection check task start + +2025-09-24 19:08:41,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:41,000 INFO Out dated connection ,size=0 + +2025-09-24 19:08:41,000 INFO Connection check task end + +2025-09-24 19:08:43,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:44,000 INFO Connection check task start + +2025-09-24 19:08:44,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:44,001 INFO Out dated connection ,size=0 + +2025-09-24 19:08:44,001 INFO Connection check task end + +2025-09-24 19:08:46,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:47,001 INFO Connection check task start + +2025-09-24 19:08:47,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:47,001 INFO Out dated connection ,size=0 + +2025-09-24 19:08:47,001 INFO Connection check task end + +2025-09-24 19:08:49,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:50,002 INFO Connection check task start + +2025-09-24 19:08:50,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:50,002 INFO Out dated connection ,size=0 + +2025-09-24 19:08:50,002 INFO Connection check task end + +2025-09-24 19:08:52,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:53,003 INFO Connection check task start + +2025-09-24 19:08:53,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:53,003 INFO Out dated connection ,size=0 + +2025-09-24 19:08:53,003 INFO Connection check task end + +2025-09-24 19:08:55,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:56,004 INFO Connection check task start + +2025-09-24 19:08:56,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:56,005 INFO Out dated connection ,size=0 + +2025-09-24 19:08:56,005 INFO Connection check task end + +2025-09-24 19:08:58,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:08:59,005 INFO Connection check task start + +2025-09-24 19:08:59,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:08:59,005 INFO Out dated connection ,size=0 + +2025-09-24 19:08:59,005 INFO Connection check task end + +2025-09-24 19:09:01,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:02,005 INFO Connection check task start + +2025-09-24 19:09:02,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:02,006 INFO Out dated connection ,size=0 + +2025-09-24 19:09:02,006 INFO Connection check task end + +2025-09-24 19:09:04,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:05,009 INFO Connection check task start + +2025-09-24 19:09:05,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:05,009 INFO Out dated connection ,size=0 + +2025-09-24 19:09:05,009 INFO Connection check task end + +2025-09-24 19:09:07,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:08,010 INFO Connection check task start + +2025-09-24 19:09:08,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:08,010 INFO Out dated connection ,size=0 + +2025-09-24 19:09:08,010 INFO Connection check task end + +2025-09-24 19:09:10,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:11,011 INFO Connection check task start + +2025-09-24 19:09:11,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:11,011 INFO Out dated connection ,size=0 + +2025-09-24 19:09:11,011 INFO Connection check task end + +2025-09-24 19:09:13,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:14,013 INFO Connection check task start + +2025-09-24 19:09:14,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:14,013 INFO Out dated connection ,size=0 + +2025-09-24 19:09:14,013 INFO Connection check task end + +2025-09-24 19:09:16,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:17,014 INFO Connection check task start + +2025-09-24 19:09:17,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:17,014 INFO Out dated connection ,size=0 + +2025-09-24 19:09:17,014 INFO Connection check task end + +2025-09-24 19:09:19,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:20,016 INFO Connection check task start + +2025-09-24 19:09:20,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:20,016 INFO Out dated connection ,size=0 + +2025-09-24 19:09:20,016 INFO Connection check task end + +2025-09-24 19:09:22,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:23,017 INFO Connection check task start + +2025-09-24 19:09:23,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:23,017 INFO Out dated connection ,size=0 + +2025-09-24 19:09:23,017 INFO Connection check task end + +2025-09-24 19:09:25,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:26,019 INFO Connection check task start + +2025-09-24 19:09:26,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:26,019 INFO Out dated connection ,size=0 + +2025-09-24 19:09:26,019 INFO Connection check task end + +2025-09-24 19:09:28,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:29,019 INFO Connection check task start + +2025-09-24 19:09:29,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:29,019 INFO Out dated connection ,size=0 + +2025-09-24 19:09:29,019 INFO Connection check task end + +2025-09-24 19:09:31,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:32,021 INFO Connection check task start + +2025-09-24 19:09:32,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:32,021 INFO Out dated connection ,size=0 + +2025-09-24 19:09:32,021 INFO Connection check task end + +2025-09-24 19:09:34,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:35,021 INFO Connection check task start + +2025-09-24 19:09:35,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:35,022 INFO Out dated connection ,size=0 + +2025-09-24 19:09:35,022 INFO Connection check task end + +2025-09-24 19:09:37,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:38,022 INFO Connection check task start + +2025-09-24 19:09:38,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:38,022 INFO Out dated connection ,size=0 + +2025-09-24 19:09:38,022 INFO Connection check task end + +2025-09-24 19:09:40,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:41,023 INFO Connection check task start + +2025-09-24 19:09:41,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:41,023 INFO Out dated connection ,size=0 + +2025-09-24 19:09:41,023 INFO Connection check task end + +2025-09-24 19:09:43,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:44,024 INFO Connection check task start + +2025-09-24 19:09:44,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:44,024 INFO Out dated connection ,size=0 + +2025-09-24 19:09:44,024 INFO Connection check task end + +2025-09-24 19:09:46,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:47,026 INFO Connection check task start + +2025-09-24 19:09:47,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:47,026 INFO Out dated connection ,size=0 + +2025-09-24 19:09:47,026 INFO Connection check task end + +2025-09-24 19:09:49,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:50,028 INFO Connection check task start + +2025-09-24 19:09:50,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:50,028 INFO Out dated connection ,size=0 + +2025-09-24 19:09:50,029 INFO Connection check task end + +2025-09-24 19:09:52,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:53,029 INFO Connection check task start + +2025-09-24 19:09:53,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:53,029 INFO Out dated connection ,size=0 + +2025-09-24 19:09:53,029 INFO Connection check task end + +2025-09-24 19:09:55,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:56,029 INFO Connection check task start + +2025-09-24 19:09:56,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:56,029 INFO Out dated connection ,size=0 + +2025-09-24 19:09:56,029 INFO Connection check task end + +2025-09-24 19:09:58,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:09:59,030 INFO Connection check task start + +2025-09-24 19:09:59,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:09:59,030 INFO Out dated connection ,size=0 + +2025-09-24 19:09:59,030 INFO Connection check task end + +2025-09-24 19:10:01,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:02,032 INFO Connection check task start + +2025-09-24 19:10:02,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:02,032 INFO Out dated connection ,size=0 + +2025-09-24 19:10:02,032 INFO Connection check task end + +2025-09-24 19:10:04,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:05,034 INFO Connection check task start + +2025-09-24 19:10:05,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:05,034 INFO Out dated connection ,size=0 + +2025-09-24 19:10:05,034 INFO Connection check task end + +2025-09-24 19:10:07,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:08,036 INFO Connection check task start + +2025-09-24 19:10:08,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:08,036 INFO Out dated connection ,size=0 + +2025-09-24 19:10:08,036 INFO Connection check task end + +2025-09-24 19:10:10,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:11,037 INFO Connection check task start + +2025-09-24 19:10:11,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:11,048 INFO Out dated connection ,size=0 + +2025-09-24 19:10:11,048 INFO Connection check task end + +2025-09-24 19:10:13,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:14,050 INFO Connection check task start + +2025-09-24 19:10:14,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:14,050 INFO Out dated connection ,size=0 + +2025-09-24 19:10:14,050 INFO Connection check task end + +2025-09-24 19:10:16,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:17,051 INFO Connection check task start + +2025-09-24 19:10:17,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:17,051 INFO Out dated connection ,size=0 + +2025-09-24 19:10:17,051 INFO Connection check task end + +2025-09-24 19:10:19,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:20,054 INFO Connection check task start + +2025-09-24 19:10:20,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:20,054 INFO Out dated connection ,size=0 + +2025-09-24 19:10:20,054 INFO Connection check task end + +2025-09-24 19:10:22,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:23,056 INFO Connection check task start + +2025-09-24 19:10:23,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:23,056 INFO Out dated connection ,size=0 + +2025-09-24 19:10:23,056 INFO Connection check task end + +2025-09-24 19:10:25,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:26,056 INFO Connection check task start + +2025-09-24 19:10:26,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:26,056 INFO Out dated connection ,size=0 + +2025-09-24 19:10:26,057 INFO Connection check task end + +2025-09-24 19:10:28,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:29,057 INFO Connection check task start + +2025-09-24 19:10:29,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:29,057 INFO Out dated connection ,size=0 + +2025-09-24 19:10:29,057 INFO Connection check task end + +2025-09-24 19:10:31,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:32,059 INFO Connection check task start + +2025-09-24 19:10:32,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:32,059 INFO Out dated connection ,size=0 + +2025-09-24 19:10:32,059 INFO Connection check task end + +2025-09-24 19:10:34,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:35,059 INFO Connection check task start + +2025-09-24 19:10:35,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:35,060 INFO Out dated connection ,size=0 + +2025-09-24 19:10:35,060 INFO Connection check task end + +2025-09-24 19:10:37,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:38,061 INFO Connection check task start + +2025-09-24 19:10:38,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:38,061 INFO Out dated connection ,size=0 + +2025-09-24 19:10:38,061 INFO Connection check task end + +2025-09-24 19:10:40,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:41,062 INFO Connection check task start + +2025-09-24 19:10:41,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:41,062 INFO Out dated connection ,size=0 + +2025-09-24 19:10:41,062 INFO Connection check task end + +2025-09-24 19:10:43,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:44,062 INFO Connection check task start + +2025-09-24 19:10:44,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:44,062 INFO Out dated connection ,size=0 + +2025-09-24 19:10:44,062 INFO Connection check task end + +2025-09-24 19:10:46,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:47,063 INFO Connection check task start + +2025-09-24 19:10:47,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:47,063 INFO Out dated connection ,size=0 + +2025-09-24 19:10:47,063 INFO Connection check task end + +2025-09-24 19:10:49,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:50,064 INFO Connection check task start + +2025-09-24 19:10:50,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:50,064 INFO Out dated connection ,size=0 + +2025-09-24 19:10:50,064 INFO Connection check task end + +2025-09-24 19:10:52,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:53,066 INFO Connection check task start + +2025-09-24 19:10:53,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:53,066 INFO Out dated connection ,size=0 + +2025-09-24 19:10:53,066 INFO Connection check task end + +2025-09-24 19:10:55,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:56,067 INFO Connection check task start + +2025-09-24 19:10:56,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:56,067 INFO Out dated connection ,size=0 + +2025-09-24 19:10:56,067 INFO Connection check task end + +2025-09-24 19:10:58,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:10:59,068 INFO Connection check task start + +2025-09-24 19:10:59,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:10:59,068 INFO Out dated connection ,size=0 + +2025-09-24 19:10:59,068 INFO Connection check task end + +2025-09-24 19:11:01,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:02,069 INFO Connection check task start + +2025-09-24 19:11:02,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:02,069 INFO Out dated connection ,size=0 + +2025-09-24 19:11:02,069 INFO Connection check task end + +2025-09-24 19:11:04,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:05,069 INFO Connection check task start + +2025-09-24 19:11:05,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:05,069 INFO Out dated connection ,size=0 + +2025-09-24 19:11:05,070 INFO Connection check task end + +2025-09-24 19:11:07,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:08,070 INFO Connection check task start + +2025-09-24 19:11:08,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:08,070 INFO Out dated connection ,size=0 + +2025-09-24 19:11:08,070 INFO Connection check task end + +2025-09-24 19:11:10,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:11,071 INFO Connection check task start + +2025-09-24 19:11:11,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:11,071 INFO Out dated connection ,size=0 + +2025-09-24 19:11:11,071 INFO Connection check task end + +2025-09-24 19:11:13,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:14,072 INFO Connection check task start + +2025-09-24 19:11:14,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:14,072 INFO Out dated connection ,size=0 + +2025-09-24 19:11:14,072 INFO Connection check task end + +2025-09-24 19:11:16,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:17,073 INFO Connection check task start + +2025-09-24 19:11:17,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:17,073 INFO Out dated connection ,size=0 + +2025-09-24 19:11:17,073 INFO Connection check task end + +2025-09-24 19:11:19,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:20,074 INFO Connection check task start + +2025-09-24 19:11:20,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:20,074 INFO Out dated connection ,size=0 + +2025-09-24 19:11:20,074 INFO Connection check task end + +2025-09-24 19:11:22,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:23,076 INFO Connection check task start + +2025-09-24 19:11:23,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:23,076 INFO Out dated connection ,size=0 + +2025-09-24 19:11:23,076 INFO Connection check task end + +2025-09-24 19:11:25,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:26,078 INFO Connection check task start + +2025-09-24 19:11:26,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:26,079 INFO Out dated connection ,size=0 + +2025-09-24 19:11:26,079 INFO Connection check task end + +2025-09-24 19:11:28,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:29,079 INFO Connection check task start + +2025-09-24 19:11:29,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:29,079 INFO Out dated connection ,size=0 + +2025-09-24 19:11:29,079 INFO Connection check task end + +2025-09-24 19:11:31,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:32,082 INFO Connection check task start + +2025-09-24 19:11:32,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:32,082 INFO Out dated connection ,size=0 + +2025-09-24 19:11:32,082 INFO Connection check task end + +2025-09-24 19:11:34,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:35,083 INFO Connection check task start + +2025-09-24 19:11:35,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:35,083 INFO Out dated connection ,size=0 + +2025-09-24 19:11:35,083 INFO Connection check task end + +2025-09-24 19:11:37,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:38,085 INFO Connection check task start + +2025-09-24 19:11:38,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:38,086 INFO Out dated connection ,size=0 + +2025-09-24 19:11:38,086 INFO Connection check task end + +2025-09-24 19:11:40,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:41,086 INFO Connection check task start + +2025-09-24 19:11:41,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:41,087 INFO Out dated connection ,size=0 + +2025-09-24 19:11:41,087 INFO Connection check task end + +2025-09-24 19:11:43,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:44,087 INFO Connection check task start + +2025-09-24 19:11:44,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:44,088 INFO Out dated connection ,size=0 + +2025-09-24 19:11:44,088 INFO Connection check task end + +2025-09-24 19:11:46,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:47,090 INFO Connection check task start + +2025-09-24 19:11:47,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:47,090 INFO Out dated connection ,size=0 + +2025-09-24 19:11:47,090 INFO Connection check task end + +2025-09-24 19:11:49,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:50,091 INFO Connection check task start + +2025-09-24 19:11:50,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:50,092 INFO Out dated connection ,size=0 + +2025-09-24 19:11:50,092 INFO Connection check task end + +2025-09-24 19:11:52,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:53,094 INFO Connection check task start + +2025-09-24 19:11:53,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:53,094 INFO Out dated connection ,size=0 + +2025-09-24 19:11:53,094 INFO Connection check task end + +2025-09-24 19:11:55,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:56,094 INFO Connection check task start + +2025-09-24 19:11:56,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:56,095 INFO Out dated connection ,size=0 + +2025-09-24 19:11:56,095 INFO Connection check task end + +2025-09-24 19:11:58,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:11:59,097 INFO Connection check task start + +2025-09-24 19:11:59,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:11:59,097 INFO Out dated connection ,size=0 + +2025-09-24 19:11:59,097 INFO Connection check task end + +2025-09-24 19:12:01,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:02,099 INFO Connection check task start + +2025-09-24 19:12:02,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:02,099 INFO Out dated connection ,size=0 + +2025-09-24 19:12:02,099 INFO Connection check task end + +2025-09-24 19:12:04,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:05,100 INFO Connection check task start + +2025-09-24 19:12:05,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:05,101 INFO Out dated connection ,size=0 + +2025-09-24 19:12:05,101 INFO Connection check task end + +2025-09-24 19:12:07,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:08,101 INFO Connection check task start + +2025-09-24 19:12:08,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:08,101 INFO Out dated connection ,size=0 + +2025-09-24 19:12:08,101 INFO Connection check task end + +2025-09-24 19:12:10,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:11,103 INFO Connection check task start + +2025-09-24 19:12:11,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:11,103 INFO Out dated connection ,size=0 + +2025-09-24 19:12:11,104 INFO Connection check task end + +2025-09-24 19:12:13,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:14,104 INFO Connection check task start + +2025-09-24 19:12:14,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:14,104 INFO Out dated connection ,size=0 + +2025-09-24 19:12:14,104 INFO Connection check task end + +2025-09-24 19:12:16,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:17,104 INFO Connection check task start + +2025-09-24 19:12:17,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:17,105 INFO Out dated connection ,size=0 + +2025-09-24 19:12:17,105 INFO Connection check task end + +2025-09-24 19:12:19,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:20,105 INFO Connection check task start + +2025-09-24 19:12:20,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:20,105 INFO Out dated connection ,size=0 + +2025-09-24 19:12:20,105 INFO Connection check task end + +2025-09-24 19:12:22,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:23,107 INFO Connection check task start + +2025-09-24 19:12:23,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:23,107 INFO Out dated connection ,size=0 + +2025-09-24 19:12:23,107 INFO Connection check task end + +2025-09-24 19:12:25,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:26,107 INFO Connection check task start + +2025-09-24 19:12:26,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:26,108 INFO Out dated connection ,size=0 + +2025-09-24 19:12:26,108 INFO Connection check task end + +2025-09-24 19:12:28,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:29,110 INFO Connection check task start + +2025-09-24 19:12:29,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:29,110 INFO Out dated connection ,size=0 + +2025-09-24 19:12:29,110 INFO Connection check task end + +2025-09-24 19:12:31,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:32,111 INFO Connection check task start + +2025-09-24 19:12:32,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:32,111 INFO Out dated connection ,size=0 + +2025-09-24 19:12:32,111 INFO Connection check task end + +2025-09-24 19:12:34,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:35,111 INFO Connection check task start + +2025-09-24 19:12:35,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:35,111 INFO Out dated connection ,size=0 + +2025-09-24 19:12:35,111 INFO Connection check task end + +2025-09-24 19:12:38,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:38,112 INFO Connection check task start + +2025-09-24 19:12:38,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:38,112 INFO Out dated connection ,size=0 + +2025-09-24 19:12:38,112 INFO Connection check task end + +2025-09-24 19:12:41,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:41,114 INFO Connection check task start + +2025-09-24 19:12:41,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:41,114 INFO Out dated connection ,size=0 + +2025-09-24 19:12:41,114 INFO Connection check task end + +2025-09-24 19:12:44,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:44,116 INFO Connection check task start + +2025-09-24 19:12:44,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:44,116 INFO Out dated connection ,size=0 + +2025-09-24 19:12:44,116 INFO Connection check task end + +2025-09-24 19:12:47,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:47,117 INFO Connection check task start + +2025-09-24 19:12:47,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:47,117 INFO Out dated connection ,size=0 + +2025-09-24 19:12:47,117 INFO Connection check task end + +2025-09-24 19:12:50,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:50,119 INFO Connection check task start + +2025-09-24 19:12:50,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:50,119 INFO Out dated connection ,size=0 + +2025-09-24 19:12:50,119 INFO Connection check task end + +2025-09-24 19:12:53,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:53,121 INFO Connection check task start + +2025-09-24 19:12:53,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:53,121 INFO Out dated connection ,size=0 + +2025-09-24 19:12:53,121 INFO Connection check task end + +2025-09-24 19:12:56,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:56,121 INFO Connection check task start + +2025-09-24 19:12:56,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:56,121 INFO Out dated connection ,size=0 + +2025-09-24 19:12:56,121 INFO Connection check task end + +2025-09-24 19:12:59,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:12:59,122 INFO Connection check task start + +2025-09-24 19:12:59,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:12:59,122 INFO Out dated connection ,size=0 + +2025-09-24 19:12:59,122 INFO Connection check task end + +2025-09-24 19:13:02,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:02,122 INFO Connection check task start + +2025-09-24 19:13:02,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:02,123 INFO Out dated connection ,size=0 + +2025-09-24 19:13:02,123 INFO Connection check task end + +2025-09-24 19:13:05,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:05,123 INFO Connection check task start + +2025-09-24 19:13:05,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:05,123 INFO Out dated connection ,size=0 + +2025-09-24 19:13:05,123 INFO Connection check task end + +2025-09-24 19:13:08,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:08,125 INFO Connection check task start + +2025-09-24 19:13:08,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:08,126 INFO Out dated connection ,size=0 + +2025-09-24 19:13:08,126 INFO Connection check task end + +2025-09-24 19:13:11,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:11,127 INFO Connection check task start + +2025-09-24 19:13:11,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:11,127 INFO Out dated connection ,size=0 + +2025-09-24 19:13:11,127 INFO Connection check task end + +2025-09-24 19:13:14,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:14,129 INFO Connection check task start + +2025-09-24 19:13:14,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:14,129 INFO Out dated connection ,size=0 + +2025-09-24 19:13:14,129 INFO Connection check task end + +2025-09-24 19:13:17,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:17,130 INFO Connection check task start + +2025-09-24 19:13:17,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:17,130 INFO Out dated connection ,size=0 + +2025-09-24 19:13:17,130 INFO Connection check task end + +2025-09-24 19:13:20,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:20,130 INFO Connection check task start + +2025-09-24 19:13:20,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:20,130 INFO Out dated connection ,size=0 + +2025-09-24 19:13:20,130 INFO Connection check task end + +2025-09-24 19:13:23,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:23,131 INFO Connection check task start + +2025-09-24 19:13:23,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:23,131 INFO Out dated connection ,size=0 + +2025-09-24 19:13:23,131 INFO Connection check task end + +2025-09-24 19:13:26,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:26,131 INFO Connection check task start + +2025-09-24 19:13:26,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:26,132 INFO Out dated connection ,size=0 + +2025-09-24 19:13:26,132 INFO Connection check task end + +2025-09-24 19:13:29,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:29,132 INFO Connection check task start + +2025-09-24 19:13:29,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:29,132 INFO Out dated connection ,size=0 + +2025-09-24 19:13:29,132 INFO Connection check task end + +2025-09-24 19:13:32,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:32,134 INFO Connection check task start + +2025-09-24 19:13:32,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:32,135 INFO Out dated connection ,size=0 + +2025-09-24 19:13:32,135 INFO Connection check task end + +2025-09-24 19:13:35,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:35,135 INFO Connection check task start + +2025-09-24 19:13:35,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:35,135 INFO Out dated connection ,size=0 + +2025-09-24 19:13:35,135 INFO Connection check task end + +2025-09-24 19:13:38,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:38,135 INFO Connection check task start + +2025-09-24 19:13:38,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:38,135 INFO Out dated connection ,size=0 + +2025-09-24 19:13:38,135 INFO Connection check task end + +2025-09-24 19:13:41,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:41,136 INFO Connection check task start + +2025-09-24 19:13:41,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:41,136 INFO Out dated connection ,size=0 + +2025-09-24 19:13:41,136 INFO Connection check task end + +2025-09-24 19:13:44,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:44,137 INFO Connection check task start + +2025-09-24 19:13:44,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:44,137 INFO Out dated connection ,size=0 + +2025-09-24 19:13:44,137 INFO Connection check task end + +2025-09-24 19:13:47,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:47,138 INFO Connection check task start + +2025-09-24 19:13:47,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:47,138 INFO Out dated connection ,size=0 + +2025-09-24 19:13:47,138 INFO Connection check task end + +2025-09-24 19:13:50,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:50,139 INFO Connection check task start + +2025-09-24 19:13:50,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:50,139 INFO Out dated connection ,size=0 + +2025-09-24 19:13:50,139 INFO Connection check task end + +2025-09-24 19:13:53,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:53,141 INFO Connection check task start + +2025-09-24 19:13:53,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:53,141 INFO Out dated connection ,size=0 + +2025-09-24 19:13:53,141 INFO Connection check task end + +2025-09-24 19:13:56,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:56,143 INFO Connection check task start + +2025-09-24 19:13:56,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:56,143 INFO Out dated connection ,size=0 + +2025-09-24 19:13:56,143 INFO Connection check task end + +2025-09-24 19:13:59,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:13:59,144 INFO Connection check task start + +2025-09-24 19:13:59,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:13:59,144 INFO Out dated connection ,size=0 + +2025-09-24 19:13:59,145 INFO Connection check task end + +2025-09-24 19:14:02,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:02,145 INFO Connection check task start + +2025-09-24 19:14:02,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:02,145 INFO Out dated connection ,size=0 + +2025-09-24 19:14:02,145 INFO Connection check task end + +2025-09-24 19:14:05,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:05,146 INFO Connection check task start + +2025-09-24 19:14:05,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:05,146 INFO Out dated connection ,size=0 + +2025-09-24 19:14:05,146 INFO Connection check task end + +2025-09-24 19:14:08,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:08,148 INFO Connection check task start + +2025-09-24 19:14:08,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:08,148 INFO Out dated connection ,size=0 + +2025-09-24 19:14:08,148 INFO Connection check task end + +2025-09-24 19:14:11,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:11,148 INFO Connection check task start + +2025-09-24 19:14:11,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:11,148 INFO Out dated connection ,size=0 + +2025-09-24 19:14:11,148 INFO Connection check task end + +2025-09-24 19:14:14,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:14,149 INFO Connection check task start + +2025-09-24 19:14:14,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:14,149 INFO Out dated connection ,size=0 + +2025-09-24 19:14:14,149 INFO Connection check task end + +2025-09-24 19:14:17,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:17,150 INFO Connection check task start + +2025-09-24 19:14:17,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:17,150 INFO Out dated connection ,size=0 + +2025-09-24 19:14:17,150 INFO Connection check task end + +2025-09-24 19:14:20,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:20,152 INFO Connection check task start + +2025-09-24 19:14:20,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:20,152 INFO Out dated connection ,size=0 + +2025-09-24 19:14:20,152 INFO Connection check task end + +2025-09-24 19:14:23,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:23,153 INFO Connection check task start + +2025-09-24 19:14:23,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:23,153 INFO Out dated connection ,size=0 + +2025-09-24 19:14:23,153 INFO Connection check task end + +2025-09-24 19:14:26,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:26,154 INFO Connection check task start + +2025-09-24 19:14:26,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:26,154 INFO Out dated connection ,size=0 + +2025-09-24 19:14:26,154 INFO Connection check task end + +2025-09-24 19:14:29,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:29,155 INFO Connection check task start + +2025-09-24 19:14:29,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:29,155 INFO Out dated connection ,size=0 + +2025-09-24 19:14:29,155 INFO Connection check task end + +2025-09-24 19:14:32,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:32,156 INFO Connection check task start + +2025-09-24 19:14:32,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:32,156 INFO Out dated connection ,size=0 + +2025-09-24 19:14:32,156 INFO Connection check task end + +2025-09-24 19:14:35,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:35,158 INFO Connection check task start + +2025-09-24 19:14:35,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:35,158 INFO Out dated connection ,size=0 + +2025-09-24 19:14:35,158 INFO Connection check task end + +2025-09-24 19:14:38,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:38,160 INFO Connection check task start + +2025-09-24 19:14:38,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:38,160 INFO Out dated connection ,size=0 + +2025-09-24 19:14:38,160 INFO Connection check task end + +2025-09-24 19:14:41,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:41,162 INFO Connection check task start + +2025-09-24 19:14:41,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:41,162 INFO Out dated connection ,size=0 + +2025-09-24 19:14:41,162 INFO Connection check task end + +2025-09-24 19:14:44,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:44,164 INFO Connection check task start + +2025-09-24 19:14:44,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:44,164 INFO Out dated connection ,size=0 + +2025-09-24 19:14:44,164 INFO Connection check task end + +2025-09-24 19:14:47,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:47,165 INFO Connection check task start + +2025-09-24 19:14:47,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:47,165 INFO Out dated connection ,size=0 + +2025-09-24 19:14:47,165 INFO Connection check task end + +2025-09-24 19:14:50,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:50,166 INFO Connection check task start + +2025-09-24 19:14:50,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:50,166 INFO Out dated connection ,size=0 + +2025-09-24 19:14:50,166 INFO Connection check task end + +2025-09-24 19:14:53,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:53,168 INFO Connection check task start + +2025-09-24 19:14:53,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:53,168 INFO Out dated connection ,size=0 + +2025-09-24 19:14:53,168 INFO Connection check task end + +2025-09-24 19:14:56,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:56,169 INFO Connection check task start + +2025-09-24 19:14:56,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:56,169 INFO Out dated connection ,size=0 + +2025-09-24 19:14:56,169 INFO Connection check task end + +2025-09-24 19:14:59,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:14:59,169 INFO Connection check task start + +2025-09-24 19:14:59,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:14:59,170 INFO Out dated connection ,size=0 + +2025-09-24 19:14:59,170 INFO Connection check task end + +2025-09-24 19:15:02,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:02,172 INFO Connection check task start + +2025-09-24 19:15:02,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:02,172 INFO Out dated connection ,size=0 + +2025-09-24 19:15:02,172 INFO Connection check task end + +2025-09-24 19:15:05,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:05,172 INFO Connection check task start + +2025-09-24 19:15:05,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:05,172 INFO Out dated connection ,size=0 + +2025-09-24 19:15:05,172 INFO Connection check task end + +2025-09-24 19:15:08,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:08,173 INFO Connection check task start + +2025-09-24 19:15:08,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:08,173 INFO Out dated connection ,size=0 + +2025-09-24 19:15:08,173 INFO Connection check task end + +2025-09-24 19:15:11,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:11,175 INFO Connection check task start + +2025-09-24 19:15:11,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:11,175 INFO Out dated connection ,size=0 + +2025-09-24 19:15:11,175 INFO Connection check task end + +2025-09-24 19:15:14,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:14,176 INFO Connection check task start + +2025-09-24 19:15:14,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:14,176 INFO Out dated connection ,size=0 + +2025-09-24 19:15:14,176 INFO Connection check task end + +2025-09-24 19:15:17,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:17,177 INFO Connection check task start + +2025-09-24 19:15:17,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:17,177 INFO Out dated connection ,size=0 + +2025-09-24 19:15:17,177 INFO Connection check task end + +2025-09-24 19:15:20,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:20,177 INFO Connection check task start + +2025-09-24 19:15:20,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:20,177 INFO Out dated connection ,size=0 + +2025-09-24 19:15:20,177 INFO Connection check task end + +2025-09-24 19:15:23,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:23,179 INFO Connection check task start + +2025-09-24 19:15:23,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:23,179 INFO Out dated connection ,size=0 + +2025-09-24 19:15:23,179 INFO Connection check task end + +2025-09-24 19:15:26,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:26,181 INFO Connection check task start + +2025-09-24 19:15:26,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:26,182 INFO Out dated connection ,size=0 + +2025-09-24 19:15:26,182 INFO Connection check task end + +2025-09-24 19:15:29,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:29,184 INFO Connection check task start + +2025-09-24 19:15:29,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:29,184 INFO Out dated connection ,size=0 + +2025-09-24 19:15:29,184 INFO Connection check task end + +2025-09-24 19:15:32,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:32,184 INFO Connection check task start + +2025-09-24 19:15:32,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:32,185 INFO Out dated connection ,size=0 + +2025-09-24 19:15:32,185 INFO Connection check task end + +2025-09-24 19:15:35,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:35,187 INFO Connection check task start + +2025-09-24 19:15:35,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:35,187 INFO Out dated connection ,size=0 + +2025-09-24 19:15:35,187 INFO Connection check task end + +2025-09-24 19:15:38,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:38,187 INFO Connection check task start + +2025-09-24 19:15:38,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:38,187 INFO Out dated connection ,size=0 + +2025-09-24 19:15:38,187 INFO Connection check task end + +2025-09-24 19:15:41,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:41,188 INFO Connection check task start + +2025-09-24 19:15:41,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:41,188 INFO Out dated connection ,size=0 + +2025-09-24 19:15:41,188 INFO Connection check task end + +2025-09-24 19:15:44,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:44,189 INFO Connection check task start + +2025-09-24 19:15:44,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:44,189 INFO Out dated connection ,size=0 + +2025-09-24 19:15:44,189 INFO Connection check task end + +2025-09-24 19:15:47,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:47,189 INFO Connection check task start + +2025-09-24 19:15:47,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:47,190 INFO Out dated connection ,size=0 + +2025-09-24 19:15:47,190 INFO Connection check task end + +2025-09-24 19:15:50,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:50,190 INFO Connection check task start + +2025-09-24 19:15:50,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:50,191 INFO Out dated connection ,size=0 + +2025-09-24 19:15:50,191 INFO Connection check task end + +2025-09-24 19:15:53,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:53,191 INFO Connection check task start + +2025-09-24 19:15:53,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:53,191 INFO Out dated connection ,size=0 + +2025-09-24 19:15:53,191 INFO Connection check task end + +2025-09-24 19:15:56,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:56,193 INFO Connection check task start + +2025-09-24 19:15:56,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:56,194 INFO Out dated connection ,size=0 + +2025-09-24 19:15:56,194 INFO Connection check task end + +2025-09-24 19:15:59,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:15:59,194 INFO Connection check task start + +2025-09-24 19:15:59,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:15:59,194 INFO Out dated connection ,size=0 + +2025-09-24 19:15:59,194 INFO Connection check task end + +2025-09-24 19:16:02,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:02,196 INFO Connection check task start + +2025-09-24 19:16:02,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:02,196 INFO Out dated connection ,size=0 + +2025-09-24 19:16:02,196 INFO Connection check task end + +2025-09-24 19:16:05,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:05,198 INFO Connection check task start + +2025-09-24 19:16:05,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:05,198 INFO Out dated connection ,size=0 + +2025-09-24 19:16:05,198 INFO Connection check task end + +2025-09-24 19:16:08,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:08,199 INFO Connection check task start + +2025-09-24 19:16:08,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:08,199 INFO Out dated connection ,size=0 + +2025-09-24 19:16:08,199 INFO Connection check task end + +2025-09-24 19:16:11,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:11,199 INFO Connection check task start + +2025-09-24 19:16:11,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:11,200 INFO Out dated connection ,size=0 + +2025-09-24 19:16:11,200 INFO Connection check task end + +2025-09-24 19:16:14,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:14,200 INFO Connection check task start + +2025-09-24 19:16:14,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:14,200 INFO Out dated connection ,size=0 + +2025-09-24 19:16:14,200 INFO Connection check task end + +2025-09-24 19:16:17,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:17,200 INFO Connection check task start + +2025-09-24 19:16:17,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:17,201 INFO Out dated connection ,size=0 + +2025-09-24 19:16:17,201 INFO Connection check task end + +2025-09-24 19:16:20,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:20,201 INFO Connection check task start + +2025-09-24 19:16:20,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:20,201 INFO Out dated connection ,size=0 + +2025-09-24 19:16:20,201 INFO Connection check task end + +2025-09-24 19:16:23,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:23,201 INFO Connection check task start + +2025-09-24 19:16:23,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:23,202 INFO Out dated connection ,size=0 + +2025-09-24 19:16:23,202 INFO Connection check task end + +2025-09-24 19:16:26,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:26,202 INFO Connection check task start + +2025-09-24 19:16:26,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:26,202 INFO Out dated connection ,size=0 + +2025-09-24 19:16:26,202 INFO Connection check task end + +2025-09-24 19:16:29,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:29,203 INFO Connection check task start + +2025-09-24 19:16:29,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:29,203 INFO Out dated connection ,size=0 + +2025-09-24 19:16:29,203 INFO Connection check task end + +2025-09-24 19:16:32,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:32,203 INFO Connection check task start + +2025-09-24 19:16:32,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:32,204 INFO Out dated connection ,size=0 + +2025-09-24 19:16:32,204 INFO Connection check task end + +2025-09-24 19:16:35,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:35,206 INFO Connection check task start + +2025-09-24 19:16:35,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:35,206 INFO Out dated connection ,size=0 + +2025-09-24 19:16:35,206 INFO Connection check task end + +2025-09-24 19:16:38,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:38,206 INFO Connection check task start + +2025-09-24 19:16:38,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:38,206 INFO Out dated connection ,size=0 + +2025-09-24 19:16:38,207 INFO Connection check task end + +2025-09-24 19:16:41,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:41,209 INFO Connection check task start + +2025-09-24 19:16:41,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:41,209 INFO Out dated connection ,size=0 + +2025-09-24 19:16:41,209 INFO Connection check task end + +2025-09-24 19:16:44,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:44,210 INFO Connection check task start + +2025-09-24 19:16:44,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:44,210 INFO Out dated connection ,size=0 + +2025-09-24 19:16:44,210 INFO Connection check task end + +2025-09-24 19:16:47,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:47,211 INFO Connection check task start + +2025-09-24 19:16:47,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:47,211 INFO Out dated connection ,size=0 + +2025-09-24 19:16:47,211 INFO Connection check task end + +2025-09-24 19:16:50,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:50,213 INFO Connection check task start + +2025-09-24 19:16:50,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:50,213 INFO Out dated connection ,size=0 + +2025-09-24 19:16:50,213 INFO Connection check task end + +2025-09-24 19:16:53,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:53,213 INFO Connection check task start + +2025-09-24 19:16:53,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:53,214 INFO Out dated connection ,size=0 + +2025-09-24 19:16:53,214 INFO Connection check task end + +2025-09-24 19:16:56,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:56,216 INFO Connection check task start + +2025-09-24 19:16:56,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:56,216 INFO Out dated connection ,size=0 + +2025-09-24 19:16:56,216 INFO Connection check task end + +2025-09-24 19:16:59,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:16:59,218 INFO Connection check task start + +2025-09-24 19:16:59,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:16:59,218 INFO Out dated connection ,size=0 + +2025-09-24 19:16:59,218 INFO Connection check task end + +2025-09-24 19:17:02,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:02,220 INFO Connection check task start + +2025-09-24 19:17:02,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:02,220 INFO Out dated connection ,size=0 + +2025-09-24 19:17:02,220 INFO Connection check task end + +2025-09-24 19:17:05,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:05,221 INFO Connection check task start + +2025-09-24 19:17:05,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:05,221 INFO Out dated connection ,size=0 + +2025-09-24 19:17:05,221 INFO Connection check task end + +2025-09-24 19:17:08,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:08,223 INFO Connection check task start + +2025-09-24 19:17:08,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:08,224 INFO Out dated connection ,size=0 + +2025-09-24 19:17:08,224 INFO Connection check task end + +2025-09-24 19:17:11,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:11,225 INFO Connection check task start + +2025-09-24 19:17:11,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:11,225 INFO Out dated connection ,size=0 + +2025-09-24 19:17:11,225 INFO Connection check task end + +2025-09-24 19:17:14,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:14,227 INFO Connection check task start + +2025-09-24 19:17:14,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:14,227 INFO Out dated connection ,size=0 + +2025-09-24 19:17:14,227 INFO Connection check task end + +2025-09-24 19:17:17,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:17,228 INFO Connection check task start + +2025-09-24 19:17:17,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:17,228 INFO Out dated connection ,size=0 + +2025-09-24 19:17:17,228 INFO Connection check task end + +2025-09-24 19:17:20,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:20,228 INFO Connection check task start + +2025-09-24 19:17:20,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:20,228 INFO Out dated connection ,size=0 + +2025-09-24 19:17:20,228 INFO Connection check task end + +2025-09-24 19:17:23,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:23,229 INFO Connection check task start + +2025-09-24 19:17:23,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:23,229 INFO Out dated connection ,size=0 + +2025-09-24 19:17:23,229 INFO Connection check task end + +2025-09-24 19:17:26,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:26,231 INFO Connection check task start + +2025-09-24 19:17:26,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:26,231 INFO Out dated connection ,size=0 + +2025-09-24 19:17:26,231 INFO Connection check task end + +2025-09-24 19:17:29,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:29,232 INFO Connection check task start + +2025-09-24 19:17:29,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:29,232 INFO Out dated connection ,size=0 + +2025-09-24 19:17:29,232 INFO Connection check task end + +2025-09-24 19:17:32,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:32,233 INFO Connection check task start + +2025-09-24 19:17:32,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:32,233 INFO Out dated connection ,size=0 + +2025-09-24 19:17:32,233 INFO Connection check task end + +2025-09-24 19:17:35,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:35,235 INFO Connection check task start + +2025-09-24 19:17:35,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:35,236 INFO Out dated connection ,size=0 + +2025-09-24 19:17:35,236 INFO Connection check task end + +2025-09-24 19:17:38,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:38,236 INFO Connection check task start + +2025-09-24 19:17:38,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:38,236 INFO Out dated connection ,size=0 + +2025-09-24 19:17:38,236 INFO Connection check task end + +2025-09-24 19:17:41,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:41,238 INFO Connection check task start + +2025-09-24 19:17:41,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:41,239 INFO Out dated connection ,size=0 + +2025-09-24 19:17:41,239 INFO Connection check task end + +2025-09-24 19:17:44,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:44,239 INFO Connection check task start + +2025-09-24 19:17:44,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:44,239 INFO Out dated connection ,size=0 + +2025-09-24 19:17:44,239 INFO Connection check task end + +2025-09-24 19:17:47,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:47,241 INFO Connection check task start + +2025-09-24 19:17:47,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:47,242 INFO Out dated connection ,size=0 + +2025-09-24 19:17:47,242 INFO Connection check task end + +2025-09-24 19:17:50,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:50,242 INFO Connection check task start + +2025-09-24 19:17:50,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:50,242 INFO Out dated connection ,size=0 + +2025-09-24 19:17:50,242 INFO Connection check task end + +2025-09-24 19:17:53,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:53,243 INFO Connection check task start + +2025-09-24 19:17:53,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:53,244 INFO Out dated connection ,size=0 + +2025-09-24 19:17:53,244 INFO Connection check task end + +2025-09-24 19:17:56,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:56,244 INFO Connection check task start + +2025-09-24 19:17:56,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:56,244 INFO Out dated connection ,size=0 + +2025-09-24 19:17:56,244 INFO Connection check task end + +2025-09-24 19:17:59,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:17:59,245 INFO Connection check task start + +2025-09-24 19:17:59,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:17:59,245 INFO Out dated connection ,size=0 + +2025-09-24 19:17:59,245 INFO Connection check task end + +2025-09-24 19:18:02,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:02,247 INFO Connection check task start + +2025-09-24 19:18:02,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:02,248 INFO Out dated connection ,size=0 + +2025-09-24 19:18:02,248 INFO Connection check task end + +2025-09-24 19:18:05,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:05,250 INFO Connection check task start + +2025-09-24 19:18:05,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:05,250 INFO Out dated connection ,size=0 + +2025-09-24 19:18:05,250 INFO Connection check task end + +2025-09-24 19:18:08,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:08,252 INFO Connection check task start + +2025-09-24 19:18:08,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:08,252 INFO Out dated connection ,size=0 + +2025-09-24 19:18:08,252 INFO Connection check task end + +2025-09-24 19:18:11,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:11,253 INFO Connection check task start + +2025-09-24 19:18:11,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:11,254 INFO Out dated connection ,size=0 + +2025-09-24 19:18:11,254 INFO Connection check task end + +2025-09-24 19:18:14,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:14,255 INFO Connection check task start + +2025-09-24 19:18:14,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:14,255 INFO Out dated connection ,size=0 + +2025-09-24 19:18:14,255 INFO Connection check task end + +2025-09-24 19:18:17,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:17,256 INFO Connection check task start + +2025-09-24 19:18:17,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:17,256 INFO Out dated connection ,size=0 + +2025-09-24 19:18:17,256 INFO Connection check task end + +2025-09-24 19:18:20,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:20,256 INFO Connection check task start + +2025-09-24 19:18:20,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:20,257 INFO Out dated connection ,size=0 + +2025-09-24 19:18:20,257 INFO Connection check task end + +2025-09-24 19:18:23,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:23,257 INFO Connection check task start + +2025-09-24 19:18:23,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:23,257 INFO Out dated connection ,size=0 + +2025-09-24 19:18:23,257 INFO Connection check task end + +2025-09-24 19:18:26,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:26,257 INFO Connection check task start + +2025-09-24 19:18:26,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:26,257 INFO Out dated connection ,size=0 + +2025-09-24 19:18:26,257 INFO Connection check task end + +2025-09-24 19:18:29,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:29,259 INFO Connection check task start + +2025-09-24 19:18:29,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:29,260 INFO Out dated connection ,size=0 + +2025-09-24 19:18:29,260 INFO Connection check task end + +2025-09-24 19:18:32,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:32,262 INFO Connection check task start + +2025-09-24 19:18:32,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:32,262 INFO Out dated connection ,size=0 + +2025-09-24 19:18:32,262 INFO Connection check task end + +2025-09-24 19:18:35,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:35,262 INFO Connection check task start + +2025-09-24 19:18:35,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:35,263 INFO Out dated connection ,size=0 + +2025-09-24 19:18:35,263 INFO Connection check task end + +2025-09-24 19:18:38,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:38,264 INFO Connection check task start + +2025-09-24 19:18:38,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:38,265 INFO Out dated connection ,size=0 + +2025-09-24 19:18:38,265 INFO Connection check task end + +2025-09-24 19:18:41,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:41,265 INFO Connection check task start + +2025-09-24 19:18:41,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:41,265 INFO Out dated connection ,size=0 + +2025-09-24 19:18:41,265 INFO Connection check task end + +2025-09-24 19:18:44,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:44,267 INFO Connection check task start + +2025-09-24 19:18:44,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:44,267 INFO Out dated connection ,size=0 + +2025-09-24 19:18:44,267 INFO Connection check task end + +2025-09-24 19:18:47,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:47,269 INFO Connection check task start + +2025-09-24 19:18:47,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:47,269 INFO Out dated connection ,size=0 + +2025-09-24 19:18:47,270 INFO Connection check task end + +2025-09-24 19:18:50,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:50,272 INFO Connection check task start + +2025-09-24 19:18:50,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:50,272 INFO Out dated connection ,size=0 + +2025-09-24 19:18:50,272 INFO Connection check task end + +2025-09-24 19:18:53,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:53,272 INFO Connection check task start + +2025-09-24 19:18:53,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:53,273 INFO Out dated connection ,size=0 + +2025-09-24 19:18:53,273 INFO Connection check task end + +2025-09-24 19:18:56,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:56,274 INFO Connection check task start + +2025-09-24 19:18:56,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:56,274 INFO Out dated connection ,size=0 + +2025-09-24 19:18:56,274 INFO Connection check task end + +2025-09-24 19:18:59,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:18:59,275 INFO Connection check task start + +2025-09-24 19:18:59,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:18:59,275 INFO Out dated connection ,size=0 + +2025-09-24 19:18:59,275 INFO Connection check task end + +2025-09-24 19:19:02,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:02,276 INFO Connection check task start + +2025-09-24 19:19:02,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:02,276 INFO Out dated connection ,size=0 + +2025-09-24 19:19:02,276 INFO Connection check task end + +2025-09-24 19:19:05,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:05,278 INFO Connection check task start + +2025-09-24 19:19:05,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:05,278 INFO Out dated connection ,size=0 + +2025-09-24 19:19:05,278 INFO Connection check task end + +2025-09-24 19:19:08,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:08,279 INFO Connection check task start + +2025-09-24 19:19:08,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:08,279 INFO Out dated connection ,size=0 + +2025-09-24 19:19:08,279 INFO Connection check task end + +2025-09-24 19:19:11,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:11,280 INFO Connection check task start + +2025-09-24 19:19:11,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:11,280 INFO Out dated connection ,size=0 + +2025-09-24 19:19:11,280 INFO Connection check task end + +2025-09-24 19:19:14,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:14,282 INFO Connection check task start + +2025-09-24 19:19:14,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:14,282 INFO Out dated connection ,size=0 + +2025-09-24 19:19:14,282 INFO Connection check task end + +2025-09-24 19:19:17,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:17,284 INFO Connection check task start + +2025-09-24 19:19:17,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:17,284 INFO Out dated connection ,size=0 + +2025-09-24 19:19:17,284 INFO Connection check task end + +2025-09-24 19:19:20,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:20,284 INFO Connection check task start + +2025-09-24 19:19:20,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:20,284 INFO Out dated connection ,size=0 + +2025-09-24 19:19:20,284 INFO Connection check task end + +2025-09-24 19:19:23,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:23,284 INFO Connection check task start + +2025-09-24 19:19:23,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:23,285 INFO Out dated connection ,size=0 + +2025-09-24 19:19:23,285 INFO Connection check task end + +2025-09-24 19:19:26,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:26,285 INFO Connection check task start + +2025-09-24 19:19:26,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:26,285 INFO Out dated connection ,size=0 + +2025-09-24 19:19:26,285 INFO Connection check task end + +2025-09-24 19:19:29,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:29,286 INFO Connection check task start + +2025-09-24 19:19:29,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:29,286 INFO Out dated connection ,size=0 + +2025-09-24 19:19:29,286 INFO Connection check task end + +2025-09-24 19:19:32,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:32,286 INFO Connection check task start + +2025-09-24 19:19:32,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:32,287 INFO Out dated connection ,size=0 + +2025-09-24 19:19:32,287 INFO Connection check task end + +2025-09-24 19:19:35,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:35,288 INFO Connection check task start + +2025-09-24 19:19:35,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:35,288 INFO Out dated connection ,size=0 + +2025-09-24 19:19:35,288 INFO Connection check task end + +2025-09-24 19:19:38,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:38,288 INFO Connection check task start + +2025-09-24 19:19:38,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:38,288 INFO Out dated connection ,size=0 + +2025-09-24 19:19:38,288 INFO Connection check task end + +2025-09-24 19:19:41,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:41,289 INFO Connection check task start + +2025-09-24 19:19:41,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:41,289 INFO Out dated connection ,size=0 + +2025-09-24 19:19:41,289 INFO Connection check task end + +2025-09-24 19:19:44,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:44,290 INFO Connection check task start + +2025-09-24 19:19:44,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:44,290 INFO Out dated connection ,size=0 + +2025-09-24 19:19:44,290 INFO Connection check task end + +2025-09-24 19:19:47,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:47,290 INFO Connection check task start + +2025-09-24 19:19:47,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:47,290 INFO Out dated connection ,size=0 + +2025-09-24 19:19:47,290 INFO Connection check task end + +2025-09-24 19:19:50,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:50,291 INFO Connection check task start + +2025-09-24 19:19:50,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:50,291 INFO Out dated connection ,size=0 + +2025-09-24 19:19:50,291 INFO Connection check task end + +2025-09-24 19:19:53,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:53,293 INFO Connection check task start + +2025-09-24 19:19:53,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:53,293 INFO Out dated connection ,size=0 + +2025-09-24 19:19:53,293 INFO Connection check task end + +2025-09-24 19:19:56,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:56,293 INFO Connection check task start + +2025-09-24 19:19:56,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:56,293 INFO Out dated connection ,size=0 + +2025-09-24 19:19:56,293 INFO Connection check task end + +2025-09-24 19:19:59,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:19:59,295 INFO Connection check task start + +2025-09-24 19:19:59,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:19:59,295 INFO Out dated connection ,size=0 + +2025-09-24 19:19:59,295 INFO Connection check task end + +2025-09-24 19:20:02,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:02,297 INFO Connection check task start + +2025-09-24 19:20:02,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:02,297 INFO Out dated connection ,size=0 + +2025-09-24 19:20:02,298 INFO Connection check task end + +2025-09-24 19:20:05,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:05,299 INFO Connection check task start + +2025-09-24 19:20:05,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:05,300 INFO Out dated connection ,size=0 + +2025-09-24 19:20:05,300 INFO Connection check task end + +2025-09-24 19:20:08,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:08,300 INFO Connection check task start + +2025-09-24 19:20:08,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:08,300 INFO Out dated connection ,size=0 + +2025-09-24 19:20:08,300 INFO Connection check task end + +2025-09-24 19:20:11,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:11,301 INFO Connection check task start + +2025-09-24 19:20:11,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:11,301 INFO Out dated connection ,size=0 + +2025-09-24 19:20:11,301 INFO Connection check task end + +2025-09-24 19:20:14,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:14,303 INFO Connection check task start + +2025-09-24 19:20:14,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:14,303 INFO Out dated connection ,size=0 + +2025-09-24 19:20:14,303 INFO Connection check task end + +2025-09-24 19:20:17,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:17,304 INFO Connection check task start + +2025-09-24 19:20:17,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:17,304 INFO Out dated connection ,size=0 + +2025-09-24 19:20:17,304 INFO Connection check task end + +2025-09-24 19:20:20,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:20,305 INFO Connection check task start + +2025-09-24 19:20:20,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:20,305 INFO Out dated connection ,size=0 + +2025-09-24 19:20:20,305 INFO Connection check task end + +2025-09-24 19:20:23,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:23,306 INFO Connection check task start + +2025-09-24 19:20:23,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:23,306 INFO Out dated connection ,size=0 + +2025-09-24 19:20:23,306 INFO Connection check task end + +2025-09-24 19:20:26,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:26,307 INFO Connection check task start + +2025-09-24 19:20:26,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:26,307 INFO Out dated connection ,size=0 + +2025-09-24 19:20:26,307 INFO Connection check task end + +2025-09-24 19:20:29,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:29,308 INFO Connection check task start + +2025-09-24 19:20:29,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:29,308 INFO Out dated connection ,size=0 + +2025-09-24 19:20:29,308 INFO Connection check task end + +2025-09-24 19:20:32,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:32,309 INFO Connection check task start + +2025-09-24 19:20:32,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:32,309 INFO Out dated connection ,size=0 + +2025-09-24 19:20:32,309 INFO Connection check task end + +2025-09-24 19:20:35,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:35,311 INFO Connection check task start + +2025-09-24 19:20:35,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:35,311 INFO Out dated connection ,size=0 + +2025-09-24 19:20:35,311 INFO Connection check task end + +2025-09-24 19:20:38,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:38,311 INFO Connection check task start + +2025-09-24 19:20:38,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:38,311 INFO Out dated connection ,size=0 + +2025-09-24 19:20:38,312 INFO Connection check task end + +2025-09-24 19:20:41,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:41,313 INFO Connection check task start + +2025-09-24 19:20:41,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:41,314 INFO Out dated connection ,size=0 + +2025-09-24 19:20:41,314 INFO Connection check task end + +2025-09-24 19:20:44,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:44,315 INFO Connection check task start + +2025-09-24 19:20:44,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:44,315 INFO Out dated connection ,size=0 + +2025-09-24 19:20:44,315 INFO Connection check task end + +2025-09-24 19:20:47,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:47,317 INFO Connection check task start + +2025-09-24 19:20:47,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:47,317 INFO Out dated connection ,size=0 + +2025-09-24 19:20:47,317 INFO Connection check task end + +2025-09-24 19:20:50,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:50,318 INFO Connection check task start + +2025-09-24 19:20:50,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:50,318 INFO Out dated connection ,size=0 + +2025-09-24 19:20:50,318 INFO Connection check task end + +2025-09-24 19:20:53,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:53,319 INFO Connection check task start + +2025-09-24 19:20:53,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:53,319 INFO Out dated connection ,size=0 + +2025-09-24 19:20:53,319 INFO Connection check task end + +2025-09-24 19:20:56,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:56,319 INFO Connection check task start + +2025-09-24 19:20:56,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:56,319 INFO Out dated connection ,size=0 + +2025-09-24 19:20:56,319 INFO Connection check task end + +2025-09-24 19:20:59,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:20:59,320 INFO Connection check task start + +2025-09-24 19:20:59,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:20:59,320 INFO Out dated connection ,size=0 + +2025-09-24 19:20:59,320 INFO Connection check task end + +2025-09-24 19:21:02,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:02,322 INFO Connection check task start + +2025-09-24 19:21:02,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:02,322 INFO Out dated connection ,size=0 + +2025-09-24 19:21:02,322 INFO Connection check task end + +2025-09-24 19:21:05,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:05,324 INFO Connection check task start + +2025-09-24 19:21:05,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:05,325 INFO Out dated connection ,size=0 + +2025-09-24 19:21:05,325 INFO Connection check task end + +2025-09-24 19:21:08,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:08,326 INFO Connection check task start + +2025-09-24 19:21:08,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:08,326 INFO Out dated connection ,size=0 + +2025-09-24 19:21:08,326 INFO Connection check task end + +2025-09-24 19:21:11,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:11,326 INFO Connection check task start + +2025-09-24 19:21:11,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:11,326 INFO Out dated connection ,size=0 + +2025-09-24 19:21:11,326 INFO Connection check task end + +2025-09-24 19:21:14,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:14,327 INFO Connection check task start + +2025-09-24 19:21:14,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:14,327 INFO Out dated connection ,size=0 + +2025-09-24 19:21:14,327 INFO Connection check task end + +2025-09-24 19:21:17,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:17,329 INFO Connection check task start + +2025-09-24 19:21:17,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:17,330 INFO Out dated connection ,size=0 + +2025-09-24 19:21:17,330 INFO Connection check task end + +2025-09-24 19:21:20,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:20,330 INFO Connection check task start + +2025-09-24 19:21:20,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:20,330 INFO Out dated connection ,size=0 + +2025-09-24 19:21:20,330 INFO Connection check task end + +2025-09-24 19:21:23,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:23,331 INFO Connection check task start + +2025-09-24 19:21:23,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:23,331 INFO Out dated connection ,size=0 + +2025-09-24 19:21:23,331 INFO Connection check task end + +2025-09-24 19:21:26,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:26,332 INFO Connection check task start + +2025-09-24 19:21:26,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:26,332 INFO Out dated connection ,size=0 + +2025-09-24 19:21:26,332 INFO Connection check task end + +2025-09-24 19:21:29,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:29,333 INFO Connection check task start + +2025-09-24 19:21:29,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:29,333 INFO Out dated connection ,size=0 + +2025-09-24 19:21:29,333 INFO Connection check task end + +2025-09-24 19:21:32,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:32,333 INFO Connection check task start + +2025-09-24 19:21:32,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:32,333 INFO Out dated connection ,size=0 + +2025-09-24 19:21:32,333 INFO Connection check task end + +2025-09-24 19:21:35,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:35,335 INFO Connection check task start + +2025-09-24 19:21:35,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:35,336 INFO Out dated connection ,size=0 + +2025-09-24 19:21:35,336 INFO Connection check task end + +2025-09-24 19:21:38,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:38,337 INFO Connection check task start + +2025-09-24 19:21:38,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:38,337 INFO Out dated connection ,size=0 + +2025-09-24 19:21:38,337 INFO Connection check task end + +2025-09-24 19:21:41,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:41,337 INFO Connection check task start + +2025-09-24 19:21:41,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:41,337 INFO Out dated connection ,size=0 + +2025-09-24 19:21:41,337 INFO Connection check task end + +2025-09-24 19:21:44,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:44,339 INFO Connection check task start + +2025-09-24 19:21:44,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:44,340 INFO Out dated connection ,size=0 + +2025-09-24 19:21:44,340 INFO Connection check task end + +2025-09-24 19:21:47,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:47,341 INFO Connection check task start + +2025-09-24 19:21:47,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:47,341 INFO Out dated connection ,size=0 + +2025-09-24 19:21:47,341 INFO Connection check task end + +2025-09-24 19:21:50,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:50,342 INFO Connection check task start + +2025-09-24 19:21:50,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:50,342 INFO Out dated connection ,size=0 + +2025-09-24 19:21:50,342 INFO Connection check task end + +2025-09-24 19:21:53,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:53,343 INFO Connection check task start + +2025-09-24 19:21:53,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:53,343 INFO Out dated connection ,size=0 + +2025-09-24 19:21:53,343 INFO Connection check task end + +2025-09-24 19:21:56,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:56,343 INFO Connection check task start + +2025-09-24 19:21:56,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:56,343 INFO Out dated connection ,size=0 + +2025-09-24 19:21:56,343 INFO Connection check task end + +2025-09-24 19:21:59,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:21:59,344 INFO Connection check task start + +2025-09-24 19:21:59,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:21:59,344 INFO Out dated connection ,size=0 + +2025-09-24 19:21:59,344 INFO Connection check task end + +2025-09-24 19:22:02,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:02,344 INFO Connection check task start + +2025-09-24 19:22:02,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:02,345 INFO Out dated connection ,size=0 + +2025-09-24 19:22:02,345 INFO Connection check task end + +2025-09-24 19:22:05,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:05,347 INFO Connection check task start + +2025-09-24 19:22:05,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:05,347 INFO Out dated connection ,size=0 + +2025-09-24 19:22:05,347 INFO Connection check task end + +2025-09-24 19:22:08,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:08,349 INFO Connection check task start + +2025-09-24 19:22:08,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:08,349 INFO Out dated connection ,size=0 + +2025-09-24 19:22:08,349 INFO Connection check task end + +2025-09-24 19:22:11,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:11,351 INFO Connection check task start + +2025-09-24 19:22:11,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:11,351 INFO Out dated connection ,size=0 + +2025-09-24 19:22:11,351 INFO Connection check task end + +2025-09-24 19:22:14,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:14,354 INFO Connection check task start + +2025-09-24 19:22:14,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:14,354 INFO Out dated connection ,size=0 + +2025-09-24 19:22:14,354 INFO Connection check task end + +2025-09-24 19:22:17,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:17,355 INFO Connection check task start + +2025-09-24 19:22:17,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:17,355 INFO Out dated connection ,size=0 + +2025-09-24 19:22:17,355 INFO Connection check task end + +2025-09-24 19:22:20,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:20,357 INFO Connection check task start + +2025-09-24 19:22:20,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:20,357 INFO Out dated connection ,size=0 + +2025-09-24 19:22:20,357 INFO Connection check task end + +2025-09-24 19:22:23,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:23,357 INFO Connection check task start + +2025-09-24 19:22:23,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:23,357 INFO Out dated connection ,size=0 + +2025-09-24 19:22:23,357 INFO Connection check task end + +2025-09-24 19:22:26,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:26,358 INFO Connection check task start + +2025-09-24 19:22:26,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:26,358 INFO Out dated connection ,size=0 + +2025-09-24 19:22:26,358 INFO Connection check task end + +2025-09-24 19:22:29,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:29,360 INFO Connection check task start + +2025-09-24 19:22:29,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:29,361 INFO Out dated connection ,size=0 + +2025-09-24 19:22:29,361 INFO Connection check task end + +2025-09-24 19:22:32,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:32,361 INFO Connection check task start + +2025-09-24 19:22:32,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:32,361 INFO Out dated connection ,size=0 + +2025-09-24 19:22:32,361 INFO Connection check task end + +2025-09-24 19:22:35,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:35,362 INFO Connection check task start + +2025-09-24 19:22:35,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:35,362 INFO Out dated connection ,size=0 + +2025-09-24 19:22:35,362 INFO Connection check task end + +2025-09-24 19:22:38,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:38,362 INFO Connection check task start + +2025-09-24 19:22:38,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:38,362 INFO Out dated connection ,size=0 + +2025-09-24 19:22:38,362 INFO Connection check task end + +2025-09-24 19:22:41,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:41,363 INFO Connection check task start + +2025-09-24 19:22:41,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:41,363 INFO Out dated connection ,size=0 + +2025-09-24 19:22:41,363 INFO Connection check task end + +2025-09-24 19:22:44,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:44,363 INFO Connection check task start + +2025-09-24 19:22:44,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:44,363 INFO Out dated connection ,size=0 + +2025-09-24 19:22:44,363 INFO Connection check task end + +2025-09-24 19:22:47,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:47,365 INFO Connection check task start + +2025-09-24 19:22:47,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:47,366 INFO Out dated connection ,size=0 + +2025-09-24 19:22:47,366 INFO Connection check task end + +2025-09-24 19:22:50,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:50,366 INFO Connection check task start + +2025-09-24 19:22:50,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:50,366 INFO Out dated connection ,size=0 + +2025-09-24 19:22:50,366 INFO Connection check task end + +2025-09-24 19:22:53,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:53,367 INFO Connection check task start + +2025-09-24 19:22:53,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:53,367 INFO Out dated connection ,size=0 + +2025-09-24 19:22:53,367 INFO Connection check task end + +2025-09-24 19:22:56,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:56,369 INFO Connection check task start + +2025-09-24 19:22:56,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:56,369 INFO Out dated connection ,size=0 + +2025-09-24 19:22:56,369 INFO Connection check task end + +2025-09-24 19:22:59,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:22:59,369 INFO Connection check task start + +2025-09-24 19:22:59,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:22:59,370 INFO Out dated connection ,size=0 + +2025-09-24 19:22:59,370 INFO Connection check task end + +2025-09-24 19:23:02,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:02,371 INFO Connection check task start + +2025-09-24 19:23:02,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:02,371 INFO Out dated connection ,size=0 + +2025-09-24 19:23:02,371 INFO Connection check task end + +2025-09-24 19:23:05,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:05,372 INFO Connection check task start + +2025-09-24 19:23:05,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:05,372 INFO Out dated connection ,size=0 + +2025-09-24 19:23:05,372 INFO Connection check task end + +2025-09-24 19:23:08,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:08,372 INFO Connection check task start + +2025-09-24 19:23:08,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:08,372 INFO Out dated connection ,size=0 + +2025-09-24 19:23:08,372 INFO Connection check task end + +2025-09-24 19:23:11,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:11,373 INFO Connection check task start + +2025-09-24 19:23:11,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:11,374 INFO Out dated connection ,size=0 + +2025-09-24 19:23:11,374 INFO Connection check task end + +2025-09-24 19:23:14,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:14,374 INFO Connection check task start + +2025-09-24 19:23:14,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:14,375 INFO Out dated connection ,size=0 + +2025-09-24 19:23:14,375 INFO Connection check task end + +2025-09-24 19:23:17,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:17,375 INFO Connection check task start + +2025-09-24 19:23:17,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:17,375 INFO Out dated connection ,size=0 + +2025-09-24 19:23:17,375 INFO Connection check task end + +2025-09-24 19:23:20,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:20,377 INFO Connection check task start + +2025-09-24 19:23:20,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:20,377 INFO Out dated connection ,size=0 + +2025-09-24 19:23:20,377 INFO Connection check task end + +2025-09-24 19:23:23,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:23,379 INFO Connection check task start + +2025-09-24 19:23:23,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:23,379 INFO Out dated connection ,size=0 + +2025-09-24 19:23:23,379 INFO Connection check task end + +2025-09-24 19:23:26,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:26,379 INFO Connection check task start + +2025-09-24 19:23:26,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:26,379 INFO Out dated connection ,size=0 + +2025-09-24 19:23:26,379 INFO Connection check task end + +2025-09-24 19:23:29,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:29,380 INFO Connection check task start + +2025-09-24 19:23:29,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:29,380 INFO Out dated connection ,size=0 + +2025-09-24 19:23:29,380 INFO Connection check task end + +2025-09-24 19:23:32,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:32,382 INFO Connection check task start + +2025-09-24 19:23:32,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:32,382 INFO Out dated connection ,size=0 + +2025-09-24 19:23:32,382 INFO Connection check task end + +2025-09-24 19:23:35,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:35,382 INFO Connection check task start + +2025-09-24 19:23:35,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:35,383 INFO Out dated connection ,size=0 + +2025-09-24 19:23:35,383 INFO Connection check task end + +2025-09-24 19:23:38,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:38,383 INFO Connection check task start + +2025-09-24 19:23:38,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:38,383 INFO Out dated connection ,size=0 + +2025-09-24 19:23:38,383 INFO Connection check task end + +2025-09-24 19:23:41,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:41,384 INFO Connection check task start + +2025-09-24 19:23:41,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:41,384 INFO Out dated connection ,size=0 + +2025-09-24 19:23:41,384 INFO Connection check task end + +2025-09-24 19:23:44,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:44,386 INFO Connection check task start + +2025-09-24 19:23:44,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:44,386 INFO Out dated connection ,size=0 + +2025-09-24 19:23:44,386 INFO Connection check task end + +2025-09-24 19:23:47,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:47,387 INFO Connection check task start + +2025-09-24 19:23:47,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:47,387 INFO Out dated connection ,size=0 + +2025-09-24 19:23:47,387 INFO Connection check task end + +2025-09-24 19:23:50,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:50,389 INFO Connection check task start + +2025-09-24 19:23:50,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:50,390 INFO Out dated connection ,size=0 + +2025-09-24 19:23:50,390 INFO Connection check task end + +2025-09-24 19:23:53,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:53,391 INFO Connection check task start + +2025-09-24 19:23:53,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:53,391 INFO Out dated connection ,size=0 + +2025-09-24 19:23:53,391 INFO Connection check task end + +2025-09-24 19:23:56,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:56,391 INFO Connection check task start + +2025-09-24 19:23:56,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:56,392 INFO Out dated connection ,size=0 + +2025-09-24 19:23:56,392 INFO Connection check task end + +2025-09-24 19:23:59,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:23:59,394 INFO Connection check task start + +2025-09-24 19:23:59,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:23:59,394 INFO Out dated connection ,size=0 + +2025-09-24 19:23:59,394 INFO Connection check task end + +2025-09-24 19:24:02,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:02,396 INFO Connection check task start + +2025-09-24 19:24:02,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:02,396 INFO Out dated connection ,size=0 + +2025-09-24 19:24:02,396 INFO Connection check task end + +2025-09-24 19:24:05,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:05,398 INFO Connection check task start + +2025-09-24 19:24:05,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:05,399 INFO Out dated connection ,size=0 + +2025-09-24 19:24:05,399 INFO Connection check task end + +2025-09-24 19:24:08,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:08,401 INFO Connection check task start + +2025-09-24 19:24:08,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:08,401 INFO Out dated connection ,size=0 + +2025-09-24 19:24:08,401 INFO Connection check task end + +2025-09-24 19:24:11,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:11,401 INFO Connection check task start + +2025-09-24 19:24:11,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:11,401 INFO Out dated connection ,size=0 + +2025-09-24 19:24:11,401 INFO Connection check task end + +2025-09-24 19:24:14,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:14,402 INFO Connection check task start + +2025-09-24 19:24:14,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:14,402 INFO Out dated connection ,size=0 + +2025-09-24 19:24:14,402 INFO Connection check task end + +2025-09-24 19:24:17,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:17,402 INFO Connection check task start + +2025-09-24 19:24:17,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:17,402 INFO Out dated connection ,size=0 + +2025-09-24 19:24:17,402 INFO Connection check task end + +2025-09-24 19:24:20,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:20,402 INFO Connection check task start + +2025-09-24 19:24:20,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:20,403 INFO Out dated connection ,size=0 + +2025-09-24 19:24:20,403 INFO Connection check task end + +2025-09-24 19:24:23,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:23,403 INFO Connection check task start + +2025-09-24 19:24:23,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:23,403 INFO Out dated connection ,size=0 + +2025-09-24 19:24:23,403 INFO Connection check task end + +2025-09-24 19:24:26,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:26,403 INFO Connection check task start + +2025-09-24 19:24:26,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:26,403 INFO Out dated connection ,size=0 + +2025-09-24 19:24:26,403 INFO Connection check task end + +2025-09-24 19:24:29,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:29,403 INFO Connection check task start + +2025-09-24 19:24:29,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:29,404 INFO Out dated connection ,size=0 + +2025-09-24 19:24:29,404 INFO Connection check task end + +2025-09-24 19:24:32,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:32,404 INFO Connection check task start + +2025-09-24 19:24:32,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:32,404 INFO Out dated connection ,size=0 + +2025-09-24 19:24:32,404 INFO Connection check task end + +2025-09-24 19:24:35,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:35,404 INFO Connection check task start + +2025-09-24 19:24:35,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:35,404 INFO Out dated connection ,size=0 + +2025-09-24 19:24:35,404 INFO Connection check task end + +2025-09-24 19:24:38,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:38,404 INFO Connection check task start + +2025-09-24 19:24:38,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:38,405 INFO Out dated connection ,size=0 + +2025-09-24 19:24:38,405 INFO Connection check task end + +2025-09-24 19:24:41,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:41,406 INFO Connection check task start + +2025-09-24 19:24:41,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:41,407 INFO Out dated connection ,size=0 + +2025-09-24 19:24:41,407 INFO Connection check task end + +2025-09-24 19:24:44,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:44,408 INFO Connection check task start + +2025-09-24 19:24:44,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:44,408 INFO Out dated connection ,size=0 + +2025-09-24 19:24:44,409 INFO Connection check task end + +2025-09-24 19:24:47,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:47,409 INFO Connection check task start + +2025-09-24 19:24:47,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:47,409 INFO Out dated connection ,size=0 + +2025-09-24 19:24:47,409 INFO Connection check task end + +2025-09-24 19:24:50,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:50,410 INFO Connection check task start + +2025-09-24 19:24:50,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:50,410 INFO Out dated connection ,size=0 + +2025-09-24 19:24:50,410 INFO Connection check task end + +2025-09-24 19:24:53,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:53,412 INFO Connection check task start + +2025-09-24 19:24:53,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:53,412 INFO Out dated connection ,size=0 + +2025-09-24 19:24:53,412 INFO Connection check task end + +2025-09-24 19:24:56,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:56,414 INFO Connection check task start + +2025-09-24 19:24:56,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:56,414 INFO Out dated connection ,size=0 + +2025-09-24 19:24:56,414 INFO Connection check task end + +2025-09-24 19:24:59,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:24:59,415 INFO Connection check task start + +2025-09-24 19:24:59,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:24:59,415 INFO Out dated connection ,size=0 + +2025-09-24 19:24:59,415 INFO Connection check task end + +2025-09-24 19:25:02,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:02,415 INFO Connection check task start + +2025-09-24 19:25:02,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:02,416 INFO Out dated connection ,size=0 + +2025-09-24 19:25:02,416 INFO Connection check task end + +2025-09-24 19:25:05,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:05,416 INFO Connection check task start + +2025-09-24 19:25:05,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:05,416 INFO Out dated connection ,size=0 + +2025-09-24 19:25:05,416 INFO Connection check task end + +2025-09-24 19:25:08,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:08,417 INFO Connection check task start + +2025-09-24 19:25:08,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:08,417 INFO Out dated connection ,size=0 + +2025-09-24 19:25:08,417 INFO Connection check task end + +2025-09-24 19:25:11,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:11,418 INFO Connection check task start + +2025-09-24 19:25:11,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:11,418 INFO Out dated connection ,size=0 + +2025-09-24 19:25:11,418 INFO Connection check task end + +2025-09-24 19:25:14,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:14,418 INFO Connection check task start + +2025-09-24 19:25:14,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:14,419 INFO Out dated connection ,size=0 + +2025-09-24 19:25:14,419 INFO Connection check task end + +2025-09-24 19:25:17,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:17,421 INFO Connection check task start + +2025-09-24 19:25:17,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:17,421 INFO Out dated connection ,size=0 + +2025-09-24 19:25:17,421 INFO Connection check task end + +2025-09-24 19:25:20,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:20,422 INFO Connection check task start + +2025-09-24 19:25:20,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:20,422 INFO Out dated connection ,size=0 + +2025-09-24 19:25:20,422 INFO Connection check task end + +2025-09-24 19:25:23,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:23,424 INFO Connection check task start + +2025-09-24 19:25:23,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:23,424 INFO Out dated connection ,size=0 + +2025-09-24 19:25:23,424 INFO Connection check task end + +2025-09-24 19:25:26,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:26,425 INFO Connection check task start + +2025-09-24 19:25:26,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:26,425 INFO Out dated connection ,size=0 + +2025-09-24 19:25:26,425 INFO Connection check task end + +2025-09-24 19:25:29,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:29,427 INFO Connection check task start + +2025-09-24 19:25:29,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:29,428 INFO Out dated connection ,size=0 + +2025-09-24 19:25:29,428 INFO Connection check task end + +2025-09-24 19:25:32,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:32,430 INFO Connection check task start + +2025-09-24 19:25:32,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:32,430 INFO Out dated connection ,size=0 + +2025-09-24 19:25:32,430 INFO Connection check task end + +2025-09-24 19:25:35,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:35,431 INFO Connection check task start + +2025-09-24 19:25:35,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:35,431 INFO Out dated connection ,size=0 + +2025-09-24 19:25:35,431 INFO Connection check task end + +2025-09-24 19:25:38,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:38,434 INFO Connection check task start + +2025-09-24 19:25:38,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:38,434 INFO Out dated connection ,size=0 + +2025-09-24 19:25:38,434 INFO Connection check task end + +2025-09-24 19:25:41,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:41,436 INFO Connection check task start + +2025-09-24 19:25:41,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:41,436 INFO Out dated connection ,size=0 + +2025-09-24 19:25:41,436 INFO Connection check task end + +2025-09-24 19:25:44,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:44,437 INFO Connection check task start + +2025-09-24 19:25:44,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:44,437 INFO Out dated connection ,size=0 + +2025-09-24 19:25:44,437 INFO Connection check task end + +2025-09-24 19:25:47,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:47,439 INFO Connection check task start + +2025-09-24 19:25:47,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:47,439 INFO Out dated connection ,size=0 + +2025-09-24 19:25:47,440 INFO Connection check task end + +2025-09-24 19:25:50,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:50,441 INFO Connection check task start + +2025-09-24 19:25:50,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:50,442 INFO Out dated connection ,size=0 + +2025-09-24 19:25:50,442 INFO Connection check task end + +2025-09-24 19:25:53,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:53,443 INFO Connection check task start + +2025-09-24 19:25:53,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:53,443 INFO Out dated connection ,size=0 + +2025-09-24 19:25:53,443 INFO Connection check task end + +2025-09-24 19:25:56,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:56,444 INFO Connection check task start + +2025-09-24 19:25:56,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:56,444 INFO Out dated connection ,size=0 + +2025-09-24 19:25:56,444 INFO Connection check task end + +2025-09-24 19:25:59,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:25:59,446 INFO Connection check task start + +2025-09-24 19:25:59,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:25:59,446 INFO Out dated connection ,size=0 + +2025-09-24 19:25:59,446 INFO Connection check task end + +2025-09-24 19:26:02,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:02,448 INFO Connection check task start + +2025-09-24 19:26:02,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:02,448 INFO Out dated connection ,size=0 + +2025-09-24 19:26:02,448 INFO Connection check task end + +2025-09-24 19:26:05,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:05,450 INFO Connection check task start + +2025-09-24 19:26:05,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:05,451 INFO Out dated connection ,size=0 + +2025-09-24 19:26:05,451 INFO Connection check task end + +2025-09-24 19:26:08,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:08,451 INFO Connection check task start + +2025-09-24 19:26:08,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:08,451 INFO Out dated connection ,size=0 + +2025-09-24 19:26:08,451 INFO Connection check task end + +2025-09-24 19:26:11,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:11,451 INFO Connection check task start + +2025-09-24 19:26:11,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:11,452 INFO Out dated connection ,size=0 + +2025-09-24 19:26:11,452 INFO Connection check task end + +2025-09-24 19:26:14,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:14,454 INFO Connection check task start + +2025-09-24 19:26:14,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:14,454 INFO Out dated connection ,size=0 + +2025-09-24 19:26:14,454 INFO Connection check task end + +2025-09-24 19:26:17,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:17,456 INFO Connection check task start + +2025-09-24 19:26:17,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:17,456 INFO Out dated connection ,size=0 + +2025-09-24 19:26:17,457 INFO Connection check task end + +2025-09-24 19:26:20,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:20,458 INFO Connection check task start + +2025-09-24 19:26:20,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:20,459 INFO Out dated connection ,size=0 + +2025-09-24 19:26:20,459 INFO Connection check task end + +2025-09-24 19:26:23,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:23,459 INFO Connection check task start + +2025-09-24 19:26:23,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:23,459 INFO Out dated connection ,size=0 + +2025-09-24 19:26:23,459 INFO Connection check task end + +2025-09-24 19:26:26,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:26,460 INFO Connection check task start + +2025-09-24 19:26:26,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:26,460 INFO Out dated connection ,size=0 + +2025-09-24 19:26:26,460 INFO Connection check task end + +2025-09-24 19:26:29,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:29,460 INFO Connection check task start + +2025-09-24 19:26:29,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:29,461 INFO Out dated connection ,size=0 + +2025-09-24 19:26:29,461 INFO Connection check task end + +2025-09-24 19:26:32,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:32,463 INFO Connection check task start + +2025-09-24 19:26:32,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:32,463 INFO Out dated connection ,size=0 + +2025-09-24 19:26:32,463 INFO Connection check task end + +2025-09-24 19:26:35,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:35,464 INFO Connection check task start + +2025-09-24 19:26:35,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:35,464 INFO Out dated connection ,size=0 + +2025-09-24 19:26:35,464 INFO Connection check task end + +2025-09-24 19:26:38,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:38,465 INFO Connection check task start + +2025-09-24 19:26:38,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:38,465 INFO Out dated connection ,size=0 + +2025-09-24 19:26:38,465 INFO Connection check task end + +2025-09-24 19:26:41,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:41,466 INFO Connection check task start + +2025-09-24 19:26:41,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:41,466 INFO Out dated connection ,size=0 + +2025-09-24 19:26:41,466 INFO Connection check task end + +2025-09-24 19:26:44,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:44,468 INFO Connection check task start + +2025-09-24 19:26:44,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:44,469 INFO Out dated connection ,size=0 + +2025-09-24 19:26:44,469 INFO Connection check task end + +2025-09-24 19:26:47,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:47,469 INFO Connection check task start + +2025-09-24 19:26:47,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:47,469 INFO Out dated connection ,size=0 + +2025-09-24 19:26:47,469 INFO Connection check task end + +2025-09-24 19:26:50,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:50,470 INFO Connection check task start + +2025-09-24 19:26:50,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:50,470 INFO Out dated connection ,size=0 + +2025-09-24 19:26:50,470 INFO Connection check task end + +2025-09-24 19:26:53,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:53,471 INFO Connection check task start + +2025-09-24 19:26:53,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:53,471 INFO Out dated connection ,size=0 + +2025-09-24 19:26:53,471 INFO Connection check task end + +2025-09-24 19:26:56,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:56,471 INFO Connection check task start + +2025-09-24 19:26:56,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:56,471 INFO Out dated connection ,size=0 + +2025-09-24 19:26:56,471 INFO Connection check task end + +2025-09-24 19:26:59,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:26:59,473 INFO Connection check task start + +2025-09-24 19:26:59,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:26:59,473 INFO Out dated connection ,size=0 + +2025-09-24 19:26:59,473 INFO Connection check task end + +2025-09-24 19:27:02,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:02,474 INFO Connection check task start + +2025-09-24 19:27:02,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:02,474 INFO Out dated connection ,size=0 + +2025-09-24 19:27:02,474 INFO Connection check task end + +2025-09-24 19:27:05,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:05,474 INFO Connection check task start + +2025-09-24 19:27:05,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:05,475 INFO Out dated connection ,size=0 + +2025-09-24 19:27:05,475 INFO Connection check task end + +2025-09-24 19:27:08,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:08,476 INFO Connection check task start + +2025-09-24 19:27:08,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:08,476 INFO Out dated connection ,size=0 + +2025-09-24 19:27:08,476 INFO Connection check task end + +2025-09-24 19:27:11,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:11,478 INFO Connection check task start + +2025-09-24 19:27:11,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:11,478 INFO Out dated connection ,size=0 + +2025-09-24 19:27:11,478 INFO Connection check task end + +2025-09-24 19:27:14,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:14,479 INFO Connection check task start + +2025-09-24 19:27:14,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:14,479 INFO Out dated connection ,size=0 + +2025-09-24 19:27:14,479 INFO Connection check task end + +2025-09-24 19:27:17,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:17,480 INFO Connection check task start + +2025-09-24 19:27:17,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:17,480 INFO Out dated connection ,size=0 + +2025-09-24 19:27:17,480 INFO Connection check task end + +2025-09-24 19:27:20,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:20,485 INFO Connection check task start + +2025-09-24 19:27:20,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:20,485 INFO Out dated connection ,size=0 + +2025-09-24 19:27:20,485 INFO Connection check task end + +2025-09-24 19:27:23,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:23,487 INFO Connection check task start + +2025-09-24 19:27:23,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:23,487 INFO Out dated connection ,size=0 + +2025-09-24 19:27:23,487 INFO Connection check task end + +2025-09-24 19:27:26,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:26,489 INFO Connection check task start + +2025-09-24 19:27:26,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:26,489 INFO Out dated connection ,size=0 + +2025-09-24 19:27:26,489 INFO Connection check task end + +2025-09-24 19:27:29,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:29,490 INFO Connection check task start + +2025-09-24 19:27:29,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:29,490 INFO Out dated connection ,size=0 + +2025-09-24 19:27:29,490 INFO Connection check task end + +2025-09-24 19:27:32,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:32,492 INFO Connection check task start + +2025-09-24 19:27:32,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:32,492 INFO Out dated connection ,size=0 + +2025-09-24 19:27:32,492 INFO Connection check task end + +2025-09-24 19:27:35,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:35,494 INFO Connection check task start + +2025-09-24 19:27:35,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:35,494 INFO Out dated connection ,size=0 + +2025-09-24 19:27:35,495 INFO Connection check task end + +2025-09-24 19:27:38,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:38,497 INFO Connection check task start + +2025-09-24 19:27:38,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:38,497 INFO Out dated connection ,size=0 + +2025-09-24 19:27:38,497 INFO Connection check task end + +2025-09-24 19:27:41,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:41,499 INFO Connection check task start + +2025-09-24 19:27:41,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:41,499 INFO Out dated connection ,size=0 + +2025-09-24 19:27:41,499 INFO Connection check task end + +2025-09-24 19:27:44,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:44,500 INFO Connection check task start + +2025-09-24 19:27:44,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:44,500 INFO Out dated connection ,size=0 + +2025-09-24 19:27:44,500 INFO Connection check task end + +2025-09-24 19:27:47,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:47,501 INFO Connection check task start + +2025-09-24 19:27:47,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:47,501 INFO Out dated connection ,size=0 + +2025-09-24 19:27:47,501 INFO Connection check task end + +2025-09-24 19:27:50,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:50,503 INFO Connection check task start + +2025-09-24 19:27:50,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:50,504 INFO Out dated connection ,size=0 + +2025-09-24 19:27:50,504 INFO Connection check task end + +2025-09-24 19:27:53,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:53,504 INFO Connection check task start + +2025-09-24 19:27:53,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:53,504 INFO Out dated connection ,size=0 + +2025-09-24 19:27:53,504 INFO Connection check task end + +2025-09-24 19:27:56,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:56,505 INFO Connection check task start + +2025-09-24 19:27:56,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:56,505 INFO Out dated connection ,size=0 + +2025-09-24 19:27:56,505 INFO Connection check task end + +2025-09-24 19:27:59,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:27:59,505 INFO Connection check task start + +2025-09-24 19:27:59,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:27:59,506 INFO Out dated connection ,size=0 + +2025-09-24 19:27:59,506 INFO Connection check task end + +2025-09-24 19:28:02,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:02,506 INFO Connection check task start + +2025-09-24 19:28:02,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:02,506 INFO Out dated connection ,size=0 + +2025-09-24 19:28:02,506 INFO Connection check task end + +2025-09-24 19:28:05,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:05,507 INFO Connection check task start + +2025-09-24 19:28:05,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:05,507 INFO Out dated connection ,size=0 + +2025-09-24 19:28:05,507 INFO Connection check task end + +2025-09-24 19:28:08,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:08,509 INFO Connection check task start + +2025-09-24 19:28:08,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:08,509 INFO Out dated connection ,size=0 + +2025-09-24 19:28:08,509 INFO Connection check task end + +2025-09-24 19:28:11,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:11,509 INFO Connection check task start + +2025-09-24 19:28:11,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:11,509 INFO Out dated connection ,size=0 + +2025-09-24 19:28:11,509 INFO Connection check task end + +2025-09-24 19:28:14,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:14,509 INFO Connection check task start + +2025-09-24 19:28:14,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:14,509 INFO Out dated connection ,size=0 + +2025-09-24 19:28:14,509 INFO Connection check task end + +2025-09-24 19:28:17,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:17,511 INFO Connection check task start + +2025-09-24 19:28:17,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:17,511 INFO Out dated connection ,size=0 + +2025-09-24 19:28:17,511 INFO Connection check task end + +2025-09-24 19:28:20,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:20,513 INFO Connection check task start + +2025-09-24 19:28:20,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:20,513 INFO Out dated connection ,size=0 + +2025-09-24 19:28:20,513 INFO Connection check task end + +2025-09-24 19:28:23,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:23,513 INFO Connection check task start + +2025-09-24 19:28:23,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:23,514 INFO Out dated connection ,size=0 + +2025-09-24 19:28:23,514 INFO Connection check task end + +2025-09-24 19:28:26,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:26,514 INFO Connection check task start + +2025-09-24 19:28:26,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:26,514 INFO Out dated connection ,size=0 + +2025-09-24 19:28:26,514 INFO Connection check task end + +2025-09-24 19:28:29,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:29,515 INFO Connection check task start + +2025-09-24 19:28:29,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:29,515 INFO Out dated connection ,size=0 + +2025-09-24 19:28:29,515 INFO Connection check task end + +2025-09-24 19:28:32,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:32,517 INFO Connection check task start + +2025-09-24 19:28:32,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:32,517 INFO Out dated connection ,size=0 + +2025-09-24 19:28:32,517 INFO Connection check task end + +2025-09-24 19:28:35,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:35,518 INFO Connection check task start + +2025-09-24 19:28:35,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:35,518 INFO Out dated connection ,size=0 + +2025-09-24 19:28:35,518 INFO Connection check task end + +2025-09-24 19:28:38,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:38,518 INFO Connection check task start + +2025-09-24 19:28:38,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:38,518 INFO Out dated connection ,size=0 + +2025-09-24 19:28:38,518 INFO Connection check task end + +2025-09-24 19:28:41,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:41,520 INFO Connection check task start + +2025-09-24 19:28:41,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:41,520 INFO Out dated connection ,size=0 + +2025-09-24 19:28:41,520 INFO Connection check task end + +2025-09-24 19:28:44,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:44,521 INFO Connection check task start + +2025-09-24 19:28:44,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:44,521 INFO Out dated connection ,size=0 + +2025-09-24 19:28:44,521 INFO Connection check task end + +2025-09-24 19:28:47,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:47,521 INFO Connection check task start + +2025-09-24 19:28:47,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:47,521 INFO Out dated connection ,size=0 + +2025-09-24 19:28:47,521 INFO Connection check task end + +2025-09-24 19:28:50,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:50,522 INFO Connection check task start + +2025-09-24 19:28:50,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:50,523 INFO Out dated connection ,size=0 + +2025-09-24 19:28:50,523 INFO Connection check task end + +2025-09-24 19:28:53,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:53,524 INFO Connection check task start + +2025-09-24 19:28:53,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:53,524 INFO Out dated connection ,size=0 + +2025-09-24 19:28:53,524 INFO Connection check task end + +2025-09-24 19:28:56,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:56,525 INFO Connection check task start + +2025-09-24 19:28:56,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:56,525 INFO Out dated connection ,size=0 + +2025-09-24 19:28:56,526 INFO Connection check task end + +2025-09-24 19:28:59,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:28:59,526 INFO Connection check task start + +2025-09-24 19:28:59,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:28:59,526 INFO Out dated connection ,size=0 + +2025-09-24 19:28:59,526 INFO Connection check task end + +2025-09-24 19:29:02,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:02,528 INFO Connection check task start + +2025-09-24 19:29:02,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:02,528 INFO Out dated connection ,size=0 + +2025-09-24 19:29:02,528 INFO Connection check task end + +2025-09-24 19:29:05,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:05,529 INFO Connection check task start + +2025-09-24 19:29:05,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:05,529 INFO Out dated connection ,size=0 + +2025-09-24 19:29:05,529 INFO Connection check task end + +2025-09-24 19:29:08,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:08,529 INFO Connection check task start + +2025-09-24 19:29:08,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:08,529 INFO Out dated connection ,size=0 + +2025-09-24 19:29:08,529 INFO Connection check task end + +2025-09-24 19:29:11,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:11,531 INFO Connection check task start + +2025-09-24 19:29:11,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:11,531 INFO Out dated connection ,size=0 + +2025-09-24 19:29:11,531 INFO Connection check task end + +2025-09-24 19:29:14,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:14,531 INFO Connection check task start + +2025-09-24 19:29:14,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:14,531 INFO Out dated connection ,size=0 + +2025-09-24 19:29:14,532 INFO Connection check task end + +2025-09-24 19:29:17,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:17,533 INFO Connection check task start + +2025-09-24 19:29:17,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:17,533 INFO Out dated connection ,size=0 + +2025-09-24 19:29:17,533 INFO Connection check task end + +2025-09-24 19:29:20,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:20,535 INFO Connection check task start + +2025-09-24 19:29:20,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:20,535 INFO Out dated connection ,size=0 + +2025-09-24 19:29:20,535 INFO Connection check task end + +2025-09-24 19:29:23,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:23,536 INFO Connection check task start + +2025-09-24 19:29:23,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:23,536 INFO Out dated connection ,size=0 + +2025-09-24 19:29:23,536 INFO Connection check task end + +2025-09-24 19:29:26,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:26,536 INFO Connection check task start + +2025-09-24 19:29:26,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:26,536 INFO Out dated connection ,size=0 + +2025-09-24 19:29:26,536 INFO Connection check task end + +2025-09-24 19:29:29,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:29,538 INFO Connection check task start + +2025-09-24 19:29:29,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:29,538 INFO Out dated connection ,size=0 + +2025-09-24 19:29:29,539 INFO Connection check task end + +2025-09-24 19:29:32,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:32,540 INFO Connection check task start + +2025-09-24 19:29:32,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:32,540 INFO Out dated connection ,size=0 + +2025-09-24 19:29:32,541 INFO Connection check task end + +2025-09-24 19:29:35,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:35,542 INFO Connection check task start + +2025-09-24 19:29:35,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:35,543 INFO Out dated connection ,size=0 + +2025-09-24 19:29:35,543 INFO Connection check task end + +2025-09-24 19:29:38,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:38,545 INFO Connection check task start + +2025-09-24 19:29:38,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:38,545 INFO Out dated connection ,size=0 + +2025-09-24 19:29:38,545 INFO Connection check task end + +2025-09-24 19:29:41,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:41,547 INFO Connection check task start + +2025-09-24 19:29:41,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:41,547 INFO Out dated connection ,size=0 + +2025-09-24 19:29:41,547 INFO Connection check task end + +2025-09-24 19:29:44,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:44,547 INFO Connection check task start + +2025-09-24 19:29:44,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:44,547 INFO Out dated connection ,size=0 + +2025-09-24 19:29:44,547 INFO Connection check task end + +2025-09-24 19:29:47,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:47,548 INFO Connection check task start + +2025-09-24 19:29:47,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:47,548 INFO Out dated connection ,size=0 + +2025-09-24 19:29:47,548 INFO Connection check task end + +2025-09-24 19:29:50,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:50,550 INFO Connection check task start + +2025-09-24 19:29:50,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:50,550 INFO Out dated connection ,size=0 + +2025-09-24 19:29:50,550 INFO Connection check task end + +2025-09-24 19:29:53,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:53,551 INFO Connection check task start + +2025-09-24 19:29:53,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:53,551 INFO Out dated connection ,size=0 + +2025-09-24 19:29:53,551 INFO Connection check task end + +2025-09-24 19:29:56,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:56,553 INFO Connection check task start + +2025-09-24 19:29:56,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:56,553 INFO Out dated connection ,size=0 + +2025-09-24 19:29:56,553 INFO Connection check task end + +2025-09-24 19:29:59,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:29:59,554 INFO Connection check task start + +2025-09-24 19:29:59,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:29:59,554 INFO Out dated connection ,size=0 + +2025-09-24 19:29:59,554 INFO Connection check task end + +2025-09-24 19:30:02,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:02,556 INFO Connection check task start + +2025-09-24 19:30:02,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:02,556 INFO Out dated connection ,size=0 + +2025-09-24 19:30:02,556 INFO Connection check task end + +2025-09-24 19:30:05,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:05,556 INFO Connection check task start + +2025-09-24 19:30:05,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:05,556 INFO Out dated connection ,size=0 + +2025-09-24 19:30:05,556 INFO Connection check task end + +2025-09-24 19:30:08,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:08,557 INFO Connection check task start + +2025-09-24 19:30:08,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:08,557 INFO Out dated connection ,size=0 + +2025-09-24 19:30:08,557 INFO Connection check task end + +2025-09-24 19:30:11,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:11,558 INFO Connection check task start + +2025-09-24 19:30:11,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:11,559 INFO Out dated connection ,size=0 + +2025-09-24 19:30:11,559 INFO Connection check task end + +2025-09-24 19:30:14,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:14,559 INFO Connection check task start + +2025-09-24 19:30:14,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:14,559 INFO Out dated connection ,size=0 + +2025-09-24 19:30:14,559 INFO Connection check task end + +2025-09-24 19:30:17,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:17,562 INFO Connection check task start + +2025-09-24 19:30:17,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:17,562 INFO Out dated connection ,size=0 + +2025-09-24 19:30:17,562 INFO Connection check task end + +2025-09-24 19:30:20,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:20,564 INFO Connection check task start + +2025-09-24 19:30:20,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:20,564 INFO Out dated connection ,size=0 + +2025-09-24 19:30:20,564 INFO Connection check task end + +2025-09-24 19:30:23,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:23,566 INFO Connection check task start + +2025-09-24 19:30:23,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:23,566 INFO Out dated connection ,size=0 + +2025-09-24 19:30:23,566 INFO Connection check task end + +2025-09-24 19:30:26,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:26,569 INFO Connection check task start + +2025-09-24 19:30:26,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:26,569 INFO Out dated connection ,size=0 + +2025-09-24 19:30:26,569 INFO Connection check task end + +2025-09-24 19:30:29,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:29,571 INFO Connection check task start + +2025-09-24 19:30:29,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:29,571 INFO Out dated connection ,size=0 + +2025-09-24 19:30:29,571 INFO Connection check task end + +2025-09-24 19:30:32,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:32,571 INFO Connection check task start + +2025-09-24 19:30:32,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:32,572 INFO Out dated connection ,size=0 + +2025-09-24 19:30:32,572 INFO Connection check task end + +2025-09-24 19:30:35,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:35,572 INFO Connection check task start + +2025-09-24 19:30:35,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:35,572 INFO Out dated connection ,size=0 + +2025-09-24 19:30:35,572 INFO Connection check task end + +2025-09-24 19:30:38,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:38,574 INFO Connection check task start + +2025-09-24 19:30:38,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:38,575 INFO Out dated connection ,size=0 + +2025-09-24 19:30:38,575 INFO Connection check task end + +2025-09-24 19:30:41,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:41,575 INFO Connection check task start + +2025-09-24 19:30:41,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:41,575 INFO Out dated connection ,size=0 + +2025-09-24 19:30:41,575 INFO Connection check task end + +2025-09-24 19:30:44,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:44,577 INFO Connection check task start + +2025-09-24 19:30:44,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:44,577 INFO Out dated connection ,size=0 + +2025-09-24 19:30:44,577 INFO Connection check task end + +2025-09-24 19:30:47,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:47,577 INFO Connection check task start + +2025-09-24 19:30:47,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:47,577 INFO Out dated connection ,size=0 + +2025-09-24 19:30:47,578 INFO Connection check task end + +2025-09-24 19:30:50,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:50,580 INFO Connection check task start + +2025-09-24 19:30:50,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:50,580 INFO Out dated connection ,size=0 + +2025-09-24 19:30:50,580 INFO Connection check task end + +2025-09-24 19:30:53,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:53,580 INFO Connection check task start + +2025-09-24 19:30:53,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:53,581 INFO Out dated connection ,size=0 + +2025-09-24 19:30:53,581 INFO Connection check task end + +2025-09-24 19:30:56,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:56,581 INFO Connection check task start + +2025-09-24 19:30:56,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:56,581 INFO Out dated connection ,size=0 + +2025-09-24 19:30:56,581 INFO Connection check task end + +2025-09-24 19:30:59,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:30:59,582 INFO Connection check task start + +2025-09-24 19:30:59,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:30:59,582 INFO Out dated connection ,size=0 + +2025-09-24 19:30:59,582 INFO Connection check task end + +2025-09-24 19:31:02,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:02,584 INFO Connection check task start + +2025-09-24 19:31:02,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:02,584 INFO Out dated connection ,size=0 + +2025-09-24 19:31:02,584 INFO Connection check task end + +2025-09-24 19:31:05,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:05,586 INFO Connection check task start + +2025-09-24 19:31:05,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:05,587 INFO Out dated connection ,size=0 + +2025-09-24 19:31:05,587 INFO Connection check task end + +2025-09-24 19:31:08,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:08,588 INFO Connection check task start + +2025-09-24 19:31:08,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:08,588 INFO Out dated connection ,size=0 + +2025-09-24 19:31:08,588 INFO Connection check task end + +2025-09-24 19:31:11,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:11,589 INFO Connection check task start + +2025-09-24 19:31:11,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:11,589 INFO Out dated connection ,size=0 + +2025-09-24 19:31:11,589 INFO Connection check task end + +2025-09-24 19:31:14,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:14,589 INFO Connection check task start + +2025-09-24 19:31:14,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:14,590 INFO Out dated connection ,size=0 + +2025-09-24 19:31:14,590 INFO Connection check task end + +2025-09-24 19:31:17,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:17,590 INFO Connection check task start + +2025-09-24 19:31:17,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:17,590 INFO Out dated connection ,size=0 + +2025-09-24 19:31:17,590 INFO Connection check task end + +2025-09-24 19:31:20,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:20,591 INFO Connection check task start + +2025-09-24 19:31:20,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:20,591 INFO Out dated connection ,size=0 + +2025-09-24 19:31:20,591 INFO Connection check task end + +2025-09-24 19:31:23,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:23,591 INFO Connection check task start + +2025-09-24 19:31:23,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:23,591 INFO Out dated connection ,size=0 + +2025-09-24 19:31:23,591 INFO Connection check task end + +2025-09-24 19:31:26,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:26,593 INFO Connection check task start + +2025-09-24 19:31:26,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:26,593 INFO Out dated connection ,size=0 + +2025-09-24 19:31:26,593 INFO Connection check task end + +2025-09-24 19:31:29,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:29,595 INFO Connection check task start + +2025-09-24 19:31:29,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:29,596 INFO Out dated connection ,size=0 + +2025-09-24 19:31:29,596 INFO Connection check task end + +2025-09-24 19:31:32,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:32,598 INFO Connection check task start + +2025-09-24 19:31:32,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:32,598 INFO Out dated connection ,size=0 + +2025-09-24 19:31:32,598 INFO Connection check task end + +2025-09-24 19:31:35,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:35,598 INFO Connection check task start + +2025-09-24 19:31:35,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:35,599 INFO Out dated connection ,size=0 + +2025-09-24 19:31:35,599 INFO Connection check task end + +2025-09-24 19:31:38,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:38,599 INFO Connection check task start + +2025-09-24 19:31:38,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:38,599 INFO Out dated connection ,size=0 + +2025-09-24 19:31:38,599 INFO Connection check task end + +2025-09-24 19:31:41,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:41,600 INFO Connection check task start + +2025-09-24 19:31:41,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:41,600 INFO Out dated connection ,size=0 + +2025-09-24 19:31:41,600 INFO Connection check task end + +2025-09-24 19:31:44,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:44,602 INFO Connection check task start + +2025-09-24 19:31:44,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:44,602 INFO Out dated connection ,size=0 + +2025-09-24 19:31:44,602 INFO Connection check task end + +2025-09-24 19:31:47,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:47,605 INFO Connection check task start + +2025-09-24 19:31:47,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:47,605 INFO Out dated connection ,size=0 + +2025-09-24 19:31:47,605 INFO Connection check task end + +2025-09-24 19:31:50,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:50,605 INFO Connection check task start + +2025-09-24 19:31:50,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:50,625 INFO Out dated connection ,size=0 + +2025-09-24 19:31:50,625 INFO Connection check task end + +2025-09-24 19:31:53,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:53,647 INFO Connection check task start + +2025-09-24 19:31:53,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:53,647 INFO Out dated connection ,size=0 + +2025-09-24 19:31:53,647 INFO Connection check task end + +2025-09-24 19:31:56,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:56,649 INFO Connection check task start + +2025-09-24 19:31:56,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:56,649 INFO Out dated connection ,size=0 + +2025-09-24 19:31:56,649 INFO Connection check task end + +2025-09-24 19:31:59,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:31:59,650 INFO Connection check task start + +2025-09-24 19:31:59,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:31:59,650 INFO Out dated connection ,size=0 + +2025-09-24 19:31:59,650 INFO Connection check task end + +2025-09-24 19:32:02,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:02,650 INFO Connection check task start + +2025-09-24 19:32:02,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:02,650 INFO Out dated connection ,size=0 + +2025-09-24 19:32:02,650 INFO Connection check task end + +2025-09-24 19:32:05,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:05,650 INFO Connection check task start + +2025-09-24 19:32:05,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:05,650 INFO Out dated connection ,size=0 + +2025-09-24 19:32:05,650 INFO Connection check task end + +2025-09-24 19:32:08,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:08,651 INFO Connection check task start + +2025-09-24 19:32:08,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:08,651 INFO Out dated connection ,size=0 + +2025-09-24 19:32:08,651 INFO Connection check task end + +2025-09-24 19:32:11,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:11,652 INFO Connection check task start + +2025-09-24 19:32:11,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:11,652 INFO Out dated connection ,size=0 + +2025-09-24 19:32:11,652 INFO Connection check task end + +2025-09-24 19:32:14,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:14,653 INFO Connection check task start + +2025-09-24 19:32:14,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:14,653 INFO Out dated connection ,size=0 + +2025-09-24 19:32:14,653 INFO Connection check task end + +2025-09-24 19:32:17,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:17,653 INFO Connection check task start + +2025-09-24 19:32:17,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:17,653 INFO Out dated connection ,size=0 + +2025-09-24 19:32:17,653 INFO Connection check task end + +2025-09-24 19:32:20,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:20,654 INFO Connection check task start + +2025-09-24 19:32:20,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:20,654 INFO Out dated connection ,size=0 + +2025-09-24 19:32:20,654 INFO Connection check task end + +2025-09-24 19:32:23,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:23,655 INFO Connection check task start + +2025-09-24 19:32:23,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:23,655 INFO Out dated connection ,size=0 + +2025-09-24 19:32:23,655 INFO Connection check task end + +2025-09-24 19:32:26,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:26,656 INFO Connection check task start + +2025-09-24 19:32:26,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:26,656 INFO Out dated connection ,size=0 + +2025-09-24 19:32:26,656 INFO Connection check task end + +2025-09-24 19:32:29,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:29,656 INFO Connection check task start + +2025-09-24 19:32:29,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:29,657 INFO Out dated connection ,size=0 + +2025-09-24 19:32:29,657 INFO Connection check task end + +2025-09-24 19:32:32,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:32,657 INFO Connection check task start + +2025-09-24 19:32:32,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:32,657 INFO Out dated connection ,size=0 + +2025-09-24 19:32:32,657 INFO Connection check task end + +2025-09-24 19:32:35,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:35,659 INFO Connection check task start + +2025-09-24 19:32:35,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:35,660 INFO Out dated connection ,size=0 + +2025-09-24 19:32:35,660 INFO Connection check task end + +2025-09-24 19:32:38,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:38,660 INFO Connection check task start + +2025-09-24 19:32:38,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:38,660 INFO Out dated connection ,size=0 + +2025-09-24 19:32:38,661 INFO Connection check task end + +2025-09-24 19:32:41,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:41,661 INFO Connection check task start + +2025-09-24 19:32:41,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:41,661 INFO Out dated connection ,size=0 + +2025-09-24 19:32:41,661 INFO Connection check task end + +2025-09-24 19:32:44,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:44,662 INFO Connection check task start + +2025-09-24 19:32:44,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:44,662 INFO Out dated connection ,size=0 + +2025-09-24 19:32:44,662 INFO Connection check task end + +2025-09-24 19:32:47,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:47,664 INFO Connection check task start + +2025-09-24 19:32:47,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:47,664 INFO Out dated connection ,size=0 + +2025-09-24 19:32:47,664 INFO Connection check task end + +2025-09-24 19:32:50,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:50,664 INFO Connection check task start + +2025-09-24 19:32:50,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:50,664 INFO Out dated connection ,size=0 + +2025-09-24 19:32:50,664 INFO Connection check task end + +2025-09-24 19:32:53,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:53,665 INFO Connection check task start + +2025-09-24 19:32:53,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:53,665 INFO Out dated connection ,size=0 + +2025-09-24 19:32:53,665 INFO Connection check task end + +2025-09-24 19:32:56,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:56,667 INFO Connection check task start + +2025-09-24 19:32:56,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:56,667 INFO Out dated connection ,size=0 + +2025-09-24 19:32:56,667 INFO Connection check task end + +2025-09-24 19:32:59,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:32:59,667 INFO Connection check task start + +2025-09-24 19:32:59,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:32:59,667 INFO Out dated connection ,size=0 + +2025-09-24 19:32:59,667 INFO Connection check task end + +2025-09-24 19:33:02,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:02,669 INFO Connection check task start + +2025-09-24 19:33:02,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:02,669 INFO Out dated connection ,size=0 + +2025-09-24 19:33:02,669 INFO Connection check task end + +2025-09-24 19:33:05,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:05,669 INFO Connection check task start + +2025-09-24 19:33:05,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:05,669 INFO Out dated connection ,size=0 + +2025-09-24 19:33:05,669 INFO Connection check task end + +2025-09-24 19:33:08,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:08,670 INFO Connection check task start + +2025-09-24 19:33:08,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:08,670 INFO Out dated connection ,size=0 + +2025-09-24 19:33:08,670 INFO Connection check task end + +2025-09-24 19:33:11,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:11,670 INFO Connection check task start + +2025-09-24 19:33:11,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:11,670 INFO Out dated connection ,size=0 + +2025-09-24 19:33:11,670 INFO Connection check task end + +2025-09-24 19:33:14,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:14,670 INFO Connection check task start + +2025-09-24 19:33:14,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:14,671 INFO Out dated connection ,size=0 + +2025-09-24 19:33:14,671 INFO Connection check task end + +2025-09-24 19:33:17,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:17,672 INFO Connection check task start + +2025-09-24 19:33:17,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:17,672 INFO Out dated connection ,size=0 + +2025-09-24 19:33:17,672 INFO Connection check task end + +2025-09-24 19:33:20,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:20,674 INFO Connection check task start + +2025-09-24 19:33:20,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:20,674 INFO Out dated connection ,size=0 + +2025-09-24 19:33:20,674 INFO Connection check task end + +2025-09-24 19:33:23,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:23,674 INFO Connection check task start + +2025-09-24 19:33:23,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:23,675 INFO Out dated connection ,size=0 + +2025-09-24 19:33:23,675 INFO Connection check task end + +2025-09-24 19:33:26,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:26,675 INFO Connection check task start + +2025-09-24 19:33:26,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:26,675 INFO Out dated connection ,size=0 + +2025-09-24 19:33:26,675 INFO Connection check task end + +2025-09-24 19:33:29,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:29,676 INFO Connection check task start + +2025-09-24 19:33:29,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:29,676 INFO Out dated connection ,size=0 + +2025-09-24 19:33:29,676 INFO Connection check task end + +2025-09-24 19:33:32,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:32,676 INFO Connection check task start + +2025-09-24 19:33:32,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:32,677 INFO Out dated connection ,size=0 + +2025-09-24 19:33:32,677 INFO Connection check task end + +2025-09-24 19:33:35,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:35,677 INFO Connection check task start + +2025-09-24 19:33:35,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:35,677 INFO Out dated connection ,size=0 + +2025-09-24 19:33:35,677 INFO Connection check task end + +2025-09-24 19:33:38,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:38,678 INFO Connection check task start + +2025-09-24 19:33:38,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:38,678 INFO Out dated connection ,size=0 + +2025-09-24 19:33:38,678 INFO Connection check task end + +2025-09-24 19:33:41,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:41,678 INFO Connection check task start + +2025-09-24 19:33:41,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:41,679 INFO Out dated connection ,size=0 + +2025-09-24 19:33:41,679 INFO Connection check task end + +2025-09-24 19:33:44,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:44,679 INFO Connection check task start + +2025-09-24 19:33:44,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:44,679 INFO Out dated connection ,size=0 + +2025-09-24 19:33:44,679 INFO Connection check task end + +2025-09-24 19:33:47,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:47,681 INFO Connection check task start + +2025-09-24 19:33:47,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:47,681 INFO Out dated connection ,size=0 + +2025-09-24 19:33:47,681 INFO Connection check task end + +2025-09-24 19:33:50,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:50,683 INFO Connection check task start + +2025-09-24 19:33:50,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:50,683 INFO Out dated connection ,size=0 + +2025-09-24 19:33:50,684 INFO Connection check task end + +2025-09-24 19:33:53,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:53,684 INFO Connection check task start + +2025-09-24 19:33:53,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:53,684 INFO Out dated connection ,size=0 + +2025-09-24 19:33:53,684 INFO Connection check task end + +2025-09-24 19:33:56,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:56,684 INFO Connection check task start + +2025-09-24 19:33:56,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:56,707 INFO Out dated connection ,size=0 + +2025-09-24 19:33:56,707 INFO Connection check task end + +2025-09-24 19:33:59,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:33:59,707 INFO Connection check task start + +2025-09-24 19:33:59,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:33:59,707 INFO Out dated connection ,size=0 + +2025-09-24 19:33:59,707 INFO Connection check task end + +2025-09-24 19:34:02,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:02,708 INFO Connection check task start + +2025-09-24 19:34:02,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:02,708 INFO Out dated connection ,size=0 + +2025-09-24 19:34:02,708 INFO Connection check task end + +2025-09-24 19:34:05,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:05,709 INFO Connection check task start + +2025-09-24 19:34:05,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:05,709 INFO Out dated connection ,size=0 + +2025-09-24 19:34:05,709 INFO Connection check task end + +2025-09-24 19:34:08,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:08,709 INFO Connection check task start + +2025-09-24 19:34:08,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:08,709 INFO Out dated connection ,size=0 + +2025-09-24 19:34:08,710 INFO Connection check task end + +2025-09-24 19:34:11,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:11,711 INFO Connection check task start + +2025-09-24 19:34:11,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:11,711 INFO Out dated connection ,size=0 + +2025-09-24 19:34:11,711 INFO Connection check task end + +2025-09-24 19:34:14,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:14,711 INFO Connection check task start + +2025-09-24 19:34:14,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:14,711 INFO Out dated connection ,size=0 + +2025-09-24 19:34:14,712 INFO Connection check task end + +2025-09-24 19:34:17,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:17,714 INFO Connection check task start + +2025-09-24 19:34:17,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:17,714 INFO Out dated connection ,size=0 + +2025-09-24 19:34:17,714 INFO Connection check task end + +2025-09-24 19:34:20,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:20,715 INFO Connection check task start + +2025-09-24 19:34:20,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:20,715 INFO Out dated connection ,size=0 + +2025-09-24 19:34:20,715 INFO Connection check task end + +2025-09-24 19:34:23,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:23,715 INFO Connection check task start + +2025-09-24 19:34:23,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:23,715 INFO Out dated connection ,size=0 + +2025-09-24 19:34:23,715 INFO Connection check task end + +2025-09-24 19:34:26,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:26,716 INFO Connection check task start + +2025-09-24 19:34:26,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:26,717 INFO Out dated connection ,size=0 + +2025-09-24 19:34:26,717 INFO Connection check task end + +2025-09-24 19:34:29,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:29,719 INFO Connection check task start + +2025-09-24 19:34:29,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:29,719 INFO Out dated connection ,size=0 + +2025-09-24 19:34:29,719 INFO Connection check task end + +2025-09-24 19:34:32,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:32,720 INFO Connection check task start + +2025-09-24 19:34:32,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:32,720 INFO Out dated connection ,size=0 + +2025-09-24 19:34:32,720 INFO Connection check task end + +2025-09-24 19:34:35,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:35,721 INFO Connection check task start + +2025-09-24 19:34:35,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:35,721 INFO Out dated connection ,size=0 + +2025-09-24 19:34:35,721 INFO Connection check task end + +2025-09-24 19:34:38,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:38,722 INFO Connection check task start + +2025-09-24 19:34:38,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:38,722 INFO Out dated connection ,size=0 + +2025-09-24 19:34:38,722 INFO Connection check task end + +2025-09-24 19:34:41,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:41,723 INFO Connection check task start + +2025-09-24 19:34:41,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:41,723 INFO Out dated connection ,size=0 + +2025-09-24 19:34:41,723 INFO Connection check task end + +2025-09-24 19:34:44,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:44,724 INFO Connection check task start + +2025-09-24 19:34:44,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:44,724 INFO Out dated connection ,size=0 + +2025-09-24 19:34:44,724 INFO Connection check task end + +2025-09-24 19:34:47,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:47,726 INFO Connection check task start + +2025-09-24 19:34:47,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:47,726 INFO Out dated connection ,size=0 + +2025-09-24 19:34:47,726 INFO Connection check task end + +2025-09-24 19:34:50,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:50,728 INFO Connection check task start + +2025-09-24 19:34:50,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:50,729 INFO Out dated connection ,size=0 + +2025-09-24 19:34:50,729 INFO Connection check task end + +2025-09-24 19:34:53,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:53,729 INFO Connection check task start + +2025-09-24 19:34:53,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:53,729 INFO Out dated connection ,size=0 + +2025-09-24 19:34:53,729 INFO Connection check task end + +2025-09-24 19:34:56,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:56,730 INFO Connection check task start + +2025-09-24 19:34:56,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:56,730 INFO Out dated connection ,size=0 + +2025-09-24 19:34:56,730 INFO Connection check task end + +2025-09-24 19:34:59,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:34:59,730 INFO Connection check task start + +2025-09-24 19:34:59,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:34:59,730 INFO Out dated connection ,size=0 + +2025-09-24 19:34:59,730 INFO Connection check task end + +2025-09-24 19:35:02,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:02,732 INFO Connection check task start + +2025-09-24 19:35:02,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:02,732 INFO Out dated connection ,size=0 + +2025-09-24 19:35:02,732 INFO Connection check task end + +2025-09-24 19:35:05,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:05,732 INFO Connection check task start + +2025-09-24 19:35:05,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:05,732 INFO Out dated connection ,size=0 + +2025-09-24 19:35:05,732 INFO Connection check task end + +2025-09-24 19:35:08,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:08,733 INFO Connection check task start + +2025-09-24 19:35:08,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:08,733 INFO Out dated connection ,size=0 + +2025-09-24 19:35:08,733 INFO Connection check task end + +2025-09-24 19:35:11,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:11,734 INFO Connection check task start + +2025-09-24 19:35:11,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:11,734 INFO Out dated connection ,size=0 + +2025-09-24 19:35:11,734 INFO Connection check task end + +2025-09-24 19:35:14,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:14,734 INFO Connection check task start + +2025-09-24 19:35:14,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:14,734 INFO Out dated connection ,size=0 + +2025-09-24 19:35:14,734 INFO Connection check task end + +2025-09-24 19:35:17,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:17,735 INFO Connection check task start + +2025-09-24 19:35:17,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:17,735 INFO Out dated connection ,size=0 + +2025-09-24 19:35:17,735 INFO Connection check task end + +2025-09-24 19:35:20,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:20,735 INFO Connection check task start + +2025-09-24 19:35:20,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:20,735 INFO Out dated connection ,size=0 + +2025-09-24 19:35:20,735 INFO Connection check task end + +2025-09-24 19:35:23,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:23,736 INFO Connection check task start + +2025-09-24 19:35:23,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:23,736 INFO Out dated connection ,size=0 + +2025-09-24 19:35:23,736 INFO Connection check task end + +2025-09-24 19:35:26,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:26,736 INFO Connection check task start + +2025-09-24 19:35:26,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:26,737 INFO Out dated connection ,size=0 + +2025-09-24 19:35:26,737 INFO Connection check task end + +2025-09-24 19:35:29,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:29,739 INFO Connection check task start + +2025-09-24 19:35:29,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:29,739 INFO Out dated connection ,size=0 + +2025-09-24 19:35:29,739 INFO Connection check task end + +2025-09-24 19:35:32,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:32,741 INFO Connection check task start + +2025-09-24 19:35:32,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:32,741 INFO Out dated connection ,size=0 + +2025-09-24 19:35:32,741 INFO Connection check task end + +2025-09-24 19:35:35,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:35,743 INFO Connection check task start + +2025-09-24 19:35:35,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:35,743 INFO Out dated connection ,size=0 + +2025-09-24 19:35:35,743 INFO Connection check task end + +2025-09-24 19:35:38,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:38,744 INFO Connection check task start + +2025-09-24 19:35:38,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:38,744 INFO Out dated connection ,size=0 + +2025-09-24 19:35:38,744 INFO Connection check task end + +2025-09-24 19:35:41,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:41,744 INFO Connection check task start + +2025-09-24 19:35:41,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:41,744 INFO Out dated connection ,size=0 + +2025-09-24 19:35:41,744 INFO Connection check task end + +2025-09-24 19:35:44,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:44,746 INFO Connection check task start + +2025-09-24 19:35:44,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:44,747 INFO Out dated connection ,size=0 + +2025-09-24 19:35:44,747 INFO Connection check task end + +2025-09-24 19:35:47,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:47,747 INFO Connection check task start + +2025-09-24 19:35:47,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:47,747 INFO Out dated connection ,size=0 + +2025-09-24 19:35:47,747 INFO Connection check task end + +2025-09-24 19:35:50,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:50,749 INFO Connection check task start + +2025-09-24 19:35:50,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:50,749 INFO Out dated connection ,size=0 + +2025-09-24 19:35:50,749 INFO Connection check task end + +2025-09-24 19:35:53,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:53,750 INFO Connection check task start + +2025-09-24 19:35:53,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:53,750 INFO Out dated connection ,size=0 + +2025-09-24 19:35:53,750 INFO Connection check task end + +2025-09-24 19:35:56,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:56,752 INFO Connection check task start + +2025-09-24 19:35:56,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:56,752 INFO Out dated connection ,size=0 + +2025-09-24 19:35:56,752 INFO Connection check task end + +2025-09-24 19:35:59,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:35:59,754 INFO Connection check task start + +2025-09-24 19:35:59,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:35:59,754 INFO Out dated connection ,size=0 + +2025-09-24 19:35:59,754 INFO Connection check task end + +2025-09-24 19:36:02,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:02,756 INFO Connection check task start + +2025-09-24 19:36:02,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:02,756 INFO Out dated connection ,size=0 + +2025-09-24 19:36:02,756 INFO Connection check task end + +2025-09-24 19:36:05,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:05,758 INFO Connection check task start + +2025-09-24 19:36:05,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:05,759 INFO Out dated connection ,size=0 + +2025-09-24 19:36:05,759 INFO Connection check task end + +2025-09-24 19:36:08,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:08,761 INFO Connection check task start + +2025-09-24 19:36:08,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:08,761 INFO Out dated connection ,size=0 + +2025-09-24 19:36:08,761 INFO Connection check task end + +2025-09-24 19:36:11,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:11,763 INFO Connection check task start + +2025-09-24 19:36:11,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:11,763 INFO Out dated connection ,size=0 + +2025-09-24 19:36:11,763 INFO Connection check task end + +2025-09-24 19:36:14,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:14,764 INFO Connection check task start + +2025-09-24 19:36:14,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:14,764 INFO Out dated connection ,size=0 + +2025-09-24 19:36:14,764 INFO Connection check task end + +2025-09-24 19:36:17,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:17,766 INFO Connection check task start + +2025-09-24 19:36:17,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:17,767 INFO Out dated connection ,size=0 + +2025-09-24 19:36:17,767 INFO Connection check task end + +2025-09-24 19:36:20,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:20,767 INFO Connection check task start + +2025-09-24 19:36:20,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:20,767 INFO Out dated connection ,size=0 + +2025-09-24 19:36:20,767 INFO Connection check task end + +2025-09-24 19:36:23,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:23,767 INFO Connection check task start + +2025-09-24 19:36:23,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:23,768 INFO Out dated connection ,size=0 + +2025-09-24 19:36:23,768 INFO Connection check task end + +2025-09-24 19:36:26,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:26,768 INFO Connection check task start + +2025-09-24 19:36:26,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:26,769 INFO Out dated connection ,size=0 + +2025-09-24 19:36:26,769 INFO Connection check task end + +2025-09-24 19:36:29,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:29,770 INFO Connection check task start + +2025-09-24 19:36:29,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:29,770 INFO Out dated connection ,size=0 + +2025-09-24 19:36:29,770 INFO Connection check task end + +2025-09-24 19:36:32,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:32,773 INFO Connection check task start + +2025-09-24 19:36:32,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:32,773 INFO Out dated connection ,size=0 + +2025-09-24 19:36:32,773 INFO Connection check task end + +2025-09-24 19:36:35,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:35,773 INFO Connection check task start + +2025-09-24 19:36:35,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:35,773 INFO Out dated connection ,size=0 + +2025-09-24 19:36:35,773 INFO Connection check task end + +2025-09-24 19:36:38,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:38,774 INFO Connection check task start + +2025-09-24 19:36:38,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:38,774 INFO Out dated connection ,size=0 + +2025-09-24 19:36:38,774 INFO Connection check task end + +2025-09-24 19:36:41,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:41,775 INFO Connection check task start + +2025-09-24 19:36:41,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:41,775 INFO Out dated connection ,size=0 + +2025-09-24 19:36:41,775 INFO Connection check task end + +2025-09-24 19:36:44,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:44,777 INFO Connection check task start + +2025-09-24 19:36:44,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:44,777 INFO Out dated connection ,size=0 + +2025-09-24 19:36:44,777 INFO Connection check task end + +2025-09-24 19:36:47,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:47,778 INFO Connection check task start + +2025-09-24 19:36:47,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:47,778 INFO Out dated connection ,size=0 + +2025-09-24 19:36:47,778 INFO Connection check task end + +2025-09-24 19:36:50,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:50,778 INFO Connection check task start + +2025-09-24 19:36:50,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:50,779 INFO Out dated connection ,size=0 + +2025-09-24 19:36:50,779 INFO Connection check task end + +2025-09-24 19:36:53,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:53,780 INFO Connection check task start + +2025-09-24 19:36:53,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:53,780 INFO Out dated connection ,size=0 + +2025-09-24 19:36:53,780 INFO Connection check task end + +2025-09-24 19:36:56,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:56,782 INFO Connection check task start + +2025-09-24 19:36:56,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:56,782 INFO Out dated connection ,size=0 + +2025-09-24 19:36:56,782 INFO Connection check task end + +2025-09-24 19:36:59,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:36:59,783 INFO Connection check task start + +2025-09-24 19:36:59,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:36:59,783 INFO Out dated connection ,size=0 + +2025-09-24 19:36:59,783 INFO Connection check task end + +2025-09-24 19:37:02,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:02,784 INFO Connection check task start + +2025-09-24 19:37:02,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:02,784 INFO Out dated connection ,size=0 + +2025-09-24 19:37:02,784 INFO Connection check task end + +2025-09-24 19:37:05,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:05,785 INFO Connection check task start + +2025-09-24 19:37:05,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:05,785 INFO Out dated connection ,size=0 + +2025-09-24 19:37:05,785 INFO Connection check task end + +2025-09-24 19:37:08,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:08,785 INFO Connection check task start + +2025-09-24 19:37:08,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:08,786 INFO Out dated connection ,size=0 + +2025-09-24 19:37:08,786 INFO Connection check task end + +2025-09-24 19:37:11,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:11,786 INFO Connection check task start + +2025-09-24 19:37:11,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:11,786 INFO Out dated connection ,size=0 + +2025-09-24 19:37:11,786 INFO Connection check task end + +2025-09-24 19:37:14,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:14,788 INFO Connection check task start + +2025-09-24 19:37:14,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:14,788 INFO Out dated connection ,size=0 + +2025-09-24 19:37:14,788 INFO Connection check task end + +2025-09-24 19:37:17,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:17,789 INFO Connection check task start + +2025-09-24 19:37:17,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:17,789 INFO Out dated connection ,size=0 + +2025-09-24 19:37:17,789 INFO Connection check task end + +2025-09-24 19:37:20,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:20,789 INFO Connection check task start + +2025-09-24 19:37:20,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:20,789 INFO Out dated connection ,size=0 + +2025-09-24 19:37:20,789 INFO Connection check task end + +2025-09-24 19:37:23,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:23,790 INFO Connection check task start + +2025-09-24 19:37:23,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:23,790 INFO Out dated connection ,size=0 + +2025-09-24 19:37:23,790 INFO Connection check task end + +2025-09-24 19:37:26,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:26,792 INFO Connection check task start + +2025-09-24 19:37:26,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:26,792 INFO Out dated connection ,size=0 + +2025-09-24 19:37:26,792 INFO Connection check task end + +2025-09-24 19:37:29,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:29,793 INFO Connection check task start + +2025-09-24 19:37:29,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:29,793 INFO Out dated connection ,size=0 + +2025-09-24 19:37:29,793 INFO Connection check task end + +2025-09-24 19:37:32,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:32,794 INFO Connection check task start + +2025-09-24 19:37:32,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:32,794 INFO Out dated connection ,size=0 + +2025-09-24 19:37:32,794 INFO Connection check task end + +2025-09-24 19:37:35,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:35,794 INFO Connection check task start + +2025-09-24 19:37:35,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:35,795 INFO Out dated connection ,size=0 + +2025-09-24 19:37:35,795 INFO Connection check task end + +2025-09-24 19:37:38,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:38,797 INFO Connection check task start + +2025-09-24 19:37:38,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:38,797 INFO Out dated connection ,size=0 + +2025-09-24 19:37:38,797 INFO Connection check task end + +2025-09-24 19:37:41,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:41,798 INFO Connection check task start + +2025-09-24 19:37:41,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:41,798 INFO Out dated connection ,size=0 + +2025-09-24 19:37:41,798 INFO Connection check task end + +2025-09-24 19:37:44,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:44,798 INFO Connection check task start + +2025-09-24 19:37:44,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:44,799 INFO Out dated connection ,size=0 + +2025-09-24 19:37:44,799 INFO Connection check task end + +2025-09-24 19:37:47,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:47,799 INFO Connection check task start + +2025-09-24 19:37:47,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:47,800 INFO Out dated connection ,size=0 + +2025-09-24 19:37:47,800 INFO Connection check task end + +2025-09-24 19:37:50,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:50,800 INFO Connection check task start + +2025-09-24 19:37:50,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:50,800 INFO Out dated connection ,size=0 + +2025-09-24 19:37:50,800 INFO Connection check task end + +2025-09-24 19:37:53,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:53,800 INFO Connection check task start + +2025-09-24 19:37:53,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:53,800 INFO Out dated connection ,size=0 + +2025-09-24 19:37:53,800 INFO Connection check task end + +2025-09-24 19:37:56,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:56,802 INFO Connection check task start + +2025-09-24 19:37:56,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:56,802 INFO Out dated connection ,size=0 + +2025-09-24 19:37:56,802 INFO Connection check task end + +2025-09-24 19:37:59,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:37:59,803 INFO Connection check task start + +2025-09-24 19:37:59,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:37:59,803 INFO Out dated connection ,size=0 + +2025-09-24 19:37:59,803 INFO Connection check task end + +2025-09-24 19:38:02,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:02,805 INFO Connection check task start + +2025-09-24 19:38:02,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:02,805 INFO Out dated connection ,size=0 + +2025-09-24 19:38:02,805 INFO Connection check task end + +2025-09-24 19:38:05,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:05,805 INFO Connection check task start + +2025-09-24 19:38:05,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:05,805 INFO Out dated connection ,size=0 + +2025-09-24 19:38:05,805 INFO Connection check task end + +2025-09-24 19:38:08,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:08,807 INFO Connection check task start + +2025-09-24 19:38:08,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:08,807 INFO Out dated connection ,size=0 + +2025-09-24 19:38:08,807 INFO Connection check task end + +2025-09-24 19:38:11,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:11,809 INFO Connection check task start + +2025-09-24 19:38:11,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:11,809 INFO Out dated connection ,size=0 + +2025-09-24 19:38:11,809 INFO Connection check task end + +2025-09-24 19:38:14,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:14,810 INFO Connection check task start + +2025-09-24 19:38:14,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:14,810 INFO Out dated connection ,size=0 + +2025-09-24 19:38:14,810 INFO Connection check task end + +2025-09-24 19:38:17,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:17,813 INFO Connection check task start + +2025-09-24 19:38:17,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:17,813 INFO Out dated connection ,size=0 + +2025-09-24 19:38:17,813 INFO Connection check task end + +2025-09-24 19:38:20,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:20,813 INFO Connection check task start + +2025-09-24 19:38:20,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:20,813 INFO Out dated connection ,size=0 + +2025-09-24 19:38:20,813 INFO Connection check task end + +2025-09-24 19:38:23,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:23,816 INFO Connection check task start + +2025-09-24 19:38:23,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:23,816 INFO Out dated connection ,size=0 + +2025-09-24 19:38:23,816 INFO Connection check task end + +2025-09-24 19:38:26,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:26,818 INFO Connection check task start + +2025-09-24 19:38:26,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:26,818 INFO Out dated connection ,size=0 + +2025-09-24 19:38:26,818 INFO Connection check task end + +2025-09-24 19:38:29,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:29,819 INFO Connection check task start + +2025-09-24 19:38:29,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:29,819 INFO Out dated connection ,size=0 + +2025-09-24 19:38:29,819 INFO Connection check task end + +2025-09-24 19:38:32,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:32,821 INFO Connection check task start + +2025-09-24 19:38:32,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:32,822 INFO Out dated connection ,size=0 + +2025-09-24 19:38:32,822 INFO Connection check task end + +2025-09-24 19:38:35,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:35,823 INFO Connection check task start + +2025-09-24 19:38:35,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:35,823 INFO Out dated connection ,size=0 + +2025-09-24 19:38:35,823 INFO Connection check task end + +2025-09-24 19:38:38,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:38,823 INFO Connection check task start + +2025-09-24 19:38:38,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:38,824 INFO Out dated connection ,size=0 + +2025-09-24 19:38:38,824 INFO Connection check task end + +2025-09-24 19:38:41,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:41,826 INFO Connection check task start + +2025-09-24 19:38:41,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:41,826 INFO Out dated connection ,size=0 + +2025-09-24 19:38:41,826 INFO Connection check task end + +2025-09-24 19:38:44,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:44,826 INFO Connection check task start + +2025-09-24 19:38:44,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:44,827 INFO Out dated connection ,size=0 + +2025-09-24 19:38:44,827 INFO Connection check task end + +2025-09-24 19:38:47,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:47,829 INFO Connection check task start + +2025-09-24 19:38:47,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:47,829 INFO Out dated connection ,size=0 + +2025-09-24 19:38:47,829 INFO Connection check task end + +2025-09-24 19:38:50,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:50,830 INFO Connection check task start + +2025-09-24 19:38:50,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:50,830 INFO Out dated connection ,size=0 + +2025-09-24 19:38:50,830 INFO Connection check task end + +2025-09-24 19:38:53,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:53,831 INFO Connection check task start + +2025-09-24 19:38:53,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:53,831 INFO Out dated connection ,size=0 + +2025-09-24 19:38:53,832 INFO Connection check task end + +2025-09-24 19:38:56,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:56,832 INFO Connection check task start + +2025-09-24 19:38:56,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:56,832 INFO Out dated connection ,size=0 + +2025-09-24 19:38:56,832 INFO Connection check task end + +2025-09-24 19:38:59,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:38:59,833 INFO Connection check task start + +2025-09-24 19:38:59,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:38:59,833 INFO Out dated connection ,size=0 + +2025-09-24 19:38:59,834 INFO Connection check task end + +2025-09-24 19:39:02,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:02,835 INFO Connection check task start + +2025-09-24 19:39:02,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:02,836 INFO Out dated connection ,size=0 + +2025-09-24 19:39:02,836 INFO Connection check task end + +2025-09-24 19:39:05,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:05,838 INFO Connection check task start + +2025-09-24 19:39:05,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:05,838 INFO Out dated connection ,size=0 + +2025-09-24 19:39:05,838 INFO Connection check task end + +2025-09-24 19:39:08,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:08,839 INFO Connection check task start + +2025-09-24 19:39:08,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:08,839 INFO Out dated connection ,size=0 + +2025-09-24 19:39:08,840 INFO Connection check task end + +2025-09-24 19:39:11,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:11,842 INFO Connection check task start + +2025-09-24 19:39:11,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:11,842 INFO Out dated connection ,size=0 + +2025-09-24 19:39:11,842 INFO Connection check task end + +2025-09-24 19:39:14,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:14,843 INFO Connection check task start + +2025-09-24 19:39:14,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:14,843 INFO Out dated connection ,size=0 + +2025-09-24 19:39:14,843 INFO Connection check task end + +2025-09-24 19:39:17,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:17,845 INFO Connection check task start + +2025-09-24 19:39:17,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:17,845 INFO Out dated connection ,size=0 + +2025-09-24 19:39:17,846 INFO Connection check task end + +2025-09-24 19:39:20,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:20,847 INFO Connection check task start + +2025-09-24 19:39:20,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:20,848 INFO Out dated connection ,size=0 + +2025-09-24 19:39:20,848 INFO Connection check task end + +2025-09-24 19:39:23,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:23,848 INFO Connection check task start + +2025-09-24 19:39:23,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:23,848 INFO Out dated connection ,size=0 + +2025-09-24 19:39:23,848 INFO Connection check task end + +2025-09-24 19:39:26,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:26,849 INFO Connection check task start + +2025-09-24 19:39:26,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:26,849 INFO Out dated connection ,size=0 + +2025-09-24 19:39:26,849 INFO Connection check task end + +2025-09-24 19:39:29,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:29,851 INFO Connection check task start + +2025-09-24 19:39:29,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:29,851 INFO Out dated connection ,size=0 + +2025-09-24 19:39:29,851 INFO Connection check task end + +2025-09-24 19:39:32,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:32,852 INFO Connection check task start + +2025-09-24 19:39:32,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:32,852 INFO Out dated connection ,size=0 + +2025-09-24 19:39:32,853 INFO Connection check task end + +2025-09-24 19:39:35,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:35,853 INFO Connection check task start + +2025-09-24 19:39:35,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:35,853 INFO Out dated connection ,size=0 + +2025-09-24 19:39:35,853 INFO Connection check task end + +2025-09-24 19:39:38,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:38,855 INFO Connection check task start + +2025-09-24 19:39:38,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:38,855 INFO Out dated connection ,size=0 + +2025-09-24 19:39:38,855 INFO Connection check task end + +2025-09-24 19:39:41,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:41,857 INFO Connection check task start + +2025-09-24 19:39:41,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:41,857 INFO Out dated connection ,size=0 + +2025-09-24 19:39:41,857 INFO Connection check task end + +2025-09-24 19:39:44,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:44,858 INFO Connection check task start + +2025-09-24 19:39:44,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:44,858 INFO Out dated connection ,size=0 + +2025-09-24 19:39:44,858 INFO Connection check task end + +2025-09-24 19:39:47,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:47,859 INFO Connection check task start + +2025-09-24 19:39:47,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:47,859 INFO Out dated connection ,size=0 + +2025-09-24 19:39:47,859 INFO Connection check task end + +2025-09-24 19:39:50,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:50,859 INFO Connection check task start + +2025-09-24 19:39:50,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:50,860 INFO Out dated connection ,size=0 + +2025-09-24 19:39:50,860 INFO Connection check task end + +2025-09-24 19:39:53,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:53,860 INFO Connection check task start + +2025-09-24 19:39:53,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:53,861 INFO Out dated connection ,size=0 + +2025-09-24 19:39:53,861 INFO Connection check task end + +2025-09-24 19:39:56,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:56,863 INFO Connection check task start + +2025-09-24 19:39:56,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:56,863 INFO Out dated connection ,size=0 + +2025-09-24 19:39:56,863 INFO Connection check task end + +2025-09-24 19:39:59,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:39:59,864 INFO Connection check task start + +2025-09-24 19:39:59,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:39:59,864 INFO Out dated connection ,size=0 + +2025-09-24 19:39:59,864 INFO Connection check task end + +2025-09-24 19:40:02,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:02,865 INFO Connection check task start + +2025-09-24 19:40:02,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:02,865 INFO Out dated connection ,size=0 + +2025-09-24 19:40:02,865 INFO Connection check task end + +2025-09-24 19:40:05,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:05,866 INFO Connection check task start + +2025-09-24 19:40:05,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:05,867 INFO Out dated connection ,size=0 + +2025-09-24 19:40:05,867 INFO Connection check task end + +2025-09-24 19:40:08,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:08,867 INFO Connection check task start + +2025-09-24 19:40:08,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:08,867 INFO Out dated connection ,size=0 + +2025-09-24 19:40:08,867 INFO Connection check task end + +2025-09-24 19:40:11,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:11,868 INFO Connection check task start + +2025-09-24 19:40:11,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:11,868 INFO Out dated connection ,size=0 + +2025-09-24 19:40:11,868 INFO Connection check task end + +2025-09-24 19:40:14,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:14,869 INFO Connection check task start + +2025-09-24 19:40:14,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:14,869 INFO Out dated connection ,size=0 + +2025-09-24 19:40:14,869 INFO Connection check task end + +2025-09-24 19:40:17,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:17,870 INFO Connection check task start + +2025-09-24 19:40:17,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:17,871 INFO Out dated connection ,size=0 + +2025-09-24 19:40:17,871 INFO Connection check task end + +2025-09-24 19:40:20,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:20,872 INFO Connection check task start + +2025-09-24 19:40:20,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:20,872 INFO Out dated connection ,size=0 + +2025-09-24 19:40:20,872 INFO Connection check task end + +2025-09-24 19:40:23,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:23,874 INFO Connection check task start + +2025-09-24 19:40:23,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:23,874 INFO Out dated connection ,size=0 + +2025-09-24 19:40:23,874 INFO Connection check task end + +2025-09-24 19:40:26,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:26,876 INFO Connection check task start + +2025-09-24 19:40:26,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:26,876 INFO Out dated connection ,size=0 + +2025-09-24 19:40:26,876 INFO Connection check task end + +2025-09-24 19:40:29,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:29,878 INFO Connection check task start + +2025-09-24 19:40:29,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:29,878 INFO Out dated connection ,size=0 + +2025-09-24 19:40:29,879 INFO Connection check task end + +2025-09-24 19:40:32,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:32,879 INFO Connection check task start + +2025-09-24 19:40:32,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:32,880 INFO Out dated connection ,size=0 + +2025-09-24 19:40:32,880 INFO Connection check task end + +2025-09-24 19:40:35,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:35,880 INFO Connection check task start + +2025-09-24 19:40:35,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:35,881 INFO Out dated connection ,size=0 + +2025-09-24 19:40:35,881 INFO Connection check task end + +2025-09-24 19:40:38,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:38,882 INFO Connection check task start + +2025-09-24 19:40:38,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:38,882 INFO Out dated connection ,size=0 + +2025-09-24 19:40:38,882 INFO Connection check task end + +2025-09-24 19:40:41,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:41,883 INFO Connection check task start + +2025-09-24 19:40:41,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:41,883 INFO Out dated connection ,size=0 + +2025-09-24 19:40:41,883 INFO Connection check task end + +2025-09-24 19:40:44,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:44,884 INFO Connection check task start + +2025-09-24 19:40:44,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:44,884 INFO Out dated connection ,size=0 + +2025-09-24 19:40:44,884 INFO Connection check task end + +2025-09-24 19:40:47,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:47,885 INFO Connection check task start + +2025-09-24 19:40:47,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:47,885 INFO Out dated connection ,size=0 + +2025-09-24 19:40:47,885 INFO Connection check task end + +2025-09-24 19:40:50,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:50,886 INFO Connection check task start + +2025-09-24 19:40:50,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:50,886 INFO Out dated connection ,size=0 + +2025-09-24 19:40:50,886 INFO Connection check task end + +2025-09-24 19:40:53,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:53,887 INFO Connection check task start + +2025-09-24 19:40:53,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:53,887 INFO Out dated connection ,size=0 + +2025-09-24 19:40:53,887 INFO Connection check task end + +2025-09-24 19:40:56,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:56,888 INFO Connection check task start + +2025-09-24 19:40:56,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:56,888 INFO Out dated connection ,size=0 + +2025-09-24 19:40:56,888 INFO Connection check task end + +2025-09-24 19:40:59,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:40:59,889 INFO Connection check task start + +2025-09-24 19:40:59,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:40:59,889 INFO Out dated connection ,size=0 + +2025-09-24 19:40:59,889 INFO Connection check task end + +2025-09-24 19:41:02,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:02,891 INFO Connection check task start + +2025-09-24 19:41:02,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:02,891 INFO Out dated connection ,size=0 + +2025-09-24 19:41:02,891 INFO Connection check task end + +2025-09-24 19:41:05,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:05,891 INFO Connection check task start + +2025-09-24 19:41:05,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:05,892 INFO Out dated connection ,size=0 + +2025-09-24 19:41:05,892 INFO Connection check task end + +2025-09-24 19:41:08,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:08,892 INFO Connection check task start + +2025-09-24 19:41:08,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:08,892 INFO Out dated connection ,size=0 + +2025-09-24 19:41:08,892 INFO Connection check task end + +2025-09-24 19:41:11,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:11,894 INFO Connection check task start + +2025-09-24 19:41:11,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:11,894 INFO Out dated connection ,size=0 + +2025-09-24 19:41:11,894 INFO Connection check task end + +2025-09-24 19:41:14,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:14,895 INFO Connection check task start + +2025-09-24 19:41:14,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:14,895 INFO Out dated connection ,size=0 + +2025-09-24 19:41:14,895 INFO Connection check task end + +2025-09-24 19:41:17,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:17,897 INFO Connection check task start + +2025-09-24 19:41:17,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:17,897 INFO Out dated connection ,size=0 + +2025-09-24 19:41:17,897 INFO Connection check task end + +2025-09-24 19:41:20,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:20,899 INFO Connection check task start + +2025-09-24 19:41:20,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:20,899 INFO Out dated connection ,size=0 + +2025-09-24 19:41:20,899 INFO Connection check task end + +2025-09-24 19:41:23,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:23,900 INFO Connection check task start + +2025-09-24 19:41:23,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:23,900 INFO Out dated connection ,size=0 + +2025-09-24 19:41:23,900 INFO Connection check task end + +2025-09-24 19:41:26,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:26,901 INFO Connection check task start + +2025-09-24 19:41:26,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:26,901 INFO Out dated connection ,size=0 + +2025-09-24 19:41:26,901 INFO Connection check task end + +2025-09-24 19:41:29,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:29,901 INFO Connection check task start + +2025-09-24 19:41:29,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:29,902 INFO Out dated connection ,size=0 + +2025-09-24 19:41:29,902 INFO Connection check task end + +2025-09-24 19:41:32,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:32,903 INFO Connection check task start + +2025-09-24 19:41:32,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:32,903 INFO Out dated connection ,size=0 + +2025-09-24 19:41:32,903 INFO Connection check task end + +2025-09-24 19:41:35,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:35,904 INFO Connection check task start + +2025-09-24 19:41:35,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:35,904 INFO Out dated connection ,size=0 + +2025-09-24 19:41:35,904 INFO Connection check task end + +2025-09-24 19:41:38,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:38,906 INFO Connection check task start + +2025-09-24 19:41:38,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:38,906 INFO Out dated connection ,size=0 + +2025-09-24 19:41:38,906 INFO Connection check task end + +2025-09-24 19:41:41,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:41,907 INFO Connection check task start + +2025-09-24 19:41:41,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:41,907 INFO Out dated connection ,size=0 + +2025-09-24 19:41:41,908 INFO Connection check task end + +2025-09-24 19:41:44,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:44,909 INFO Connection check task start + +2025-09-24 19:41:44,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:44,909 INFO Out dated connection ,size=0 + +2025-09-24 19:41:44,909 INFO Connection check task end + +2025-09-24 19:41:47,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:47,911 INFO Connection check task start + +2025-09-24 19:41:47,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:47,912 INFO Out dated connection ,size=0 + +2025-09-24 19:41:47,912 INFO Connection check task end + +2025-09-24 19:41:50,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:50,914 INFO Connection check task start + +2025-09-24 19:41:50,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:50,914 INFO Out dated connection ,size=0 + +2025-09-24 19:41:50,914 INFO Connection check task end + +2025-09-24 19:41:53,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:53,914 INFO Connection check task start + +2025-09-24 19:41:53,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:53,914 INFO Out dated connection ,size=0 + +2025-09-24 19:41:53,914 INFO Connection check task end + +2025-09-24 19:41:56,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:56,915 INFO Connection check task start + +2025-09-24 19:41:56,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:56,915 INFO Out dated connection ,size=0 + +2025-09-24 19:41:56,915 INFO Connection check task end + +2025-09-24 19:41:59,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:41:59,917 INFO Connection check task start + +2025-09-24 19:41:59,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:41:59,918 INFO Out dated connection ,size=0 + +2025-09-24 19:41:59,918 INFO Connection check task end + +2025-09-24 19:42:02,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:02,918 INFO Connection check task start + +2025-09-24 19:42:02,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:02,918 INFO Out dated connection ,size=0 + +2025-09-24 19:42:02,918 INFO Connection check task end + +2025-09-24 19:42:05,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:05,920 INFO Connection check task start + +2025-09-24 19:42:05,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:05,920 INFO Out dated connection ,size=0 + +2025-09-24 19:42:05,921 INFO Connection check task end + +2025-09-24 19:42:08,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:08,922 INFO Connection check task start + +2025-09-24 19:42:08,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:08,922 INFO Out dated connection ,size=0 + +2025-09-24 19:42:08,922 INFO Connection check task end + +2025-09-24 19:42:11,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:11,924 INFO Connection check task start + +2025-09-24 19:42:11,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:11,924 INFO Out dated connection ,size=0 + +2025-09-24 19:42:11,924 INFO Connection check task end + +2025-09-24 19:42:14,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:14,925 INFO Connection check task start + +2025-09-24 19:42:14,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:14,925 INFO Out dated connection ,size=0 + +2025-09-24 19:42:14,925 INFO Connection check task end + +2025-09-24 19:42:17,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:17,926 INFO Connection check task start + +2025-09-24 19:42:17,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:17,926 INFO Out dated connection ,size=0 + +2025-09-24 19:42:17,926 INFO Connection check task end + +2025-09-24 19:42:20,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:20,927 INFO Connection check task start + +2025-09-24 19:42:20,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:20,927 INFO Out dated connection ,size=0 + +2025-09-24 19:42:20,927 INFO Connection check task end + +2025-09-24 19:42:23,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:23,927 INFO Connection check task start + +2025-09-24 19:42:23,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:23,927 INFO Out dated connection ,size=0 + +2025-09-24 19:42:23,927 INFO Connection check task end + +2025-09-24 19:42:26,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:26,928 INFO Connection check task start + +2025-09-24 19:42:26,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:26,928 INFO Out dated connection ,size=0 + +2025-09-24 19:42:26,928 INFO Connection check task end + +2025-09-24 19:42:29,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:29,930 INFO Connection check task start + +2025-09-24 19:42:29,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:29,930 INFO Out dated connection ,size=0 + +2025-09-24 19:42:29,930 INFO Connection check task end + +2025-09-24 19:42:32,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:32,930 INFO Connection check task start + +2025-09-24 19:42:32,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:32,931 INFO Out dated connection ,size=0 + +2025-09-24 19:42:32,931 INFO Connection check task end + +2025-09-24 19:42:35,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:35,931 INFO Connection check task start + +2025-09-24 19:42:35,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:35,931 INFO Out dated connection ,size=0 + +2025-09-24 19:42:35,931 INFO Connection check task end + +2025-09-24 19:42:38,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:38,931 INFO Connection check task start + +2025-09-24 19:42:38,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:38,932 INFO Out dated connection ,size=0 + +2025-09-24 19:42:38,932 INFO Connection check task end + +2025-09-24 19:42:41,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:41,932 INFO Connection check task start + +2025-09-24 19:42:41,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:41,932 INFO Out dated connection ,size=0 + +2025-09-24 19:42:41,932 INFO Connection check task end + +2025-09-24 19:42:44,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:44,933 INFO Connection check task start + +2025-09-24 19:42:44,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:44,933 INFO Out dated connection ,size=0 + +2025-09-24 19:42:44,933 INFO Connection check task end + +2025-09-24 19:42:47,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:47,934 INFO Connection check task start + +2025-09-24 19:42:47,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:47,934 INFO Out dated connection ,size=0 + +2025-09-24 19:42:47,934 INFO Connection check task end + +2025-09-24 19:42:50,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:50,935 INFO Connection check task start + +2025-09-24 19:42:50,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:50,935 INFO Out dated connection ,size=0 + +2025-09-24 19:42:50,935 INFO Connection check task end + +2025-09-24 19:42:53,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:53,936 INFO Connection check task start + +2025-09-24 19:42:53,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:53,936 INFO Out dated connection ,size=0 + +2025-09-24 19:42:53,936 INFO Connection check task end + +2025-09-24 19:42:56,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:56,938 INFO Connection check task start + +2025-09-24 19:42:56,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:56,938 INFO Out dated connection ,size=0 + +2025-09-24 19:42:56,938 INFO Connection check task end + +2025-09-24 19:42:59,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:42:59,939 INFO Connection check task start + +2025-09-24 19:42:59,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:42:59,939 INFO Out dated connection ,size=0 + +2025-09-24 19:42:59,939 INFO Connection check task end + +2025-09-24 19:43:02,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:02,940 INFO Connection check task start + +2025-09-24 19:43:02,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:02,940 INFO Out dated connection ,size=0 + +2025-09-24 19:43:02,940 INFO Connection check task end + +2025-09-24 19:43:05,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:05,941 INFO Connection check task start + +2025-09-24 19:43:05,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:05,941 INFO Out dated connection ,size=0 + +2025-09-24 19:43:05,941 INFO Connection check task end + +2025-09-24 19:43:08,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:08,941 INFO Connection check task start + +2025-09-24 19:43:08,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:08,941 INFO Out dated connection ,size=0 + +2025-09-24 19:43:08,942 INFO Connection check task end + +2025-09-24 19:43:11,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:11,943 INFO Connection check task start + +2025-09-24 19:43:11,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:11,944 INFO Out dated connection ,size=0 + +2025-09-24 19:43:11,944 INFO Connection check task end + +2025-09-24 19:43:14,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:14,944 INFO Connection check task start + +2025-09-24 19:43:14,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:14,944 INFO Out dated connection ,size=0 + +2025-09-24 19:43:14,944 INFO Connection check task end + +2025-09-24 19:43:17,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:17,946 INFO Connection check task start + +2025-09-24 19:43:17,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:17,947 INFO Out dated connection ,size=0 + +2025-09-24 19:43:17,947 INFO Connection check task end + +2025-09-24 19:43:20,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:20,949 INFO Connection check task start + +2025-09-24 19:43:20,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:20,949 INFO Out dated connection ,size=0 + +2025-09-24 19:43:20,949 INFO Connection check task end + +2025-09-24 19:43:23,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:23,951 INFO Connection check task start + +2025-09-24 19:43:23,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:23,951 INFO Out dated connection ,size=0 + +2025-09-24 19:43:23,951 INFO Connection check task end + +2025-09-24 19:43:26,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:26,951 INFO Connection check task start + +2025-09-24 19:43:26,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:26,951 INFO Out dated connection ,size=0 + +2025-09-24 19:43:26,952 INFO Connection check task end + +2025-09-24 19:43:29,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:29,952 INFO Connection check task start + +2025-09-24 19:43:29,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:29,952 INFO Out dated connection ,size=0 + +2025-09-24 19:43:29,952 INFO Connection check task end + +2025-09-24 19:43:32,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:32,953 INFO Connection check task start + +2025-09-24 19:43:32,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:32,953 INFO Out dated connection ,size=0 + +2025-09-24 19:43:32,953 INFO Connection check task end + +2025-09-24 19:43:35,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:35,954 INFO Connection check task start + +2025-09-24 19:43:35,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:35,954 INFO Out dated connection ,size=0 + +2025-09-24 19:43:35,954 INFO Connection check task end + +2025-09-24 19:43:38,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:38,955 INFO Connection check task start + +2025-09-24 19:43:38,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:38,956 INFO Out dated connection ,size=0 + +2025-09-24 19:43:38,956 INFO Connection check task end + +2025-09-24 19:43:41,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:41,956 INFO Connection check task start + +2025-09-24 19:43:41,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:41,956 INFO Out dated connection ,size=0 + +2025-09-24 19:43:41,956 INFO Connection check task end + +2025-09-24 19:43:44,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:44,958 INFO Connection check task start + +2025-09-24 19:43:44,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:44,958 INFO Out dated connection ,size=0 + +2025-09-24 19:43:44,959 INFO Connection check task end + +2025-09-24 19:43:47,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:47,959 INFO Connection check task start + +2025-09-24 19:43:47,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:47,959 INFO Out dated connection ,size=0 + +2025-09-24 19:43:47,959 INFO Connection check task end + +2025-09-24 19:43:50,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:50,960 INFO Connection check task start + +2025-09-24 19:43:50,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:50,960 INFO Out dated connection ,size=0 + +2025-09-24 19:43:50,960 INFO Connection check task end + +2025-09-24 19:43:53,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:53,961 INFO Connection check task start + +2025-09-24 19:43:53,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:53,961 INFO Out dated connection ,size=0 + +2025-09-24 19:43:53,961 INFO Connection check task end + +2025-09-24 19:43:56,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:56,962 INFO Connection check task start + +2025-09-24 19:43:56,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:56,962 INFO Out dated connection ,size=0 + +2025-09-24 19:43:56,962 INFO Connection check task end + +2025-09-24 19:43:59,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:43:59,964 INFO Connection check task start + +2025-09-24 19:43:59,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:43:59,964 INFO Out dated connection ,size=0 + +2025-09-24 19:43:59,964 INFO Connection check task end + +2025-09-24 19:44:02,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:02,965 INFO Connection check task start + +2025-09-24 19:44:02,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:02,965 INFO Out dated connection ,size=0 + +2025-09-24 19:44:02,965 INFO Connection check task end + +2025-09-24 19:44:05,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:05,967 INFO Connection check task start + +2025-09-24 19:44:05,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:05,967 INFO Out dated connection ,size=0 + +2025-09-24 19:44:05,967 INFO Connection check task end + +2025-09-24 19:44:08,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:08,970 INFO Connection check task start + +2025-09-24 19:44:08,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:08,970 INFO Out dated connection ,size=0 + +2025-09-24 19:44:08,970 INFO Connection check task end + +2025-09-24 19:44:11,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:11,972 INFO Connection check task start + +2025-09-24 19:44:11,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:11,972 INFO Out dated connection ,size=0 + +2025-09-24 19:44:11,972 INFO Connection check task end + +2025-09-24 19:44:14,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:14,973 INFO Connection check task start + +2025-09-24 19:44:14,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:14,973 INFO Out dated connection ,size=0 + +2025-09-24 19:44:14,973 INFO Connection check task end + +2025-09-24 19:44:17,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:17,975 INFO Connection check task start + +2025-09-24 19:44:17,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:17,975 INFO Out dated connection ,size=0 + +2025-09-24 19:44:17,975 INFO Connection check task end + +2025-09-24 19:44:20,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:20,977 INFO Connection check task start + +2025-09-24 19:44:20,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:20,977 INFO Out dated connection ,size=0 + +2025-09-24 19:44:20,977 INFO Connection check task end + +2025-09-24 19:44:23,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:23,978 INFO Connection check task start + +2025-09-24 19:44:23,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:23,978 INFO Out dated connection ,size=0 + +2025-09-24 19:44:23,978 INFO Connection check task end + +2025-09-24 19:44:26,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:26,978 INFO Connection check task start + +2025-09-24 19:44:26,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:26,978 INFO Out dated connection ,size=0 + +2025-09-24 19:44:26,978 INFO Connection check task end + +2025-09-24 19:44:29,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:29,981 INFO Connection check task start + +2025-09-24 19:44:29,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:29,981 INFO Out dated connection ,size=0 + +2025-09-24 19:44:29,981 INFO Connection check task end + +2025-09-24 19:44:32,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:32,981 INFO Connection check task start + +2025-09-24 19:44:32,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:32,981 INFO Out dated connection ,size=0 + +2025-09-24 19:44:32,981 INFO Connection check task end + +2025-09-24 19:44:35,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:35,983 INFO Connection check task start + +2025-09-24 19:44:35,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:35,983 INFO Out dated connection ,size=0 + +2025-09-24 19:44:35,983 INFO Connection check task end + +2025-09-24 19:44:38,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:38,985 INFO Connection check task start + +2025-09-24 19:44:38,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:38,985 INFO Out dated connection ,size=0 + +2025-09-24 19:44:38,985 INFO Connection check task end + +2025-09-24 19:44:41,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:41,985 INFO Connection check task start + +2025-09-24 19:44:41,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:41,985 INFO Out dated connection ,size=0 + +2025-09-24 19:44:41,985 INFO Connection check task end + +2025-09-24 19:44:44,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:44,986 INFO Connection check task start + +2025-09-24 19:44:44,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:44,986 INFO Out dated connection ,size=0 + +2025-09-24 19:44:44,987 INFO Connection check task end + +2025-09-24 19:44:47,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:47,988 INFO Connection check task start + +2025-09-24 19:44:47,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:47,988 INFO Out dated connection ,size=0 + +2025-09-24 19:44:47,988 INFO Connection check task end + +2025-09-24 19:44:50,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:50,988 INFO Connection check task start + +2025-09-24 19:44:50,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:50,989 INFO Out dated connection ,size=0 + +2025-09-24 19:44:50,989 INFO Connection check task end + +2025-09-24 19:44:53,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:53,989 INFO Connection check task start + +2025-09-24 19:44:53,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:53,989 INFO Out dated connection ,size=0 + +2025-09-24 19:44:53,989 INFO Connection check task end + +2025-09-24 19:44:56,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:56,990 INFO Connection check task start + +2025-09-24 19:44:56,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:56,991 INFO Out dated connection ,size=0 + +2025-09-24 19:44:56,991 INFO Connection check task end + +2025-09-24 19:44:59,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:44:59,991 INFO Connection check task start + +2025-09-24 19:44:59,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:44:59,991 INFO Out dated connection ,size=0 + +2025-09-24 19:44:59,991 INFO Connection check task end + +2025-09-24 19:45:02,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:02,991 INFO Connection check task start + +2025-09-24 19:45:02,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:02,992 INFO Out dated connection ,size=0 + +2025-09-24 19:45:02,992 INFO Connection check task end + +2025-09-24 19:45:05,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:05,994 INFO Connection check task start + +2025-09-24 19:45:05,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:05,994 INFO Out dated connection ,size=0 + +2025-09-24 19:45:05,994 INFO Connection check task end + +2025-09-24 19:45:08,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:08,994 INFO Connection check task start + +2025-09-24 19:45:08,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:08,994 INFO Out dated connection ,size=0 + +2025-09-24 19:45:08,994 INFO Connection check task end + +2025-09-24 19:45:11,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:11,995 INFO Connection check task start + +2025-09-24 19:45:11,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:11,995 INFO Out dated connection ,size=0 + +2025-09-24 19:45:11,995 INFO Connection check task end + +2025-09-24 19:45:14,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:14,997 INFO Connection check task start + +2025-09-24 19:45:14,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:14,997 INFO Out dated connection ,size=0 + +2025-09-24 19:45:14,997 INFO Connection check task end + +2025-09-24 19:45:17,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:17,997 INFO Connection check task start + +2025-09-24 19:45:17,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:17,998 INFO Out dated connection ,size=0 + +2025-09-24 19:45:17,998 INFO Connection check task end + +2025-09-24 19:45:20,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:20,999 INFO Connection check task start + +2025-09-24 19:45:20,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:20,999 INFO Out dated connection ,size=0 + +2025-09-24 19:45:20,999 INFO Connection check task end + +2025-09-24 19:45:23,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:24,001 INFO Connection check task start + +2025-09-24 19:45:24,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:24,001 INFO Out dated connection ,size=0 + +2025-09-24 19:45:24,001 INFO Connection check task end + +2025-09-24 19:45:26,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:27,003 INFO Connection check task start + +2025-09-24 19:45:27,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:27,004 INFO Out dated connection ,size=0 + +2025-09-24 19:45:27,004 INFO Connection check task end + +2025-09-24 19:45:29,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:30,004 INFO Connection check task start + +2025-09-24 19:45:30,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:30,004 INFO Out dated connection ,size=0 + +2025-09-24 19:45:30,004 INFO Connection check task end + +2025-09-24 19:45:32,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:33,006 INFO Connection check task start + +2025-09-24 19:45:33,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:33,006 INFO Out dated connection ,size=0 + +2025-09-24 19:45:33,007 INFO Connection check task end + +2025-09-24 19:45:35,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:36,008 INFO Connection check task start + +2025-09-24 19:45:36,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:36,008 INFO Out dated connection ,size=0 + +2025-09-24 19:45:36,008 INFO Connection check task end + +2025-09-24 19:45:38,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:39,009 INFO Connection check task start + +2025-09-24 19:45:39,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:39,009 INFO Out dated connection ,size=0 + +2025-09-24 19:45:39,009 INFO Connection check task end + +2025-09-24 19:45:41,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:42,010 INFO Connection check task start + +2025-09-24 19:45:42,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:42,010 INFO Out dated connection ,size=0 + +2025-09-24 19:45:42,010 INFO Connection check task end + +2025-09-24 19:45:44,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:45,011 INFO Connection check task start + +2025-09-24 19:45:45,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:45,011 INFO Out dated connection ,size=0 + +2025-09-24 19:45:45,011 INFO Connection check task end + +2025-09-24 19:45:47,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:48,012 INFO Connection check task start + +2025-09-24 19:45:48,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:48,012 INFO Out dated connection ,size=0 + +2025-09-24 19:45:48,012 INFO Connection check task end + +2025-09-24 19:45:50,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:51,012 INFO Connection check task start + +2025-09-24 19:45:51,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:51,013 INFO Out dated connection ,size=0 + +2025-09-24 19:45:51,013 INFO Connection check task end + +2025-09-24 19:45:53,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:54,014 INFO Connection check task start + +2025-09-24 19:45:54,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:54,015 INFO Out dated connection ,size=0 + +2025-09-24 19:45:54,015 INFO Connection check task end + +2025-09-24 19:45:56,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:45:57,016 INFO Connection check task start + +2025-09-24 19:45:57,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:45:57,016 INFO Out dated connection ,size=0 + +2025-09-24 19:45:57,016 INFO Connection check task end + +2025-09-24 19:45:59,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:00,017 INFO Connection check task start + +2025-09-24 19:46:00,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:00,017 INFO Out dated connection ,size=0 + +2025-09-24 19:46:00,017 INFO Connection check task end + +2025-09-24 19:46:02,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:03,017 INFO Connection check task start + +2025-09-24 19:46:03,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:03,018 INFO Out dated connection ,size=0 + +2025-09-24 19:46:03,018 INFO Connection check task end + +2025-09-24 19:46:05,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:06,020 INFO Connection check task start + +2025-09-24 19:46:06,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:06,020 INFO Out dated connection ,size=0 + +2025-09-24 19:46:06,020 INFO Connection check task end + +2025-09-24 19:46:08,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:09,021 INFO Connection check task start + +2025-09-24 19:46:09,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:09,022 INFO Out dated connection ,size=0 + +2025-09-24 19:46:09,022 INFO Connection check task end + +2025-09-24 19:46:11,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:12,022 INFO Connection check task start + +2025-09-24 19:46:12,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:12,022 INFO Out dated connection ,size=0 + +2025-09-24 19:46:12,022 INFO Connection check task end + +2025-09-24 19:46:14,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:15,023 INFO Connection check task start + +2025-09-24 19:46:15,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:15,023 INFO Out dated connection ,size=0 + +2025-09-24 19:46:15,023 INFO Connection check task end + +2025-09-24 19:46:17,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:18,023 INFO Connection check task start + +2025-09-24 19:46:18,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:18,023 INFO Out dated connection ,size=0 + +2025-09-24 19:46:18,023 INFO Connection check task end + +2025-09-24 19:46:20,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:21,025 INFO Connection check task start + +2025-09-24 19:46:21,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:21,025 INFO Out dated connection ,size=0 + +2025-09-24 19:46:21,025 INFO Connection check task end + +2025-09-24 19:46:23,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:24,026 INFO Connection check task start + +2025-09-24 19:46:24,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:24,026 INFO Out dated connection ,size=0 + +2025-09-24 19:46:24,026 INFO Connection check task end + +2025-09-24 19:46:26,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:27,027 INFO Connection check task start + +2025-09-24 19:46:27,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:27,028 INFO Out dated connection ,size=0 + +2025-09-24 19:46:27,028 INFO Connection check task end + +2025-09-24 19:46:29,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:30,029 INFO Connection check task start + +2025-09-24 19:46:30,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:30,029 INFO Out dated connection ,size=0 + +2025-09-24 19:46:30,029 INFO Connection check task end + +2025-09-24 19:46:32,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:33,030 INFO Connection check task start + +2025-09-24 19:46:33,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:33,030 INFO Out dated connection ,size=0 + +2025-09-24 19:46:33,030 INFO Connection check task end + +2025-09-24 19:46:35,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:36,032 INFO Connection check task start + +2025-09-24 19:46:36,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:36,032 INFO Out dated connection ,size=0 + +2025-09-24 19:46:36,032 INFO Connection check task end + +2025-09-24 19:46:38,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:39,033 INFO Connection check task start + +2025-09-24 19:46:39,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:39,033 INFO Out dated connection ,size=0 + +2025-09-24 19:46:39,033 INFO Connection check task end + +2025-09-24 19:46:41,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:42,034 INFO Connection check task start + +2025-09-24 19:46:42,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:42,034 INFO Out dated connection ,size=0 + +2025-09-24 19:46:42,034 INFO Connection check task end + +2025-09-24 19:46:44,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:45,034 INFO Connection check task start + +2025-09-24 19:46:45,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:45,035 INFO Out dated connection ,size=0 + +2025-09-24 19:46:45,035 INFO Connection check task end + +2025-09-24 19:46:47,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:48,035 INFO Connection check task start + +2025-09-24 19:46:48,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:48,035 INFO Out dated connection ,size=0 + +2025-09-24 19:46:48,035 INFO Connection check task end + +2025-09-24 19:46:50,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:51,036 INFO Connection check task start + +2025-09-24 19:46:51,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:51,036 INFO Out dated connection ,size=0 + +2025-09-24 19:46:51,037 INFO Connection check task end + +2025-09-24 19:46:53,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:54,039 INFO Connection check task start + +2025-09-24 19:46:54,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:54,039 INFO Out dated connection ,size=0 + +2025-09-24 19:46:54,039 INFO Connection check task end + +2025-09-24 19:46:56,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:46:57,040 INFO Connection check task start + +2025-09-24 19:46:57,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:46:57,040 INFO Out dated connection ,size=0 + +2025-09-24 19:46:57,040 INFO Connection check task end + +2025-09-24 19:46:59,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:00,040 INFO Connection check task start + +2025-09-24 19:47:00,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:00,041 INFO Out dated connection ,size=0 + +2025-09-24 19:47:00,041 INFO Connection check task end + +2025-09-24 19:47:02,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:03,041 INFO Connection check task start + +2025-09-24 19:47:03,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:03,041 INFO Out dated connection ,size=0 + +2025-09-24 19:47:03,041 INFO Connection check task end + +2025-09-24 19:47:05,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:06,042 INFO Connection check task start + +2025-09-24 19:47:06,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:06,043 INFO Out dated connection ,size=0 + +2025-09-24 19:47:06,043 INFO Connection check task end + +2025-09-24 19:47:08,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:09,044 INFO Connection check task start + +2025-09-24 19:47:09,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:09,044 INFO Out dated connection ,size=0 + +2025-09-24 19:47:09,044 INFO Connection check task end + +2025-09-24 19:47:11,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:12,045 INFO Connection check task start + +2025-09-24 19:47:12,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:12,045 INFO Out dated connection ,size=0 + +2025-09-24 19:47:12,045 INFO Connection check task end + +2025-09-24 19:47:14,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:15,048 INFO Connection check task start + +2025-09-24 19:47:15,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:15,048 INFO Out dated connection ,size=0 + +2025-09-24 19:47:15,048 INFO Connection check task end + +2025-09-24 19:47:17,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:18,050 INFO Connection check task start + +2025-09-24 19:47:18,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:18,050 INFO Out dated connection ,size=0 + +2025-09-24 19:47:18,050 INFO Connection check task end + +2025-09-24 19:47:20,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:21,050 INFO Connection check task start + +2025-09-24 19:47:21,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:21,050 INFO Out dated connection ,size=0 + +2025-09-24 19:47:21,050 INFO Connection check task end + +2025-09-24 19:47:23,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:24,051 INFO Connection check task start + +2025-09-24 19:47:24,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:24,051 INFO Out dated connection ,size=0 + +2025-09-24 19:47:24,051 INFO Connection check task end + +2025-09-24 19:47:26,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:27,053 INFO Connection check task start + +2025-09-24 19:47:27,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:27,053 INFO Out dated connection ,size=0 + +2025-09-24 19:47:27,053 INFO Connection check task end + +2025-09-24 19:47:29,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:30,055 INFO Connection check task start + +2025-09-24 19:47:30,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:30,055 INFO Out dated connection ,size=0 + +2025-09-24 19:47:30,055 INFO Connection check task end + +2025-09-24 19:47:32,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:33,056 INFO Connection check task start + +2025-09-24 19:47:33,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:33,057 INFO Out dated connection ,size=0 + +2025-09-24 19:47:33,057 INFO Connection check task end + +2025-09-24 19:47:35,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:36,059 INFO Connection check task start + +2025-09-24 19:47:36,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:36,059 INFO Out dated connection ,size=0 + +2025-09-24 19:47:36,059 INFO Connection check task end + +2025-09-24 19:47:38,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:39,060 INFO Connection check task start + +2025-09-24 19:47:39,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:39,060 INFO Out dated connection ,size=0 + +2025-09-24 19:47:39,060 INFO Connection check task end + +2025-09-24 19:47:41,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:42,060 INFO Connection check task start + +2025-09-24 19:47:42,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:42,061 INFO Out dated connection ,size=0 + +2025-09-24 19:47:42,061 INFO Connection check task end + +2025-09-24 19:47:44,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:45,062 INFO Connection check task start + +2025-09-24 19:47:45,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:45,062 INFO Out dated connection ,size=0 + +2025-09-24 19:47:45,062 INFO Connection check task end + +2025-09-24 19:47:47,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:48,063 INFO Connection check task start + +2025-09-24 19:47:48,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:48,063 INFO Out dated connection ,size=0 + +2025-09-24 19:47:48,063 INFO Connection check task end + +2025-09-24 19:47:50,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:51,063 INFO Connection check task start + +2025-09-24 19:47:51,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:51,063 INFO Out dated connection ,size=0 + +2025-09-24 19:47:51,063 INFO Connection check task end + +2025-09-24 19:47:53,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:54,063 INFO Connection check task start + +2025-09-24 19:47:54,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:54,063 INFO Out dated connection ,size=0 + +2025-09-24 19:47:54,064 INFO Connection check task end + +2025-09-24 19:47:56,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:47:57,064 INFO Connection check task start + +2025-09-24 19:47:57,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:47:57,064 INFO Out dated connection ,size=0 + +2025-09-24 19:47:57,064 INFO Connection check task end + +2025-09-24 19:47:59,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:00,064 INFO Connection check task start + +2025-09-24 19:48:00,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:00,065 INFO Out dated connection ,size=0 + +2025-09-24 19:48:00,065 INFO Connection check task end + +2025-09-24 19:48:02,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:03,066 INFO Connection check task start + +2025-09-24 19:48:03,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:03,066 INFO Out dated connection ,size=0 + +2025-09-24 19:48:03,066 INFO Connection check task end + +2025-09-24 19:48:05,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:06,066 INFO Connection check task start + +2025-09-24 19:48:06,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:06,067 INFO Out dated connection ,size=0 + +2025-09-24 19:48:06,067 INFO Connection check task end + +2025-09-24 19:48:08,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:09,068 INFO Connection check task start + +2025-09-24 19:48:09,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:09,069 INFO Out dated connection ,size=0 + +2025-09-24 19:48:09,069 INFO Connection check task end + +2025-09-24 19:48:11,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:12,070 INFO Connection check task start + +2025-09-24 19:48:12,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:12,070 INFO Out dated connection ,size=0 + +2025-09-24 19:48:12,070 INFO Connection check task end + +2025-09-24 19:48:14,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:15,072 INFO Connection check task start + +2025-09-24 19:48:15,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:15,072 INFO Out dated connection ,size=0 + +2025-09-24 19:48:15,072 INFO Connection check task end + +2025-09-24 19:48:17,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:18,073 INFO Connection check task start + +2025-09-24 19:48:18,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:18,073 INFO Out dated connection ,size=0 + +2025-09-24 19:48:18,073 INFO Connection check task end + +2025-09-24 19:48:20,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:21,073 INFO Connection check task start + +2025-09-24 19:48:21,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:21,073 INFO Out dated connection ,size=0 + +2025-09-24 19:48:21,073 INFO Connection check task end + +2025-09-24 19:48:23,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:24,075 INFO Connection check task start + +2025-09-24 19:48:24,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:24,075 INFO Out dated connection ,size=0 + +2025-09-24 19:48:24,075 INFO Connection check task end + +2025-09-24 19:48:26,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:27,077 INFO Connection check task start + +2025-09-24 19:48:27,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:27,077 INFO Out dated connection ,size=0 + +2025-09-24 19:48:27,077 INFO Connection check task end + +2025-09-24 19:48:29,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:30,079 INFO Connection check task start + +2025-09-24 19:48:30,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:30,079 INFO Out dated connection ,size=0 + +2025-09-24 19:48:30,079 INFO Connection check task end + +2025-09-24 19:48:32,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:33,079 INFO Connection check task start + +2025-09-24 19:48:33,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:33,080 INFO Out dated connection ,size=0 + +2025-09-24 19:48:33,080 INFO Connection check task end + +2025-09-24 19:48:35,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:36,080 INFO Connection check task start + +2025-09-24 19:48:36,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:36,080 INFO Out dated connection ,size=0 + +2025-09-24 19:48:36,080 INFO Connection check task end + +2025-09-24 19:48:38,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:39,080 INFO Connection check task start + +2025-09-24 19:48:39,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:39,080 INFO Out dated connection ,size=0 + +2025-09-24 19:48:39,081 INFO Connection check task end + +2025-09-24 19:48:41,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:42,081 INFO Connection check task start + +2025-09-24 19:48:42,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:42,081 INFO Out dated connection ,size=0 + +2025-09-24 19:48:42,081 INFO Connection check task end + +2025-09-24 19:48:44,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:45,081 INFO Connection check task start + +2025-09-24 19:48:45,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:45,082 INFO Out dated connection ,size=0 + +2025-09-24 19:48:45,082 INFO Connection check task end + +2025-09-24 19:48:47,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:48,082 INFO Connection check task start + +2025-09-24 19:48:48,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:48,082 INFO Out dated connection ,size=0 + +2025-09-24 19:48:48,082 INFO Connection check task end + +2025-09-24 19:48:50,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:51,083 INFO Connection check task start + +2025-09-24 19:48:51,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:51,083 INFO Out dated connection ,size=0 + +2025-09-24 19:48:51,083 INFO Connection check task end + +2025-09-24 19:48:53,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:54,084 INFO Connection check task start + +2025-09-24 19:48:54,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:54,084 INFO Out dated connection ,size=0 + +2025-09-24 19:48:54,084 INFO Connection check task end + +2025-09-24 19:48:56,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:48:57,084 INFO Connection check task start + +2025-09-24 19:48:57,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:48:57,084 INFO Out dated connection ,size=0 + +2025-09-24 19:48:57,084 INFO Connection check task end + +2025-09-24 19:48:59,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:00,085 INFO Connection check task start + +2025-09-24 19:49:00,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:00,086 INFO Out dated connection ,size=0 + +2025-09-24 19:49:00,086 INFO Connection check task end + +2025-09-24 19:49:02,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:03,086 INFO Connection check task start + +2025-09-24 19:49:03,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:03,086 INFO Out dated connection ,size=0 + +2025-09-24 19:49:03,086 INFO Connection check task end + +2025-09-24 19:49:05,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:06,087 INFO Connection check task start + +2025-09-24 19:49:06,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:06,088 INFO Out dated connection ,size=0 + +2025-09-24 19:49:06,088 INFO Connection check task end + +2025-09-24 19:49:08,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:09,088 INFO Connection check task start + +2025-09-24 19:49:09,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:09,088 INFO Out dated connection ,size=0 + +2025-09-24 19:49:09,088 INFO Connection check task end + +2025-09-24 19:49:11,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:12,088 INFO Connection check task start + +2025-09-24 19:49:12,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:12,089 INFO Out dated connection ,size=0 + +2025-09-24 19:49:12,089 INFO Connection check task end + +2025-09-24 19:49:14,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:15,089 INFO Connection check task start + +2025-09-24 19:49:15,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:15,089 INFO Out dated connection ,size=0 + +2025-09-24 19:49:15,089 INFO Connection check task end + +2025-09-24 19:49:17,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:18,089 INFO Connection check task start + +2025-09-24 19:49:18,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:18,089 INFO Out dated connection ,size=0 + +2025-09-24 19:49:18,089 INFO Connection check task end + +2025-09-24 19:49:20,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:21,089 INFO Connection check task start + +2025-09-24 19:49:21,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:21,090 INFO Out dated connection ,size=0 + +2025-09-24 19:49:21,090 INFO Connection check task end + +2025-09-24 19:49:23,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:24,091 INFO Connection check task start + +2025-09-24 19:49:24,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:24,091 INFO Out dated connection ,size=0 + +2025-09-24 19:49:24,091 INFO Connection check task end + +2025-09-24 19:49:26,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:27,091 INFO Connection check task start + +2025-09-24 19:49:27,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:27,091 INFO Out dated connection ,size=0 + +2025-09-24 19:49:27,091 INFO Connection check task end + +2025-09-24 19:49:29,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:30,092 INFO Connection check task start + +2025-09-24 19:49:30,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:30,092 INFO Out dated connection ,size=0 + +2025-09-24 19:49:30,092 INFO Connection check task end + +2025-09-24 19:49:32,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:33,092 INFO Connection check task start + +2025-09-24 19:49:33,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:33,093 INFO Out dated connection ,size=0 + +2025-09-24 19:49:33,093 INFO Connection check task end + +2025-09-24 19:49:35,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:36,093 INFO Connection check task start + +2025-09-24 19:49:36,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:36,093 INFO Out dated connection ,size=0 + +2025-09-24 19:49:36,093 INFO Connection check task end + +2025-09-24 19:49:38,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:39,094 INFO Connection check task start + +2025-09-24 19:49:39,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:39,095 INFO Out dated connection ,size=0 + +2025-09-24 19:49:39,095 INFO Connection check task end + +2025-09-24 19:49:41,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:42,095 INFO Connection check task start + +2025-09-24 19:49:42,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:42,095 INFO Out dated connection ,size=0 + +2025-09-24 19:49:42,095 INFO Connection check task end + +2025-09-24 19:49:44,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:45,095 INFO Connection check task start + +2025-09-24 19:49:45,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:45,096 INFO Out dated connection ,size=0 + +2025-09-24 19:49:45,096 INFO Connection check task end + +2025-09-24 19:49:47,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:48,096 INFO Connection check task start + +2025-09-24 19:49:48,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:48,096 INFO Out dated connection ,size=0 + +2025-09-24 19:49:48,096 INFO Connection check task end + +2025-09-24 19:49:50,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:51,097 INFO Connection check task start + +2025-09-24 19:49:51,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:51,097 INFO Out dated connection ,size=0 + +2025-09-24 19:49:51,097 INFO Connection check task end + +2025-09-24 19:49:53,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:54,097 INFO Connection check task start + +2025-09-24 19:49:54,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:54,097 INFO Out dated connection ,size=0 + +2025-09-24 19:49:54,097 INFO Connection check task end + +2025-09-24 19:49:56,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:49:57,098 INFO Connection check task start + +2025-09-24 19:49:57,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:49:57,098 INFO Out dated connection ,size=0 + +2025-09-24 19:49:57,098 INFO Connection check task end + +2025-09-24 19:49:59,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:00,101 INFO Connection check task start + +2025-09-24 19:50:00,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:00,101 INFO Out dated connection ,size=0 + +2025-09-24 19:50:00,101 INFO Connection check task end + +2025-09-24 19:50:02,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:03,101 INFO Connection check task start + +2025-09-24 19:50:03,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:03,101 INFO Out dated connection ,size=0 + +2025-09-24 19:50:03,101 INFO Connection check task end + +2025-09-24 19:50:05,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:06,102 INFO Connection check task start + +2025-09-24 19:50:06,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:06,102 INFO Out dated connection ,size=0 + +2025-09-24 19:50:06,102 INFO Connection check task end + +2025-09-24 19:50:08,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:09,104 INFO Connection check task start + +2025-09-24 19:50:09,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:09,105 INFO Out dated connection ,size=0 + +2025-09-24 19:50:09,105 INFO Connection check task end + +2025-09-24 19:50:11,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:12,105 INFO Connection check task start + +2025-09-24 19:50:12,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:12,105 INFO Out dated connection ,size=0 + +2025-09-24 19:50:12,105 INFO Connection check task end + +2025-09-24 19:50:14,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:15,106 INFO Connection check task start + +2025-09-24 19:50:15,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:15,106 INFO Out dated connection ,size=0 + +2025-09-24 19:50:15,106 INFO Connection check task end + +2025-09-24 19:50:17,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:18,106 INFO Connection check task start + +2025-09-24 19:50:18,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:18,106 INFO Out dated connection ,size=0 + +2025-09-24 19:50:18,107 INFO Connection check task end + +2025-09-24 19:50:20,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:21,108 INFO Connection check task start + +2025-09-24 19:50:21,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:21,108 INFO Out dated connection ,size=0 + +2025-09-24 19:50:21,108 INFO Connection check task end + +2025-09-24 19:50:23,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:24,109 INFO Connection check task start + +2025-09-24 19:50:24,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:24,109 INFO Out dated connection ,size=0 + +2025-09-24 19:50:24,109 INFO Connection check task end + +2025-09-24 19:50:26,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:27,109 INFO Connection check task start + +2025-09-24 19:50:27,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:27,110 INFO Out dated connection ,size=0 + +2025-09-24 19:50:27,110 INFO Connection check task end + +2025-09-24 19:50:29,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:30,110 INFO Connection check task start + +2025-09-24 19:50:30,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:30,110 INFO Out dated connection ,size=0 + +2025-09-24 19:50:30,110 INFO Connection check task end + +2025-09-24 19:50:32,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:33,111 INFO Connection check task start + +2025-09-24 19:50:33,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:33,111 INFO Out dated connection ,size=0 + +2025-09-24 19:50:33,111 INFO Connection check task end + +2025-09-24 19:50:35,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:36,111 INFO Connection check task start + +2025-09-24 19:50:36,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:36,111 INFO Out dated connection ,size=0 + +2025-09-24 19:50:36,111 INFO Connection check task end + +2025-09-24 19:50:38,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:39,112 INFO Connection check task start + +2025-09-24 19:50:39,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:39,112 INFO Out dated connection ,size=0 + +2025-09-24 19:50:39,112 INFO Connection check task end + +2025-09-24 19:50:41,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:42,112 INFO Connection check task start + +2025-09-24 19:50:42,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:42,112 INFO Out dated connection ,size=0 + +2025-09-24 19:50:42,112 INFO Connection check task end + +2025-09-24 19:50:44,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:45,113 INFO Connection check task start + +2025-09-24 19:50:45,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:45,113 INFO Out dated connection ,size=0 + +2025-09-24 19:50:45,113 INFO Connection check task end + +2025-09-24 19:50:47,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:48,115 INFO Connection check task start + +2025-09-24 19:50:48,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:48,115 INFO Out dated connection ,size=0 + +2025-09-24 19:50:48,115 INFO Connection check task end + +2025-09-24 19:50:50,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:51,117 INFO Connection check task start + +2025-09-24 19:50:51,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:51,117 INFO Out dated connection ,size=0 + +2025-09-24 19:50:51,117 INFO Connection check task end + +2025-09-24 19:50:53,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:54,118 INFO Connection check task start + +2025-09-24 19:50:54,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:54,118 INFO Out dated connection ,size=0 + +2025-09-24 19:50:54,118 INFO Connection check task end + +2025-09-24 19:50:56,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:50:57,119 INFO Connection check task start + +2025-09-24 19:50:57,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:50:57,119 INFO Out dated connection ,size=0 + +2025-09-24 19:50:57,119 INFO Connection check task end + +2025-09-24 19:50:59,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:00,119 INFO Connection check task start + +2025-09-24 19:51:00,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:00,120 INFO Out dated connection ,size=0 + +2025-09-24 19:51:00,120 INFO Connection check task end + +2025-09-24 19:51:02,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:03,121 INFO Connection check task start + +2025-09-24 19:51:03,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:03,121 INFO Out dated connection ,size=0 + +2025-09-24 19:51:03,121 INFO Connection check task end + +2025-09-24 19:51:05,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:06,122 INFO Connection check task start + +2025-09-24 19:51:06,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:06,122 INFO Out dated connection ,size=0 + +2025-09-24 19:51:06,122 INFO Connection check task end + +2025-09-24 19:51:08,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:09,124 INFO Connection check task start + +2025-09-24 19:51:09,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:09,124 INFO Out dated connection ,size=0 + +2025-09-24 19:51:09,124 INFO Connection check task end + +2025-09-24 19:51:11,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:12,125 INFO Connection check task start + +2025-09-24 19:51:12,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:12,125 INFO Out dated connection ,size=0 + +2025-09-24 19:51:12,125 INFO Connection check task end + +2025-09-24 19:51:14,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:15,126 INFO Connection check task start + +2025-09-24 19:51:15,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:15,127 INFO Out dated connection ,size=0 + +2025-09-24 19:51:15,127 INFO Connection check task end + +2025-09-24 19:51:17,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:18,127 INFO Connection check task start + +2025-09-24 19:51:18,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:18,127 INFO Out dated connection ,size=0 + +2025-09-24 19:51:18,127 INFO Connection check task end + +2025-09-24 19:51:20,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:21,129 INFO Connection check task start + +2025-09-24 19:51:21,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:21,130 INFO Out dated connection ,size=0 + +2025-09-24 19:51:21,130 INFO Connection check task end + +2025-09-24 19:51:23,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:24,131 INFO Connection check task start + +2025-09-24 19:51:24,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:24,131 INFO Out dated connection ,size=0 + +2025-09-24 19:51:24,131 INFO Connection check task end + +2025-09-24 19:51:26,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:27,131 INFO Connection check task start + +2025-09-24 19:51:27,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:27,131 INFO Out dated connection ,size=0 + +2025-09-24 19:51:27,131 INFO Connection check task end + +2025-09-24 19:51:29,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:30,133 INFO Connection check task start + +2025-09-24 19:51:30,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:30,133 INFO Out dated connection ,size=0 + +2025-09-24 19:51:30,133 INFO Connection check task end + +2025-09-24 19:51:32,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:33,134 INFO Connection check task start + +2025-09-24 19:51:33,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:33,135 INFO Out dated connection ,size=0 + +2025-09-24 19:51:33,135 INFO Connection check task end + +2025-09-24 19:51:35,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:36,137 INFO Connection check task start + +2025-09-24 19:51:36,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:36,137 INFO Out dated connection ,size=0 + +2025-09-24 19:51:36,137 INFO Connection check task end + +2025-09-24 19:51:38,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:39,139 INFO Connection check task start + +2025-09-24 19:51:39,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:39,140 INFO Out dated connection ,size=0 + +2025-09-24 19:51:39,140 INFO Connection check task end + +2025-09-24 19:51:41,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:42,142 INFO Connection check task start + +2025-09-24 19:51:42,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:42,142 INFO Out dated connection ,size=0 + +2025-09-24 19:51:42,142 INFO Connection check task end + +2025-09-24 19:51:44,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:45,144 INFO Connection check task start + +2025-09-24 19:51:45,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:45,145 INFO Out dated connection ,size=0 + +2025-09-24 19:51:45,145 INFO Connection check task end + +2025-09-24 19:51:47,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:48,147 INFO Connection check task start + +2025-09-24 19:51:48,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:48,147 INFO Out dated connection ,size=0 + +2025-09-24 19:51:48,147 INFO Connection check task end + +2025-09-24 19:51:50,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:51,148 INFO Connection check task start + +2025-09-24 19:51:51,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:51,148 INFO Out dated connection ,size=0 + +2025-09-24 19:51:51,148 INFO Connection check task end + +2025-09-24 19:51:53,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:54,150 INFO Connection check task start + +2025-09-24 19:51:54,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:54,150 INFO Out dated connection ,size=0 + +2025-09-24 19:51:54,150 INFO Connection check task end + +2025-09-24 19:51:56,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:51:57,150 INFO Connection check task start + +2025-09-24 19:51:57,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:51:57,150 INFO Out dated connection ,size=0 + +2025-09-24 19:51:57,150 INFO Connection check task end + +2025-09-24 19:51:59,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:00,152 INFO Connection check task start + +2025-09-24 19:52:00,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:00,152 INFO Out dated connection ,size=0 + +2025-09-24 19:52:00,152 INFO Connection check task end + +2025-09-24 19:52:02,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:03,153 INFO Connection check task start + +2025-09-24 19:52:03,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:03,153 INFO Out dated connection ,size=0 + +2025-09-24 19:52:03,153 INFO Connection check task end + +2025-09-24 19:52:05,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:06,155 INFO Connection check task start + +2025-09-24 19:52:06,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:06,155 INFO Out dated connection ,size=0 + +2025-09-24 19:52:06,155 INFO Connection check task end + +2025-09-24 19:52:08,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:09,155 INFO Connection check task start + +2025-09-24 19:52:09,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:09,155 INFO Out dated connection ,size=0 + +2025-09-24 19:52:09,155 INFO Connection check task end + +2025-09-24 19:52:11,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:12,156 INFO Connection check task start + +2025-09-24 19:52:12,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:12,156 INFO Out dated connection ,size=0 + +2025-09-24 19:52:12,156 INFO Connection check task end + +2025-09-24 19:52:14,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:15,157 INFO Connection check task start + +2025-09-24 19:52:15,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:15,157 INFO Out dated connection ,size=0 + +2025-09-24 19:52:15,157 INFO Connection check task end + +2025-09-24 19:52:17,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:18,157 INFO Connection check task start + +2025-09-24 19:52:18,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:18,157 INFO Out dated connection ,size=0 + +2025-09-24 19:52:18,157 INFO Connection check task end + +2025-09-24 19:52:20,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:21,159 INFO Connection check task start + +2025-09-24 19:52:21,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:21,159 INFO Out dated connection ,size=0 + +2025-09-24 19:52:21,159 INFO Connection check task end + +2025-09-24 19:52:23,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:24,160 INFO Connection check task start + +2025-09-24 19:52:24,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:24,160 INFO Out dated connection ,size=0 + +2025-09-24 19:52:24,160 INFO Connection check task end + +2025-09-24 19:52:26,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:27,160 INFO Connection check task start + +2025-09-24 19:52:27,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:27,160 INFO Out dated connection ,size=0 + +2025-09-24 19:52:27,160 INFO Connection check task end + +2025-09-24 19:52:29,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:30,160 INFO Connection check task start + +2025-09-24 19:52:30,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:30,160 INFO Out dated connection ,size=0 + +2025-09-24 19:52:30,160 INFO Connection check task end + +2025-09-24 19:52:32,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:33,161 INFO Connection check task start + +2025-09-24 19:52:33,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:33,161 INFO Out dated connection ,size=0 + +2025-09-24 19:52:33,161 INFO Connection check task end + +2025-09-24 19:52:35,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:36,162 INFO Connection check task start + +2025-09-24 19:52:36,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:36,162 INFO Out dated connection ,size=0 + +2025-09-24 19:52:36,162 INFO Connection check task end + +2025-09-24 19:52:38,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:39,162 INFO Connection check task start + +2025-09-24 19:52:39,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:39,162 INFO Out dated connection ,size=0 + +2025-09-24 19:52:39,163 INFO Connection check task end + +2025-09-24 19:52:41,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:42,163 INFO Connection check task start + +2025-09-24 19:52:42,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:42,163 INFO Out dated connection ,size=0 + +2025-09-24 19:52:42,163 INFO Connection check task end + +2025-09-24 19:52:44,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:45,163 INFO Connection check task start + +2025-09-24 19:52:45,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:45,163 INFO Out dated connection ,size=0 + +2025-09-24 19:52:45,163 INFO Connection check task end + +2025-09-24 19:52:47,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:48,165 INFO Connection check task start + +2025-09-24 19:52:48,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:48,165 INFO Out dated connection ,size=0 + +2025-09-24 19:52:48,165 INFO Connection check task end + +2025-09-24 19:52:50,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:51,165 INFO Connection check task start + +2025-09-24 19:52:51,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:51,166 INFO Out dated connection ,size=0 + +2025-09-24 19:52:51,166 INFO Connection check task end + +2025-09-24 19:52:53,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:54,166 INFO Connection check task start + +2025-09-24 19:52:54,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:54,166 INFO Out dated connection ,size=0 + +2025-09-24 19:52:54,166 INFO Connection check task end + +2025-09-24 19:52:56,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:52:57,166 INFO Connection check task start + +2025-09-24 19:52:57,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:52:57,167 INFO Out dated connection ,size=0 + +2025-09-24 19:52:57,167 INFO Connection check task end + +2025-09-24 19:52:59,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:00,168 INFO Connection check task start + +2025-09-24 19:53:00,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:00,168 INFO Out dated connection ,size=0 + +2025-09-24 19:53:00,168 INFO Connection check task end + +2025-09-24 19:53:02,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:03,170 INFO Connection check task start + +2025-09-24 19:53:03,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:03,170 INFO Out dated connection ,size=0 + +2025-09-24 19:53:03,170 INFO Connection check task end + +2025-09-24 19:53:05,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:06,172 INFO Connection check task start + +2025-09-24 19:53:06,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:06,172 INFO Out dated connection ,size=0 + +2025-09-24 19:53:06,172 INFO Connection check task end + +2025-09-24 19:53:08,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:09,174 INFO Connection check task start + +2025-09-24 19:53:09,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:09,174 INFO Out dated connection ,size=0 + +2025-09-24 19:53:09,174 INFO Connection check task end + +2025-09-24 19:53:11,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:12,176 INFO Connection check task start + +2025-09-24 19:53:12,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:12,177 INFO Out dated connection ,size=0 + +2025-09-24 19:53:12,177 INFO Connection check task end + +2025-09-24 19:53:14,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:15,179 INFO Connection check task start + +2025-09-24 19:53:15,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:15,179 INFO Out dated connection ,size=0 + +2025-09-24 19:53:15,179 INFO Connection check task end + +2025-09-24 19:53:17,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:18,180 INFO Connection check task start + +2025-09-24 19:53:18,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:18,180 INFO Out dated connection ,size=0 + +2025-09-24 19:53:18,180 INFO Connection check task end + +2025-09-24 19:53:20,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:21,181 INFO Connection check task start + +2025-09-24 19:53:21,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:21,181 INFO Out dated connection ,size=0 + +2025-09-24 19:53:21,181 INFO Connection check task end + +2025-09-24 19:53:23,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:24,181 INFO Connection check task start + +2025-09-24 19:53:24,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:24,181 INFO Out dated connection ,size=0 + +2025-09-24 19:53:24,181 INFO Connection check task end + +2025-09-24 19:53:26,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:27,183 INFO Connection check task start + +2025-09-24 19:53:27,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:27,183 INFO Out dated connection ,size=0 + +2025-09-24 19:53:27,183 INFO Connection check task end + +2025-09-24 19:53:29,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:30,185 INFO Connection check task start + +2025-09-24 19:53:30,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:30,185 INFO Out dated connection ,size=0 + +2025-09-24 19:53:30,185 INFO Connection check task end + +2025-09-24 19:53:32,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:33,187 INFO Connection check task start + +2025-09-24 19:53:33,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:33,187 INFO Out dated connection ,size=0 + +2025-09-24 19:53:33,187 INFO Connection check task end + +2025-09-24 19:53:35,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:36,188 INFO Connection check task start + +2025-09-24 19:53:36,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:36,188 INFO Out dated connection ,size=0 + +2025-09-24 19:53:36,188 INFO Connection check task end + +2025-09-24 19:53:38,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:39,189 INFO Connection check task start + +2025-09-24 19:53:39,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:39,189 INFO Out dated connection ,size=0 + +2025-09-24 19:53:39,189 INFO Connection check task end + +2025-09-24 19:53:41,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:42,191 INFO Connection check task start + +2025-09-24 19:53:42,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:42,191 INFO Out dated connection ,size=0 + +2025-09-24 19:53:42,191 INFO Connection check task end + +2025-09-24 19:53:44,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:45,191 INFO Connection check task start + +2025-09-24 19:53:45,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:45,191 INFO Out dated connection ,size=0 + +2025-09-24 19:53:45,191 INFO Connection check task end + +2025-09-24 19:53:47,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:48,192 INFO Connection check task start + +2025-09-24 19:53:48,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:48,192 INFO Out dated connection ,size=0 + +2025-09-24 19:53:48,192 INFO Connection check task end + +2025-09-24 19:53:50,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:51,193 INFO Connection check task start + +2025-09-24 19:53:51,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:51,193 INFO Out dated connection ,size=0 + +2025-09-24 19:53:51,193 INFO Connection check task end + +2025-09-24 19:53:53,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:54,193 INFO Connection check task start + +2025-09-24 19:53:54,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:54,194 INFO Out dated connection ,size=0 + +2025-09-24 19:53:54,194 INFO Connection check task end + +2025-09-24 19:53:56,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:53:57,194 INFO Connection check task start + +2025-09-24 19:53:57,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:53:57,194 INFO Out dated connection ,size=0 + +2025-09-24 19:53:57,194 INFO Connection check task end + +2025-09-24 19:53:59,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:00,196 INFO Connection check task start + +2025-09-24 19:54:00,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:00,196 INFO Out dated connection ,size=0 + +2025-09-24 19:54:00,196 INFO Connection check task end + +2025-09-24 19:54:02,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:03,198 INFO Connection check task start + +2025-09-24 19:54:03,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:03,198 INFO Out dated connection ,size=0 + +2025-09-24 19:54:03,198 INFO Connection check task end + +2025-09-24 19:54:05,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:06,199 INFO Connection check task start + +2025-09-24 19:54:06,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:06,199 INFO Out dated connection ,size=0 + +2025-09-24 19:54:06,199 INFO Connection check task end + +2025-09-24 19:54:08,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:09,199 INFO Connection check task start + +2025-09-24 19:54:09,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:09,200 INFO Out dated connection ,size=0 + +2025-09-24 19:54:09,200 INFO Connection check task end + +2025-09-24 19:54:11,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:12,201 INFO Connection check task start + +2025-09-24 19:54:12,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:12,202 INFO Out dated connection ,size=0 + +2025-09-24 19:54:12,202 INFO Connection check task end + +2025-09-24 19:54:14,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:15,203 INFO Connection check task start + +2025-09-24 19:54:15,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:15,203 INFO Out dated connection ,size=0 + +2025-09-24 19:54:15,203 INFO Connection check task end + +2025-09-24 19:54:17,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:18,204 INFO Connection check task start + +2025-09-24 19:54:18,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:18,204 INFO Out dated connection ,size=0 + +2025-09-24 19:54:18,204 INFO Connection check task end + +2025-09-24 19:54:20,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:21,205 INFO Connection check task start + +2025-09-24 19:54:21,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:21,205 INFO Out dated connection ,size=0 + +2025-09-24 19:54:21,205 INFO Connection check task end + +2025-09-24 19:54:23,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:24,206 INFO Connection check task start + +2025-09-24 19:54:24,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:24,206 INFO Out dated connection ,size=0 + +2025-09-24 19:54:24,206 INFO Connection check task end + +2025-09-24 19:54:26,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:27,206 INFO Connection check task start + +2025-09-24 19:54:27,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:27,206 INFO Out dated connection ,size=0 + +2025-09-24 19:54:27,207 INFO Connection check task end + +2025-09-24 19:54:29,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:30,208 INFO Connection check task start + +2025-09-24 19:54:30,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:30,208 INFO Out dated connection ,size=0 + +2025-09-24 19:54:30,208 INFO Connection check task end + +2025-09-24 19:54:32,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:33,208 INFO Connection check task start + +2025-09-24 19:54:33,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:33,209 INFO Out dated connection ,size=0 + +2025-09-24 19:54:33,209 INFO Connection check task end + +2025-09-24 19:54:35,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:36,209 INFO Connection check task start + +2025-09-24 19:54:36,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:36,209 INFO Out dated connection ,size=0 + +2025-09-24 19:54:36,209 INFO Connection check task end + +2025-09-24 19:54:38,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:39,210 INFO Connection check task start + +2025-09-24 19:54:39,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:39,210 INFO Out dated connection ,size=0 + +2025-09-24 19:54:39,210 INFO Connection check task end + +2025-09-24 19:54:41,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:42,210 INFO Connection check task start + +2025-09-24 19:54:42,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:42,211 INFO Out dated connection ,size=0 + +2025-09-24 19:54:42,211 INFO Connection check task end + +2025-09-24 19:54:44,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:45,212 INFO Connection check task start + +2025-09-24 19:54:45,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:45,212 INFO Out dated connection ,size=0 + +2025-09-24 19:54:45,212 INFO Connection check task end + +2025-09-24 19:54:47,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:48,212 INFO Connection check task start + +2025-09-24 19:54:48,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:48,212 INFO Out dated connection ,size=0 + +2025-09-24 19:54:48,212 INFO Connection check task end + +2025-09-24 19:54:50,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:51,213 INFO Connection check task start + +2025-09-24 19:54:51,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:51,213 INFO Out dated connection ,size=0 + +2025-09-24 19:54:51,213 INFO Connection check task end + +2025-09-24 19:54:53,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:54,216 INFO Connection check task start + +2025-09-24 19:54:54,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:54,216 INFO Out dated connection ,size=0 + +2025-09-24 19:54:54,217 INFO Connection check task end + +2025-09-24 19:54:56,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:54:57,218 INFO Connection check task start + +2025-09-24 19:54:57,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:54:57,218 INFO Out dated connection ,size=0 + +2025-09-24 19:54:57,218 INFO Connection check task end + +2025-09-24 19:54:59,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:00,220 INFO Connection check task start + +2025-09-24 19:55:00,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:00,220 INFO Out dated connection ,size=0 + +2025-09-24 19:55:00,220 INFO Connection check task end + +2025-09-24 19:55:02,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:03,220 INFO Connection check task start + +2025-09-24 19:55:03,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:03,221 INFO Out dated connection ,size=0 + +2025-09-24 19:55:03,221 INFO Connection check task end + +2025-09-24 19:55:06,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:06,221 INFO Connection check task start + +2025-09-24 19:55:06,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:06,221 INFO Out dated connection ,size=0 + +2025-09-24 19:55:06,222 INFO Connection check task end + +2025-09-24 19:55:09,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:09,222 INFO Connection check task start + +2025-09-24 19:55:09,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:09,222 INFO Out dated connection ,size=0 + +2025-09-24 19:55:09,222 INFO Connection check task end + +2025-09-24 19:55:12,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:12,223 INFO Connection check task start + +2025-09-24 19:55:12,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:12,224 INFO Out dated connection ,size=0 + +2025-09-24 19:55:12,224 INFO Connection check task end + +2025-09-24 19:55:15,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:15,225 INFO Connection check task start + +2025-09-24 19:55:15,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:15,225 INFO Out dated connection ,size=0 + +2025-09-24 19:55:15,225 INFO Connection check task end + +2025-09-24 19:55:18,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:18,226 INFO Connection check task start + +2025-09-24 19:55:18,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:18,226 INFO Out dated connection ,size=0 + +2025-09-24 19:55:18,226 INFO Connection check task end + +2025-09-24 19:55:21,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:21,226 INFO Connection check task start + +2025-09-24 19:55:21,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:21,227 INFO Out dated connection ,size=0 + +2025-09-24 19:55:21,227 INFO Connection check task end + +2025-09-24 19:55:24,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:24,228 INFO Connection check task start + +2025-09-24 19:55:24,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:24,228 INFO Out dated connection ,size=0 + +2025-09-24 19:55:24,228 INFO Connection check task end + +2025-09-24 19:55:27,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:27,230 INFO Connection check task start + +2025-09-24 19:55:27,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:27,230 INFO Out dated connection ,size=0 + +2025-09-24 19:55:27,230 INFO Connection check task end + +2025-09-24 19:55:30,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:30,230 INFO Connection check task start + +2025-09-24 19:55:30,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:30,231 INFO Out dated connection ,size=0 + +2025-09-24 19:55:30,231 INFO Connection check task end + +2025-09-24 19:55:33,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:33,231 INFO Connection check task start + +2025-09-24 19:55:33,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:33,231 INFO Out dated connection ,size=0 + +2025-09-24 19:55:33,231 INFO Connection check task end + +2025-09-24 19:55:36,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:36,232 INFO Connection check task start + +2025-09-24 19:55:36,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:36,232 INFO Out dated connection ,size=0 + +2025-09-24 19:55:36,232 INFO Connection check task end + +2025-09-24 19:55:39,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:39,232 INFO Connection check task start + +2025-09-24 19:55:39,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:39,232 INFO Out dated connection ,size=0 + +2025-09-24 19:55:39,232 INFO Connection check task end + +2025-09-24 19:55:42,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:42,233 INFO Connection check task start + +2025-09-24 19:55:42,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:42,233 INFO Out dated connection ,size=0 + +2025-09-24 19:55:42,233 INFO Connection check task end + +2025-09-24 19:55:45,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:45,233 INFO Connection check task start + +2025-09-24 19:55:45,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:45,233 INFO Out dated connection ,size=0 + +2025-09-24 19:55:45,234 INFO Connection check task end + +2025-09-24 19:55:48,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:48,234 INFO Connection check task start + +2025-09-24 19:55:48,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:48,234 INFO Out dated connection ,size=0 + +2025-09-24 19:55:48,234 INFO Connection check task end + +2025-09-24 19:55:51,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:51,234 INFO Connection check task start + +2025-09-24 19:55:51,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:51,234 INFO Out dated connection ,size=0 + +2025-09-24 19:55:51,234 INFO Connection check task end + +2025-09-24 19:55:54,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:54,235 INFO Connection check task start + +2025-09-24 19:55:54,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:54,235 INFO Out dated connection ,size=0 + +2025-09-24 19:55:54,235 INFO Connection check task end + +2025-09-24 19:55:57,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:55:57,236 INFO Connection check task start + +2025-09-24 19:55:57,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:55:57,236 INFO Out dated connection ,size=0 + +2025-09-24 19:55:57,236 INFO Connection check task end + +2025-09-24 19:56:00,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:00,237 INFO Connection check task start + +2025-09-24 19:56:00,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:00,237 INFO Out dated connection ,size=0 + +2025-09-24 19:56:00,237 INFO Connection check task end + +2025-09-24 19:56:03,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:03,237 INFO Connection check task start + +2025-09-24 19:56:03,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:03,238 INFO Out dated connection ,size=0 + +2025-09-24 19:56:03,238 INFO Connection check task end + +2025-09-24 19:56:06,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:06,238 INFO Connection check task start + +2025-09-24 19:56:06,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:06,238 INFO Out dated connection ,size=0 + +2025-09-24 19:56:06,238 INFO Connection check task end + +2025-09-24 19:56:09,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:09,239 INFO Connection check task start + +2025-09-24 19:56:09,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:09,239 INFO Out dated connection ,size=0 + +2025-09-24 19:56:09,239 INFO Connection check task end + +2025-09-24 19:56:12,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:12,240 INFO Connection check task start + +2025-09-24 19:56:12,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:12,240 INFO Out dated connection ,size=0 + +2025-09-24 19:56:12,240 INFO Connection check task end + +2025-09-24 19:56:15,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:15,242 INFO Connection check task start + +2025-09-24 19:56:15,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:15,242 INFO Out dated connection ,size=0 + +2025-09-24 19:56:15,242 INFO Connection check task end + +2025-09-24 19:56:18,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:18,242 INFO Connection check task start + +2025-09-24 19:56:18,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:18,242 INFO Out dated connection ,size=0 + +2025-09-24 19:56:18,243 INFO Connection check task end + +2025-09-24 19:56:21,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:21,243 INFO Connection check task start + +2025-09-24 19:56:21,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:21,243 INFO Out dated connection ,size=0 + +2025-09-24 19:56:21,243 INFO Connection check task end + +2025-09-24 19:56:24,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:24,243 INFO Connection check task start + +2025-09-24 19:56:24,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:24,243 INFO Out dated connection ,size=0 + +2025-09-24 19:56:24,243 INFO Connection check task end + +2025-09-24 19:56:27,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:27,245 INFO Connection check task start + +2025-09-24 19:56:27,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:27,245 INFO Out dated connection ,size=0 + +2025-09-24 19:56:27,245 INFO Connection check task end + +2025-09-24 19:56:30,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:30,247 INFO Connection check task start + +2025-09-24 19:56:30,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:30,247 INFO Out dated connection ,size=0 + +2025-09-24 19:56:30,247 INFO Connection check task end + +2025-09-24 19:56:33,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:33,248 INFO Connection check task start + +2025-09-24 19:56:33,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:33,248 INFO Out dated connection ,size=0 + +2025-09-24 19:56:33,248 INFO Connection check task end + +2025-09-24 19:56:36,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:36,249 INFO Connection check task start + +2025-09-24 19:56:36,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:36,249 INFO Out dated connection ,size=0 + +2025-09-24 19:56:36,249 INFO Connection check task end + +2025-09-24 19:56:39,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:39,249 INFO Connection check task start + +2025-09-24 19:56:39,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:39,250 INFO Out dated connection ,size=0 + +2025-09-24 19:56:39,250 INFO Connection check task end + +2025-09-24 19:56:42,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:42,250 INFO Connection check task start + +2025-09-24 19:56:42,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:42,250 INFO Out dated connection ,size=0 + +2025-09-24 19:56:42,250 INFO Connection check task end + +2025-09-24 19:56:45,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:45,251 INFO Connection check task start + +2025-09-24 19:56:45,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:45,251 INFO Out dated connection ,size=0 + +2025-09-24 19:56:45,251 INFO Connection check task end + +2025-09-24 19:56:48,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:48,251 INFO Connection check task start + +2025-09-24 19:56:48,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:48,252 INFO Out dated connection ,size=0 + +2025-09-24 19:56:48,252 INFO Connection check task end + +2025-09-24 19:56:51,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:51,252 INFO Connection check task start + +2025-09-24 19:56:51,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:51,252 INFO Out dated connection ,size=0 + +2025-09-24 19:56:51,252 INFO Connection check task end + +2025-09-24 19:56:54,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:54,252 INFO Connection check task start + +2025-09-24 19:56:54,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:54,252 INFO Out dated connection ,size=0 + +2025-09-24 19:56:54,252 INFO Connection check task end + +2025-09-24 19:56:57,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:56:57,253 INFO Connection check task start + +2025-09-24 19:56:57,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:56:57,254 INFO Out dated connection ,size=0 + +2025-09-24 19:56:57,254 INFO Connection check task end + +2025-09-24 19:57:00,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:00,255 INFO Connection check task start + +2025-09-24 19:57:00,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:00,255 INFO Out dated connection ,size=0 + +2025-09-24 19:57:00,255 INFO Connection check task end + +2025-09-24 19:57:03,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:03,255 INFO Connection check task start + +2025-09-24 19:57:03,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:03,256 INFO Out dated connection ,size=0 + +2025-09-24 19:57:03,256 INFO Connection check task end + +2025-09-24 19:57:06,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:06,257 INFO Connection check task start + +2025-09-24 19:57:06,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:06,257 INFO Out dated connection ,size=0 + +2025-09-24 19:57:06,257 INFO Connection check task end + +2025-09-24 19:57:09,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:09,258 INFO Connection check task start + +2025-09-24 19:57:09,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:09,258 INFO Out dated connection ,size=0 + +2025-09-24 19:57:09,258 INFO Connection check task end + +2025-09-24 19:57:12,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:12,259 INFO Connection check task start + +2025-09-24 19:57:12,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:12,259 INFO Out dated connection ,size=0 + +2025-09-24 19:57:12,259 INFO Connection check task end + +2025-09-24 19:57:15,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:15,260 INFO Connection check task start + +2025-09-24 19:57:15,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:15,261 INFO Out dated connection ,size=0 + +2025-09-24 19:57:15,261 INFO Connection check task end + +2025-09-24 19:57:18,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:18,261 INFO Connection check task start + +2025-09-24 19:57:18,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:18,261 INFO Out dated connection ,size=0 + +2025-09-24 19:57:18,261 INFO Connection check task end + +2025-09-24 19:57:21,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:21,263 INFO Connection check task start + +2025-09-24 19:57:21,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:21,263 INFO Out dated connection ,size=0 + +2025-09-24 19:57:21,263 INFO Connection check task end + +2025-09-24 19:57:24,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:24,264 INFO Connection check task start + +2025-09-24 19:57:24,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:24,264 INFO Out dated connection ,size=0 + +2025-09-24 19:57:24,264 INFO Connection check task end + +2025-09-24 19:57:27,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:27,265 INFO Connection check task start + +2025-09-24 19:57:27,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:27,265 INFO Out dated connection ,size=0 + +2025-09-24 19:57:27,265 INFO Connection check task end + +2025-09-24 19:57:30,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:30,265 INFO Connection check task start + +2025-09-24 19:57:30,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:30,265 INFO Out dated connection ,size=0 + +2025-09-24 19:57:30,265 INFO Connection check task end + +2025-09-24 19:57:33,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:33,266 INFO Connection check task start + +2025-09-24 19:57:33,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:33,266 INFO Out dated connection ,size=0 + +2025-09-24 19:57:33,266 INFO Connection check task end + +2025-09-24 19:57:36,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:36,268 INFO Connection check task start + +2025-09-24 19:57:36,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:36,268 INFO Out dated connection ,size=0 + +2025-09-24 19:57:36,268 INFO Connection check task end + +2025-09-24 19:57:39,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:39,270 INFO Connection check task start + +2025-09-24 19:57:39,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:39,270 INFO Out dated connection ,size=0 + +2025-09-24 19:57:39,270 INFO Connection check task end + +2025-09-24 19:57:42,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:42,270 INFO Connection check task start + +2025-09-24 19:57:42,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:42,271 INFO Out dated connection ,size=0 + +2025-09-24 19:57:42,271 INFO Connection check task end + +2025-09-24 19:57:45,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:45,272 INFO Connection check task start + +2025-09-24 19:57:45,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:45,273 INFO Out dated connection ,size=0 + +2025-09-24 19:57:45,273 INFO Connection check task end + +2025-09-24 19:57:48,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:48,274 INFO Connection check task start + +2025-09-24 19:57:48,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:48,275 INFO Out dated connection ,size=0 + +2025-09-24 19:57:48,275 INFO Connection check task end + +2025-09-24 19:57:51,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:51,275 INFO Connection check task start + +2025-09-24 19:57:51,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:51,275 INFO Out dated connection ,size=0 + +2025-09-24 19:57:51,275 INFO Connection check task end + +2025-09-24 19:57:54,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:54,275 INFO Connection check task start + +2025-09-24 19:57:54,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:54,276 INFO Out dated connection ,size=0 + +2025-09-24 19:57:54,276 INFO Connection check task end + +2025-09-24 19:57:57,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:57:57,278 INFO Connection check task start + +2025-09-24 19:57:57,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:57:57,278 INFO Out dated connection ,size=0 + +2025-09-24 19:57:57,278 INFO Connection check task end + +2025-09-24 19:58:00,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:00,279 INFO Connection check task start + +2025-09-24 19:58:00,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:00,279 INFO Out dated connection ,size=0 + +2025-09-24 19:58:00,279 INFO Connection check task end + +2025-09-24 19:58:03,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:03,280 INFO Connection check task start + +2025-09-24 19:58:03,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:03,280 INFO Out dated connection ,size=0 + +2025-09-24 19:58:03,280 INFO Connection check task end + +2025-09-24 19:58:06,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:06,281 INFO Connection check task start + +2025-09-24 19:58:06,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:06,281 INFO Out dated connection ,size=0 + +2025-09-24 19:58:06,281 INFO Connection check task end + +2025-09-24 19:58:09,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:09,283 INFO Connection check task start + +2025-09-24 19:58:09,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:09,283 INFO Out dated connection ,size=0 + +2025-09-24 19:58:09,283 INFO Connection check task end + +2025-09-24 19:58:12,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:12,284 INFO Connection check task start + +2025-09-24 19:58:12,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:12,284 INFO Out dated connection ,size=0 + +2025-09-24 19:58:12,284 INFO Connection check task end + +2025-09-24 19:58:15,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:15,286 INFO Connection check task start + +2025-09-24 19:58:15,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:15,286 INFO Out dated connection ,size=0 + +2025-09-24 19:58:15,287 INFO Connection check task end + +2025-09-24 19:58:18,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:18,287 INFO Connection check task start + +2025-09-24 19:58:18,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:18,287 INFO Out dated connection ,size=0 + +2025-09-24 19:58:18,287 INFO Connection check task end + +2025-09-24 19:58:21,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:21,289 INFO Connection check task start + +2025-09-24 19:58:21,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:21,289 INFO Out dated connection ,size=0 + +2025-09-24 19:58:21,289 INFO Connection check task end + +2025-09-24 19:58:24,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:24,290 INFO Connection check task start + +2025-09-24 19:58:24,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:24,290 INFO Out dated connection ,size=0 + +2025-09-24 19:58:24,290 INFO Connection check task end + +2025-09-24 19:58:27,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:27,291 INFO Connection check task start + +2025-09-24 19:58:27,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:27,292 INFO Out dated connection ,size=0 + +2025-09-24 19:58:27,292 INFO Connection check task end + +2025-09-24 19:58:30,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:30,292 INFO Connection check task start + +2025-09-24 19:58:30,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:30,293 INFO Out dated connection ,size=0 + +2025-09-24 19:58:30,293 INFO Connection check task end + +2025-09-24 19:58:33,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:33,293 INFO Connection check task start + +2025-09-24 19:58:33,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:33,293 INFO Out dated connection ,size=0 + +2025-09-24 19:58:33,293 INFO Connection check task end + +2025-09-24 19:58:36,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:36,293 INFO Connection check task start + +2025-09-24 19:58:36,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:36,294 INFO Out dated connection ,size=0 + +2025-09-24 19:58:36,294 INFO Connection check task end + +2025-09-24 19:58:39,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:39,295 INFO Connection check task start + +2025-09-24 19:58:39,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:39,295 INFO Out dated connection ,size=0 + +2025-09-24 19:58:39,295 INFO Connection check task end + +2025-09-24 19:58:42,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:42,296 INFO Connection check task start + +2025-09-24 19:58:42,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:42,297 INFO Out dated connection ,size=0 + +2025-09-24 19:58:42,297 INFO Connection check task end + +2025-09-24 19:58:45,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:45,299 INFO Connection check task start + +2025-09-24 19:58:45,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:45,299 INFO Out dated connection ,size=0 + +2025-09-24 19:58:45,299 INFO Connection check task end + +2025-09-24 19:58:48,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:48,301 INFO Connection check task start + +2025-09-24 19:58:48,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:48,301 INFO Out dated connection ,size=0 + +2025-09-24 19:58:48,301 INFO Connection check task end + +2025-09-24 19:58:51,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:51,301 INFO Connection check task start + +2025-09-24 19:58:51,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:51,301 INFO Out dated connection ,size=0 + +2025-09-24 19:58:51,301 INFO Connection check task end + +2025-09-24 19:58:54,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:54,301 INFO Connection check task start + +2025-09-24 19:58:54,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:54,302 INFO Out dated connection ,size=0 + +2025-09-24 19:58:54,302 INFO Connection check task end + +2025-09-24 19:58:57,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:58:57,304 INFO Connection check task start + +2025-09-24 19:58:57,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:58:57,304 INFO Out dated connection ,size=0 + +2025-09-24 19:58:57,304 INFO Connection check task end + +2025-09-24 19:59:00,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:00,305 INFO Connection check task start + +2025-09-24 19:59:00,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:00,305 INFO Out dated connection ,size=0 + +2025-09-24 19:59:00,305 INFO Connection check task end + +2025-09-24 19:59:03,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:03,306 INFO Connection check task start + +2025-09-24 19:59:03,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:03,306 INFO Out dated connection ,size=0 + +2025-09-24 19:59:03,306 INFO Connection check task end + +2025-09-24 19:59:06,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:06,308 INFO Connection check task start + +2025-09-24 19:59:06,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:06,308 INFO Out dated connection ,size=0 + +2025-09-24 19:59:06,308 INFO Connection check task end + +2025-09-24 19:59:09,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:09,309 INFO Connection check task start + +2025-09-24 19:59:09,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:09,309 INFO Out dated connection ,size=0 + +2025-09-24 19:59:09,309 INFO Connection check task end + +2025-09-24 19:59:12,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:12,310 INFO Connection check task start + +2025-09-24 19:59:12,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:12,310 INFO Out dated connection ,size=0 + +2025-09-24 19:59:12,310 INFO Connection check task end + +2025-09-24 19:59:15,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:15,311 INFO Connection check task start + +2025-09-24 19:59:15,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:15,311 INFO Out dated connection ,size=0 + +2025-09-24 19:59:15,311 INFO Connection check task end + +2025-09-24 19:59:18,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:18,312 INFO Connection check task start + +2025-09-24 19:59:18,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:18,312 INFO Out dated connection ,size=0 + +2025-09-24 19:59:18,312 INFO Connection check task end + +2025-09-24 19:59:21,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:21,313 INFO Connection check task start + +2025-09-24 19:59:21,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:21,313 INFO Out dated connection ,size=0 + +2025-09-24 19:59:21,313 INFO Connection check task end + +2025-09-24 19:59:24,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:24,315 INFO Connection check task start + +2025-09-24 19:59:24,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:24,315 INFO Out dated connection ,size=0 + +2025-09-24 19:59:24,316 INFO Connection check task end + +2025-09-24 19:59:27,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:27,316 INFO Connection check task start + +2025-09-24 19:59:27,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:27,316 INFO Out dated connection ,size=0 + +2025-09-24 19:59:27,316 INFO Connection check task end + +2025-09-24 19:59:30,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:30,318 INFO Connection check task start + +2025-09-24 19:59:30,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:30,318 INFO Out dated connection ,size=0 + +2025-09-24 19:59:30,318 INFO Connection check task end + +2025-09-24 19:59:33,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:33,320 INFO Connection check task start + +2025-09-24 19:59:33,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:33,321 INFO Out dated connection ,size=0 + +2025-09-24 19:59:33,321 INFO Connection check task end + +2025-09-24 19:59:36,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:36,321 INFO Connection check task start + +2025-09-24 19:59:36,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:36,322 INFO Out dated connection ,size=0 + +2025-09-24 19:59:36,322 INFO Connection check task end + +2025-09-24 19:59:39,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:39,322 INFO Connection check task start + +2025-09-24 19:59:39,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:39,322 INFO Out dated connection ,size=0 + +2025-09-24 19:59:39,322 INFO Connection check task end + +2025-09-24 19:59:42,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:42,322 INFO Connection check task start + +2025-09-24 19:59:42,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:42,322 INFO Out dated connection ,size=0 + +2025-09-24 19:59:42,322 INFO Connection check task end + +2025-09-24 19:59:45,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:45,323 INFO Connection check task start + +2025-09-24 19:59:45,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:45,323 INFO Out dated connection ,size=0 + +2025-09-24 19:59:45,323 INFO Connection check task end + +2025-09-24 19:59:48,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:48,325 INFO Connection check task start + +2025-09-24 19:59:48,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:48,325 INFO Out dated connection ,size=0 + +2025-09-24 19:59:48,325 INFO Connection check task end + +2025-09-24 19:59:51,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:51,326 INFO Connection check task start + +2025-09-24 19:59:51,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:51,326 INFO Out dated connection ,size=0 + +2025-09-24 19:59:51,326 INFO Connection check task end + +2025-09-24 19:59:54,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:54,328 INFO Connection check task start + +2025-09-24 19:59:54,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:54,328 INFO Out dated connection ,size=0 + +2025-09-24 19:59:54,328 INFO Connection check task end + +2025-09-24 19:59:57,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 19:59:57,328 INFO Connection check task start + +2025-09-24 19:59:57,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 19:59:57,328 INFO Out dated connection ,size=0 + +2025-09-24 19:59:57,329 INFO Connection check task end + +2025-09-24 20:00:00,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:00,329 INFO Connection check task start + +2025-09-24 20:00:00,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:00,329 INFO Out dated connection ,size=0 + +2025-09-24 20:00:00,329 INFO Connection check task end + +2025-09-24 20:00:03,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:03,330 INFO Connection check task start + +2025-09-24 20:00:03,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:03,331 INFO Out dated connection ,size=0 + +2025-09-24 20:00:03,331 INFO Connection check task end + +2025-09-24 20:00:06,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:06,331 INFO Connection check task start + +2025-09-24 20:00:06,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:06,331 INFO Out dated connection ,size=0 + +2025-09-24 20:00:06,331 INFO Connection check task end + +2025-09-24 20:00:09,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:09,333 INFO Connection check task start + +2025-09-24 20:00:09,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:09,333 INFO Out dated connection ,size=0 + +2025-09-24 20:00:09,334 INFO Connection check task end + +2025-09-24 20:00:12,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:12,334 INFO Connection check task start + +2025-09-24 20:00:12,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:12,334 INFO Out dated connection ,size=0 + +2025-09-24 20:00:12,334 INFO Connection check task end + +2025-09-24 20:00:15,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:15,334 INFO Connection check task start + +2025-09-24 20:00:15,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:15,335 INFO Out dated connection ,size=0 + +2025-09-24 20:00:15,335 INFO Connection check task end + +2025-09-24 20:00:18,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:18,335 INFO Connection check task start + +2025-09-24 20:00:18,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:18,335 INFO Out dated connection ,size=0 + +2025-09-24 20:00:18,335 INFO Connection check task end + +2025-09-24 20:00:21,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:21,337 INFO Connection check task start + +2025-09-24 20:00:21,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:21,337 INFO Out dated connection ,size=0 + +2025-09-24 20:00:21,337 INFO Connection check task end + +2025-09-24 20:00:24,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:24,337 INFO Connection check task start + +2025-09-24 20:00:24,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:24,338 INFO Out dated connection ,size=0 + +2025-09-24 20:00:24,338 INFO Connection check task end + +2025-09-24 20:00:27,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:27,339 INFO Connection check task start + +2025-09-24 20:00:27,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:27,339 INFO Out dated connection ,size=0 + +2025-09-24 20:00:27,339 INFO Connection check task end + +2025-09-24 20:00:30,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:30,340 INFO Connection check task start + +2025-09-24 20:00:30,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:30,340 INFO Out dated connection ,size=0 + +2025-09-24 20:00:30,340 INFO Connection check task end + +2025-09-24 20:00:33,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:33,340 INFO Connection check task start + +2025-09-24 20:00:33,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:33,341 INFO Out dated connection ,size=0 + +2025-09-24 20:00:33,341 INFO Connection check task end + +2025-09-24 20:00:36,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:36,341 INFO Connection check task start + +2025-09-24 20:00:36,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:36,341 INFO Out dated connection ,size=0 + +2025-09-24 20:00:36,341 INFO Connection check task end + +2025-09-24 20:00:39,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:39,343 INFO Connection check task start + +2025-09-24 20:00:39,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:39,344 INFO Out dated connection ,size=0 + +2025-09-24 20:00:39,344 INFO Connection check task end + +2025-09-24 20:00:42,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:42,345 INFO Connection check task start + +2025-09-24 20:00:42,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:42,345 INFO Out dated connection ,size=0 + +2025-09-24 20:00:42,345 INFO Connection check task end + +2025-09-24 20:00:45,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:45,345 INFO Connection check task start + +2025-09-24 20:00:45,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:45,345 INFO Out dated connection ,size=0 + +2025-09-24 20:00:45,345 INFO Connection check task end + +2025-09-24 20:00:48,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:48,347 INFO Connection check task start + +2025-09-24 20:00:48,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:48,347 INFO Out dated connection ,size=0 + +2025-09-24 20:00:48,347 INFO Connection check task end + +2025-09-24 20:00:51,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:51,347 INFO Connection check task start + +2025-09-24 20:00:51,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:51,347 INFO Out dated connection ,size=0 + +2025-09-24 20:00:51,347 INFO Connection check task end + +2025-09-24 20:00:54,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:54,348 INFO Connection check task start + +2025-09-24 20:00:54,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:54,348 INFO Out dated connection ,size=0 + +2025-09-24 20:00:54,348 INFO Connection check task end + +2025-09-24 20:00:57,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:00:57,348 INFO Connection check task start + +2025-09-24 20:00:57,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:00:57,349 INFO Out dated connection ,size=0 + +2025-09-24 20:00:57,349 INFO Connection check task end + +2025-09-24 20:01:00,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:00,350 INFO Connection check task start + +2025-09-24 20:01:00,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:00,350 INFO Out dated connection ,size=0 + +2025-09-24 20:01:00,350 INFO Connection check task end + +2025-09-24 20:01:03,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:03,350 INFO Connection check task start + +2025-09-24 20:01:03,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:03,351 INFO Out dated connection ,size=0 + +2025-09-24 20:01:03,351 INFO Connection check task end + +2025-09-24 20:01:06,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:06,351 INFO Connection check task start + +2025-09-24 20:01:06,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:06,351 INFO Out dated connection ,size=0 + +2025-09-24 20:01:06,351 INFO Connection check task end + +2025-09-24 20:01:09,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:09,352 INFO Connection check task start + +2025-09-24 20:01:09,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:09,352 INFO Out dated connection ,size=0 + +2025-09-24 20:01:09,352 INFO Connection check task end + +2025-09-24 20:01:12,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:12,352 INFO Connection check task start + +2025-09-24 20:01:12,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:12,352 INFO Out dated connection ,size=0 + +2025-09-24 20:01:12,352 INFO Connection check task end + +2025-09-24 20:01:15,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:15,354 INFO Connection check task start + +2025-09-24 20:01:15,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:15,354 INFO Out dated connection ,size=0 + +2025-09-24 20:01:15,354 INFO Connection check task end + +2025-09-24 20:01:18,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:18,354 INFO Connection check task start + +2025-09-24 20:01:18,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:18,355 INFO Out dated connection ,size=0 + +2025-09-24 20:01:18,355 INFO Connection check task end + +2025-09-24 20:01:21,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:21,355 INFO Connection check task start + +2025-09-24 20:01:21,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:21,355 INFO Out dated connection ,size=0 + +2025-09-24 20:01:21,355 INFO Connection check task end + +2025-09-24 20:01:24,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:24,357 INFO Connection check task start + +2025-09-24 20:01:24,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:24,357 INFO Out dated connection ,size=0 + +2025-09-24 20:01:24,357 INFO Connection check task end + +2025-09-24 20:01:27,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:27,358 INFO Connection check task start + +2025-09-24 20:01:27,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:27,358 INFO Out dated connection ,size=0 + +2025-09-24 20:01:27,358 INFO Connection check task end + +2025-09-24 20:01:30,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:30,358 INFO Connection check task start + +2025-09-24 20:01:30,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:30,359 INFO Out dated connection ,size=0 + +2025-09-24 20:01:30,359 INFO Connection check task end + +2025-09-24 20:01:33,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:33,359 INFO Connection check task start + +2025-09-24 20:01:33,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:33,359 INFO Out dated connection ,size=0 + +2025-09-24 20:01:33,359 INFO Connection check task end + +2025-09-24 20:01:36,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:36,359 INFO Connection check task start + +2025-09-24 20:01:36,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:36,369 INFO Out dated connection ,size=0 + +2025-09-24 20:01:36,369 INFO Connection check task end + +2025-09-24 20:01:39,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:39,370 INFO Connection check task start + +2025-09-24 20:01:39,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:39,370 INFO Out dated connection ,size=0 + +2025-09-24 20:01:39,371 INFO Connection check task end + +2025-09-24 20:01:42,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:42,373 INFO Connection check task start + +2025-09-24 20:01:42,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:42,373 INFO Out dated connection ,size=0 + +2025-09-24 20:01:42,373 INFO Connection check task end + +2025-09-24 20:01:45,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:45,373 INFO Connection check task start + +2025-09-24 20:01:45,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:45,373 INFO Out dated connection ,size=0 + +2025-09-24 20:01:45,373 INFO Connection check task end + +2025-09-24 20:01:48,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:48,374 INFO Connection check task start + +2025-09-24 20:01:48,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:48,374 INFO Out dated connection ,size=0 + +2025-09-24 20:01:48,374 INFO Connection check task end + +2025-09-24 20:01:51,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:51,374 INFO Connection check task start + +2025-09-24 20:01:51,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:51,375 INFO Out dated connection ,size=0 + +2025-09-24 20:01:51,375 INFO Connection check task end + +2025-09-24 20:01:54,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:54,375 INFO Connection check task start + +2025-09-24 20:01:54,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:54,375 INFO Out dated connection ,size=0 + +2025-09-24 20:01:54,375 INFO Connection check task end + +2025-09-24 20:01:57,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:01:57,376 INFO Connection check task start + +2025-09-24 20:01:57,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:01:57,376 INFO Out dated connection ,size=0 + +2025-09-24 20:01:57,376 INFO Connection check task end + +2025-09-24 20:02:00,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:00,377 INFO Connection check task start + +2025-09-24 20:02:00,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:00,378 INFO Out dated connection ,size=0 + +2025-09-24 20:02:00,378 INFO Connection check task end + +2025-09-24 20:02:03,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:03,378 INFO Connection check task start + +2025-09-24 20:02:03,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:03,378 INFO Out dated connection ,size=0 + +2025-09-24 20:02:03,378 INFO Connection check task end + +2025-09-24 20:02:06,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:06,379 INFO Connection check task start + +2025-09-24 20:02:06,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:06,379 INFO Out dated connection ,size=0 + +2025-09-24 20:02:06,379 INFO Connection check task end + +2025-09-24 20:02:09,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:09,379 INFO Connection check task start + +2025-09-24 20:02:09,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:09,379 INFO Out dated connection ,size=0 + +2025-09-24 20:02:09,380 INFO Connection check task end + +2025-09-24 20:02:12,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:12,381 INFO Connection check task start + +2025-09-24 20:02:12,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:12,381 INFO Out dated connection ,size=0 + +2025-09-24 20:02:12,381 INFO Connection check task end + +2025-09-24 20:02:15,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:15,382 INFO Connection check task start + +2025-09-24 20:02:15,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:15,382 INFO Out dated connection ,size=0 + +2025-09-24 20:02:15,382 INFO Connection check task end + +2025-09-24 20:02:18,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:18,383 INFO Connection check task start + +2025-09-24 20:02:18,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:18,383 INFO Out dated connection ,size=0 + +2025-09-24 20:02:18,383 INFO Connection check task end + +2025-09-24 20:02:21,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:21,385 INFO Connection check task start + +2025-09-24 20:02:21,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:21,385 INFO Out dated connection ,size=0 + +2025-09-24 20:02:21,385 INFO Connection check task end + +2025-09-24 20:02:24,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:24,385 INFO Connection check task start + +2025-09-24 20:02:24,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:24,386 INFO Out dated connection ,size=0 + +2025-09-24 20:02:24,386 INFO Connection check task end + +2025-09-24 20:02:27,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:27,386 INFO Connection check task start + +2025-09-24 20:02:27,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:27,386 INFO Out dated connection ,size=0 + +2025-09-24 20:02:27,386 INFO Connection check task end + +2025-09-24 20:02:30,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:30,386 INFO Connection check task start + +2025-09-24 20:02:30,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:30,387 INFO Out dated connection ,size=0 + +2025-09-24 20:02:30,387 INFO Connection check task end + +2025-09-24 20:02:33,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:33,387 INFO Connection check task start + +2025-09-24 20:02:33,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:33,387 INFO Out dated connection ,size=0 + +2025-09-24 20:02:33,387 INFO Connection check task end + +2025-09-24 20:02:36,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:36,388 INFO Connection check task start + +2025-09-24 20:02:36,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:36,388 INFO Out dated connection ,size=0 + +2025-09-24 20:02:36,388 INFO Connection check task end + +2025-09-24 20:02:39,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:39,389 INFO Connection check task start + +2025-09-24 20:02:39,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:39,389 INFO Out dated connection ,size=0 + +2025-09-24 20:02:39,389 INFO Connection check task end + +2025-09-24 20:02:42,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:42,391 INFO Connection check task start + +2025-09-24 20:02:42,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:42,391 INFO Out dated connection ,size=0 + +2025-09-24 20:02:42,391 INFO Connection check task end + +2025-09-24 20:02:45,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:45,391 INFO Connection check task start + +2025-09-24 20:02:45,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:45,391 INFO Out dated connection ,size=0 + +2025-09-24 20:02:45,391 INFO Connection check task end + +2025-09-24 20:02:48,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:48,392 INFO Connection check task start + +2025-09-24 20:02:48,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:48,392 INFO Out dated connection ,size=0 + +2025-09-24 20:02:48,392 INFO Connection check task end + +2025-09-24 20:02:51,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:51,393 INFO Connection check task start + +2025-09-24 20:02:51,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:51,393 INFO Out dated connection ,size=0 + +2025-09-24 20:02:51,393 INFO Connection check task end + +2025-09-24 20:02:54,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:54,393 INFO Connection check task start + +2025-09-24 20:02:54,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:54,394 INFO Out dated connection ,size=0 + +2025-09-24 20:02:54,394 INFO Connection check task end + +2025-09-24 20:02:57,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:02:57,395 INFO Connection check task start + +2025-09-24 20:02:57,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:02:57,395 INFO Out dated connection ,size=0 + +2025-09-24 20:02:57,395 INFO Connection check task end + +2025-09-24 20:03:00,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:00,395 INFO Connection check task start + +2025-09-24 20:03:00,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:00,396 INFO Out dated connection ,size=0 + +2025-09-24 20:03:00,396 INFO Connection check task end + +2025-09-24 20:03:03,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:03,396 INFO Connection check task start + +2025-09-24 20:03:03,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:03,396 INFO Out dated connection ,size=0 + +2025-09-24 20:03:03,397 INFO Connection check task end + +2025-09-24 20:03:06,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:06,397 INFO Connection check task start + +2025-09-24 20:03:06,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:06,397 INFO Out dated connection ,size=0 + +2025-09-24 20:03:06,397 INFO Connection check task end + +2025-09-24 20:03:09,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:09,398 INFO Connection check task start + +2025-09-24 20:03:09,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:09,398 INFO Out dated connection ,size=0 + +2025-09-24 20:03:09,398 INFO Connection check task end + +2025-09-24 20:03:12,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:12,398 INFO Connection check task start + +2025-09-24 20:03:12,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:12,398 INFO Out dated connection ,size=0 + +2025-09-24 20:03:12,398 INFO Connection check task end + +2025-09-24 20:03:15,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:15,399 INFO Connection check task start + +2025-09-24 20:03:15,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:15,399 INFO Out dated connection ,size=0 + +2025-09-24 20:03:15,399 INFO Connection check task end + +2025-09-24 20:03:18,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:18,401 INFO Connection check task start + +2025-09-24 20:03:18,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:18,402 INFO Out dated connection ,size=0 + +2025-09-24 20:03:18,402 INFO Connection check task end + +2025-09-24 20:03:21,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:21,404 INFO Connection check task start + +2025-09-24 20:03:21,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:21,404 INFO Out dated connection ,size=0 + +2025-09-24 20:03:21,404 INFO Connection check task end + +2025-09-24 20:03:24,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:24,405 INFO Connection check task start + +2025-09-24 20:03:24,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:24,405 INFO Out dated connection ,size=0 + +2025-09-24 20:03:24,405 INFO Connection check task end + +2025-09-24 20:03:27,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:27,406 INFO Connection check task start + +2025-09-24 20:03:27,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:27,406 INFO Out dated connection ,size=0 + +2025-09-24 20:03:27,406 INFO Connection check task end + +2025-09-24 20:03:30,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:30,408 INFO Connection check task start + +2025-09-24 20:03:30,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:30,408 INFO Out dated connection ,size=0 + +2025-09-24 20:03:30,408 INFO Connection check task end + +2025-09-24 20:03:33,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:33,410 INFO Connection check task start + +2025-09-24 20:03:33,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:33,411 INFO Out dated connection ,size=0 + +2025-09-24 20:03:33,411 INFO Connection check task end + +2025-09-24 20:03:36,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:36,413 INFO Connection check task start + +2025-09-24 20:03:36,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:36,413 INFO Out dated connection ,size=0 + +2025-09-24 20:03:36,413 INFO Connection check task end + +2025-09-24 20:03:39,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:39,414 INFO Connection check task start + +2025-09-24 20:03:39,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:39,414 INFO Out dated connection ,size=0 + +2025-09-24 20:03:39,414 INFO Connection check task end + +2025-09-24 20:03:42,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:42,415 INFO Connection check task start + +2025-09-24 20:03:42,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:42,415 INFO Out dated connection ,size=0 + +2025-09-24 20:03:42,415 INFO Connection check task end + +2025-09-24 20:03:45,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:45,417 INFO Connection check task start + +2025-09-24 20:03:45,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:45,417 INFO Out dated connection ,size=0 + +2025-09-24 20:03:45,417 INFO Connection check task end + +2025-09-24 20:03:48,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:48,418 INFO Connection check task start + +2025-09-24 20:03:48,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:48,418 INFO Out dated connection ,size=0 + +2025-09-24 20:03:48,419 INFO Connection check task end + +2025-09-24 20:03:51,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:51,419 INFO Connection check task start + +2025-09-24 20:03:51,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:51,419 INFO Out dated connection ,size=0 + +2025-09-24 20:03:51,419 INFO Connection check task end + +2025-09-24 20:03:54,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:54,420 INFO Connection check task start + +2025-09-24 20:03:54,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:54,420 INFO Out dated connection ,size=0 + +2025-09-24 20:03:54,420 INFO Connection check task end + +2025-09-24 20:03:57,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:03:57,420 INFO Connection check task start + +2025-09-24 20:03:57,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:03:57,421 INFO Out dated connection ,size=0 + +2025-09-24 20:03:57,421 INFO Connection check task end + +2025-09-24 20:04:00,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:00,423 INFO Connection check task start + +2025-09-24 20:04:00,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:00,423 INFO Out dated connection ,size=0 + +2025-09-24 20:04:00,423 INFO Connection check task end + +2025-09-24 20:04:03,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:03,424 INFO Connection check task start + +2025-09-24 20:04:03,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:03,425 INFO Out dated connection ,size=0 + +2025-09-24 20:04:03,425 INFO Connection check task end + +2025-09-24 20:04:06,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:06,425 INFO Connection check task start + +2025-09-24 20:04:06,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:06,425 INFO Out dated connection ,size=0 + +2025-09-24 20:04:06,425 INFO Connection check task end + +2025-09-24 20:04:09,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:09,426 INFO Connection check task start + +2025-09-24 20:04:09,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:09,426 INFO Out dated connection ,size=0 + +2025-09-24 20:04:09,426 INFO Connection check task end + +2025-09-24 20:04:12,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:12,426 INFO Connection check task start + +2025-09-24 20:04:12,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:12,427 INFO Out dated connection ,size=0 + +2025-09-24 20:04:12,427 INFO Connection check task end + +2025-09-24 20:04:15,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:15,428 INFO Connection check task start + +2025-09-24 20:04:15,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:15,429 INFO Out dated connection ,size=0 + +2025-09-24 20:04:15,429 INFO Connection check task end + +2025-09-24 20:04:18,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:18,430 INFO Connection check task start + +2025-09-24 20:04:18,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:18,430 INFO Out dated connection ,size=0 + +2025-09-24 20:04:18,430 INFO Connection check task end + +2025-09-24 20:04:21,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:21,430 INFO Connection check task start + +2025-09-24 20:04:21,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:21,430 INFO Out dated connection ,size=0 + +2025-09-24 20:04:21,430 INFO Connection check task end + +2025-09-24 20:04:24,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:24,431 INFO Connection check task start + +2025-09-24 20:04:24,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:24,431 INFO Out dated connection ,size=0 + +2025-09-24 20:04:24,431 INFO Connection check task end + +2025-09-24 20:04:27,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:27,433 INFO Connection check task start + +2025-09-24 20:04:27,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:27,433 INFO Out dated connection ,size=0 + +2025-09-24 20:04:27,433 INFO Connection check task end + +2025-09-24 20:04:30,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:30,433 INFO Connection check task start + +2025-09-24 20:04:30,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:30,433 INFO Out dated connection ,size=0 + +2025-09-24 20:04:30,433 INFO Connection check task end + +2025-09-24 20:04:33,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:33,434 INFO Connection check task start + +2025-09-24 20:04:33,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:33,434 INFO Out dated connection ,size=0 + +2025-09-24 20:04:33,434 INFO Connection check task end + +2025-09-24 20:04:36,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:36,434 INFO Connection check task start + +2025-09-24 20:04:36,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:36,435 INFO Out dated connection ,size=0 + +2025-09-24 20:04:36,435 INFO Connection check task end + +2025-09-24 20:04:39,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:39,437 INFO Connection check task start + +2025-09-24 20:04:39,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:39,437 INFO Out dated connection ,size=0 + +2025-09-24 20:04:39,437 INFO Connection check task end + +2025-09-24 20:04:42,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:42,437 INFO Connection check task start + +2025-09-24 20:04:42,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:42,438 INFO Out dated connection ,size=0 + +2025-09-24 20:04:42,438 INFO Connection check task end + +2025-09-24 20:04:45,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:45,438 INFO Connection check task start + +2025-09-24 20:04:45,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:45,438 INFO Out dated connection ,size=0 + +2025-09-24 20:04:45,438 INFO Connection check task end + +2025-09-24 20:04:48,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:48,440 INFO Connection check task start + +2025-09-24 20:04:48,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:48,440 INFO Out dated connection ,size=0 + +2025-09-24 20:04:48,441 INFO Connection check task end + +2025-09-24 20:04:51,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:51,443 INFO Connection check task start + +2025-09-24 20:04:51,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:51,443 INFO Out dated connection ,size=0 + +2025-09-24 20:04:51,443 INFO Connection check task end + +2025-09-24 20:04:54,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:54,445 INFO Connection check task start + +2025-09-24 20:04:54,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:54,445 INFO Out dated connection ,size=0 + +2025-09-24 20:04:54,445 INFO Connection check task end + +2025-09-24 20:04:57,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:04:57,447 INFO Connection check task start + +2025-09-24 20:04:57,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:04:57,447 INFO Out dated connection ,size=0 + +2025-09-24 20:04:57,448 INFO Connection check task end + +2025-09-24 20:05:00,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:00,448 INFO Connection check task start + +2025-09-24 20:05:00,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:00,448 INFO Out dated connection ,size=0 + +2025-09-24 20:05:00,448 INFO Connection check task end + +2025-09-24 20:05:03,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:03,448 INFO Connection check task start + +2025-09-24 20:05:03,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:03,448 INFO Out dated connection ,size=0 + +2025-09-24 20:05:03,449 INFO Connection check task end + +2025-09-24 20:05:06,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:06,450 INFO Connection check task start + +2025-09-24 20:05:06,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:06,450 INFO Out dated connection ,size=0 + +2025-09-24 20:05:06,450 INFO Connection check task end + +2025-09-24 20:05:09,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:09,452 INFO Connection check task start + +2025-09-24 20:05:09,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:09,452 INFO Out dated connection ,size=0 + +2025-09-24 20:05:09,452 INFO Connection check task end + +2025-09-24 20:05:12,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:12,452 INFO Connection check task start + +2025-09-24 20:05:12,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:12,453 INFO Out dated connection ,size=0 + +2025-09-24 20:05:12,453 INFO Connection check task end + +2025-09-24 20:05:15,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:15,455 INFO Connection check task start + +2025-09-24 20:05:15,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:15,455 INFO Out dated connection ,size=0 + +2025-09-24 20:05:15,455 INFO Connection check task end + +2025-09-24 20:05:18,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:18,457 INFO Connection check task start + +2025-09-24 20:05:18,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:18,457 INFO Out dated connection ,size=0 + +2025-09-24 20:05:18,457 INFO Connection check task end + +2025-09-24 20:05:21,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:21,458 INFO Connection check task start + +2025-09-24 20:05:21,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:21,458 INFO Out dated connection ,size=0 + +2025-09-24 20:05:21,458 INFO Connection check task end + +2025-09-24 20:05:24,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:24,460 INFO Connection check task start + +2025-09-24 20:05:24,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:24,460 INFO Out dated connection ,size=0 + +2025-09-24 20:05:24,461 INFO Connection check task end + +2025-09-24 20:05:27,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:27,461 INFO Connection check task start + +2025-09-24 20:05:27,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:27,461 INFO Out dated connection ,size=0 + +2025-09-24 20:05:27,461 INFO Connection check task end + +2025-09-24 20:05:30,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:30,463 INFO Connection check task start + +2025-09-24 20:05:30,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:30,463 INFO Out dated connection ,size=0 + +2025-09-24 20:05:30,463 INFO Connection check task end + +2025-09-24 20:05:33,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:33,466 INFO Connection check task start + +2025-09-24 20:05:33,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:33,466 INFO Out dated connection ,size=0 + +2025-09-24 20:05:33,466 INFO Connection check task end + +2025-09-24 20:05:36,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:36,467 INFO Connection check task start + +2025-09-24 20:05:36,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:36,467 INFO Out dated connection ,size=0 + +2025-09-24 20:05:36,467 INFO Connection check task end + +2025-09-24 20:05:39,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:39,468 INFO Connection check task start + +2025-09-24 20:05:39,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:39,468 INFO Out dated connection ,size=0 + +2025-09-24 20:05:39,468 INFO Connection check task end + +2025-09-24 20:05:42,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:42,470 INFO Connection check task start + +2025-09-24 20:05:42,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:42,470 INFO Out dated connection ,size=0 + +2025-09-24 20:05:42,470 INFO Connection check task end + +2025-09-24 20:05:45,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:45,471 INFO Connection check task start + +2025-09-24 20:05:45,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:45,471 INFO Out dated connection ,size=0 + +2025-09-24 20:05:45,471 INFO Connection check task end + +2025-09-24 20:05:48,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:48,472 INFO Connection check task start + +2025-09-24 20:05:48,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:48,472 INFO Out dated connection ,size=0 + +2025-09-24 20:05:48,472 INFO Connection check task end + +2025-09-24 20:05:51,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:51,473 INFO Connection check task start + +2025-09-24 20:05:51,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:51,473 INFO Out dated connection ,size=0 + +2025-09-24 20:05:51,473 INFO Connection check task end + +2025-09-24 20:05:54,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:54,473 INFO Connection check task start + +2025-09-24 20:05:54,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:54,474 INFO Out dated connection ,size=0 + +2025-09-24 20:05:54,474 INFO Connection check task end + +2025-09-24 20:05:57,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:05:57,475 INFO Connection check task start + +2025-09-24 20:05:57,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:05:57,475 INFO Out dated connection ,size=0 + +2025-09-24 20:05:57,475 INFO Connection check task end + +2025-09-24 20:06:00,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:00,475 INFO Connection check task start + +2025-09-24 20:06:00,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:00,476 INFO Out dated connection ,size=0 + +2025-09-24 20:06:00,476 INFO Connection check task end + +2025-09-24 20:06:03,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:03,478 INFO Connection check task start + +2025-09-24 20:06:03,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:03,478 INFO Out dated connection ,size=0 + +2025-09-24 20:06:03,478 INFO Connection check task end + +2025-09-24 20:06:06,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:06,480 INFO Connection check task start + +2025-09-24 20:06:06,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:06,480 INFO Out dated connection ,size=0 + +2025-09-24 20:06:06,480 INFO Connection check task end + +2025-09-24 20:06:09,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:09,481 INFO Connection check task start + +2025-09-24 20:06:09,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:09,481 INFO Out dated connection ,size=0 + +2025-09-24 20:06:09,481 INFO Connection check task end + +2025-09-24 20:06:12,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:12,483 INFO Connection check task start + +2025-09-24 20:06:12,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:12,483 INFO Out dated connection ,size=0 + +2025-09-24 20:06:12,483 INFO Connection check task end + +2025-09-24 20:06:15,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:15,484 INFO Connection check task start + +2025-09-24 20:06:15,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:15,485 INFO Out dated connection ,size=0 + +2025-09-24 20:06:15,485 INFO Connection check task end + +2025-09-24 20:06:18,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:18,486 INFO Connection check task start + +2025-09-24 20:06:18,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:18,486 INFO Out dated connection ,size=0 + +2025-09-24 20:06:18,486 INFO Connection check task end + +2025-09-24 20:06:21,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:21,486 INFO Connection check task start + +2025-09-24 20:06:21,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:21,486 INFO Out dated connection ,size=0 + +2025-09-24 20:06:21,486 INFO Connection check task end + +2025-09-24 20:06:24,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:24,488 INFO Connection check task start + +2025-09-24 20:06:24,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:24,489 INFO Out dated connection ,size=0 + +2025-09-24 20:06:24,489 INFO Connection check task end + +2025-09-24 20:06:27,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:27,490 INFO Connection check task start + +2025-09-24 20:06:27,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:27,490 INFO Out dated connection ,size=0 + +2025-09-24 20:06:27,490 INFO Connection check task end + +2025-09-24 20:06:30,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:30,492 INFO Connection check task start + +2025-09-24 20:06:30,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:30,492 INFO Out dated connection ,size=0 + +2025-09-24 20:06:30,492 INFO Connection check task end + +2025-09-24 20:06:33,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:33,493 INFO Connection check task start + +2025-09-24 20:06:33,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:33,493 INFO Out dated connection ,size=0 + +2025-09-24 20:06:33,493 INFO Connection check task end + +2025-09-24 20:06:36,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:36,494 INFO Connection check task start + +2025-09-24 20:06:36,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:36,494 INFO Out dated connection ,size=0 + +2025-09-24 20:06:36,494 INFO Connection check task end + +2025-09-24 20:06:39,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:39,496 INFO Connection check task start + +2025-09-24 20:06:39,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:39,496 INFO Out dated connection ,size=0 + +2025-09-24 20:06:39,496 INFO Connection check task end + +2025-09-24 20:06:42,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:42,496 INFO Connection check task start + +2025-09-24 20:06:42,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:42,497 INFO Out dated connection ,size=0 + +2025-09-24 20:06:42,497 INFO Connection check task end + +2025-09-24 20:06:45,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:45,498 INFO Connection check task start + +2025-09-24 20:06:45,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:45,498 INFO Out dated connection ,size=0 + +2025-09-24 20:06:45,498 INFO Connection check task end + +2025-09-24 20:06:48,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:48,498 INFO Connection check task start + +2025-09-24 20:06:48,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:48,498 INFO Out dated connection ,size=0 + +2025-09-24 20:06:48,498 INFO Connection check task end + +2025-09-24 20:06:51,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:51,498 INFO Connection check task start + +2025-09-24 20:06:51,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:51,499 INFO Out dated connection ,size=0 + +2025-09-24 20:06:51,499 INFO Connection check task end + +2025-09-24 20:06:54,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:54,501 INFO Connection check task start + +2025-09-24 20:06:54,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:54,501 INFO Out dated connection ,size=0 + +2025-09-24 20:06:54,501 INFO Connection check task end + +2025-09-24 20:06:57,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:06:57,501 INFO Connection check task start + +2025-09-24 20:06:57,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:06:57,501 INFO Out dated connection ,size=0 + +2025-09-24 20:06:57,502 INFO Connection check task end + +2025-09-24 20:07:00,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:00,502 INFO Connection check task start + +2025-09-24 20:07:00,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:00,502 INFO Out dated connection ,size=0 + +2025-09-24 20:07:00,502 INFO Connection check task end + +2025-09-24 20:07:03,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:03,503 INFO Connection check task start + +2025-09-24 20:07:03,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:03,503 INFO Out dated connection ,size=0 + +2025-09-24 20:07:03,503 INFO Connection check task end + +2025-09-24 20:07:06,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:06,505 INFO Connection check task start + +2025-09-24 20:07:06,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:06,505 INFO Out dated connection ,size=0 + +2025-09-24 20:07:06,505 INFO Connection check task end + +2025-09-24 20:07:09,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:09,506 INFO Connection check task start + +2025-09-24 20:07:09,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:09,506 INFO Out dated connection ,size=0 + +2025-09-24 20:07:09,507 INFO Connection check task end + +2025-09-24 20:07:12,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:12,507 INFO Connection check task start + +2025-09-24 20:07:12,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:12,507 INFO Out dated connection ,size=0 + +2025-09-24 20:07:12,507 INFO Connection check task end + +2025-09-24 20:07:15,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:15,507 INFO Connection check task start + +2025-09-24 20:07:15,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:15,508 INFO Out dated connection ,size=0 + +2025-09-24 20:07:15,508 INFO Connection check task end + +2025-09-24 20:07:18,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:18,508 INFO Connection check task start + +2025-09-24 20:07:18,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:18,508 INFO Out dated connection ,size=0 + +2025-09-24 20:07:18,508 INFO Connection check task end + +2025-09-24 20:07:21,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:21,509 INFO Connection check task start + +2025-09-24 20:07:21,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:21,509 INFO Out dated connection ,size=0 + +2025-09-24 20:07:21,509 INFO Connection check task end + +2025-09-24 20:07:24,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:24,511 INFO Connection check task start + +2025-09-24 20:07:24,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:24,511 INFO Out dated connection ,size=0 + +2025-09-24 20:07:24,511 INFO Connection check task end + +2025-09-24 20:07:27,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:27,512 INFO Connection check task start + +2025-09-24 20:07:27,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:27,513 INFO Out dated connection ,size=0 + +2025-09-24 20:07:27,513 INFO Connection check task end + +2025-09-24 20:07:30,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:30,514 INFO Connection check task start + +2025-09-24 20:07:30,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:30,515 INFO Out dated connection ,size=0 + +2025-09-24 20:07:30,515 INFO Connection check task end + +2025-09-24 20:07:33,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:33,516 INFO Connection check task start + +2025-09-24 20:07:33,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:33,516 INFO Out dated connection ,size=0 + +2025-09-24 20:07:33,516 INFO Connection check task end + +2025-09-24 20:07:36,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:36,517 INFO Connection check task start + +2025-09-24 20:07:36,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:36,518 INFO Out dated connection ,size=0 + +2025-09-24 20:07:36,518 INFO Connection check task end + +2025-09-24 20:07:39,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:39,518 INFO Connection check task start + +2025-09-24 20:07:39,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:39,518 INFO Out dated connection ,size=0 + +2025-09-24 20:07:39,518 INFO Connection check task end + +2025-09-24 20:07:42,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:42,520 INFO Connection check task start + +2025-09-24 20:07:42,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:42,520 INFO Out dated connection ,size=0 + +2025-09-24 20:07:42,520 INFO Connection check task end + +2025-09-24 20:07:45,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:45,521 INFO Connection check task start + +2025-09-24 20:07:45,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:45,521 INFO Out dated connection ,size=0 + +2025-09-24 20:07:45,521 INFO Connection check task end + +2025-09-24 20:07:48,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:48,521 INFO Connection check task start + +2025-09-24 20:07:48,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:48,522 INFO Out dated connection ,size=0 + +2025-09-24 20:07:48,522 INFO Connection check task end + +2025-09-24 20:07:51,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:51,522 INFO Connection check task start + +2025-09-24 20:07:51,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:51,523 INFO Out dated connection ,size=0 + +2025-09-24 20:07:51,523 INFO Connection check task end + +2025-09-24 20:07:54,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:54,524 INFO Connection check task start + +2025-09-24 20:07:54,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:54,524 INFO Out dated connection ,size=0 + +2025-09-24 20:07:54,524 INFO Connection check task end + +2025-09-24 20:07:57,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:07:57,525 INFO Connection check task start + +2025-09-24 20:07:57,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:07:57,525 INFO Out dated connection ,size=0 + +2025-09-24 20:07:57,525 INFO Connection check task end + +2025-09-24 20:08:00,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:00,525 INFO Connection check task start + +2025-09-24 20:08:00,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:00,525 INFO Out dated connection ,size=0 + +2025-09-24 20:08:00,525 INFO Connection check task end + +2025-09-24 20:08:03,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:03,527 INFO Connection check task start + +2025-09-24 20:08:03,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:03,527 INFO Out dated connection ,size=0 + +2025-09-24 20:08:03,528 INFO Connection check task end + +2025-09-24 20:08:06,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:06,529 INFO Connection check task start + +2025-09-24 20:08:06,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:06,529 INFO Out dated connection ,size=0 + +2025-09-24 20:08:06,529 INFO Connection check task end + +2025-09-24 20:08:09,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:09,530 INFO Connection check task start + +2025-09-24 20:08:09,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:09,530 INFO Out dated connection ,size=0 + +2025-09-24 20:08:09,530 INFO Connection check task end + +2025-09-24 20:08:12,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:12,532 INFO Connection check task start + +2025-09-24 20:08:12,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:12,532 INFO Out dated connection ,size=0 + +2025-09-24 20:08:12,532 INFO Connection check task end + +2025-09-24 20:08:15,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:15,533 INFO Connection check task start + +2025-09-24 20:08:15,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:15,534 INFO Out dated connection ,size=0 + +2025-09-24 20:08:15,534 INFO Connection check task end + +2025-09-24 20:08:18,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:18,534 INFO Connection check task start + +2025-09-24 20:08:18,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:18,534 INFO Out dated connection ,size=0 + +2025-09-24 20:08:18,534 INFO Connection check task end + +2025-09-24 20:08:21,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:21,534 INFO Connection check task start + +2025-09-24 20:08:21,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:21,535 INFO Out dated connection ,size=0 + +2025-09-24 20:08:21,535 INFO Connection check task end + +2025-09-24 20:08:24,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:24,536 INFO Connection check task start + +2025-09-24 20:08:24,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:24,536 INFO Out dated connection ,size=0 + +2025-09-24 20:08:24,536 INFO Connection check task end + +2025-09-24 20:08:27,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:27,538 INFO Connection check task start + +2025-09-24 20:08:27,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:27,539 INFO Out dated connection ,size=0 + +2025-09-24 20:08:27,539 INFO Connection check task end + +2025-09-24 20:08:30,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:30,539 INFO Connection check task start + +2025-09-24 20:08:30,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:30,539 INFO Out dated connection ,size=0 + +2025-09-24 20:08:30,539 INFO Connection check task end + +2025-09-24 20:08:33,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:33,540 INFO Connection check task start + +2025-09-24 20:08:33,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:33,541 INFO Out dated connection ,size=0 + +2025-09-24 20:08:33,541 INFO Connection check task end + +2025-09-24 20:08:36,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:36,541 INFO Connection check task start + +2025-09-24 20:08:36,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:36,541 INFO Out dated connection ,size=0 + +2025-09-24 20:08:36,541 INFO Connection check task end + +2025-09-24 20:08:39,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:39,542 INFO Connection check task start + +2025-09-24 20:08:39,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:39,542 INFO Out dated connection ,size=0 + +2025-09-24 20:08:39,542 INFO Connection check task end + +2025-09-24 20:08:42,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:42,544 INFO Connection check task start + +2025-09-24 20:08:42,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:42,544 INFO Out dated connection ,size=0 + +2025-09-24 20:08:42,545 INFO Connection check task end + +2025-09-24 20:08:45,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:45,547 INFO Connection check task start + +2025-09-24 20:08:45,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:45,547 INFO Out dated connection ,size=0 + +2025-09-24 20:08:45,547 INFO Connection check task end + +2025-09-24 20:08:48,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:48,547 INFO Connection check task start + +2025-09-24 20:08:48,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:48,547 INFO Out dated connection ,size=0 + +2025-09-24 20:08:48,547 INFO Connection check task end + +2025-09-24 20:08:51,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:51,548 INFO Connection check task start + +2025-09-24 20:08:51,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:51,548 INFO Out dated connection ,size=0 + +2025-09-24 20:08:51,548 INFO Connection check task end + +2025-09-24 20:08:54,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:54,550 INFO Connection check task start + +2025-09-24 20:08:54,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:54,550 INFO Out dated connection ,size=0 + +2025-09-24 20:08:54,550 INFO Connection check task end + +2025-09-24 20:08:57,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:08:57,550 INFO Connection check task start + +2025-09-24 20:08:57,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:08:57,550 INFO Out dated connection ,size=0 + +2025-09-24 20:08:57,551 INFO Connection check task end + +2025-09-24 20:09:00,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:00,551 INFO Connection check task start + +2025-09-24 20:09:00,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:00,551 INFO Out dated connection ,size=0 + +2025-09-24 20:09:00,551 INFO Connection check task end + +2025-09-24 20:09:03,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:03,552 INFO Connection check task start + +2025-09-24 20:09:03,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:03,552 INFO Out dated connection ,size=0 + +2025-09-24 20:09:03,552 INFO Connection check task end + +2025-09-24 20:09:06,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:06,553 INFO Connection check task start + +2025-09-24 20:09:06,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:06,553 INFO Out dated connection ,size=0 + +2025-09-24 20:09:06,553 INFO Connection check task end + +2025-09-24 20:09:09,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:09,555 INFO Connection check task start + +2025-09-24 20:09:09,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:09,556 INFO Out dated connection ,size=0 + +2025-09-24 20:09:09,556 INFO Connection check task end + +2025-09-24 20:09:12,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:12,556 INFO Connection check task start + +2025-09-24 20:09:12,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:12,556 INFO Out dated connection ,size=0 + +2025-09-24 20:09:12,556 INFO Connection check task end + +2025-09-24 20:09:15,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:15,557 INFO Connection check task start + +2025-09-24 20:09:15,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:15,557 INFO Out dated connection ,size=0 + +2025-09-24 20:09:15,557 INFO Connection check task end + +2025-09-24 20:09:18,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:18,557 INFO Connection check task start + +2025-09-24 20:09:18,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:18,557 INFO Out dated connection ,size=0 + +2025-09-24 20:09:18,557 INFO Connection check task end + +2025-09-24 20:09:21,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:21,559 INFO Connection check task start + +2025-09-24 20:09:21,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:21,559 INFO Out dated connection ,size=0 + +2025-09-24 20:09:21,559 INFO Connection check task end + +2025-09-24 20:09:24,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:24,560 INFO Connection check task start + +2025-09-24 20:09:24,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:24,561 INFO Out dated connection ,size=0 + +2025-09-24 20:09:24,561 INFO Connection check task end + +2025-09-24 20:09:27,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:27,561 INFO Connection check task start + +2025-09-24 20:09:27,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:27,561 INFO Out dated connection ,size=0 + +2025-09-24 20:09:27,561 INFO Connection check task end + +2025-09-24 20:09:30,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:30,563 INFO Connection check task start + +2025-09-24 20:09:30,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:30,563 INFO Out dated connection ,size=0 + +2025-09-24 20:09:30,563 INFO Connection check task end + +2025-09-24 20:09:33,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:33,565 INFO Connection check task start + +2025-09-24 20:09:33,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:33,566 INFO Out dated connection ,size=0 + +2025-09-24 20:09:33,566 INFO Connection check task end + +2025-09-24 20:09:36,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:36,568 INFO Connection check task start + +2025-09-24 20:09:36,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:36,568 INFO Out dated connection ,size=0 + +2025-09-24 20:09:36,568 INFO Connection check task end + +2025-09-24 20:09:39,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:39,569 INFO Connection check task start + +2025-09-24 20:09:39,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:39,569 INFO Out dated connection ,size=0 + +2025-09-24 20:09:39,569 INFO Connection check task end + +2025-09-24 20:09:42,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:42,571 INFO Connection check task start + +2025-09-24 20:09:42,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:42,571 INFO Out dated connection ,size=0 + +2025-09-24 20:09:42,571 INFO Connection check task end + +2025-09-24 20:09:45,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:45,572 INFO Connection check task start + +2025-09-24 20:09:45,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:45,572 INFO Out dated connection ,size=0 + +2025-09-24 20:09:45,572 INFO Connection check task end + +2025-09-24 20:09:48,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:48,573 INFO Connection check task start + +2025-09-24 20:09:48,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:48,573 INFO Out dated connection ,size=0 + +2025-09-24 20:09:48,573 INFO Connection check task end + +2025-09-24 20:09:51,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:51,573 INFO Connection check task start + +2025-09-24 20:09:51,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:51,573 INFO Out dated connection ,size=0 + +2025-09-24 20:09:51,574 INFO Connection check task end + +2025-09-24 20:09:54,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:54,576 INFO Connection check task start + +2025-09-24 20:09:54,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:54,576 INFO Out dated connection ,size=0 + +2025-09-24 20:09:54,576 INFO Connection check task end + +2025-09-24 20:09:57,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:09:57,578 INFO Connection check task start + +2025-09-24 20:09:57,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:09:57,578 INFO Out dated connection ,size=0 + +2025-09-24 20:09:57,578 INFO Connection check task end + +2025-09-24 20:10:00,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:00,580 INFO Connection check task start + +2025-09-24 20:10:00,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:00,580 INFO Out dated connection ,size=0 + +2025-09-24 20:10:00,580 INFO Connection check task end + +2025-09-24 20:10:03,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:03,582 INFO Connection check task start + +2025-09-24 20:10:03,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:03,582 INFO Out dated connection ,size=0 + +2025-09-24 20:10:03,582 INFO Connection check task end + +2025-09-24 20:10:06,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:06,583 INFO Connection check task start + +2025-09-24 20:10:06,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:06,583 INFO Out dated connection ,size=0 + +2025-09-24 20:10:06,583 INFO Connection check task end + +2025-09-24 20:10:09,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:09,585 INFO Connection check task start + +2025-09-24 20:10:09,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:09,585 INFO Out dated connection ,size=0 + +2025-09-24 20:10:09,586 INFO Connection check task end + +2025-09-24 20:10:12,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:12,586 INFO Connection check task start + +2025-09-24 20:10:12,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:12,586 INFO Out dated connection ,size=0 + +2025-09-24 20:10:12,586 INFO Connection check task end + +2025-09-24 20:10:15,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:15,588 INFO Connection check task start + +2025-09-24 20:10:15,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:15,589 INFO Out dated connection ,size=0 + +2025-09-24 20:10:15,589 INFO Connection check task end + +2025-09-24 20:10:18,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:18,590 INFO Connection check task start + +2025-09-24 20:10:18,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:18,590 INFO Out dated connection ,size=0 + +2025-09-24 20:10:18,590 INFO Connection check task end + +2025-09-24 20:10:21,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:21,592 INFO Connection check task start + +2025-09-24 20:10:21,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:21,592 INFO Out dated connection ,size=0 + +2025-09-24 20:10:21,592 INFO Connection check task end + +2025-09-24 20:10:24,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:24,593 INFO Connection check task start + +2025-09-24 20:10:24,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:24,593 INFO Out dated connection ,size=0 + +2025-09-24 20:10:24,593 INFO Connection check task end + +2025-09-24 20:10:27,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:27,593 INFO Connection check task start + +2025-09-24 20:10:27,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:27,593 INFO Out dated connection ,size=0 + +2025-09-24 20:10:27,594 INFO Connection check task end + +2025-09-24 20:10:30,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:30,595 INFO Connection check task start + +2025-09-24 20:10:30,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:30,595 INFO Out dated connection ,size=0 + +2025-09-24 20:10:30,595 INFO Connection check task end + +2025-09-24 20:10:33,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:33,597 INFO Connection check task start + +2025-09-24 20:10:33,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:33,597 INFO Out dated connection ,size=0 + +2025-09-24 20:10:33,597 INFO Connection check task end + +2025-09-24 20:10:36,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:36,599 INFO Connection check task start + +2025-09-24 20:10:36,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:36,599 INFO Out dated connection ,size=0 + +2025-09-24 20:10:36,599 INFO Connection check task end + +2025-09-24 20:10:39,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:39,599 INFO Connection check task start + +2025-09-24 20:10:39,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:39,600 INFO Out dated connection ,size=0 + +2025-09-24 20:10:39,600 INFO Connection check task end + +2025-09-24 20:10:42,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:42,601 INFO Connection check task start + +2025-09-24 20:10:42,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:42,601 INFO Out dated connection ,size=0 + +2025-09-24 20:10:42,601 INFO Connection check task end + +2025-09-24 20:10:45,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:45,601 INFO Connection check task start + +2025-09-24 20:10:45,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:45,602 INFO Out dated connection ,size=0 + +2025-09-24 20:10:45,602 INFO Connection check task end + +2025-09-24 20:10:48,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:48,603 INFO Connection check task start + +2025-09-24 20:10:48,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:48,603 INFO Out dated connection ,size=0 + +2025-09-24 20:10:48,603 INFO Connection check task end + +2025-09-24 20:10:51,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:51,603 INFO Connection check task start + +2025-09-24 20:10:51,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:51,603 INFO Out dated connection ,size=0 + +2025-09-24 20:10:51,603 INFO Connection check task end + +2025-09-24 20:10:54,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:54,604 INFO Connection check task start + +2025-09-24 20:10:54,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:54,604 INFO Out dated connection ,size=0 + +2025-09-24 20:10:54,604 INFO Connection check task end + +2025-09-24 20:10:57,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:10:57,605 INFO Connection check task start + +2025-09-24 20:10:57,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:10:57,605 INFO Out dated connection ,size=0 + +2025-09-24 20:10:57,605 INFO Connection check task end + +2025-09-24 20:11:00,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:00,607 INFO Connection check task start + +2025-09-24 20:11:00,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:00,607 INFO Out dated connection ,size=0 + +2025-09-24 20:11:00,608 INFO Connection check task end + +2025-09-24 20:11:03,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:03,608 INFO Connection check task start + +2025-09-24 20:11:03,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:03,608 INFO Out dated connection ,size=0 + +2025-09-24 20:11:03,608 INFO Connection check task end + +2025-09-24 20:11:06,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:06,608 INFO Connection check task start + +2025-09-24 20:11:06,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:06,609 INFO Out dated connection ,size=0 + +2025-09-24 20:11:06,609 INFO Connection check task end + +2025-09-24 20:11:09,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:09,610 INFO Connection check task start + +2025-09-24 20:11:09,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:09,610 INFO Out dated connection ,size=0 + +2025-09-24 20:11:09,610 INFO Connection check task end + +2025-09-24 20:11:12,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:12,611 INFO Connection check task start + +2025-09-24 20:11:12,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:12,611 INFO Out dated connection ,size=0 + +2025-09-24 20:11:12,611 INFO Connection check task end + +2025-09-24 20:11:15,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:15,613 INFO Connection check task start + +2025-09-24 20:11:15,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:15,613 INFO Out dated connection ,size=0 + +2025-09-24 20:11:15,613 INFO Connection check task end + +2025-09-24 20:11:18,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:18,615 INFO Connection check task start + +2025-09-24 20:11:18,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:18,615 INFO Out dated connection ,size=0 + +2025-09-24 20:11:18,615 INFO Connection check task end + +2025-09-24 20:11:21,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:21,617 INFO Connection check task start + +2025-09-24 20:11:21,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:21,617 INFO Out dated connection ,size=0 + +2025-09-24 20:11:21,617 INFO Connection check task end + +2025-09-24 20:11:24,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:24,617 INFO Connection check task start + +2025-09-24 20:11:24,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:24,618 INFO Out dated connection ,size=0 + +2025-09-24 20:11:24,618 INFO Connection check task end + +2025-09-24 20:11:27,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:27,618 INFO Connection check task start + +2025-09-24 20:11:27,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:27,618 INFO Out dated connection ,size=0 + +2025-09-24 20:11:27,618 INFO Connection check task end + +2025-09-24 20:11:30,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:30,619 INFO Connection check task start + +2025-09-24 20:11:30,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:30,620 INFO Out dated connection ,size=0 + +2025-09-24 20:11:30,620 INFO Connection check task end + +2025-09-24 20:11:33,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:33,620 INFO Connection check task start + +2025-09-24 20:11:33,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:33,620 INFO Out dated connection ,size=0 + +2025-09-24 20:11:33,620 INFO Connection check task end + +2025-09-24 20:11:36,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:36,621 INFO Connection check task start + +2025-09-24 20:11:36,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:36,621 INFO Out dated connection ,size=0 + +2025-09-24 20:11:36,621 INFO Connection check task end + +2025-09-24 20:11:39,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:39,621 INFO Connection check task start + +2025-09-24 20:11:39,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:39,621 INFO Out dated connection ,size=0 + +2025-09-24 20:11:39,621 INFO Connection check task end + +2025-09-24 20:11:42,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:42,622 INFO Connection check task start + +2025-09-24 20:11:42,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:42,622 INFO Out dated connection ,size=0 + +2025-09-24 20:11:42,622 INFO Connection check task end + +2025-09-24 20:11:45,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:45,623 INFO Connection check task start + +2025-09-24 20:11:45,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:45,623 INFO Out dated connection ,size=0 + +2025-09-24 20:11:45,623 INFO Connection check task end + +2025-09-24 20:11:48,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:48,624 INFO Connection check task start + +2025-09-24 20:11:48,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:48,624 INFO Out dated connection ,size=0 + +2025-09-24 20:11:48,624 INFO Connection check task end + +2025-09-24 20:11:51,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:51,626 INFO Connection check task start + +2025-09-24 20:11:51,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:51,626 INFO Out dated connection ,size=0 + +2025-09-24 20:11:51,626 INFO Connection check task end + +2025-09-24 20:11:54,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:54,627 INFO Connection check task start + +2025-09-24 20:11:54,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:54,627 INFO Out dated connection ,size=0 + +2025-09-24 20:11:54,627 INFO Connection check task end + +2025-09-24 20:11:57,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:11:57,627 INFO Connection check task start + +2025-09-24 20:11:57,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:11:57,628 INFO Out dated connection ,size=0 + +2025-09-24 20:11:57,628 INFO Connection check task end + +2025-09-24 20:12:00,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:00,628 INFO Connection check task start + +2025-09-24 20:12:00,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:00,628 INFO Out dated connection ,size=0 + +2025-09-24 20:12:00,629 INFO Connection check task end + +2025-09-24 20:12:03,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:03,630 INFO Connection check task start + +2025-09-24 20:12:03,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:03,630 INFO Out dated connection ,size=0 + +2025-09-24 20:12:03,630 INFO Connection check task end + +2025-09-24 20:12:06,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:06,630 INFO Connection check task start + +2025-09-24 20:12:06,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:06,630 INFO Out dated connection ,size=0 + +2025-09-24 20:12:06,630 INFO Connection check task end + +2025-09-24 20:12:09,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:09,631 INFO Connection check task start + +2025-09-24 20:12:09,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:09,632 INFO Out dated connection ,size=0 + +2025-09-24 20:12:09,632 INFO Connection check task end + +2025-09-24 20:12:12,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:12,632 INFO Connection check task start + +2025-09-24 20:12:12,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:12,632 INFO Out dated connection ,size=0 + +2025-09-24 20:12:12,632 INFO Connection check task end + +2025-09-24 20:12:15,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:15,633 INFO Connection check task start + +2025-09-24 20:12:15,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:15,633 INFO Out dated connection ,size=0 + +2025-09-24 20:12:15,633 INFO Connection check task end + +2025-09-24 20:12:18,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:18,635 INFO Connection check task start + +2025-09-24 20:12:18,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:18,635 INFO Out dated connection ,size=0 + +2025-09-24 20:12:18,635 INFO Connection check task end + +2025-09-24 20:12:21,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:21,637 INFO Connection check task start + +2025-09-24 20:12:21,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:21,637 INFO Out dated connection ,size=0 + +2025-09-24 20:12:21,637 INFO Connection check task end + +2025-09-24 20:12:24,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:24,639 INFO Connection check task start + +2025-09-24 20:12:24,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:24,639 INFO Out dated connection ,size=0 + +2025-09-24 20:12:24,639 INFO Connection check task end + +2025-09-24 20:12:27,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:27,641 INFO Connection check task start + +2025-09-24 20:12:27,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:27,641 INFO Out dated connection ,size=0 + +2025-09-24 20:12:27,641 INFO Connection check task end + +2025-09-24 20:12:30,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:30,642 INFO Connection check task start + +2025-09-24 20:12:30,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:30,642 INFO Out dated connection ,size=0 + +2025-09-24 20:12:30,642 INFO Connection check task end + +2025-09-24 20:12:33,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:33,642 INFO Connection check task start + +2025-09-24 20:12:33,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:33,643 INFO Out dated connection ,size=0 + +2025-09-24 20:12:33,643 INFO Connection check task end + +2025-09-24 20:12:36,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:36,643 INFO Connection check task start + +2025-09-24 20:12:36,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:36,657 INFO Out dated connection ,size=0 + +2025-09-24 20:12:36,657 INFO Connection check task end + +2025-09-24 20:12:39,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:39,657 INFO Connection check task start + +2025-09-24 20:12:39,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:39,657 INFO Out dated connection ,size=0 + +2025-09-24 20:12:39,657 INFO Connection check task end + +2025-09-24 20:12:42,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:42,659 INFO Connection check task start + +2025-09-24 20:12:42,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:42,659 INFO Out dated connection ,size=0 + +2025-09-24 20:12:42,659 INFO Connection check task end + +2025-09-24 20:12:45,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:45,660 INFO Connection check task start + +2025-09-24 20:12:45,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:45,660 INFO Out dated connection ,size=0 + +2025-09-24 20:12:45,660 INFO Connection check task end + +2025-09-24 20:12:48,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:48,662 INFO Connection check task start + +2025-09-24 20:12:48,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:48,663 INFO Out dated connection ,size=0 + +2025-09-24 20:12:48,663 INFO Connection check task end + +2025-09-24 20:12:51,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:51,663 INFO Connection check task start + +2025-09-24 20:12:51,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:51,663 INFO Out dated connection ,size=0 + +2025-09-24 20:12:51,663 INFO Connection check task end + +2025-09-24 20:12:54,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:54,663 INFO Connection check task start + +2025-09-24 20:12:54,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:54,664 INFO Out dated connection ,size=0 + +2025-09-24 20:12:54,664 INFO Connection check task end + +2025-09-24 20:12:57,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:12:57,664 INFO Connection check task start + +2025-09-24 20:12:57,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:12:57,664 INFO Out dated connection ,size=0 + +2025-09-24 20:12:57,664 INFO Connection check task end + +2025-09-24 20:13:00,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:00,664 INFO Connection check task start + +2025-09-24 20:13:00,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:00,664 INFO Out dated connection ,size=0 + +2025-09-24 20:13:00,665 INFO Connection check task end + +2025-09-24 20:13:03,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:03,665 INFO Connection check task start + +2025-09-24 20:13:03,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:03,665 INFO Out dated connection ,size=0 + +2025-09-24 20:13:03,665 INFO Connection check task end + +2025-09-24 20:13:06,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:06,666 INFO Connection check task start + +2025-09-24 20:13:06,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:06,666 INFO Out dated connection ,size=0 + +2025-09-24 20:13:06,666 INFO Connection check task end + +2025-09-24 20:13:09,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:09,668 INFO Connection check task start + +2025-09-24 20:13:09,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:09,669 INFO Out dated connection ,size=0 + +2025-09-24 20:13:09,669 INFO Connection check task end + +2025-09-24 20:13:12,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:12,670 INFO Connection check task start + +2025-09-24 20:13:12,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:12,670 INFO Out dated connection ,size=0 + +2025-09-24 20:13:12,670 INFO Connection check task end + +2025-09-24 20:13:15,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:15,671 INFO Connection check task start + +2025-09-24 20:13:15,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:15,671 INFO Out dated connection ,size=0 + +2025-09-24 20:13:15,671 INFO Connection check task end + +2025-09-24 20:13:18,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:18,674 INFO Connection check task start + +2025-09-24 20:13:18,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:18,674 INFO Out dated connection ,size=0 + +2025-09-24 20:13:18,674 INFO Connection check task end + +2025-09-24 20:13:21,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:21,674 INFO Connection check task start + +2025-09-24 20:13:21,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:21,674 INFO Out dated connection ,size=0 + +2025-09-24 20:13:21,674 INFO Connection check task end + +2025-09-24 20:13:24,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:24,675 INFO Connection check task start + +2025-09-24 20:13:24,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:24,675 INFO Out dated connection ,size=0 + +2025-09-24 20:13:24,675 INFO Connection check task end + +2025-09-24 20:13:27,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:27,676 INFO Connection check task start + +2025-09-24 20:13:27,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:27,677 INFO Out dated connection ,size=0 + +2025-09-24 20:13:27,677 INFO Connection check task end + +2025-09-24 20:13:30,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:30,678 INFO Connection check task start + +2025-09-24 20:13:30,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:30,678 INFO Out dated connection ,size=0 + +2025-09-24 20:13:30,678 INFO Connection check task end + +2025-09-24 20:13:33,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:33,679 INFO Connection check task start + +2025-09-24 20:13:33,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:33,679 INFO Out dated connection ,size=0 + +2025-09-24 20:13:33,679 INFO Connection check task end + +2025-09-24 20:13:36,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:36,680 INFO Connection check task start + +2025-09-24 20:13:36,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:36,680 INFO Out dated connection ,size=0 + +2025-09-24 20:13:36,680 INFO Connection check task end + +2025-09-24 20:13:39,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:39,681 INFO Connection check task start + +2025-09-24 20:13:39,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:39,681 INFO Out dated connection ,size=0 + +2025-09-24 20:13:39,682 INFO Connection check task end + +2025-09-24 20:13:42,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:42,682 INFO Connection check task start + +2025-09-24 20:13:42,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:42,682 INFO Out dated connection ,size=0 + +2025-09-24 20:13:42,682 INFO Connection check task end + +2025-09-24 20:13:45,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:45,684 INFO Connection check task start + +2025-09-24 20:13:45,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:45,684 INFO Out dated connection ,size=0 + +2025-09-24 20:13:45,684 INFO Connection check task end + +2025-09-24 20:13:48,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:48,686 INFO Connection check task start + +2025-09-24 20:13:48,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:48,686 INFO Out dated connection ,size=0 + +2025-09-24 20:13:48,686 INFO Connection check task end + +2025-09-24 20:13:51,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:51,688 INFO Connection check task start + +2025-09-24 20:13:51,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:51,688 INFO Out dated connection ,size=0 + +2025-09-24 20:13:51,688 INFO Connection check task end + +2025-09-24 20:13:54,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:54,690 INFO Connection check task start + +2025-09-24 20:13:54,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:54,691 INFO Out dated connection ,size=0 + +2025-09-24 20:13:54,691 INFO Connection check task end + +2025-09-24 20:13:57,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:13:57,691 INFO Connection check task start + +2025-09-24 20:13:57,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:13:57,691 INFO Out dated connection ,size=0 + +2025-09-24 20:13:57,691 INFO Connection check task end + +2025-09-24 20:14:00,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:00,692 INFO Connection check task start + +2025-09-24 20:14:00,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:00,692 INFO Out dated connection ,size=0 + +2025-09-24 20:14:00,692 INFO Connection check task end + +2025-09-24 20:14:03,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:03,693 INFO Connection check task start + +2025-09-24 20:14:03,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:03,693 INFO Out dated connection ,size=0 + +2025-09-24 20:14:03,693 INFO Connection check task end + +2025-09-24 20:14:06,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:06,694 INFO Connection check task start + +2025-09-24 20:14:06,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:06,694 INFO Out dated connection ,size=0 + +2025-09-24 20:14:06,694 INFO Connection check task end + +2025-09-24 20:14:09,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:09,696 INFO Connection check task start + +2025-09-24 20:14:09,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:09,696 INFO Out dated connection ,size=0 + +2025-09-24 20:14:09,696 INFO Connection check task end + +2025-09-24 20:14:12,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:12,698 INFO Connection check task start + +2025-09-24 20:14:12,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:12,698 INFO Out dated connection ,size=0 + +2025-09-24 20:14:12,698 INFO Connection check task end + +2025-09-24 20:14:15,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:15,699 INFO Connection check task start + +2025-09-24 20:14:15,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:15,699 INFO Out dated connection ,size=0 + +2025-09-24 20:14:15,699 INFO Connection check task end + +2025-09-24 20:14:18,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:18,699 INFO Connection check task start + +2025-09-24 20:14:18,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:18,700 INFO Out dated connection ,size=0 + +2025-09-24 20:14:18,700 INFO Connection check task end + +2025-09-24 20:14:21,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:21,700 INFO Connection check task start + +2025-09-24 20:14:21,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:21,700 INFO Out dated connection ,size=0 + +2025-09-24 20:14:21,700 INFO Connection check task end + +2025-09-24 20:14:24,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:24,700 INFO Connection check task start + +2025-09-24 20:14:24,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:24,700 INFO Out dated connection ,size=0 + +2025-09-24 20:14:24,700 INFO Connection check task end + +2025-09-24 20:14:27,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:27,701 INFO Connection check task start + +2025-09-24 20:14:27,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:27,701 INFO Out dated connection ,size=0 + +2025-09-24 20:14:27,701 INFO Connection check task end + +2025-09-24 20:14:30,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:30,702 INFO Connection check task start + +2025-09-24 20:14:30,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:30,702 INFO Out dated connection ,size=0 + +2025-09-24 20:14:30,702 INFO Connection check task end + +2025-09-24 20:14:33,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:33,702 INFO Connection check task start + +2025-09-24 20:14:33,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:33,702 INFO Out dated connection ,size=0 + +2025-09-24 20:14:33,702 INFO Connection check task end + +2025-09-24 20:14:36,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:36,703 INFO Connection check task start + +2025-09-24 20:14:36,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:36,703 INFO Out dated connection ,size=0 + +2025-09-24 20:14:36,703 INFO Connection check task end + +2025-09-24 20:14:39,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:39,703 INFO Connection check task start + +2025-09-24 20:14:39,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:39,704 INFO Out dated connection ,size=0 + +2025-09-24 20:14:39,704 INFO Connection check task end + +2025-09-24 20:14:42,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:42,704 INFO Connection check task start + +2025-09-24 20:14:42,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:42,704 INFO Out dated connection ,size=0 + +2025-09-24 20:14:42,704 INFO Connection check task end + +2025-09-24 20:14:45,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:45,705 INFO Connection check task start + +2025-09-24 20:14:45,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:45,705 INFO Out dated connection ,size=0 + +2025-09-24 20:14:45,705 INFO Connection check task end + +2025-09-24 20:14:48,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:48,705 INFO Connection check task start + +2025-09-24 20:14:48,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:48,705 INFO Out dated connection ,size=0 + +2025-09-24 20:14:48,705 INFO Connection check task end + +2025-09-24 20:14:51,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:51,705 INFO Connection check task start + +2025-09-24 20:14:51,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:51,706 INFO Out dated connection ,size=0 + +2025-09-24 20:14:51,706 INFO Connection check task end + +2025-09-24 20:14:54,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:54,706 INFO Connection check task start + +2025-09-24 20:14:54,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:54,706 INFO Out dated connection ,size=0 + +2025-09-24 20:14:54,706 INFO Connection check task end + +2025-09-24 20:14:57,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:14:57,707 INFO Connection check task start + +2025-09-24 20:14:57,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:14:57,707 INFO Out dated connection ,size=0 + +2025-09-24 20:14:57,707 INFO Connection check task end + +2025-09-24 20:15:00,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:00,707 INFO Connection check task start + +2025-09-24 20:15:00,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:00,707 INFO Out dated connection ,size=0 + +2025-09-24 20:15:00,707 INFO Connection check task end + +2025-09-24 20:15:03,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:03,707 INFO Connection check task start + +2025-09-24 20:15:03,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:03,708 INFO Out dated connection ,size=0 + +2025-09-24 20:15:03,708 INFO Connection check task end + +2025-09-24 20:15:06,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:06,710 INFO Connection check task start + +2025-09-24 20:15:06,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:06,710 INFO Out dated connection ,size=0 + +2025-09-24 20:15:06,710 INFO Connection check task end + +2025-09-24 20:15:09,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:09,710 INFO Connection check task start + +2025-09-24 20:15:09,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:09,711 INFO Out dated connection ,size=0 + +2025-09-24 20:15:09,711 INFO Connection check task end + +2025-09-24 20:15:12,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:12,712 INFO Connection check task start + +2025-09-24 20:15:12,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:12,713 INFO Out dated connection ,size=0 + +2025-09-24 20:15:12,713 INFO Connection check task end + +2025-09-24 20:15:15,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:15,713 INFO Connection check task start + +2025-09-24 20:15:15,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:15,713 INFO Out dated connection ,size=0 + +2025-09-24 20:15:15,713 INFO Connection check task end + +2025-09-24 20:15:18,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:18,713 INFO Connection check task start + +2025-09-24 20:15:18,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:18,714 INFO Out dated connection ,size=0 + +2025-09-24 20:15:18,714 INFO Connection check task end + +2025-09-24 20:15:21,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:21,714 INFO Connection check task start + +2025-09-24 20:15:21,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:21,714 INFO Out dated connection ,size=0 + +2025-09-24 20:15:21,714 INFO Connection check task end + +2025-09-24 20:15:24,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:24,715 INFO Connection check task start + +2025-09-24 20:15:24,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:24,715 INFO Out dated connection ,size=0 + +2025-09-24 20:15:24,715 INFO Connection check task end + +2025-09-24 20:15:27,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:27,717 INFO Connection check task start + +2025-09-24 20:15:27,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:27,717 INFO Out dated connection ,size=0 + +2025-09-24 20:15:27,717 INFO Connection check task end + +2025-09-24 20:15:30,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:30,718 INFO Connection check task start + +2025-09-24 20:15:30,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:30,718 INFO Out dated connection ,size=0 + +2025-09-24 20:15:30,718 INFO Connection check task end + +2025-09-24 20:15:33,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:33,718 INFO Connection check task start + +2025-09-24 20:15:33,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:33,718 INFO Out dated connection ,size=0 + +2025-09-24 20:15:33,719 INFO Connection check task end + +2025-09-24 20:15:36,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:36,719 INFO Connection check task start + +2025-09-24 20:15:36,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:36,719 INFO Out dated connection ,size=0 + +2025-09-24 20:15:36,719 INFO Connection check task end + +2025-09-24 20:15:39,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:39,720 INFO Connection check task start + +2025-09-24 20:15:39,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:39,721 INFO Out dated connection ,size=0 + +2025-09-24 20:15:39,721 INFO Connection check task end + +2025-09-24 20:15:42,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:42,721 INFO Connection check task start + +2025-09-24 20:15:42,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:42,722 INFO Out dated connection ,size=0 + +2025-09-24 20:15:42,722 INFO Connection check task end + +2025-09-24 20:15:45,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:45,723 INFO Connection check task start + +2025-09-24 20:15:45,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:45,723 INFO Out dated connection ,size=0 + +2025-09-24 20:15:45,723 INFO Connection check task end + +2025-09-24 20:15:48,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:48,725 INFO Connection check task start + +2025-09-24 20:15:48,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:48,725 INFO Out dated connection ,size=0 + +2025-09-24 20:15:48,725 INFO Connection check task end + +2025-09-24 20:15:51,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:51,727 INFO Connection check task start + +2025-09-24 20:15:51,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:51,745 INFO Out dated connection ,size=0 + +2025-09-24 20:15:51,745 INFO Connection check task end + +2025-09-24 20:15:54,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:54,745 INFO Connection check task start + +2025-09-24 20:15:54,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:54,746 INFO Out dated connection ,size=0 + +2025-09-24 20:15:54,746 INFO Connection check task end + +2025-09-24 20:15:57,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:15:57,746 INFO Connection check task start + +2025-09-24 20:15:57,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:15:57,746 INFO Out dated connection ,size=0 + +2025-09-24 20:15:57,747 INFO Connection check task end + +2025-09-24 20:16:00,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:00,749 INFO Connection check task start + +2025-09-24 20:16:00,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:00,749 INFO Out dated connection ,size=0 + +2025-09-24 20:16:00,749 INFO Connection check task end + +2025-09-24 20:16:03,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:03,750 INFO Connection check task start + +2025-09-24 20:16:03,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:03,750 INFO Out dated connection ,size=0 + +2025-09-24 20:16:03,750 INFO Connection check task end + +2025-09-24 20:16:06,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:06,750 INFO Connection check task start + +2025-09-24 20:16:06,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:06,750 INFO Out dated connection ,size=0 + +2025-09-24 20:16:06,750 INFO Connection check task end + +2025-09-24 20:16:09,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:09,751 INFO Connection check task start + +2025-09-24 20:16:09,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:09,751 INFO Out dated connection ,size=0 + +2025-09-24 20:16:09,751 INFO Connection check task end + +2025-09-24 20:16:12,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:12,752 INFO Connection check task start + +2025-09-24 20:16:12,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:12,752 INFO Out dated connection ,size=0 + +2025-09-24 20:16:12,752 INFO Connection check task end + +2025-09-24 20:16:15,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:15,752 INFO Connection check task start + +2025-09-24 20:16:15,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:15,753 INFO Out dated connection ,size=0 + +2025-09-24 20:16:15,753 INFO Connection check task end + +2025-09-24 20:16:18,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:18,753 INFO Connection check task start + +2025-09-24 20:16:18,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:18,753 INFO Out dated connection ,size=0 + +2025-09-24 20:16:18,753 INFO Connection check task end + +2025-09-24 20:16:21,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:21,753 INFO Connection check task start + +2025-09-24 20:16:21,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:21,754 INFO Out dated connection ,size=0 + +2025-09-24 20:16:21,754 INFO Connection check task end + +2025-09-24 20:16:24,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:24,754 INFO Connection check task start + +2025-09-24 20:16:24,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:24,754 INFO Out dated connection ,size=0 + +2025-09-24 20:16:24,754 INFO Connection check task end + +2025-09-24 20:16:27,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:27,755 INFO Connection check task start + +2025-09-24 20:16:27,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:27,755 INFO Out dated connection ,size=0 + +2025-09-24 20:16:27,755 INFO Connection check task end + +2025-09-24 20:16:30,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:30,757 INFO Connection check task start + +2025-09-24 20:16:30,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:30,758 INFO Out dated connection ,size=0 + +2025-09-24 20:16:30,758 INFO Connection check task end + +2025-09-24 20:16:33,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:33,759 INFO Connection check task start + +2025-09-24 20:16:33,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:33,759 INFO Out dated connection ,size=0 + +2025-09-24 20:16:33,759 INFO Connection check task end + +2025-09-24 20:16:36,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:36,761 INFO Connection check task start + +2025-09-24 20:16:36,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:36,761 INFO Out dated connection ,size=0 + +2025-09-24 20:16:36,761 INFO Connection check task end + +2025-09-24 20:16:39,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:39,762 INFO Connection check task start + +2025-09-24 20:16:39,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:39,762 INFO Out dated connection ,size=0 + +2025-09-24 20:16:39,762 INFO Connection check task end + +2025-09-24 20:16:42,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:42,762 INFO Connection check task start + +2025-09-24 20:16:42,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:42,763 INFO Out dated connection ,size=0 + +2025-09-24 20:16:42,763 INFO Connection check task end + +2025-09-24 20:16:45,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:45,765 INFO Connection check task start + +2025-09-24 20:16:45,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:45,765 INFO Out dated connection ,size=0 + +2025-09-24 20:16:45,765 INFO Connection check task end + +2025-09-24 20:16:48,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:48,766 INFO Connection check task start + +2025-09-24 20:16:48,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:48,766 INFO Out dated connection ,size=0 + +2025-09-24 20:16:48,766 INFO Connection check task end + +2025-09-24 20:16:51,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:51,767 INFO Connection check task start + +2025-09-24 20:16:51,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:51,767 INFO Out dated connection ,size=0 + +2025-09-24 20:16:51,767 INFO Connection check task end + +2025-09-24 20:16:54,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:54,768 INFO Connection check task start + +2025-09-24 20:16:54,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:54,768 INFO Out dated connection ,size=0 + +2025-09-24 20:16:54,768 INFO Connection check task end + +2025-09-24 20:16:57,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:16:57,769 INFO Connection check task start + +2025-09-24 20:16:57,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:16:57,769 INFO Out dated connection ,size=0 + +2025-09-24 20:16:57,769 INFO Connection check task end + +2025-09-24 20:17:00,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:00,771 INFO Connection check task start + +2025-09-24 20:17:00,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:00,771 INFO Out dated connection ,size=0 + +2025-09-24 20:17:00,771 INFO Connection check task end + +2025-09-24 20:17:03,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:03,771 INFO Connection check task start + +2025-09-24 20:17:03,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:03,771 INFO Out dated connection ,size=0 + +2025-09-24 20:17:03,771 INFO Connection check task end + +2025-09-24 20:17:06,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:06,772 INFO Connection check task start + +2025-09-24 20:17:06,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:06,772 INFO Out dated connection ,size=0 + +2025-09-24 20:17:06,772 INFO Connection check task end + +2025-09-24 20:17:09,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:09,773 INFO Connection check task start + +2025-09-24 20:17:09,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:09,773 INFO Out dated connection ,size=0 + +2025-09-24 20:17:09,773 INFO Connection check task end + +2025-09-24 20:17:12,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:12,774 INFO Connection check task start + +2025-09-24 20:17:12,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:12,774 INFO Out dated connection ,size=0 + +2025-09-24 20:17:12,774 INFO Connection check task end + +2025-09-24 20:17:15,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:15,775 INFO Connection check task start + +2025-09-24 20:17:15,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:15,775 INFO Out dated connection ,size=0 + +2025-09-24 20:17:15,775 INFO Connection check task end + +2025-09-24 20:17:18,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:18,775 INFO Connection check task start + +2025-09-24 20:17:18,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:18,776 INFO Out dated connection ,size=0 + +2025-09-24 20:17:18,776 INFO Connection check task end + +2025-09-24 20:17:21,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:21,777 INFO Connection check task start + +2025-09-24 20:17:21,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:21,777 INFO Out dated connection ,size=0 + +2025-09-24 20:17:21,777 INFO Connection check task end + +2025-09-24 20:17:24,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:24,777 INFO Connection check task start + +2025-09-24 20:17:24,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:24,778 INFO Out dated connection ,size=0 + +2025-09-24 20:17:24,778 INFO Connection check task end + +2025-09-24 20:17:27,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:27,780 INFO Connection check task start + +2025-09-24 20:17:27,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:27,787 INFO Out dated connection ,size=0 + +2025-09-24 20:17:27,787 INFO Connection check task end + +2025-09-24 20:17:30,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:30,788 INFO Connection check task start + +2025-09-24 20:17:30,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:30,788 INFO Out dated connection ,size=0 + +2025-09-24 20:17:30,788 INFO Connection check task end + +2025-09-24 20:17:33,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:33,790 INFO Connection check task start + +2025-09-24 20:17:33,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:33,790 INFO Out dated connection ,size=0 + +2025-09-24 20:17:33,790 INFO Connection check task end + +2025-09-24 20:17:36,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:36,790 INFO Connection check task start + +2025-09-24 20:17:36,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:36,791 INFO Out dated connection ,size=0 + +2025-09-24 20:17:36,791 INFO Connection check task end + +2025-09-24 20:17:39,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:39,792 INFO Connection check task start + +2025-09-24 20:17:39,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:39,792 INFO Out dated connection ,size=0 + +2025-09-24 20:17:39,792 INFO Connection check task end + +2025-09-24 20:17:42,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:42,793 INFO Connection check task start + +2025-09-24 20:17:42,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:42,793 INFO Out dated connection ,size=0 + +2025-09-24 20:17:42,793 INFO Connection check task end + +2025-09-24 20:17:45,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:45,795 INFO Connection check task start + +2025-09-24 20:17:45,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:45,795 INFO Out dated connection ,size=0 + +2025-09-24 20:17:45,795 INFO Connection check task end + +2025-09-24 20:17:48,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:48,796 INFO Connection check task start + +2025-09-24 20:17:48,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:48,796 INFO Out dated connection ,size=0 + +2025-09-24 20:17:48,796 INFO Connection check task end + +2025-09-24 20:17:51,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:51,801 INFO Connection check task start + +2025-09-24 20:17:51,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:51,801 INFO Out dated connection ,size=0 + +2025-09-24 20:17:51,801 INFO Connection check task end + +2025-09-24 20:17:54,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:54,802 INFO Connection check task start + +2025-09-24 20:17:54,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:54,802 INFO Out dated connection ,size=0 + +2025-09-24 20:17:54,802 INFO Connection check task end + +2025-09-24 20:17:57,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:17:57,804 INFO Connection check task start + +2025-09-24 20:17:57,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:17:57,804 INFO Out dated connection ,size=0 + +2025-09-24 20:17:57,804 INFO Connection check task end + +2025-09-24 20:18:00,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:00,806 INFO Connection check task start + +2025-09-24 20:18:00,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:00,806 INFO Out dated connection ,size=0 + +2025-09-24 20:18:00,806 INFO Connection check task end + +2025-09-24 20:18:03,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:03,806 INFO Connection check task start + +2025-09-24 20:18:03,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:03,806 INFO Out dated connection ,size=0 + +2025-09-24 20:18:03,806 INFO Connection check task end + +2025-09-24 20:18:06,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:06,807 INFO Connection check task start + +2025-09-24 20:18:06,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:06,807 INFO Out dated connection ,size=0 + +2025-09-24 20:18:06,807 INFO Connection check task end + +2025-09-24 20:18:09,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:09,808 INFO Connection check task start + +2025-09-24 20:18:09,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:09,808 INFO Out dated connection ,size=0 + +2025-09-24 20:18:09,808 INFO Connection check task end + +2025-09-24 20:18:12,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:12,810 INFO Connection check task start + +2025-09-24 20:18:12,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:12,811 INFO Out dated connection ,size=0 + +2025-09-24 20:18:12,811 INFO Connection check task end + +2025-09-24 20:18:15,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:15,812 INFO Connection check task start + +2025-09-24 20:18:15,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:15,812 INFO Out dated connection ,size=0 + +2025-09-24 20:18:15,812 INFO Connection check task end + +2025-09-24 20:18:18,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:18,813 INFO Connection check task start + +2025-09-24 20:18:18,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:18,813 INFO Out dated connection ,size=0 + +2025-09-24 20:18:18,813 INFO Connection check task end + +2025-09-24 20:18:21,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:21,814 INFO Connection check task start + +2025-09-24 20:18:21,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:21,814 INFO Out dated connection ,size=0 + +2025-09-24 20:18:21,814 INFO Connection check task end + +2025-09-24 20:18:24,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:24,814 INFO Connection check task start + +2025-09-24 20:18:24,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:24,815 INFO Out dated connection ,size=0 + +2025-09-24 20:18:24,815 INFO Connection check task end + +2025-09-24 20:18:27,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:27,815 INFO Connection check task start + +2025-09-24 20:18:27,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:27,815 INFO Out dated connection ,size=0 + +2025-09-24 20:18:27,815 INFO Connection check task end + +2025-09-24 20:18:30,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:30,817 INFO Connection check task start + +2025-09-24 20:18:30,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:30,818 INFO Out dated connection ,size=0 + +2025-09-24 20:18:30,818 INFO Connection check task end + +2025-09-24 20:18:33,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:33,818 INFO Connection check task start + +2025-09-24 20:18:33,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:33,818 INFO Out dated connection ,size=0 + +2025-09-24 20:18:33,818 INFO Connection check task end + +2025-09-24 20:18:36,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:36,819 INFO Connection check task start + +2025-09-24 20:18:36,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:36,819 INFO Out dated connection ,size=0 + +2025-09-24 20:18:36,819 INFO Connection check task end + +2025-09-24 20:18:39,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:39,820 INFO Connection check task start + +2025-09-24 20:18:39,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:39,820 INFO Out dated connection ,size=0 + +2025-09-24 20:18:39,820 INFO Connection check task end + +2025-09-24 20:18:42,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:42,821 INFO Connection check task start + +2025-09-24 20:18:42,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:42,821 INFO Out dated connection ,size=0 + +2025-09-24 20:18:42,821 INFO Connection check task end + +2025-09-24 20:18:45,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:45,821 INFO Connection check task start + +2025-09-24 20:18:45,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:45,821 INFO Out dated connection ,size=0 + +2025-09-24 20:18:45,821 INFO Connection check task end + +2025-09-24 20:18:48,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:48,823 INFO Connection check task start + +2025-09-24 20:18:48,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:48,823 INFO Out dated connection ,size=0 + +2025-09-24 20:18:48,823 INFO Connection check task end + +2025-09-24 20:18:51,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:51,824 INFO Connection check task start + +2025-09-24 20:18:51,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:51,824 INFO Out dated connection ,size=0 + +2025-09-24 20:18:51,824 INFO Connection check task end + +2025-09-24 20:18:54,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:54,825 INFO Connection check task start + +2025-09-24 20:18:54,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:54,826 INFO Out dated connection ,size=0 + +2025-09-24 20:18:54,826 INFO Connection check task end + +2025-09-24 20:18:57,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:18:57,826 INFO Connection check task start + +2025-09-24 20:18:57,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:18:57,826 INFO Out dated connection ,size=0 + +2025-09-24 20:18:57,826 INFO Connection check task end + +2025-09-24 20:19:00,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:00,828 INFO Connection check task start + +2025-09-24 20:19:00,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:00,828 INFO Out dated connection ,size=0 + +2025-09-24 20:19:00,829 INFO Connection check task end + +2025-09-24 20:19:03,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:03,829 INFO Connection check task start + +2025-09-24 20:19:03,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:03,829 INFO Out dated connection ,size=0 + +2025-09-24 20:19:03,829 INFO Connection check task end + +2025-09-24 20:19:06,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:06,830 INFO Connection check task start + +2025-09-24 20:19:06,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:06,831 INFO Out dated connection ,size=0 + +2025-09-24 20:19:06,831 INFO Connection check task end + +2025-09-24 20:19:09,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:09,831 INFO Connection check task start + +2025-09-24 20:19:09,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:09,831 INFO Out dated connection ,size=0 + +2025-09-24 20:19:09,831 INFO Connection check task end + +2025-09-24 20:19:12,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:12,832 INFO Connection check task start + +2025-09-24 20:19:12,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:12,832 INFO Out dated connection ,size=0 + +2025-09-24 20:19:12,832 INFO Connection check task end + +2025-09-24 20:19:15,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:15,834 INFO Connection check task start + +2025-09-24 20:19:15,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:15,834 INFO Out dated connection ,size=0 + +2025-09-24 20:19:15,834 INFO Connection check task end + +2025-09-24 20:19:18,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:18,835 INFO Connection check task start + +2025-09-24 20:19:18,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:18,835 INFO Out dated connection ,size=0 + +2025-09-24 20:19:18,835 INFO Connection check task end + +2025-09-24 20:19:21,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:21,844 INFO Connection check task start + +2025-09-24 20:19:21,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:21,845 INFO Out dated connection ,size=0 + +2025-09-24 20:19:21,845 INFO Connection check task end + +2025-09-24 20:19:24,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:24,854 INFO Connection check task start + +2025-09-24 20:19:24,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:24,854 INFO Out dated connection ,size=0 + +2025-09-24 20:19:24,854 INFO Connection check task end + +2025-09-24 20:19:27,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:27,854 INFO Connection check task start + +2025-09-24 20:19:27,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:27,855 INFO Out dated connection ,size=0 + +2025-09-24 20:19:27,855 INFO Connection check task end + +2025-09-24 20:19:30,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:30,857 INFO Connection check task start + +2025-09-24 20:19:30,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:30,857 INFO Out dated connection ,size=0 + +2025-09-24 20:19:30,857 INFO Connection check task end + +2025-09-24 20:19:33,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:33,857 INFO Connection check task start + +2025-09-24 20:19:33,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:33,858 INFO Out dated connection ,size=0 + +2025-09-24 20:19:33,858 INFO Connection check task end + +2025-09-24 20:19:36,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:36,858 INFO Connection check task start + +2025-09-24 20:19:36,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:36,858 INFO Out dated connection ,size=0 + +2025-09-24 20:19:36,858 INFO Connection check task end + +2025-09-24 20:19:39,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:39,859 INFO Connection check task start + +2025-09-24 20:19:39,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:39,859 INFO Out dated connection ,size=0 + +2025-09-24 20:19:39,859 INFO Connection check task end + +2025-09-24 20:19:42,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:42,861 INFO Connection check task start + +2025-09-24 20:19:42,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:42,861 INFO Out dated connection ,size=0 + +2025-09-24 20:19:42,862 INFO Connection check task end + +2025-09-24 20:19:45,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:45,863 INFO Connection check task start + +2025-09-24 20:19:45,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:45,863 INFO Out dated connection ,size=0 + +2025-09-24 20:19:45,863 INFO Connection check task end + +2025-09-24 20:19:48,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:48,865 INFO Connection check task start + +2025-09-24 20:19:48,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:48,865 INFO Out dated connection ,size=0 + +2025-09-24 20:19:48,865 INFO Connection check task end + +2025-09-24 20:19:51,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:51,866 INFO Connection check task start + +2025-09-24 20:19:51,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:51,866 INFO Out dated connection ,size=0 + +2025-09-24 20:19:51,866 INFO Connection check task end + +2025-09-24 20:19:54,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:54,866 INFO Connection check task start + +2025-09-24 20:19:54,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:54,866 INFO Out dated connection ,size=0 + +2025-09-24 20:19:54,866 INFO Connection check task end + +2025-09-24 20:19:57,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:19:57,867 INFO Connection check task start + +2025-09-24 20:19:57,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:19:57,867 INFO Out dated connection ,size=0 + +2025-09-24 20:19:57,867 INFO Connection check task end + +2025-09-24 20:20:00,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:00,867 INFO Connection check task start + +2025-09-24 20:20:00,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:00,868 INFO Out dated connection ,size=0 + +2025-09-24 20:20:00,868 INFO Connection check task end + +2025-09-24 20:20:03,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:03,869 INFO Connection check task start + +2025-09-24 20:20:03,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:03,869 INFO Out dated connection ,size=0 + +2025-09-24 20:20:03,869 INFO Connection check task end + +2025-09-24 20:20:06,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:06,870 INFO Connection check task start + +2025-09-24 20:20:06,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:06,870 INFO Out dated connection ,size=0 + +2025-09-24 20:20:06,870 INFO Connection check task end + +2025-09-24 20:20:09,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:09,871 INFO Connection check task start + +2025-09-24 20:20:09,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:09,871 INFO Out dated connection ,size=0 + +2025-09-24 20:20:09,871 INFO Connection check task end + +2025-09-24 20:20:12,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:12,873 INFO Connection check task start + +2025-09-24 20:20:12,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:12,873 INFO Out dated connection ,size=0 + +2025-09-24 20:20:12,873 INFO Connection check task end + +2025-09-24 20:20:15,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:15,874 INFO Connection check task start + +2025-09-24 20:20:15,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:15,874 INFO Out dated connection ,size=0 + +2025-09-24 20:20:15,874 INFO Connection check task end + +2025-09-24 20:20:18,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:18,875 INFO Connection check task start + +2025-09-24 20:20:18,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:18,875 INFO Out dated connection ,size=0 + +2025-09-24 20:20:18,875 INFO Connection check task end + +2025-09-24 20:20:21,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:21,880 INFO Connection check task start + +2025-09-24 20:20:21,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:21,885 INFO Out dated connection ,size=0 + +2025-09-24 20:20:21,885 INFO Connection check task end + +2025-09-24 20:20:24,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:24,886 INFO Connection check task start + +2025-09-24 20:20:24,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:24,887 INFO Out dated connection ,size=0 + +2025-09-24 20:20:24,887 INFO Connection check task end + +2025-09-24 20:20:27,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:27,887 INFO Connection check task start + +2025-09-24 20:20:27,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:27,887 INFO Out dated connection ,size=0 + +2025-09-24 20:20:27,887 INFO Connection check task end + +2025-09-24 20:20:30,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:30,889 INFO Connection check task start + +2025-09-24 20:20:30,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:30,889 INFO Out dated connection ,size=0 + +2025-09-24 20:20:30,889 INFO Connection check task end + +2025-09-24 20:20:33,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:33,890 INFO Connection check task start + +2025-09-24 20:20:33,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:33,890 INFO Out dated connection ,size=0 + +2025-09-24 20:20:33,890 INFO Connection check task end + +2025-09-24 20:20:36,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:36,892 INFO Connection check task start + +2025-09-24 20:20:36,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:36,892 INFO Out dated connection ,size=0 + +2025-09-24 20:20:36,892 INFO Connection check task end + +2025-09-24 20:20:39,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:39,893 INFO Connection check task start + +2025-09-24 20:20:39,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:39,893 INFO Out dated connection ,size=0 + +2025-09-24 20:20:39,893 INFO Connection check task end + +2025-09-24 20:20:42,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:42,895 INFO Connection check task start + +2025-09-24 20:20:42,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:42,895 INFO Out dated connection ,size=0 + +2025-09-24 20:20:42,895 INFO Connection check task end + +2025-09-24 20:20:45,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:45,897 INFO Connection check task start + +2025-09-24 20:20:45,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:45,898 INFO Out dated connection ,size=0 + +2025-09-24 20:20:45,898 INFO Connection check task end + +2025-09-24 20:20:48,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:48,898 INFO Connection check task start + +2025-09-24 20:20:48,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:48,899 INFO Out dated connection ,size=0 + +2025-09-24 20:20:48,899 INFO Connection check task end + +2025-09-24 20:20:51,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:51,899 INFO Connection check task start + +2025-09-24 20:20:51,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:51,899 INFO Out dated connection ,size=0 + +2025-09-24 20:20:51,899 INFO Connection check task end + +2025-09-24 20:20:54,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:54,900 INFO Connection check task start + +2025-09-24 20:20:54,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:54,900 INFO Out dated connection ,size=0 + +2025-09-24 20:20:54,900 INFO Connection check task end + +2025-09-24 20:20:57,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:20:57,900 INFO Connection check task start + +2025-09-24 20:20:57,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:20:57,901 INFO Out dated connection ,size=0 + +2025-09-24 20:20:57,901 INFO Connection check task end + +2025-09-24 20:21:00,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:00,901 INFO Connection check task start + +2025-09-24 20:21:00,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:00,901 INFO Out dated connection ,size=0 + +2025-09-24 20:21:00,901 INFO Connection check task end + +2025-09-24 20:21:03,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:03,902 INFO Connection check task start + +2025-09-24 20:21:03,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:03,902 INFO Out dated connection ,size=0 + +2025-09-24 20:21:03,902 INFO Connection check task end + +2025-09-24 20:21:06,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:06,904 INFO Connection check task start + +2025-09-24 20:21:06,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:06,904 INFO Out dated connection ,size=0 + +2025-09-24 20:21:06,904 INFO Connection check task end + +2025-09-24 20:21:09,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:09,905 INFO Connection check task start + +2025-09-24 20:21:09,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:09,905 INFO Out dated connection ,size=0 + +2025-09-24 20:21:09,905 INFO Connection check task end + +2025-09-24 20:21:12,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:12,906 INFO Connection check task start + +2025-09-24 20:21:12,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:12,906 INFO Out dated connection ,size=0 + +2025-09-24 20:21:12,906 INFO Connection check task end + +2025-09-24 20:21:15,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:15,907 INFO Connection check task start + +2025-09-24 20:21:15,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:15,908 INFO Out dated connection ,size=0 + +2025-09-24 20:21:15,908 INFO Connection check task end + +2025-09-24 20:21:18,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:18,908 INFO Connection check task start + +2025-09-24 20:21:18,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:18,908 INFO Out dated connection ,size=0 + +2025-09-24 20:21:18,908 INFO Connection check task end + +2025-09-24 20:21:21,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:21,908 INFO Connection check task start + +2025-09-24 20:21:21,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:21,908 INFO Out dated connection ,size=0 + +2025-09-24 20:21:21,908 INFO Connection check task end + +2025-09-24 20:21:24,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:24,909 INFO Connection check task start + +2025-09-24 20:21:24,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:24,909 INFO Out dated connection ,size=0 + +2025-09-24 20:21:24,909 INFO Connection check task end + +2025-09-24 20:21:27,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:27,909 INFO Connection check task start + +2025-09-24 20:21:27,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:27,909 INFO Out dated connection ,size=0 + +2025-09-24 20:21:27,910 INFO Connection check task end + +2025-09-24 20:21:30,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:30,910 INFO Connection check task start + +2025-09-24 20:21:30,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:30,910 INFO Out dated connection ,size=0 + +2025-09-24 20:21:30,910 INFO Connection check task end + +2025-09-24 20:21:33,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:33,911 INFO Connection check task start + +2025-09-24 20:21:33,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:33,911 INFO Out dated connection ,size=0 + +2025-09-24 20:21:33,911 INFO Connection check task end + +2025-09-24 20:21:36,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:36,913 INFO Connection check task start + +2025-09-24 20:21:36,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:36,913 INFO Out dated connection ,size=0 + +2025-09-24 20:21:36,913 INFO Connection check task end + +2025-09-24 20:21:39,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:39,915 INFO Connection check task start + +2025-09-24 20:21:39,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:39,916 INFO Out dated connection ,size=0 + +2025-09-24 20:21:39,916 INFO Connection check task end + +2025-09-24 20:21:42,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:42,918 INFO Connection check task start + +2025-09-24 20:21:42,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:42,918 INFO Out dated connection ,size=0 + +2025-09-24 20:21:42,918 INFO Connection check task end + +2025-09-24 20:21:45,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:45,918 INFO Connection check task start + +2025-09-24 20:21:45,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:45,918 INFO Out dated connection ,size=0 + +2025-09-24 20:21:45,918 INFO Connection check task end + +2025-09-24 20:21:48,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:48,919 INFO Connection check task start + +2025-09-24 20:21:48,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:48,919 INFO Out dated connection ,size=0 + +2025-09-24 20:21:48,919 INFO Connection check task end + +2025-09-24 20:21:51,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:51,921 INFO Connection check task start + +2025-09-24 20:21:51,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:51,921 INFO Out dated connection ,size=0 + +2025-09-24 20:21:51,921 INFO Connection check task end + +2025-09-24 20:21:54,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:54,922 INFO Connection check task start + +2025-09-24 20:21:54,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:54,922 INFO Out dated connection ,size=0 + +2025-09-24 20:21:54,922 INFO Connection check task end + +2025-09-24 20:21:57,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:21:57,924 INFO Connection check task start + +2025-09-24 20:21:57,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:21:57,924 INFO Out dated connection ,size=0 + +2025-09-24 20:21:57,924 INFO Connection check task end + +2025-09-24 20:22:00,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:00,925 INFO Connection check task start + +2025-09-24 20:22:00,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:00,925 INFO Out dated connection ,size=0 + +2025-09-24 20:22:00,925 INFO Connection check task end + +2025-09-24 20:22:03,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:03,925 INFO Connection check task start + +2025-09-24 20:22:03,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:03,926 INFO Out dated connection ,size=0 + +2025-09-24 20:22:03,926 INFO Connection check task end + +2025-09-24 20:22:06,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:06,926 INFO Connection check task start + +2025-09-24 20:22:06,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:06,927 INFO Out dated connection ,size=0 + +2025-09-24 20:22:06,927 INFO Connection check task end + +2025-09-24 20:22:09,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:09,929 INFO Connection check task start + +2025-09-24 20:22:09,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:09,929 INFO Out dated connection ,size=0 + +2025-09-24 20:22:09,929 INFO Connection check task end + +2025-09-24 20:22:12,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:12,929 INFO Connection check task start + +2025-09-24 20:22:12,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:12,929 INFO Out dated connection ,size=0 + +2025-09-24 20:22:12,929 INFO Connection check task end + +2025-09-24 20:22:15,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:15,931 INFO Connection check task start + +2025-09-24 20:22:15,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:15,931 INFO Out dated connection ,size=0 + +2025-09-24 20:22:15,931 INFO Connection check task end + +2025-09-24 20:22:18,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:18,931 INFO Connection check task start + +2025-09-24 20:22:18,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:18,931 INFO Out dated connection ,size=0 + +2025-09-24 20:22:18,931 INFO Connection check task end + +2025-09-24 20:22:21,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:21,932 INFO Connection check task start + +2025-09-24 20:22:21,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:21,932 INFO Out dated connection ,size=0 + +2025-09-24 20:22:21,932 INFO Connection check task end + +2025-09-24 20:22:24,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:24,932 INFO Connection check task start + +2025-09-24 20:22:24,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:24,932 INFO Out dated connection ,size=0 + +2025-09-24 20:22:24,932 INFO Connection check task end + +2025-09-24 20:22:27,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:27,933 INFO Connection check task start + +2025-09-24 20:22:27,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:27,933 INFO Out dated connection ,size=0 + +2025-09-24 20:22:27,933 INFO Connection check task end + +2025-09-24 20:22:30,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:30,935 INFO Connection check task start + +2025-09-24 20:22:30,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:30,935 INFO Out dated connection ,size=0 + +2025-09-24 20:22:30,935 INFO Connection check task end + +2025-09-24 20:22:33,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:33,936 INFO Connection check task start + +2025-09-24 20:22:33,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:33,936 INFO Out dated connection ,size=0 + +2025-09-24 20:22:33,936 INFO Connection check task end + +2025-09-24 20:22:36,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:36,936 INFO Connection check task start + +2025-09-24 20:22:36,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:36,937 INFO Out dated connection ,size=0 + +2025-09-24 20:22:36,937 INFO Connection check task end + +2025-09-24 20:22:39,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:39,937 INFO Connection check task start + +2025-09-24 20:22:39,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:39,938 INFO Out dated connection ,size=0 + +2025-09-24 20:22:39,938 INFO Connection check task end + +2025-09-24 20:22:42,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:42,939 INFO Connection check task start + +2025-09-24 20:22:42,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:42,939 INFO Out dated connection ,size=0 + +2025-09-24 20:22:42,939 INFO Connection check task end + +2025-09-24 20:22:45,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:45,942 INFO Connection check task start + +2025-09-24 20:22:45,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:45,942 INFO Out dated connection ,size=0 + +2025-09-24 20:22:45,942 INFO Connection check task end + +2025-09-24 20:22:48,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:48,944 INFO Connection check task start + +2025-09-24 20:22:48,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:48,944 INFO Out dated connection ,size=0 + +2025-09-24 20:22:48,944 INFO Connection check task end + +2025-09-24 20:22:51,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:51,946 INFO Connection check task start + +2025-09-24 20:22:51,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:51,946 INFO Out dated connection ,size=0 + +2025-09-24 20:22:51,946 INFO Connection check task end + +2025-09-24 20:22:54,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:54,946 INFO Connection check task start + +2025-09-24 20:22:54,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:54,947 INFO Out dated connection ,size=0 + +2025-09-24 20:22:54,947 INFO Connection check task end + +2025-09-24 20:22:57,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:22:57,947 INFO Connection check task start + +2025-09-24 20:22:57,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:22:57,947 INFO Out dated connection ,size=0 + +2025-09-24 20:22:57,947 INFO Connection check task end + +2025-09-24 20:23:00,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:00,949 INFO Connection check task start + +2025-09-24 20:23:00,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:00,949 INFO Out dated connection ,size=0 + +2025-09-24 20:23:00,949 INFO Connection check task end + +2025-09-24 20:23:03,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:03,950 INFO Connection check task start + +2025-09-24 20:23:03,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:03,950 INFO Out dated connection ,size=0 + +2025-09-24 20:23:03,950 INFO Connection check task end + +2025-09-24 20:23:06,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:06,951 INFO Connection check task start + +2025-09-24 20:23:06,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:06,951 INFO Out dated connection ,size=0 + +2025-09-24 20:23:06,951 INFO Connection check task end + +2025-09-24 20:23:09,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:09,953 INFO Connection check task start + +2025-09-24 20:23:09,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:09,953 INFO Out dated connection ,size=0 + +2025-09-24 20:23:09,953 INFO Connection check task end + +2025-09-24 20:23:12,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:12,954 INFO Connection check task start + +2025-09-24 20:23:12,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:12,954 INFO Out dated connection ,size=0 + +2025-09-24 20:23:12,954 INFO Connection check task end + +2025-09-24 20:23:15,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:15,956 INFO Connection check task start + +2025-09-24 20:23:15,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:15,957 INFO Out dated connection ,size=0 + +2025-09-24 20:23:15,957 INFO Connection check task end + +2025-09-24 20:23:18,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:18,957 INFO Connection check task start + +2025-09-24 20:23:18,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:18,957 INFO Out dated connection ,size=0 + +2025-09-24 20:23:18,957 INFO Connection check task end + +2025-09-24 20:23:21,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:21,958 INFO Connection check task start + +2025-09-24 20:23:21,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:21,959 INFO Out dated connection ,size=0 + +2025-09-24 20:23:21,959 INFO Connection check task end + +2025-09-24 20:23:24,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:24,959 INFO Connection check task start + +2025-09-24 20:23:24,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:24,959 INFO Out dated connection ,size=0 + +2025-09-24 20:23:24,959 INFO Connection check task end + +2025-09-24 20:23:27,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:27,960 INFO Connection check task start + +2025-09-24 20:23:27,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:27,960 INFO Out dated connection ,size=0 + +2025-09-24 20:23:27,960 INFO Connection check task end + +2025-09-24 20:23:30,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:30,960 INFO Connection check task start + +2025-09-24 20:23:30,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:30,960 INFO Out dated connection ,size=0 + +2025-09-24 20:23:30,960 INFO Connection check task end + +2025-09-24 20:23:33,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:33,962 INFO Connection check task start + +2025-09-24 20:23:33,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:33,963 INFO Out dated connection ,size=0 + +2025-09-24 20:23:33,963 INFO Connection check task end + +2025-09-24 20:23:36,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:36,963 INFO Connection check task start + +2025-09-24 20:23:36,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:36,963 INFO Out dated connection ,size=0 + +2025-09-24 20:23:36,963 INFO Connection check task end + +2025-09-24 20:23:39,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:39,964 INFO Connection check task start + +2025-09-24 20:23:39,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:39,964 INFO Out dated connection ,size=0 + +2025-09-24 20:23:39,964 INFO Connection check task end + +2025-09-24 20:23:42,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:42,964 INFO Connection check task start + +2025-09-24 20:23:42,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:42,964 INFO Out dated connection ,size=0 + +2025-09-24 20:23:42,964 INFO Connection check task end + +2025-09-24 20:23:45,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:45,966 INFO Connection check task start + +2025-09-24 20:23:45,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:45,967 INFO Out dated connection ,size=0 + +2025-09-24 20:23:45,967 INFO Connection check task end + +2025-09-24 20:23:48,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:48,967 INFO Connection check task start + +2025-09-24 20:23:48,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:48,967 INFO Out dated connection ,size=0 + +2025-09-24 20:23:48,967 INFO Connection check task end + +2025-09-24 20:23:51,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:51,969 INFO Connection check task start + +2025-09-24 20:23:51,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:51,969 INFO Out dated connection ,size=0 + +2025-09-24 20:23:51,969 INFO Connection check task end + +2025-09-24 20:23:54,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:54,971 INFO Connection check task start + +2025-09-24 20:23:54,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:54,971 INFO Out dated connection ,size=0 + +2025-09-24 20:23:54,971 INFO Connection check task end + +2025-09-24 20:23:57,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:23:57,972 INFO Connection check task start + +2025-09-24 20:23:57,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:23:57,972 INFO Out dated connection ,size=0 + +2025-09-24 20:23:57,972 INFO Connection check task end + +2025-09-24 20:24:00,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:00,974 INFO Connection check task start + +2025-09-24 20:24:00,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:00,974 INFO Out dated connection ,size=0 + +2025-09-24 20:24:00,974 INFO Connection check task end + +2025-09-24 20:24:03,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:03,975 INFO Connection check task start + +2025-09-24 20:24:03,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:03,975 INFO Out dated connection ,size=0 + +2025-09-24 20:24:03,975 INFO Connection check task end + +2025-09-24 20:24:06,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:06,975 INFO Connection check task start + +2025-09-24 20:24:06,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:06,976 INFO Out dated connection ,size=0 + +2025-09-24 20:24:06,976 INFO Connection check task end + +2025-09-24 20:24:09,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:09,976 INFO Connection check task start + +2025-09-24 20:24:09,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:09,976 INFO Out dated connection ,size=0 + +2025-09-24 20:24:09,976 INFO Connection check task end + +2025-09-24 20:24:12,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:12,977 INFO Connection check task start + +2025-09-24 20:24:12,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:12,978 INFO Out dated connection ,size=0 + +2025-09-24 20:24:12,978 INFO Connection check task end + +2025-09-24 20:24:15,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:15,978 INFO Connection check task start + +2025-09-24 20:24:15,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:15,978 INFO Out dated connection ,size=0 + +2025-09-24 20:24:15,978 INFO Connection check task end + +2025-09-24 20:24:18,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:18,980 INFO Connection check task start + +2025-09-24 20:24:18,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:18,980 INFO Out dated connection ,size=0 + +2025-09-24 20:24:18,980 INFO Connection check task end + +2025-09-24 20:24:21,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:21,981 INFO Connection check task start + +2025-09-24 20:24:21,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:21,981 INFO Out dated connection ,size=0 + +2025-09-24 20:24:21,981 INFO Connection check task end + +2025-09-24 20:24:24,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:24,981 INFO Connection check task start + +2025-09-24 20:24:24,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:24,981 INFO Out dated connection ,size=0 + +2025-09-24 20:24:24,981 INFO Connection check task end + +2025-09-24 20:24:27,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:27,982 INFO Connection check task start + +2025-09-24 20:24:27,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:27,982 INFO Out dated connection ,size=0 + +2025-09-24 20:24:27,982 INFO Connection check task end + +2025-09-24 20:24:30,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:30,982 INFO Connection check task start + +2025-09-24 20:24:30,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:30,982 INFO Out dated connection ,size=0 + +2025-09-24 20:24:30,982 INFO Connection check task end + +2025-09-24 20:24:33,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:33,984 INFO Connection check task start + +2025-09-24 20:24:33,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:33,984 INFO Out dated connection ,size=0 + +2025-09-24 20:24:33,984 INFO Connection check task end + +2025-09-24 20:24:36,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:36,985 INFO Connection check task start + +2025-09-24 20:24:36,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:36,985 INFO Out dated connection ,size=0 + +2025-09-24 20:24:36,985 INFO Connection check task end + +2025-09-24 20:24:39,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:39,987 INFO Connection check task start + +2025-09-24 20:24:39,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:39,987 INFO Out dated connection ,size=0 + +2025-09-24 20:24:39,987 INFO Connection check task end + +2025-09-24 20:24:42,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:42,989 INFO Connection check task start + +2025-09-24 20:24:42,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:42,989 INFO Out dated connection ,size=0 + +2025-09-24 20:24:42,989 INFO Connection check task end + +2025-09-24 20:24:45,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:45,991 INFO Connection check task start + +2025-09-24 20:24:45,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:45,992 INFO Out dated connection ,size=0 + +2025-09-24 20:24:45,992 INFO Connection check task end + +2025-09-24 20:24:48,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:48,994 INFO Connection check task start + +2025-09-24 20:24:48,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:48,994 INFO Out dated connection ,size=0 + +2025-09-24 20:24:48,994 INFO Connection check task end + +2025-09-24 20:24:51,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:51,994 INFO Connection check task start + +2025-09-24 20:24:51,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:51,994 INFO Out dated connection ,size=0 + +2025-09-24 20:24:51,994 INFO Connection check task end + +2025-09-24 20:24:54,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:54,995 INFO Connection check task start + +2025-09-24 20:24:54,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:54,995 INFO Out dated connection ,size=0 + +2025-09-24 20:24:54,995 INFO Connection check task end + +2025-09-24 20:24:57,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:24:57,997 INFO Connection check task start + +2025-09-24 20:24:57,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:24:57,997 INFO Out dated connection ,size=0 + +2025-09-24 20:24:57,997 INFO Connection check task end + +2025-09-24 20:25:00,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:00,998 INFO Connection check task start + +2025-09-24 20:25:00,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:00,998 INFO Out dated connection ,size=0 + +2025-09-24 20:25:00,998 INFO Connection check task end + +2025-09-24 20:25:03,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:03,998 INFO Connection check task start + +2025-09-24 20:25:03,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:03,999 INFO Out dated connection ,size=0 + +2025-09-24 20:25:03,999 INFO Connection check task end + +2025-09-24 20:25:06,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:06,999 INFO Connection check task start + +2025-09-24 20:25:06,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:06,999 INFO Out dated connection ,size=0 + +2025-09-24 20:25:06,999 INFO Connection check task end + +2025-09-24 20:25:09,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:10,001 INFO Connection check task start + +2025-09-24 20:25:10,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:10,001 INFO Out dated connection ,size=0 + +2025-09-24 20:25:10,001 INFO Connection check task end + +2025-09-24 20:25:12,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:13,002 INFO Connection check task start + +2025-09-24 20:25:13,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:13,002 INFO Out dated connection ,size=0 + +2025-09-24 20:25:13,002 INFO Connection check task end + +2025-09-24 20:25:15,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:16,002 INFO Connection check task start + +2025-09-24 20:25:16,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:16,002 INFO Out dated connection ,size=0 + +2025-09-24 20:25:16,002 INFO Connection check task end + +2025-09-24 20:25:18,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:19,003 INFO Connection check task start + +2025-09-24 20:25:19,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:19,003 INFO Out dated connection ,size=0 + +2025-09-24 20:25:19,003 INFO Connection check task end + +2025-09-24 20:25:21,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:22,008 INFO Connection check task start + +2025-09-24 20:25:22,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:22,008 INFO Out dated connection ,size=0 + +2025-09-24 20:25:22,008 INFO Connection check task end + +2025-09-24 20:25:24,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:25,008 INFO Connection check task start + +2025-09-24 20:25:25,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:25,009 INFO Out dated connection ,size=0 + +2025-09-24 20:25:25,009 INFO Connection check task end + +2025-09-24 20:25:27,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:28,009 INFO Connection check task start + +2025-09-24 20:25:28,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:28,009 INFO Out dated connection ,size=0 + +2025-09-24 20:25:28,009 INFO Connection check task end + +2025-09-24 20:25:30,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:31,009 INFO Connection check task start + +2025-09-24 20:25:31,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:31,010 INFO Out dated connection ,size=0 + +2025-09-24 20:25:31,010 INFO Connection check task end + +2025-09-24 20:25:33,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:34,012 INFO Connection check task start + +2025-09-24 20:25:34,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:34,012 INFO Out dated connection ,size=0 + +2025-09-24 20:25:34,012 INFO Connection check task end + +2025-09-24 20:25:36,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:37,012 INFO Connection check task start + +2025-09-24 20:25:37,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:37,013 INFO Out dated connection ,size=0 + +2025-09-24 20:25:37,013 INFO Connection check task end + +2025-09-24 20:25:39,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:40,013 INFO Connection check task start + +2025-09-24 20:25:40,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:40,013 INFO Out dated connection ,size=0 + +2025-09-24 20:25:40,013 INFO Connection check task end + +2025-09-24 20:25:42,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:43,015 INFO Connection check task start + +2025-09-24 20:25:43,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:43,015 INFO Out dated connection ,size=0 + +2025-09-24 20:25:43,015 INFO Connection check task end + +2025-09-24 20:25:45,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:46,015 INFO Connection check task start + +2025-09-24 20:25:46,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:46,016 INFO Out dated connection ,size=0 + +2025-09-24 20:25:46,016 INFO Connection check task end + +2025-09-24 20:25:48,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:49,016 INFO Connection check task start + +2025-09-24 20:25:49,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:49,016 INFO Out dated connection ,size=0 + +2025-09-24 20:25:49,016 INFO Connection check task end + +2025-09-24 20:25:51,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:52,016 INFO Connection check task start + +2025-09-24 20:25:52,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:52,016 INFO Out dated connection ,size=0 + +2025-09-24 20:25:52,016 INFO Connection check task end + +2025-09-24 20:25:54,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:55,019 INFO Connection check task start + +2025-09-24 20:25:55,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:55,019 INFO Out dated connection ,size=0 + +2025-09-24 20:25:55,019 INFO Connection check task end + +2025-09-24 20:25:57,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:25:58,019 INFO Connection check task start + +2025-09-24 20:25:58,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:25:58,019 INFO Out dated connection ,size=0 + +2025-09-24 20:25:58,019 INFO Connection check task end + +2025-09-24 20:26:00,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:01,021 INFO Connection check task start + +2025-09-24 20:26:01,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:01,021 INFO Out dated connection ,size=0 + +2025-09-24 20:26:01,021 INFO Connection check task end + +2025-09-24 20:26:03,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:04,022 INFO Connection check task start + +2025-09-24 20:26:04,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:04,022 INFO Out dated connection ,size=0 + +2025-09-24 20:26:04,022 INFO Connection check task end + +2025-09-24 20:26:06,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:07,022 INFO Connection check task start + +2025-09-24 20:26:07,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:07,022 INFO Out dated connection ,size=0 + +2025-09-24 20:26:07,022 INFO Connection check task end + +2025-09-24 20:26:09,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:10,024 INFO Connection check task start + +2025-09-24 20:26:10,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:10,024 INFO Out dated connection ,size=0 + +2025-09-24 20:26:10,024 INFO Connection check task end + +2025-09-24 20:26:12,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:13,025 INFO Connection check task start + +2025-09-24 20:26:13,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:13,025 INFO Out dated connection ,size=0 + +2025-09-24 20:26:13,025 INFO Connection check task end + +2025-09-24 20:26:15,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:16,025 INFO Connection check task start + +2025-09-24 20:26:16,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:16,025 INFO Out dated connection ,size=0 + +2025-09-24 20:26:16,025 INFO Connection check task end + +2025-09-24 20:26:18,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:19,027 INFO Connection check task start + +2025-09-24 20:26:19,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:19,027 INFO Out dated connection ,size=0 + +2025-09-24 20:26:19,027 INFO Connection check task end + +2025-09-24 20:26:21,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:22,028 INFO Connection check task start + +2025-09-24 20:26:22,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:22,028 INFO Out dated connection ,size=0 + +2025-09-24 20:26:22,028 INFO Connection check task end + +2025-09-24 20:26:24,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:25,029 INFO Connection check task start + +2025-09-24 20:26:25,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:25,029 INFO Out dated connection ,size=0 + +2025-09-24 20:26:25,029 INFO Connection check task end + +2025-09-24 20:26:27,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:28,031 INFO Connection check task start + +2025-09-24 20:26:28,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:28,032 INFO Out dated connection ,size=0 + +2025-09-24 20:26:28,032 INFO Connection check task end + +2025-09-24 20:26:30,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:31,032 INFO Connection check task start + +2025-09-24 20:26:31,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:31,032 INFO Out dated connection ,size=0 + +2025-09-24 20:26:31,032 INFO Connection check task end + +2025-09-24 20:26:33,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:34,032 INFO Connection check task start + +2025-09-24 20:26:34,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:34,033 INFO Out dated connection ,size=0 + +2025-09-24 20:26:34,033 INFO Connection check task end + +2025-09-24 20:26:36,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:37,034 INFO Connection check task start + +2025-09-24 20:26:37,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:37,034 INFO Out dated connection ,size=0 + +2025-09-24 20:26:37,034 INFO Connection check task end + +2025-09-24 20:26:39,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:40,036 INFO Connection check task start + +2025-09-24 20:26:40,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:40,036 INFO Out dated connection ,size=0 + +2025-09-24 20:26:40,036 INFO Connection check task end + +2025-09-24 20:26:42,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:43,038 INFO Connection check task start + +2025-09-24 20:26:43,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:43,038 INFO Out dated connection ,size=0 + +2025-09-24 20:26:43,038 INFO Connection check task end + +2025-09-24 20:26:45,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:46,040 INFO Connection check task start + +2025-09-24 20:26:46,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:46,040 INFO Out dated connection ,size=0 + +2025-09-24 20:26:46,040 INFO Connection check task end + +2025-09-24 20:26:48,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:49,041 INFO Connection check task start + +2025-09-24 20:26:49,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:49,041 INFO Out dated connection ,size=0 + +2025-09-24 20:26:49,041 INFO Connection check task end + +2025-09-24 20:26:51,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:52,043 INFO Connection check task start + +2025-09-24 20:26:52,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:52,043 INFO Out dated connection ,size=0 + +2025-09-24 20:26:52,043 INFO Connection check task end + +2025-09-24 20:26:54,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:55,044 INFO Connection check task start + +2025-09-24 20:26:55,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:55,044 INFO Out dated connection ,size=0 + +2025-09-24 20:26:55,045 INFO Connection check task end + +2025-09-24 20:26:57,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:26:58,045 INFO Connection check task start + +2025-09-24 20:26:58,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:26:58,045 INFO Out dated connection ,size=0 + +2025-09-24 20:26:58,045 INFO Connection check task end + +2025-09-24 20:27:00,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:01,046 INFO Connection check task start + +2025-09-24 20:27:01,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:01,046 INFO Out dated connection ,size=0 + +2025-09-24 20:27:01,046 INFO Connection check task end + +2025-09-24 20:27:03,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:04,047 INFO Connection check task start + +2025-09-24 20:27:04,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:04,048 INFO Out dated connection ,size=0 + +2025-09-24 20:27:04,048 INFO Connection check task end + +2025-09-24 20:27:06,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:07,049 INFO Connection check task start + +2025-09-24 20:27:07,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:07,049 INFO Out dated connection ,size=0 + +2025-09-24 20:27:07,049 INFO Connection check task end + +2025-09-24 20:27:09,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:10,050 INFO Connection check task start + +2025-09-24 20:27:10,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:10,050 INFO Out dated connection ,size=0 + +2025-09-24 20:27:10,050 INFO Connection check task end + +2025-09-24 20:27:12,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:13,050 INFO Connection check task start + +2025-09-24 20:27:13,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:13,051 INFO Out dated connection ,size=0 + +2025-09-24 20:27:13,051 INFO Connection check task end + +2025-09-24 20:27:15,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:16,051 INFO Connection check task start + +2025-09-24 20:27:16,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:16,052 INFO Out dated connection ,size=0 + +2025-09-24 20:27:16,052 INFO Connection check task end + +2025-09-24 20:27:18,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:19,052 INFO Connection check task start + +2025-09-24 20:27:19,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:19,052 INFO Out dated connection ,size=0 + +2025-09-24 20:27:19,052 INFO Connection check task end + +2025-09-24 20:27:21,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:22,052 INFO Connection check task start + +2025-09-24 20:27:22,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:22,052 INFO Out dated connection ,size=0 + +2025-09-24 20:27:22,052 INFO Connection check task end + +2025-09-24 20:27:24,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:25,053 INFO Connection check task start + +2025-09-24 20:27:25,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:25,053 INFO Out dated connection ,size=0 + +2025-09-24 20:27:25,053 INFO Connection check task end + +2025-09-24 20:27:27,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:28,054 INFO Connection check task start + +2025-09-24 20:27:28,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:28,064 INFO Out dated connection ,size=0 + +2025-09-24 20:27:28,064 INFO Connection check task end + +2025-09-24 20:27:30,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:31,066 INFO Connection check task start + +2025-09-24 20:27:31,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:31,066 INFO Out dated connection ,size=0 + +2025-09-24 20:27:31,066 INFO Connection check task end + +2025-09-24 20:27:33,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:34,067 INFO Connection check task start + +2025-09-24 20:27:34,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:34,067 INFO Out dated connection ,size=0 + +2025-09-24 20:27:34,067 INFO Connection check task end + +2025-09-24 20:27:36,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:37,067 INFO Connection check task start + +2025-09-24 20:27:37,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:37,068 INFO Out dated connection ,size=0 + +2025-09-24 20:27:37,068 INFO Connection check task end + +2025-09-24 20:27:39,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:40,068 INFO Connection check task start + +2025-09-24 20:27:40,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:40,068 INFO Out dated connection ,size=0 + +2025-09-24 20:27:40,068 INFO Connection check task end + +2025-09-24 20:27:42,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:43,069 INFO Connection check task start + +2025-09-24 20:27:43,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:43,069 INFO Out dated connection ,size=0 + +2025-09-24 20:27:43,069 INFO Connection check task end + +2025-09-24 20:27:45,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:46,070 INFO Connection check task start + +2025-09-24 20:27:46,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:46,070 INFO Out dated connection ,size=0 + +2025-09-24 20:27:46,070 INFO Connection check task end + +2025-09-24 20:27:48,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:49,070 INFO Connection check task start + +2025-09-24 20:27:49,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:49,071 INFO Out dated connection ,size=0 + +2025-09-24 20:27:49,071 INFO Connection check task end + +2025-09-24 20:27:51,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:52,072 INFO Connection check task start + +2025-09-24 20:27:52,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:52,072 INFO Out dated connection ,size=0 + +2025-09-24 20:27:52,072 INFO Connection check task end + +2025-09-24 20:27:54,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:55,072 INFO Connection check task start + +2025-09-24 20:27:55,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:55,072 INFO Out dated connection ,size=0 + +2025-09-24 20:27:55,072 INFO Connection check task end + +2025-09-24 20:27:57,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:27:58,074 INFO Connection check task start + +2025-09-24 20:27:58,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:27:58,074 INFO Out dated connection ,size=0 + +2025-09-24 20:27:58,074 INFO Connection check task end + +2025-09-24 20:28:00,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:01,074 INFO Connection check task start + +2025-09-24 20:28:01,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:01,074 INFO Out dated connection ,size=0 + +2025-09-24 20:28:01,074 INFO Connection check task end + +2025-09-24 20:28:03,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:04,075 INFO Connection check task start + +2025-09-24 20:28:04,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:04,075 INFO Out dated connection ,size=0 + +2025-09-24 20:28:04,075 INFO Connection check task end + +2025-09-24 20:28:06,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:07,075 INFO Connection check task start + +2025-09-24 20:28:07,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:07,075 INFO Out dated connection ,size=0 + +2025-09-24 20:28:07,075 INFO Connection check task end + +2025-09-24 20:28:09,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:10,075 INFO Connection check task start + +2025-09-24 20:28:10,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:10,075 INFO Out dated connection ,size=0 + +2025-09-24 20:28:10,075 INFO Connection check task end + +2025-09-24 20:28:12,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:13,076 INFO Connection check task start + +2025-09-24 20:28:13,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:13,076 INFO Out dated connection ,size=0 + +2025-09-24 20:28:13,076 INFO Connection check task end + +2025-09-24 20:28:15,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:16,076 INFO Connection check task start + +2025-09-24 20:28:16,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:16,076 INFO Out dated connection ,size=0 + +2025-09-24 20:28:16,076 INFO Connection check task end + +2025-09-24 20:28:18,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:19,077 INFO Connection check task start + +2025-09-24 20:28:19,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:19,077 INFO Out dated connection ,size=0 + +2025-09-24 20:28:19,077 INFO Connection check task end + +2025-09-24 20:28:21,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:22,077 INFO Connection check task start + +2025-09-24 20:28:22,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:22,077 INFO Out dated connection ,size=0 + +2025-09-24 20:28:22,077 INFO Connection check task end + +2025-09-24 20:28:24,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:25,078 INFO Connection check task start + +2025-09-24 20:28:25,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:25,078 INFO Out dated connection ,size=0 + +2025-09-24 20:28:25,078 INFO Connection check task end + +2025-09-24 20:28:27,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:28,080 INFO Connection check task start + +2025-09-24 20:28:28,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:28,080 INFO Out dated connection ,size=0 + +2025-09-24 20:28:28,080 INFO Connection check task end + +2025-09-24 20:28:30,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:31,080 INFO Connection check task start + +2025-09-24 20:28:31,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:31,080 INFO Out dated connection ,size=0 + +2025-09-24 20:28:31,080 INFO Connection check task end + +2025-09-24 20:28:33,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:34,080 INFO Connection check task start + +2025-09-24 20:28:34,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:34,081 INFO Out dated connection ,size=0 + +2025-09-24 20:28:34,081 INFO Connection check task end + +2025-09-24 20:28:36,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:37,081 INFO Connection check task start + +2025-09-24 20:28:37,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:37,081 INFO Out dated connection ,size=0 + +2025-09-24 20:28:37,081 INFO Connection check task end + +2025-09-24 20:28:39,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:40,081 INFO Connection check task start + +2025-09-24 20:28:40,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:40,082 INFO Out dated connection ,size=0 + +2025-09-24 20:28:40,082 INFO Connection check task end + +2025-09-24 20:28:42,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:43,083 INFO Connection check task start + +2025-09-24 20:28:43,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:43,083 INFO Out dated connection ,size=0 + +2025-09-24 20:28:43,083 INFO Connection check task end + +2025-09-24 20:28:45,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:46,084 INFO Connection check task start + +2025-09-24 20:28:46,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:46,084 INFO Out dated connection ,size=0 + +2025-09-24 20:28:46,084 INFO Connection check task end + +2025-09-24 20:28:48,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:49,084 INFO Connection check task start + +2025-09-24 20:28:49,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:49,084 INFO Out dated connection ,size=0 + +2025-09-24 20:28:49,084 INFO Connection check task end + +2025-09-24 20:28:51,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:52,085 INFO Connection check task start + +2025-09-24 20:28:52,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:52,085 INFO Out dated connection ,size=0 + +2025-09-24 20:28:52,085 INFO Connection check task end + +2025-09-24 20:28:54,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:55,085 INFO Connection check task start + +2025-09-24 20:28:55,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:55,085 INFO Out dated connection ,size=0 + +2025-09-24 20:28:55,086 INFO Connection check task end + +2025-09-24 20:28:57,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:28:58,086 INFO Connection check task start + +2025-09-24 20:28:58,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:28:58,086 INFO Out dated connection ,size=0 + +2025-09-24 20:28:58,086 INFO Connection check task end + +2025-09-24 20:29:00,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:01,086 INFO Connection check task start + +2025-09-24 20:29:01,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:01,086 INFO Out dated connection ,size=0 + +2025-09-24 20:29:01,086 INFO Connection check task end + +2025-09-24 20:29:03,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:04,087 INFO Connection check task start + +2025-09-24 20:29:04,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:04,087 INFO Out dated connection ,size=0 + +2025-09-24 20:29:04,087 INFO Connection check task end + +2025-09-24 20:29:06,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:07,088 INFO Connection check task start + +2025-09-24 20:29:07,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:07,088 INFO Out dated connection ,size=0 + +2025-09-24 20:29:07,088 INFO Connection check task end + +2025-09-24 20:29:09,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:10,088 INFO Connection check task start + +2025-09-24 20:29:10,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:10,088 INFO Out dated connection ,size=0 + +2025-09-24 20:29:10,089 INFO Connection check task end + +2025-09-24 20:29:12,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:13,089 INFO Connection check task start + +2025-09-24 20:29:13,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:13,089 INFO Out dated connection ,size=0 + +2025-09-24 20:29:13,089 INFO Connection check task end + +2025-09-24 20:29:15,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:16,090 INFO Connection check task start + +2025-09-24 20:29:16,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:16,090 INFO Out dated connection ,size=0 + +2025-09-24 20:29:16,090 INFO Connection check task end + +2025-09-24 20:29:18,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:19,090 INFO Connection check task start + +2025-09-24 20:29:19,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:19,090 INFO Out dated connection ,size=0 + +2025-09-24 20:29:19,090 INFO Connection check task end + +2025-09-24 20:29:21,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:22,090 INFO Connection check task start + +2025-09-24 20:29:22,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:22,090 INFO Out dated connection ,size=0 + +2025-09-24 20:29:22,090 INFO Connection check task end + +2025-09-24 20:29:24,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:25,091 INFO Connection check task start + +2025-09-24 20:29:25,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:25,091 INFO Out dated connection ,size=0 + +2025-09-24 20:29:25,091 INFO Connection check task end + +2025-09-24 20:29:27,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:28,091 INFO Connection check task start + +2025-09-24 20:29:28,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:28,091 INFO Out dated connection ,size=0 + +2025-09-24 20:29:28,091 INFO Connection check task end + +2025-09-24 20:29:30,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:31,091 INFO Connection check task start + +2025-09-24 20:29:31,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:31,092 INFO Out dated connection ,size=0 + +2025-09-24 20:29:31,092 INFO Connection check task end + +2025-09-24 20:29:33,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:34,092 INFO Connection check task start + +2025-09-24 20:29:34,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:34,092 INFO Out dated connection ,size=0 + +2025-09-24 20:29:34,092 INFO Connection check task end + +2025-09-24 20:29:36,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:37,094 INFO Connection check task start + +2025-09-24 20:29:37,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:37,094 INFO Out dated connection ,size=0 + +2025-09-24 20:29:37,094 INFO Connection check task end + +2025-09-24 20:29:39,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:40,094 INFO Connection check task start + +2025-09-24 20:29:40,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:40,095 INFO Out dated connection ,size=0 + +2025-09-24 20:29:40,095 INFO Connection check task end + +2025-09-24 20:29:42,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:43,095 INFO Connection check task start + +2025-09-24 20:29:43,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:43,095 INFO Out dated connection ,size=0 + +2025-09-24 20:29:43,095 INFO Connection check task end + +2025-09-24 20:29:45,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:46,097 INFO Connection check task start + +2025-09-24 20:29:46,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:46,097 INFO Out dated connection ,size=0 + +2025-09-24 20:29:46,097 INFO Connection check task end + +2025-09-24 20:29:48,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:49,097 INFO Connection check task start + +2025-09-24 20:29:49,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:49,097 INFO Out dated connection ,size=0 + +2025-09-24 20:29:49,097 INFO Connection check task end + +2025-09-24 20:29:51,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:52,098 INFO Connection check task start + +2025-09-24 20:29:52,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:52,098 INFO Out dated connection ,size=0 + +2025-09-24 20:29:52,098 INFO Connection check task end + +2025-09-24 20:29:54,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:55,099 INFO Connection check task start + +2025-09-24 20:29:55,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:55,099 INFO Out dated connection ,size=0 + +2025-09-24 20:29:55,099 INFO Connection check task end + +2025-09-24 20:29:57,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:29:58,101 INFO Connection check task start + +2025-09-24 20:29:58,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:29:58,101 INFO Out dated connection ,size=0 + +2025-09-24 20:29:58,101 INFO Connection check task end + +2025-09-24 20:30:00,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:01,103 INFO Connection check task start + +2025-09-24 20:30:01,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:01,103 INFO Out dated connection ,size=0 + +2025-09-24 20:30:01,103 INFO Connection check task end + +2025-09-24 20:30:03,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:04,104 INFO Connection check task start + +2025-09-24 20:30:04,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:04,104 INFO Out dated connection ,size=0 + +2025-09-24 20:30:04,104 INFO Connection check task end + +2025-09-24 20:30:06,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:07,105 INFO Connection check task start + +2025-09-24 20:30:07,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:07,105 INFO Out dated connection ,size=0 + +2025-09-24 20:30:07,105 INFO Connection check task end + +2025-09-24 20:30:09,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:10,106 INFO Connection check task start + +2025-09-24 20:30:10,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:10,106 INFO Out dated connection ,size=0 + +2025-09-24 20:30:10,106 INFO Connection check task end + +2025-09-24 20:30:12,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:13,106 INFO Connection check task start + +2025-09-24 20:30:13,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:13,106 INFO Out dated connection ,size=0 + +2025-09-24 20:30:13,106 INFO Connection check task end + +2025-09-24 20:30:15,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:16,108 INFO Connection check task start + +2025-09-24 20:30:16,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:16,108 INFO Out dated connection ,size=0 + +2025-09-24 20:30:16,108 INFO Connection check task end + +2025-09-24 20:30:18,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:19,109 INFO Connection check task start + +2025-09-24 20:30:19,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:19,109 INFO Out dated connection ,size=0 + +2025-09-24 20:30:19,109 INFO Connection check task end + +2025-09-24 20:30:21,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:22,110 INFO Connection check task start + +2025-09-24 20:30:22,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:22,110 INFO Out dated connection ,size=0 + +2025-09-24 20:30:22,110 INFO Connection check task end + +2025-09-24 20:30:24,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:25,112 INFO Connection check task start + +2025-09-24 20:30:25,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:25,112 INFO Out dated connection ,size=0 + +2025-09-24 20:30:25,112 INFO Connection check task end + +2025-09-24 20:30:27,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:28,112 INFO Connection check task start + +2025-09-24 20:30:28,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:28,112 INFO Out dated connection ,size=0 + +2025-09-24 20:30:28,112 INFO Connection check task end + +2025-09-24 20:30:30,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:31,114 INFO Connection check task start + +2025-09-24 20:30:31,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:31,114 INFO Out dated connection ,size=0 + +2025-09-24 20:30:31,114 INFO Connection check task end + +2025-09-24 20:30:33,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:34,114 INFO Connection check task start + +2025-09-24 20:30:34,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:34,115 INFO Out dated connection ,size=0 + +2025-09-24 20:30:34,115 INFO Connection check task end + +2025-09-24 20:30:36,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:37,116 INFO Connection check task start + +2025-09-24 20:30:37,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:37,116 INFO Out dated connection ,size=0 + +2025-09-24 20:30:37,116 INFO Connection check task end + +2025-09-24 20:30:39,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:40,117 INFO Connection check task start + +2025-09-24 20:30:40,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:40,117 INFO Out dated connection ,size=0 + +2025-09-24 20:30:40,117 INFO Connection check task end + +2025-09-24 20:30:42,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:43,118 INFO Connection check task start + +2025-09-24 20:30:43,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:43,118 INFO Out dated connection ,size=0 + +2025-09-24 20:30:43,118 INFO Connection check task end + +2025-09-24 20:30:45,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:46,120 INFO Connection check task start + +2025-09-24 20:30:46,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:46,121 INFO Out dated connection ,size=0 + +2025-09-24 20:30:46,121 INFO Connection check task end + +2025-09-24 20:30:48,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:49,123 INFO Connection check task start + +2025-09-24 20:30:49,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:49,123 INFO Out dated connection ,size=0 + +2025-09-24 20:30:49,123 INFO Connection check task end + +2025-09-24 20:30:51,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:52,123 INFO Connection check task start + +2025-09-24 20:30:52,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:52,123 INFO Out dated connection ,size=0 + +2025-09-24 20:30:52,123 INFO Connection check task end + +2025-09-24 20:30:54,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:55,125 INFO Connection check task start + +2025-09-24 20:30:55,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:55,125 INFO Out dated connection ,size=0 + +2025-09-24 20:30:55,125 INFO Connection check task end + +2025-09-24 20:30:57,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:30:58,126 INFO Connection check task start + +2025-09-24 20:30:58,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:30:58,126 INFO Out dated connection ,size=0 + +2025-09-24 20:30:58,126 INFO Connection check task end + +2025-09-24 20:31:00,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:01,127 INFO Connection check task start + +2025-09-24 20:31:01,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:01,127 INFO Out dated connection ,size=0 + +2025-09-24 20:31:01,127 INFO Connection check task end + +2025-09-24 20:31:03,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:04,127 INFO Connection check task start + +2025-09-24 20:31:04,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:04,128 INFO Out dated connection ,size=0 + +2025-09-24 20:31:04,128 INFO Connection check task end + +2025-09-24 20:31:06,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:07,129 INFO Connection check task start + +2025-09-24 20:31:07,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:07,129 INFO Out dated connection ,size=0 + +2025-09-24 20:31:07,129 INFO Connection check task end + +2025-09-24 20:31:09,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:10,129 INFO Connection check task start + +2025-09-24 20:31:10,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:10,130 INFO Out dated connection ,size=0 + +2025-09-24 20:31:10,130 INFO Connection check task end + +2025-09-24 20:31:12,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:13,130 INFO Connection check task start + +2025-09-24 20:31:13,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:13,131 INFO Out dated connection ,size=0 + +2025-09-24 20:31:13,131 INFO Connection check task end + +2025-09-24 20:31:15,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:16,132 INFO Connection check task start + +2025-09-24 20:31:16,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:16,132 INFO Out dated connection ,size=0 + +2025-09-24 20:31:16,132 INFO Connection check task end + +2025-09-24 20:31:18,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:19,133 INFO Connection check task start + +2025-09-24 20:31:19,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:19,133 INFO Out dated connection ,size=0 + +2025-09-24 20:31:19,133 INFO Connection check task end + +2025-09-24 20:31:21,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:22,133 INFO Connection check task start + +2025-09-24 20:31:22,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:22,133 INFO Out dated connection ,size=0 + +2025-09-24 20:31:22,133 INFO Connection check task end + +2025-09-24 20:31:24,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:25,134 INFO Connection check task start + +2025-09-24 20:31:25,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:25,134 INFO Out dated connection ,size=0 + +2025-09-24 20:31:25,134 INFO Connection check task end + +2025-09-24 20:31:27,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:28,134 INFO Connection check task start + +2025-09-24 20:31:28,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:28,134 INFO Out dated connection ,size=0 + +2025-09-24 20:31:28,134 INFO Connection check task end + +2025-09-24 20:31:30,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:31,135 INFO Connection check task start + +2025-09-24 20:31:31,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:31,135 INFO Out dated connection ,size=0 + +2025-09-24 20:31:31,135 INFO Connection check task end + +2025-09-24 20:31:33,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:34,135 INFO Connection check task start + +2025-09-24 20:31:34,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:34,136 INFO Out dated connection ,size=0 + +2025-09-24 20:31:34,136 INFO Connection check task end + +2025-09-24 20:31:36,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:37,138 INFO Connection check task start + +2025-09-24 20:31:37,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:37,138 INFO Out dated connection ,size=0 + +2025-09-24 20:31:37,138 INFO Connection check task end + +2025-09-24 20:31:39,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:40,140 INFO Connection check task start + +2025-09-24 20:31:40,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:40,140 INFO Out dated connection ,size=0 + +2025-09-24 20:31:40,140 INFO Connection check task end + +2025-09-24 20:31:42,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:43,142 INFO Connection check task start + +2025-09-24 20:31:43,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:43,142 INFO Out dated connection ,size=0 + +2025-09-24 20:31:43,142 INFO Connection check task end + +2025-09-24 20:31:45,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:46,143 INFO Connection check task start + +2025-09-24 20:31:46,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:46,143 INFO Out dated connection ,size=0 + +2025-09-24 20:31:46,143 INFO Connection check task end + +2025-09-24 20:31:48,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:49,145 INFO Connection check task start + +2025-09-24 20:31:49,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:49,145 INFO Out dated connection ,size=0 + +2025-09-24 20:31:49,145 INFO Connection check task end + +2025-09-24 20:31:51,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:52,147 INFO Connection check task start + +2025-09-24 20:31:52,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:52,147 INFO Out dated connection ,size=0 + +2025-09-24 20:31:52,147 INFO Connection check task end + +2025-09-24 20:31:54,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:55,149 INFO Connection check task start + +2025-09-24 20:31:55,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:55,149 INFO Out dated connection ,size=0 + +2025-09-24 20:31:55,149 INFO Connection check task end + +2025-09-24 20:31:57,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:31:58,149 INFO Connection check task start + +2025-09-24 20:31:58,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:31:58,150 INFO Out dated connection ,size=0 + +2025-09-24 20:31:58,150 INFO Connection check task end + +2025-09-24 20:32:00,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:01,150 INFO Connection check task start + +2025-09-24 20:32:01,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:01,151 INFO Out dated connection ,size=0 + +2025-09-24 20:32:01,151 INFO Connection check task end + +2025-09-24 20:32:03,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:04,151 INFO Connection check task start + +2025-09-24 20:32:04,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:04,151 INFO Out dated connection ,size=0 + +2025-09-24 20:32:04,151 INFO Connection check task end + +2025-09-24 20:32:06,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:07,152 INFO Connection check task start + +2025-09-24 20:32:07,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:07,152 INFO Out dated connection ,size=0 + +2025-09-24 20:32:07,152 INFO Connection check task end + +2025-09-24 20:32:09,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:10,154 INFO Connection check task start + +2025-09-24 20:32:10,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:10,154 INFO Out dated connection ,size=0 + +2025-09-24 20:32:10,154 INFO Connection check task end + +2025-09-24 20:32:12,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:13,154 INFO Connection check task start + +2025-09-24 20:32:13,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:13,155 INFO Out dated connection ,size=0 + +2025-09-24 20:32:13,155 INFO Connection check task end + +2025-09-24 20:32:15,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:16,156 INFO Connection check task start + +2025-09-24 20:32:16,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:16,156 INFO Out dated connection ,size=0 + +2025-09-24 20:32:16,156 INFO Connection check task end + +2025-09-24 20:32:18,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:19,157 INFO Connection check task start + +2025-09-24 20:32:19,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:19,165 INFO Out dated connection ,size=0 + +2025-09-24 20:32:19,165 INFO Connection check task end + +2025-09-24 20:32:21,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:22,165 INFO Connection check task start + +2025-09-24 20:32:22,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:22,166 INFO Out dated connection ,size=0 + +2025-09-24 20:32:22,166 INFO Connection check task end + +2025-09-24 20:32:24,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:25,166 INFO Connection check task start + +2025-09-24 20:32:25,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:25,166 INFO Out dated connection ,size=0 + +2025-09-24 20:32:25,166 INFO Connection check task end + +2025-09-24 20:32:27,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:28,168 INFO Connection check task start + +2025-09-24 20:32:28,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:28,168 INFO Out dated connection ,size=0 + +2025-09-24 20:32:28,168 INFO Connection check task end + +2025-09-24 20:32:30,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:31,169 INFO Connection check task start + +2025-09-24 20:32:31,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:31,169 INFO Out dated connection ,size=0 + +2025-09-24 20:32:31,169 INFO Connection check task end + +2025-09-24 20:32:33,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:34,170 INFO Connection check task start + +2025-09-24 20:32:34,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:34,170 INFO Out dated connection ,size=0 + +2025-09-24 20:32:34,170 INFO Connection check task end + +2025-09-24 20:32:36,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:37,173 INFO Connection check task start + +2025-09-24 20:32:37,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:37,173 INFO Out dated connection ,size=0 + +2025-09-24 20:32:37,173 INFO Connection check task end + +2025-09-24 20:32:39,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:40,173 INFO Connection check task start + +2025-09-24 20:32:40,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:40,173 INFO Out dated connection ,size=0 + +2025-09-24 20:32:40,173 INFO Connection check task end + +2025-09-24 20:32:42,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:43,174 INFO Connection check task start + +2025-09-24 20:32:43,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:43,174 INFO Out dated connection ,size=0 + +2025-09-24 20:32:43,174 INFO Connection check task end + +2025-09-24 20:32:45,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:46,176 INFO Connection check task start + +2025-09-24 20:32:46,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:46,176 INFO Out dated connection ,size=0 + +2025-09-24 20:32:46,176 INFO Connection check task end + +2025-09-24 20:32:48,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:49,178 INFO Connection check task start + +2025-09-24 20:32:49,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:49,178 INFO Out dated connection ,size=0 + +2025-09-24 20:32:49,178 INFO Connection check task end + +2025-09-24 20:32:51,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:52,180 INFO Connection check task start + +2025-09-24 20:32:52,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:52,181 INFO Out dated connection ,size=0 + +2025-09-24 20:32:52,181 INFO Connection check task end + +2025-09-24 20:32:54,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:55,183 INFO Connection check task start + +2025-09-24 20:32:55,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:55,183 INFO Out dated connection ,size=0 + +2025-09-24 20:32:55,183 INFO Connection check task end + +2025-09-24 20:32:57,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:32:58,183 INFO Connection check task start + +2025-09-24 20:32:58,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:32:58,183 INFO Out dated connection ,size=0 + +2025-09-24 20:32:58,183 INFO Connection check task end + +2025-09-24 20:33:00,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:01,185 INFO Connection check task start + +2025-09-24 20:33:01,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:01,185 INFO Out dated connection ,size=0 + +2025-09-24 20:33:01,185 INFO Connection check task end + +2025-09-24 20:33:03,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:04,187 INFO Connection check task start + +2025-09-24 20:33:04,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:04,187 INFO Out dated connection ,size=0 + +2025-09-24 20:33:04,187 INFO Connection check task end + +2025-09-24 20:33:06,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:07,189 INFO Connection check task start + +2025-09-24 20:33:07,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:07,189 INFO Out dated connection ,size=0 + +2025-09-24 20:33:07,189 INFO Connection check task end + +2025-09-24 20:33:09,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:10,189 INFO Connection check task start + +2025-09-24 20:33:10,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:10,189 INFO Out dated connection ,size=0 + +2025-09-24 20:33:10,189 INFO Connection check task end + +2025-09-24 20:33:12,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:13,190 INFO Connection check task start + +2025-09-24 20:33:13,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:13,190 INFO Out dated connection ,size=0 + +2025-09-24 20:33:13,190 INFO Connection check task end + +2025-09-24 20:33:15,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:16,191 INFO Connection check task start + +2025-09-24 20:33:16,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:16,191 INFO Out dated connection ,size=0 + +2025-09-24 20:33:16,191 INFO Connection check task end + +2025-09-24 20:33:18,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:19,192 INFO Connection check task start + +2025-09-24 20:33:19,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:19,192 INFO Out dated connection ,size=0 + +2025-09-24 20:33:19,192 INFO Connection check task end + +2025-09-24 20:33:21,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:22,192 INFO Connection check task start + +2025-09-24 20:33:22,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:22,192 INFO Out dated connection ,size=0 + +2025-09-24 20:33:22,192 INFO Connection check task end + +2025-09-24 20:33:24,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:25,194 INFO Connection check task start + +2025-09-24 20:33:25,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:25,194 INFO Out dated connection ,size=0 + +2025-09-24 20:33:25,194 INFO Connection check task end + +2025-09-24 20:33:27,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:28,195 INFO Connection check task start + +2025-09-24 20:33:28,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:28,195 INFO Out dated connection ,size=0 + +2025-09-24 20:33:28,195 INFO Connection check task end + +2025-09-24 20:33:30,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:31,195 INFO Connection check task start + +2025-09-24 20:33:31,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:31,196 INFO Out dated connection ,size=0 + +2025-09-24 20:33:31,196 INFO Connection check task end + +2025-09-24 20:33:33,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:34,197 INFO Connection check task start + +2025-09-24 20:33:34,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:34,198 INFO Out dated connection ,size=0 + +2025-09-24 20:33:34,198 INFO Connection check task end + +2025-09-24 20:33:36,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:37,198 INFO Connection check task start + +2025-09-24 20:33:37,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:37,198 INFO Out dated connection ,size=0 + +2025-09-24 20:33:37,198 INFO Connection check task end + +2025-09-24 20:33:39,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:40,198 INFO Connection check task start + +2025-09-24 20:33:40,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:40,199 INFO Out dated connection ,size=0 + +2025-09-24 20:33:40,199 INFO Connection check task end + +2025-09-24 20:33:42,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:43,200 INFO Connection check task start + +2025-09-24 20:33:43,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:43,200 INFO Out dated connection ,size=0 + +2025-09-24 20:33:43,200 INFO Connection check task end + +2025-09-24 20:33:45,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:46,201 INFO Connection check task start + +2025-09-24 20:33:46,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:46,201 INFO Out dated connection ,size=0 + +2025-09-24 20:33:46,201 INFO Connection check task end + +2025-09-24 20:33:48,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:49,202 INFO Connection check task start + +2025-09-24 20:33:49,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:49,203 INFO Out dated connection ,size=0 + +2025-09-24 20:33:49,203 INFO Connection check task end + +2025-09-24 20:33:51,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:52,203 INFO Connection check task start + +2025-09-24 20:33:52,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:52,204 INFO Out dated connection ,size=0 + +2025-09-24 20:33:52,204 INFO Connection check task end + +2025-09-24 20:33:54,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:55,204 INFO Connection check task start + +2025-09-24 20:33:55,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:55,204 INFO Out dated connection ,size=0 + +2025-09-24 20:33:55,204 INFO Connection check task end + +2025-09-24 20:33:57,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:33:58,206 INFO Connection check task start + +2025-09-24 20:33:58,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:33:58,206 INFO Out dated connection ,size=0 + +2025-09-24 20:33:58,206 INFO Connection check task end + +2025-09-24 20:34:00,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:01,209 INFO Connection check task start + +2025-09-24 20:34:01,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:01,209 INFO Out dated connection ,size=0 + +2025-09-24 20:34:01,209 INFO Connection check task end + +2025-09-24 20:34:03,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:04,211 INFO Connection check task start + +2025-09-24 20:34:04,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:04,211 INFO Out dated connection ,size=0 + +2025-09-24 20:34:04,211 INFO Connection check task end + +2025-09-24 20:34:06,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:07,213 INFO Connection check task start + +2025-09-24 20:34:07,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:07,213 INFO Out dated connection ,size=0 + +2025-09-24 20:34:07,214 INFO Connection check task end + +2025-09-24 20:34:09,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:10,216 INFO Connection check task start + +2025-09-24 20:34:10,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:10,216 INFO Out dated connection ,size=0 + +2025-09-24 20:34:10,216 INFO Connection check task end + +2025-09-24 20:34:12,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:13,216 INFO Connection check task start + +2025-09-24 20:34:13,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:13,217 INFO Out dated connection ,size=0 + +2025-09-24 20:34:13,217 INFO Connection check task end + +2025-09-24 20:34:15,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:16,218 INFO Connection check task start + +2025-09-24 20:34:16,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:16,218 INFO Out dated connection ,size=0 + +2025-09-24 20:34:16,218 INFO Connection check task end + +2025-09-24 20:34:18,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:19,218 INFO Connection check task start + +2025-09-24 20:34:19,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:19,218 INFO Out dated connection ,size=0 + +2025-09-24 20:34:19,218 INFO Connection check task end + +2025-09-24 20:34:21,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:22,219 INFO Connection check task start + +2025-09-24 20:34:22,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:22,219 INFO Out dated connection ,size=0 + +2025-09-24 20:34:22,219 INFO Connection check task end + +2025-09-24 20:34:24,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:25,220 INFO Connection check task start + +2025-09-24 20:34:25,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:25,220 INFO Out dated connection ,size=0 + +2025-09-24 20:34:25,220 INFO Connection check task end + +2025-09-24 20:34:27,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:28,223 INFO Connection check task start + +2025-09-24 20:34:28,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:28,223 INFO Out dated connection ,size=0 + +2025-09-24 20:34:28,223 INFO Connection check task end + +2025-09-24 20:34:30,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:31,225 INFO Connection check task start + +2025-09-24 20:34:31,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:31,225 INFO Out dated connection ,size=0 + +2025-09-24 20:34:31,225 INFO Connection check task end + +2025-09-24 20:34:33,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:34,227 INFO Connection check task start + +2025-09-24 20:34:34,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:34,227 INFO Out dated connection ,size=0 + +2025-09-24 20:34:34,227 INFO Connection check task end + +2025-09-24 20:34:36,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:37,229 INFO Connection check task start + +2025-09-24 20:34:37,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:37,229 INFO Out dated connection ,size=0 + +2025-09-24 20:34:37,229 INFO Connection check task end + +2025-09-24 20:34:39,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:40,229 INFO Connection check task start + +2025-09-24 20:34:40,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:40,230 INFO Out dated connection ,size=0 + +2025-09-24 20:34:40,230 INFO Connection check task end + +2025-09-24 20:34:42,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:43,231 INFO Connection check task start + +2025-09-24 20:34:43,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:43,231 INFO Out dated connection ,size=0 + +2025-09-24 20:34:43,231 INFO Connection check task end + +2025-09-24 20:34:45,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:46,233 INFO Connection check task start + +2025-09-24 20:34:46,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:46,234 INFO Out dated connection ,size=0 + +2025-09-24 20:34:46,234 INFO Connection check task end + +2025-09-24 20:34:48,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:49,234 INFO Connection check task start + +2025-09-24 20:34:49,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:49,234 INFO Out dated connection ,size=0 + +2025-09-24 20:34:49,234 INFO Connection check task end + +2025-09-24 20:34:51,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:52,235 INFO Connection check task start + +2025-09-24 20:34:52,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:52,235 INFO Out dated connection ,size=0 + +2025-09-24 20:34:52,235 INFO Connection check task end + +2025-09-24 20:34:54,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:55,236 INFO Connection check task start + +2025-09-24 20:34:55,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:55,236 INFO Out dated connection ,size=0 + +2025-09-24 20:34:55,236 INFO Connection check task end + +2025-09-24 20:34:57,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:34:58,236 INFO Connection check task start + +2025-09-24 20:34:58,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:34:58,236 INFO Out dated connection ,size=0 + +2025-09-24 20:34:58,236 INFO Connection check task end + +2025-09-24 20:35:00,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:01,238 INFO Connection check task start + +2025-09-24 20:35:01,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:01,239 INFO Out dated connection ,size=0 + +2025-09-24 20:35:01,239 INFO Connection check task end + +2025-09-24 20:35:03,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:04,241 INFO Connection check task start + +2025-09-24 20:35:04,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:04,241 INFO Out dated connection ,size=0 + +2025-09-24 20:35:04,241 INFO Connection check task end + +2025-09-24 20:35:06,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:07,242 INFO Connection check task start + +2025-09-24 20:35:07,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:07,242 INFO Out dated connection ,size=0 + +2025-09-24 20:35:07,242 INFO Connection check task end + +2025-09-24 20:35:09,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:10,243 INFO Connection check task start + +2025-09-24 20:35:10,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:10,244 INFO Out dated connection ,size=0 + +2025-09-24 20:35:10,244 INFO Connection check task end + +2025-09-24 20:35:12,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:13,244 INFO Connection check task start + +2025-09-24 20:35:13,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:13,244 INFO Out dated connection ,size=0 + +2025-09-24 20:35:13,244 INFO Connection check task end + +2025-09-24 20:35:15,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:16,246 INFO Connection check task start + +2025-09-24 20:35:16,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:16,247 INFO Out dated connection ,size=0 + +2025-09-24 20:35:16,247 INFO Connection check task end + +2025-09-24 20:35:18,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:19,249 INFO Connection check task start + +2025-09-24 20:35:19,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:19,249 INFO Out dated connection ,size=0 + +2025-09-24 20:35:19,249 INFO Connection check task end + +2025-09-24 20:35:21,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:22,250 INFO Connection check task start + +2025-09-24 20:35:22,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:22,250 INFO Out dated connection ,size=0 + +2025-09-24 20:35:22,250 INFO Connection check task end + +2025-09-24 20:35:24,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:25,251 INFO Connection check task start + +2025-09-24 20:35:25,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:25,251 INFO Out dated connection ,size=0 + +2025-09-24 20:35:25,251 INFO Connection check task end + +2025-09-24 20:35:27,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:28,251 INFO Connection check task start + +2025-09-24 20:35:28,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:28,251 INFO Out dated connection ,size=0 + +2025-09-24 20:35:28,252 INFO Connection check task end + +2025-09-24 20:35:30,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:31,253 INFO Connection check task start + +2025-09-24 20:35:31,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:31,254 INFO Out dated connection ,size=0 + +2025-09-24 20:35:31,254 INFO Connection check task end + +2025-09-24 20:35:33,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:34,254 INFO Connection check task start + +2025-09-24 20:35:34,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:34,267 INFO Out dated connection ,size=0 + +2025-09-24 20:35:34,267 INFO Connection check task end + +2025-09-24 20:35:36,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:37,268 INFO Connection check task start + +2025-09-24 20:35:37,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:37,268 INFO Out dated connection ,size=0 + +2025-09-24 20:35:37,268 INFO Connection check task end + +2025-09-24 20:35:39,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:40,270 INFO Connection check task start + +2025-09-24 20:35:40,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:40,271 INFO Out dated connection ,size=0 + +2025-09-24 20:35:40,271 INFO Connection check task end + +2025-09-24 20:35:42,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:43,272 INFO Connection check task start + +2025-09-24 20:35:43,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:43,272 INFO Out dated connection ,size=0 + +2025-09-24 20:35:43,272 INFO Connection check task end + +2025-09-24 20:35:45,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:46,272 INFO Connection check task start + +2025-09-24 20:35:46,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:46,272 INFO Out dated connection ,size=0 + +2025-09-24 20:35:46,273 INFO Connection check task end + +2025-09-24 20:35:48,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:49,275 INFO Connection check task start + +2025-09-24 20:35:49,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:49,275 INFO Out dated connection ,size=0 + +2025-09-24 20:35:49,275 INFO Connection check task end + +2025-09-24 20:35:51,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:52,276 INFO Connection check task start + +2025-09-24 20:35:52,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:52,276 INFO Out dated connection ,size=0 + +2025-09-24 20:35:52,276 INFO Connection check task end + +2025-09-24 20:35:54,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:55,276 INFO Connection check task start + +2025-09-24 20:35:55,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:55,276 INFO Out dated connection ,size=0 + +2025-09-24 20:35:55,276 INFO Connection check task end + +2025-09-24 20:35:57,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:35:58,277 INFO Connection check task start + +2025-09-24 20:35:58,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:35:58,277 INFO Out dated connection ,size=0 + +2025-09-24 20:35:58,277 INFO Connection check task end + +2025-09-24 20:36:00,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:01,277 INFO Connection check task start + +2025-09-24 20:36:01,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:01,278 INFO Out dated connection ,size=0 + +2025-09-24 20:36:01,278 INFO Connection check task end + +2025-09-24 20:36:03,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:04,278 INFO Connection check task start + +2025-09-24 20:36:04,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:04,278 INFO Out dated connection ,size=0 + +2025-09-24 20:36:04,278 INFO Connection check task end + +2025-09-24 20:36:06,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:07,280 INFO Connection check task start + +2025-09-24 20:36:07,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:07,281 INFO Out dated connection ,size=0 + +2025-09-24 20:36:07,281 INFO Connection check task end + +2025-09-24 20:36:09,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:10,282 INFO Connection check task start + +2025-09-24 20:36:10,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:10,282 INFO Out dated connection ,size=0 + +2025-09-24 20:36:10,282 INFO Connection check task end + +2025-09-24 20:36:12,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:13,283 INFO Connection check task start + +2025-09-24 20:36:13,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:13,283 INFO Out dated connection ,size=0 + +2025-09-24 20:36:13,283 INFO Connection check task end + +2025-09-24 20:36:15,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:16,286 INFO Connection check task start + +2025-09-24 20:36:16,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:16,286 INFO Out dated connection ,size=0 + +2025-09-24 20:36:16,286 INFO Connection check task end + +2025-09-24 20:36:18,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:19,287 INFO Connection check task start + +2025-09-24 20:36:19,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:19,287 INFO Out dated connection ,size=0 + +2025-09-24 20:36:19,287 INFO Connection check task end + +2025-09-24 20:36:21,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:22,297 INFO Connection check task start + +2025-09-24 20:36:22,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:22,297 INFO Out dated connection ,size=0 + +2025-09-24 20:36:22,297 INFO Connection check task end + +2025-09-24 20:36:24,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:25,299 INFO Connection check task start + +2025-09-24 20:36:25,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:25,300 INFO Out dated connection ,size=0 + +2025-09-24 20:36:25,300 INFO Connection check task end + +2025-09-24 20:36:27,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:28,300 INFO Connection check task start + +2025-09-24 20:36:28,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:28,300 INFO Out dated connection ,size=0 + +2025-09-24 20:36:28,300 INFO Connection check task end + +2025-09-24 20:36:30,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:31,301 INFO Connection check task start + +2025-09-24 20:36:31,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:31,301 INFO Out dated connection ,size=0 + +2025-09-24 20:36:31,301 INFO Connection check task end + +2025-09-24 20:36:33,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:34,303 INFO Connection check task start + +2025-09-24 20:36:34,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:34,303 INFO Out dated connection ,size=0 + +2025-09-24 20:36:34,303 INFO Connection check task end + +2025-09-24 20:36:36,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:37,305 INFO Connection check task start + +2025-09-24 20:36:37,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:37,305 INFO Out dated connection ,size=0 + +2025-09-24 20:36:37,305 INFO Connection check task end + +2025-09-24 20:36:39,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:40,305 INFO Connection check task start + +2025-09-24 20:36:40,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:40,306 INFO Out dated connection ,size=0 + +2025-09-24 20:36:40,306 INFO Connection check task end + +2025-09-24 20:36:42,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:43,306 INFO Connection check task start + +2025-09-24 20:36:43,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:43,307 INFO Out dated connection ,size=0 + +2025-09-24 20:36:43,307 INFO Connection check task end + +2025-09-24 20:36:45,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:46,308 INFO Connection check task start + +2025-09-24 20:36:46,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:46,308 INFO Out dated connection ,size=0 + +2025-09-24 20:36:46,308 INFO Connection check task end + +2025-09-24 20:36:48,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:49,308 INFO Connection check task start + +2025-09-24 20:36:49,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:49,308 INFO Out dated connection ,size=0 + +2025-09-24 20:36:49,309 INFO Connection check task end + +2025-09-24 20:36:51,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:52,310 INFO Connection check task start + +2025-09-24 20:36:52,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:52,310 INFO Out dated connection ,size=0 + +2025-09-24 20:36:52,310 INFO Connection check task end + +2025-09-24 20:36:54,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:55,312 INFO Connection check task start + +2025-09-24 20:36:55,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:55,312 INFO Out dated connection ,size=0 + +2025-09-24 20:36:55,312 INFO Connection check task end + +2025-09-24 20:36:57,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:36:58,313 INFO Connection check task start + +2025-09-24 20:36:58,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:36:58,313 INFO Out dated connection ,size=0 + +2025-09-24 20:36:58,313 INFO Connection check task end + +2025-09-24 20:37:00,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:01,313 INFO Connection check task start + +2025-09-24 20:37:01,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:01,313 INFO Out dated connection ,size=0 + +2025-09-24 20:37:01,313 INFO Connection check task end + +2025-09-24 20:37:03,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:04,314 INFO Connection check task start + +2025-09-24 20:37:04,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:04,314 INFO Out dated connection ,size=0 + +2025-09-24 20:37:04,314 INFO Connection check task end + +2025-09-24 20:37:06,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:07,315 INFO Connection check task start + +2025-09-24 20:37:07,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:07,315 INFO Out dated connection ,size=0 + +2025-09-24 20:37:07,315 INFO Connection check task end + +2025-09-24 20:37:09,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:10,316 INFO Connection check task start + +2025-09-24 20:37:10,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:10,316 INFO Out dated connection ,size=0 + +2025-09-24 20:37:10,316 INFO Connection check task end + +2025-09-24 20:37:12,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:13,316 INFO Connection check task start + +2025-09-24 20:37:13,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:13,316 INFO Out dated connection ,size=0 + +2025-09-24 20:37:13,316 INFO Connection check task end + +2025-09-24 20:37:15,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:16,317 INFO Connection check task start + +2025-09-24 20:37:16,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:16,317 INFO Out dated connection ,size=0 + +2025-09-24 20:37:16,317 INFO Connection check task end + +2025-09-24 20:37:18,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:19,318 INFO Connection check task start + +2025-09-24 20:37:19,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:19,318 INFO Out dated connection ,size=0 + +2025-09-24 20:37:19,318 INFO Connection check task end + +2025-09-24 20:37:21,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:22,319 INFO Connection check task start + +2025-09-24 20:37:22,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:22,319 INFO Out dated connection ,size=0 + +2025-09-24 20:37:22,319 INFO Connection check task end + +2025-09-24 20:37:24,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:25,321 INFO Connection check task start + +2025-09-24 20:37:25,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:25,321 INFO Out dated connection ,size=0 + +2025-09-24 20:37:25,321 INFO Connection check task end + +2025-09-24 20:37:27,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:28,323 INFO Connection check task start + +2025-09-24 20:37:28,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:28,323 INFO Out dated connection ,size=0 + +2025-09-24 20:37:28,323 INFO Connection check task end + +2025-09-24 20:37:30,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:31,324 INFO Connection check task start + +2025-09-24 20:37:31,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:31,324 INFO Out dated connection ,size=0 + +2025-09-24 20:37:31,324 INFO Connection check task end + +2025-09-24 20:37:33,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:34,326 INFO Connection check task start + +2025-09-24 20:37:34,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:34,326 INFO Out dated connection ,size=0 + +2025-09-24 20:37:34,326 INFO Connection check task end + +2025-09-24 20:37:36,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:37,327 INFO Connection check task start + +2025-09-24 20:37:37,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:37,327 INFO Out dated connection ,size=0 + +2025-09-24 20:37:37,327 INFO Connection check task end + +2025-09-24 20:37:39,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:40,329 INFO Connection check task start + +2025-09-24 20:37:40,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:40,329 INFO Out dated connection ,size=0 + +2025-09-24 20:37:40,329 INFO Connection check task end + +2025-09-24 20:37:42,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:43,330 INFO Connection check task start + +2025-09-24 20:37:43,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:43,330 INFO Out dated connection ,size=0 + +2025-09-24 20:37:43,330 INFO Connection check task end + +2025-09-24 20:37:45,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:46,331 INFO Connection check task start + +2025-09-24 20:37:46,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:46,331 INFO Out dated connection ,size=0 + +2025-09-24 20:37:46,331 INFO Connection check task end + +2025-09-24 20:37:48,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:49,333 INFO Connection check task start + +2025-09-24 20:37:49,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:49,333 INFO Out dated connection ,size=0 + +2025-09-24 20:37:49,334 INFO Connection check task end + +2025-09-24 20:37:51,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:52,334 INFO Connection check task start + +2025-09-24 20:37:52,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:52,334 INFO Out dated connection ,size=0 + +2025-09-24 20:37:52,334 INFO Connection check task end + +2025-09-24 20:37:54,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:55,335 INFO Connection check task start + +2025-09-24 20:37:55,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:55,335 INFO Out dated connection ,size=0 + +2025-09-24 20:37:55,335 INFO Connection check task end + +2025-09-24 20:37:57,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:37:58,336 INFO Connection check task start + +2025-09-24 20:37:58,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:37:58,336 INFO Out dated connection ,size=0 + +2025-09-24 20:37:58,336 INFO Connection check task end + +2025-09-24 20:38:00,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:01,337 INFO Connection check task start + +2025-09-24 20:38:01,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:01,337 INFO Out dated connection ,size=0 + +2025-09-24 20:38:01,337 INFO Connection check task end + +2025-09-24 20:38:03,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:04,339 INFO Connection check task start + +2025-09-24 20:38:04,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:04,339 INFO Out dated connection ,size=0 + +2025-09-24 20:38:04,339 INFO Connection check task end + +2025-09-24 20:38:06,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:07,339 INFO Connection check task start + +2025-09-24 20:38:07,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:07,339 INFO Out dated connection ,size=0 + +2025-09-24 20:38:07,339 INFO Connection check task end + +2025-09-24 20:38:09,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:10,342 INFO Connection check task start + +2025-09-24 20:38:10,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:10,342 INFO Out dated connection ,size=0 + +2025-09-24 20:38:10,342 INFO Connection check task end + +2025-09-24 20:38:12,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:13,342 INFO Connection check task start + +2025-09-24 20:38:13,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:13,342 INFO Out dated connection ,size=0 + +2025-09-24 20:38:13,342 INFO Connection check task end + +2025-09-24 20:38:15,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:16,344 INFO Connection check task start + +2025-09-24 20:38:16,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:16,344 INFO Out dated connection ,size=0 + +2025-09-24 20:38:16,344 INFO Connection check task end + +2025-09-24 20:38:18,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:19,345 INFO Connection check task start + +2025-09-24 20:38:19,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:19,345 INFO Out dated connection ,size=0 + +2025-09-24 20:38:19,345 INFO Connection check task end + +2025-09-24 20:38:21,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:22,346 INFO Connection check task start + +2025-09-24 20:38:22,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:22,346 INFO Out dated connection ,size=0 + +2025-09-24 20:38:22,346 INFO Connection check task end + +2025-09-24 20:38:24,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:25,346 INFO Connection check task start + +2025-09-24 20:38:25,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:25,346 INFO Out dated connection ,size=0 + +2025-09-24 20:38:25,346 INFO Connection check task end + +2025-09-24 20:38:27,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:28,348 INFO Connection check task start + +2025-09-24 20:38:28,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:28,349 INFO Out dated connection ,size=0 + +2025-09-24 20:38:28,349 INFO Connection check task end + +2025-09-24 20:38:30,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:31,349 INFO Connection check task start + +2025-09-24 20:38:31,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:31,349 INFO Out dated connection ,size=0 + +2025-09-24 20:38:31,349 INFO Connection check task end + +2025-09-24 20:38:33,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:34,351 INFO Connection check task start + +2025-09-24 20:38:34,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:34,351 INFO Out dated connection ,size=0 + +2025-09-24 20:38:34,351 INFO Connection check task end + +2025-09-24 20:38:36,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:37,353 INFO Connection check task start + +2025-09-24 20:38:37,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:37,354 INFO Out dated connection ,size=0 + +2025-09-24 20:38:37,354 INFO Connection check task end + +2025-09-24 20:38:39,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:40,354 INFO Connection check task start + +2025-09-24 20:38:40,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:40,354 INFO Out dated connection ,size=0 + +2025-09-24 20:38:40,354 INFO Connection check task end + +2025-09-24 20:38:42,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:43,355 INFO Connection check task start + +2025-09-24 20:38:43,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:43,355 INFO Out dated connection ,size=0 + +2025-09-24 20:38:43,355 INFO Connection check task end + +2025-09-24 20:38:45,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:46,357 INFO Connection check task start + +2025-09-24 20:38:46,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:46,357 INFO Out dated connection ,size=0 + +2025-09-24 20:38:46,357 INFO Connection check task end + +2025-09-24 20:38:48,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:49,359 INFO Connection check task start + +2025-09-24 20:38:49,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:49,359 INFO Out dated connection ,size=0 + +2025-09-24 20:38:49,359 INFO Connection check task end + +2025-09-24 20:38:51,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:52,361 INFO Connection check task start + +2025-09-24 20:38:52,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:52,361 INFO Out dated connection ,size=0 + +2025-09-24 20:38:52,361 INFO Connection check task end + +2025-09-24 20:38:54,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:55,361 INFO Connection check task start + +2025-09-24 20:38:55,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:55,361 INFO Out dated connection ,size=0 + +2025-09-24 20:38:55,361 INFO Connection check task end + +2025-09-24 20:38:57,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:38:58,363 INFO Connection check task start + +2025-09-24 20:38:58,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:38:58,363 INFO Out dated connection ,size=0 + +2025-09-24 20:38:58,363 INFO Connection check task end + +2025-09-24 20:39:00,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:01,363 INFO Connection check task start + +2025-09-24 20:39:01,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:01,363 INFO Out dated connection ,size=0 + +2025-09-24 20:39:01,363 INFO Connection check task end + +2025-09-24 20:39:03,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:04,365 INFO Connection check task start + +2025-09-24 20:39:04,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:04,366 INFO Out dated connection ,size=0 + +2025-09-24 20:39:04,366 INFO Connection check task end + +2025-09-24 20:39:06,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:07,367 INFO Connection check task start + +2025-09-24 20:39:07,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:07,367 INFO Out dated connection ,size=0 + +2025-09-24 20:39:07,367 INFO Connection check task end + +2025-09-24 20:39:09,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:10,367 INFO Connection check task start + +2025-09-24 20:39:10,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:10,368 INFO Out dated connection ,size=0 + +2025-09-24 20:39:10,368 INFO Connection check task end + +2025-09-24 20:39:12,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:13,369 INFO Connection check task start + +2025-09-24 20:39:13,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:13,369 INFO Out dated connection ,size=0 + +2025-09-24 20:39:13,369 INFO Connection check task end + +2025-09-24 20:39:15,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:16,369 INFO Connection check task start + +2025-09-24 20:39:16,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:16,369 INFO Out dated connection ,size=0 + +2025-09-24 20:39:16,369 INFO Connection check task end + +2025-09-24 20:39:18,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:19,370 INFO Connection check task start + +2025-09-24 20:39:19,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:19,370 INFO Out dated connection ,size=0 + +2025-09-24 20:39:19,370 INFO Connection check task end + +2025-09-24 20:39:21,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:22,370 INFO Connection check task start + +2025-09-24 20:39:22,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:22,370 INFO Out dated connection ,size=0 + +2025-09-24 20:39:22,370 INFO Connection check task end + +2025-09-24 20:39:24,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:25,371 INFO Connection check task start + +2025-09-24 20:39:25,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:25,371 INFO Out dated connection ,size=0 + +2025-09-24 20:39:25,371 INFO Connection check task end + +2025-09-24 20:39:27,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:28,373 INFO Connection check task start + +2025-09-24 20:39:28,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:28,373 INFO Out dated connection ,size=0 + +2025-09-24 20:39:28,373 INFO Connection check task end + +2025-09-24 20:39:30,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:31,375 INFO Connection check task start + +2025-09-24 20:39:31,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:31,375 INFO Out dated connection ,size=0 + +2025-09-24 20:39:31,375 INFO Connection check task end + +2025-09-24 20:39:33,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:34,376 INFO Connection check task start + +2025-09-24 20:39:34,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:34,376 INFO Out dated connection ,size=0 + +2025-09-24 20:39:34,376 INFO Connection check task end + +2025-09-24 20:39:36,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:37,378 INFO Connection check task start + +2025-09-24 20:39:37,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:37,378 INFO Out dated connection ,size=0 + +2025-09-24 20:39:37,378 INFO Connection check task end + +2025-09-24 20:39:39,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:40,379 INFO Connection check task start + +2025-09-24 20:39:40,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:40,379 INFO Out dated connection ,size=0 + +2025-09-24 20:39:40,379 INFO Connection check task end + +2025-09-24 20:39:42,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:43,380 INFO Connection check task start + +2025-09-24 20:39:43,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:43,380 INFO Out dated connection ,size=0 + +2025-09-24 20:39:43,380 INFO Connection check task end + +2025-09-24 20:39:45,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:46,380 INFO Connection check task start + +2025-09-24 20:39:46,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:46,380 INFO Out dated connection ,size=0 + +2025-09-24 20:39:46,380 INFO Connection check task end + +2025-09-24 20:39:48,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:49,382 INFO Connection check task start + +2025-09-24 20:39:49,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:49,383 INFO Out dated connection ,size=0 + +2025-09-24 20:39:49,383 INFO Connection check task end + +2025-09-24 20:39:51,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:52,384 INFO Connection check task start + +2025-09-24 20:39:52,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:52,384 INFO Out dated connection ,size=0 + +2025-09-24 20:39:52,384 INFO Connection check task end + +2025-09-24 20:39:54,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:55,384 INFO Connection check task start + +2025-09-24 20:39:55,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:55,385 INFO Out dated connection ,size=0 + +2025-09-24 20:39:55,385 INFO Connection check task end + +2025-09-24 20:39:57,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:39:58,385 INFO Connection check task start + +2025-09-24 20:39:58,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:39:58,385 INFO Out dated connection ,size=0 + +2025-09-24 20:39:58,385 INFO Connection check task end + +2025-09-24 20:40:00,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:01,386 INFO Connection check task start + +2025-09-24 20:40:01,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:01,386 INFO Out dated connection ,size=0 + +2025-09-24 20:40:01,386 INFO Connection check task end + +2025-09-24 20:40:03,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:04,387 INFO Connection check task start + +2025-09-24 20:40:04,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:04,387 INFO Out dated connection ,size=0 + +2025-09-24 20:40:04,387 INFO Connection check task end + +2025-09-24 20:40:06,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:07,389 INFO Connection check task start + +2025-09-24 20:40:07,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:07,389 INFO Out dated connection ,size=0 + +2025-09-24 20:40:07,389 INFO Connection check task end + +2025-09-24 20:40:09,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:10,391 INFO Connection check task start + +2025-09-24 20:40:10,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:10,392 INFO Out dated connection ,size=0 + +2025-09-24 20:40:10,392 INFO Connection check task end + +2025-09-24 20:40:12,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:13,392 INFO Connection check task start + +2025-09-24 20:40:13,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:13,392 INFO Out dated connection ,size=0 + +2025-09-24 20:40:13,392 INFO Connection check task end + +2025-09-24 20:40:15,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:16,392 INFO Connection check task start + +2025-09-24 20:40:16,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:16,393 INFO Out dated connection ,size=0 + +2025-09-24 20:40:16,393 INFO Connection check task end + +2025-09-24 20:40:18,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:19,393 INFO Connection check task start + +2025-09-24 20:40:19,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:19,393 INFO Out dated connection ,size=0 + +2025-09-24 20:40:19,393 INFO Connection check task end + +2025-09-24 20:40:21,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:22,395 INFO Connection check task start + +2025-09-24 20:40:22,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:22,395 INFO Out dated connection ,size=0 + +2025-09-24 20:40:22,395 INFO Connection check task end + +2025-09-24 20:40:24,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:25,397 INFO Connection check task start + +2025-09-24 20:40:25,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:25,397 INFO Out dated connection ,size=0 + +2025-09-24 20:40:25,397 INFO Connection check task end + +2025-09-24 20:40:27,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:28,398 INFO Connection check task start + +2025-09-24 20:40:28,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:28,398 INFO Out dated connection ,size=0 + +2025-09-24 20:40:28,398 INFO Connection check task end + +2025-09-24 20:40:30,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:31,398 INFO Connection check task start + +2025-09-24 20:40:31,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:31,398 INFO Out dated connection ,size=0 + +2025-09-24 20:40:31,398 INFO Connection check task end + +2025-09-24 20:40:33,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:34,399 INFO Connection check task start + +2025-09-24 20:40:34,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:34,399 INFO Out dated connection ,size=0 + +2025-09-24 20:40:34,399 INFO Connection check task end + +2025-09-24 20:40:36,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:37,399 INFO Connection check task start + +2025-09-24 20:40:37,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:37,399 INFO Out dated connection ,size=0 + +2025-09-24 20:40:37,399 INFO Connection check task end + +2025-09-24 20:40:39,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:40,402 INFO Connection check task start + +2025-09-24 20:40:40,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:40,402 INFO Out dated connection ,size=0 + +2025-09-24 20:40:40,402 INFO Connection check task end + +2025-09-24 20:40:42,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:43,403 INFO Connection check task start + +2025-09-24 20:40:43,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:43,403 INFO Out dated connection ,size=0 + +2025-09-24 20:40:43,403 INFO Connection check task end + +2025-09-24 20:40:45,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:46,405 INFO Connection check task start + +2025-09-24 20:40:46,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:46,405 INFO Out dated connection ,size=0 + +2025-09-24 20:40:46,405 INFO Connection check task end + +2025-09-24 20:40:48,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:49,406 INFO Connection check task start + +2025-09-24 20:40:49,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:49,406 INFO Out dated connection ,size=0 + +2025-09-24 20:40:49,407 INFO Connection check task end + +2025-09-24 20:40:51,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:52,408 INFO Connection check task start + +2025-09-24 20:40:52,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:52,408 INFO Out dated connection ,size=0 + +2025-09-24 20:40:52,408 INFO Connection check task end + +2025-09-24 20:40:54,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:55,408 INFO Connection check task start + +2025-09-24 20:40:55,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:55,408 INFO Out dated connection ,size=0 + +2025-09-24 20:40:55,408 INFO Connection check task end + +2025-09-24 20:40:57,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:40:58,409 INFO Connection check task start + +2025-09-24 20:40:58,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:40:58,409 INFO Out dated connection ,size=0 + +2025-09-24 20:40:58,409 INFO Connection check task end + +2025-09-24 20:41:00,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:01,411 INFO Connection check task start + +2025-09-24 20:41:01,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:01,411 INFO Out dated connection ,size=0 + +2025-09-24 20:41:01,411 INFO Connection check task end + +2025-09-24 20:41:03,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:04,412 INFO Connection check task start + +2025-09-24 20:41:04,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:04,412 INFO Out dated connection ,size=0 + +2025-09-24 20:41:04,412 INFO Connection check task end + +2025-09-24 20:41:06,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:07,414 INFO Connection check task start + +2025-09-24 20:41:07,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:07,414 INFO Out dated connection ,size=0 + +2025-09-24 20:41:07,414 INFO Connection check task end + +2025-09-24 20:41:09,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:10,415 INFO Connection check task start + +2025-09-24 20:41:10,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:10,415 INFO Out dated connection ,size=0 + +2025-09-24 20:41:10,415 INFO Connection check task end + +2025-09-24 20:41:12,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:13,416 INFO Connection check task start + +2025-09-24 20:41:13,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:13,416 INFO Out dated connection ,size=0 + +2025-09-24 20:41:13,416 INFO Connection check task end + +2025-09-24 20:41:15,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:16,417 INFO Connection check task start + +2025-09-24 20:41:16,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:16,417 INFO Out dated connection ,size=0 + +2025-09-24 20:41:16,417 INFO Connection check task end + +2025-09-24 20:41:18,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:19,418 INFO Connection check task start + +2025-09-24 20:41:19,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:19,418 INFO Out dated connection ,size=0 + +2025-09-24 20:41:19,418 INFO Connection check task end + +2025-09-24 20:41:21,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:22,420 INFO Connection check task start + +2025-09-24 20:41:22,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:22,420 INFO Out dated connection ,size=0 + +2025-09-24 20:41:22,421 INFO Connection check task end + +2025-09-24 20:41:24,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:25,421 INFO Connection check task start + +2025-09-24 20:41:25,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:25,421 INFO Out dated connection ,size=0 + +2025-09-24 20:41:25,421 INFO Connection check task end + +2025-09-24 20:41:27,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:28,421 INFO Connection check task start + +2025-09-24 20:41:28,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:28,422 INFO Out dated connection ,size=0 + +2025-09-24 20:41:28,422 INFO Connection check task end + +2025-09-24 20:41:30,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:31,423 INFO Connection check task start + +2025-09-24 20:41:31,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:31,424 INFO Out dated connection ,size=0 + +2025-09-24 20:41:31,424 INFO Connection check task end + +2025-09-24 20:41:33,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:34,425 INFO Connection check task start + +2025-09-24 20:41:34,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:34,426 INFO Out dated connection ,size=0 + +2025-09-24 20:41:34,426 INFO Connection check task end + +2025-09-24 20:41:36,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:37,426 INFO Connection check task start + +2025-09-24 20:41:37,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:37,427 INFO Out dated connection ,size=0 + +2025-09-24 20:41:37,427 INFO Connection check task end + +2025-09-24 20:41:39,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:40,428 INFO Connection check task start + +2025-09-24 20:41:40,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:40,428 INFO Out dated connection ,size=0 + +2025-09-24 20:41:40,428 INFO Connection check task end + +2025-09-24 20:41:42,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:43,429 INFO Connection check task start + +2025-09-24 20:41:43,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:43,429 INFO Out dated connection ,size=0 + +2025-09-24 20:41:43,429 INFO Connection check task end + +2025-09-24 20:41:45,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:46,429 INFO Connection check task start + +2025-09-24 20:41:46,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:46,429 INFO Out dated connection ,size=0 + +2025-09-24 20:41:46,429 INFO Connection check task end + +2025-09-24 20:41:48,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:49,431 INFO Connection check task start + +2025-09-24 20:41:49,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:49,432 INFO Out dated connection ,size=0 + +2025-09-24 20:41:49,432 INFO Connection check task end + +2025-09-24 20:41:51,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:52,432 INFO Connection check task start + +2025-09-24 20:41:52,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:52,432 INFO Out dated connection ,size=0 + +2025-09-24 20:41:52,432 INFO Connection check task end + +2025-09-24 20:41:54,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:55,433 INFO Connection check task start + +2025-09-24 20:41:55,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:55,433 INFO Out dated connection ,size=0 + +2025-09-24 20:41:55,433 INFO Connection check task end + +2025-09-24 20:41:57,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:41:58,435 INFO Connection check task start + +2025-09-24 20:41:58,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:41:58,435 INFO Out dated connection ,size=0 + +2025-09-24 20:41:58,435 INFO Connection check task end + +2025-09-24 20:42:00,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:01,436 INFO Connection check task start + +2025-09-24 20:42:01,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:01,436 INFO Out dated connection ,size=0 + +2025-09-24 20:42:01,436 INFO Connection check task end + +2025-09-24 20:42:03,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:04,438 INFO Connection check task start + +2025-09-24 20:42:04,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:04,438 INFO Out dated connection ,size=0 + +2025-09-24 20:42:04,439 INFO Connection check task end + +2025-09-24 20:42:06,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:07,440 INFO Connection check task start + +2025-09-24 20:42:07,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:07,441 INFO Out dated connection ,size=0 + +2025-09-24 20:42:07,441 INFO Connection check task end + +2025-09-24 20:42:09,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:10,442 INFO Connection check task start + +2025-09-24 20:42:10,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:10,442 INFO Out dated connection ,size=0 + +2025-09-24 20:42:10,442 INFO Connection check task end + +2025-09-24 20:42:12,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:13,443 INFO Connection check task start + +2025-09-24 20:42:13,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:13,443 INFO Out dated connection ,size=0 + +2025-09-24 20:42:13,443 INFO Connection check task end + +2025-09-24 20:42:15,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:16,444 INFO Connection check task start + +2025-09-24 20:42:16,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:16,444 INFO Out dated connection ,size=0 + +2025-09-24 20:42:16,444 INFO Connection check task end + +2025-09-24 20:42:18,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:19,446 INFO Connection check task start + +2025-09-24 20:42:19,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:19,447 INFO Out dated connection ,size=0 + +2025-09-24 20:42:19,447 INFO Connection check task end + +2025-09-24 20:42:21,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:22,447 INFO Connection check task start + +2025-09-24 20:42:22,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:22,447 INFO Out dated connection ,size=0 + +2025-09-24 20:42:22,447 INFO Connection check task end + +2025-09-24 20:42:24,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:25,449 INFO Connection check task start + +2025-09-24 20:42:25,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:25,449 INFO Out dated connection ,size=0 + +2025-09-24 20:42:25,449 INFO Connection check task end + +2025-09-24 20:42:28,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:28,451 INFO Connection check task start + +2025-09-24 20:42:28,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:28,451 INFO Out dated connection ,size=0 + +2025-09-24 20:42:28,451 INFO Connection check task end + +2025-09-24 20:42:31,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:31,453 INFO Connection check task start + +2025-09-24 20:42:31,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:31,453 INFO Out dated connection ,size=0 + +2025-09-24 20:42:31,453 INFO Connection check task end + +2025-09-24 20:42:34,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:34,454 INFO Connection check task start + +2025-09-24 20:42:34,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:34,454 INFO Out dated connection ,size=0 + +2025-09-24 20:42:34,455 INFO Connection check task end + +2025-09-24 20:42:37,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:37,456 INFO Connection check task start + +2025-09-24 20:42:37,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:37,456 INFO Out dated connection ,size=0 + +2025-09-24 20:42:37,457 INFO Connection check task end + +2025-09-24 20:42:40,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:40,457 INFO Connection check task start + +2025-09-24 20:42:40,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:40,457 INFO Out dated connection ,size=0 + +2025-09-24 20:42:40,457 INFO Connection check task end + +2025-09-24 20:42:43,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:43,459 INFO Connection check task start + +2025-09-24 20:42:43,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:43,459 INFO Out dated connection ,size=0 + +2025-09-24 20:42:43,459 INFO Connection check task end + +2025-09-24 20:42:46,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:46,460 INFO Connection check task start + +2025-09-24 20:42:46,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:46,460 INFO Out dated connection ,size=0 + +2025-09-24 20:42:46,460 INFO Connection check task end + +2025-09-24 20:42:49,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:49,461 INFO Connection check task start + +2025-09-24 20:42:49,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:49,461 INFO Out dated connection ,size=0 + +2025-09-24 20:42:49,461 INFO Connection check task end + +2025-09-24 20:42:52,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:52,462 INFO Connection check task start + +2025-09-24 20:42:52,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:52,462 INFO Out dated connection ,size=0 + +2025-09-24 20:42:52,462 INFO Connection check task end + +2025-09-24 20:42:55,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:55,462 INFO Connection check task start + +2025-09-24 20:42:55,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:55,463 INFO Out dated connection ,size=0 + +2025-09-24 20:42:55,463 INFO Connection check task end + +2025-09-24 20:42:58,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:42:58,463 INFO Connection check task start + +2025-09-24 20:42:58,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:42:58,463 INFO Out dated connection ,size=0 + +2025-09-24 20:42:58,463 INFO Connection check task end + +2025-09-24 20:43:01,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:01,465 INFO Connection check task start + +2025-09-24 20:43:01,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:01,465 INFO Out dated connection ,size=0 + +2025-09-24 20:43:01,465 INFO Connection check task end + +2025-09-24 20:43:04,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:04,467 INFO Connection check task start + +2025-09-24 20:43:04,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:04,467 INFO Out dated connection ,size=0 + +2025-09-24 20:43:04,467 INFO Connection check task end + +2025-09-24 20:43:07,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:07,469 INFO Connection check task start + +2025-09-24 20:43:07,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:07,470 INFO Out dated connection ,size=0 + +2025-09-24 20:43:07,470 INFO Connection check task end + +2025-09-24 20:43:10,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:10,470 INFO Connection check task start + +2025-09-24 20:43:10,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:10,470 INFO Out dated connection ,size=0 + +2025-09-24 20:43:10,470 INFO Connection check task end + +2025-09-24 20:43:13,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:13,470 INFO Connection check task start + +2025-09-24 20:43:13,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:13,470 INFO Out dated connection ,size=0 + +2025-09-24 20:43:13,470 INFO Connection check task end + +2025-09-24 20:43:16,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:16,471 INFO Connection check task start + +2025-09-24 20:43:16,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:16,471 INFO Out dated connection ,size=0 + +2025-09-24 20:43:16,471 INFO Connection check task end + +2025-09-24 20:43:19,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:19,471 INFO Connection check task start + +2025-09-24 20:43:19,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:19,471 INFO Out dated connection ,size=0 + +2025-09-24 20:43:19,471 INFO Connection check task end + +2025-09-24 20:43:22,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:22,472 INFO Connection check task start + +2025-09-24 20:43:22,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:22,472 INFO Out dated connection ,size=0 + +2025-09-24 20:43:22,472 INFO Connection check task end + +2025-09-24 20:43:25,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:25,473 INFO Connection check task start + +2025-09-24 20:43:25,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:25,473 INFO Out dated connection ,size=0 + +2025-09-24 20:43:25,473 INFO Connection check task end + +2025-09-24 20:43:28,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:28,475 INFO Connection check task start + +2025-09-24 20:43:28,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:28,475 INFO Out dated connection ,size=0 + +2025-09-24 20:43:28,476 INFO Connection check task end + +2025-09-24 20:43:31,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:31,476 INFO Connection check task start + +2025-09-24 20:43:31,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:31,477 INFO Out dated connection ,size=0 + +2025-09-24 20:43:31,477 INFO Connection check task end + +2025-09-24 20:43:34,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:34,478 INFO Connection check task start + +2025-09-24 20:43:34,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:34,478 INFO Out dated connection ,size=0 + +2025-09-24 20:43:34,478 INFO Connection check task end + +2025-09-24 20:43:37,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:37,478 INFO Connection check task start + +2025-09-24 20:43:37,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:37,478 INFO Out dated connection ,size=0 + +2025-09-24 20:43:37,479 INFO Connection check task end + +2025-09-24 20:43:40,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:40,481 INFO Connection check task start + +2025-09-24 20:43:40,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:40,481 INFO Out dated connection ,size=0 + +2025-09-24 20:43:40,481 INFO Connection check task end + +2025-09-24 20:43:43,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:43,483 INFO Connection check task start + +2025-09-24 20:43:43,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:43,483 INFO Out dated connection ,size=0 + +2025-09-24 20:43:43,483 INFO Connection check task end + +2025-09-24 20:43:46,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:46,483 INFO Connection check task start + +2025-09-24 20:43:46,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:46,483 INFO Out dated connection ,size=0 + +2025-09-24 20:43:46,484 INFO Connection check task end + +2025-09-24 20:43:49,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:49,484 INFO Connection check task start + +2025-09-24 20:43:49,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:49,484 INFO Out dated connection ,size=0 + +2025-09-24 20:43:49,484 INFO Connection check task end + +2025-09-24 20:43:52,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:52,484 INFO Connection check task start + +2025-09-24 20:43:52,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:52,484 INFO Out dated connection ,size=0 + +2025-09-24 20:43:52,484 INFO Connection check task end + +2025-09-24 20:43:55,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:55,486 INFO Connection check task start + +2025-09-24 20:43:55,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:55,487 INFO Out dated connection ,size=0 + +2025-09-24 20:43:55,487 INFO Connection check task end + +2025-09-24 20:43:58,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:43:58,487 INFO Connection check task start + +2025-09-24 20:43:58,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:43:58,487 INFO Out dated connection ,size=0 + +2025-09-24 20:43:58,487 INFO Connection check task end + +2025-09-24 20:44:01,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:01,488 INFO Connection check task start + +2025-09-24 20:44:01,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:01,488 INFO Out dated connection ,size=0 + +2025-09-24 20:44:01,488 INFO Connection check task end + +2025-09-24 20:44:04,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:04,489 INFO Connection check task start + +2025-09-24 20:44:04,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:04,489 INFO Out dated connection ,size=0 + +2025-09-24 20:44:04,489 INFO Connection check task end + +2025-09-24 20:44:07,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:07,490 INFO Connection check task start + +2025-09-24 20:44:07,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:07,490 INFO Out dated connection ,size=0 + +2025-09-24 20:44:07,490 INFO Connection check task end + +2025-09-24 20:44:10,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:10,492 INFO Connection check task start + +2025-09-24 20:44:10,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:10,492 INFO Out dated connection ,size=0 + +2025-09-24 20:44:10,492 INFO Connection check task end + +2025-09-24 20:44:13,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:13,493 INFO Connection check task start + +2025-09-24 20:44:13,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:13,493 INFO Out dated connection ,size=0 + +2025-09-24 20:44:13,493 INFO Connection check task end + +2025-09-24 20:44:16,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:16,495 INFO Connection check task start + +2025-09-24 20:44:16,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:16,495 INFO Out dated connection ,size=0 + +2025-09-24 20:44:16,495 INFO Connection check task end + +2025-09-24 20:44:19,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:19,496 INFO Connection check task start + +2025-09-24 20:44:19,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:19,496 INFO Out dated connection ,size=0 + +2025-09-24 20:44:19,496 INFO Connection check task end + +2025-09-24 20:44:22,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:22,497 INFO Connection check task start + +2025-09-24 20:44:22,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:22,498 INFO Out dated connection ,size=0 + +2025-09-24 20:44:22,498 INFO Connection check task end + +2025-09-24 20:44:25,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:25,500 INFO Connection check task start + +2025-09-24 20:44:25,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:25,500 INFO Out dated connection ,size=0 + +2025-09-24 20:44:25,500 INFO Connection check task end + +2025-09-24 20:44:28,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:28,500 INFO Connection check task start + +2025-09-24 20:44:28,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:28,500 INFO Out dated connection ,size=0 + +2025-09-24 20:44:28,500 INFO Connection check task end + +2025-09-24 20:44:31,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:31,502 INFO Connection check task start + +2025-09-24 20:44:31,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:31,503 INFO Out dated connection ,size=0 + +2025-09-24 20:44:31,503 INFO Connection check task end + +2025-09-24 20:44:34,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:34,503 INFO Connection check task start + +2025-09-24 20:44:34,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:34,503 INFO Out dated connection ,size=0 + +2025-09-24 20:44:34,504 INFO Connection check task end + +2025-09-24 20:44:37,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:37,505 INFO Connection check task start + +2025-09-24 20:44:37,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:37,505 INFO Out dated connection ,size=0 + +2025-09-24 20:44:37,505 INFO Connection check task end + +2025-09-24 20:44:40,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:40,509 INFO Connection check task start + +2025-09-24 20:44:40,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:40,509 INFO Out dated connection ,size=0 + +2025-09-24 20:44:40,509 INFO Connection check task end + +2025-09-24 20:44:43,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:43,509 INFO Connection check task start + +2025-09-24 20:44:43,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:43,509 INFO Out dated connection ,size=0 + +2025-09-24 20:44:43,509 INFO Connection check task end + +2025-09-24 20:44:46,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:46,511 INFO Connection check task start + +2025-09-24 20:44:46,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:46,511 INFO Out dated connection ,size=0 + +2025-09-24 20:44:46,511 INFO Connection check task end + +2025-09-24 20:44:49,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:49,513 INFO Connection check task start + +2025-09-24 20:44:49,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:49,513 INFO Out dated connection ,size=0 + +2025-09-24 20:44:49,513 INFO Connection check task end + +2025-09-24 20:44:52,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:52,515 INFO Connection check task start + +2025-09-24 20:44:52,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:52,515 INFO Out dated connection ,size=0 + +2025-09-24 20:44:52,515 INFO Connection check task end + +2025-09-24 20:44:55,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:55,517 INFO Connection check task start + +2025-09-24 20:44:55,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:55,517 INFO Out dated connection ,size=0 + +2025-09-24 20:44:55,517 INFO Connection check task end + +2025-09-24 20:44:58,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:44:58,518 INFO Connection check task start + +2025-09-24 20:44:58,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:44:58,518 INFO Out dated connection ,size=0 + +2025-09-24 20:44:58,518 INFO Connection check task end + +2025-09-24 20:45:01,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:01,519 INFO Connection check task start + +2025-09-24 20:45:01,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:01,520 INFO Out dated connection ,size=0 + +2025-09-24 20:45:01,520 INFO Connection check task end + +2025-09-24 20:45:04,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:04,521 INFO Connection check task start + +2025-09-24 20:45:04,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:04,521 INFO Out dated connection ,size=0 + +2025-09-24 20:45:04,521 INFO Connection check task end + +2025-09-24 20:45:07,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:07,521 INFO Connection check task start + +2025-09-24 20:45:07,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:07,521 INFO Out dated connection ,size=0 + +2025-09-24 20:45:07,521 INFO Connection check task end + +2025-09-24 20:45:10,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:10,522 INFO Connection check task start + +2025-09-24 20:45:10,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:10,522 INFO Out dated connection ,size=0 + +2025-09-24 20:45:10,522 INFO Connection check task end + +2025-09-24 20:45:13,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:13,523 INFO Connection check task start + +2025-09-24 20:45:13,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:13,523 INFO Out dated connection ,size=0 + +2025-09-24 20:45:13,523 INFO Connection check task end + +2025-09-24 20:45:16,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:16,524 INFO Connection check task start + +2025-09-24 20:45:16,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:16,525 INFO Out dated connection ,size=0 + +2025-09-24 20:45:16,525 INFO Connection check task end + +2025-09-24 20:45:19,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:19,525 INFO Connection check task start + +2025-09-24 20:45:19,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:19,525 INFO Out dated connection ,size=0 + +2025-09-24 20:45:19,525 INFO Connection check task end + +2025-09-24 20:45:22,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:22,526 INFO Connection check task start + +2025-09-24 20:45:22,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:22,526 INFO Out dated connection ,size=0 + +2025-09-24 20:45:22,526 INFO Connection check task end + +2025-09-24 20:45:25,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:25,528 INFO Connection check task start + +2025-09-24 20:45:25,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:25,528 INFO Out dated connection ,size=0 + +2025-09-24 20:45:25,528 INFO Connection check task end + +2025-09-24 20:45:28,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:28,528 INFO Connection check task start + +2025-09-24 20:45:28,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:28,528 INFO Out dated connection ,size=0 + +2025-09-24 20:45:28,528 INFO Connection check task end + +2025-09-24 20:45:31,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:31,528 INFO Connection check task start + +2025-09-24 20:45:31,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:31,529 INFO Out dated connection ,size=0 + +2025-09-24 20:45:31,529 INFO Connection check task end + +2025-09-24 20:45:34,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:34,530 INFO Connection check task start + +2025-09-24 20:45:34,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:34,530 INFO Out dated connection ,size=0 + +2025-09-24 20:45:34,530 INFO Connection check task end + +2025-09-24 20:45:37,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:37,531 INFO Connection check task start + +2025-09-24 20:45:37,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:37,532 INFO Out dated connection ,size=0 + +2025-09-24 20:45:37,532 INFO Connection check task end + +2025-09-24 20:45:40,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:40,532 INFO Connection check task start + +2025-09-24 20:45:40,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:40,532 INFO Out dated connection ,size=0 + +2025-09-24 20:45:40,532 INFO Connection check task end + +2025-09-24 20:45:43,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:43,533 INFO Connection check task start + +2025-09-24 20:45:43,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:43,533 INFO Out dated connection ,size=0 + +2025-09-24 20:45:43,533 INFO Connection check task end + +2025-09-24 20:45:46,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:46,535 INFO Connection check task start + +2025-09-24 20:45:46,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:46,535 INFO Out dated connection ,size=0 + +2025-09-24 20:45:46,535 INFO Connection check task end + +2025-09-24 20:45:49,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:49,536 INFO Connection check task start + +2025-09-24 20:45:49,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:49,536 INFO Out dated connection ,size=0 + +2025-09-24 20:45:49,536 INFO Connection check task end + +2025-09-24 20:45:52,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:52,538 INFO Connection check task start + +2025-09-24 20:45:52,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:52,538 INFO Out dated connection ,size=0 + +2025-09-24 20:45:52,538 INFO Connection check task end + +2025-09-24 20:45:55,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:55,540 INFO Connection check task start + +2025-09-24 20:45:55,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:55,540 INFO Out dated connection ,size=0 + +2025-09-24 20:45:55,540 INFO Connection check task end + +2025-09-24 20:45:58,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:45:58,540 INFO Connection check task start + +2025-09-24 20:45:58,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:45:58,541 INFO Out dated connection ,size=0 + +2025-09-24 20:45:58,541 INFO Connection check task end + +2025-09-24 20:46:01,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:01,543 INFO Connection check task start + +2025-09-24 20:46:01,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:01,543 INFO Out dated connection ,size=0 + +2025-09-24 20:46:01,543 INFO Connection check task end + +2025-09-24 20:46:04,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:04,544 INFO Connection check task start + +2025-09-24 20:46:04,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:04,544 INFO Out dated connection ,size=0 + +2025-09-24 20:46:04,545 INFO Connection check task end + +2025-09-24 20:46:07,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:07,545 INFO Connection check task start + +2025-09-24 20:46:07,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:07,545 INFO Out dated connection ,size=0 + +2025-09-24 20:46:07,545 INFO Connection check task end + +2025-09-24 20:46:10,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:10,547 INFO Connection check task start + +2025-09-24 20:46:10,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:10,548 INFO Out dated connection ,size=0 + +2025-09-24 20:46:10,548 INFO Connection check task end + +2025-09-24 20:46:13,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:13,548 INFO Connection check task start + +2025-09-24 20:46:13,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:13,548 INFO Out dated connection ,size=0 + +2025-09-24 20:46:13,548 INFO Connection check task end + +2025-09-24 20:46:16,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:16,550 INFO Connection check task start + +2025-09-24 20:46:16,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:16,550 INFO Out dated connection ,size=0 + +2025-09-24 20:46:16,550 INFO Connection check task end + +2025-09-24 20:46:19,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:19,551 INFO Connection check task start + +2025-09-24 20:46:19,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:19,551 INFO Out dated connection ,size=0 + +2025-09-24 20:46:19,551 INFO Connection check task end + +2025-09-24 20:46:22,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:22,553 INFO Connection check task start + +2025-09-24 20:46:22,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:22,553 INFO Out dated connection ,size=0 + +2025-09-24 20:46:22,553 INFO Connection check task end + +2025-09-24 20:46:25,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:25,553 INFO Connection check task start + +2025-09-24 20:46:25,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:25,553 INFO Out dated connection ,size=0 + +2025-09-24 20:46:25,554 INFO Connection check task end + +2025-09-24 20:46:28,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:28,554 INFO Connection check task start + +2025-09-24 20:46:28,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:28,555 INFO Out dated connection ,size=0 + +2025-09-24 20:46:28,555 INFO Connection check task end + +2025-09-24 20:46:31,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:31,555 INFO Connection check task start + +2025-09-24 20:46:31,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:31,555 INFO Out dated connection ,size=0 + +2025-09-24 20:46:31,555 INFO Connection check task end + +2025-09-24 20:46:34,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:34,557 INFO Connection check task start + +2025-09-24 20:46:34,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:34,558 INFO Out dated connection ,size=0 + +2025-09-24 20:46:34,558 INFO Connection check task end + +2025-09-24 20:46:37,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:37,559 INFO Connection check task start + +2025-09-24 20:46:37,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:37,559 INFO Out dated connection ,size=0 + +2025-09-24 20:46:37,559 INFO Connection check task end + +2025-09-24 20:46:40,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:40,560 INFO Connection check task start + +2025-09-24 20:46:40,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:40,560 INFO Out dated connection ,size=0 + +2025-09-24 20:46:40,560 INFO Connection check task end + +2025-09-24 20:46:43,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:43,562 INFO Connection check task start + +2025-09-24 20:46:43,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:43,562 INFO Out dated connection ,size=0 + +2025-09-24 20:46:43,562 INFO Connection check task end + +2025-09-24 20:46:46,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:46,565 INFO Connection check task start + +2025-09-24 20:46:46,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:46,565 INFO Out dated connection ,size=0 + +2025-09-24 20:46:46,565 INFO Connection check task end + +2025-09-24 20:46:49,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:49,567 INFO Connection check task start + +2025-09-24 20:46:49,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:49,567 INFO Out dated connection ,size=0 + +2025-09-24 20:46:49,567 INFO Connection check task end + +2025-09-24 20:46:52,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:52,568 INFO Connection check task start + +2025-09-24 20:46:52,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:52,568 INFO Out dated connection ,size=0 + +2025-09-24 20:46:52,568 INFO Connection check task end + +2025-09-24 20:46:55,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:55,568 INFO Connection check task start + +2025-09-24 20:46:55,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:55,568 INFO Out dated connection ,size=0 + +2025-09-24 20:46:55,568 INFO Connection check task end + +2025-09-24 20:46:58,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:46:58,569 INFO Connection check task start + +2025-09-24 20:46:58,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:46:58,570 INFO Out dated connection ,size=0 + +2025-09-24 20:46:58,570 INFO Connection check task end + +2025-09-24 20:47:01,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:01,572 INFO Connection check task start + +2025-09-24 20:47:01,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:01,572 INFO Out dated connection ,size=0 + +2025-09-24 20:47:01,572 INFO Connection check task end + +2025-09-24 20:47:04,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:04,572 INFO Connection check task start + +2025-09-24 20:47:04,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:04,573 INFO Out dated connection ,size=0 + +2025-09-24 20:47:04,573 INFO Connection check task end + +2025-09-24 20:47:07,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:07,575 INFO Connection check task start + +2025-09-24 20:47:07,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:07,575 INFO Out dated connection ,size=0 + +2025-09-24 20:47:07,575 INFO Connection check task end + +2025-09-24 20:47:10,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:10,575 INFO Connection check task start + +2025-09-24 20:47:10,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:10,576 INFO Out dated connection ,size=0 + +2025-09-24 20:47:10,576 INFO Connection check task end + +2025-09-24 20:47:13,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:13,578 INFO Connection check task start + +2025-09-24 20:47:13,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:13,578 INFO Out dated connection ,size=0 + +2025-09-24 20:47:13,578 INFO Connection check task end + +2025-09-24 20:47:16,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:16,578 INFO Connection check task start + +2025-09-24 20:47:16,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:16,578 INFO Out dated connection ,size=0 + +2025-09-24 20:47:16,578 INFO Connection check task end + +2025-09-24 20:47:19,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:19,579 INFO Connection check task start + +2025-09-24 20:47:19,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:19,579 INFO Out dated connection ,size=0 + +2025-09-24 20:47:19,579 INFO Connection check task end + +2025-09-24 20:47:22,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:22,579 INFO Connection check task start + +2025-09-24 20:47:22,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:22,579 INFO Out dated connection ,size=0 + +2025-09-24 20:47:22,579 INFO Connection check task end + +2025-09-24 20:47:25,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:25,580 INFO Connection check task start + +2025-09-24 20:47:25,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:25,580 INFO Out dated connection ,size=0 + +2025-09-24 20:47:25,580 INFO Connection check task end + +2025-09-24 20:47:28,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:28,582 INFO Connection check task start + +2025-09-24 20:47:28,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:28,582 INFO Out dated connection ,size=0 + +2025-09-24 20:47:28,582 INFO Connection check task end + +2025-09-24 20:47:31,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:31,584 INFO Connection check task start + +2025-09-24 20:47:31,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:31,584 INFO Out dated connection ,size=0 + +2025-09-24 20:47:31,584 INFO Connection check task end + +2025-09-24 20:47:34,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:34,584 INFO Connection check task start + +2025-09-24 20:47:34,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:34,585 INFO Out dated connection ,size=0 + +2025-09-24 20:47:34,585 INFO Connection check task end + +2025-09-24 20:47:37,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:37,585 INFO Connection check task start + +2025-09-24 20:47:37,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:37,585 INFO Out dated connection ,size=0 + +2025-09-24 20:47:37,585 INFO Connection check task end + +2025-09-24 20:47:40,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:40,587 INFO Connection check task start + +2025-09-24 20:47:40,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:40,588 INFO Out dated connection ,size=0 + +2025-09-24 20:47:40,588 INFO Connection check task end + +2025-09-24 20:47:43,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:43,590 INFO Connection check task start + +2025-09-24 20:47:43,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:43,590 INFO Out dated connection ,size=0 + +2025-09-24 20:47:43,590 INFO Connection check task end + +2025-09-24 20:47:46,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:46,591 INFO Connection check task start + +2025-09-24 20:47:46,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:46,591 INFO Out dated connection ,size=0 + +2025-09-24 20:47:46,591 INFO Connection check task end + +2025-09-24 20:47:49,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:49,593 INFO Connection check task start + +2025-09-24 20:47:49,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:49,593 INFO Out dated connection ,size=0 + +2025-09-24 20:47:49,593 INFO Connection check task end + +2025-09-24 20:47:52,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:52,594 INFO Connection check task start + +2025-09-24 20:47:52,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:52,595 INFO Out dated connection ,size=0 + +2025-09-24 20:47:52,595 INFO Connection check task end + +2025-09-24 20:47:55,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:55,597 INFO Connection check task start + +2025-09-24 20:47:55,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:55,597 INFO Out dated connection ,size=0 + +2025-09-24 20:47:55,597 INFO Connection check task end + +2025-09-24 20:47:58,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:47:58,597 INFO Connection check task start + +2025-09-24 20:47:58,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:47:58,597 INFO Out dated connection ,size=0 + +2025-09-24 20:47:58,597 INFO Connection check task end + +2025-09-24 20:48:01,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:01,598 INFO Connection check task start + +2025-09-24 20:48:01,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:01,598 INFO Out dated connection ,size=0 + +2025-09-24 20:48:01,598 INFO Connection check task end + +2025-09-24 20:48:04,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:04,600 INFO Connection check task start + +2025-09-24 20:48:04,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:04,600 INFO Out dated connection ,size=0 + +2025-09-24 20:48:04,600 INFO Connection check task end + +2025-09-24 20:48:07,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:07,602 INFO Connection check task start + +2025-09-24 20:48:07,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:07,602 INFO Out dated connection ,size=0 + +2025-09-24 20:48:07,602 INFO Connection check task end + +2025-09-24 20:48:10,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:10,604 INFO Connection check task start + +2025-09-24 20:48:10,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:10,604 INFO Out dated connection ,size=0 + +2025-09-24 20:48:10,604 INFO Connection check task end + +2025-09-24 20:48:13,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:13,605 INFO Connection check task start + +2025-09-24 20:48:13,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:13,605 INFO Out dated connection ,size=0 + +2025-09-24 20:48:13,605 INFO Connection check task end + +2025-09-24 20:48:16,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:16,605 INFO Connection check task start + +2025-09-24 20:48:16,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:16,606 INFO Out dated connection ,size=0 + +2025-09-24 20:48:16,606 INFO Connection check task end + +2025-09-24 20:48:19,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:19,606 INFO Connection check task start + +2025-09-24 20:48:19,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:19,606 INFO Out dated connection ,size=0 + +2025-09-24 20:48:19,606 INFO Connection check task end + +2025-09-24 20:48:22,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:22,608 INFO Connection check task start + +2025-09-24 20:48:22,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:22,608 INFO Out dated connection ,size=0 + +2025-09-24 20:48:22,609 INFO Connection check task end + +2025-09-24 20:48:25,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:25,610 INFO Connection check task start + +2025-09-24 20:48:25,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:25,610 INFO Out dated connection ,size=0 + +2025-09-24 20:48:25,610 INFO Connection check task end + +2025-09-24 20:48:28,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:28,610 INFO Connection check task start + +2025-09-24 20:48:28,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:28,610 INFO Out dated connection ,size=0 + +2025-09-24 20:48:28,611 INFO Connection check task end + +2025-09-24 20:48:31,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:31,611 INFO Connection check task start + +2025-09-24 20:48:31,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:31,612 INFO Out dated connection ,size=0 + +2025-09-24 20:48:31,612 INFO Connection check task end + +2025-09-24 20:48:34,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:34,612 INFO Connection check task start + +2025-09-24 20:48:34,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:34,612 INFO Out dated connection ,size=0 + +2025-09-24 20:48:34,612 INFO Connection check task end + +2025-09-24 20:48:37,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:37,614 INFO Connection check task start + +2025-09-24 20:48:37,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:37,614 INFO Out dated connection ,size=0 + +2025-09-24 20:48:37,614 INFO Connection check task end + +2025-09-24 20:48:40,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:40,615 INFO Connection check task start + +2025-09-24 20:48:40,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:40,615 INFO Out dated connection ,size=0 + +2025-09-24 20:48:40,615 INFO Connection check task end + +2025-09-24 20:48:43,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:43,617 INFO Connection check task start + +2025-09-24 20:48:43,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:43,617 INFO Out dated connection ,size=0 + +2025-09-24 20:48:43,617 INFO Connection check task end + +2025-09-24 20:48:46,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:46,617 INFO Connection check task start + +2025-09-24 20:48:46,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:46,618 INFO Out dated connection ,size=0 + +2025-09-24 20:48:46,618 INFO Connection check task end + +2025-09-24 20:48:49,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:49,618 INFO Connection check task start + +2025-09-24 20:48:49,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:49,618 INFO Out dated connection ,size=0 + +2025-09-24 20:48:49,619 INFO Connection check task end + +2025-09-24 20:48:52,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:52,621 INFO Connection check task start + +2025-09-24 20:48:52,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:52,621 INFO Out dated connection ,size=0 + +2025-09-24 20:48:52,621 INFO Connection check task end + +2025-09-24 20:48:55,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:55,621 INFO Connection check task start + +2025-09-24 20:48:55,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:55,622 INFO Out dated connection ,size=0 + +2025-09-24 20:48:55,622 INFO Connection check task end + +2025-09-24 20:48:58,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:48:58,622 INFO Connection check task start + +2025-09-24 20:48:58,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:48:58,622 INFO Out dated connection ,size=0 + +2025-09-24 20:48:58,622 INFO Connection check task end + +2025-09-24 20:49:01,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:01,624 INFO Connection check task start + +2025-09-24 20:49:01,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:01,624 INFO Out dated connection ,size=0 + +2025-09-24 20:49:01,624 INFO Connection check task end + +2025-09-24 20:49:04,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:04,624 INFO Connection check task start + +2025-09-24 20:49:04,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:04,625 INFO Out dated connection ,size=0 + +2025-09-24 20:49:04,625 INFO Connection check task end + +2025-09-24 20:49:07,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:07,625 INFO Connection check task start + +2025-09-24 20:49:07,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:07,625 INFO Out dated connection ,size=0 + +2025-09-24 20:49:07,625 INFO Connection check task end + +2025-09-24 20:49:10,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:10,627 INFO Connection check task start + +2025-09-24 20:49:10,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:10,627 INFO Out dated connection ,size=0 + +2025-09-24 20:49:10,627 INFO Connection check task end + +2025-09-24 20:49:13,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:13,627 INFO Connection check task start + +2025-09-24 20:49:13,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:13,628 INFO Out dated connection ,size=0 + +2025-09-24 20:49:13,628 INFO Connection check task end + +2025-09-24 20:49:16,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:16,628 INFO Connection check task start + +2025-09-24 20:49:16,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:16,629 INFO Out dated connection ,size=0 + +2025-09-24 20:49:16,629 INFO Connection check task end + +2025-09-24 20:49:19,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:19,630 INFO Connection check task start + +2025-09-24 20:49:19,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:19,630 INFO Out dated connection ,size=0 + +2025-09-24 20:49:19,630 INFO Connection check task end + +2025-09-24 20:49:22,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:22,631 INFO Connection check task start + +2025-09-24 20:49:22,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:22,631 INFO Out dated connection ,size=0 + +2025-09-24 20:49:22,631 INFO Connection check task end + +2025-09-24 20:49:25,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:25,631 INFO Connection check task start + +2025-09-24 20:49:25,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:25,631 INFO Out dated connection ,size=0 + +2025-09-24 20:49:25,631 INFO Connection check task end + +2025-09-24 20:49:28,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:28,632 INFO Connection check task start + +2025-09-24 20:49:28,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:28,632 INFO Out dated connection ,size=0 + +2025-09-24 20:49:28,632 INFO Connection check task end + +2025-09-24 20:49:31,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:31,632 INFO Connection check task start + +2025-09-24 20:49:31,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:31,632 INFO Out dated connection ,size=0 + +2025-09-24 20:49:31,633 INFO Connection check task end + +2025-09-24 20:49:34,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:34,634 INFO Connection check task start + +2025-09-24 20:49:34,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:34,634 INFO Out dated connection ,size=0 + +2025-09-24 20:49:34,634 INFO Connection check task end + +2025-09-24 20:49:37,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:37,634 INFO Connection check task start + +2025-09-24 20:49:37,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:37,634 INFO Out dated connection ,size=0 + +2025-09-24 20:49:37,635 INFO Connection check task end + +2025-09-24 20:49:40,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:40,635 INFO Connection check task start + +2025-09-24 20:49:40,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:40,635 INFO Out dated connection ,size=0 + +2025-09-24 20:49:40,635 INFO Connection check task end + +2025-09-24 20:49:43,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:43,635 INFO Connection check task start + +2025-09-24 20:49:43,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:43,636 INFO Out dated connection ,size=0 + +2025-09-24 20:49:43,636 INFO Connection check task end + +2025-09-24 20:49:46,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:46,638 INFO Connection check task start + +2025-09-24 20:49:46,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:46,638 INFO Out dated connection ,size=0 + +2025-09-24 20:49:46,638 INFO Connection check task end + +2025-09-24 20:49:49,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:49,639 INFO Connection check task start + +2025-09-24 20:49:49,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:49,639 INFO Out dated connection ,size=0 + +2025-09-24 20:49:49,639 INFO Connection check task end + +2025-09-24 20:49:52,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:52,639 INFO Connection check task start + +2025-09-24 20:49:52,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:52,639 INFO Out dated connection ,size=0 + +2025-09-24 20:49:52,639 INFO Connection check task end + +2025-09-24 20:49:55,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:55,639 INFO Connection check task start + +2025-09-24 20:49:55,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:55,639 INFO Out dated connection ,size=0 + +2025-09-24 20:49:55,640 INFO Connection check task end + +2025-09-24 20:49:58,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:49:58,642 INFO Connection check task start + +2025-09-24 20:49:58,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:49:58,642 INFO Out dated connection ,size=0 + +2025-09-24 20:49:58,642 INFO Connection check task end + +2025-09-24 20:50:01,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:01,642 INFO Connection check task start + +2025-09-24 20:50:01,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:01,643 INFO Out dated connection ,size=0 + +2025-09-24 20:50:01,643 INFO Connection check task end + +2025-09-24 20:50:04,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:04,645 INFO Connection check task start + +2025-09-24 20:50:04,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:04,645 INFO Out dated connection ,size=0 + +2025-09-24 20:50:04,645 INFO Connection check task end + +2025-09-24 20:50:07,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:07,646 INFO Connection check task start + +2025-09-24 20:50:07,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:07,646 INFO Out dated connection ,size=0 + +2025-09-24 20:50:07,646 INFO Connection check task end + +2025-09-24 20:50:10,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:10,648 INFO Connection check task start + +2025-09-24 20:50:10,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:10,648 INFO Out dated connection ,size=0 + +2025-09-24 20:50:10,648 INFO Connection check task end + +2025-09-24 20:50:13,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:13,649 INFO Connection check task start + +2025-09-24 20:50:13,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:13,649 INFO Out dated connection ,size=0 + +2025-09-24 20:50:13,649 INFO Connection check task end + +2025-09-24 20:50:16,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:16,650 INFO Connection check task start + +2025-09-24 20:50:16,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:16,650 INFO Out dated connection ,size=0 + +2025-09-24 20:50:16,650 INFO Connection check task end + +2025-09-24 20:50:19,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:19,650 INFO Connection check task start + +2025-09-24 20:50:19,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:19,650 INFO Out dated connection ,size=0 + +2025-09-24 20:50:19,651 INFO Connection check task end + +2025-09-24 20:50:22,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:22,651 INFO Connection check task start + +2025-09-24 20:50:22,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:22,651 INFO Out dated connection ,size=0 + +2025-09-24 20:50:22,651 INFO Connection check task end + +2025-09-24 20:50:25,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:25,651 INFO Connection check task start + +2025-09-24 20:50:25,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:25,651 INFO Out dated connection ,size=0 + +2025-09-24 20:50:25,651 INFO Connection check task end + +2025-09-24 20:50:28,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:28,651 INFO Connection check task start + +2025-09-24 20:50:28,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:28,652 INFO Out dated connection ,size=0 + +2025-09-24 20:50:28,652 INFO Connection check task end + +2025-09-24 20:50:31,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:31,652 INFO Connection check task start + +2025-09-24 20:50:31,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:31,652 INFO Out dated connection ,size=0 + +2025-09-24 20:50:31,652 INFO Connection check task end + +2025-09-24 20:50:34,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:34,653 INFO Connection check task start + +2025-09-24 20:50:34,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:34,653 INFO Out dated connection ,size=0 + +2025-09-24 20:50:34,653 INFO Connection check task end + +2025-09-24 20:50:37,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:37,654 INFO Connection check task start + +2025-09-24 20:50:37,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:37,654 INFO Out dated connection ,size=0 + +2025-09-24 20:50:37,654 INFO Connection check task end + +2025-09-24 20:50:40,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:40,654 INFO Connection check task start + +2025-09-24 20:50:40,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:40,654 INFO Out dated connection ,size=0 + +2025-09-24 20:50:40,654 INFO Connection check task end + +2025-09-24 20:50:43,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:43,654 INFO Connection check task start + +2025-09-24 20:50:43,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:43,654 INFO Out dated connection ,size=0 + +2025-09-24 20:50:43,654 INFO Connection check task end + +2025-09-24 20:50:46,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:46,655 INFO Connection check task start + +2025-09-24 20:50:46,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:46,655 INFO Out dated connection ,size=0 + +2025-09-24 20:50:46,655 INFO Connection check task end + +2025-09-24 20:50:49,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:49,657 INFO Connection check task start + +2025-09-24 20:50:49,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:49,657 INFO Out dated connection ,size=0 + +2025-09-24 20:50:49,657 INFO Connection check task end + +2025-09-24 20:50:52,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:52,659 INFO Connection check task start + +2025-09-24 20:50:52,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:52,659 INFO Out dated connection ,size=0 + +2025-09-24 20:50:52,659 INFO Connection check task end + +2025-09-24 20:50:55,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:55,659 INFO Connection check task start + +2025-09-24 20:50:55,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:55,659 INFO Out dated connection ,size=0 + +2025-09-24 20:50:55,659 INFO Connection check task end + +2025-09-24 20:50:58,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:50:58,661 INFO Connection check task start + +2025-09-24 20:50:58,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:50:58,661 INFO Out dated connection ,size=0 + +2025-09-24 20:50:58,661 INFO Connection check task end + +2025-09-24 20:51:01,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:01,662 INFO Connection check task start + +2025-09-24 20:51:01,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:01,662 INFO Out dated connection ,size=0 + +2025-09-24 20:51:01,662 INFO Connection check task end + +2025-09-24 20:51:04,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:04,664 INFO Connection check task start + +2025-09-24 20:51:04,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:04,664 INFO Out dated connection ,size=0 + +2025-09-24 20:51:04,664 INFO Connection check task end + +2025-09-24 20:51:07,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:07,664 INFO Connection check task start + +2025-09-24 20:51:07,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:07,664 INFO Out dated connection ,size=0 + +2025-09-24 20:51:07,664 INFO Connection check task end + +2025-09-24 20:51:10,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:10,667 INFO Connection check task start + +2025-09-24 20:51:10,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:10,667 INFO Out dated connection ,size=0 + +2025-09-24 20:51:10,667 INFO Connection check task end + +2025-09-24 20:51:13,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:13,667 INFO Connection check task start + +2025-09-24 20:51:13,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:13,667 INFO Out dated connection ,size=0 + +2025-09-24 20:51:13,667 INFO Connection check task end + +2025-09-24 20:51:16,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:16,668 INFO Connection check task start + +2025-09-24 20:51:16,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:16,668 INFO Out dated connection ,size=0 + +2025-09-24 20:51:16,668 INFO Connection check task end + +2025-09-24 20:51:19,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:19,669 INFO Connection check task start + +2025-09-24 20:51:19,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:19,669 INFO Out dated connection ,size=0 + +2025-09-24 20:51:19,669 INFO Connection check task end + +2025-09-24 20:51:22,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:22,671 INFO Connection check task start + +2025-09-24 20:51:22,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:22,671 INFO Out dated connection ,size=0 + +2025-09-24 20:51:22,671 INFO Connection check task end + +2025-09-24 20:51:25,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:25,673 INFO Connection check task start + +2025-09-24 20:51:25,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:25,673 INFO Out dated connection ,size=0 + +2025-09-24 20:51:25,673 INFO Connection check task end + +2025-09-24 20:51:28,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:28,675 INFO Connection check task start + +2025-09-24 20:51:28,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:28,676 INFO Out dated connection ,size=0 + +2025-09-24 20:51:28,676 INFO Connection check task end + +2025-09-24 20:51:31,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:31,678 INFO Connection check task start + +2025-09-24 20:51:31,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:31,678 INFO Out dated connection ,size=0 + +2025-09-24 20:51:31,678 INFO Connection check task end + +2025-09-24 20:51:34,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:34,679 INFO Connection check task start + +2025-09-24 20:51:34,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:34,679 INFO Out dated connection ,size=0 + +2025-09-24 20:51:34,679 INFO Connection check task end + +2025-09-24 20:51:37,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:37,680 INFO Connection check task start + +2025-09-24 20:51:37,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:37,680 INFO Out dated connection ,size=0 + +2025-09-24 20:51:37,680 INFO Connection check task end + +2025-09-24 20:51:40,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:40,681 INFO Connection check task start + +2025-09-24 20:51:40,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:40,681 INFO Out dated connection ,size=0 + +2025-09-24 20:51:40,681 INFO Connection check task end + +2025-09-24 20:51:43,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:43,683 INFO Connection check task start + +2025-09-24 20:51:43,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:43,684 INFO Out dated connection ,size=0 + +2025-09-24 20:51:43,684 INFO Connection check task end + +2025-09-24 20:51:46,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:46,684 INFO Connection check task start + +2025-09-24 20:51:46,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:46,684 INFO Out dated connection ,size=0 + +2025-09-24 20:51:46,684 INFO Connection check task end + +2025-09-24 20:51:49,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:49,686 INFO Connection check task start + +2025-09-24 20:51:49,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:49,687 INFO Out dated connection ,size=0 + +2025-09-24 20:51:49,687 INFO Connection check task end + +2025-09-24 20:51:52,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:52,688 INFO Connection check task start + +2025-09-24 20:51:52,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:52,688 INFO Out dated connection ,size=0 + +2025-09-24 20:51:52,689 INFO Connection check task end + +2025-09-24 20:51:55,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:55,690 INFO Connection check task start + +2025-09-24 20:51:55,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:55,690 INFO Out dated connection ,size=0 + +2025-09-24 20:51:55,690 INFO Connection check task end + +2025-09-24 20:51:58,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:51:58,690 INFO Connection check task start + +2025-09-24 20:51:58,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:51:58,691 INFO Out dated connection ,size=0 + +2025-09-24 20:51:58,691 INFO Connection check task end + +2025-09-24 20:52:01,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:01,691 INFO Connection check task start + +2025-09-24 20:52:01,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:01,691 INFO Out dated connection ,size=0 + +2025-09-24 20:52:01,691 INFO Connection check task end + +2025-09-24 20:52:04,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:04,692 INFO Connection check task start + +2025-09-24 20:52:04,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:04,692 INFO Out dated connection ,size=0 + +2025-09-24 20:52:04,692 INFO Connection check task end + +2025-09-24 20:52:07,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:07,693 INFO Connection check task start + +2025-09-24 20:52:07,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:07,693 INFO Out dated connection ,size=0 + +2025-09-24 20:52:07,693 INFO Connection check task end + +2025-09-24 20:52:10,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:10,695 INFO Connection check task start + +2025-09-24 20:52:10,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:10,695 INFO Out dated connection ,size=0 + +2025-09-24 20:52:10,695 INFO Connection check task end + +2025-09-24 20:52:13,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:13,696 INFO Connection check task start + +2025-09-24 20:52:13,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:13,696 INFO Out dated connection ,size=0 + +2025-09-24 20:52:13,696 INFO Connection check task end + +2025-09-24 20:52:16,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:16,698 INFO Connection check task start + +2025-09-24 20:52:16,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:16,699 INFO Out dated connection ,size=0 + +2025-09-24 20:52:16,699 INFO Connection check task end + +2025-09-24 20:52:19,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:19,699 INFO Connection check task start + +2025-09-24 20:52:19,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:19,699 INFO Out dated connection ,size=0 + +2025-09-24 20:52:19,699 INFO Connection check task end + +2025-09-24 20:52:22,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:22,702 INFO Connection check task start + +2025-09-24 20:52:22,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:22,702 INFO Out dated connection ,size=0 + +2025-09-24 20:52:22,702 INFO Connection check task end + +2025-09-24 20:52:25,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:25,703 INFO Connection check task start + +2025-09-24 20:52:25,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:25,703 INFO Out dated connection ,size=0 + +2025-09-24 20:52:25,704 INFO Connection check task end + +2025-09-24 20:52:28,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:28,704 INFO Connection check task start + +2025-09-24 20:52:28,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:28,704 INFO Out dated connection ,size=0 + +2025-09-24 20:52:28,704 INFO Connection check task end + +2025-09-24 20:52:31,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:31,706 INFO Connection check task start + +2025-09-24 20:52:31,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:31,706 INFO Out dated connection ,size=0 + +2025-09-24 20:52:31,706 INFO Connection check task end + +2025-09-24 20:52:34,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:34,707 INFO Connection check task start + +2025-09-24 20:52:34,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:34,708 INFO Out dated connection ,size=0 + +2025-09-24 20:52:34,708 INFO Connection check task end + +2025-09-24 20:52:37,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:37,708 INFO Connection check task start + +2025-09-24 20:52:37,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:37,708 INFO Out dated connection ,size=0 + +2025-09-24 20:52:37,708 INFO Connection check task end + +2025-09-24 20:52:40,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:40,710 INFO Connection check task start + +2025-09-24 20:52:40,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:40,710 INFO Out dated connection ,size=0 + +2025-09-24 20:52:40,710 INFO Connection check task end + +2025-09-24 20:52:43,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:43,712 INFO Connection check task start + +2025-09-24 20:52:43,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:43,712 INFO Out dated connection ,size=0 + +2025-09-24 20:52:43,712 INFO Connection check task end + +2025-09-24 20:52:46,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:46,714 INFO Connection check task start + +2025-09-24 20:52:46,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:46,715 INFO Out dated connection ,size=0 + +2025-09-24 20:52:46,715 INFO Connection check task end + +2025-09-24 20:52:49,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:49,715 INFO Connection check task start + +2025-09-24 20:52:49,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:49,716 INFO Out dated connection ,size=0 + +2025-09-24 20:52:49,716 INFO Connection check task end + +2025-09-24 20:52:52,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:52,717 INFO Connection check task start + +2025-09-24 20:52:52,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:52,717 INFO Out dated connection ,size=0 + +2025-09-24 20:52:52,717 INFO Connection check task end + +2025-09-24 20:52:55,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:55,719 INFO Connection check task start + +2025-09-24 20:52:55,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:55,719 INFO Out dated connection ,size=0 + +2025-09-24 20:52:55,719 INFO Connection check task end + +2025-09-24 20:52:58,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:52:58,721 INFO Connection check task start + +2025-09-24 20:52:58,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:52:58,721 INFO Out dated connection ,size=0 + +2025-09-24 20:52:58,721 INFO Connection check task end + +2025-09-24 20:53:01,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:01,722 INFO Connection check task start + +2025-09-24 20:53:01,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:01,722 INFO Out dated connection ,size=0 + +2025-09-24 20:53:01,722 INFO Connection check task end + +2025-09-24 20:53:04,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:04,723 INFO Connection check task start + +2025-09-24 20:53:04,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:04,723 INFO Out dated connection ,size=0 + +2025-09-24 20:53:04,723 INFO Connection check task end + +2025-09-24 20:53:07,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:07,726 INFO Connection check task start + +2025-09-24 20:53:07,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:07,726 INFO Out dated connection ,size=0 + +2025-09-24 20:53:07,726 INFO Connection check task end + +2025-09-24 20:53:10,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:10,727 INFO Connection check task start + +2025-09-24 20:53:10,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:10,727 INFO Out dated connection ,size=0 + +2025-09-24 20:53:10,727 INFO Connection check task end + +2025-09-24 20:53:13,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:13,727 INFO Connection check task start + +2025-09-24 20:53:13,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:13,728 INFO Out dated connection ,size=0 + +2025-09-24 20:53:13,728 INFO Connection check task end + +2025-09-24 20:53:16,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:16,728 INFO Connection check task start + +2025-09-24 20:53:16,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:16,728 INFO Out dated connection ,size=0 + +2025-09-24 20:53:16,728 INFO Connection check task end + +2025-09-24 20:53:19,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:19,728 INFO Connection check task start + +2025-09-24 20:53:19,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:19,729 INFO Out dated connection ,size=0 + +2025-09-24 20:53:19,729 INFO Connection check task end + +2025-09-24 20:53:22,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:22,731 INFO Connection check task start + +2025-09-24 20:53:22,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:22,731 INFO Out dated connection ,size=0 + +2025-09-24 20:53:22,731 INFO Connection check task end + +2025-09-24 20:53:25,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:25,732 INFO Connection check task start + +2025-09-24 20:53:25,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:25,733 INFO Out dated connection ,size=0 + +2025-09-24 20:53:25,733 INFO Connection check task end + +2025-09-24 20:53:28,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:28,733 INFO Connection check task start + +2025-09-24 20:53:28,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:28,733 INFO Out dated connection ,size=0 + +2025-09-24 20:53:28,733 INFO Connection check task end + +2025-09-24 20:53:31,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:31,735 INFO Connection check task start + +2025-09-24 20:53:31,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:31,736 INFO Out dated connection ,size=0 + +2025-09-24 20:53:31,736 INFO Connection check task end + +2025-09-24 20:53:34,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:34,737 INFO Connection check task start + +2025-09-24 20:53:34,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:34,738 INFO Out dated connection ,size=0 + +2025-09-24 20:53:34,738 INFO Connection check task end + +2025-09-24 20:53:37,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:37,740 INFO Connection check task start + +2025-09-24 20:53:37,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:37,740 INFO Out dated connection ,size=0 + +2025-09-24 20:53:37,740 INFO Connection check task end + +2025-09-24 20:53:40,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:40,741 INFO Connection check task start + +2025-09-24 20:53:40,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:40,741 INFO Out dated connection ,size=0 + +2025-09-24 20:53:40,741 INFO Connection check task end + +2025-09-24 20:53:43,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:43,744 INFO Connection check task start + +2025-09-24 20:53:43,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:43,744 INFO Out dated connection ,size=0 + +2025-09-24 20:53:43,744 INFO Connection check task end + +2025-09-24 20:53:46,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:46,745 INFO Connection check task start + +2025-09-24 20:53:46,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:46,745 INFO Out dated connection ,size=0 + +2025-09-24 20:53:46,746 INFO Connection check task end + +2025-09-24 20:53:49,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:49,746 INFO Connection check task start + +2025-09-24 20:53:49,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:49,747 INFO Out dated connection ,size=0 + +2025-09-24 20:53:49,747 INFO Connection check task end + +2025-09-24 20:53:52,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:52,748 INFO Connection check task start + +2025-09-24 20:53:52,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:52,749 INFO Out dated connection ,size=0 + +2025-09-24 20:53:52,749 INFO Connection check task end + +2025-09-24 20:53:55,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:55,750 INFO Connection check task start + +2025-09-24 20:53:55,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:55,750 INFO Out dated connection ,size=0 + +2025-09-24 20:53:55,750 INFO Connection check task end + +2025-09-24 20:53:58,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:53:58,753 INFO Connection check task start + +2025-09-24 20:53:58,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:53:58,753 INFO Out dated connection ,size=0 + +2025-09-24 20:53:58,753 INFO Connection check task end + +2025-09-24 20:54:01,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:01,754 INFO Connection check task start + +2025-09-24 20:54:01,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:01,755 INFO Out dated connection ,size=0 + +2025-09-24 20:54:01,755 INFO Connection check task end + +2025-09-24 20:54:04,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:04,755 INFO Connection check task start + +2025-09-24 20:54:04,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:04,756 INFO Out dated connection ,size=0 + +2025-09-24 20:54:04,756 INFO Connection check task end + +2025-09-24 20:54:07,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:07,756 INFO Connection check task start + +2025-09-24 20:54:07,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:07,757 INFO Out dated connection ,size=0 + +2025-09-24 20:54:07,757 INFO Connection check task end + +2025-09-24 20:54:10,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:10,758 INFO Connection check task start + +2025-09-24 20:54:10,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:10,759 INFO Out dated connection ,size=0 + +2025-09-24 20:54:10,759 INFO Connection check task end + +2025-09-24 20:54:13,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:13,759 INFO Connection check task start + +2025-09-24 20:54:13,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:13,759 INFO Out dated connection ,size=0 + +2025-09-24 20:54:13,759 INFO Connection check task end + +2025-09-24 20:54:16,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:16,760 INFO Connection check task start + +2025-09-24 20:54:16,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:16,760 INFO Out dated connection ,size=0 + +2025-09-24 20:54:16,760 INFO Connection check task end + +2025-09-24 20:54:19,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:19,760 INFO Connection check task start + +2025-09-24 20:54:19,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:19,761 INFO Out dated connection ,size=0 + +2025-09-24 20:54:19,761 INFO Connection check task end + +2025-09-24 20:54:22,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:22,762 INFO Connection check task start + +2025-09-24 20:54:22,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:22,762 INFO Out dated connection ,size=0 + +2025-09-24 20:54:22,762 INFO Connection check task end + +2025-09-24 20:54:25,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:25,765 INFO Connection check task start + +2025-09-24 20:54:25,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:25,765 INFO Out dated connection ,size=0 + +2025-09-24 20:54:25,765 INFO Connection check task end + +2025-09-24 20:54:28,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:28,766 INFO Connection check task start + +2025-09-24 20:54:28,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:28,766 INFO Out dated connection ,size=0 + +2025-09-24 20:54:28,766 INFO Connection check task end + +2025-09-24 20:54:31,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:31,766 INFO Connection check task start + +2025-09-24 20:54:31,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:31,767 INFO Out dated connection ,size=0 + +2025-09-24 20:54:31,767 INFO Connection check task end + +2025-09-24 20:54:34,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:34,767 INFO Connection check task start + +2025-09-24 20:54:34,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:34,767 INFO Out dated connection ,size=0 + +2025-09-24 20:54:34,767 INFO Connection check task end + +2025-09-24 20:54:37,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:37,767 INFO Connection check task start + +2025-09-24 20:54:37,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:37,767 INFO Out dated connection ,size=0 + +2025-09-24 20:54:37,767 INFO Connection check task end + +2025-09-24 20:54:40,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:40,769 INFO Connection check task start + +2025-09-24 20:54:40,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:40,769 INFO Out dated connection ,size=0 + +2025-09-24 20:54:40,769 INFO Connection check task end + +2025-09-24 20:54:43,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:43,769 INFO Connection check task start + +2025-09-24 20:54:43,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:43,769 INFO Out dated connection ,size=0 + +2025-09-24 20:54:43,769 INFO Connection check task end + +2025-09-24 20:54:46,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:46,771 INFO Connection check task start + +2025-09-24 20:54:46,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:46,771 INFO Out dated connection ,size=0 + +2025-09-24 20:54:46,771 INFO Connection check task end + +2025-09-24 20:54:49,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:49,772 INFO Connection check task start + +2025-09-24 20:54:49,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:49,772 INFO Out dated connection ,size=0 + +2025-09-24 20:54:49,772 INFO Connection check task end + +2025-09-24 20:54:52,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:52,772 INFO Connection check task start + +2025-09-24 20:54:52,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:52,772 INFO Out dated connection ,size=0 + +2025-09-24 20:54:52,772 INFO Connection check task end + +2025-09-24 20:54:55,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:55,773 INFO Connection check task start + +2025-09-24 20:54:55,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:55,773 INFO Out dated connection ,size=0 + +2025-09-24 20:54:55,773 INFO Connection check task end + +2025-09-24 20:54:58,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:54:58,774 INFO Connection check task start + +2025-09-24 20:54:58,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:54:58,774 INFO Out dated connection ,size=0 + +2025-09-24 20:54:58,774 INFO Connection check task end + +2025-09-24 20:55:01,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:01,776 INFO Connection check task start + +2025-09-24 20:55:01,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:01,776 INFO Out dated connection ,size=0 + +2025-09-24 20:55:01,776 INFO Connection check task end + +2025-09-24 20:55:04,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:04,778 INFO Connection check task start + +2025-09-24 20:55:04,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:04,778 INFO Out dated connection ,size=0 + +2025-09-24 20:55:04,778 INFO Connection check task end + +2025-09-24 20:55:07,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:07,779 INFO Connection check task start + +2025-09-24 20:55:07,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:07,779 INFO Out dated connection ,size=0 + +2025-09-24 20:55:07,779 INFO Connection check task end + +2025-09-24 20:55:10,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:10,781 INFO Connection check task start + +2025-09-24 20:55:10,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:10,781 INFO Out dated connection ,size=0 + +2025-09-24 20:55:10,782 INFO Connection check task end + +2025-09-24 20:55:13,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:13,782 INFO Connection check task start + +2025-09-24 20:55:13,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:13,782 INFO Out dated connection ,size=0 + +2025-09-24 20:55:13,782 INFO Connection check task end + +2025-09-24 20:55:16,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:16,784 INFO Connection check task start + +2025-09-24 20:55:16,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:16,784 INFO Out dated connection ,size=0 + +2025-09-24 20:55:16,784 INFO Connection check task end + +2025-09-24 20:55:19,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:19,785 INFO Connection check task start + +2025-09-24 20:55:19,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:19,785 INFO Out dated connection ,size=0 + +2025-09-24 20:55:19,785 INFO Connection check task end + +2025-09-24 20:55:22,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:22,786 INFO Connection check task start + +2025-09-24 20:55:22,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:22,786 INFO Out dated connection ,size=0 + +2025-09-24 20:55:22,786 INFO Connection check task end + +2025-09-24 20:55:25,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:25,787 INFO Connection check task start + +2025-09-24 20:55:25,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:25,787 INFO Out dated connection ,size=0 + +2025-09-24 20:55:25,787 INFO Connection check task end + +2025-09-24 20:55:28,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:28,788 INFO Connection check task start + +2025-09-24 20:55:28,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:28,788 INFO Out dated connection ,size=0 + +2025-09-24 20:55:28,788 INFO Connection check task end + +2025-09-24 20:55:31,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:31,790 INFO Connection check task start + +2025-09-24 20:55:31,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:31,790 INFO Out dated connection ,size=0 + +2025-09-24 20:55:31,790 INFO Connection check task end + +2025-09-24 20:55:34,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:34,790 INFO Connection check task start + +2025-09-24 20:55:34,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:34,790 INFO Out dated connection ,size=0 + +2025-09-24 20:55:34,790 INFO Connection check task end + +2025-09-24 20:55:37,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:37,792 INFO Connection check task start + +2025-09-24 20:55:37,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:37,792 INFO Out dated connection ,size=0 + +2025-09-24 20:55:37,792 INFO Connection check task end + +2025-09-24 20:55:40,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:40,793 INFO Connection check task start + +2025-09-24 20:55:40,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:40,793 INFO Out dated connection ,size=0 + +2025-09-24 20:55:40,793 INFO Connection check task end + +2025-09-24 20:55:43,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:43,793 INFO Connection check task start + +2025-09-24 20:55:43,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:43,794 INFO Out dated connection ,size=0 + +2025-09-24 20:55:43,794 INFO Connection check task end + +2025-09-24 20:55:46,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:46,795 INFO Connection check task start + +2025-09-24 20:55:46,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:46,796 INFO Out dated connection ,size=0 + +2025-09-24 20:55:46,796 INFO Connection check task end + +2025-09-24 20:55:49,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:49,797 INFO Connection check task start + +2025-09-24 20:55:49,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:49,797 INFO Out dated connection ,size=0 + +2025-09-24 20:55:49,797 INFO Connection check task end + +2025-09-24 20:55:52,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:52,799 INFO Connection check task start + +2025-09-24 20:55:52,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:52,799 INFO Out dated connection ,size=0 + +2025-09-24 20:55:52,799 INFO Connection check task end + +2025-09-24 20:55:55,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:55,801 INFO Connection check task start + +2025-09-24 20:55:55,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:55,801 INFO Out dated connection ,size=0 + +2025-09-24 20:55:55,801 INFO Connection check task end + +2025-09-24 20:55:58,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:55:58,801 INFO Connection check task start + +2025-09-24 20:55:58,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:55:58,802 INFO Out dated connection ,size=0 + +2025-09-24 20:55:58,802 INFO Connection check task end + +2025-09-24 20:56:01,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:01,803 INFO Connection check task start + +2025-09-24 20:56:01,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:01,803 INFO Out dated connection ,size=0 + +2025-09-24 20:56:01,803 INFO Connection check task end + +2025-09-24 20:56:04,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:04,805 INFO Connection check task start + +2025-09-24 20:56:04,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:04,805 INFO Out dated connection ,size=0 + +2025-09-24 20:56:04,805 INFO Connection check task end + +2025-09-24 20:56:07,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:07,806 INFO Connection check task start + +2025-09-24 20:56:07,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:07,807 INFO Out dated connection ,size=0 + +2025-09-24 20:56:07,807 INFO Connection check task end + +2025-09-24 20:56:10,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:10,807 INFO Connection check task start + +2025-09-24 20:56:10,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:10,807 INFO Out dated connection ,size=0 + +2025-09-24 20:56:10,807 INFO Connection check task end + +2025-09-24 20:56:13,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:13,807 INFO Connection check task start + +2025-09-24 20:56:13,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:13,808 INFO Out dated connection ,size=0 + +2025-09-24 20:56:13,808 INFO Connection check task end + +2025-09-24 20:56:16,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:16,808 INFO Connection check task start + +2025-09-24 20:56:16,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:16,808 INFO Out dated connection ,size=0 + +2025-09-24 20:56:16,808 INFO Connection check task end + +2025-09-24 20:56:19,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:19,809 INFO Connection check task start + +2025-09-24 20:56:19,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:19,809 INFO Out dated connection ,size=0 + +2025-09-24 20:56:19,809 INFO Connection check task end + +2025-09-24 20:56:22,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:22,811 INFO Connection check task start + +2025-09-24 20:56:22,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:22,811 INFO Out dated connection ,size=0 + +2025-09-24 20:56:22,811 INFO Connection check task end + +2025-09-24 20:56:25,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:25,813 INFO Connection check task start + +2025-09-24 20:56:25,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:25,814 INFO Out dated connection ,size=0 + +2025-09-24 20:56:25,814 INFO Connection check task end + +2025-09-24 20:56:28,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:28,814 INFO Connection check task start + +2025-09-24 20:56:28,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:28,814 INFO Out dated connection ,size=0 + +2025-09-24 20:56:28,814 INFO Connection check task end + +2025-09-24 20:56:31,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:31,815 INFO Connection check task start + +2025-09-24 20:56:31,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:31,816 INFO Out dated connection ,size=0 + +2025-09-24 20:56:31,816 INFO Connection check task end + +2025-09-24 20:56:34,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:34,816 INFO Connection check task start + +2025-09-24 20:56:34,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:34,816 INFO Out dated connection ,size=0 + +2025-09-24 20:56:34,816 INFO Connection check task end + +2025-09-24 20:56:37,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:37,818 INFO Connection check task start + +2025-09-24 20:56:37,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:37,819 INFO Out dated connection ,size=0 + +2025-09-24 20:56:37,819 INFO Connection check task end + +2025-09-24 20:56:40,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:40,821 INFO Connection check task start + +2025-09-24 20:56:40,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:40,821 INFO Out dated connection ,size=0 + +2025-09-24 20:56:40,821 INFO Connection check task end + +2025-09-24 20:56:43,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:43,823 INFO Connection check task start + +2025-09-24 20:56:43,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:43,823 INFO Out dated connection ,size=0 + +2025-09-24 20:56:43,823 INFO Connection check task end + +2025-09-24 20:56:46,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:46,825 INFO Connection check task start + +2025-09-24 20:56:46,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:46,825 INFO Out dated connection ,size=0 + +2025-09-24 20:56:46,825 INFO Connection check task end + +2025-09-24 20:56:49,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:49,825 INFO Connection check task start + +2025-09-24 20:56:49,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:49,826 INFO Out dated connection ,size=0 + +2025-09-24 20:56:49,826 INFO Connection check task end + +2025-09-24 20:56:52,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:52,827 INFO Connection check task start + +2025-09-24 20:56:52,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:52,828 INFO Out dated connection ,size=0 + +2025-09-24 20:56:52,828 INFO Connection check task end + +2025-09-24 20:56:55,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:55,829 INFO Connection check task start + +2025-09-24 20:56:55,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:55,829 INFO Out dated connection ,size=0 + +2025-09-24 20:56:55,829 INFO Connection check task end + +2025-09-24 20:56:58,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:56:58,831 INFO Connection check task start + +2025-09-24 20:56:58,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:56:58,831 INFO Out dated connection ,size=0 + +2025-09-24 20:56:58,831 INFO Connection check task end + +2025-09-24 20:57:01,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:01,831 INFO Connection check task start + +2025-09-24 20:57:01,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:01,831 INFO Out dated connection ,size=0 + +2025-09-24 20:57:01,831 INFO Connection check task end + +2025-09-24 20:57:04,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:04,832 INFO Connection check task start + +2025-09-24 20:57:04,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:04,832 INFO Out dated connection ,size=0 + +2025-09-24 20:57:04,832 INFO Connection check task end + +2025-09-24 20:57:07,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:07,832 INFO Connection check task start + +2025-09-24 20:57:07,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:07,832 INFO Out dated connection ,size=0 + +2025-09-24 20:57:07,832 INFO Connection check task end + +2025-09-24 20:57:10,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:10,833 INFO Connection check task start + +2025-09-24 20:57:10,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:10,833 INFO Out dated connection ,size=0 + +2025-09-24 20:57:10,833 INFO Connection check task end + +2025-09-24 20:57:13,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:13,836 INFO Connection check task start + +2025-09-24 20:57:13,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:13,836 INFO Out dated connection ,size=0 + +2025-09-24 20:57:13,836 INFO Connection check task end + +2025-09-24 20:57:16,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:16,837 INFO Connection check task start + +2025-09-24 20:57:16,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:16,837 INFO Out dated connection ,size=0 + +2025-09-24 20:57:16,837 INFO Connection check task end + +2025-09-24 20:57:19,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:19,837 INFO Connection check task start + +2025-09-24 20:57:19,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:19,837 INFO Out dated connection ,size=0 + +2025-09-24 20:57:19,837 INFO Connection check task end + +2025-09-24 20:57:22,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:22,839 INFO Connection check task start + +2025-09-24 20:57:22,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:22,839 INFO Out dated connection ,size=0 + +2025-09-24 20:57:22,839 INFO Connection check task end + +2025-09-24 20:57:25,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:25,840 INFO Connection check task start + +2025-09-24 20:57:25,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:25,841 INFO Out dated connection ,size=0 + +2025-09-24 20:57:25,841 INFO Connection check task end + +2025-09-24 20:57:28,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:28,841 INFO Connection check task start + +2025-09-24 20:57:28,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:28,841 INFO Out dated connection ,size=0 + +2025-09-24 20:57:28,841 INFO Connection check task end + +2025-09-24 20:57:31,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:31,842 INFO Connection check task start + +2025-09-24 20:57:31,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:31,843 INFO Out dated connection ,size=0 + +2025-09-24 20:57:31,843 INFO Connection check task end + +2025-09-24 20:57:34,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:34,843 INFO Connection check task start + +2025-09-24 20:57:34,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:34,843 INFO Out dated connection ,size=0 + +2025-09-24 20:57:34,843 INFO Connection check task end + +2025-09-24 20:57:37,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:37,843 INFO Connection check task start + +2025-09-24 20:57:37,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:37,844 INFO Out dated connection ,size=0 + +2025-09-24 20:57:37,844 INFO Connection check task end + +2025-09-24 20:57:40,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:40,845 INFO Connection check task start + +2025-09-24 20:57:40,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:40,845 INFO Out dated connection ,size=0 + +2025-09-24 20:57:40,845 INFO Connection check task end + +2025-09-24 20:57:43,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:43,847 INFO Connection check task start + +2025-09-24 20:57:43,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:43,847 INFO Out dated connection ,size=0 + +2025-09-24 20:57:43,847 INFO Connection check task end + +2025-09-24 20:57:46,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:46,848 INFO Connection check task start + +2025-09-24 20:57:46,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:46,848 INFO Out dated connection ,size=0 + +2025-09-24 20:57:46,848 INFO Connection check task end + +2025-09-24 20:57:49,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:49,849 INFO Connection check task start + +2025-09-24 20:57:49,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:49,849 INFO Out dated connection ,size=0 + +2025-09-24 20:57:49,849 INFO Connection check task end + +2025-09-24 20:57:52,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:52,850 INFO Connection check task start + +2025-09-24 20:57:52,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:52,850 INFO Out dated connection ,size=0 + +2025-09-24 20:57:52,850 INFO Connection check task end + +2025-09-24 20:57:55,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:55,850 INFO Connection check task start + +2025-09-24 20:57:55,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:55,851 INFO Out dated connection ,size=0 + +2025-09-24 20:57:55,851 INFO Connection check task end + +2025-09-24 20:57:58,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:57:58,851 INFO Connection check task start + +2025-09-24 20:57:58,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:57:58,851 INFO Out dated connection ,size=0 + +2025-09-24 20:57:58,851 INFO Connection check task end + +2025-09-24 20:58:01,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:01,852 INFO Connection check task start + +2025-09-24 20:58:01,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:01,852 INFO Out dated connection ,size=0 + +2025-09-24 20:58:01,852 INFO Connection check task end + +2025-09-24 20:58:04,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:04,853 INFO Connection check task start + +2025-09-24 20:58:04,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:04,853 INFO Out dated connection ,size=0 + +2025-09-24 20:58:04,853 INFO Connection check task end + +2025-09-24 20:58:07,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:07,855 INFO Connection check task start + +2025-09-24 20:58:07,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:07,855 INFO Out dated connection ,size=0 + +2025-09-24 20:58:07,855 INFO Connection check task end + +2025-09-24 20:58:10,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:10,855 INFO Connection check task start + +2025-09-24 20:58:10,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:10,856 INFO Out dated connection ,size=0 + +2025-09-24 20:58:10,856 INFO Connection check task end + +2025-09-24 20:58:13,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:13,856 INFO Connection check task start + +2025-09-24 20:58:13,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:13,857 INFO Out dated connection ,size=0 + +2025-09-24 20:58:13,857 INFO Connection check task end + +2025-09-24 20:58:16,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:16,857 INFO Connection check task start + +2025-09-24 20:58:16,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:16,857 INFO Out dated connection ,size=0 + +2025-09-24 20:58:16,857 INFO Connection check task end + +2025-09-24 20:58:19,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:19,857 INFO Connection check task start + +2025-09-24 20:58:19,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:19,858 INFO Out dated connection ,size=0 + +2025-09-24 20:58:19,858 INFO Connection check task end + +2025-09-24 20:58:22,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:22,858 INFO Connection check task start + +2025-09-24 20:58:22,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:22,858 INFO Out dated connection ,size=0 + +2025-09-24 20:58:22,858 INFO Connection check task end + +2025-09-24 20:58:25,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:25,859 INFO Connection check task start + +2025-09-24 20:58:25,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:25,859 INFO Out dated connection ,size=0 + +2025-09-24 20:58:25,859 INFO Connection check task end + +2025-09-24 20:58:28,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:28,861 INFO Connection check task start + +2025-09-24 20:58:28,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:28,861 INFO Out dated connection ,size=0 + +2025-09-24 20:58:28,861 INFO Connection check task end + +2025-09-24 20:58:31,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:31,862 INFO Connection check task start + +2025-09-24 20:58:31,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:31,862 INFO Out dated connection ,size=0 + +2025-09-24 20:58:31,863 INFO Connection check task end + +2025-09-24 20:58:34,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:34,865 INFO Connection check task start + +2025-09-24 20:58:34,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:34,865 INFO Out dated connection ,size=0 + +2025-09-24 20:58:34,865 INFO Connection check task end + +2025-09-24 20:58:37,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:37,866 INFO Connection check task start + +2025-09-24 20:58:37,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:37,867 INFO Out dated connection ,size=0 + +2025-09-24 20:58:37,867 INFO Connection check task end + +2025-09-24 20:58:40,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:40,867 INFO Connection check task start + +2025-09-24 20:58:40,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:40,867 INFO Out dated connection ,size=0 + +2025-09-24 20:58:40,867 INFO Connection check task end + +2025-09-24 20:58:43,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:43,869 INFO Connection check task start + +2025-09-24 20:58:43,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:43,869 INFO Out dated connection ,size=0 + +2025-09-24 20:58:43,869 INFO Connection check task end + +2025-09-24 20:58:46,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:46,870 INFO Connection check task start + +2025-09-24 20:58:46,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:46,870 INFO Out dated connection ,size=0 + +2025-09-24 20:58:46,870 INFO Connection check task end + +2025-09-24 20:58:49,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:49,871 INFO Connection check task start + +2025-09-24 20:58:49,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:49,871 INFO Out dated connection ,size=0 + +2025-09-24 20:58:49,871 INFO Connection check task end + +2025-09-24 20:58:52,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:52,873 INFO Connection check task start + +2025-09-24 20:58:52,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:52,873 INFO Out dated connection ,size=0 + +2025-09-24 20:58:52,873 INFO Connection check task end + +2025-09-24 20:58:55,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:55,875 INFO Connection check task start + +2025-09-24 20:58:55,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:55,876 INFO Out dated connection ,size=0 + +2025-09-24 20:58:55,876 INFO Connection check task end + +2025-09-24 20:58:58,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:58:58,876 INFO Connection check task start + +2025-09-24 20:58:58,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:58:58,877 INFO Out dated connection ,size=0 + +2025-09-24 20:58:58,877 INFO Connection check task end + +2025-09-24 20:59:01,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:01,877 INFO Connection check task start + +2025-09-24 20:59:01,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:01,877 INFO Out dated connection ,size=0 + +2025-09-24 20:59:01,878 INFO Connection check task end + +2025-09-24 20:59:04,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:04,878 INFO Connection check task start + +2025-09-24 20:59:04,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:04,878 INFO Out dated connection ,size=0 + +2025-09-24 20:59:04,878 INFO Connection check task end + +2025-09-24 20:59:07,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:07,879 INFO Connection check task start + +2025-09-24 20:59:07,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:07,880 INFO Out dated connection ,size=0 + +2025-09-24 20:59:07,880 INFO Connection check task end + +2025-09-24 20:59:10,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:10,882 INFO Connection check task start + +2025-09-24 20:59:10,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:10,882 INFO Out dated connection ,size=0 + +2025-09-24 20:59:10,882 INFO Connection check task end + +2025-09-24 20:59:13,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:13,884 INFO Connection check task start + +2025-09-24 20:59:13,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:13,884 INFO Out dated connection ,size=0 + +2025-09-24 20:59:13,884 INFO Connection check task end + +2025-09-24 20:59:16,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:16,887 INFO Connection check task start + +2025-09-24 20:59:16,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:16,887 INFO Out dated connection ,size=0 + +2025-09-24 20:59:16,887 INFO Connection check task end + +2025-09-24 20:59:19,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:19,888 INFO Connection check task start + +2025-09-24 20:59:19,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:19,888 INFO Out dated connection ,size=0 + +2025-09-24 20:59:19,888 INFO Connection check task end + +2025-09-24 20:59:22,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:22,890 INFO Connection check task start + +2025-09-24 20:59:22,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:22,891 INFO Out dated connection ,size=0 + +2025-09-24 20:59:22,891 INFO Connection check task end + +2025-09-24 20:59:25,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:25,891 INFO Connection check task start + +2025-09-24 20:59:25,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:25,891 INFO Out dated connection ,size=0 + +2025-09-24 20:59:25,891 INFO Connection check task end + +2025-09-24 20:59:28,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:28,892 INFO Connection check task start + +2025-09-24 20:59:28,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:28,892 INFO Out dated connection ,size=0 + +2025-09-24 20:59:28,892 INFO Connection check task end + +2025-09-24 20:59:31,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:31,893 INFO Connection check task start + +2025-09-24 20:59:31,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:31,894 INFO Out dated connection ,size=0 + +2025-09-24 20:59:31,894 INFO Connection check task end + +2025-09-24 20:59:34,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:34,894 INFO Connection check task start + +2025-09-24 20:59:34,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:34,894 INFO Out dated connection ,size=0 + +2025-09-24 20:59:34,894 INFO Connection check task end + +2025-09-24 20:59:37,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:37,896 INFO Connection check task start + +2025-09-24 20:59:37,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:37,897 INFO Out dated connection ,size=0 + +2025-09-24 20:59:37,897 INFO Connection check task end + +2025-09-24 20:59:40,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:40,897 INFO Connection check task start + +2025-09-24 20:59:40,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:40,897 INFO Out dated connection ,size=0 + +2025-09-24 20:59:40,897 INFO Connection check task end + +2025-09-24 20:59:43,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:43,898 INFO Connection check task start + +2025-09-24 20:59:43,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:43,898 INFO Out dated connection ,size=0 + +2025-09-24 20:59:43,898 INFO Connection check task end + +2025-09-24 20:59:46,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:46,900 INFO Connection check task start + +2025-09-24 20:59:46,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:46,900 INFO Out dated connection ,size=0 + +2025-09-24 20:59:46,900 INFO Connection check task end + +2025-09-24 20:59:49,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:49,901 INFO Connection check task start + +2025-09-24 20:59:49,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:49,901 INFO Out dated connection ,size=0 + +2025-09-24 20:59:49,901 INFO Connection check task end + +2025-09-24 20:59:52,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:52,902 INFO Connection check task start + +2025-09-24 20:59:52,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:52,902 INFO Out dated connection ,size=0 + +2025-09-24 20:59:52,902 INFO Connection check task end + +2025-09-24 20:59:55,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:55,905 INFO Connection check task start + +2025-09-24 20:59:55,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:55,905 INFO Out dated connection ,size=0 + +2025-09-24 20:59:55,905 INFO Connection check task end + +2025-09-24 20:59:58,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 20:59:58,906 INFO Connection check task start + +2025-09-24 20:59:58,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 20:59:58,907 INFO Out dated connection ,size=0 + +2025-09-24 20:59:58,907 INFO Connection check task end + +2025-09-24 21:00:01,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:01,907 INFO Connection check task start + +2025-09-24 21:00:01,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:01,907 INFO Out dated connection ,size=0 + +2025-09-24 21:00:01,907 INFO Connection check task end + +2025-09-24 21:00:04,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:04,908 INFO Connection check task start + +2025-09-24 21:00:04,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:04,908 INFO Out dated connection ,size=0 + +2025-09-24 21:00:04,908 INFO Connection check task end + +2025-09-24 21:00:07,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:07,909 INFO Connection check task start + +2025-09-24 21:00:07,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:07,909 INFO Out dated connection ,size=0 + +2025-09-24 21:00:07,909 INFO Connection check task end + +2025-09-24 21:00:10,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:10,910 INFO Connection check task start + +2025-09-24 21:00:10,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:10,910 INFO Out dated connection ,size=0 + +2025-09-24 21:00:10,910 INFO Connection check task end + +2025-09-24 21:00:13,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:13,912 INFO Connection check task start + +2025-09-24 21:00:13,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:13,912 INFO Out dated connection ,size=0 + +2025-09-24 21:00:13,912 INFO Connection check task end + +2025-09-24 21:00:16,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:16,913 INFO Connection check task start + +2025-09-24 21:00:16,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:16,913 INFO Out dated connection ,size=0 + +2025-09-24 21:00:16,913 INFO Connection check task end + +2025-09-24 21:00:19,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:19,915 INFO Connection check task start + +2025-09-24 21:00:19,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:19,915 INFO Out dated connection ,size=0 + +2025-09-24 21:00:19,915 INFO Connection check task end + +2025-09-24 21:00:22,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:22,916 INFO Connection check task start + +2025-09-24 21:00:22,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:22,916 INFO Out dated connection ,size=0 + +2025-09-24 21:00:22,916 INFO Connection check task end + +2025-09-24 21:00:25,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:25,917 INFO Connection check task start + +2025-09-24 21:00:25,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:25,917 INFO Out dated connection ,size=0 + +2025-09-24 21:00:25,917 INFO Connection check task end + +2025-09-24 21:00:28,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:28,917 INFO Connection check task start + +2025-09-24 21:00:28,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:28,917 INFO Out dated connection ,size=0 + +2025-09-24 21:00:28,918 INFO Connection check task end + +2025-09-24 21:00:31,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:31,919 INFO Connection check task start + +2025-09-24 21:00:31,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:31,919 INFO Out dated connection ,size=0 + +2025-09-24 21:00:31,919 INFO Connection check task end + +2025-09-24 21:00:34,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:34,919 INFO Connection check task start + +2025-09-24 21:00:34,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:34,920 INFO Out dated connection ,size=0 + +2025-09-24 21:00:34,920 INFO Connection check task end + +2025-09-24 21:00:37,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:37,920 INFO Connection check task start + +2025-09-24 21:00:37,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:37,921 INFO Out dated connection ,size=0 + +2025-09-24 21:00:37,921 INFO Connection check task end + +2025-09-24 21:00:40,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:40,921 INFO Connection check task start + +2025-09-24 21:00:40,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:40,921 INFO Out dated connection ,size=0 + +2025-09-24 21:00:40,921 INFO Connection check task end + +2025-09-24 21:00:43,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:43,922 INFO Connection check task start + +2025-09-24 21:00:43,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:43,923 INFO Out dated connection ,size=0 + +2025-09-24 21:00:43,923 INFO Connection check task end + +2025-09-24 21:00:46,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:46,923 INFO Connection check task start + +2025-09-24 21:00:46,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:46,923 INFO Out dated connection ,size=0 + +2025-09-24 21:00:46,923 INFO Connection check task end + +2025-09-24 21:00:49,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:49,925 INFO Connection check task start + +2025-09-24 21:00:49,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:49,926 INFO Out dated connection ,size=0 + +2025-09-24 21:00:49,926 INFO Connection check task end + +2025-09-24 21:00:52,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:52,926 INFO Connection check task start + +2025-09-24 21:00:52,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:52,926 INFO Out dated connection ,size=0 + +2025-09-24 21:00:52,926 INFO Connection check task end + +2025-09-24 21:00:55,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:55,927 INFO Connection check task start + +2025-09-24 21:00:55,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:55,927 INFO Out dated connection ,size=0 + +2025-09-24 21:00:55,927 INFO Connection check task end + +2025-09-24 21:00:58,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:00:58,928 INFO Connection check task start + +2025-09-24 21:00:58,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:00:58,928 INFO Out dated connection ,size=0 + +2025-09-24 21:00:58,928 INFO Connection check task end + +2025-09-24 21:01:01,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:01,928 INFO Connection check task start + +2025-09-24 21:01:01,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:01,928 INFO Out dated connection ,size=0 + +2025-09-24 21:01:01,929 INFO Connection check task end + +2025-09-24 21:01:04,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:04,931 INFO Connection check task start + +2025-09-24 21:01:04,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:04,931 INFO Out dated connection ,size=0 + +2025-09-24 21:01:04,931 INFO Connection check task end + +2025-09-24 21:01:07,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:07,931 INFO Connection check task start + +2025-09-24 21:01:07,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:07,932 INFO Out dated connection ,size=0 + +2025-09-24 21:01:07,932 INFO Connection check task end + +2025-09-24 21:01:10,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:10,932 INFO Connection check task start + +2025-09-24 21:01:10,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:10,932 INFO Out dated connection ,size=0 + +2025-09-24 21:01:10,932 INFO Connection check task end + +2025-09-24 21:01:13,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:13,932 INFO Connection check task start + +2025-09-24 21:01:13,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:13,933 INFO Out dated connection ,size=0 + +2025-09-24 21:01:13,933 INFO Connection check task end + +2025-09-24 21:01:16,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:16,933 INFO Connection check task start + +2025-09-24 21:01:16,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:16,934 INFO Out dated connection ,size=0 + +2025-09-24 21:01:16,934 INFO Connection check task end + +2025-09-24 21:01:19,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:19,934 INFO Connection check task start + +2025-09-24 21:01:19,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:19,934 INFO Out dated connection ,size=0 + +2025-09-24 21:01:19,934 INFO Connection check task end + +2025-09-24 21:01:22,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:22,934 INFO Connection check task start + +2025-09-24 21:01:22,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:22,935 INFO Out dated connection ,size=0 + +2025-09-24 21:01:22,935 INFO Connection check task end + +2025-09-24 21:01:25,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:25,937 INFO Connection check task start + +2025-09-24 21:01:25,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:25,937 INFO Out dated connection ,size=0 + +2025-09-24 21:01:25,937 INFO Connection check task end + +2025-09-24 21:01:28,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:28,939 INFO Connection check task start + +2025-09-24 21:01:28,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:28,939 INFO Out dated connection ,size=0 + +2025-09-24 21:01:28,939 INFO Connection check task end + +2025-09-24 21:01:31,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:31,941 INFO Connection check task start + +2025-09-24 21:01:31,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:31,942 INFO Out dated connection ,size=0 + +2025-09-24 21:01:31,942 INFO Connection check task end + +2025-09-24 21:01:34,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:34,944 INFO Connection check task start + +2025-09-24 21:01:34,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:34,944 INFO Out dated connection ,size=0 + +2025-09-24 21:01:34,944 INFO Connection check task end + +2025-09-24 21:01:37,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:37,945 INFO Connection check task start + +2025-09-24 21:01:37,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:37,945 INFO Out dated connection ,size=0 + +2025-09-24 21:01:37,945 INFO Connection check task end + +2025-09-24 21:01:40,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:40,946 INFO Connection check task start + +2025-09-24 21:01:40,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:40,946 INFO Out dated connection ,size=0 + +2025-09-24 21:01:40,946 INFO Connection check task end + +2025-09-24 21:01:43,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:43,949 INFO Connection check task start + +2025-09-24 21:01:43,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:43,949 INFO Out dated connection ,size=0 + +2025-09-24 21:01:43,949 INFO Connection check task end + +2025-09-24 21:01:46,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:46,951 INFO Connection check task start + +2025-09-24 21:01:46,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:46,951 INFO Out dated connection ,size=0 + +2025-09-24 21:01:46,951 INFO Connection check task end + +2025-09-24 21:01:49,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:49,952 INFO Connection check task start + +2025-09-24 21:01:49,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:49,952 INFO Out dated connection ,size=0 + +2025-09-24 21:01:49,952 INFO Connection check task end + +2025-09-24 21:01:52,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:52,954 INFO Connection check task start + +2025-09-24 21:01:52,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:52,954 INFO Out dated connection ,size=0 + +2025-09-24 21:01:52,954 INFO Connection check task end + +2025-09-24 21:01:55,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:55,955 INFO Connection check task start + +2025-09-24 21:01:55,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:55,955 INFO Out dated connection ,size=0 + +2025-09-24 21:01:55,955 INFO Connection check task end + +2025-09-24 21:01:58,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:01:58,957 INFO Connection check task start + +2025-09-24 21:01:58,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:01:58,957 INFO Out dated connection ,size=0 + +2025-09-24 21:01:58,957 INFO Connection check task end + +2025-09-24 21:02:01,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:01,958 INFO Connection check task start + +2025-09-24 21:02:01,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:01,958 INFO Out dated connection ,size=0 + +2025-09-24 21:02:01,958 INFO Connection check task end + +2025-09-24 21:02:04,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:04,960 INFO Connection check task start + +2025-09-24 21:02:04,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:04,960 INFO Out dated connection ,size=0 + +2025-09-24 21:02:04,960 INFO Connection check task end + +2025-09-24 21:02:07,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:07,961 INFO Connection check task start + +2025-09-24 21:02:07,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:07,961 INFO Out dated connection ,size=0 + +2025-09-24 21:02:07,961 INFO Connection check task end + +2025-09-24 21:02:10,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:10,964 INFO Connection check task start + +2025-09-24 21:02:10,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:10,964 INFO Out dated connection ,size=0 + +2025-09-24 21:02:10,964 INFO Connection check task end + +2025-09-24 21:02:13,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:13,964 INFO Connection check task start + +2025-09-24 21:02:13,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:13,964 INFO Out dated connection ,size=0 + +2025-09-24 21:02:13,965 INFO Connection check task end + +2025-09-24 21:02:16,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:16,967 INFO Connection check task start + +2025-09-24 21:02:16,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:16,967 INFO Out dated connection ,size=0 + +2025-09-24 21:02:16,967 INFO Connection check task end + +2025-09-24 21:02:19,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:19,967 INFO Connection check task start + +2025-09-24 21:02:19,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:19,967 INFO Out dated connection ,size=0 + +2025-09-24 21:02:19,967 INFO Connection check task end + +2025-09-24 21:02:22,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:22,969 INFO Connection check task start + +2025-09-24 21:02:22,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:22,969 INFO Out dated connection ,size=0 + +2025-09-24 21:02:22,969 INFO Connection check task end + +2025-09-24 21:02:25,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:25,971 INFO Connection check task start + +2025-09-24 21:02:25,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:25,971 INFO Out dated connection ,size=0 + +2025-09-24 21:02:25,971 INFO Connection check task end + +2025-09-24 21:02:28,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:28,972 INFO Connection check task start + +2025-09-24 21:02:28,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:28,972 INFO Out dated connection ,size=0 + +2025-09-24 21:02:28,972 INFO Connection check task end + +2025-09-24 21:02:31,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:31,974 INFO Connection check task start + +2025-09-24 21:02:31,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:31,974 INFO Out dated connection ,size=0 + +2025-09-24 21:02:31,974 INFO Connection check task end + +2025-09-24 21:02:34,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:34,975 INFO Connection check task start + +2025-09-24 21:02:34,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:34,975 INFO Out dated connection ,size=0 + +2025-09-24 21:02:34,975 INFO Connection check task end + +2025-09-24 21:02:37,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:37,977 INFO Connection check task start + +2025-09-24 21:02:37,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:37,977 INFO Out dated connection ,size=0 + +2025-09-24 21:02:37,977 INFO Connection check task end + +2025-09-24 21:02:40,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:40,978 INFO Connection check task start + +2025-09-24 21:02:40,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:40,978 INFO Out dated connection ,size=0 + +2025-09-24 21:02:40,978 INFO Connection check task end + +2025-09-24 21:02:43,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:43,978 INFO Connection check task start + +2025-09-24 21:02:43,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:43,978 INFO Out dated connection ,size=0 + +2025-09-24 21:02:43,978 INFO Connection check task end + +2025-09-24 21:02:46,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:46,980 INFO Connection check task start + +2025-09-24 21:02:46,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:46,980 INFO Out dated connection ,size=0 + +2025-09-24 21:02:46,980 INFO Connection check task end + +2025-09-24 21:02:49,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:49,981 INFO Connection check task start + +2025-09-24 21:02:49,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:49,981 INFO Out dated connection ,size=0 + +2025-09-24 21:02:49,981 INFO Connection check task end + +2025-09-24 21:02:52,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:52,981 INFO Connection check task start + +2025-09-24 21:02:52,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:52,982 INFO Out dated connection ,size=0 + +2025-09-24 21:02:52,982 INFO Connection check task end + +2025-09-24 21:02:55,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:55,982 INFO Connection check task start + +2025-09-24 21:02:55,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:55,983 INFO Out dated connection ,size=0 + +2025-09-24 21:02:55,983 INFO Connection check task end + +2025-09-24 21:02:58,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:02:58,985 INFO Connection check task start + +2025-09-24 21:02:58,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:02:58,985 INFO Out dated connection ,size=0 + +2025-09-24 21:02:58,985 INFO Connection check task end + +2025-09-24 21:03:01,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:01,987 INFO Connection check task start + +2025-09-24 21:03:01,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:01,987 INFO Out dated connection ,size=0 + +2025-09-24 21:03:01,987 INFO Connection check task end + +2025-09-24 21:03:04,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:04,989 INFO Connection check task start + +2025-09-24 21:03:04,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:04,989 INFO Out dated connection ,size=0 + +2025-09-24 21:03:04,989 INFO Connection check task end + +2025-09-24 21:03:07,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:07,990 INFO Connection check task start + +2025-09-24 21:03:07,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:07,990 INFO Out dated connection ,size=0 + +2025-09-24 21:03:07,990 INFO Connection check task end + +2025-09-24 21:03:10,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:10,992 INFO Connection check task start + +2025-09-24 21:03:10,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:10,993 INFO Out dated connection ,size=0 + +2025-09-24 21:03:10,993 INFO Connection check task end + +2025-09-24 21:03:13,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:13,995 INFO Connection check task start + +2025-09-24 21:03:13,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:13,995 INFO Out dated connection ,size=0 + +2025-09-24 21:03:13,995 INFO Connection check task end + +2025-09-24 21:03:16,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:16,997 INFO Connection check task start + +2025-09-24 21:03:16,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:16,997 INFO Out dated connection ,size=0 + +2025-09-24 21:03:16,997 INFO Connection check task end + +2025-09-24 21:03:19,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:19,998 INFO Connection check task start + +2025-09-24 21:03:19,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:19,998 INFO Out dated connection ,size=0 + +2025-09-24 21:03:19,998 INFO Connection check task end + +2025-09-24 21:03:22,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:22,999 INFO Connection check task start + +2025-09-24 21:03:22,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:22,999 INFO Out dated connection ,size=0 + +2025-09-24 21:03:22,999 INFO Connection check task end + +2025-09-24 21:03:25,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:26,000 INFO Connection check task start + +2025-09-24 21:03:26,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:26,000 INFO Out dated connection ,size=0 + +2025-09-24 21:03:26,000 INFO Connection check task end + +2025-09-24 21:03:28,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:29,001 INFO Connection check task start + +2025-09-24 21:03:29,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:29,001 INFO Out dated connection ,size=0 + +2025-09-24 21:03:29,001 INFO Connection check task end + +2025-09-24 21:03:31,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:32,003 INFO Connection check task start + +2025-09-24 21:03:32,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:32,003 INFO Out dated connection ,size=0 + +2025-09-24 21:03:32,003 INFO Connection check task end + +2025-09-24 21:03:34,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:35,004 INFO Connection check task start + +2025-09-24 21:03:35,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:35,004 INFO Out dated connection ,size=0 + +2025-09-24 21:03:35,004 INFO Connection check task end + +2025-09-24 21:03:37,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:38,005 INFO Connection check task start + +2025-09-24 21:03:38,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:38,006 INFO Out dated connection ,size=0 + +2025-09-24 21:03:38,006 INFO Connection check task end + +2025-09-24 21:03:40,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:41,006 INFO Connection check task start + +2025-09-24 21:03:41,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:41,006 INFO Out dated connection ,size=0 + +2025-09-24 21:03:41,006 INFO Connection check task end + +2025-09-24 21:03:43,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:44,007 INFO Connection check task start + +2025-09-24 21:03:44,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:44,007 INFO Out dated connection ,size=0 + +2025-09-24 21:03:44,007 INFO Connection check task end + +2025-09-24 21:03:46,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:47,008 INFO Connection check task start + +2025-09-24 21:03:47,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:47,008 INFO Out dated connection ,size=0 + +2025-09-24 21:03:47,008 INFO Connection check task end + +2025-09-24 21:03:49,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:50,009 INFO Connection check task start + +2025-09-24 21:03:50,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:50,009 INFO Out dated connection ,size=0 + +2025-09-24 21:03:50,009 INFO Connection check task end + +2025-09-24 21:03:52,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:53,010 INFO Connection check task start + +2025-09-24 21:03:53,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:53,010 INFO Out dated connection ,size=0 + +2025-09-24 21:03:53,010 INFO Connection check task end + +2025-09-24 21:03:55,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:56,011 INFO Connection check task start + +2025-09-24 21:03:56,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:56,011 INFO Out dated connection ,size=0 + +2025-09-24 21:03:56,011 INFO Connection check task end + +2025-09-24 21:03:58,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:03:59,011 INFO Connection check task start + +2025-09-24 21:03:59,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:03:59,011 INFO Out dated connection ,size=0 + +2025-09-24 21:03:59,011 INFO Connection check task end + +2025-09-24 21:04:01,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:02,011 INFO Connection check task start + +2025-09-24 21:04:02,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:02,012 INFO Out dated connection ,size=0 + +2025-09-24 21:04:02,012 INFO Connection check task end + +2025-09-24 21:04:04,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:05,012 INFO Connection check task start + +2025-09-24 21:04:05,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:05,012 INFO Out dated connection ,size=0 + +2025-09-24 21:04:05,012 INFO Connection check task end + +2025-09-24 21:04:07,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:08,012 INFO Connection check task start + +2025-09-24 21:04:08,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:08,012 INFO Out dated connection ,size=0 + +2025-09-24 21:04:08,012 INFO Connection check task end + +2025-09-24 21:04:10,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:11,015 INFO Connection check task start + +2025-09-24 21:04:11,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:11,015 INFO Out dated connection ,size=0 + +2025-09-24 21:04:11,015 INFO Connection check task end + +2025-09-24 21:04:13,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:14,015 INFO Connection check task start + +2025-09-24 21:04:14,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:14,015 INFO Out dated connection ,size=0 + +2025-09-24 21:04:14,015 INFO Connection check task end + +2025-09-24 21:04:16,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:17,015 INFO Connection check task start + +2025-09-24 21:04:17,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:17,016 INFO Out dated connection ,size=0 + +2025-09-24 21:04:17,016 INFO Connection check task end + +2025-09-24 21:04:19,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:20,017 INFO Connection check task start + +2025-09-24 21:04:20,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:20,017 INFO Out dated connection ,size=0 + +2025-09-24 21:04:20,017 INFO Connection check task end + +2025-09-24 21:04:22,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:23,018 INFO Connection check task start + +2025-09-24 21:04:23,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:23,018 INFO Out dated connection ,size=0 + +2025-09-24 21:04:23,018 INFO Connection check task end + +2025-09-24 21:04:25,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:26,018 INFO Connection check task start + +2025-09-24 21:04:26,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:26,018 INFO Out dated connection ,size=0 + +2025-09-24 21:04:26,018 INFO Connection check task end + +2025-09-24 21:04:28,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:29,019 INFO Connection check task start + +2025-09-24 21:04:29,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:29,019 INFO Out dated connection ,size=0 + +2025-09-24 21:04:29,019 INFO Connection check task end + +2025-09-24 21:04:31,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:32,019 INFO Connection check task start + +2025-09-24 21:04:32,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:32,019 INFO Out dated connection ,size=0 + +2025-09-24 21:04:32,019 INFO Connection check task end + +2025-09-24 21:04:34,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:35,020 INFO Connection check task start + +2025-09-24 21:04:35,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:35,020 INFO Out dated connection ,size=0 + +2025-09-24 21:04:35,020 INFO Connection check task end + +2025-09-24 21:04:37,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:38,021 INFO Connection check task start + +2025-09-24 21:04:38,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:38,021 INFO Out dated connection ,size=0 + +2025-09-24 21:04:38,021 INFO Connection check task end + +2025-09-24 21:04:40,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:41,022 INFO Connection check task start + +2025-09-24 21:04:41,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:41,022 INFO Out dated connection ,size=0 + +2025-09-24 21:04:41,022 INFO Connection check task end + +2025-09-24 21:04:43,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:44,022 INFO Connection check task start + +2025-09-24 21:04:44,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:44,022 INFO Out dated connection ,size=0 + +2025-09-24 21:04:44,022 INFO Connection check task end + +2025-09-24 21:04:46,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:47,022 INFO Connection check task start + +2025-09-24 21:04:47,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:47,023 INFO Out dated connection ,size=0 + +2025-09-24 21:04:47,023 INFO Connection check task end + +2025-09-24 21:04:49,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:50,023 INFO Connection check task start + +2025-09-24 21:04:50,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:50,023 INFO Out dated connection ,size=0 + +2025-09-24 21:04:50,023 INFO Connection check task end + +2025-09-24 21:04:52,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:53,024 INFO Connection check task start + +2025-09-24 21:04:53,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:53,024 INFO Out dated connection ,size=0 + +2025-09-24 21:04:53,024 INFO Connection check task end + +2025-09-24 21:04:55,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:56,024 INFO Connection check task start + +2025-09-24 21:04:56,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:56,024 INFO Out dated connection ,size=0 + +2025-09-24 21:04:56,024 INFO Connection check task end + +2025-09-24 21:04:58,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:04:59,025 INFO Connection check task start + +2025-09-24 21:04:59,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:04:59,025 INFO Out dated connection ,size=0 + +2025-09-24 21:04:59,025 INFO Connection check task end + +2025-09-24 21:05:01,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:02,025 INFO Connection check task start + +2025-09-24 21:05:02,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:02,026 INFO Out dated connection ,size=0 + +2025-09-24 21:05:02,026 INFO Connection check task end + +2025-09-24 21:05:04,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:05,026 INFO Connection check task start + +2025-09-24 21:05:05,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:05,026 INFO Out dated connection ,size=0 + +2025-09-24 21:05:05,026 INFO Connection check task end + +2025-09-24 21:05:07,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:08,028 INFO Connection check task start + +2025-09-24 21:05:08,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:08,028 INFO Out dated connection ,size=0 + +2025-09-24 21:05:08,028 INFO Connection check task end + +2025-09-24 21:05:10,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:11,029 INFO Connection check task start + +2025-09-24 21:05:11,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:11,029 INFO Out dated connection ,size=0 + +2025-09-24 21:05:11,029 INFO Connection check task end + +2025-09-24 21:05:13,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:14,029 INFO Connection check task start + +2025-09-24 21:05:14,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:14,029 INFO Out dated connection ,size=0 + +2025-09-24 21:05:14,029 INFO Connection check task end + +2025-09-24 21:05:16,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:17,031 INFO Connection check task start + +2025-09-24 21:05:17,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:17,031 INFO Out dated connection ,size=0 + +2025-09-24 21:05:17,031 INFO Connection check task end + +2025-09-24 21:05:19,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:20,031 INFO Connection check task start + +2025-09-24 21:05:20,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:20,032 INFO Out dated connection ,size=0 + +2025-09-24 21:05:20,032 INFO Connection check task end + +2025-09-24 21:05:22,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:23,032 INFO Connection check task start + +2025-09-24 21:05:23,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:23,032 INFO Out dated connection ,size=0 + +2025-09-24 21:05:23,032 INFO Connection check task end + +2025-09-24 21:05:25,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:26,032 INFO Connection check task start + +2025-09-24 21:05:26,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:26,033 INFO Out dated connection ,size=0 + +2025-09-24 21:05:26,033 INFO Connection check task end + +2025-09-24 21:05:28,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:29,033 INFO Connection check task start + +2025-09-24 21:05:29,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:29,033 INFO Out dated connection ,size=0 + +2025-09-24 21:05:29,033 INFO Connection check task end + +2025-09-24 21:05:31,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:32,033 INFO Connection check task start + +2025-09-24 21:05:32,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:32,033 INFO Out dated connection ,size=0 + +2025-09-24 21:05:32,034 INFO Connection check task end + +2025-09-24 21:05:34,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:35,034 INFO Connection check task start + +2025-09-24 21:05:35,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:35,034 INFO Out dated connection ,size=0 + +2025-09-24 21:05:35,034 INFO Connection check task end + +2025-09-24 21:05:37,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:38,034 INFO Connection check task start + +2025-09-24 21:05:38,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:38,034 INFO Out dated connection ,size=0 + +2025-09-24 21:05:38,034 INFO Connection check task end + +2025-09-24 21:05:40,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:41,034 INFO Connection check task start + +2025-09-24 21:05:41,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:41,035 INFO Out dated connection ,size=0 + +2025-09-24 21:05:41,035 INFO Connection check task end + +2025-09-24 21:05:43,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:44,035 INFO Connection check task start + +2025-09-24 21:05:44,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:44,035 INFO Out dated connection ,size=0 + +2025-09-24 21:05:44,035 INFO Connection check task end + +2025-09-24 21:05:46,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:47,035 INFO Connection check task start + +2025-09-24 21:05:47,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:47,035 INFO Out dated connection ,size=0 + +2025-09-24 21:05:47,036 INFO Connection check task end + +2025-09-24 21:05:49,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:50,036 INFO Connection check task start + +2025-09-24 21:05:50,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:50,036 INFO Out dated connection ,size=0 + +2025-09-24 21:05:50,036 INFO Connection check task end + +2025-09-24 21:05:52,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:53,036 INFO Connection check task start + +2025-09-24 21:05:53,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:53,036 INFO Out dated connection ,size=0 + +2025-09-24 21:05:53,036 INFO Connection check task end + +2025-09-24 21:05:55,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:56,037 INFO Connection check task start + +2025-09-24 21:05:56,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:56,037 INFO Out dated connection ,size=0 + +2025-09-24 21:05:56,037 INFO Connection check task end + +2025-09-24 21:05:58,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:05:59,037 INFO Connection check task start + +2025-09-24 21:05:59,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:05:59,037 INFO Out dated connection ,size=0 + +2025-09-24 21:05:59,037 INFO Connection check task end + +2025-09-24 21:06:01,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:02,037 INFO Connection check task start + +2025-09-24 21:06:02,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:02,038 INFO Out dated connection ,size=0 + +2025-09-24 21:06:02,038 INFO Connection check task end + +2025-09-24 21:06:04,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:05,038 INFO Connection check task start + +2025-09-24 21:06:05,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:05,038 INFO Out dated connection ,size=0 + +2025-09-24 21:06:05,038 INFO Connection check task end + +2025-09-24 21:06:07,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:08,038 INFO Connection check task start + +2025-09-24 21:06:08,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:08,038 INFO Out dated connection ,size=0 + +2025-09-24 21:06:08,038 INFO Connection check task end + +2025-09-24 21:06:10,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:11,039 INFO Connection check task start + +2025-09-24 21:06:11,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:11,039 INFO Out dated connection ,size=0 + +2025-09-24 21:06:11,039 INFO Connection check task end + +2025-09-24 21:06:13,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:14,040 INFO Connection check task start + +2025-09-24 21:06:14,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:14,041 INFO Out dated connection ,size=0 + +2025-09-24 21:06:14,041 INFO Connection check task end + +2025-09-24 21:06:16,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:17,041 INFO Connection check task start + +2025-09-24 21:06:17,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:17,041 INFO Out dated connection ,size=0 + +2025-09-24 21:06:17,041 INFO Connection check task end + +2025-09-24 21:06:19,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:20,044 INFO Connection check task start + +2025-09-24 21:06:20,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:20,044 INFO Out dated connection ,size=0 + +2025-09-24 21:06:20,044 INFO Connection check task end + +2025-09-24 21:06:22,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:23,044 INFO Connection check task start + +2025-09-24 21:06:23,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:23,044 INFO Out dated connection ,size=0 + +2025-09-24 21:06:23,044 INFO Connection check task end + +2025-09-24 21:06:25,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:26,045 INFO Connection check task start + +2025-09-24 21:06:26,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:26,045 INFO Out dated connection ,size=0 + +2025-09-24 21:06:26,045 INFO Connection check task end + +2025-09-24 21:06:28,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:29,046 INFO Connection check task start + +2025-09-24 21:06:29,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:29,046 INFO Out dated connection ,size=0 + +2025-09-24 21:06:29,046 INFO Connection check task end + +2025-09-24 21:06:31,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:32,047 INFO Connection check task start + +2025-09-24 21:06:32,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:32,047 INFO Out dated connection ,size=0 + +2025-09-24 21:06:32,047 INFO Connection check task end + +2025-09-24 21:06:34,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:35,047 INFO Connection check task start + +2025-09-24 21:06:35,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:35,047 INFO Out dated connection ,size=0 + +2025-09-24 21:06:35,047 INFO Connection check task end + +2025-09-24 21:06:37,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:38,048 INFO Connection check task start + +2025-09-24 21:06:38,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:38,048 INFO Out dated connection ,size=0 + +2025-09-24 21:06:38,048 INFO Connection check task end + +2025-09-24 21:06:40,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:41,048 INFO Connection check task start + +2025-09-24 21:06:41,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:41,048 INFO Out dated connection ,size=0 + +2025-09-24 21:06:41,048 INFO Connection check task end + +2025-09-24 21:06:43,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:44,049 INFO Connection check task start + +2025-09-24 21:06:44,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:44,049 INFO Out dated connection ,size=0 + +2025-09-24 21:06:44,049 INFO Connection check task end + +2025-09-24 21:06:46,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:47,049 INFO Connection check task start + +2025-09-24 21:06:47,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:47,049 INFO Out dated connection ,size=0 + +2025-09-24 21:06:47,049 INFO Connection check task end + +2025-09-24 21:06:49,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:50,050 INFO Connection check task start + +2025-09-24 21:06:50,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:50,050 INFO Out dated connection ,size=0 + +2025-09-24 21:06:50,050 INFO Connection check task end + +2025-09-24 21:06:52,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:53,050 INFO Connection check task start + +2025-09-24 21:06:53,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:53,050 INFO Out dated connection ,size=0 + +2025-09-24 21:06:53,050 INFO Connection check task end + +2025-09-24 21:06:55,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:56,051 INFO Connection check task start + +2025-09-24 21:06:56,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:56,051 INFO Out dated connection ,size=0 + +2025-09-24 21:06:56,051 INFO Connection check task end + +2025-09-24 21:06:58,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:06:59,051 INFO Connection check task start + +2025-09-24 21:06:59,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:06:59,051 INFO Out dated connection ,size=0 + +2025-09-24 21:06:59,051 INFO Connection check task end + +2025-09-24 21:07:01,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:02,053 INFO Connection check task start + +2025-09-24 21:07:02,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:02,053 INFO Out dated connection ,size=0 + +2025-09-24 21:07:02,053 INFO Connection check task end + +2025-09-24 21:07:04,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:05,054 INFO Connection check task start + +2025-09-24 21:07:05,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:05,054 INFO Out dated connection ,size=0 + +2025-09-24 21:07:05,054 INFO Connection check task end + +2025-09-24 21:07:07,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:08,055 INFO Connection check task start + +2025-09-24 21:07:08,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:08,055 INFO Out dated connection ,size=0 + +2025-09-24 21:07:08,055 INFO Connection check task end + +2025-09-24 21:07:10,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:11,055 INFO Connection check task start + +2025-09-24 21:07:11,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:11,055 INFO Out dated connection ,size=0 + +2025-09-24 21:07:11,056 INFO Connection check task end + +2025-09-24 21:07:13,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:14,056 INFO Connection check task start + +2025-09-24 21:07:14,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:14,056 INFO Out dated connection ,size=0 + +2025-09-24 21:07:14,056 INFO Connection check task end + +2025-09-24 21:07:16,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:17,057 INFO Connection check task start + +2025-09-24 21:07:17,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:17,058 INFO Out dated connection ,size=0 + +2025-09-24 21:07:17,058 INFO Connection check task end + +2025-09-24 21:07:19,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:20,058 INFO Connection check task start + +2025-09-24 21:07:20,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:20,058 INFO Out dated connection ,size=0 + +2025-09-24 21:07:20,058 INFO Connection check task end + +2025-09-24 21:07:22,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:23,060 INFO Connection check task start + +2025-09-24 21:07:23,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:23,060 INFO Out dated connection ,size=0 + +2025-09-24 21:07:23,060 INFO Connection check task end + +2025-09-24 21:07:25,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:26,062 INFO Connection check task start + +2025-09-24 21:07:26,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:26,062 INFO Out dated connection ,size=0 + +2025-09-24 21:07:26,063 INFO Connection check task end + +2025-09-24 21:07:28,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:29,063 INFO Connection check task start + +2025-09-24 21:07:29,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:29,063 INFO Out dated connection ,size=0 + +2025-09-24 21:07:29,063 INFO Connection check task end + +2025-09-24 21:07:31,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:32,064 INFO Connection check task start + +2025-09-24 21:07:32,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:32,064 INFO Out dated connection ,size=0 + +2025-09-24 21:07:32,064 INFO Connection check task end + +2025-09-24 21:07:34,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:35,064 INFO Connection check task start + +2025-09-24 21:07:35,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:35,065 INFO Out dated connection ,size=0 + +2025-09-24 21:07:35,065 INFO Connection check task end + +2025-09-24 21:07:37,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:38,066 INFO Connection check task start + +2025-09-24 21:07:38,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:38,066 INFO Out dated connection ,size=0 + +2025-09-24 21:07:38,066 INFO Connection check task end + +2025-09-24 21:07:40,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:41,067 INFO Connection check task start + +2025-09-24 21:07:41,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:41,067 INFO Out dated connection ,size=0 + +2025-09-24 21:07:41,067 INFO Connection check task end + +2025-09-24 21:07:43,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:44,068 INFO Connection check task start + +2025-09-24 21:07:44,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:44,068 INFO Out dated connection ,size=0 + +2025-09-24 21:07:44,068 INFO Connection check task end + +2025-09-24 21:07:46,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:47,069 INFO Connection check task start + +2025-09-24 21:07:47,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:47,069 INFO Out dated connection ,size=0 + +2025-09-24 21:07:47,069 INFO Connection check task end + +2025-09-24 21:07:49,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:50,070 INFO Connection check task start + +2025-09-24 21:07:50,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:50,070 INFO Out dated connection ,size=0 + +2025-09-24 21:07:50,070 INFO Connection check task end + +2025-09-24 21:07:52,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:53,072 INFO Connection check task start + +2025-09-24 21:07:53,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:53,072 INFO Out dated connection ,size=0 + +2025-09-24 21:07:53,072 INFO Connection check task end + +2025-09-24 21:07:55,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:56,074 INFO Connection check task start + +2025-09-24 21:07:56,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:56,075 INFO Out dated connection ,size=0 + +2025-09-24 21:07:56,075 INFO Connection check task end + +2025-09-24 21:07:58,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:07:59,077 INFO Connection check task start + +2025-09-24 21:07:59,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:07:59,077 INFO Out dated connection ,size=0 + +2025-09-24 21:07:59,077 INFO Connection check task end + +2025-09-24 21:08:01,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:02,078 INFO Connection check task start + +2025-09-24 21:08:02,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:02,078 INFO Out dated connection ,size=0 + +2025-09-24 21:08:02,078 INFO Connection check task end + +2025-09-24 21:08:04,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:05,079 INFO Connection check task start + +2025-09-24 21:08:05,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:05,079 INFO Out dated connection ,size=0 + +2025-09-24 21:08:05,079 INFO Connection check task end + +2025-09-24 21:08:07,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:08,080 INFO Connection check task start + +2025-09-24 21:08:08,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:08,080 INFO Out dated connection ,size=0 + +2025-09-24 21:08:08,080 INFO Connection check task end + +2025-09-24 21:08:10,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:11,081 INFO Connection check task start + +2025-09-24 21:08:11,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:11,081 INFO Out dated connection ,size=0 + +2025-09-24 21:08:11,081 INFO Connection check task end + +2025-09-24 21:08:13,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:14,082 INFO Connection check task start + +2025-09-24 21:08:14,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:14,082 INFO Out dated connection ,size=0 + +2025-09-24 21:08:14,082 INFO Connection check task end + +2025-09-24 21:08:16,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:17,083 INFO Connection check task start + +2025-09-24 21:08:17,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:17,083 INFO Out dated connection ,size=0 + +2025-09-24 21:08:17,083 INFO Connection check task end + +2025-09-24 21:08:19,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:20,085 INFO Connection check task start + +2025-09-24 21:08:20,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:20,085 INFO Out dated connection ,size=0 + +2025-09-24 21:08:20,085 INFO Connection check task end + +2025-09-24 21:08:22,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:23,086 INFO Connection check task start + +2025-09-24 21:08:23,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:23,086 INFO Out dated connection ,size=0 + +2025-09-24 21:08:23,086 INFO Connection check task end + +2025-09-24 21:08:25,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:26,088 INFO Connection check task start + +2025-09-24 21:08:26,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:26,088 INFO Out dated connection ,size=0 + +2025-09-24 21:08:26,088 INFO Connection check task end + +2025-09-24 21:08:28,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:29,090 INFO Connection check task start + +2025-09-24 21:08:29,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:29,090 INFO Out dated connection ,size=0 + +2025-09-24 21:08:29,090 INFO Connection check task end + +2025-09-24 21:08:31,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:32,090 INFO Connection check task start + +2025-09-24 21:08:32,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:32,091 INFO Out dated connection ,size=0 + +2025-09-24 21:08:32,091 INFO Connection check task end + +2025-09-24 21:08:34,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:35,091 INFO Connection check task start + +2025-09-24 21:08:35,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:35,091 INFO Out dated connection ,size=0 + +2025-09-24 21:08:35,091 INFO Connection check task end + +2025-09-24 21:08:37,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:38,092 INFO Connection check task start + +2025-09-24 21:08:38,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:38,092 INFO Out dated connection ,size=0 + +2025-09-24 21:08:38,092 INFO Connection check task end + +2025-09-24 21:08:40,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:41,093 INFO Connection check task start + +2025-09-24 21:08:41,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:41,093 INFO Out dated connection ,size=0 + +2025-09-24 21:08:41,093 INFO Connection check task end + +2025-09-24 21:08:43,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:44,094 INFO Connection check task start + +2025-09-24 21:08:44,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:44,094 INFO Out dated connection ,size=0 + +2025-09-24 21:08:44,095 INFO Connection check task end + +2025-09-24 21:08:46,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:47,095 INFO Connection check task start + +2025-09-24 21:08:47,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:47,095 INFO Out dated connection ,size=0 + +2025-09-24 21:08:47,095 INFO Connection check task end + +2025-09-24 21:08:49,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:50,096 INFO Connection check task start + +2025-09-24 21:08:50,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:50,097 INFO Out dated connection ,size=0 + +2025-09-24 21:08:50,097 INFO Connection check task end + +2025-09-24 21:08:52,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:53,097 INFO Connection check task start + +2025-09-24 21:08:53,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:53,097 INFO Out dated connection ,size=0 + +2025-09-24 21:08:53,097 INFO Connection check task end + +2025-09-24 21:08:55,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:56,098 INFO Connection check task start + +2025-09-24 21:08:56,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:56,098 INFO Out dated connection ,size=0 + +2025-09-24 21:08:56,098 INFO Connection check task end + +2025-09-24 21:08:58,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:08:59,098 INFO Connection check task start + +2025-09-24 21:08:59,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:08:59,098 INFO Out dated connection ,size=0 + +2025-09-24 21:08:59,098 INFO Connection check task end + +2025-09-24 21:09:01,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:02,099 INFO Connection check task start + +2025-09-24 21:09:02,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:02,099 INFO Out dated connection ,size=0 + +2025-09-24 21:09:02,099 INFO Connection check task end + +2025-09-24 21:09:04,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:05,100 INFO Connection check task start + +2025-09-24 21:09:05,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:05,100 INFO Out dated connection ,size=0 + +2025-09-24 21:09:05,100 INFO Connection check task end + +2025-09-24 21:09:07,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:08,102 INFO Connection check task start + +2025-09-24 21:09:08,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:08,102 INFO Out dated connection ,size=0 + +2025-09-24 21:09:08,102 INFO Connection check task end + +2025-09-24 21:09:10,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:11,102 INFO Connection check task start + +2025-09-24 21:09:11,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:11,102 INFO Out dated connection ,size=0 + +2025-09-24 21:09:11,102 INFO Connection check task end + +2025-09-24 21:09:13,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:14,104 INFO Connection check task start + +2025-09-24 21:09:14,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:14,104 INFO Out dated connection ,size=0 + +2025-09-24 21:09:14,105 INFO Connection check task end + +2025-09-24 21:09:16,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:17,105 INFO Connection check task start + +2025-09-24 21:09:17,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:17,105 INFO Out dated connection ,size=0 + +2025-09-24 21:09:17,105 INFO Connection check task end + +2025-09-24 21:09:19,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:20,105 INFO Connection check task start + +2025-09-24 21:09:20,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:20,105 INFO Out dated connection ,size=0 + +2025-09-24 21:09:20,105 INFO Connection check task end + +2025-09-24 21:09:22,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:23,106 INFO Connection check task start + +2025-09-24 21:09:23,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:23,106 INFO Out dated connection ,size=0 + +2025-09-24 21:09:23,106 INFO Connection check task end + +2025-09-24 21:09:25,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:26,108 INFO Connection check task start + +2025-09-24 21:09:26,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:26,108 INFO Out dated connection ,size=0 + +2025-09-24 21:09:26,108 INFO Connection check task end + +2025-09-24 21:09:28,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:29,109 INFO Connection check task start + +2025-09-24 21:09:29,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:29,109 INFO Out dated connection ,size=0 + +2025-09-24 21:09:29,109 INFO Connection check task end + +2025-09-24 21:09:31,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:32,109 INFO Connection check task start + +2025-09-24 21:09:32,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:32,110 INFO Out dated connection ,size=0 + +2025-09-24 21:09:32,110 INFO Connection check task end + +2025-09-24 21:09:34,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:35,110 INFO Connection check task start + +2025-09-24 21:09:35,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:35,111 INFO Out dated connection ,size=0 + +2025-09-24 21:09:35,111 INFO Connection check task end + +2025-09-24 21:09:37,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:38,112 INFO Connection check task start + +2025-09-24 21:09:38,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:38,112 INFO Out dated connection ,size=0 + +2025-09-24 21:09:38,113 INFO Connection check task end + +2025-09-24 21:09:40,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:41,113 INFO Connection check task start + +2025-09-24 21:09:41,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:41,113 INFO Out dated connection ,size=0 + +2025-09-24 21:09:41,113 INFO Connection check task end + +2025-09-24 21:09:43,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:44,114 INFO Connection check task start + +2025-09-24 21:09:44,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:44,114 INFO Out dated connection ,size=0 + +2025-09-24 21:09:44,114 INFO Connection check task end + +2025-09-24 21:09:46,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:47,116 INFO Connection check task start + +2025-09-24 21:09:47,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:47,116 INFO Out dated connection ,size=0 + +2025-09-24 21:09:47,116 INFO Connection check task end + +2025-09-24 21:09:49,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:50,118 INFO Connection check task start + +2025-09-24 21:09:50,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:50,118 INFO Out dated connection ,size=0 + +2025-09-24 21:09:50,118 INFO Connection check task end + +2025-09-24 21:09:52,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:53,119 INFO Connection check task start + +2025-09-24 21:09:53,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:53,120 INFO Out dated connection ,size=0 + +2025-09-24 21:09:53,120 INFO Connection check task end + +2025-09-24 21:09:55,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:56,121 INFO Connection check task start + +2025-09-24 21:09:56,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:56,121 INFO Out dated connection ,size=0 + +2025-09-24 21:09:56,122 INFO Connection check task end + +2025-09-24 21:09:58,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:09:59,123 INFO Connection check task start + +2025-09-24 21:09:59,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:09:59,123 INFO Out dated connection ,size=0 + +2025-09-24 21:09:59,124 INFO Connection check task end + +2025-09-24 21:10:01,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:02,124 INFO Connection check task start + +2025-09-24 21:10:02,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:02,124 INFO Out dated connection ,size=0 + +2025-09-24 21:10:02,124 INFO Connection check task end + +2025-09-24 21:10:04,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:05,124 INFO Connection check task start + +2025-09-24 21:10:05,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:05,124 INFO Out dated connection ,size=0 + +2025-09-24 21:10:05,125 INFO Connection check task end + +2025-09-24 21:10:07,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:08,125 INFO Connection check task start + +2025-09-24 21:10:08,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:08,125 INFO Out dated connection ,size=0 + +2025-09-24 21:10:08,125 INFO Connection check task end + +2025-09-24 21:10:10,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:11,127 INFO Connection check task start + +2025-09-24 21:10:11,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:11,127 INFO Out dated connection ,size=0 + +2025-09-24 21:10:11,127 INFO Connection check task end + +2025-09-24 21:10:13,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:14,129 INFO Connection check task start + +2025-09-24 21:10:14,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:14,130 INFO Out dated connection ,size=0 + +2025-09-24 21:10:14,130 INFO Connection check task end + +2025-09-24 21:10:16,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:17,130 INFO Connection check task start + +2025-09-24 21:10:17,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:17,130 INFO Out dated connection ,size=0 + +2025-09-24 21:10:17,130 INFO Connection check task end + +2025-09-24 21:10:19,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:20,130 INFO Connection check task start + +2025-09-24 21:10:20,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:20,131 INFO Out dated connection ,size=0 + +2025-09-24 21:10:20,131 INFO Connection check task end + +2025-09-24 21:10:22,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:23,131 INFO Connection check task start + +2025-09-24 21:10:23,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:23,131 INFO Out dated connection ,size=0 + +2025-09-24 21:10:23,131 INFO Connection check task end + +2025-09-24 21:10:25,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:26,131 INFO Connection check task start + +2025-09-24 21:10:26,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:26,131 INFO Out dated connection ,size=0 + +2025-09-24 21:10:26,131 INFO Connection check task end + +2025-09-24 21:10:28,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:29,133 INFO Connection check task start + +2025-09-24 21:10:29,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:29,133 INFO Out dated connection ,size=0 + +2025-09-24 21:10:29,134 INFO Connection check task end + +2025-09-24 21:10:31,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:32,135 INFO Connection check task start + +2025-09-24 21:10:32,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:32,135 INFO Out dated connection ,size=0 + +2025-09-24 21:10:32,135 INFO Connection check task end + +2025-09-24 21:10:34,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:35,136 INFO Connection check task start + +2025-09-24 21:10:35,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:35,136 INFO Out dated connection ,size=0 + +2025-09-24 21:10:35,136 INFO Connection check task end + +2025-09-24 21:10:37,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:38,137 INFO Connection check task start + +2025-09-24 21:10:38,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:38,137 INFO Out dated connection ,size=0 + +2025-09-24 21:10:38,137 INFO Connection check task end + +2025-09-24 21:10:40,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:41,139 INFO Connection check task start + +2025-09-24 21:10:41,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:41,139 INFO Out dated connection ,size=0 + +2025-09-24 21:10:41,139 INFO Connection check task end + +2025-09-24 21:10:43,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:44,141 INFO Connection check task start + +2025-09-24 21:10:44,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:44,141 INFO Out dated connection ,size=0 + +2025-09-24 21:10:44,141 INFO Connection check task end + +2025-09-24 21:10:46,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:47,142 INFO Connection check task start + +2025-09-24 21:10:47,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:47,142 INFO Out dated connection ,size=0 + +2025-09-24 21:10:47,142 INFO Connection check task end + +2025-09-24 21:10:49,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:50,144 INFO Connection check task start + +2025-09-24 21:10:50,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:50,144 INFO Out dated connection ,size=0 + +2025-09-24 21:10:50,144 INFO Connection check task end + +2025-09-24 21:10:52,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:53,145 INFO Connection check task start + +2025-09-24 21:10:53,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:53,146 INFO Out dated connection ,size=0 + +2025-09-24 21:10:53,146 INFO Connection check task end + +2025-09-24 21:10:55,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:56,146 INFO Connection check task start + +2025-09-24 21:10:56,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:56,146 INFO Out dated connection ,size=0 + +2025-09-24 21:10:56,146 INFO Connection check task end + +2025-09-24 21:10:58,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:10:59,147 INFO Connection check task start + +2025-09-24 21:10:59,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:10:59,147 INFO Out dated connection ,size=0 + +2025-09-24 21:10:59,147 INFO Connection check task end + +2025-09-24 21:11:01,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:02,148 INFO Connection check task start + +2025-09-24 21:11:02,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:02,148 INFO Out dated connection ,size=0 + +2025-09-24 21:11:02,148 INFO Connection check task end + +2025-09-24 21:11:04,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:05,149 INFO Connection check task start + +2025-09-24 21:11:05,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:05,149 INFO Out dated connection ,size=0 + +2025-09-24 21:11:05,150 INFO Connection check task end + +2025-09-24 21:11:07,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:08,150 INFO Connection check task start + +2025-09-24 21:11:08,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:08,150 INFO Out dated connection ,size=0 + +2025-09-24 21:11:08,150 INFO Connection check task end + +2025-09-24 21:11:10,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:11,150 INFO Connection check task start + +2025-09-24 21:11:11,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:11,151 INFO Out dated connection ,size=0 + +2025-09-24 21:11:11,151 INFO Connection check task end + +2025-09-24 21:11:13,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:14,152 INFO Connection check task start + +2025-09-24 21:11:14,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:14,153 INFO Out dated connection ,size=0 + +2025-09-24 21:11:14,153 INFO Connection check task end + +2025-09-24 21:11:16,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:17,153 INFO Connection check task start + +2025-09-24 21:11:17,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:17,154 INFO Out dated connection ,size=0 + +2025-09-24 21:11:17,154 INFO Connection check task end + +2025-09-24 21:11:19,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:20,155 INFO Connection check task start + +2025-09-24 21:11:20,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:20,155 INFO Out dated connection ,size=0 + +2025-09-24 21:11:20,155 INFO Connection check task end + +2025-09-24 21:11:22,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:23,155 INFO Connection check task start + +2025-09-24 21:11:23,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:23,156 INFO Out dated connection ,size=0 + +2025-09-24 21:11:23,156 INFO Connection check task end + +2025-09-24 21:11:25,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:26,158 INFO Connection check task start + +2025-09-24 21:11:26,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:26,158 INFO Out dated connection ,size=0 + +2025-09-24 21:11:26,158 INFO Connection check task end + +2025-09-24 21:11:28,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:29,158 INFO Connection check task start + +2025-09-24 21:11:29,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:29,158 INFO Out dated connection ,size=0 + +2025-09-24 21:11:29,159 INFO Connection check task end + +2025-09-24 21:11:31,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:32,159 INFO Connection check task start + +2025-09-24 21:11:32,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:32,159 INFO Out dated connection ,size=0 + +2025-09-24 21:11:32,159 INFO Connection check task end + +2025-09-24 21:11:34,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:35,161 INFO Connection check task start + +2025-09-24 21:11:35,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:35,161 INFO Out dated connection ,size=0 + +2025-09-24 21:11:35,161 INFO Connection check task end + +2025-09-24 21:11:37,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:38,162 INFO Connection check task start + +2025-09-24 21:11:38,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:38,162 INFO Out dated connection ,size=0 + +2025-09-24 21:11:38,162 INFO Connection check task end + +2025-09-24 21:11:40,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:41,164 INFO Connection check task start + +2025-09-24 21:11:41,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:41,164 INFO Out dated connection ,size=0 + +2025-09-24 21:11:41,164 INFO Connection check task end + +2025-09-24 21:11:43,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:44,164 INFO Connection check task start + +2025-09-24 21:11:44,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:44,164 INFO Out dated connection ,size=0 + +2025-09-24 21:11:44,164 INFO Connection check task end + +2025-09-24 21:11:46,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:47,166 INFO Connection check task start + +2025-09-24 21:11:47,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:47,166 INFO Out dated connection ,size=0 + +2025-09-24 21:11:47,166 INFO Connection check task end + +2025-09-24 21:11:49,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:50,166 INFO Connection check task start + +2025-09-24 21:11:50,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:50,166 INFO Out dated connection ,size=0 + +2025-09-24 21:11:50,166 INFO Connection check task end + +2025-09-24 21:11:52,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:53,166 INFO Connection check task start + +2025-09-24 21:11:53,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:53,167 INFO Out dated connection ,size=0 + +2025-09-24 21:11:53,167 INFO Connection check task end + +2025-09-24 21:11:55,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:56,169 INFO Connection check task start + +2025-09-24 21:11:56,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:56,169 INFO Out dated connection ,size=0 + +2025-09-24 21:11:56,169 INFO Connection check task end + +2025-09-24 21:11:58,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:11:59,169 INFO Connection check task start + +2025-09-24 21:11:59,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:11:59,170 INFO Out dated connection ,size=0 + +2025-09-24 21:11:59,170 INFO Connection check task end + +2025-09-24 21:12:01,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:02,172 INFO Connection check task start + +2025-09-24 21:12:02,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:02,172 INFO Out dated connection ,size=0 + +2025-09-24 21:12:02,172 INFO Connection check task end + +2025-09-24 21:12:04,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:05,174 INFO Connection check task start + +2025-09-24 21:12:05,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:05,174 INFO Out dated connection ,size=0 + +2025-09-24 21:12:05,174 INFO Connection check task end + +2025-09-24 21:12:07,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:08,175 INFO Connection check task start + +2025-09-24 21:12:08,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:08,175 INFO Out dated connection ,size=0 + +2025-09-24 21:12:08,175 INFO Connection check task end + +2025-09-24 21:12:10,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:11,175 INFO Connection check task start + +2025-09-24 21:12:11,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:11,176 INFO Out dated connection ,size=0 + +2025-09-24 21:12:11,176 INFO Connection check task end + +2025-09-24 21:12:13,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:14,176 INFO Connection check task start + +2025-09-24 21:12:14,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:14,177 INFO Out dated connection ,size=0 + +2025-09-24 21:12:14,177 INFO Connection check task end + +2025-09-24 21:12:16,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:17,177 INFO Connection check task start + +2025-09-24 21:12:17,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:17,177 INFO Out dated connection ,size=0 + +2025-09-24 21:12:17,177 INFO Connection check task end + +2025-09-24 21:12:19,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:20,178 INFO Connection check task start + +2025-09-24 21:12:20,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:20,178 INFO Out dated connection ,size=0 + +2025-09-24 21:12:20,178 INFO Connection check task end + +2025-09-24 21:12:22,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:23,180 INFO Connection check task start + +2025-09-24 21:12:23,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:23,180 INFO Out dated connection ,size=0 + +2025-09-24 21:12:23,180 INFO Connection check task end + +2025-09-24 21:12:25,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:26,181 INFO Connection check task start + +2025-09-24 21:12:26,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:26,181 INFO Out dated connection ,size=0 + +2025-09-24 21:12:26,181 INFO Connection check task end + +2025-09-24 21:12:28,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:29,181 INFO Connection check task start + +2025-09-24 21:12:29,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:29,182 INFO Out dated connection ,size=0 + +2025-09-24 21:12:29,182 INFO Connection check task end + +2025-09-24 21:12:31,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:32,183 INFO Connection check task start + +2025-09-24 21:12:32,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:32,183 INFO Out dated connection ,size=0 + +2025-09-24 21:12:32,183 INFO Connection check task end + +2025-09-24 21:12:34,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:35,184 INFO Connection check task start + +2025-09-24 21:12:35,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:35,184 INFO Out dated connection ,size=0 + +2025-09-24 21:12:35,184 INFO Connection check task end + +2025-09-24 21:12:37,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:38,185 INFO Connection check task start + +2025-09-24 21:12:38,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:38,185 INFO Out dated connection ,size=0 + +2025-09-24 21:12:38,185 INFO Connection check task end + +2025-09-24 21:12:40,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:41,186 INFO Connection check task start + +2025-09-24 21:12:41,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:41,186 INFO Out dated connection ,size=0 + +2025-09-24 21:12:41,186 INFO Connection check task end + +2025-09-24 21:12:43,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:44,186 INFO Connection check task start + +2025-09-24 21:12:44,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:44,186 INFO Out dated connection ,size=0 + +2025-09-24 21:12:44,186 INFO Connection check task end + +2025-09-24 21:12:46,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:47,187 INFO Connection check task start + +2025-09-24 21:12:47,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:47,187 INFO Out dated connection ,size=0 + +2025-09-24 21:12:47,187 INFO Connection check task end + +2025-09-24 21:12:49,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:50,187 INFO Connection check task start + +2025-09-24 21:12:50,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:50,188 INFO Out dated connection ,size=0 + +2025-09-24 21:12:50,188 INFO Connection check task end + +2025-09-24 21:12:52,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:53,190 INFO Connection check task start + +2025-09-24 21:12:53,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:53,190 INFO Out dated connection ,size=0 + +2025-09-24 21:12:53,190 INFO Connection check task end + +2025-09-24 21:12:55,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:56,192 INFO Connection check task start + +2025-09-24 21:12:56,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:56,192 INFO Out dated connection ,size=0 + +2025-09-24 21:12:56,192 INFO Connection check task end + +2025-09-24 21:12:58,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:12:59,193 INFO Connection check task start + +2025-09-24 21:12:59,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:12:59,193 INFO Out dated connection ,size=0 + +2025-09-24 21:12:59,193 INFO Connection check task end + +2025-09-24 21:13:01,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:02,193 INFO Connection check task start + +2025-09-24 21:13:02,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:02,194 INFO Out dated connection ,size=0 + +2025-09-24 21:13:02,194 INFO Connection check task end + +2025-09-24 21:13:04,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:05,194 INFO Connection check task start + +2025-09-24 21:13:05,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:05,194 INFO Out dated connection ,size=0 + +2025-09-24 21:13:05,194 INFO Connection check task end + +2025-09-24 21:13:07,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:08,195 INFO Connection check task start + +2025-09-24 21:13:08,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:08,196 INFO Out dated connection ,size=0 + +2025-09-24 21:13:08,196 INFO Connection check task end + +2025-09-24 21:13:10,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:11,196 INFO Connection check task start + +2025-09-24 21:13:11,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:11,196 INFO Out dated connection ,size=0 + +2025-09-24 21:13:11,196 INFO Connection check task end + +2025-09-24 21:13:13,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:14,198 INFO Connection check task start + +2025-09-24 21:13:14,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:14,198 INFO Out dated connection ,size=0 + +2025-09-24 21:13:14,198 INFO Connection check task end + +2025-09-24 21:13:16,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:17,200 INFO Connection check task start + +2025-09-24 21:13:17,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:17,200 INFO Out dated connection ,size=0 + +2025-09-24 21:13:17,200 INFO Connection check task end + +2025-09-24 21:13:19,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:20,200 INFO Connection check task start + +2025-09-24 21:13:20,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:20,200 INFO Out dated connection ,size=0 + +2025-09-24 21:13:20,200 INFO Connection check task end + +2025-09-24 21:13:22,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:23,201 INFO Connection check task start + +2025-09-24 21:13:23,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:23,201 INFO Out dated connection ,size=0 + +2025-09-24 21:13:23,201 INFO Connection check task end + +2025-09-24 21:13:25,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:26,203 INFO Connection check task start + +2025-09-24 21:13:26,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:26,203 INFO Out dated connection ,size=0 + +2025-09-24 21:13:26,203 INFO Connection check task end + +2025-09-24 21:13:28,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:29,203 INFO Connection check task start + +2025-09-24 21:13:29,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:29,203 INFO Out dated connection ,size=0 + +2025-09-24 21:13:29,203 INFO Connection check task end + +2025-09-24 21:13:31,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:32,204 INFO Connection check task start + +2025-09-24 21:13:32,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:32,204 INFO Out dated connection ,size=0 + +2025-09-24 21:13:32,204 INFO Connection check task end + +2025-09-24 21:13:34,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:35,205 INFO Connection check task start + +2025-09-24 21:13:35,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:35,205 INFO Out dated connection ,size=0 + +2025-09-24 21:13:35,205 INFO Connection check task end + +2025-09-24 21:13:37,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:38,207 INFO Connection check task start + +2025-09-24 21:13:38,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:38,207 INFO Out dated connection ,size=0 + +2025-09-24 21:13:38,207 INFO Connection check task end + +2025-09-24 21:13:40,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:41,208 INFO Connection check task start + +2025-09-24 21:13:41,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:41,208 INFO Out dated connection ,size=0 + +2025-09-24 21:13:41,208 INFO Connection check task end + +2025-09-24 21:13:43,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:44,208 INFO Connection check task start + +2025-09-24 21:13:44,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:44,208 INFO Out dated connection ,size=0 + +2025-09-24 21:13:44,208 INFO Connection check task end + +2025-09-24 21:13:46,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:47,209 INFO Connection check task start + +2025-09-24 21:13:47,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:47,209 INFO Out dated connection ,size=0 + +2025-09-24 21:13:47,210 INFO Connection check task end + +2025-09-24 21:13:49,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:50,211 INFO Connection check task start + +2025-09-24 21:13:50,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:50,211 INFO Out dated connection ,size=0 + +2025-09-24 21:13:50,211 INFO Connection check task end + +2025-09-24 21:13:52,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:53,212 INFO Connection check task start + +2025-09-24 21:13:53,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:53,212 INFO Out dated connection ,size=0 + +2025-09-24 21:13:53,212 INFO Connection check task end + +2025-09-24 21:13:55,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:56,213 INFO Connection check task start + +2025-09-24 21:13:56,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:56,213 INFO Out dated connection ,size=0 + +2025-09-24 21:13:56,213 INFO Connection check task end + +2025-09-24 21:13:58,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:13:59,214 INFO Connection check task start + +2025-09-24 21:13:59,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:13:59,214 INFO Out dated connection ,size=0 + +2025-09-24 21:13:59,214 INFO Connection check task end + +2025-09-24 21:14:01,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:02,215 INFO Connection check task start + +2025-09-24 21:14:02,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:02,215 INFO Out dated connection ,size=0 + +2025-09-24 21:14:02,215 INFO Connection check task end + +2025-09-24 21:14:04,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:05,215 INFO Connection check task start + +2025-09-24 21:14:05,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:05,215 INFO Out dated connection ,size=0 + +2025-09-24 21:14:05,215 INFO Connection check task end + +2025-09-24 21:14:07,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:08,216 INFO Connection check task start + +2025-09-24 21:14:08,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:08,216 INFO Out dated connection ,size=0 + +2025-09-24 21:14:08,216 INFO Connection check task end + +2025-09-24 21:14:10,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:11,216 INFO Connection check task start + +2025-09-24 21:14:11,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:11,217 INFO Out dated connection ,size=0 + +2025-09-24 21:14:11,217 INFO Connection check task end + +2025-09-24 21:14:13,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:14,218 INFO Connection check task start + +2025-09-24 21:14:14,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:14,218 INFO Out dated connection ,size=0 + +2025-09-24 21:14:14,218 INFO Connection check task end + +2025-09-24 21:14:16,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:17,220 INFO Connection check task start + +2025-09-24 21:14:17,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:17,220 INFO Out dated connection ,size=0 + +2025-09-24 21:14:17,220 INFO Connection check task end + +2025-09-24 21:14:19,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:20,221 INFO Connection check task start + +2025-09-24 21:14:20,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:20,222 INFO Out dated connection ,size=0 + +2025-09-24 21:14:20,222 INFO Connection check task end + +2025-09-24 21:14:22,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:23,223 INFO Connection check task start + +2025-09-24 21:14:23,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:23,223 INFO Out dated connection ,size=0 + +2025-09-24 21:14:23,223 INFO Connection check task end + +2025-09-24 21:14:25,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:26,225 INFO Connection check task start + +2025-09-24 21:14:26,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:26,226 INFO Out dated connection ,size=0 + +2025-09-24 21:14:26,226 INFO Connection check task end + +2025-09-24 21:14:28,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:29,226 INFO Connection check task start + +2025-09-24 21:14:29,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:29,226 INFO Out dated connection ,size=0 + +2025-09-24 21:14:29,226 INFO Connection check task end + +2025-09-24 21:14:31,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:32,226 INFO Connection check task start + +2025-09-24 21:14:32,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:32,226 INFO Out dated connection ,size=0 + +2025-09-24 21:14:32,226 INFO Connection check task end + +2025-09-24 21:14:34,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:35,228 INFO Connection check task start + +2025-09-24 21:14:35,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:35,228 INFO Out dated connection ,size=0 + +2025-09-24 21:14:35,228 INFO Connection check task end + +2025-09-24 21:14:37,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:38,228 INFO Connection check task start + +2025-09-24 21:14:38,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:38,228 INFO Out dated connection ,size=0 + +2025-09-24 21:14:38,228 INFO Connection check task end + +2025-09-24 21:14:40,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:41,230 INFO Connection check task start + +2025-09-24 21:14:41,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:41,231 INFO Out dated connection ,size=0 + +2025-09-24 21:14:41,231 INFO Connection check task end + +2025-09-24 21:14:43,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:44,233 INFO Connection check task start + +2025-09-24 21:14:44,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:44,233 INFO Out dated connection ,size=0 + +2025-09-24 21:14:44,233 INFO Connection check task end + +2025-09-24 21:14:46,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:47,235 INFO Connection check task start + +2025-09-24 21:14:47,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:47,235 INFO Out dated connection ,size=0 + +2025-09-24 21:14:47,235 INFO Connection check task end + +2025-09-24 21:14:49,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:50,236 INFO Connection check task start + +2025-09-24 21:14:50,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:50,237 INFO Out dated connection ,size=0 + +2025-09-24 21:14:50,237 INFO Connection check task end + +2025-09-24 21:14:52,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:53,237 INFO Connection check task start + +2025-09-24 21:14:53,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:53,237 INFO Out dated connection ,size=0 + +2025-09-24 21:14:53,237 INFO Connection check task end + +2025-09-24 21:14:55,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:56,239 INFO Connection check task start + +2025-09-24 21:14:56,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:56,239 INFO Out dated connection ,size=0 + +2025-09-24 21:14:56,239 INFO Connection check task end + +2025-09-24 21:14:58,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:14:59,240 INFO Connection check task start + +2025-09-24 21:14:59,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:14:59,240 INFO Out dated connection ,size=0 + +2025-09-24 21:14:59,240 INFO Connection check task end + +2025-09-24 21:15:01,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:02,240 INFO Connection check task start + +2025-09-24 21:15:02,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:02,241 INFO Out dated connection ,size=0 + +2025-09-24 21:15:02,241 INFO Connection check task end + +2025-09-24 21:15:04,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:05,242 INFO Connection check task start + +2025-09-24 21:15:05,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:05,243 INFO Out dated connection ,size=0 + +2025-09-24 21:15:05,243 INFO Connection check task end + +2025-09-24 21:15:07,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:08,245 INFO Connection check task start + +2025-09-24 21:15:08,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:08,245 INFO Out dated connection ,size=0 + +2025-09-24 21:15:08,245 INFO Connection check task end + +2025-09-24 21:15:10,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:11,246 INFO Connection check task start + +2025-09-24 21:15:11,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:11,246 INFO Out dated connection ,size=0 + +2025-09-24 21:15:11,246 INFO Connection check task end + +2025-09-24 21:15:13,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:14,246 INFO Connection check task start + +2025-09-24 21:15:14,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:14,247 INFO Out dated connection ,size=0 + +2025-09-24 21:15:14,247 INFO Connection check task end + +2025-09-24 21:15:16,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:17,247 INFO Connection check task start + +2025-09-24 21:15:17,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:17,247 INFO Out dated connection ,size=0 + +2025-09-24 21:15:17,247 INFO Connection check task end + +2025-09-24 21:15:19,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:20,248 INFO Connection check task start + +2025-09-24 21:15:20,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:20,248 INFO Out dated connection ,size=0 + +2025-09-24 21:15:20,248 INFO Connection check task end + +2025-09-24 21:15:22,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:23,248 INFO Connection check task start + +2025-09-24 21:15:23,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:23,248 INFO Out dated connection ,size=0 + +2025-09-24 21:15:23,248 INFO Connection check task end + +2025-09-24 21:15:25,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:26,252 INFO Connection check task start + +2025-09-24 21:15:26,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:26,252 INFO Out dated connection ,size=0 + +2025-09-24 21:15:26,252 INFO Connection check task end + +2025-09-24 21:15:28,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:29,254 INFO Connection check task start + +2025-09-24 21:15:29,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:29,255 INFO Out dated connection ,size=0 + +2025-09-24 21:15:29,255 INFO Connection check task end + +2025-09-24 21:15:31,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:32,255 INFO Connection check task start + +2025-09-24 21:15:32,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:32,255 INFO Out dated connection ,size=0 + +2025-09-24 21:15:32,255 INFO Connection check task end + +2025-09-24 21:15:34,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:35,257 INFO Connection check task start + +2025-09-24 21:15:35,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:35,257 INFO Out dated connection ,size=0 + +2025-09-24 21:15:35,257 INFO Connection check task end + +2025-09-24 21:15:37,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:38,259 INFO Connection check task start + +2025-09-24 21:15:38,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:38,259 INFO Out dated connection ,size=0 + +2025-09-24 21:15:38,259 INFO Connection check task end + +2025-09-24 21:15:40,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:41,261 INFO Connection check task start + +2025-09-24 21:15:41,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:41,262 INFO Out dated connection ,size=0 + +2025-09-24 21:15:41,262 INFO Connection check task end + +2025-09-24 21:15:43,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:44,264 INFO Connection check task start + +2025-09-24 21:15:44,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:44,264 INFO Out dated connection ,size=0 + +2025-09-24 21:15:44,264 INFO Connection check task end + +2025-09-24 21:15:46,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:47,264 INFO Connection check task start + +2025-09-24 21:15:47,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:47,265 INFO Out dated connection ,size=0 + +2025-09-24 21:15:47,265 INFO Connection check task end + +2025-09-24 21:15:49,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:50,265 INFO Connection check task start + +2025-09-24 21:15:50,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:50,265 INFO Out dated connection ,size=0 + +2025-09-24 21:15:50,265 INFO Connection check task end + +2025-09-24 21:15:52,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:53,266 INFO Connection check task start + +2025-09-24 21:15:53,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:53,266 INFO Out dated connection ,size=0 + +2025-09-24 21:15:53,266 INFO Connection check task end + +2025-09-24 21:15:55,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:56,266 INFO Connection check task start + +2025-09-24 21:15:56,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:56,266 INFO Out dated connection ,size=0 + +2025-09-24 21:15:56,266 INFO Connection check task end + +2025-09-24 21:15:58,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:15:59,267 INFO Connection check task start + +2025-09-24 21:15:59,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:15:59,267 INFO Out dated connection ,size=0 + +2025-09-24 21:15:59,267 INFO Connection check task end + +2025-09-24 21:16:01,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:02,268 INFO Connection check task start + +2025-09-24 21:16:02,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:02,268 INFO Out dated connection ,size=0 + +2025-09-24 21:16:02,268 INFO Connection check task end + +2025-09-24 21:16:04,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:05,270 INFO Connection check task start + +2025-09-24 21:16:05,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:05,270 INFO Out dated connection ,size=0 + +2025-09-24 21:16:05,270 INFO Connection check task end + +2025-09-24 21:16:07,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:08,272 INFO Connection check task start + +2025-09-24 21:16:08,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:08,272 INFO Out dated connection ,size=0 + +2025-09-24 21:16:08,272 INFO Connection check task end + +2025-09-24 21:16:10,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:11,274 INFO Connection check task start + +2025-09-24 21:16:11,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:11,274 INFO Out dated connection ,size=0 + +2025-09-24 21:16:11,274 INFO Connection check task end + +2025-09-24 21:16:13,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:14,275 INFO Connection check task start + +2025-09-24 21:16:14,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:14,275 INFO Out dated connection ,size=0 + +2025-09-24 21:16:14,275 INFO Connection check task end + +2025-09-24 21:16:16,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:17,276 INFO Connection check task start + +2025-09-24 21:16:17,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:17,276 INFO Out dated connection ,size=0 + +2025-09-24 21:16:17,276 INFO Connection check task end + +2025-09-24 21:16:19,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:20,276 INFO Connection check task start + +2025-09-24 21:16:20,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:20,276 INFO Out dated connection ,size=0 + +2025-09-24 21:16:20,277 INFO Connection check task end + +2025-09-24 21:16:22,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:23,277 INFO Connection check task start + +2025-09-24 21:16:23,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:23,277 INFO Out dated connection ,size=0 + +2025-09-24 21:16:23,277 INFO Connection check task end + +2025-09-24 21:16:25,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:26,279 INFO Connection check task start + +2025-09-24 21:16:26,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:26,279 INFO Out dated connection ,size=0 + +2025-09-24 21:16:26,279 INFO Connection check task end + +2025-09-24 21:16:28,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:29,281 INFO Connection check task start + +2025-09-24 21:16:29,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:29,282 INFO Out dated connection ,size=0 + +2025-09-24 21:16:29,282 INFO Connection check task end + +2025-09-24 21:16:31,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:32,282 INFO Connection check task start + +2025-09-24 21:16:32,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:32,282 INFO Out dated connection ,size=0 + +2025-09-24 21:16:32,282 INFO Connection check task end + +2025-09-24 21:16:34,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:35,282 INFO Connection check task start + +2025-09-24 21:16:35,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:35,283 INFO Out dated connection ,size=0 + +2025-09-24 21:16:35,283 INFO Connection check task end + +2025-09-24 21:16:37,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:38,285 INFO Connection check task start + +2025-09-24 21:16:38,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:38,285 INFO Out dated connection ,size=0 + +2025-09-24 21:16:38,285 INFO Connection check task end + +2025-09-24 21:16:40,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:41,287 INFO Connection check task start + +2025-09-24 21:16:41,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:41,287 INFO Out dated connection ,size=0 + +2025-09-24 21:16:41,287 INFO Connection check task end + +2025-09-24 21:16:43,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:44,289 INFO Connection check task start + +2025-09-24 21:16:44,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:44,289 INFO Out dated connection ,size=0 + +2025-09-24 21:16:44,289 INFO Connection check task end + +2025-09-24 21:16:46,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:47,291 INFO Connection check task start + +2025-09-24 21:16:47,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:47,292 INFO Out dated connection ,size=0 + +2025-09-24 21:16:47,292 INFO Connection check task end + +2025-09-24 21:16:49,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:50,292 INFO Connection check task start + +2025-09-24 21:16:50,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:50,292 INFO Out dated connection ,size=0 + +2025-09-24 21:16:50,292 INFO Connection check task end + +2025-09-24 21:16:52,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:53,294 INFO Connection check task start + +2025-09-24 21:16:53,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:53,294 INFO Out dated connection ,size=0 + +2025-09-24 21:16:53,295 INFO Connection check task end + +2025-09-24 21:16:55,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:56,295 INFO Connection check task start + +2025-09-24 21:16:56,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:56,295 INFO Out dated connection ,size=0 + +2025-09-24 21:16:56,295 INFO Connection check task end + +2025-09-24 21:16:58,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:16:59,297 INFO Connection check task start + +2025-09-24 21:16:59,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:16:59,297 INFO Out dated connection ,size=0 + +2025-09-24 21:16:59,297 INFO Connection check task end + +2025-09-24 21:17:01,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:02,299 INFO Connection check task start + +2025-09-24 21:17:02,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:02,300 INFO Out dated connection ,size=0 + +2025-09-24 21:17:02,300 INFO Connection check task end + +2025-09-24 21:17:04,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:05,301 INFO Connection check task start + +2025-09-24 21:17:05,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:05,301 INFO Out dated connection ,size=0 + +2025-09-24 21:17:05,301 INFO Connection check task end + +2025-09-24 21:17:07,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:08,303 INFO Connection check task start + +2025-09-24 21:17:08,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:08,303 INFO Out dated connection ,size=0 + +2025-09-24 21:17:08,303 INFO Connection check task end + +2025-09-24 21:17:10,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:11,303 INFO Connection check task start + +2025-09-24 21:17:11,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:11,303 INFO Out dated connection ,size=0 + +2025-09-24 21:17:11,303 INFO Connection check task end + +2025-09-24 21:17:13,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:14,304 INFO Connection check task start + +2025-09-24 21:17:14,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:14,304 INFO Out dated connection ,size=0 + +2025-09-24 21:17:14,304 INFO Connection check task end + +2025-09-24 21:17:16,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:17,306 INFO Connection check task start + +2025-09-24 21:17:17,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:17,306 INFO Out dated connection ,size=0 + +2025-09-24 21:17:17,307 INFO Connection check task end + +2025-09-24 21:17:19,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:20,308 INFO Connection check task start + +2025-09-24 21:17:20,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:20,309 INFO Out dated connection ,size=0 + +2025-09-24 21:17:20,309 INFO Connection check task end + +2025-09-24 21:17:22,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:23,310 INFO Connection check task start + +2025-09-24 21:17:23,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:23,311 INFO Out dated connection ,size=0 + +2025-09-24 21:17:23,311 INFO Connection check task end + +2025-09-24 21:17:25,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:26,312 INFO Connection check task start + +2025-09-24 21:17:26,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:26,312 INFO Out dated connection ,size=0 + +2025-09-24 21:17:26,312 INFO Connection check task end + +2025-09-24 21:17:28,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:29,313 INFO Connection check task start + +2025-09-24 21:17:29,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:29,313 INFO Out dated connection ,size=0 + +2025-09-24 21:17:29,313 INFO Connection check task end + +2025-09-24 21:17:31,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:32,315 INFO Connection check task start + +2025-09-24 21:17:32,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:32,315 INFO Out dated connection ,size=0 + +2025-09-24 21:17:32,315 INFO Connection check task end + +2025-09-24 21:17:34,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:35,315 INFO Connection check task start + +2025-09-24 21:17:35,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:35,316 INFO Out dated connection ,size=0 + +2025-09-24 21:17:35,316 INFO Connection check task end + +2025-09-24 21:17:37,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:38,318 INFO Connection check task start + +2025-09-24 21:17:38,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:38,318 INFO Out dated connection ,size=0 + +2025-09-24 21:17:38,318 INFO Connection check task end + +2025-09-24 21:17:40,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:41,320 INFO Connection check task start + +2025-09-24 21:17:41,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:41,320 INFO Out dated connection ,size=0 + +2025-09-24 21:17:41,320 INFO Connection check task end + +2025-09-24 21:17:43,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:44,320 INFO Connection check task start + +2025-09-24 21:17:44,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:44,320 INFO Out dated connection ,size=0 + +2025-09-24 21:17:44,321 INFO Connection check task end + +2025-09-24 21:17:46,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:47,321 INFO Connection check task start + +2025-09-24 21:17:47,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:47,321 INFO Out dated connection ,size=0 + +2025-09-24 21:17:47,321 INFO Connection check task end + +2025-09-24 21:17:49,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:50,323 INFO Connection check task start + +2025-09-24 21:17:50,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:50,324 INFO Out dated connection ,size=0 + +2025-09-24 21:17:50,324 INFO Connection check task end + +2025-09-24 21:17:52,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:53,326 INFO Connection check task start + +2025-09-24 21:17:53,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:53,326 INFO Out dated connection ,size=0 + +2025-09-24 21:17:53,326 INFO Connection check task end + +2025-09-24 21:17:55,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:56,326 INFO Connection check task start + +2025-09-24 21:17:56,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:56,327 INFO Out dated connection ,size=0 + +2025-09-24 21:17:56,327 INFO Connection check task end + +2025-09-24 21:17:58,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:17:59,328 INFO Connection check task start + +2025-09-24 21:17:59,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:17:59,329 INFO Out dated connection ,size=0 + +2025-09-24 21:17:59,329 INFO Connection check task end + +2025-09-24 21:18:01,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:02,329 INFO Connection check task start + +2025-09-24 21:18:02,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:02,329 INFO Out dated connection ,size=0 + +2025-09-24 21:18:02,329 INFO Connection check task end + +2025-09-24 21:18:04,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:05,331 INFO Connection check task start + +2025-09-24 21:18:05,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:05,331 INFO Out dated connection ,size=0 + +2025-09-24 21:18:05,331 INFO Connection check task end + +2025-09-24 21:18:07,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:08,331 INFO Connection check task start + +2025-09-24 21:18:08,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:08,332 INFO Out dated connection ,size=0 + +2025-09-24 21:18:08,332 INFO Connection check task end + +2025-09-24 21:18:10,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:11,332 INFO Connection check task start + +2025-09-24 21:18:11,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:11,332 INFO Out dated connection ,size=0 + +2025-09-24 21:18:11,332 INFO Connection check task end + +2025-09-24 21:18:13,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:14,333 INFO Connection check task start + +2025-09-24 21:18:14,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:14,333 INFO Out dated connection ,size=0 + +2025-09-24 21:18:14,333 INFO Connection check task end + +2025-09-24 21:18:16,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:17,335 INFO Connection check task start + +2025-09-24 21:18:17,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:17,335 INFO Out dated connection ,size=0 + +2025-09-24 21:18:17,335 INFO Connection check task end + +2025-09-24 21:18:19,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:20,336 INFO Connection check task start + +2025-09-24 21:18:20,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:20,336 INFO Out dated connection ,size=0 + +2025-09-24 21:18:20,336 INFO Connection check task end + +2025-09-24 21:18:22,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:23,338 INFO Connection check task start + +2025-09-24 21:18:23,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:23,338 INFO Out dated connection ,size=0 + +2025-09-24 21:18:23,338 INFO Connection check task end + +2025-09-24 21:18:25,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:26,339 INFO Connection check task start + +2025-09-24 21:18:26,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:26,339 INFO Out dated connection ,size=0 + +2025-09-24 21:18:26,339 INFO Connection check task end + +2025-09-24 21:18:28,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:29,340 INFO Connection check task start + +2025-09-24 21:18:29,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:29,340 INFO Out dated connection ,size=0 + +2025-09-24 21:18:29,340 INFO Connection check task end + +2025-09-24 21:18:31,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:32,341 INFO Connection check task start + +2025-09-24 21:18:32,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:32,341 INFO Out dated connection ,size=0 + +2025-09-24 21:18:32,341 INFO Connection check task end + +2025-09-24 21:18:34,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:35,343 INFO Connection check task start + +2025-09-24 21:18:35,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:35,343 INFO Out dated connection ,size=0 + +2025-09-24 21:18:35,343 INFO Connection check task end + +2025-09-24 21:18:37,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:38,344 INFO Connection check task start + +2025-09-24 21:18:38,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:38,345 INFO Out dated connection ,size=0 + +2025-09-24 21:18:38,345 INFO Connection check task end + +2025-09-24 21:18:40,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:41,347 INFO Connection check task start + +2025-09-24 21:18:41,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:41,347 INFO Out dated connection ,size=0 + +2025-09-24 21:18:41,347 INFO Connection check task end + +2025-09-24 21:18:43,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:44,349 INFO Connection check task start + +2025-09-24 21:18:44,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:44,349 INFO Out dated connection ,size=0 + +2025-09-24 21:18:44,349 INFO Connection check task end + +2025-09-24 21:18:46,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:47,350 INFO Connection check task start + +2025-09-24 21:18:47,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:47,350 INFO Out dated connection ,size=0 + +2025-09-24 21:18:47,350 INFO Connection check task end + +2025-09-24 21:18:49,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:50,351 INFO Connection check task start + +2025-09-24 21:18:50,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:50,351 INFO Out dated connection ,size=0 + +2025-09-24 21:18:50,351 INFO Connection check task end + +2025-09-24 21:18:52,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:53,353 INFO Connection check task start + +2025-09-24 21:18:53,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:53,353 INFO Out dated connection ,size=0 + +2025-09-24 21:18:53,353 INFO Connection check task end + +2025-09-24 21:18:55,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:56,353 INFO Connection check task start + +2025-09-24 21:18:56,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:56,353 INFO Out dated connection ,size=0 + +2025-09-24 21:18:56,354 INFO Connection check task end + +2025-09-24 21:18:58,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:18:59,354 INFO Connection check task start + +2025-09-24 21:18:59,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:18:59,354 INFO Out dated connection ,size=0 + +2025-09-24 21:18:59,354 INFO Connection check task end + +2025-09-24 21:19:01,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:02,355 INFO Connection check task start + +2025-09-24 21:19:02,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:02,355 INFO Out dated connection ,size=0 + +2025-09-24 21:19:02,355 INFO Connection check task end + +2025-09-24 21:19:04,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:05,356 INFO Connection check task start + +2025-09-24 21:19:05,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:05,356 INFO Out dated connection ,size=0 + +2025-09-24 21:19:05,356 INFO Connection check task end + +2025-09-24 21:19:07,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:08,357 INFO Connection check task start + +2025-09-24 21:19:08,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:08,357 INFO Out dated connection ,size=0 + +2025-09-24 21:19:08,358 INFO Connection check task end + +2025-09-24 21:19:10,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:11,360 INFO Connection check task start + +2025-09-24 21:19:11,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:11,360 INFO Out dated connection ,size=0 + +2025-09-24 21:19:11,360 INFO Connection check task end + +2025-09-24 21:19:13,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:14,361 INFO Connection check task start + +2025-09-24 21:19:14,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:14,361 INFO Out dated connection ,size=0 + +2025-09-24 21:19:14,361 INFO Connection check task end + +2025-09-24 21:19:16,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:17,362 INFO Connection check task start + +2025-09-24 21:19:17,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:17,362 INFO Out dated connection ,size=0 + +2025-09-24 21:19:17,362 INFO Connection check task end + +2025-09-24 21:19:19,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:20,363 INFO Connection check task start + +2025-09-24 21:19:20,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:20,363 INFO Out dated connection ,size=0 + +2025-09-24 21:19:20,363 INFO Connection check task end + +2025-09-24 21:19:22,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:23,365 INFO Connection check task start + +2025-09-24 21:19:23,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:23,365 INFO Out dated connection ,size=0 + +2025-09-24 21:19:23,365 INFO Connection check task end + +2025-09-24 21:19:25,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:26,366 INFO Connection check task start + +2025-09-24 21:19:26,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:26,366 INFO Out dated connection ,size=0 + +2025-09-24 21:19:26,366 INFO Connection check task end + +2025-09-24 21:19:28,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:29,367 INFO Connection check task start + +2025-09-24 21:19:29,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:29,367 INFO Out dated connection ,size=0 + +2025-09-24 21:19:29,367 INFO Connection check task end + +2025-09-24 21:19:31,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:32,367 INFO Connection check task start + +2025-09-24 21:19:32,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:32,367 INFO Out dated connection ,size=0 + +2025-09-24 21:19:32,367 INFO Connection check task end + +2025-09-24 21:19:34,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:35,368 INFO Connection check task start + +2025-09-24 21:19:35,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:35,368 INFO Out dated connection ,size=0 + +2025-09-24 21:19:35,368 INFO Connection check task end + +2025-09-24 21:19:37,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:38,368 INFO Connection check task start + +2025-09-24 21:19:38,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:38,369 INFO Out dated connection ,size=0 + +2025-09-24 21:19:38,369 INFO Connection check task end + +2025-09-24 21:19:40,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:41,370 INFO Connection check task start + +2025-09-24 21:19:41,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:41,371 INFO Out dated connection ,size=0 + +2025-09-24 21:19:41,371 INFO Connection check task end + +2025-09-24 21:19:43,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:44,372 INFO Connection check task start + +2025-09-24 21:19:44,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:44,372 INFO Out dated connection ,size=0 + +2025-09-24 21:19:44,372 INFO Connection check task end + +2025-09-24 21:19:46,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:47,373 INFO Connection check task start + +2025-09-24 21:19:47,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:47,373 INFO Out dated connection ,size=0 + +2025-09-24 21:19:47,373 INFO Connection check task end + +2025-09-24 21:19:49,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:50,375 INFO Connection check task start + +2025-09-24 21:19:50,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:50,375 INFO Out dated connection ,size=0 + +2025-09-24 21:19:50,375 INFO Connection check task end + +2025-09-24 21:19:52,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:53,376 INFO Connection check task start + +2025-09-24 21:19:53,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:53,376 INFO Out dated connection ,size=0 + +2025-09-24 21:19:53,376 INFO Connection check task end + +2025-09-24 21:19:55,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:56,376 INFO Connection check task start + +2025-09-24 21:19:56,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:56,376 INFO Out dated connection ,size=0 + +2025-09-24 21:19:56,377 INFO Connection check task end + +2025-09-24 21:19:58,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:19:59,378 INFO Connection check task start + +2025-09-24 21:19:59,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:19:59,378 INFO Out dated connection ,size=0 + +2025-09-24 21:19:59,378 INFO Connection check task end + +2025-09-24 21:20:01,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:02,379 INFO Connection check task start + +2025-09-24 21:20:02,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:02,379 INFO Out dated connection ,size=0 + +2025-09-24 21:20:02,379 INFO Connection check task end + +2025-09-24 21:20:04,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:05,379 INFO Connection check task start + +2025-09-24 21:20:05,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:05,380 INFO Out dated connection ,size=0 + +2025-09-24 21:20:05,380 INFO Connection check task end + +2025-09-24 21:20:07,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:08,382 INFO Connection check task start + +2025-09-24 21:20:08,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:08,382 INFO Out dated connection ,size=0 + +2025-09-24 21:20:08,382 INFO Connection check task end + +2025-09-24 21:20:10,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:11,382 INFO Connection check task start + +2025-09-24 21:20:11,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:11,382 INFO Out dated connection ,size=0 + +2025-09-24 21:20:11,382 INFO Connection check task end + +2025-09-24 21:20:13,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:14,384 INFO Connection check task start + +2025-09-24 21:20:14,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:14,384 INFO Out dated connection ,size=0 + +2025-09-24 21:20:14,384 INFO Connection check task end + +2025-09-24 21:20:16,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:17,384 INFO Connection check task start + +2025-09-24 21:20:17,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:17,384 INFO Out dated connection ,size=0 + +2025-09-24 21:20:17,384 INFO Connection check task end + +2025-09-24 21:20:19,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:20,385 INFO Connection check task start + +2025-09-24 21:20:20,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:20,385 INFO Out dated connection ,size=0 + +2025-09-24 21:20:20,385 INFO Connection check task end + +2025-09-24 21:20:22,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:23,385 INFO Connection check task start + +2025-09-24 21:20:23,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:23,385 INFO Out dated connection ,size=0 + +2025-09-24 21:20:23,385 INFO Connection check task end + +2025-09-24 21:20:25,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:26,386 INFO Connection check task start + +2025-09-24 21:20:26,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:26,386 INFO Out dated connection ,size=0 + +2025-09-24 21:20:26,386 INFO Connection check task end + +2025-09-24 21:20:28,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:29,386 INFO Connection check task start + +2025-09-24 21:20:29,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:29,386 INFO Out dated connection ,size=0 + +2025-09-24 21:20:29,386 INFO Connection check task end + +2025-09-24 21:20:31,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:32,387 INFO Connection check task start + +2025-09-24 21:20:32,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:32,387 INFO Out dated connection ,size=0 + +2025-09-24 21:20:32,387 INFO Connection check task end + +2025-09-24 21:20:34,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:35,388 INFO Connection check task start + +2025-09-24 21:20:35,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:35,388 INFO Out dated connection ,size=0 + +2025-09-24 21:20:35,388 INFO Connection check task end + +2025-09-24 21:20:37,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:38,389 INFO Connection check task start + +2025-09-24 21:20:38,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:38,389 INFO Out dated connection ,size=0 + +2025-09-24 21:20:38,389 INFO Connection check task end + +2025-09-24 21:20:40,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:41,390 INFO Connection check task start + +2025-09-24 21:20:41,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:41,390 INFO Out dated connection ,size=0 + +2025-09-24 21:20:41,390 INFO Connection check task end + +2025-09-24 21:20:43,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:44,392 INFO Connection check task start + +2025-09-24 21:20:44,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:44,392 INFO Out dated connection ,size=0 + +2025-09-24 21:20:44,392 INFO Connection check task end + +2025-09-24 21:20:46,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:47,393 INFO Connection check task start + +2025-09-24 21:20:47,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:47,393 INFO Out dated connection ,size=0 + +2025-09-24 21:20:47,393 INFO Connection check task end + +2025-09-24 21:20:49,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:50,395 INFO Connection check task start + +2025-09-24 21:20:50,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:50,395 INFO Out dated connection ,size=0 + +2025-09-24 21:20:50,395 INFO Connection check task end + +2025-09-24 21:20:52,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:53,396 INFO Connection check task start + +2025-09-24 21:20:53,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:53,396 INFO Out dated connection ,size=0 + +2025-09-24 21:20:53,396 INFO Connection check task end + +2025-09-24 21:20:55,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:56,398 INFO Connection check task start + +2025-09-24 21:20:56,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:56,398 INFO Out dated connection ,size=0 + +2025-09-24 21:20:56,398 INFO Connection check task end + +2025-09-24 21:20:58,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:20:59,400 INFO Connection check task start + +2025-09-24 21:20:59,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:20:59,400 INFO Out dated connection ,size=0 + +2025-09-24 21:20:59,400 INFO Connection check task end + +2025-09-24 21:21:01,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:02,401 INFO Connection check task start + +2025-09-24 21:21:02,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:02,401 INFO Out dated connection ,size=0 + +2025-09-24 21:21:02,401 INFO Connection check task end + +2025-09-24 21:21:04,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:05,402 INFO Connection check task start + +2025-09-24 21:21:05,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:05,402 INFO Out dated connection ,size=0 + +2025-09-24 21:21:05,402 INFO Connection check task end + +2025-09-24 21:21:07,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:08,403 INFO Connection check task start + +2025-09-24 21:21:08,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:08,403 INFO Out dated connection ,size=0 + +2025-09-24 21:21:08,403 INFO Connection check task end + +2025-09-24 21:21:10,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:11,404 INFO Connection check task start + +2025-09-24 21:21:11,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:11,404 INFO Out dated connection ,size=0 + +2025-09-24 21:21:11,404 INFO Connection check task end + +2025-09-24 21:21:13,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:14,404 INFO Connection check task start + +2025-09-24 21:21:14,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:14,404 INFO Out dated connection ,size=0 + +2025-09-24 21:21:14,404 INFO Connection check task end + +2025-09-24 21:21:16,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:17,405 INFO Connection check task start + +2025-09-24 21:21:17,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:17,405 INFO Out dated connection ,size=0 + +2025-09-24 21:21:17,405 INFO Connection check task end + +2025-09-24 21:21:19,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:20,406 INFO Connection check task start + +2025-09-24 21:21:20,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:20,406 INFO Out dated connection ,size=0 + +2025-09-24 21:21:20,407 INFO Connection check task end + +2025-09-24 21:21:22,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:23,407 INFO Connection check task start + +2025-09-24 21:21:23,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:23,408 INFO Out dated connection ,size=0 + +2025-09-24 21:21:23,408 INFO Connection check task end + +2025-09-24 21:21:25,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:26,410 INFO Connection check task start + +2025-09-24 21:21:26,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:26,410 INFO Out dated connection ,size=0 + +2025-09-24 21:21:26,410 INFO Connection check task end + +2025-09-24 21:21:28,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:29,411 INFO Connection check task start + +2025-09-24 21:21:29,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:29,411 INFO Out dated connection ,size=0 + +2025-09-24 21:21:29,411 INFO Connection check task end + +2025-09-24 21:21:31,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:32,412 INFO Connection check task start + +2025-09-24 21:21:32,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:32,412 INFO Out dated connection ,size=0 + +2025-09-24 21:21:32,412 INFO Connection check task end + +2025-09-24 21:21:34,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:35,413 INFO Connection check task start + +2025-09-24 21:21:35,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:35,413 INFO Out dated connection ,size=0 + +2025-09-24 21:21:35,413 INFO Connection check task end + +2025-09-24 21:21:37,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:38,414 INFO Connection check task start + +2025-09-24 21:21:38,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:38,414 INFO Out dated connection ,size=0 + +2025-09-24 21:21:38,415 INFO Connection check task end + +2025-09-24 21:21:40,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:41,415 INFO Connection check task start + +2025-09-24 21:21:41,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:41,415 INFO Out dated connection ,size=0 + +2025-09-24 21:21:41,415 INFO Connection check task end + +2025-09-24 21:21:43,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:44,416 INFO Connection check task start + +2025-09-24 21:21:44,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:44,416 INFO Out dated connection ,size=0 + +2025-09-24 21:21:44,416 INFO Connection check task end + +2025-09-24 21:21:46,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:47,417 INFO Connection check task start + +2025-09-24 21:21:47,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:47,417 INFO Out dated connection ,size=0 + +2025-09-24 21:21:47,417 INFO Connection check task end + +2025-09-24 21:21:49,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:50,418 INFO Connection check task start + +2025-09-24 21:21:50,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:50,418 INFO Out dated connection ,size=0 + +2025-09-24 21:21:50,418 INFO Connection check task end + +2025-09-24 21:21:52,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:53,420 INFO Connection check task start + +2025-09-24 21:21:53,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:53,420 INFO Out dated connection ,size=0 + +2025-09-24 21:21:53,420 INFO Connection check task end + +2025-09-24 21:21:55,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:56,420 INFO Connection check task start + +2025-09-24 21:21:56,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:56,420 INFO Out dated connection ,size=0 + +2025-09-24 21:21:56,420 INFO Connection check task end + +2025-09-24 21:21:58,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:21:59,420 INFO Connection check task start + +2025-09-24 21:21:59,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:21:59,421 INFO Out dated connection ,size=0 + +2025-09-24 21:21:59,421 INFO Connection check task end + +2025-09-24 21:22:01,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:02,422 INFO Connection check task start + +2025-09-24 21:22:02,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:02,422 INFO Out dated connection ,size=0 + +2025-09-24 21:22:02,422 INFO Connection check task end + +2025-09-24 21:22:04,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:05,423 INFO Connection check task start + +2025-09-24 21:22:05,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:05,423 INFO Out dated connection ,size=0 + +2025-09-24 21:22:05,423 INFO Connection check task end + +2025-09-24 21:22:07,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:08,424 INFO Connection check task start + +2025-09-24 21:22:08,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:08,424 INFO Out dated connection ,size=0 + +2025-09-24 21:22:08,424 INFO Connection check task end + +2025-09-24 21:22:10,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:11,426 INFO Connection check task start + +2025-09-24 21:22:11,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:11,426 INFO Out dated connection ,size=0 + +2025-09-24 21:22:11,426 INFO Connection check task end + +2025-09-24 21:22:13,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:14,427 INFO Connection check task start + +2025-09-24 21:22:14,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:14,427 INFO Out dated connection ,size=0 + +2025-09-24 21:22:14,427 INFO Connection check task end + +2025-09-24 21:22:16,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:17,428 INFO Connection check task start + +2025-09-24 21:22:17,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:17,428 INFO Out dated connection ,size=0 + +2025-09-24 21:22:17,428 INFO Connection check task end + +2025-09-24 21:22:19,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:20,428 INFO Connection check task start + +2025-09-24 21:22:20,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:20,428 INFO Out dated connection ,size=0 + +2025-09-24 21:22:20,428 INFO Connection check task end + +2025-09-24 21:22:22,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:23,430 INFO Connection check task start + +2025-09-24 21:22:23,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:23,430 INFO Out dated connection ,size=0 + +2025-09-24 21:22:23,431 INFO Connection check task end + +2025-09-24 21:22:25,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:26,433 INFO Connection check task start + +2025-09-24 21:22:26,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:26,433 INFO Out dated connection ,size=0 + +2025-09-24 21:22:26,433 INFO Connection check task end + +2025-09-24 21:22:28,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:29,435 INFO Connection check task start + +2025-09-24 21:22:29,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:29,435 INFO Out dated connection ,size=0 + +2025-09-24 21:22:29,435 INFO Connection check task end + +2025-09-24 21:22:31,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:32,436 INFO Connection check task start + +2025-09-24 21:22:32,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:32,436 INFO Out dated connection ,size=0 + +2025-09-24 21:22:32,436 INFO Connection check task end + +2025-09-24 21:22:34,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:35,438 INFO Connection check task start + +2025-09-24 21:22:35,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:35,438 INFO Out dated connection ,size=0 + +2025-09-24 21:22:35,438 INFO Connection check task end + +2025-09-24 21:22:37,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:38,439 INFO Connection check task start + +2025-09-24 21:22:38,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:38,439 INFO Out dated connection ,size=0 + +2025-09-24 21:22:38,439 INFO Connection check task end + +2025-09-24 21:22:40,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:41,440 INFO Connection check task start + +2025-09-24 21:22:41,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:41,440 INFO Out dated connection ,size=0 + +2025-09-24 21:22:41,440 INFO Connection check task end + +2025-09-24 21:22:43,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:44,441 INFO Connection check task start + +2025-09-24 21:22:44,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:44,441 INFO Out dated connection ,size=0 + +2025-09-24 21:22:44,441 INFO Connection check task end + +2025-09-24 21:22:46,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:47,441 INFO Connection check task start + +2025-09-24 21:22:47,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:47,441 INFO Out dated connection ,size=0 + +2025-09-24 21:22:47,441 INFO Connection check task end + +2025-09-24 21:22:49,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:50,443 INFO Connection check task start + +2025-09-24 21:22:50,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:50,444 INFO Out dated connection ,size=0 + +2025-09-24 21:22:50,444 INFO Connection check task end + +2025-09-24 21:22:52,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:53,446 INFO Connection check task start + +2025-09-24 21:22:53,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:53,446 INFO Out dated connection ,size=0 + +2025-09-24 21:22:53,446 INFO Connection check task end + +2025-09-24 21:22:55,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:56,446 INFO Connection check task start + +2025-09-24 21:22:56,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:56,446 INFO Out dated connection ,size=0 + +2025-09-24 21:22:56,446 INFO Connection check task end + +2025-09-24 21:22:58,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:22:59,448 INFO Connection check task start + +2025-09-24 21:22:59,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:22:59,448 INFO Out dated connection ,size=0 + +2025-09-24 21:22:59,449 INFO Connection check task end + +2025-09-24 21:23:01,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:02,451 INFO Connection check task start + +2025-09-24 21:23:02,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:02,451 INFO Out dated connection ,size=0 + +2025-09-24 21:23:02,451 INFO Connection check task end + +2025-09-24 21:23:04,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:05,453 INFO Connection check task start + +2025-09-24 21:23:05,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:05,453 INFO Out dated connection ,size=0 + +2025-09-24 21:23:05,453 INFO Connection check task end + +2025-09-24 21:23:07,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:08,453 INFO Connection check task start + +2025-09-24 21:23:08,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:08,453 INFO Out dated connection ,size=0 + +2025-09-24 21:23:08,453 INFO Connection check task end + +2025-09-24 21:23:10,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:11,456 INFO Connection check task start + +2025-09-24 21:23:11,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:11,456 INFO Out dated connection ,size=0 + +2025-09-24 21:23:11,456 INFO Connection check task end + +2025-09-24 21:23:13,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:14,457 INFO Connection check task start + +2025-09-24 21:23:14,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:14,457 INFO Out dated connection ,size=0 + +2025-09-24 21:23:14,457 INFO Connection check task end + +2025-09-24 21:23:16,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:17,458 INFO Connection check task start + +2025-09-24 21:23:17,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:17,459 INFO Out dated connection ,size=0 + +2025-09-24 21:23:17,459 INFO Connection check task end + +2025-09-24 21:23:19,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:20,462 INFO Connection check task start + +2025-09-24 21:23:20,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:20,462 INFO Out dated connection ,size=0 + +2025-09-24 21:23:20,462 INFO Connection check task end + +2025-09-24 21:23:22,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:23,464 INFO Connection check task start + +2025-09-24 21:23:23,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:23,464 INFO Out dated connection ,size=0 + +2025-09-24 21:23:23,464 INFO Connection check task end + +2025-09-24 21:23:25,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:26,466 INFO Connection check task start + +2025-09-24 21:23:26,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:26,466 INFO Out dated connection ,size=0 + +2025-09-24 21:23:26,466 INFO Connection check task end + +2025-09-24 21:23:28,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:29,466 INFO Connection check task start + +2025-09-24 21:23:29,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:29,467 INFO Out dated connection ,size=0 + +2025-09-24 21:23:29,467 INFO Connection check task end + +2025-09-24 21:23:31,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:32,467 INFO Connection check task start + +2025-09-24 21:23:32,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:32,467 INFO Out dated connection ,size=0 + +2025-09-24 21:23:32,467 INFO Connection check task end + +2025-09-24 21:23:34,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:35,469 INFO Connection check task start + +2025-09-24 21:23:35,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:35,469 INFO Out dated connection ,size=0 + +2025-09-24 21:23:35,470 INFO Connection check task end + +2025-09-24 21:23:37,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:38,470 INFO Connection check task start + +2025-09-24 21:23:38,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:38,470 INFO Out dated connection ,size=0 + +2025-09-24 21:23:38,470 INFO Connection check task end + +2025-09-24 21:23:40,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:41,470 INFO Connection check task start + +2025-09-24 21:23:41,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:41,470 INFO Out dated connection ,size=0 + +2025-09-24 21:23:41,470 INFO Connection check task end + +2025-09-24 21:23:43,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:44,471 INFO Connection check task start + +2025-09-24 21:23:44,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:44,471 INFO Out dated connection ,size=0 + +2025-09-24 21:23:44,471 INFO Connection check task end + +2025-09-24 21:23:46,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:47,473 INFO Connection check task start + +2025-09-24 21:23:47,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:47,473 INFO Out dated connection ,size=0 + +2025-09-24 21:23:47,473 INFO Connection check task end + +2025-09-24 21:23:49,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:50,475 INFO Connection check task start + +2025-09-24 21:23:50,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:50,475 INFO Out dated connection ,size=0 + +2025-09-24 21:23:50,475 INFO Connection check task end + +2025-09-24 21:23:52,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:53,477 INFO Connection check task start + +2025-09-24 21:23:53,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:53,478 INFO Out dated connection ,size=0 + +2025-09-24 21:23:53,478 INFO Connection check task end + +2025-09-24 21:23:55,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:56,480 INFO Connection check task start + +2025-09-24 21:23:56,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:56,480 INFO Out dated connection ,size=0 + +2025-09-24 21:23:56,480 INFO Connection check task end + +2025-09-24 21:23:58,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:23:59,480 INFO Connection check task start + +2025-09-24 21:23:59,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:23:59,480 INFO Out dated connection ,size=0 + +2025-09-24 21:23:59,481 INFO Connection check task end + +2025-09-24 21:24:01,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:02,482 INFO Connection check task start + +2025-09-24 21:24:02,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:02,482 INFO Out dated connection ,size=0 + +2025-09-24 21:24:02,482 INFO Connection check task end + +2025-09-24 21:24:04,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:05,482 INFO Connection check task start + +2025-09-24 21:24:05,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:05,482 INFO Out dated connection ,size=0 + +2025-09-24 21:24:05,482 INFO Connection check task end + +2025-09-24 21:24:07,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:08,483 INFO Connection check task start + +2025-09-24 21:24:08,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:08,483 INFO Out dated connection ,size=0 + +2025-09-24 21:24:08,483 INFO Connection check task end + +2025-09-24 21:24:10,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:11,484 INFO Connection check task start + +2025-09-24 21:24:11,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:11,484 INFO Out dated connection ,size=0 + +2025-09-24 21:24:11,484 INFO Connection check task end + +2025-09-24 21:24:13,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:14,486 INFO Connection check task start + +2025-09-24 21:24:14,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:14,486 INFO Out dated connection ,size=0 + +2025-09-24 21:24:14,486 INFO Connection check task end + +2025-09-24 21:24:16,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:17,489 INFO Connection check task start + +2025-09-24 21:24:17,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:17,489 INFO Out dated connection ,size=0 + +2025-09-24 21:24:17,489 INFO Connection check task end + +2025-09-24 21:24:19,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:20,489 INFO Connection check task start + +2025-09-24 21:24:20,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:20,489 INFO Out dated connection ,size=0 + +2025-09-24 21:24:20,489 INFO Connection check task end + +2025-09-24 21:24:22,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:23,490 INFO Connection check task start + +2025-09-24 21:24:23,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:23,490 INFO Out dated connection ,size=0 + +2025-09-24 21:24:23,490 INFO Connection check task end + +2025-09-24 21:24:25,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:26,490 INFO Connection check task start + +2025-09-24 21:24:26,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:26,490 INFO Out dated connection ,size=0 + +2025-09-24 21:24:26,491 INFO Connection check task end + +2025-09-24 21:24:28,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:29,491 INFO Connection check task start + +2025-09-24 21:24:29,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:29,491 INFO Out dated connection ,size=0 + +2025-09-24 21:24:29,491 INFO Connection check task end + +2025-09-24 21:24:31,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:32,492 INFO Connection check task start + +2025-09-24 21:24:32,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:32,492 INFO Out dated connection ,size=0 + +2025-09-24 21:24:32,493 INFO Connection check task end + +2025-09-24 21:24:34,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:35,493 INFO Connection check task start + +2025-09-24 21:24:35,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:35,493 INFO Out dated connection ,size=0 + +2025-09-24 21:24:35,493 INFO Connection check task end + +2025-09-24 21:24:37,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:38,494 INFO Connection check task start + +2025-09-24 21:24:38,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:38,494 INFO Out dated connection ,size=0 + +2025-09-24 21:24:38,494 INFO Connection check task end + +2025-09-24 21:24:40,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:41,495 INFO Connection check task start + +2025-09-24 21:24:41,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:41,495 INFO Out dated connection ,size=0 + +2025-09-24 21:24:41,495 INFO Connection check task end + +2025-09-24 21:24:43,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:44,496 INFO Connection check task start + +2025-09-24 21:24:44,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:44,496 INFO Out dated connection ,size=0 + +2025-09-24 21:24:44,496 INFO Connection check task end + +2025-09-24 21:24:46,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:47,497 INFO Connection check task start + +2025-09-24 21:24:47,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:47,497 INFO Out dated connection ,size=0 + +2025-09-24 21:24:47,497 INFO Connection check task end + +2025-09-24 21:24:49,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:50,498 INFO Connection check task start + +2025-09-24 21:24:50,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:50,498 INFO Out dated connection ,size=0 + +2025-09-24 21:24:50,498 INFO Connection check task end + +2025-09-24 21:24:52,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:53,499 INFO Connection check task start + +2025-09-24 21:24:53,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:53,500 INFO Out dated connection ,size=0 + +2025-09-24 21:24:53,500 INFO Connection check task end + +2025-09-24 21:24:55,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:56,502 INFO Connection check task start + +2025-09-24 21:24:56,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:56,502 INFO Out dated connection ,size=0 + +2025-09-24 21:24:56,502 INFO Connection check task end + +2025-09-24 21:24:58,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:24:59,504 INFO Connection check task start + +2025-09-24 21:24:59,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:24:59,505 INFO Out dated connection ,size=0 + +2025-09-24 21:24:59,505 INFO Connection check task end + +2025-09-24 21:25:01,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:02,506 INFO Connection check task start + +2025-09-24 21:25:02,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:02,506 INFO Out dated connection ,size=0 + +2025-09-24 21:25:02,507 INFO Connection check task end + +2025-09-24 21:25:04,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:05,507 INFO Connection check task start + +2025-09-24 21:25:05,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:05,507 INFO Out dated connection ,size=0 + +2025-09-24 21:25:05,507 INFO Connection check task end + +2025-09-24 21:25:07,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:08,509 INFO Connection check task start + +2025-09-24 21:25:08,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:08,510 INFO Out dated connection ,size=0 + +2025-09-24 21:25:08,510 INFO Connection check task end + +2025-09-24 21:25:10,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:11,510 INFO Connection check task start + +2025-09-24 21:25:11,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:11,510 INFO Out dated connection ,size=0 + +2025-09-24 21:25:11,510 INFO Connection check task end + +2025-09-24 21:25:13,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:14,512 INFO Connection check task start + +2025-09-24 21:25:14,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:14,512 INFO Out dated connection ,size=0 + +2025-09-24 21:25:14,512 INFO Connection check task end + +2025-09-24 21:25:16,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:17,513 INFO Connection check task start + +2025-09-24 21:25:17,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:17,513 INFO Out dated connection ,size=0 + +2025-09-24 21:25:17,513 INFO Connection check task end + +2025-09-24 21:25:19,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:20,513 INFO Connection check task start + +2025-09-24 21:25:20,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:20,514 INFO Out dated connection ,size=0 + +2025-09-24 21:25:20,514 INFO Connection check task end + +2025-09-24 21:25:22,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:23,514 INFO Connection check task start + +2025-09-24 21:25:23,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:23,514 INFO Out dated connection ,size=0 + +2025-09-24 21:25:23,514 INFO Connection check task end + +2025-09-24 21:25:25,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:26,515 INFO Connection check task start + +2025-09-24 21:25:26,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:26,516 INFO Out dated connection ,size=0 + +2025-09-24 21:25:26,516 INFO Connection check task end + +2025-09-24 21:25:28,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:29,516 INFO Connection check task start + +2025-09-24 21:25:29,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:29,516 INFO Out dated connection ,size=0 + +2025-09-24 21:25:29,516 INFO Connection check task end + +2025-09-24 21:25:31,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:32,517 INFO Connection check task start + +2025-09-24 21:25:32,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:32,517 INFO Out dated connection ,size=0 + +2025-09-24 21:25:32,517 INFO Connection check task end + +2025-09-24 21:25:34,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:35,519 INFO Connection check task start + +2025-09-24 21:25:35,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:35,519 INFO Out dated connection ,size=0 + +2025-09-24 21:25:35,519 INFO Connection check task end + +2025-09-24 21:25:37,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:38,520 INFO Connection check task start + +2025-09-24 21:25:38,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:38,520 INFO Out dated connection ,size=0 + +2025-09-24 21:25:38,520 INFO Connection check task end + +2025-09-24 21:25:40,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:41,521 INFO Connection check task start + +2025-09-24 21:25:41,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:41,521 INFO Out dated connection ,size=0 + +2025-09-24 21:25:41,521 INFO Connection check task end + +2025-09-24 21:25:43,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:44,521 INFO Connection check task start + +2025-09-24 21:25:44,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:44,521 INFO Out dated connection ,size=0 + +2025-09-24 21:25:44,521 INFO Connection check task end + +2025-09-24 21:25:46,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:47,523 INFO Connection check task start + +2025-09-24 21:25:47,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:47,523 INFO Out dated connection ,size=0 + +2025-09-24 21:25:47,524 INFO Connection check task end + +2025-09-24 21:25:49,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:50,525 INFO Connection check task start + +2025-09-24 21:25:50,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:50,526 INFO Out dated connection ,size=0 + +2025-09-24 21:25:50,526 INFO Connection check task end + +2025-09-24 21:25:52,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:53,526 INFO Connection check task start + +2025-09-24 21:25:53,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:53,526 INFO Out dated connection ,size=0 + +2025-09-24 21:25:53,526 INFO Connection check task end + +2025-09-24 21:25:55,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:56,526 INFO Connection check task start + +2025-09-24 21:25:56,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:56,526 INFO Out dated connection ,size=0 + +2025-09-24 21:25:56,526 INFO Connection check task end + +2025-09-24 21:25:58,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:25:59,527 INFO Connection check task start + +2025-09-24 21:25:59,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:25:59,527 INFO Out dated connection ,size=0 + +2025-09-24 21:25:59,527 INFO Connection check task end + +2025-09-24 21:26:01,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:02,527 INFO Connection check task start + +2025-09-24 21:26:02,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:02,528 INFO Out dated connection ,size=0 + +2025-09-24 21:26:02,528 INFO Connection check task end + +2025-09-24 21:26:04,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:05,529 INFO Connection check task start + +2025-09-24 21:26:05,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:05,529 INFO Out dated connection ,size=0 + +2025-09-24 21:26:05,529 INFO Connection check task end + +2025-09-24 21:26:07,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:08,529 INFO Connection check task start + +2025-09-24 21:26:08,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:08,530 INFO Out dated connection ,size=0 + +2025-09-24 21:26:08,530 INFO Connection check task end + +2025-09-24 21:26:10,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:11,530 INFO Connection check task start + +2025-09-24 21:26:11,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:11,530 INFO Out dated connection ,size=0 + +2025-09-24 21:26:11,530 INFO Connection check task end + +2025-09-24 21:26:13,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:14,531 INFO Connection check task start + +2025-09-24 21:26:14,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:14,531 INFO Out dated connection ,size=0 + +2025-09-24 21:26:14,531 INFO Connection check task end + +2025-09-24 21:26:16,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:17,531 INFO Connection check task start + +2025-09-24 21:26:17,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:17,532 INFO Out dated connection ,size=0 + +2025-09-24 21:26:17,532 INFO Connection check task end + +2025-09-24 21:26:19,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:20,533 INFO Connection check task start + +2025-09-24 21:26:20,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:20,533 INFO Out dated connection ,size=0 + +2025-09-24 21:26:20,533 INFO Connection check task end + +2025-09-24 21:26:22,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:23,534 INFO Connection check task start + +2025-09-24 21:26:23,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:23,534 INFO Out dated connection ,size=0 + +2025-09-24 21:26:23,534 INFO Connection check task end + +2025-09-24 21:26:25,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:26,536 INFO Connection check task start + +2025-09-24 21:26:26,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:26,536 INFO Out dated connection ,size=0 + +2025-09-24 21:26:26,536 INFO Connection check task end + +2025-09-24 21:26:28,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:29,536 INFO Connection check task start + +2025-09-24 21:26:29,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:29,537 INFO Out dated connection ,size=0 + +2025-09-24 21:26:29,537 INFO Connection check task end + +2025-09-24 21:26:31,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:32,538 INFO Connection check task start + +2025-09-24 21:26:32,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:32,538 INFO Out dated connection ,size=0 + +2025-09-24 21:26:32,538 INFO Connection check task end + +2025-09-24 21:26:34,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:35,539 INFO Connection check task start + +2025-09-24 21:26:35,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:35,539 INFO Out dated connection ,size=0 + +2025-09-24 21:26:35,539 INFO Connection check task end + +2025-09-24 21:26:37,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:38,541 INFO Connection check task start + +2025-09-24 21:26:38,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:38,541 INFO Out dated connection ,size=0 + +2025-09-24 21:26:38,541 INFO Connection check task end + +2025-09-24 21:26:40,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:41,543 INFO Connection check task start + +2025-09-24 21:26:41,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:41,543 INFO Out dated connection ,size=0 + +2025-09-24 21:26:41,543 INFO Connection check task end + +2025-09-24 21:26:43,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:44,545 INFO Connection check task start + +2025-09-24 21:26:44,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:44,546 INFO Out dated connection ,size=0 + +2025-09-24 21:26:44,546 INFO Connection check task end + +2025-09-24 21:26:46,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:47,547 INFO Connection check task start + +2025-09-24 21:26:47,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:47,547 INFO Out dated connection ,size=0 + +2025-09-24 21:26:47,547 INFO Connection check task end + +2025-09-24 21:26:49,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:50,549 INFO Connection check task start + +2025-09-24 21:26:50,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:50,550 INFO Out dated connection ,size=0 + +2025-09-24 21:26:50,550 INFO Connection check task end + +2025-09-24 21:26:52,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:53,550 INFO Connection check task start + +2025-09-24 21:26:53,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:53,550 INFO Out dated connection ,size=0 + +2025-09-24 21:26:53,550 INFO Connection check task end + +2025-09-24 21:26:55,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:56,551 INFO Connection check task start + +2025-09-24 21:26:56,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:56,551 INFO Out dated connection ,size=0 + +2025-09-24 21:26:56,551 INFO Connection check task end + +2025-09-24 21:26:58,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:26:59,552 INFO Connection check task start + +2025-09-24 21:26:59,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:26:59,553 INFO Out dated connection ,size=0 + +2025-09-24 21:26:59,553 INFO Connection check task end + +2025-09-24 21:27:01,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:02,553 INFO Connection check task start + +2025-09-24 21:27:02,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:02,554 INFO Out dated connection ,size=0 + +2025-09-24 21:27:02,554 INFO Connection check task end + +2025-09-24 21:27:04,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:05,556 INFO Connection check task start + +2025-09-24 21:27:05,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:05,556 INFO Out dated connection ,size=0 + +2025-09-24 21:27:05,556 INFO Connection check task end + +2025-09-24 21:27:07,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:08,557 INFO Connection check task start + +2025-09-24 21:27:08,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:08,557 INFO Out dated connection ,size=0 + +2025-09-24 21:27:08,557 INFO Connection check task end + +2025-09-24 21:27:10,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:11,559 INFO Connection check task start + +2025-09-24 21:27:11,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:11,560 INFO Out dated connection ,size=0 + +2025-09-24 21:27:11,560 INFO Connection check task end + +2025-09-24 21:27:13,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:14,560 INFO Connection check task start + +2025-09-24 21:27:14,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:14,560 INFO Out dated connection ,size=0 + +2025-09-24 21:27:14,561 INFO Connection check task end + +2025-09-24 21:27:16,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:17,562 INFO Connection check task start + +2025-09-24 21:27:17,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:17,562 INFO Out dated connection ,size=0 + +2025-09-24 21:27:17,562 INFO Connection check task end + +2025-09-24 21:27:19,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:20,563 INFO Connection check task start + +2025-09-24 21:27:20,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:20,563 INFO Out dated connection ,size=0 + +2025-09-24 21:27:20,563 INFO Connection check task end + +2025-09-24 21:27:22,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:23,565 INFO Connection check task start + +2025-09-24 21:27:23,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:23,565 INFO Out dated connection ,size=0 + +2025-09-24 21:27:23,565 INFO Connection check task end + +2025-09-24 21:27:25,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:26,566 INFO Connection check task start + +2025-09-24 21:27:26,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:26,566 INFO Out dated connection ,size=0 + +2025-09-24 21:27:26,566 INFO Connection check task end + +2025-09-24 21:27:28,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:29,566 INFO Connection check task start + +2025-09-24 21:27:29,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:29,567 INFO Out dated connection ,size=0 + +2025-09-24 21:27:29,567 INFO Connection check task end + +2025-09-24 21:27:31,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:32,567 INFO Connection check task start + +2025-09-24 21:27:32,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:32,567 INFO Out dated connection ,size=0 + +2025-09-24 21:27:32,567 INFO Connection check task end + +2025-09-24 21:27:34,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:35,568 INFO Connection check task start + +2025-09-24 21:27:35,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:35,568 INFO Out dated connection ,size=0 + +2025-09-24 21:27:35,568 INFO Connection check task end + +2025-09-24 21:27:37,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:38,569 INFO Connection check task start + +2025-09-24 21:27:38,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:38,569 INFO Out dated connection ,size=0 + +2025-09-24 21:27:38,569 INFO Connection check task end + +2025-09-24 21:27:40,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:41,570 INFO Connection check task start + +2025-09-24 21:27:41,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:41,570 INFO Out dated connection ,size=0 + +2025-09-24 21:27:41,570 INFO Connection check task end + +2025-09-24 21:27:43,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:44,571 INFO Connection check task start + +2025-09-24 21:27:44,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:44,571 INFO Out dated connection ,size=0 + +2025-09-24 21:27:44,572 INFO Connection check task end + +2025-09-24 21:27:47,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:47,572 INFO Connection check task start + +2025-09-24 21:27:47,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:47,572 INFO Out dated connection ,size=0 + +2025-09-24 21:27:47,572 INFO Connection check task end + +2025-09-24 21:27:50,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:50,573 INFO Connection check task start + +2025-09-24 21:27:50,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:50,573 INFO Out dated connection ,size=0 + +2025-09-24 21:27:50,573 INFO Connection check task end + +2025-09-24 21:27:53,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:53,575 INFO Connection check task start + +2025-09-24 21:27:53,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:53,575 INFO Out dated connection ,size=0 + +2025-09-24 21:27:53,575 INFO Connection check task end + +2025-09-24 21:27:56,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:56,576 INFO Connection check task start + +2025-09-24 21:27:56,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:56,576 INFO Out dated connection ,size=0 + +2025-09-24 21:27:56,576 INFO Connection check task end + +2025-09-24 21:27:59,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:27:59,577 INFO Connection check task start + +2025-09-24 21:27:59,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:27:59,577 INFO Out dated connection ,size=0 + +2025-09-24 21:27:59,577 INFO Connection check task end + +2025-09-24 21:28:02,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:02,579 INFO Connection check task start + +2025-09-24 21:28:02,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:02,579 INFO Out dated connection ,size=0 + +2025-09-24 21:28:02,579 INFO Connection check task end + +2025-09-24 21:28:05,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:05,579 INFO Connection check task start + +2025-09-24 21:28:05,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:05,580 INFO Out dated connection ,size=0 + +2025-09-24 21:28:05,580 INFO Connection check task end + +2025-09-24 21:28:08,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:08,580 INFO Connection check task start + +2025-09-24 21:28:08,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:08,581 INFO Out dated connection ,size=0 + +2025-09-24 21:28:08,581 INFO Connection check task end + +2025-09-24 21:28:11,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:11,582 INFO Connection check task start + +2025-09-24 21:28:11,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:11,582 INFO Out dated connection ,size=0 + +2025-09-24 21:28:11,582 INFO Connection check task end + +2025-09-24 21:28:14,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:14,583 INFO Connection check task start + +2025-09-24 21:28:14,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:14,583 INFO Out dated connection ,size=0 + +2025-09-24 21:28:14,583 INFO Connection check task end + +2025-09-24 21:28:17,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:17,584 INFO Connection check task start + +2025-09-24 21:28:17,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:17,585 INFO Out dated connection ,size=0 + +2025-09-24 21:28:17,585 INFO Connection check task end + +2025-09-24 21:28:20,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:20,586 INFO Connection check task start + +2025-09-24 21:28:20,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:20,586 INFO Out dated connection ,size=0 + +2025-09-24 21:28:20,586 INFO Connection check task end + +2025-09-24 21:28:23,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:23,587 INFO Connection check task start + +2025-09-24 21:28:23,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:23,587 INFO Out dated connection ,size=0 + +2025-09-24 21:28:23,587 INFO Connection check task end + +2025-09-24 21:28:26,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:26,587 INFO Connection check task start + +2025-09-24 21:28:26,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:26,588 INFO Out dated connection ,size=0 + +2025-09-24 21:28:26,588 INFO Connection check task end + +2025-09-24 21:28:29,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:29,588 INFO Connection check task start + +2025-09-24 21:28:29,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:29,588 INFO Out dated connection ,size=0 + +2025-09-24 21:28:29,588 INFO Connection check task end + +2025-09-24 21:28:32,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:32,589 INFO Connection check task start + +2025-09-24 21:28:32,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:32,590 INFO Out dated connection ,size=0 + +2025-09-24 21:28:32,590 INFO Connection check task end + +2025-09-24 21:28:35,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:35,591 INFO Connection check task start + +2025-09-24 21:28:35,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:35,591 INFO Out dated connection ,size=0 + +2025-09-24 21:28:35,591 INFO Connection check task end + +2025-09-24 21:28:38,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:38,593 INFO Connection check task start + +2025-09-24 21:28:38,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:38,593 INFO Out dated connection ,size=0 + +2025-09-24 21:28:38,593 INFO Connection check task end + +2025-09-24 21:28:41,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:41,594 INFO Connection check task start + +2025-09-24 21:28:41,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:41,594 INFO Out dated connection ,size=0 + +2025-09-24 21:28:41,594 INFO Connection check task end + +2025-09-24 21:28:44,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:44,595 INFO Connection check task start + +2025-09-24 21:28:44,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:44,595 INFO Out dated connection ,size=0 + +2025-09-24 21:28:44,595 INFO Connection check task end + +2025-09-24 21:28:47,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:47,597 INFO Connection check task start + +2025-09-24 21:28:47,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:47,597 INFO Out dated connection ,size=0 + +2025-09-24 21:28:47,597 INFO Connection check task end + +2025-09-24 21:28:50,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:50,598 INFO Connection check task start + +2025-09-24 21:28:50,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:50,598 INFO Out dated connection ,size=0 + +2025-09-24 21:28:50,598 INFO Connection check task end + +2025-09-24 21:28:53,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:53,598 INFO Connection check task start + +2025-09-24 21:28:53,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:53,598 INFO Out dated connection ,size=0 + +2025-09-24 21:28:53,598 INFO Connection check task end + +2025-09-24 21:28:56,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:56,600 INFO Connection check task start + +2025-09-24 21:28:56,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:56,600 INFO Out dated connection ,size=0 + +2025-09-24 21:28:56,600 INFO Connection check task end + +2025-09-24 21:28:59,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:28:59,601 INFO Connection check task start + +2025-09-24 21:28:59,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:28:59,601 INFO Out dated connection ,size=0 + +2025-09-24 21:28:59,601 INFO Connection check task end + +2025-09-24 21:29:02,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:02,601 INFO Connection check task start + +2025-09-24 21:29:02,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:02,602 INFO Out dated connection ,size=0 + +2025-09-24 21:29:02,602 INFO Connection check task end + +2025-09-24 21:29:05,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:05,602 INFO Connection check task start + +2025-09-24 21:29:05,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:05,602 INFO Out dated connection ,size=0 + +2025-09-24 21:29:05,602 INFO Connection check task end + +2025-09-24 21:29:08,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:08,604 INFO Connection check task start + +2025-09-24 21:29:08,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:08,605 INFO Out dated connection ,size=0 + +2025-09-24 21:29:08,605 INFO Connection check task end + +2025-09-24 21:29:11,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:11,605 INFO Connection check task start + +2025-09-24 21:29:11,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:11,605 INFO Out dated connection ,size=0 + +2025-09-24 21:29:11,605 INFO Connection check task end + +2025-09-24 21:29:14,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:14,606 INFO Connection check task start + +2025-09-24 21:29:14,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:14,606 INFO Out dated connection ,size=0 + +2025-09-24 21:29:14,606 INFO Connection check task end + +2025-09-24 21:29:17,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:17,607 INFO Connection check task start + +2025-09-24 21:29:17,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:17,607 INFO Out dated connection ,size=0 + +2025-09-24 21:29:17,607 INFO Connection check task end + +2025-09-24 21:29:20,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:20,610 INFO Connection check task start + +2025-09-24 21:29:20,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:20,623 INFO Out dated connection ,size=0 + +2025-09-24 21:29:20,623 INFO Connection check task end + +2025-09-24 21:29:23,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:23,625 INFO Connection check task start + +2025-09-24 21:29:23,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:23,625 INFO Out dated connection ,size=0 + +2025-09-24 21:29:23,625 INFO Connection check task end + +2025-09-24 21:29:26,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:26,625 INFO Connection check task start + +2025-09-24 21:29:26,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:26,626 INFO Out dated connection ,size=0 + +2025-09-24 21:29:26,626 INFO Connection check task end + +2025-09-24 21:29:29,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:29,627 INFO Connection check task start + +2025-09-24 21:29:29,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:29,627 INFO Out dated connection ,size=0 + +2025-09-24 21:29:29,628 INFO Connection check task end + +2025-09-24 21:29:32,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:32,628 INFO Connection check task start + +2025-09-24 21:29:32,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:32,628 INFO Out dated connection ,size=0 + +2025-09-24 21:29:32,628 INFO Connection check task end + +2025-09-24 21:29:35,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:35,630 INFO Connection check task start + +2025-09-24 21:29:35,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:35,630 INFO Out dated connection ,size=0 + +2025-09-24 21:29:35,630 INFO Connection check task end + +2025-09-24 21:29:38,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:38,631 INFO Connection check task start + +2025-09-24 21:29:38,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:38,631 INFO Out dated connection ,size=0 + +2025-09-24 21:29:38,631 INFO Connection check task end + +2025-09-24 21:29:41,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:41,631 INFO Connection check task start + +2025-09-24 21:29:41,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:41,632 INFO Out dated connection ,size=0 + +2025-09-24 21:29:41,632 INFO Connection check task end + +2025-09-24 21:29:44,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:44,633 INFO Connection check task start + +2025-09-24 21:29:44,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:44,633 INFO Out dated connection ,size=0 + +2025-09-24 21:29:44,633 INFO Connection check task end + +2025-09-24 21:29:47,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:47,635 INFO Connection check task start + +2025-09-24 21:29:47,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:47,636 INFO Out dated connection ,size=0 + +2025-09-24 21:29:47,636 INFO Connection check task end + +2025-09-24 21:29:50,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:50,636 INFO Connection check task start + +2025-09-24 21:29:50,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:50,636 INFO Out dated connection ,size=0 + +2025-09-24 21:29:50,636 INFO Connection check task end + +2025-09-24 21:29:53,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:53,637 INFO Connection check task start + +2025-09-24 21:29:53,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:53,637 INFO Out dated connection ,size=0 + +2025-09-24 21:29:53,637 INFO Connection check task end + +2025-09-24 21:29:56,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:56,638 INFO Connection check task start + +2025-09-24 21:29:56,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:56,639 INFO Out dated connection ,size=0 + +2025-09-24 21:29:56,639 INFO Connection check task end + +2025-09-24 21:29:59,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:29:59,640 INFO Connection check task start + +2025-09-24 21:29:59,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:29:59,640 INFO Out dated connection ,size=0 + +2025-09-24 21:29:59,640 INFO Connection check task end + +2025-09-24 21:30:02,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:02,640 INFO Connection check task start + +2025-09-24 21:30:02,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:02,640 INFO Out dated connection ,size=0 + +2025-09-24 21:30:02,640 INFO Connection check task end + +2025-09-24 21:30:05,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:05,643 INFO Connection check task start + +2025-09-24 21:30:05,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:05,643 INFO Out dated connection ,size=0 + +2025-09-24 21:30:05,643 INFO Connection check task end + +2025-09-24 21:30:08,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:08,643 INFO Connection check task start + +2025-09-24 21:30:08,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:08,644 INFO Out dated connection ,size=0 + +2025-09-24 21:30:08,644 INFO Connection check task end + +2025-09-24 21:30:11,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:11,644 INFO Connection check task start + +2025-09-24 21:30:11,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:11,644 INFO Out dated connection ,size=0 + +2025-09-24 21:30:11,644 INFO Connection check task end + +2025-09-24 21:30:14,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:14,645 INFO Connection check task start + +2025-09-24 21:30:14,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:14,645 INFO Out dated connection ,size=0 + +2025-09-24 21:30:14,645 INFO Connection check task end + +2025-09-24 21:30:17,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:17,645 INFO Connection check task start + +2025-09-24 21:30:17,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:17,646 INFO Out dated connection ,size=0 + +2025-09-24 21:30:17,646 INFO Connection check task end + +2025-09-24 21:30:20,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:20,648 INFO Connection check task start + +2025-09-24 21:30:20,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:20,648 INFO Out dated connection ,size=0 + +2025-09-24 21:30:20,648 INFO Connection check task end + +2025-09-24 21:30:23,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:23,648 INFO Connection check task start + +2025-09-24 21:30:23,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:23,648 INFO Out dated connection ,size=0 + +2025-09-24 21:30:23,648 INFO Connection check task end + +2025-09-24 21:30:26,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:26,649 INFO Connection check task start + +2025-09-24 21:30:26,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:26,649 INFO Out dated connection ,size=0 + +2025-09-24 21:30:26,650 INFO Connection check task end + +2025-09-24 21:30:29,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:29,651 INFO Connection check task start + +2025-09-24 21:30:29,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:29,651 INFO Out dated connection ,size=0 + +2025-09-24 21:30:29,651 INFO Connection check task end + +2025-09-24 21:30:32,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:32,653 INFO Connection check task start + +2025-09-24 21:30:32,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:32,653 INFO Out dated connection ,size=0 + +2025-09-24 21:30:32,653 INFO Connection check task end + +2025-09-24 21:30:35,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:35,654 INFO Connection check task start + +2025-09-24 21:30:35,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:35,654 INFO Out dated connection ,size=0 + +2025-09-24 21:30:35,655 INFO Connection check task end + +2025-09-24 21:30:38,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:38,656 INFO Connection check task start + +2025-09-24 21:30:38,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:38,656 INFO Out dated connection ,size=0 + +2025-09-24 21:30:38,656 INFO Connection check task end + +2025-09-24 21:30:41,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:41,656 INFO Connection check task start + +2025-09-24 21:30:41,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:41,657 INFO Out dated connection ,size=0 + +2025-09-24 21:30:41,657 INFO Connection check task end + +2025-09-24 21:30:44,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:44,657 INFO Connection check task start + +2025-09-24 21:30:44,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:44,657 INFO Out dated connection ,size=0 + +2025-09-24 21:30:44,657 INFO Connection check task end + +2025-09-24 21:30:47,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:47,658 INFO Connection check task start + +2025-09-24 21:30:47,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:47,658 INFO Out dated connection ,size=0 + +2025-09-24 21:30:47,658 INFO Connection check task end + +2025-09-24 21:30:50,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:50,660 INFO Connection check task start + +2025-09-24 21:30:50,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:50,660 INFO Out dated connection ,size=0 + +2025-09-24 21:30:50,660 INFO Connection check task end + +2025-09-24 21:30:53,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:53,661 INFO Connection check task start + +2025-09-24 21:30:53,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:53,661 INFO Out dated connection ,size=0 + +2025-09-24 21:30:53,662 INFO Connection check task end + +2025-09-24 21:30:56,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:56,664 INFO Connection check task start + +2025-09-24 21:30:56,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:56,664 INFO Out dated connection ,size=0 + +2025-09-24 21:30:56,664 INFO Connection check task end + +2025-09-24 21:30:59,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:30:59,664 INFO Connection check task start + +2025-09-24 21:30:59,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:30:59,664 INFO Out dated connection ,size=0 + +2025-09-24 21:30:59,664 INFO Connection check task end + +2025-09-24 21:31:02,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:02,666 INFO Connection check task start + +2025-09-24 21:31:02,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:02,666 INFO Out dated connection ,size=0 + +2025-09-24 21:31:02,666 INFO Connection check task end + +2025-09-24 21:31:05,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:05,667 INFO Connection check task start + +2025-09-24 21:31:05,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:05,667 INFO Out dated connection ,size=0 + +2025-09-24 21:31:05,667 INFO Connection check task end + +2025-09-24 21:31:08,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:08,667 INFO Connection check task start + +2025-09-24 21:31:08,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:08,667 INFO Out dated connection ,size=0 + +2025-09-24 21:31:08,667 INFO Connection check task end + +2025-09-24 21:31:11,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:11,669 INFO Connection check task start + +2025-09-24 21:31:11,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:11,669 INFO Out dated connection ,size=0 + +2025-09-24 21:31:11,669 INFO Connection check task end + +2025-09-24 21:31:14,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:14,670 INFO Connection check task start + +2025-09-24 21:31:14,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:14,670 INFO Out dated connection ,size=0 + +2025-09-24 21:31:14,670 INFO Connection check task end + +2025-09-24 21:31:17,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:17,670 INFO Connection check task start + +2025-09-24 21:31:17,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:17,671 INFO Out dated connection ,size=0 + +2025-09-24 21:31:17,671 INFO Connection check task end + +2025-09-24 21:31:20,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:20,671 INFO Connection check task start + +2025-09-24 21:31:20,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:20,671 INFO Out dated connection ,size=0 + +2025-09-24 21:31:20,671 INFO Connection check task end + +2025-09-24 21:31:23,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:23,672 INFO Connection check task start + +2025-09-24 21:31:23,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:23,672 INFO Out dated connection ,size=0 + +2025-09-24 21:31:23,672 INFO Connection check task end + +2025-09-24 21:31:26,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:26,673 INFO Connection check task start + +2025-09-24 21:31:26,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:26,673 INFO Out dated connection ,size=0 + +2025-09-24 21:31:26,673 INFO Connection check task end + +2025-09-24 21:31:29,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:29,674 INFO Connection check task start + +2025-09-24 21:31:29,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:29,674 INFO Out dated connection ,size=0 + +2025-09-24 21:31:29,674 INFO Connection check task end + +2025-09-24 21:31:32,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:32,675 INFO Connection check task start + +2025-09-24 21:31:32,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:32,675 INFO Out dated connection ,size=0 + +2025-09-24 21:31:32,675 INFO Connection check task end + +2025-09-24 21:31:35,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:35,675 INFO Connection check task start + +2025-09-24 21:31:35,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:35,675 INFO Out dated connection ,size=0 + +2025-09-24 21:31:35,675 INFO Connection check task end + +2025-09-24 21:31:38,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:38,675 INFO Connection check task start + +2025-09-24 21:31:38,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:38,676 INFO Out dated connection ,size=0 + +2025-09-24 21:31:38,676 INFO Connection check task end + +2025-09-24 21:31:41,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:41,676 INFO Connection check task start + +2025-09-24 21:31:41,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:41,676 INFO Out dated connection ,size=0 + +2025-09-24 21:31:41,676 INFO Connection check task end + +2025-09-24 21:31:44,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:44,677 INFO Connection check task start + +2025-09-24 21:31:44,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:44,677 INFO Out dated connection ,size=0 + +2025-09-24 21:31:44,677 INFO Connection check task end + +2025-09-24 21:31:47,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:47,678 INFO Connection check task start + +2025-09-24 21:31:47,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:47,679 INFO Out dated connection ,size=0 + +2025-09-24 21:31:47,679 INFO Connection check task end + +2025-09-24 21:31:50,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:50,681 INFO Connection check task start + +2025-09-24 21:31:50,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:50,681 INFO Out dated connection ,size=0 + +2025-09-24 21:31:50,681 INFO Connection check task end + +2025-09-24 21:31:53,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:53,682 INFO Connection check task start + +2025-09-24 21:31:53,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:53,682 INFO Out dated connection ,size=0 + +2025-09-24 21:31:53,682 INFO Connection check task end + +2025-09-24 21:31:56,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:56,682 INFO Connection check task start + +2025-09-24 21:31:56,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:56,683 INFO Out dated connection ,size=0 + +2025-09-24 21:31:56,683 INFO Connection check task end + +2025-09-24 21:31:59,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:31:59,685 INFO Connection check task start + +2025-09-24 21:31:59,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:31:59,685 INFO Out dated connection ,size=0 + +2025-09-24 21:31:59,685 INFO Connection check task end + +2025-09-24 21:32:02,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:02,686 INFO Connection check task start + +2025-09-24 21:32:02,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:02,686 INFO Out dated connection ,size=0 + +2025-09-24 21:32:02,686 INFO Connection check task end + +2025-09-24 21:32:05,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:05,687 INFO Connection check task start + +2025-09-24 21:32:05,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:05,687 INFO Out dated connection ,size=0 + +2025-09-24 21:32:05,687 INFO Connection check task end + +2025-09-24 21:32:08,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:08,688 INFO Connection check task start + +2025-09-24 21:32:08,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:08,688 INFO Out dated connection ,size=0 + +2025-09-24 21:32:08,688 INFO Connection check task end + +2025-09-24 21:32:11,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:11,689 INFO Connection check task start + +2025-09-24 21:32:11,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:11,689 INFO Out dated connection ,size=0 + +2025-09-24 21:32:11,689 INFO Connection check task end + +2025-09-24 21:32:14,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:14,690 INFO Connection check task start + +2025-09-24 21:32:14,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:14,690 INFO Out dated connection ,size=0 + +2025-09-24 21:32:14,690 INFO Connection check task end + +2025-09-24 21:32:17,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:17,690 INFO Connection check task start + +2025-09-24 21:32:17,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:17,691 INFO Out dated connection ,size=0 + +2025-09-24 21:32:17,691 INFO Connection check task end + +2025-09-24 21:32:20,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:20,693 INFO Connection check task start + +2025-09-24 21:32:20,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:20,693 INFO Out dated connection ,size=0 + +2025-09-24 21:32:20,693 INFO Connection check task end + +2025-09-24 21:32:23,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:23,694 INFO Connection check task start + +2025-09-24 21:32:23,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:23,694 INFO Out dated connection ,size=0 + +2025-09-24 21:32:23,694 INFO Connection check task end + +2025-09-24 21:32:26,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:26,694 INFO Connection check task start + +2025-09-24 21:32:26,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:26,695 INFO Out dated connection ,size=0 + +2025-09-24 21:32:26,695 INFO Connection check task end + +2025-09-24 21:32:29,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:29,697 INFO Connection check task start + +2025-09-24 21:32:29,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:29,697 INFO Out dated connection ,size=0 + +2025-09-24 21:32:29,697 INFO Connection check task end + +2025-09-24 21:32:32,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:32,697 INFO Connection check task start + +2025-09-24 21:32:32,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:32,697 INFO Out dated connection ,size=0 + +2025-09-24 21:32:32,697 INFO Connection check task end + +2025-09-24 21:32:35,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:35,698 INFO Connection check task start + +2025-09-24 21:32:35,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:35,698 INFO Out dated connection ,size=0 + +2025-09-24 21:32:35,698 INFO Connection check task end + +2025-09-24 21:32:38,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:38,698 INFO Connection check task start + +2025-09-24 21:32:38,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:38,699 INFO Out dated connection ,size=0 + +2025-09-24 21:32:38,699 INFO Connection check task end + +2025-09-24 21:32:41,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:41,700 INFO Connection check task start + +2025-09-24 21:32:41,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:41,701 INFO Out dated connection ,size=0 + +2025-09-24 21:32:41,701 INFO Connection check task end + +2025-09-24 21:32:44,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:44,701 INFO Connection check task start + +2025-09-24 21:32:44,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:44,701 INFO Out dated connection ,size=0 + +2025-09-24 21:32:44,701 INFO Connection check task end + +2025-09-24 21:32:47,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:47,702 INFO Connection check task start + +2025-09-24 21:32:47,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:47,702 INFO Out dated connection ,size=0 + +2025-09-24 21:32:47,703 INFO Connection check task end + +2025-09-24 21:32:50,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:50,703 INFO Connection check task start + +2025-09-24 21:32:50,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:50,704 INFO Out dated connection ,size=0 + +2025-09-24 21:32:50,704 INFO Connection check task end + +2025-09-24 21:32:53,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:53,704 INFO Connection check task start + +2025-09-24 21:32:53,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:53,704 INFO Out dated connection ,size=0 + +2025-09-24 21:32:53,704 INFO Connection check task end + +2025-09-24 21:32:56,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:56,705 INFO Connection check task start + +2025-09-24 21:32:56,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:56,705 INFO Out dated connection ,size=0 + +2025-09-24 21:32:56,705 INFO Connection check task end + +2025-09-24 21:32:59,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:32:59,707 INFO Connection check task start + +2025-09-24 21:32:59,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:32:59,707 INFO Out dated connection ,size=0 + +2025-09-24 21:32:59,707 INFO Connection check task end + +2025-09-24 21:33:02,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:02,709 INFO Connection check task start + +2025-09-24 21:33:02,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:02,709 INFO Out dated connection ,size=0 + +2025-09-24 21:33:02,709 INFO Connection check task end + +2025-09-24 21:33:05,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:05,710 INFO Connection check task start + +2025-09-24 21:33:05,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:05,710 INFO Out dated connection ,size=0 + +2025-09-24 21:33:05,710 INFO Connection check task end + +2025-09-24 21:33:08,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:08,710 INFO Connection check task start + +2025-09-24 21:33:08,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:08,710 INFO Out dated connection ,size=0 + +2025-09-24 21:33:08,710 INFO Connection check task end + +2025-09-24 21:33:11,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:11,712 INFO Connection check task start + +2025-09-24 21:33:11,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:11,712 INFO Out dated connection ,size=0 + +2025-09-24 21:33:11,712 INFO Connection check task end + +2025-09-24 21:33:14,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:14,713 INFO Connection check task start + +2025-09-24 21:33:14,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:14,713 INFO Out dated connection ,size=0 + +2025-09-24 21:33:14,713 INFO Connection check task end + +2025-09-24 21:33:17,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:17,713 INFO Connection check task start + +2025-09-24 21:33:17,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:17,714 INFO Out dated connection ,size=0 + +2025-09-24 21:33:17,714 INFO Connection check task end + +2025-09-24 21:33:20,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:20,714 INFO Connection check task start + +2025-09-24 21:33:20,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:20,714 INFO Out dated connection ,size=0 + +2025-09-24 21:33:20,714 INFO Connection check task end + +2025-09-24 21:33:23,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:23,714 INFO Connection check task start + +2025-09-24 21:33:23,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:23,715 INFO Out dated connection ,size=0 + +2025-09-24 21:33:23,715 INFO Connection check task end + +2025-09-24 21:33:26,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:26,716 INFO Connection check task start + +2025-09-24 21:33:26,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:26,716 INFO Out dated connection ,size=0 + +2025-09-24 21:33:26,716 INFO Connection check task end + +2025-09-24 21:33:29,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:29,716 INFO Connection check task start + +2025-09-24 21:33:29,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:29,717 INFO Out dated connection ,size=0 + +2025-09-24 21:33:29,717 INFO Connection check task end + +2025-09-24 21:33:32,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:32,719 INFO Connection check task start + +2025-09-24 21:33:32,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:32,719 INFO Out dated connection ,size=0 + +2025-09-24 21:33:32,719 INFO Connection check task end + +2025-09-24 21:33:35,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:35,720 INFO Connection check task start + +2025-09-24 21:33:35,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:35,720 INFO Out dated connection ,size=0 + +2025-09-24 21:33:35,720 INFO Connection check task end + +2025-09-24 21:33:38,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:38,721 INFO Connection check task start + +2025-09-24 21:33:38,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:38,721 INFO Out dated connection ,size=0 + +2025-09-24 21:33:38,721 INFO Connection check task end + +2025-09-24 21:33:41,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:41,721 INFO Connection check task start + +2025-09-24 21:33:41,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:41,722 INFO Out dated connection ,size=0 + +2025-09-24 21:33:41,722 INFO Connection check task end + +2025-09-24 21:33:44,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:44,723 INFO Connection check task start + +2025-09-24 21:33:44,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:44,723 INFO Out dated connection ,size=0 + +2025-09-24 21:33:44,723 INFO Connection check task end + +2025-09-24 21:33:47,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:47,723 INFO Connection check task start + +2025-09-24 21:33:47,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:47,724 INFO Out dated connection ,size=0 + +2025-09-24 21:33:47,724 INFO Connection check task end + +2025-09-24 21:33:50,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:50,725 INFO Connection check task start + +2025-09-24 21:33:50,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:50,728 INFO Out dated connection ,size=0 + +2025-09-24 21:33:50,728 INFO Connection check task end + +2025-09-24 21:33:53,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:53,729 INFO Connection check task start + +2025-09-24 21:33:53,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:53,729 INFO Out dated connection ,size=0 + +2025-09-24 21:33:53,729 INFO Connection check task end + +2025-09-24 21:33:56,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:56,729 INFO Connection check task start + +2025-09-24 21:33:56,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:56,730 INFO Out dated connection ,size=0 + +2025-09-24 21:33:56,730 INFO Connection check task end + +2025-09-24 21:33:59,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:33:59,730 INFO Connection check task start + +2025-09-24 21:33:59,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:33:59,730 INFO Out dated connection ,size=0 + +2025-09-24 21:33:59,730 INFO Connection check task end + +2025-09-24 21:34:02,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:02,730 INFO Connection check task start + +2025-09-24 21:34:02,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:02,730 INFO Out dated connection ,size=0 + +2025-09-24 21:34:02,731 INFO Connection check task end + +2025-09-24 21:34:05,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:05,732 INFO Connection check task start + +2025-09-24 21:34:05,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:05,733 INFO Out dated connection ,size=0 + +2025-09-24 21:34:05,733 INFO Connection check task end + +2025-09-24 21:34:08,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:08,733 INFO Connection check task start + +2025-09-24 21:34:08,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:08,734 INFO Out dated connection ,size=0 + +2025-09-24 21:34:08,734 INFO Connection check task end + +2025-09-24 21:34:11,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:11,734 INFO Connection check task start + +2025-09-24 21:34:11,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:11,735 INFO Out dated connection ,size=0 + +2025-09-24 21:34:11,735 INFO Connection check task end + +2025-09-24 21:34:14,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:14,736 INFO Connection check task start + +2025-09-24 21:34:14,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:14,737 INFO Out dated connection ,size=0 + +2025-09-24 21:34:14,737 INFO Connection check task end + +2025-09-24 21:34:17,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:17,737 INFO Connection check task start + +2025-09-24 21:34:17,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:17,737 INFO Out dated connection ,size=0 + +2025-09-24 21:34:17,737 INFO Connection check task end + +2025-09-24 21:34:20,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:20,738 INFO Connection check task start + +2025-09-24 21:34:20,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:20,738 INFO Out dated connection ,size=0 + +2025-09-24 21:34:20,738 INFO Connection check task end + +2025-09-24 21:34:23,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:23,738 INFO Connection check task start + +2025-09-24 21:34:23,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:23,739 INFO Out dated connection ,size=0 + +2025-09-24 21:34:23,739 INFO Connection check task end + +2025-09-24 21:34:26,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:26,741 INFO Connection check task start + +2025-09-24 21:34:26,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:26,741 INFO Out dated connection ,size=0 + +2025-09-24 21:34:26,741 INFO Connection check task end + +2025-09-24 21:34:29,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:29,743 INFO Connection check task start + +2025-09-24 21:34:29,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:29,743 INFO Out dated connection ,size=0 + +2025-09-24 21:34:29,743 INFO Connection check task end + +2025-09-24 21:34:32,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:32,744 INFO Connection check task start + +2025-09-24 21:34:32,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:32,764 INFO Out dated connection ,size=0 + +2025-09-24 21:34:32,764 INFO Connection check task end + +2025-09-24 21:34:35,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:35,765 INFO Connection check task start + +2025-09-24 21:34:35,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:35,766 INFO Out dated connection ,size=0 + +2025-09-24 21:34:35,766 INFO Connection check task end + +2025-09-24 21:34:38,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:38,766 INFO Connection check task start + +2025-09-24 21:34:38,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:38,766 INFO Out dated connection ,size=0 + +2025-09-24 21:34:38,766 INFO Connection check task end + +2025-09-24 21:34:41,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:41,768 INFO Connection check task start + +2025-09-24 21:34:41,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:41,768 INFO Out dated connection ,size=0 + +2025-09-24 21:34:41,768 INFO Connection check task end + +2025-09-24 21:34:44,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:44,769 INFO Connection check task start + +2025-09-24 21:34:44,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:44,769 INFO Out dated connection ,size=0 + +2025-09-24 21:34:44,769 INFO Connection check task end + +2025-09-24 21:34:47,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:47,771 INFO Connection check task start + +2025-09-24 21:34:47,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:47,771 INFO Out dated connection ,size=0 + +2025-09-24 21:34:47,771 INFO Connection check task end + +2025-09-24 21:34:50,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:50,771 INFO Connection check task start + +2025-09-24 21:34:50,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:50,772 INFO Out dated connection ,size=0 + +2025-09-24 21:34:50,772 INFO Connection check task end + +2025-09-24 21:34:53,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:53,772 INFO Connection check task start + +2025-09-24 21:34:53,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:53,772 INFO Out dated connection ,size=0 + +2025-09-24 21:34:53,773 INFO Connection check task end + +2025-09-24 21:34:56,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:56,773 INFO Connection check task start + +2025-09-24 21:34:56,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:56,773 INFO Out dated connection ,size=0 + +2025-09-24 21:34:56,773 INFO Connection check task end + +2025-09-24 21:34:59,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:34:59,773 INFO Connection check task start + +2025-09-24 21:34:59,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:34:59,773 INFO Out dated connection ,size=0 + +2025-09-24 21:34:59,773 INFO Connection check task end + +2025-09-24 21:35:02,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:02,774 INFO Connection check task start + +2025-09-24 21:35:02,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:02,774 INFO Out dated connection ,size=0 + +2025-09-24 21:35:02,774 INFO Connection check task end + +2025-09-24 21:35:05,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:05,774 INFO Connection check task start + +2025-09-24 21:35:05,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:05,775 INFO Out dated connection ,size=0 + +2025-09-24 21:35:05,775 INFO Connection check task end + +2025-09-24 21:35:08,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:08,777 INFO Connection check task start + +2025-09-24 21:35:08,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:08,777 INFO Out dated connection ,size=0 + +2025-09-24 21:35:08,777 INFO Connection check task end + +2025-09-24 21:35:11,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:11,777 INFO Connection check task start + +2025-09-24 21:35:11,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:11,778 INFO Out dated connection ,size=0 + +2025-09-24 21:35:11,778 INFO Connection check task end + +2025-09-24 21:35:14,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:14,779 INFO Connection check task start + +2025-09-24 21:35:14,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:14,780 INFO Out dated connection ,size=0 + +2025-09-24 21:35:14,780 INFO Connection check task end + +2025-09-24 21:35:17,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:17,780 INFO Connection check task start + +2025-09-24 21:35:17,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:17,780 INFO Out dated connection ,size=0 + +2025-09-24 21:35:17,780 INFO Connection check task end + +2025-09-24 21:35:20,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:20,782 INFO Connection check task start + +2025-09-24 21:35:20,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:20,785 INFO Out dated connection ,size=0 + +2025-09-24 21:35:20,785 INFO Connection check task end + +2025-09-24 21:35:23,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:23,786 INFO Connection check task start + +2025-09-24 21:35:23,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:23,786 INFO Out dated connection ,size=0 + +2025-09-24 21:35:23,786 INFO Connection check task end + +2025-09-24 21:35:26,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:26,786 INFO Connection check task start + +2025-09-24 21:35:26,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:26,786 INFO Out dated connection ,size=0 + +2025-09-24 21:35:26,786 INFO Connection check task end + +2025-09-24 21:35:29,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:29,787 INFO Connection check task start + +2025-09-24 21:35:29,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:29,788 INFO Out dated connection ,size=0 + +2025-09-24 21:35:29,788 INFO Connection check task end + +2025-09-24 21:35:32,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:32,788 INFO Connection check task start + +2025-09-24 21:35:32,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:32,788 INFO Out dated connection ,size=0 + +2025-09-24 21:35:32,788 INFO Connection check task end + +2025-09-24 21:35:35,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:35,789 INFO Connection check task start + +2025-09-24 21:35:35,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:35,789 INFO Out dated connection ,size=0 + +2025-09-24 21:35:35,789 INFO Connection check task end + +2025-09-24 21:35:38,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:38,791 INFO Connection check task start + +2025-09-24 21:35:38,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:38,791 INFO Out dated connection ,size=0 + +2025-09-24 21:35:38,791 INFO Connection check task end + +2025-09-24 21:35:41,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:41,791 INFO Connection check task start + +2025-09-24 21:35:41,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:41,792 INFO Out dated connection ,size=0 + +2025-09-24 21:35:41,792 INFO Connection check task end + +2025-09-24 21:35:44,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:44,792 INFO Connection check task start + +2025-09-24 21:35:44,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:44,792 INFO Out dated connection ,size=0 + +2025-09-24 21:35:44,792 INFO Connection check task end + +2025-09-24 21:35:47,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:47,793 INFO Connection check task start + +2025-09-24 21:35:47,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:47,793 INFO Out dated connection ,size=0 + +2025-09-24 21:35:47,793 INFO Connection check task end + +2025-09-24 21:35:50,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:50,793 INFO Connection check task start + +2025-09-24 21:35:50,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:50,793 INFO Out dated connection ,size=0 + +2025-09-24 21:35:50,793 INFO Connection check task end + +2025-09-24 21:35:53,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:53,794 INFO Connection check task start + +2025-09-24 21:35:53,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:53,794 INFO Out dated connection ,size=0 + +2025-09-24 21:35:53,794 INFO Connection check task end + +2025-09-24 21:35:56,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:56,794 INFO Connection check task start + +2025-09-24 21:35:56,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:56,794 INFO Out dated connection ,size=0 + +2025-09-24 21:35:56,794 INFO Connection check task end + +2025-09-24 21:35:59,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:35:59,795 INFO Connection check task start + +2025-09-24 21:35:59,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:35:59,795 INFO Out dated connection ,size=0 + +2025-09-24 21:35:59,795 INFO Connection check task end + +2025-09-24 21:36:02,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:02,795 INFO Connection check task start + +2025-09-24 21:36:02,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:02,796 INFO Out dated connection ,size=0 + +2025-09-24 21:36:02,796 INFO Connection check task end + +2025-09-24 21:36:05,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:05,796 INFO Connection check task start + +2025-09-24 21:36:05,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:05,796 INFO Out dated connection ,size=0 + +2025-09-24 21:36:05,796 INFO Connection check task end + +2025-09-24 21:36:08,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:08,798 INFO Connection check task start + +2025-09-24 21:36:08,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:08,798 INFO Out dated connection ,size=0 + +2025-09-24 21:36:08,798 INFO Connection check task end + +2025-09-24 21:36:11,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:11,799 INFO Connection check task start + +2025-09-24 21:36:11,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:11,799 INFO Out dated connection ,size=0 + +2025-09-24 21:36:11,799 INFO Connection check task end + +2025-09-24 21:36:14,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:14,800 INFO Connection check task start + +2025-09-24 21:36:14,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:14,800 INFO Out dated connection ,size=0 + +2025-09-24 21:36:14,800 INFO Connection check task end + +2025-09-24 21:36:17,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:17,801 INFO Connection check task start + +2025-09-24 21:36:17,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:17,801 INFO Out dated connection ,size=0 + +2025-09-24 21:36:17,801 INFO Connection check task end + +2025-09-24 21:36:20,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:20,803 INFO Connection check task start + +2025-09-24 21:36:20,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:20,804 INFO Out dated connection ,size=0 + +2025-09-24 21:36:20,804 INFO Connection check task end + +2025-09-24 21:36:23,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:23,804 INFO Connection check task start + +2025-09-24 21:36:23,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:23,804 INFO Out dated connection ,size=0 + +2025-09-24 21:36:23,804 INFO Connection check task end + +2025-09-24 21:36:26,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:26,807 INFO Connection check task start + +2025-09-24 21:36:26,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:26,807 INFO Out dated connection ,size=0 + +2025-09-24 21:36:26,807 INFO Connection check task end + +2025-09-24 21:36:29,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:29,808 INFO Connection check task start + +2025-09-24 21:36:29,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:29,808 INFO Out dated connection ,size=0 + +2025-09-24 21:36:29,808 INFO Connection check task end + +2025-09-24 21:36:32,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:32,810 INFO Connection check task start + +2025-09-24 21:36:32,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:32,811 INFO Out dated connection ,size=0 + +2025-09-24 21:36:32,811 INFO Connection check task end + +2025-09-24 21:36:35,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:35,812 INFO Connection check task start + +2025-09-24 21:36:35,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:35,812 INFO Out dated connection ,size=0 + +2025-09-24 21:36:35,812 INFO Connection check task end + +2025-09-24 21:36:38,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:38,814 INFO Connection check task start + +2025-09-24 21:36:38,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:38,814 INFO Out dated connection ,size=0 + +2025-09-24 21:36:38,814 INFO Connection check task end + +2025-09-24 21:36:41,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:41,816 INFO Connection check task start + +2025-09-24 21:36:41,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:41,816 INFO Out dated connection ,size=0 + +2025-09-24 21:36:41,816 INFO Connection check task end + +2025-09-24 21:36:44,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:44,818 INFO Connection check task start + +2025-09-24 21:36:44,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:44,818 INFO Out dated connection ,size=0 + +2025-09-24 21:36:44,818 INFO Connection check task end + +2025-09-24 21:36:47,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:47,818 INFO Connection check task start + +2025-09-24 21:36:47,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:47,819 INFO Out dated connection ,size=0 + +2025-09-24 21:36:47,819 INFO Connection check task end + +2025-09-24 21:36:50,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:50,819 INFO Connection check task start + +2025-09-24 21:36:50,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:50,819 INFO Out dated connection ,size=0 + +2025-09-24 21:36:50,819 INFO Connection check task end + +2025-09-24 21:36:53,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:53,821 INFO Connection check task start + +2025-09-24 21:36:53,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:53,821 INFO Out dated connection ,size=0 + +2025-09-24 21:36:53,821 INFO Connection check task end + +2025-09-24 21:36:56,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:56,823 INFO Connection check task start + +2025-09-24 21:36:56,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:56,824 INFO Out dated connection ,size=0 + +2025-09-24 21:36:56,824 INFO Connection check task end + +2025-09-24 21:36:59,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:36:59,825 INFO Connection check task start + +2025-09-24 21:36:59,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:36:59,825 INFO Out dated connection ,size=0 + +2025-09-24 21:36:59,826 INFO Connection check task end + +2025-09-24 21:37:02,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:02,826 INFO Connection check task start + +2025-09-24 21:37:02,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:02,826 INFO Out dated connection ,size=0 + +2025-09-24 21:37:02,826 INFO Connection check task end + +2025-09-24 21:37:05,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:05,827 INFO Connection check task start + +2025-09-24 21:37:05,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:05,827 INFO Out dated connection ,size=0 + +2025-09-24 21:37:05,827 INFO Connection check task end + +2025-09-24 21:37:08,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:08,828 INFO Connection check task start + +2025-09-24 21:37:08,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:08,828 INFO Out dated connection ,size=0 + +2025-09-24 21:37:08,828 INFO Connection check task end + +2025-09-24 21:37:11,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:11,830 INFO Connection check task start + +2025-09-24 21:37:11,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:11,830 INFO Out dated connection ,size=0 + +2025-09-24 21:37:11,830 INFO Connection check task end + +2025-09-24 21:37:14,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:14,830 INFO Connection check task start + +2025-09-24 21:37:14,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:14,831 INFO Out dated connection ,size=0 + +2025-09-24 21:37:14,831 INFO Connection check task end + +2025-09-24 21:37:17,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:17,831 INFO Connection check task start + +2025-09-24 21:37:17,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:17,831 INFO Out dated connection ,size=0 + +2025-09-24 21:37:17,831 INFO Connection check task end + +2025-09-24 21:37:20,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:20,833 INFO Connection check task start + +2025-09-24 21:37:20,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:20,834 INFO Out dated connection ,size=0 + +2025-09-24 21:37:20,834 INFO Connection check task end + +2025-09-24 21:37:23,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:23,835 INFO Connection check task start + +2025-09-24 21:37:23,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:23,835 INFO Out dated connection ,size=0 + +2025-09-24 21:37:23,835 INFO Connection check task end + +2025-09-24 21:37:26,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:26,835 INFO Connection check task start + +2025-09-24 21:37:26,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:26,836 INFO Out dated connection ,size=0 + +2025-09-24 21:37:26,836 INFO Connection check task end + +2025-09-24 21:37:29,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:29,836 INFO Connection check task start + +2025-09-24 21:37:29,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:29,836 INFO Out dated connection ,size=0 + +2025-09-24 21:37:29,836 INFO Connection check task end + +2025-09-24 21:37:32,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:32,838 INFO Connection check task start + +2025-09-24 21:37:32,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:32,838 INFO Out dated connection ,size=0 + +2025-09-24 21:37:32,838 INFO Connection check task end + +2025-09-24 21:37:35,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:35,839 INFO Connection check task start + +2025-09-24 21:37:35,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:35,839 INFO Out dated connection ,size=0 + +2025-09-24 21:37:35,839 INFO Connection check task end + +2025-09-24 21:37:38,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:38,841 INFO Connection check task start + +2025-09-24 21:37:38,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:38,841 INFO Out dated connection ,size=0 + +2025-09-24 21:37:38,841 INFO Connection check task end + +2025-09-24 21:37:41,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:41,842 INFO Connection check task start + +2025-09-24 21:37:41,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:41,842 INFO Out dated connection ,size=0 + +2025-09-24 21:37:41,842 INFO Connection check task end + +2025-09-24 21:37:44,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:44,844 INFO Connection check task start + +2025-09-24 21:37:44,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:44,844 INFO Out dated connection ,size=0 + +2025-09-24 21:37:44,844 INFO Connection check task end + +2025-09-24 21:37:47,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:47,845 INFO Connection check task start + +2025-09-24 21:37:47,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:47,845 INFO Out dated connection ,size=0 + +2025-09-24 21:37:47,845 INFO Connection check task end + +2025-09-24 21:37:50,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:50,845 INFO Connection check task start + +2025-09-24 21:37:50,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:50,845 INFO Out dated connection ,size=0 + +2025-09-24 21:37:50,845 INFO Connection check task end + +2025-09-24 21:37:53,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:53,846 INFO Connection check task start + +2025-09-24 21:37:53,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:53,846 INFO Out dated connection ,size=0 + +2025-09-24 21:37:53,846 INFO Connection check task end + +2025-09-24 21:37:56,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:56,848 INFO Connection check task start + +2025-09-24 21:37:56,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:56,848 INFO Out dated connection ,size=0 + +2025-09-24 21:37:56,848 INFO Connection check task end + +2025-09-24 21:37:59,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:37:59,849 INFO Connection check task start + +2025-09-24 21:37:59,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:37:59,849 INFO Out dated connection ,size=0 + +2025-09-24 21:37:59,849 INFO Connection check task end + +2025-09-24 21:38:02,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:02,850 INFO Connection check task start + +2025-09-24 21:38:02,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:02,851 INFO Out dated connection ,size=0 + +2025-09-24 21:38:02,851 INFO Connection check task end + +2025-09-24 21:38:05,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:05,851 INFO Connection check task start + +2025-09-24 21:38:05,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:05,852 INFO Out dated connection ,size=0 + +2025-09-24 21:38:05,852 INFO Connection check task end + +2025-09-24 21:38:08,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:08,852 INFO Connection check task start + +2025-09-24 21:38:08,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:08,852 INFO Out dated connection ,size=0 + +2025-09-24 21:38:08,852 INFO Connection check task end + +2025-09-24 21:38:11,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:11,854 INFO Connection check task start + +2025-09-24 21:38:11,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:11,855 INFO Out dated connection ,size=0 + +2025-09-24 21:38:11,855 INFO Connection check task end + +2025-09-24 21:38:14,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:14,855 INFO Connection check task start + +2025-09-24 21:38:14,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:14,855 INFO Out dated connection ,size=0 + +2025-09-24 21:38:14,856 INFO Connection check task end + +2025-09-24 21:38:17,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:17,856 INFO Connection check task start + +2025-09-24 21:38:17,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:17,856 INFO Out dated connection ,size=0 + +2025-09-24 21:38:17,856 INFO Connection check task end + +2025-09-24 21:38:20,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:20,857 INFO Connection check task start + +2025-09-24 21:38:20,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:20,857 INFO Out dated connection ,size=0 + +2025-09-24 21:38:20,857 INFO Connection check task end + +2025-09-24 21:38:23,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:23,858 INFO Connection check task start + +2025-09-24 21:38:23,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:23,858 INFO Out dated connection ,size=0 + +2025-09-24 21:38:23,858 INFO Connection check task end + +2025-09-24 21:38:26,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:26,858 INFO Connection check task start + +2025-09-24 21:38:26,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:26,859 INFO Out dated connection ,size=0 + +2025-09-24 21:38:26,859 INFO Connection check task end + +2025-09-24 21:38:29,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:29,859 INFO Connection check task start + +2025-09-24 21:38:29,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:29,859 INFO Out dated connection ,size=0 + +2025-09-24 21:38:29,859 INFO Connection check task end + +2025-09-24 21:38:32,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:32,860 INFO Connection check task start + +2025-09-24 21:38:32,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:32,860 INFO Out dated connection ,size=0 + +2025-09-24 21:38:32,860 INFO Connection check task end + +2025-09-24 21:38:35,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:35,860 INFO Connection check task start + +2025-09-24 21:38:35,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:35,860 INFO Out dated connection ,size=0 + +2025-09-24 21:38:35,860 INFO Connection check task end + +2025-09-24 21:38:38,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:38,862 INFO Connection check task start + +2025-09-24 21:38:38,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:38,862 INFO Out dated connection ,size=0 + +2025-09-24 21:38:38,862 INFO Connection check task end + +2025-09-24 21:38:41,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:41,863 INFO Connection check task start + +2025-09-24 21:38:41,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:41,863 INFO Out dated connection ,size=0 + +2025-09-24 21:38:41,863 INFO Connection check task end + +2025-09-24 21:38:44,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:44,863 INFO Connection check task start + +2025-09-24 21:38:44,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:44,863 INFO Out dated connection ,size=0 + +2025-09-24 21:38:44,863 INFO Connection check task end + +2025-09-24 21:38:47,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:47,864 INFO Connection check task start + +2025-09-24 21:38:47,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:47,864 INFO Out dated connection ,size=0 + +2025-09-24 21:38:47,864 INFO Connection check task end + +2025-09-24 21:38:50,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:50,866 INFO Connection check task start + +2025-09-24 21:38:50,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:50,866 INFO Out dated connection ,size=0 + +2025-09-24 21:38:50,866 INFO Connection check task end + +2025-09-24 21:38:53,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:53,867 INFO Connection check task start + +2025-09-24 21:38:53,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:53,868 INFO Out dated connection ,size=0 + +2025-09-24 21:38:53,868 INFO Connection check task end + +2025-09-24 21:38:56,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:56,870 INFO Connection check task start + +2025-09-24 21:38:56,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:56,870 INFO Out dated connection ,size=0 + +2025-09-24 21:38:56,870 INFO Connection check task end + +2025-09-24 21:38:59,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:38:59,872 INFO Connection check task start + +2025-09-24 21:38:59,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:38:59,872 INFO Out dated connection ,size=0 + +2025-09-24 21:38:59,872 INFO Connection check task end + +2025-09-24 21:39:02,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:02,873 INFO Connection check task start + +2025-09-24 21:39:02,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:02,873 INFO Out dated connection ,size=0 + +2025-09-24 21:39:02,873 INFO Connection check task end + +2025-09-24 21:39:05,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:05,874 INFO Connection check task start + +2025-09-24 21:39:05,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:05,874 INFO Out dated connection ,size=0 + +2025-09-24 21:39:05,874 INFO Connection check task end + +2025-09-24 21:39:08,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:08,876 INFO Connection check task start + +2025-09-24 21:39:08,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:08,876 INFO Out dated connection ,size=0 + +2025-09-24 21:39:08,876 INFO Connection check task end + +2025-09-24 21:39:11,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:11,876 INFO Connection check task start + +2025-09-24 21:39:11,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:11,877 INFO Out dated connection ,size=0 + +2025-09-24 21:39:11,877 INFO Connection check task end + +2025-09-24 21:39:14,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:14,877 INFO Connection check task start + +2025-09-24 21:39:14,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:14,877 INFO Out dated connection ,size=0 + +2025-09-24 21:39:14,877 INFO Connection check task end + +2025-09-24 21:39:17,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:17,879 INFO Connection check task start + +2025-09-24 21:39:17,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:17,879 INFO Out dated connection ,size=0 + +2025-09-24 21:39:17,879 INFO Connection check task end + +2025-09-24 21:39:20,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:20,880 INFO Connection check task start + +2025-09-24 21:39:20,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:20,880 INFO Out dated connection ,size=0 + +2025-09-24 21:39:20,880 INFO Connection check task end + +2025-09-24 21:39:23,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:23,881 INFO Connection check task start + +2025-09-24 21:39:23,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:23,881 INFO Out dated connection ,size=0 + +2025-09-24 21:39:23,881 INFO Connection check task end + +2025-09-24 21:39:26,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:26,881 INFO Connection check task start + +2025-09-24 21:39:26,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:26,881 INFO Out dated connection ,size=0 + +2025-09-24 21:39:26,881 INFO Connection check task end + +2025-09-24 21:39:29,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:29,886 INFO Connection check task start + +2025-09-24 21:39:29,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:29,886 INFO Out dated connection ,size=0 + +2025-09-24 21:39:29,886 INFO Connection check task end + +2025-09-24 21:39:32,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:32,886 INFO Connection check task start + +2025-09-24 21:39:32,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:32,886 INFO Out dated connection ,size=0 + +2025-09-24 21:39:32,886 INFO Connection check task end + +2025-09-24 21:39:35,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:35,887 INFO Connection check task start + +2025-09-24 21:39:35,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:35,887 INFO Out dated connection ,size=0 + +2025-09-24 21:39:35,887 INFO Connection check task end + +2025-09-24 21:39:38,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:38,888 INFO Connection check task start + +2025-09-24 21:39:38,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:38,888 INFO Out dated connection ,size=0 + +2025-09-24 21:39:38,889 INFO Connection check task end + +2025-09-24 21:39:41,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:41,891 INFO Connection check task start + +2025-09-24 21:39:41,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:41,891 INFO Out dated connection ,size=0 + +2025-09-24 21:39:41,891 INFO Connection check task end + +2025-09-24 21:39:44,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:44,893 INFO Connection check task start + +2025-09-24 21:39:44,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:44,893 INFO Out dated connection ,size=0 + +2025-09-24 21:39:44,893 INFO Connection check task end + +2025-09-24 21:39:47,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:47,894 INFO Connection check task start + +2025-09-24 21:39:47,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:47,895 INFO Out dated connection ,size=0 + +2025-09-24 21:39:47,895 INFO Connection check task end + +2025-09-24 21:39:50,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:50,896 INFO Connection check task start + +2025-09-24 21:39:50,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:50,896 INFO Out dated connection ,size=0 + +2025-09-24 21:39:50,896 INFO Connection check task end + +2025-09-24 21:39:53,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:53,898 INFO Connection check task start + +2025-09-24 21:39:53,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:53,898 INFO Out dated connection ,size=0 + +2025-09-24 21:39:53,898 INFO Connection check task end + +2025-09-24 21:39:56,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:56,899 INFO Connection check task start + +2025-09-24 21:39:56,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:56,899 INFO Out dated connection ,size=0 + +2025-09-24 21:39:56,899 INFO Connection check task end + +2025-09-24 21:39:59,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:39:59,900 INFO Connection check task start + +2025-09-24 21:39:59,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:39:59,900 INFO Out dated connection ,size=0 + +2025-09-24 21:39:59,900 INFO Connection check task end + +2025-09-24 21:40:02,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:02,901 INFO Connection check task start + +2025-09-24 21:40:02,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:02,901 INFO Out dated connection ,size=0 + +2025-09-24 21:40:02,902 INFO Connection check task end + +2025-09-24 21:40:05,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:05,902 INFO Connection check task start + +2025-09-24 21:40:05,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:05,902 INFO Out dated connection ,size=0 + +2025-09-24 21:40:05,902 INFO Connection check task end + +2025-09-24 21:40:08,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:08,904 INFO Connection check task start + +2025-09-24 21:40:08,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:08,904 INFO Out dated connection ,size=0 + +2025-09-24 21:40:08,904 INFO Connection check task end + +2025-09-24 21:40:11,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:11,904 INFO Connection check task start + +2025-09-24 21:40:11,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:11,905 INFO Out dated connection ,size=0 + +2025-09-24 21:40:11,905 INFO Connection check task end + +2025-09-24 21:40:14,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:14,905 INFO Connection check task start + +2025-09-24 21:40:14,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:14,905 INFO Out dated connection ,size=0 + +2025-09-24 21:40:14,905 INFO Connection check task end + +2025-09-24 21:40:17,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:17,906 INFO Connection check task start + +2025-09-24 21:40:17,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:17,906 INFO Out dated connection ,size=0 + +2025-09-24 21:40:17,906 INFO Connection check task end + +2025-09-24 21:40:20,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:20,907 INFO Connection check task start + +2025-09-24 21:40:20,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:20,907 INFO Out dated connection ,size=0 + +2025-09-24 21:40:20,907 INFO Connection check task end + +2025-09-24 21:40:23,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:23,909 INFO Connection check task start + +2025-09-24 21:40:23,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:23,910 INFO Out dated connection ,size=0 + +2025-09-24 21:40:23,910 INFO Connection check task end + +2025-09-24 21:40:26,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:26,910 INFO Connection check task start + +2025-09-24 21:40:26,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:26,910 INFO Out dated connection ,size=0 + +2025-09-24 21:40:26,910 INFO Connection check task end + +2025-09-24 21:40:29,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:29,911 INFO Connection check task start + +2025-09-24 21:40:29,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:29,911 INFO Out dated connection ,size=0 + +2025-09-24 21:40:29,911 INFO Connection check task end + +2025-09-24 21:40:32,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:32,912 INFO Connection check task start + +2025-09-24 21:40:32,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:32,912 INFO Out dated connection ,size=0 + +2025-09-24 21:40:32,912 INFO Connection check task end + +2025-09-24 21:40:35,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:35,915 INFO Connection check task start + +2025-09-24 21:40:35,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:35,915 INFO Out dated connection ,size=0 + +2025-09-24 21:40:35,915 INFO Connection check task end + +2025-09-24 21:40:38,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:38,917 INFO Connection check task start + +2025-09-24 21:40:38,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:38,917 INFO Out dated connection ,size=0 + +2025-09-24 21:40:38,917 INFO Connection check task end + +2025-09-24 21:40:41,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:41,919 INFO Connection check task start + +2025-09-24 21:40:41,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:41,919 INFO Out dated connection ,size=0 + +2025-09-24 21:40:41,919 INFO Connection check task end + +2025-09-24 21:40:44,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:44,919 INFO Connection check task start + +2025-09-24 21:40:44,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:44,919 INFO Out dated connection ,size=0 + +2025-09-24 21:40:44,919 INFO Connection check task end + +2025-09-24 21:40:47,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:47,920 INFO Connection check task start + +2025-09-24 21:40:47,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:47,920 INFO Out dated connection ,size=0 + +2025-09-24 21:40:47,920 INFO Connection check task end + +2025-09-24 21:40:50,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:50,921 INFO Connection check task start + +2025-09-24 21:40:50,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:50,922 INFO Out dated connection ,size=0 + +2025-09-24 21:40:50,923 INFO Connection check task end + +2025-09-24 21:40:53,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:53,923 INFO Connection check task start + +2025-09-24 21:40:53,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:53,923 INFO Out dated connection ,size=0 + +2025-09-24 21:40:53,923 INFO Connection check task end + +2025-09-24 21:40:56,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:56,924 INFO Connection check task start + +2025-09-24 21:40:56,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:56,924 INFO Out dated connection ,size=0 + +2025-09-24 21:40:56,924 INFO Connection check task end + +2025-09-24 21:40:59,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:40:59,924 INFO Connection check task start + +2025-09-24 21:40:59,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:40:59,925 INFO Out dated connection ,size=0 + +2025-09-24 21:40:59,925 INFO Connection check task end + +2025-09-24 21:41:02,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:02,925 INFO Connection check task start + +2025-09-24 21:41:02,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:02,925 INFO Out dated connection ,size=0 + +2025-09-24 21:41:02,925 INFO Connection check task end + +2025-09-24 21:41:05,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:05,927 INFO Connection check task start + +2025-09-24 21:41:05,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:05,927 INFO Out dated connection ,size=0 + +2025-09-24 21:41:05,927 INFO Connection check task end + +2025-09-24 21:41:08,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:08,927 INFO Connection check task start + +2025-09-24 21:41:08,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:08,927 INFO Out dated connection ,size=0 + +2025-09-24 21:41:08,928 INFO Connection check task end + +2025-09-24 21:41:11,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:11,928 INFO Connection check task start + +2025-09-24 21:41:11,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:11,929 INFO Out dated connection ,size=0 + +2025-09-24 21:41:11,929 INFO Connection check task end + +2025-09-24 21:41:14,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:14,929 INFO Connection check task start + +2025-09-24 21:41:14,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:14,929 INFO Out dated connection ,size=0 + +2025-09-24 21:41:14,929 INFO Connection check task end + +2025-09-24 21:41:17,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:17,930 INFO Connection check task start + +2025-09-24 21:41:17,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:17,930 INFO Out dated connection ,size=0 + +2025-09-24 21:41:17,930 INFO Connection check task end + +2025-09-24 21:41:20,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:20,931 INFO Connection check task start + +2025-09-24 21:41:20,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:20,931 INFO Out dated connection ,size=0 + +2025-09-24 21:41:20,931 INFO Connection check task end + +2025-09-24 21:41:23,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:23,933 INFO Connection check task start + +2025-09-24 21:41:23,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:23,933 INFO Out dated connection ,size=0 + +2025-09-24 21:41:23,933 INFO Connection check task end + +2025-09-24 21:41:26,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:26,934 INFO Connection check task start + +2025-09-24 21:41:26,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:26,935 INFO Out dated connection ,size=0 + +2025-09-24 21:41:26,935 INFO Connection check task end + +2025-09-24 21:41:29,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:29,936 INFO Connection check task start + +2025-09-24 21:41:29,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:29,936 INFO Out dated connection ,size=0 + +2025-09-24 21:41:29,936 INFO Connection check task end + +2025-09-24 21:41:32,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:32,936 INFO Connection check task start + +2025-09-24 21:41:32,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:32,937 INFO Out dated connection ,size=0 + +2025-09-24 21:41:32,937 INFO Connection check task end + +2025-09-24 21:41:35,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:35,937 INFO Connection check task start + +2025-09-24 21:41:35,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:35,938 INFO Out dated connection ,size=0 + +2025-09-24 21:41:35,938 INFO Connection check task end + +2025-09-24 21:41:38,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:38,938 INFO Connection check task start + +2025-09-24 21:41:38,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:38,938 INFO Out dated connection ,size=0 + +2025-09-24 21:41:38,938 INFO Connection check task end + +2025-09-24 21:41:41,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:41,938 INFO Connection check task start + +2025-09-24 21:41:41,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:41,939 INFO Out dated connection ,size=0 + +2025-09-24 21:41:41,939 INFO Connection check task end + +2025-09-24 21:41:44,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:44,941 INFO Connection check task start + +2025-09-24 21:41:44,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:44,941 INFO Out dated connection ,size=0 + +2025-09-24 21:41:44,941 INFO Connection check task end + +2025-09-24 21:41:47,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:47,941 INFO Connection check task start + +2025-09-24 21:41:47,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:47,941 INFO Out dated connection ,size=0 + +2025-09-24 21:41:47,941 INFO Connection check task end + +2025-09-24 21:41:50,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:50,942 INFO Connection check task start + +2025-09-24 21:41:50,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:50,942 INFO Out dated connection ,size=0 + +2025-09-24 21:41:50,942 INFO Connection check task end + +2025-09-24 21:41:53,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:53,942 INFO Connection check task start + +2025-09-24 21:41:53,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:53,942 INFO Out dated connection ,size=0 + +2025-09-24 21:41:53,942 INFO Connection check task end + +2025-09-24 21:41:56,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:56,942 INFO Connection check task start + +2025-09-24 21:41:56,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:56,943 INFO Out dated connection ,size=0 + +2025-09-24 21:41:56,943 INFO Connection check task end + +2025-09-24 21:41:59,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:41:59,945 INFO Connection check task start + +2025-09-24 21:41:59,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:41:59,945 INFO Out dated connection ,size=0 + +2025-09-24 21:41:59,945 INFO Connection check task end + +2025-09-24 21:42:02,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:02,946 INFO Connection check task start + +2025-09-24 21:42:02,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:02,946 INFO Out dated connection ,size=0 + +2025-09-24 21:42:02,946 INFO Connection check task end + +2025-09-24 21:42:05,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:05,948 INFO Connection check task start + +2025-09-24 21:42:05,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:05,949 INFO Out dated connection ,size=0 + +2025-09-24 21:42:05,949 INFO Connection check task end + +2025-09-24 21:42:08,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:08,951 INFO Connection check task start + +2025-09-24 21:42:08,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:08,951 INFO Out dated connection ,size=0 + +2025-09-24 21:42:08,951 INFO Connection check task end + +2025-09-24 21:42:11,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:11,952 INFO Connection check task start + +2025-09-24 21:42:11,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:11,953 INFO Out dated connection ,size=0 + +2025-09-24 21:42:11,953 INFO Connection check task end + +2025-09-24 21:42:14,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:14,954 INFO Connection check task start + +2025-09-24 21:42:14,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:14,954 INFO Out dated connection ,size=0 + +2025-09-24 21:42:14,954 INFO Connection check task end + +2025-09-24 21:42:17,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:17,955 INFO Connection check task start + +2025-09-24 21:42:17,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:17,956 INFO Out dated connection ,size=0 + +2025-09-24 21:42:17,956 INFO Connection check task end + +2025-09-24 21:42:20,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:20,956 INFO Connection check task start + +2025-09-24 21:42:20,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:20,956 INFO Out dated connection ,size=0 + +2025-09-24 21:42:20,956 INFO Connection check task end + +2025-09-24 21:42:23,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:23,956 INFO Connection check task start + +2025-09-24 21:42:23,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:23,957 INFO Out dated connection ,size=0 + +2025-09-24 21:42:23,957 INFO Connection check task end + +2025-09-24 21:42:26,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:26,957 INFO Connection check task start + +2025-09-24 21:42:26,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:26,957 INFO Out dated connection ,size=0 + +2025-09-24 21:42:26,957 INFO Connection check task end + +2025-09-24 21:42:29,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:29,959 INFO Connection check task start + +2025-09-24 21:42:29,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:29,959 INFO Out dated connection ,size=0 + +2025-09-24 21:42:29,959 INFO Connection check task end + +2025-09-24 21:42:32,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:32,961 INFO Connection check task start + +2025-09-24 21:42:32,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:32,962 INFO Out dated connection ,size=0 + +2025-09-24 21:42:32,962 INFO Connection check task end + +2025-09-24 21:42:35,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:35,962 INFO Connection check task start + +2025-09-24 21:42:35,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:35,962 INFO Out dated connection ,size=0 + +2025-09-24 21:42:35,962 INFO Connection check task end + +2025-09-24 21:42:38,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:38,962 INFO Connection check task start + +2025-09-24 21:42:38,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:38,963 INFO Out dated connection ,size=0 + +2025-09-24 21:42:38,963 INFO Connection check task end + +2025-09-24 21:42:41,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:41,964 INFO Connection check task start + +2025-09-24 21:42:41,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:41,965 INFO Out dated connection ,size=0 + +2025-09-24 21:42:41,965 INFO Connection check task end + +2025-09-24 21:42:44,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:44,967 INFO Connection check task start + +2025-09-24 21:42:44,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:44,967 INFO Out dated connection ,size=0 + +2025-09-24 21:42:44,967 INFO Connection check task end + +2025-09-24 21:42:47,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:47,967 INFO Connection check task start + +2025-09-24 21:42:47,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:47,968 INFO Out dated connection ,size=0 + +2025-09-24 21:42:47,968 INFO Connection check task end + +2025-09-24 21:42:50,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:50,968 INFO Connection check task start + +2025-09-24 21:42:50,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:50,968 INFO Out dated connection ,size=0 + +2025-09-24 21:42:50,968 INFO Connection check task end + +2025-09-24 21:42:53,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:53,968 INFO Connection check task start + +2025-09-24 21:42:53,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:53,969 INFO Out dated connection ,size=0 + +2025-09-24 21:42:53,969 INFO Connection check task end + +2025-09-24 21:42:56,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:56,969 INFO Connection check task start + +2025-09-24 21:42:56,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:56,969 INFO Out dated connection ,size=0 + +2025-09-24 21:42:56,969 INFO Connection check task end + +2025-09-24 21:42:59,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:42:59,969 INFO Connection check task start + +2025-09-24 21:42:59,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:42:59,970 INFO Out dated connection ,size=0 + +2025-09-24 21:42:59,970 INFO Connection check task end + +2025-09-24 21:43:02,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:02,970 INFO Connection check task start + +2025-09-24 21:43:02,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:02,970 INFO Out dated connection ,size=0 + +2025-09-24 21:43:02,970 INFO Connection check task end + +2025-09-24 21:43:05,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:05,972 INFO Connection check task start + +2025-09-24 21:43:05,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:05,972 INFO Out dated connection ,size=0 + +2025-09-24 21:43:05,972 INFO Connection check task end + +2025-09-24 21:43:08,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:08,973 INFO Connection check task start + +2025-09-24 21:43:08,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:08,973 INFO Out dated connection ,size=0 + +2025-09-24 21:43:08,973 INFO Connection check task end + +2025-09-24 21:43:11,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:11,974 INFO Connection check task start + +2025-09-24 21:43:11,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:11,974 INFO Out dated connection ,size=0 + +2025-09-24 21:43:11,974 INFO Connection check task end + +2025-09-24 21:43:14,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:14,974 INFO Connection check task start + +2025-09-24 21:43:14,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:14,975 INFO Out dated connection ,size=0 + +2025-09-24 21:43:14,975 INFO Connection check task end + +2025-09-24 21:43:17,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:17,975 INFO Connection check task start + +2025-09-24 21:43:17,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:17,975 INFO Out dated connection ,size=0 + +2025-09-24 21:43:17,975 INFO Connection check task end + +2025-09-24 21:43:20,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:20,976 INFO Connection check task start + +2025-09-24 21:43:20,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:20,976 INFO Out dated connection ,size=0 + +2025-09-24 21:43:20,976 INFO Connection check task end + +2025-09-24 21:43:23,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:23,977 INFO Connection check task start + +2025-09-24 21:43:23,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:23,977 INFO Out dated connection ,size=0 + +2025-09-24 21:43:23,978 INFO Connection check task end + +2025-09-24 21:43:26,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:26,978 INFO Connection check task start + +2025-09-24 21:43:26,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:26,978 INFO Out dated connection ,size=0 + +2025-09-24 21:43:26,978 INFO Connection check task end + +2025-09-24 21:43:29,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:29,978 INFO Connection check task start + +2025-09-24 21:43:29,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:29,979 INFO Out dated connection ,size=0 + +2025-09-24 21:43:29,979 INFO Connection check task end + +2025-09-24 21:43:32,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:32,980 INFO Connection check task start + +2025-09-24 21:43:32,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:32,980 INFO Out dated connection ,size=0 + +2025-09-24 21:43:32,980 INFO Connection check task end + +2025-09-24 21:43:35,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:35,980 INFO Connection check task start + +2025-09-24 21:43:35,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:35,980 INFO Out dated connection ,size=0 + +2025-09-24 21:43:35,980 INFO Connection check task end + +2025-09-24 21:43:38,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:38,981 INFO Connection check task start + +2025-09-24 21:43:38,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:38,981 INFO Out dated connection ,size=0 + +2025-09-24 21:43:38,981 INFO Connection check task end + +2025-09-24 21:43:41,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:41,983 INFO Connection check task start + +2025-09-24 21:43:41,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:41,983 INFO Out dated connection ,size=0 + +2025-09-24 21:43:41,983 INFO Connection check task end + +2025-09-24 21:43:44,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:44,983 INFO Connection check task start + +2025-09-24 21:43:44,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:44,984 INFO Out dated connection ,size=0 + +2025-09-24 21:43:44,984 INFO Connection check task end + +2025-09-24 21:43:47,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:47,984 INFO Connection check task start + +2025-09-24 21:43:47,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:47,984 INFO Out dated connection ,size=0 + +2025-09-24 21:43:47,984 INFO Connection check task end + +2025-09-24 21:43:50,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:50,986 INFO Connection check task start + +2025-09-24 21:43:50,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:50,986 INFO Out dated connection ,size=0 + +2025-09-24 21:43:50,986 INFO Connection check task end + +2025-09-24 21:43:53,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:53,987 INFO Connection check task start + +2025-09-24 21:43:53,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:53,987 INFO Out dated connection ,size=0 + +2025-09-24 21:43:53,987 INFO Connection check task end + +2025-09-24 21:43:56,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:56,989 INFO Connection check task start + +2025-09-24 21:43:56,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:56,989 INFO Out dated connection ,size=0 + +2025-09-24 21:43:56,989 INFO Connection check task end + +2025-09-24 21:43:59,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:43:59,989 INFO Connection check task start + +2025-09-24 21:43:59,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:43:59,989 INFO Out dated connection ,size=0 + +2025-09-24 21:43:59,990 INFO Connection check task end + +2025-09-24 21:44:02,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:02,991 INFO Connection check task start + +2025-09-24 21:44:02,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:02,991 INFO Out dated connection ,size=0 + +2025-09-24 21:44:02,991 INFO Connection check task end + +2025-09-24 21:44:05,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:05,991 INFO Connection check task start + +2025-09-24 21:44:05,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:05,991 INFO Out dated connection ,size=0 + +2025-09-24 21:44:05,991 INFO Connection check task end + +2025-09-24 21:44:08,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:08,992 INFO Connection check task start + +2025-09-24 21:44:08,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:08,992 INFO Out dated connection ,size=0 + +2025-09-24 21:44:08,992 INFO Connection check task end + +2025-09-24 21:44:11,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:11,993 INFO Connection check task start + +2025-09-24 21:44:11,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:11,993 INFO Out dated connection ,size=0 + +2025-09-24 21:44:11,993 INFO Connection check task end + +2025-09-24 21:44:14,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:14,995 INFO Connection check task start + +2025-09-24 21:44:14,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:14,995 INFO Out dated connection ,size=0 + +2025-09-24 21:44:14,995 INFO Connection check task end + +2025-09-24 21:44:17,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:17,996 INFO Connection check task start + +2025-09-24 21:44:17,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:17,996 INFO Out dated connection ,size=0 + +2025-09-24 21:44:17,996 INFO Connection check task end + +2025-09-24 21:44:20,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:20,997 INFO Connection check task start + +2025-09-24 21:44:20,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:20,997 INFO Out dated connection ,size=0 + +2025-09-24 21:44:20,997 INFO Connection check task end + +2025-09-24 21:44:23,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:23,998 INFO Connection check task start + +2025-09-24 21:44:23,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:23,998 INFO Out dated connection ,size=0 + +2025-09-24 21:44:23,998 INFO Connection check task end + +2025-09-24 21:44:26,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:26,999 INFO Connection check task start + +2025-09-24 21:44:26,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:26,999 INFO Out dated connection ,size=0 + +2025-09-24 21:44:26,999 INFO Connection check task end + +2025-09-24 21:44:29,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:30,000 INFO Connection check task start + +2025-09-24 21:44:30,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:30,000 INFO Out dated connection ,size=0 + +2025-09-24 21:44:30,000 INFO Connection check task end + +2025-09-24 21:44:32,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:33,001 INFO Connection check task start + +2025-09-24 21:44:33,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:33,001 INFO Out dated connection ,size=0 + +2025-09-24 21:44:33,001 INFO Connection check task end + +2025-09-24 21:44:35,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:36,003 INFO Connection check task start + +2025-09-24 21:44:36,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:36,003 INFO Out dated connection ,size=0 + +2025-09-24 21:44:36,003 INFO Connection check task end + +2025-09-24 21:44:38,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:39,005 INFO Connection check task start + +2025-09-24 21:44:39,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:39,005 INFO Out dated connection ,size=0 + +2025-09-24 21:44:39,005 INFO Connection check task end + +2025-09-24 21:44:41,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:42,007 INFO Connection check task start + +2025-09-24 21:44:42,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:42,007 INFO Out dated connection ,size=0 + +2025-09-24 21:44:42,007 INFO Connection check task end + +2025-09-24 21:44:44,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:45,007 INFO Connection check task start + +2025-09-24 21:44:45,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:45,008 INFO Out dated connection ,size=0 + +2025-09-24 21:44:45,008 INFO Connection check task end + +2025-09-24 21:44:47,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:48,008 INFO Connection check task start + +2025-09-24 21:44:48,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:48,008 INFO Out dated connection ,size=0 + +2025-09-24 21:44:48,008 INFO Connection check task end + +2025-09-24 21:44:50,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:51,009 INFO Connection check task start + +2025-09-24 21:44:51,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:51,009 INFO Out dated connection ,size=0 + +2025-09-24 21:44:51,009 INFO Connection check task end + +2025-09-24 21:44:53,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:54,009 INFO Connection check task start + +2025-09-24 21:44:54,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:54,009 INFO Out dated connection ,size=0 + +2025-09-24 21:44:54,009 INFO Connection check task end + +2025-09-24 21:44:56,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:44:57,010 INFO Connection check task start + +2025-09-24 21:44:57,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:44:57,010 INFO Out dated connection ,size=0 + +2025-09-24 21:44:57,010 INFO Connection check task end + +2025-09-24 21:44:59,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:00,012 INFO Connection check task start + +2025-09-24 21:45:00,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:00,012 INFO Out dated connection ,size=0 + +2025-09-24 21:45:00,012 INFO Connection check task end + +2025-09-24 21:45:02,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:03,013 INFO Connection check task start + +2025-09-24 21:45:03,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:03,013 INFO Out dated connection ,size=0 + +2025-09-24 21:45:03,013 INFO Connection check task end + +2025-09-24 21:45:05,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:06,013 INFO Connection check task start + +2025-09-24 21:45:06,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:06,013 INFO Out dated connection ,size=0 + +2025-09-24 21:45:06,013 INFO Connection check task end + +2025-09-24 21:45:08,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:09,015 INFO Connection check task start + +2025-09-24 21:45:09,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:09,015 INFO Out dated connection ,size=0 + +2025-09-24 21:45:09,015 INFO Connection check task end + +2025-09-24 21:45:11,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:12,018 INFO Connection check task start + +2025-09-24 21:45:12,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:12,018 INFO Out dated connection ,size=0 + +2025-09-24 21:45:12,018 INFO Connection check task end + +2025-09-24 21:45:14,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:15,019 INFO Connection check task start + +2025-09-24 21:45:15,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:15,019 INFO Out dated connection ,size=0 + +2025-09-24 21:45:15,019 INFO Connection check task end + +2025-09-24 21:45:17,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:18,020 INFO Connection check task start + +2025-09-24 21:45:18,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:18,020 INFO Out dated connection ,size=0 + +2025-09-24 21:45:18,020 INFO Connection check task end + +2025-09-24 21:45:20,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:21,021 INFO Connection check task start + +2025-09-24 21:45:21,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:21,021 INFO Out dated connection ,size=0 + +2025-09-24 21:45:21,021 INFO Connection check task end + +2025-09-24 21:45:23,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:24,022 INFO Connection check task start + +2025-09-24 21:45:24,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:24,023 INFO Out dated connection ,size=0 + +2025-09-24 21:45:24,023 INFO Connection check task end + +2025-09-24 21:45:26,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:27,025 INFO Connection check task start + +2025-09-24 21:45:27,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:27,025 INFO Out dated connection ,size=0 + +2025-09-24 21:45:27,025 INFO Connection check task end + +2025-09-24 21:45:29,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:30,025 INFO Connection check task start + +2025-09-24 21:45:30,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:30,025 INFO Out dated connection ,size=0 + +2025-09-24 21:45:30,025 INFO Connection check task end + +2025-09-24 21:45:32,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:33,026 INFO Connection check task start + +2025-09-24 21:45:33,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:33,026 INFO Out dated connection ,size=0 + +2025-09-24 21:45:33,026 INFO Connection check task end + +2025-09-24 21:45:35,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:36,027 INFO Connection check task start + +2025-09-24 21:45:36,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:36,027 INFO Out dated connection ,size=0 + +2025-09-24 21:45:36,027 INFO Connection check task end + +2025-09-24 21:45:38,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:39,029 INFO Connection check task start + +2025-09-24 21:45:39,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:39,029 INFO Out dated connection ,size=0 + +2025-09-24 21:45:39,029 INFO Connection check task end + +2025-09-24 21:45:41,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:42,031 INFO Connection check task start + +2025-09-24 21:45:42,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:42,032 INFO Out dated connection ,size=0 + +2025-09-24 21:45:42,032 INFO Connection check task end + +2025-09-24 21:45:44,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:45,032 INFO Connection check task start + +2025-09-24 21:45:45,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:45,033 INFO Out dated connection ,size=0 + +2025-09-24 21:45:45,033 INFO Connection check task end + +2025-09-24 21:45:47,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:48,035 INFO Connection check task start + +2025-09-24 21:45:48,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:48,035 INFO Out dated connection ,size=0 + +2025-09-24 21:45:48,035 INFO Connection check task end + +2025-09-24 21:45:50,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:51,037 INFO Connection check task start + +2025-09-24 21:45:51,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:51,037 INFO Out dated connection ,size=0 + +2025-09-24 21:45:51,037 INFO Connection check task end + +2025-09-24 21:45:53,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:54,037 INFO Connection check task start + +2025-09-24 21:45:54,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:54,038 INFO Out dated connection ,size=0 + +2025-09-24 21:45:54,038 INFO Connection check task end + +2025-09-24 21:45:56,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:45:57,038 INFO Connection check task start + +2025-09-24 21:45:57,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:45:57,038 INFO Out dated connection ,size=0 + +2025-09-24 21:45:57,038 INFO Connection check task end + +2025-09-24 21:45:59,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:00,040 INFO Connection check task start + +2025-09-24 21:46:00,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:00,040 INFO Out dated connection ,size=0 + +2025-09-24 21:46:00,040 INFO Connection check task end + +2025-09-24 21:46:02,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:03,041 INFO Connection check task start + +2025-09-24 21:46:03,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:03,041 INFO Out dated connection ,size=0 + +2025-09-24 21:46:03,041 INFO Connection check task end + +2025-09-24 21:46:05,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:06,041 INFO Connection check task start + +2025-09-24 21:46:06,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:06,042 INFO Out dated connection ,size=0 + +2025-09-24 21:46:06,042 INFO Connection check task end + +2025-09-24 21:46:08,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:09,042 INFO Connection check task start + +2025-09-24 21:46:09,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:09,042 INFO Out dated connection ,size=0 + +2025-09-24 21:46:09,042 INFO Connection check task end + +2025-09-24 21:46:11,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:12,043 INFO Connection check task start + +2025-09-24 21:46:12,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:12,043 INFO Out dated connection ,size=0 + +2025-09-24 21:46:12,043 INFO Connection check task end + +2025-09-24 21:46:14,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:15,044 INFO Connection check task start + +2025-09-24 21:46:15,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:15,044 INFO Out dated connection ,size=0 + +2025-09-24 21:46:15,044 INFO Connection check task end + +2025-09-24 21:46:17,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:18,044 INFO Connection check task start + +2025-09-24 21:46:18,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:18,044 INFO Out dated connection ,size=0 + +2025-09-24 21:46:18,044 INFO Connection check task end + +2025-09-24 21:46:20,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:21,046 INFO Connection check task start + +2025-09-24 21:46:21,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:21,047 INFO Out dated connection ,size=0 + +2025-09-24 21:46:21,047 INFO Connection check task end + +2025-09-24 21:46:23,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:24,048 INFO Connection check task start + +2025-09-24 21:46:24,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:24,048 INFO Out dated connection ,size=0 + +2025-09-24 21:46:24,049 INFO Connection check task end + +2025-09-24 21:46:26,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:27,050 INFO Connection check task start + +2025-09-24 21:46:27,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:27,051 INFO Out dated connection ,size=0 + +2025-09-24 21:46:27,051 INFO Connection check task end + +2025-09-24 21:46:29,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:30,052 INFO Connection check task start + +2025-09-24 21:46:30,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:30,052 INFO Out dated connection ,size=0 + +2025-09-24 21:46:30,053 INFO Connection check task end + +2025-09-24 21:46:32,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:33,054 INFO Connection check task start + +2025-09-24 21:46:33,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:33,054 INFO Out dated connection ,size=0 + +2025-09-24 21:46:33,054 INFO Connection check task end + +2025-09-24 21:46:35,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:36,056 INFO Connection check task start + +2025-09-24 21:46:36,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:36,056 INFO Out dated connection ,size=0 + +2025-09-24 21:46:36,056 INFO Connection check task end + +2025-09-24 21:46:38,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:39,058 INFO Connection check task start + +2025-09-24 21:46:39,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:39,058 INFO Out dated connection ,size=0 + +2025-09-24 21:46:39,058 INFO Connection check task end + +2025-09-24 21:46:41,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:42,058 INFO Connection check task start + +2025-09-24 21:46:42,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:42,059 INFO Out dated connection ,size=0 + +2025-09-24 21:46:42,059 INFO Connection check task end + +2025-09-24 21:46:44,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:45,059 INFO Connection check task start + +2025-09-24 21:46:45,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:45,059 INFO Out dated connection ,size=0 + +2025-09-24 21:46:45,059 INFO Connection check task end + +2025-09-24 21:46:47,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:48,059 INFO Connection check task start + +2025-09-24 21:46:48,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:48,059 INFO Out dated connection ,size=0 + +2025-09-24 21:46:48,059 INFO Connection check task end + +2025-09-24 21:46:50,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:51,061 INFO Connection check task start + +2025-09-24 21:46:51,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:51,061 INFO Out dated connection ,size=0 + +2025-09-24 21:46:51,061 INFO Connection check task end + +2025-09-24 21:46:53,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:54,063 INFO Connection check task start + +2025-09-24 21:46:54,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:54,064 INFO Out dated connection ,size=0 + +2025-09-24 21:46:54,064 INFO Connection check task end + +2025-09-24 21:46:56,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:46:57,065 INFO Connection check task start + +2025-09-24 21:46:57,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:46:57,066 INFO Out dated connection ,size=0 + +2025-09-24 21:46:57,066 INFO Connection check task end + +2025-09-24 21:46:59,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:00,066 INFO Connection check task start + +2025-09-24 21:47:00,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:00,066 INFO Out dated connection ,size=0 + +2025-09-24 21:47:00,066 INFO Connection check task end + +2025-09-24 21:47:02,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:03,066 INFO Connection check task start + +2025-09-24 21:47:03,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:03,066 INFO Out dated connection ,size=0 + +2025-09-24 21:47:03,066 INFO Connection check task end + +2025-09-24 21:47:05,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:06,068 INFO Connection check task start + +2025-09-24 21:47:06,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:06,068 INFO Out dated connection ,size=0 + +2025-09-24 21:47:06,068 INFO Connection check task end + +2025-09-24 21:47:08,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:09,068 INFO Connection check task start + +2025-09-24 21:47:09,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:09,068 INFO Out dated connection ,size=0 + +2025-09-24 21:47:09,069 INFO Connection check task end + +2025-09-24 21:47:11,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:12,071 INFO Connection check task start + +2025-09-24 21:47:12,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:12,071 INFO Out dated connection ,size=0 + +2025-09-24 21:47:12,071 INFO Connection check task end + +2025-09-24 21:47:14,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:15,073 INFO Connection check task start + +2025-09-24 21:47:15,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:15,073 INFO Out dated connection ,size=0 + +2025-09-24 21:47:15,073 INFO Connection check task end + +2025-09-24 21:47:17,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:18,074 INFO Connection check task start + +2025-09-24 21:47:18,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:18,074 INFO Out dated connection ,size=0 + +2025-09-24 21:47:18,074 INFO Connection check task end + +2025-09-24 21:47:20,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:21,074 INFO Connection check task start + +2025-09-24 21:47:21,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:21,075 INFO Out dated connection ,size=0 + +2025-09-24 21:47:21,075 INFO Connection check task end + +2025-09-24 21:47:23,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:24,075 INFO Connection check task start + +2025-09-24 21:47:24,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:24,075 INFO Out dated connection ,size=0 + +2025-09-24 21:47:24,075 INFO Connection check task end + +2025-09-24 21:47:26,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:27,077 INFO Connection check task start + +2025-09-24 21:47:27,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:27,077 INFO Out dated connection ,size=0 + +2025-09-24 21:47:27,078 INFO Connection check task end + +2025-09-24 21:47:29,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:30,078 INFO Connection check task start + +2025-09-24 21:47:30,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:30,078 INFO Out dated connection ,size=0 + +2025-09-24 21:47:30,078 INFO Connection check task end + +2025-09-24 21:47:32,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:33,078 INFO Connection check task start + +2025-09-24 21:47:33,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:33,078 INFO Out dated connection ,size=0 + +2025-09-24 21:47:33,079 INFO Connection check task end + +2025-09-24 21:47:35,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:36,080 INFO Connection check task start + +2025-09-24 21:47:36,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:36,081 INFO Out dated connection ,size=0 + +2025-09-24 21:47:36,081 INFO Connection check task end + +2025-09-24 21:47:38,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:39,081 INFO Connection check task start + +2025-09-24 21:47:39,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:39,081 INFO Out dated connection ,size=0 + +2025-09-24 21:47:39,081 INFO Connection check task end + +2025-09-24 21:47:41,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:42,083 INFO Connection check task start + +2025-09-24 21:47:42,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:42,083 INFO Out dated connection ,size=0 + +2025-09-24 21:47:42,083 INFO Connection check task end + +2025-09-24 21:47:44,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:45,083 INFO Connection check task start + +2025-09-24 21:47:45,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:45,084 INFO Out dated connection ,size=0 + +2025-09-24 21:47:45,084 INFO Connection check task end + +2025-09-24 21:47:47,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:48,086 INFO Connection check task start + +2025-09-24 21:47:48,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:48,086 INFO Out dated connection ,size=0 + +2025-09-24 21:47:48,086 INFO Connection check task end + +2025-09-24 21:47:50,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:51,088 INFO Connection check task start + +2025-09-24 21:47:51,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:51,088 INFO Out dated connection ,size=0 + +2025-09-24 21:47:51,088 INFO Connection check task end + +2025-09-24 21:47:53,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:54,090 INFO Connection check task start + +2025-09-24 21:47:54,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:54,090 INFO Out dated connection ,size=0 + +2025-09-24 21:47:54,090 INFO Connection check task end + +2025-09-24 21:47:56,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:47:57,090 INFO Connection check task start + +2025-09-24 21:47:57,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:47:57,090 INFO Out dated connection ,size=0 + +2025-09-24 21:47:57,090 INFO Connection check task end + +2025-09-24 21:47:59,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:00,093 INFO Connection check task start + +2025-09-24 21:48:00,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:00,093 INFO Out dated connection ,size=0 + +2025-09-24 21:48:00,093 INFO Connection check task end + +2025-09-24 21:48:02,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:03,093 INFO Connection check task start + +2025-09-24 21:48:03,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:03,093 INFO Out dated connection ,size=0 + +2025-09-24 21:48:03,093 INFO Connection check task end + +2025-09-24 21:48:05,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:06,094 INFO Connection check task start + +2025-09-24 21:48:06,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:06,094 INFO Out dated connection ,size=0 + +2025-09-24 21:48:06,094 INFO Connection check task end + +2025-09-24 21:48:08,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:09,096 INFO Connection check task start + +2025-09-24 21:48:09,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:09,096 INFO Out dated connection ,size=0 + +2025-09-24 21:48:09,096 INFO Connection check task end + +2025-09-24 21:48:11,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:12,096 INFO Connection check task start + +2025-09-24 21:48:12,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:12,097 INFO Out dated connection ,size=0 + +2025-09-24 21:48:12,097 INFO Connection check task end + +2025-09-24 21:48:14,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:15,097 INFO Connection check task start + +2025-09-24 21:48:15,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:15,097 INFO Out dated connection ,size=0 + +2025-09-24 21:48:15,097 INFO Connection check task end + +2025-09-24 21:48:17,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:18,098 INFO Connection check task start + +2025-09-24 21:48:18,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:18,098 INFO Out dated connection ,size=0 + +2025-09-24 21:48:18,098 INFO Connection check task end + +2025-09-24 21:48:20,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:21,099 INFO Connection check task start + +2025-09-24 21:48:21,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:21,099 INFO Out dated connection ,size=0 + +2025-09-24 21:48:21,099 INFO Connection check task end + +2025-09-24 21:48:23,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:24,099 INFO Connection check task start + +2025-09-24 21:48:24,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:24,099 INFO Out dated connection ,size=0 + +2025-09-24 21:48:24,100 INFO Connection check task end + +2025-09-24 21:48:26,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:27,102 INFO Connection check task start + +2025-09-24 21:48:27,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:27,102 INFO Out dated connection ,size=0 + +2025-09-24 21:48:27,102 INFO Connection check task end + +2025-09-24 21:48:29,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:30,103 INFO Connection check task start + +2025-09-24 21:48:30,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:30,103 INFO Out dated connection ,size=0 + +2025-09-24 21:48:30,103 INFO Connection check task end + +2025-09-24 21:48:32,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:33,105 INFO Connection check task start + +2025-09-24 21:48:33,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:33,105 INFO Out dated connection ,size=0 + +2025-09-24 21:48:33,105 INFO Connection check task end + +2025-09-24 21:48:35,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:36,107 INFO Connection check task start + +2025-09-24 21:48:36,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:36,108 INFO Out dated connection ,size=0 + +2025-09-24 21:48:36,108 INFO Connection check task end + +2025-09-24 21:48:38,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:39,109 INFO Connection check task start + +2025-09-24 21:48:39,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:39,109 INFO Out dated connection ,size=0 + +2025-09-24 21:48:39,109 INFO Connection check task end + +2025-09-24 21:48:41,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:42,109 INFO Connection check task start + +2025-09-24 21:48:42,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:42,110 INFO Out dated connection ,size=0 + +2025-09-24 21:48:42,110 INFO Connection check task end + +2025-09-24 21:48:44,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:45,110 INFO Connection check task start + +2025-09-24 21:48:45,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:45,110 INFO Out dated connection ,size=0 + +2025-09-24 21:48:45,110 INFO Connection check task end + +2025-09-24 21:48:47,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:48,111 INFO Connection check task start + +2025-09-24 21:48:48,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:48,111 INFO Out dated connection ,size=0 + +2025-09-24 21:48:48,111 INFO Connection check task end + +2025-09-24 21:48:50,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:51,112 INFO Connection check task start + +2025-09-24 21:48:51,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:51,112 INFO Out dated connection ,size=0 + +2025-09-24 21:48:51,113 INFO Connection check task end + +2025-09-24 21:48:53,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:54,113 INFO Connection check task start + +2025-09-24 21:48:54,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:54,113 INFO Out dated connection ,size=0 + +2025-09-24 21:48:54,113 INFO Connection check task end + +2025-09-24 21:48:56,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:48:57,113 INFO Connection check task start + +2025-09-24 21:48:57,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:48:57,113 INFO Out dated connection ,size=0 + +2025-09-24 21:48:57,114 INFO Connection check task end + +2025-09-24 21:48:59,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:00,114 INFO Connection check task start + +2025-09-24 21:49:00,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:00,114 INFO Out dated connection ,size=0 + +2025-09-24 21:49:00,114 INFO Connection check task end + +2025-09-24 21:49:02,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:03,116 INFO Connection check task start + +2025-09-24 21:49:03,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:03,116 INFO Out dated connection ,size=0 + +2025-09-24 21:49:03,116 INFO Connection check task end + +2025-09-24 21:49:05,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:06,117 INFO Connection check task start + +2025-09-24 21:49:06,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:06,117 INFO Out dated connection ,size=0 + +2025-09-24 21:49:06,117 INFO Connection check task end + +2025-09-24 21:49:08,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:09,118 INFO Connection check task start + +2025-09-24 21:49:09,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:09,118 INFO Out dated connection ,size=0 + +2025-09-24 21:49:09,118 INFO Connection check task end + +2025-09-24 21:49:11,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:12,120 INFO Connection check task start + +2025-09-24 21:49:12,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:12,120 INFO Out dated connection ,size=0 + +2025-09-24 21:49:12,121 INFO Connection check task end + +2025-09-24 21:49:14,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:15,121 INFO Connection check task start + +2025-09-24 21:49:15,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:15,121 INFO Out dated connection ,size=0 + +2025-09-24 21:49:15,121 INFO Connection check task end + +2025-09-24 21:49:17,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:18,123 INFO Connection check task start + +2025-09-24 21:49:18,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:18,123 INFO Out dated connection ,size=0 + +2025-09-24 21:49:18,123 INFO Connection check task end + +2025-09-24 21:49:20,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:21,123 INFO Connection check task start + +2025-09-24 21:49:21,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:21,124 INFO Out dated connection ,size=0 + +2025-09-24 21:49:21,124 INFO Connection check task end + +2025-09-24 21:49:23,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:24,125 INFO Connection check task start + +2025-09-24 21:49:24,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:24,125 INFO Out dated connection ,size=0 + +2025-09-24 21:49:24,125 INFO Connection check task end + +2025-09-24 21:49:26,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:27,125 INFO Connection check task start + +2025-09-24 21:49:27,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:27,125 INFO Out dated connection ,size=0 + +2025-09-24 21:49:27,125 INFO Connection check task end + +2025-09-24 21:49:29,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:30,127 INFO Connection check task start + +2025-09-24 21:49:30,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:30,127 INFO Out dated connection ,size=0 + +2025-09-24 21:49:30,127 INFO Connection check task end + +2025-09-24 21:49:32,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:33,129 INFO Connection check task start + +2025-09-24 21:49:33,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:33,130 INFO Out dated connection ,size=0 + +2025-09-24 21:49:33,130 INFO Connection check task end + +2025-09-24 21:49:35,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:36,130 INFO Connection check task start + +2025-09-24 21:49:36,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:36,130 INFO Out dated connection ,size=0 + +2025-09-24 21:49:36,130 INFO Connection check task end + +2025-09-24 21:49:38,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:39,130 INFO Connection check task start + +2025-09-24 21:49:39,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:39,131 INFO Out dated connection ,size=0 + +2025-09-24 21:49:39,131 INFO Connection check task end + +2025-09-24 21:49:41,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:42,132 INFO Connection check task start + +2025-09-24 21:49:42,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:42,132 INFO Out dated connection ,size=0 + +2025-09-24 21:49:42,132 INFO Connection check task end + +2025-09-24 21:49:44,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:45,132 INFO Connection check task start + +2025-09-24 21:49:45,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:45,132 INFO Out dated connection ,size=0 + +2025-09-24 21:49:45,132 INFO Connection check task end + +2025-09-24 21:49:47,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:48,133 INFO Connection check task start + +2025-09-24 21:49:48,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:48,133 INFO Out dated connection ,size=0 + +2025-09-24 21:49:48,133 INFO Connection check task end + +2025-09-24 21:49:50,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:51,135 INFO Connection check task start + +2025-09-24 21:49:51,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:51,135 INFO Out dated connection ,size=0 + +2025-09-24 21:49:51,136 INFO Connection check task end + +2025-09-24 21:49:53,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:54,136 INFO Connection check task start + +2025-09-24 21:49:54,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:54,136 INFO Out dated connection ,size=0 + +2025-09-24 21:49:54,136 INFO Connection check task end + +2025-09-24 21:49:56,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:49:57,136 INFO Connection check task start + +2025-09-24 21:49:57,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:49:57,137 INFO Out dated connection ,size=0 + +2025-09-24 21:49:57,137 INFO Connection check task end + +2025-09-24 21:49:59,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:00,137 INFO Connection check task start + +2025-09-24 21:50:00,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:00,138 INFO Out dated connection ,size=0 + +2025-09-24 21:50:00,138 INFO Connection check task end + +2025-09-24 21:50:02,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:03,139 INFO Connection check task start + +2025-09-24 21:50:03,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:03,140 INFO Out dated connection ,size=0 + +2025-09-24 21:50:03,140 INFO Connection check task end + +2025-09-24 21:50:05,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:06,141 INFO Connection check task start + +2025-09-24 21:50:06,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:06,141 INFO Out dated connection ,size=0 + +2025-09-24 21:50:06,141 INFO Connection check task end + +2025-09-24 21:50:08,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:09,141 INFO Connection check task start + +2025-09-24 21:50:09,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:09,141 INFO Out dated connection ,size=0 + +2025-09-24 21:50:09,141 INFO Connection check task end + +2025-09-24 21:50:11,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:12,143 INFO Connection check task start + +2025-09-24 21:50:12,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:12,143 INFO Out dated connection ,size=0 + +2025-09-24 21:50:12,143 INFO Connection check task end + +2025-09-24 21:50:14,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:15,143 INFO Connection check task start + +2025-09-24 21:50:15,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:15,144 INFO Out dated connection ,size=0 + +2025-09-24 21:50:15,144 INFO Connection check task end + +2025-09-24 21:50:17,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:18,146 INFO Connection check task start + +2025-09-24 21:50:18,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:18,146 INFO Out dated connection ,size=0 + +2025-09-24 21:50:18,146 INFO Connection check task end + +2025-09-24 21:50:20,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:21,148 INFO Connection check task start + +2025-09-24 21:50:21,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:21,148 INFO Out dated connection ,size=0 + +2025-09-24 21:50:21,148 INFO Connection check task end + +2025-09-24 21:50:23,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:24,149 INFO Connection check task start + +2025-09-24 21:50:24,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:24,149 INFO Out dated connection ,size=0 + +2025-09-24 21:50:24,149 INFO Connection check task end + +2025-09-24 21:50:26,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:27,150 INFO Connection check task start + +2025-09-24 21:50:27,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:27,150 INFO Out dated connection ,size=0 + +2025-09-24 21:50:27,150 INFO Connection check task end + +2025-09-24 21:50:29,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:30,152 INFO Connection check task start + +2025-09-24 21:50:30,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:30,152 INFO Out dated connection ,size=0 + +2025-09-24 21:50:30,152 INFO Connection check task end + +2025-09-24 21:50:32,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:33,153 INFO Connection check task start + +2025-09-24 21:50:33,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:33,153 INFO Out dated connection ,size=0 + +2025-09-24 21:50:33,153 INFO Connection check task end + +2025-09-24 21:50:35,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:36,153 INFO Connection check task start + +2025-09-24 21:50:36,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:36,154 INFO Out dated connection ,size=0 + +2025-09-24 21:50:36,154 INFO Connection check task end + +2025-09-24 21:50:38,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:39,156 INFO Connection check task start + +2025-09-24 21:50:39,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:39,156 INFO Out dated connection ,size=0 + +2025-09-24 21:50:39,156 INFO Connection check task end + +2025-09-24 21:50:41,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:42,156 INFO Connection check task start + +2025-09-24 21:50:42,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:42,156 INFO Out dated connection ,size=0 + +2025-09-24 21:50:42,157 INFO Connection check task end + +2025-09-24 21:50:44,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:45,158 INFO Connection check task start + +2025-09-24 21:50:45,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:45,158 INFO Out dated connection ,size=0 + +2025-09-24 21:50:45,158 INFO Connection check task end + +2025-09-24 21:50:47,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:48,160 INFO Connection check task start + +2025-09-24 21:50:48,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:48,160 INFO Out dated connection ,size=0 + +2025-09-24 21:50:48,160 INFO Connection check task end + +2025-09-24 21:50:50,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:51,161 INFO Connection check task start + +2025-09-24 21:50:51,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:51,161 INFO Out dated connection ,size=0 + +2025-09-24 21:50:51,161 INFO Connection check task end + +2025-09-24 21:50:53,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:54,162 INFO Connection check task start + +2025-09-24 21:50:54,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:54,162 INFO Out dated connection ,size=0 + +2025-09-24 21:50:54,163 INFO Connection check task end + +2025-09-24 21:50:56,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:50:57,165 INFO Connection check task start + +2025-09-24 21:50:57,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:50:57,165 INFO Out dated connection ,size=0 + +2025-09-24 21:50:57,165 INFO Connection check task end + +2025-09-24 21:50:59,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:00,166 INFO Connection check task start + +2025-09-24 21:51:00,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:00,166 INFO Out dated connection ,size=0 + +2025-09-24 21:51:00,166 INFO Connection check task end + +2025-09-24 21:51:02,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:03,166 INFO Connection check task start + +2025-09-24 21:51:03,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:03,166 INFO Out dated connection ,size=0 + +2025-09-24 21:51:03,166 INFO Connection check task end + +2025-09-24 21:51:05,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:06,166 INFO Connection check task start + +2025-09-24 21:51:06,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:06,167 INFO Out dated connection ,size=0 + +2025-09-24 21:51:06,167 INFO Connection check task end + +2025-09-24 21:51:08,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:09,168 INFO Connection check task start + +2025-09-24 21:51:09,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:09,168 INFO Out dated connection ,size=0 + +2025-09-24 21:51:09,168 INFO Connection check task end + +2025-09-24 21:51:11,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:12,170 INFO Connection check task start + +2025-09-24 21:51:12,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:12,170 INFO Out dated connection ,size=0 + +2025-09-24 21:51:12,170 INFO Connection check task end + +2025-09-24 21:51:14,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:15,171 INFO Connection check task start + +2025-09-24 21:51:15,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:15,171 INFO Out dated connection ,size=0 + +2025-09-24 21:51:15,171 INFO Connection check task end + +2025-09-24 21:51:17,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:18,171 INFO Connection check task start + +2025-09-24 21:51:18,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:18,171 INFO Out dated connection ,size=0 + +2025-09-24 21:51:18,171 INFO Connection check task end + +2025-09-24 21:51:20,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:21,173 INFO Connection check task start + +2025-09-24 21:51:21,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:21,173 INFO Out dated connection ,size=0 + +2025-09-24 21:51:21,173 INFO Connection check task end + +2025-09-24 21:51:23,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:24,174 INFO Connection check task start + +2025-09-24 21:51:24,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:24,174 INFO Out dated connection ,size=0 + +2025-09-24 21:51:24,174 INFO Connection check task end + +2025-09-24 21:51:26,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:27,175 INFO Connection check task start + +2025-09-24 21:51:27,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:27,175 INFO Out dated connection ,size=0 + +2025-09-24 21:51:27,175 INFO Connection check task end + +2025-09-24 21:51:29,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:30,175 INFO Connection check task start + +2025-09-24 21:51:30,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:30,175 INFO Out dated connection ,size=0 + +2025-09-24 21:51:30,175 INFO Connection check task end + +2025-09-24 21:51:32,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:33,177 INFO Connection check task start + +2025-09-24 21:51:33,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:33,177 INFO Out dated connection ,size=0 + +2025-09-24 21:51:33,177 INFO Connection check task end + +2025-09-24 21:51:35,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:36,179 INFO Connection check task start + +2025-09-24 21:51:36,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:36,180 INFO Out dated connection ,size=0 + +2025-09-24 21:51:36,180 INFO Connection check task end + +2025-09-24 21:51:38,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:39,181 INFO Connection check task start + +2025-09-24 21:51:39,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:39,182 INFO Out dated connection ,size=0 + +2025-09-24 21:51:39,182 INFO Connection check task end + +2025-09-24 21:51:41,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:42,182 INFO Connection check task start + +2025-09-24 21:51:42,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:42,182 INFO Out dated connection ,size=0 + +2025-09-24 21:51:42,182 INFO Connection check task end + +2025-09-24 21:51:44,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:45,184 INFO Connection check task start + +2025-09-24 21:51:45,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:45,184 INFO Out dated connection ,size=0 + +2025-09-24 21:51:45,184 INFO Connection check task end + +2025-09-24 21:51:47,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:48,184 INFO Connection check task start + +2025-09-24 21:51:48,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:48,185 INFO Out dated connection ,size=0 + +2025-09-24 21:51:48,185 INFO Connection check task end + +2025-09-24 21:51:50,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:51,186 INFO Connection check task start + +2025-09-24 21:51:51,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:51,186 INFO Out dated connection ,size=0 + +2025-09-24 21:51:51,186 INFO Connection check task end + +2025-09-24 21:51:53,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:54,188 INFO Connection check task start + +2025-09-24 21:51:54,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:54,189 INFO Out dated connection ,size=0 + +2025-09-24 21:51:54,189 INFO Connection check task end + +2025-09-24 21:51:56,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:51:57,189 INFO Connection check task start + +2025-09-24 21:51:57,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:51:57,189 INFO Out dated connection ,size=0 + +2025-09-24 21:51:57,189 INFO Connection check task end + +2025-09-24 21:51:59,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:00,190 INFO Connection check task start + +2025-09-24 21:52:00,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:00,190 INFO Out dated connection ,size=0 + +2025-09-24 21:52:00,190 INFO Connection check task end + +2025-09-24 21:52:02,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:03,191 INFO Connection check task start + +2025-09-24 21:52:03,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:03,191 INFO Out dated connection ,size=0 + +2025-09-24 21:52:03,191 INFO Connection check task end + +2025-09-24 21:52:05,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:06,191 INFO Connection check task start + +2025-09-24 21:52:06,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:06,192 INFO Out dated connection ,size=0 + +2025-09-24 21:52:06,192 INFO Connection check task end + +2025-09-24 21:52:08,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:09,194 INFO Connection check task start + +2025-09-24 21:52:09,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:09,194 INFO Out dated connection ,size=0 + +2025-09-24 21:52:09,194 INFO Connection check task end + +2025-09-24 21:52:11,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:12,196 INFO Connection check task start + +2025-09-24 21:52:12,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:12,196 INFO Out dated connection ,size=0 + +2025-09-24 21:52:12,196 INFO Connection check task end + +2025-09-24 21:52:14,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:15,197 INFO Connection check task start + +2025-09-24 21:52:15,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:15,198 INFO Out dated connection ,size=0 + +2025-09-24 21:52:15,198 INFO Connection check task end + +2025-09-24 21:52:17,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:18,200 INFO Connection check task start + +2025-09-24 21:52:18,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:18,200 INFO Out dated connection ,size=0 + +2025-09-24 21:52:18,200 INFO Connection check task end + +2025-09-24 21:52:20,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:21,200 INFO Connection check task start + +2025-09-24 21:52:21,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:21,200 INFO Out dated connection ,size=0 + +2025-09-24 21:52:21,200 INFO Connection check task end + +2025-09-24 21:52:23,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:24,201 INFO Connection check task start + +2025-09-24 21:52:24,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:24,201 INFO Out dated connection ,size=0 + +2025-09-24 21:52:24,201 INFO Connection check task end + +2025-09-24 21:52:26,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:27,203 INFO Connection check task start + +2025-09-24 21:52:27,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:27,203 INFO Out dated connection ,size=0 + +2025-09-24 21:52:27,203 INFO Connection check task end + +2025-09-24 21:52:29,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:30,203 INFO Connection check task start + +2025-09-24 21:52:30,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:30,203 INFO Out dated connection ,size=0 + +2025-09-24 21:52:30,203 INFO Connection check task end + +2025-09-24 21:52:32,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:33,205 INFO Connection check task start + +2025-09-24 21:52:33,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:33,205 INFO Out dated connection ,size=0 + +2025-09-24 21:52:33,205 INFO Connection check task end + +2025-09-24 21:52:35,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:36,205 INFO Connection check task start + +2025-09-24 21:52:36,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:36,205 INFO Out dated connection ,size=0 + +2025-09-24 21:52:36,205 INFO Connection check task end + +2025-09-24 21:52:38,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:39,206 INFO Connection check task start + +2025-09-24 21:52:39,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:39,207 INFO Out dated connection ,size=0 + +2025-09-24 21:52:39,207 INFO Connection check task end + +2025-09-24 21:52:41,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:42,209 INFO Connection check task start + +2025-09-24 21:52:42,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:42,209 INFO Out dated connection ,size=0 + +2025-09-24 21:52:42,209 INFO Connection check task end + +2025-09-24 21:52:44,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:45,210 INFO Connection check task start + +2025-09-24 21:52:45,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:45,211 INFO Out dated connection ,size=0 + +2025-09-24 21:52:45,211 INFO Connection check task end + +2025-09-24 21:52:47,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:48,212 INFO Connection check task start + +2025-09-24 21:52:48,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:48,212 INFO Out dated connection ,size=0 + +2025-09-24 21:52:48,212 INFO Connection check task end + +2025-09-24 21:52:50,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:51,212 INFO Connection check task start + +2025-09-24 21:52:51,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:51,212 INFO Out dated connection ,size=0 + +2025-09-24 21:52:51,212 INFO Connection check task end + +2025-09-24 21:52:53,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:54,214 INFO Connection check task start + +2025-09-24 21:52:54,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:54,214 INFO Out dated connection ,size=0 + +2025-09-24 21:52:54,214 INFO Connection check task end + +2025-09-24 21:52:56,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:52:57,216 INFO Connection check task start + +2025-09-24 21:52:57,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:52:57,216 INFO Out dated connection ,size=0 + +2025-09-24 21:52:57,216 INFO Connection check task end + +2025-09-24 21:52:59,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:00,218 INFO Connection check task start + +2025-09-24 21:53:00,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:00,218 INFO Out dated connection ,size=0 + +2025-09-24 21:53:00,218 INFO Connection check task end + +2025-09-24 21:53:02,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:03,220 INFO Connection check task start + +2025-09-24 21:53:03,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:03,220 INFO Out dated connection ,size=0 + +2025-09-24 21:53:03,220 INFO Connection check task end + +2025-09-24 21:53:05,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:06,222 INFO Connection check task start + +2025-09-24 21:53:06,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:06,222 INFO Out dated connection ,size=0 + +2025-09-24 21:53:06,222 INFO Connection check task end + +2025-09-24 21:53:08,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:09,223 INFO Connection check task start + +2025-09-24 21:53:09,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:09,223 INFO Out dated connection ,size=0 + +2025-09-24 21:53:09,223 INFO Connection check task end + +2025-09-24 21:53:11,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:12,225 INFO Connection check task start + +2025-09-24 21:53:12,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:12,225 INFO Out dated connection ,size=0 + +2025-09-24 21:53:12,225 INFO Connection check task end + +2025-09-24 21:53:14,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:15,226 INFO Connection check task start + +2025-09-24 21:53:15,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:15,226 INFO Out dated connection ,size=0 + +2025-09-24 21:53:15,226 INFO Connection check task end + +2025-09-24 21:53:17,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:18,227 INFO Connection check task start + +2025-09-24 21:53:18,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:18,227 INFO Out dated connection ,size=0 + +2025-09-24 21:53:18,227 INFO Connection check task end + +2025-09-24 21:53:20,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:21,228 INFO Connection check task start + +2025-09-24 21:53:21,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:21,228 INFO Out dated connection ,size=0 + +2025-09-24 21:53:21,228 INFO Connection check task end + +2025-09-24 21:53:23,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:24,228 INFO Connection check task start + +2025-09-24 21:53:24,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:24,228 INFO Out dated connection ,size=0 + +2025-09-24 21:53:24,228 INFO Connection check task end + +2025-09-24 21:53:26,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:27,228 INFO Connection check task start + +2025-09-24 21:53:27,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:27,229 INFO Out dated connection ,size=0 + +2025-09-24 21:53:27,229 INFO Connection check task end + +2025-09-24 21:53:29,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:30,229 INFO Connection check task start + +2025-09-24 21:53:30,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:30,229 INFO Out dated connection ,size=0 + +2025-09-24 21:53:30,229 INFO Connection check task end + +2025-09-24 21:53:32,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:33,230 INFO Connection check task start + +2025-09-24 21:53:33,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:33,231 INFO Out dated connection ,size=0 + +2025-09-24 21:53:33,231 INFO Connection check task end + +2025-09-24 21:53:35,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:36,231 INFO Connection check task start + +2025-09-24 21:53:36,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:36,231 INFO Out dated connection ,size=0 + +2025-09-24 21:53:36,231 INFO Connection check task end + +2025-09-24 21:53:38,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:39,233 INFO Connection check task start + +2025-09-24 21:53:39,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:39,233 INFO Out dated connection ,size=0 + +2025-09-24 21:53:39,233 INFO Connection check task end + +2025-09-24 21:53:41,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:42,234 INFO Connection check task start + +2025-09-24 21:53:42,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:42,234 INFO Out dated connection ,size=0 + +2025-09-24 21:53:42,234 INFO Connection check task end + +2025-09-24 21:53:44,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:45,235 INFO Connection check task start + +2025-09-24 21:53:45,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:45,235 INFO Out dated connection ,size=0 + +2025-09-24 21:53:45,236 INFO Connection check task end + +2025-09-24 21:53:47,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:48,236 INFO Connection check task start + +2025-09-24 21:53:48,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:48,236 INFO Out dated connection ,size=0 + +2025-09-24 21:53:48,236 INFO Connection check task end + +2025-09-24 21:53:50,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:51,236 INFO Connection check task start + +2025-09-24 21:53:51,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:51,236 INFO Out dated connection ,size=0 + +2025-09-24 21:53:51,236 INFO Connection check task end + +2025-09-24 21:53:53,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:54,238 INFO Connection check task start + +2025-09-24 21:53:54,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:54,238 INFO Out dated connection ,size=0 + +2025-09-24 21:53:54,238 INFO Connection check task end + +2025-09-24 21:53:56,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:53:57,239 INFO Connection check task start + +2025-09-24 21:53:57,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:53:57,239 INFO Out dated connection ,size=0 + +2025-09-24 21:53:57,239 INFO Connection check task end + +2025-09-24 21:53:59,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:00,239 INFO Connection check task start + +2025-09-24 21:54:00,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:00,239 INFO Out dated connection ,size=0 + +2025-09-24 21:54:00,239 INFO Connection check task end + +2025-09-24 21:54:02,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:03,239 INFO Connection check task start + +2025-09-24 21:54:03,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:03,240 INFO Out dated connection ,size=0 + +2025-09-24 21:54:03,240 INFO Connection check task end + +2025-09-24 21:54:05,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:06,241 INFO Connection check task start + +2025-09-24 21:54:06,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:06,241 INFO Out dated connection ,size=0 + +2025-09-24 21:54:06,241 INFO Connection check task end + +2025-09-24 21:54:08,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:09,241 INFO Connection check task start + +2025-09-24 21:54:09,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:09,241 INFO Out dated connection ,size=0 + +2025-09-24 21:54:09,241 INFO Connection check task end + +2025-09-24 21:54:11,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:12,242 INFO Connection check task start + +2025-09-24 21:54:12,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:12,242 INFO Out dated connection ,size=0 + +2025-09-24 21:54:12,242 INFO Connection check task end + +2025-09-24 21:54:14,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:15,242 INFO Connection check task start + +2025-09-24 21:54:15,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:15,243 INFO Out dated connection ,size=0 + +2025-09-24 21:54:15,243 INFO Connection check task end + +2025-09-24 21:54:17,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:18,243 INFO Connection check task start + +2025-09-24 21:54:18,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:18,243 INFO Out dated connection ,size=0 + +2025-09-24 21:54:18,243 INFO Connection check task end + +2025-09-24 21:54:20,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:21,244 INFO Connection check task start + +2025-09-24 21:54:21,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:21,244 INFO Out dated connection ,size=0 + +2025-09-24 21:54:21,244 INFO Connection check task end + +2025-09-24 21:54:23,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:24,244 INFO Connection check task start + +2025-09-24 21:54:24,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:24,245 INFO Out dated connection ,size=0 + +2025-09-24 21:54:24,245 INFO Connection check task end + +2025-09-24 21:54:26,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:27,245 INFO Connection check task start + +2025-09-24 21:54:27,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:27,245 INFO Out dated connection ,size=0 + +2025-09-24 21:54:27,245 INFO Connection check task end + +2025-09-24 21:54:29,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:30,245 INFO Connection check task start + +2025-09-24 21:54:30,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:30,246 INFO Out dated connection ,size=0 + +2025-09-24 21:54:30,246 INFO Connection check task end + +2025-09-24 21:54:32,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:33,247 INFO Connection check task start + +2025-09-24 21:54:33,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:33,248 INFO Out dated connection ,size=0 + +2025-09-24 21:54:33,248 INFO Connection check task end + +2025-09-24 21:54:35,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:36,248 INFO Connection check task start + +2025-09-24 21:54:36,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:36,248 INFO Out dated connection ,size=0 + +2025-09-24 21:54:36,248 INFO Connection check task end + +2025-09-24 21:54:38,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:39,249 INFO Connection check task start + +2025-09-24 21:54:39,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:39,249 INFO Out dated connection ,size=0 + +2025-09-24 21:54:39,249 INFO Connection check task end + +2025-09-24 21:54:41,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:42,250 INFO Connection check task start + +2025-09-24 21:54:42,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:42,250 INFO Out dated connection ,size=0 + +2025-09-24 21:54:42,250 INFO Connection check task end + +2025-09-24 21:54:44,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:45,250 INFO Connection check task start + +2025-09-24 21:54:45,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:45,251 INFO Out dated connection ,size=0 + +2025-09-24 21:54:45,251 INFO Connection check task end + +2025-09-24 21:54:47,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:48,251 INFO Connection check task start + +2025-09-24 21:54:48,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:48,251 INFO Out dated connection ,size=0 + +2025-09-24 21:54:48,251 INFO Connection check task end + +2025-09-24 21:54:50,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:51,252 INFO Connection check task start + +2025-09-24 21:54:51,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:51,252 INFO Out dated connection ,size=0 + +2025-09-24 21:54:51,252 INFO Connection check task end + +2025-09-24 21:54:53,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:54,253 INFO Connection check task start + +2025-09-24 21:54:54,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:54,253 INFO Out dated connection ,size=0 + +2025-09-24 21:54:54,253 INFO Connection check task end + +2025-09-24 21:54:56,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:54:57,254 INFO Connection check task start + +2025-09-24 21:54:57,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:54:57,254 INFO Out dated connection ,size=0 + +2025-09-24 21:54:57,254 INFO Connection check task end + +2025-09-24 21:54:59,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:00,255 INFO Connection check task start + +2025-09-24 21:55:00,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:00,255 INFO Out dated connection ,size=0 + +2025-09-24 21:55:00,256 INFO Connection check task end + +2025-09-24 21:55:02,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:03,256 INFO Connection check task start + +2025-09-24 21:55:03,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:03,256 INFO Out dated connection ,size=0 + +2025-09-24 21:55:03,256 INFO Connection check task end + +2025-09-24 21:55:05,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:06,256 INFO Connection check task start + +2025-09-24 21:55:06,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:06,256 INFO Out dated connection ,size=0 + +2025-09-24 21:55:06,256 INFO Connection check task end + +2025-09-24 21:55:08,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:09,258 INFO Connection check task start + +2025-09-24 21:55:09,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:09,258 INFO Out dated connection ,size=0 + +2025-09-24 21:55:09,258 INFO Connection check task end + +2025-09-24 21:55:11,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:12,258 INFO Connection check task start + +2025-09-24 21:55:12,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:12,258 INFO Out dated connection ,size=0 + +2025-09-24 21:55:12,258 INFO Connection check task end + +2025-09-24 21:55:14,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:15,260 INFO Connection check task start + +2025-09-24 21:55:15,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:15,260 INFO Out dated connection ,size=0 + +2025-09-24 21:55:15,260 INFO Connection check task end + +2025-09-24 21:55:17,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:18,260 INFO Connection check task start + +2025-09-24 21:55:18,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:18,261 INFO Out dated connection ,size=0 + +2025-09-24 21:55:18,261 INFO Connection check task end + +2025-09-24 21:55:20,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:21,261 INFO Connection check task start + +2025-09-24 21:55:21,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:21,261 INFO Out dated connection ,size=0 + +2025-09-24 21:55:21,261 INFO Connection check task end + +2025-09-24 21:55:23,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:24,261 INFO Connection check task start + +2025-09-24 21:55:24,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:24,261 INFO Out dated connection ,size=0 + +2025-09-24 21:55:24,261 INFO Connection check task end + +2025-09-24 21:55:26,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:27,261 INFO Connection check task start + +2025-09-24 21:55:27,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:27,261 INFO Out dated connection ,size=0 + +2025-09-24 21:55:27,261 INFO Connection check task end + +2025-09-24 21:55:29,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:30,262 INFO Connection check task start + +2025-09-24 21:55:30,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:30,262 INFO Out dated connection ,size=0 + +2025-09-24 21:55:30,262 INFO Connection check task end + +2025-09-24 21:55:32,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:33,263 INFO Connection check task start + +2025-09-24 21:55:33,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:33,263 INFO Out dated connection ,size=0 + +2025-09-24 21:55:33,263 INFO Connection check task end + +2025-09-24 21:55:35,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:36,263 INFO Connection check task start + +2025-09-24 21:55:36,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:36,263 INFO Out dated connection ,size=0 + +2025-09-24 21:55:36,263 INFO Connection check task end + +2025-09-24 21:55:38,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:39,263 INFO Connection check task start + +2025-09-24 21:55:39,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:39,263 INFO Out dated connection ,size=0 + +2025-09-24 21:55:39,264 INFO Connection check task end + +2025-09-24 21:55:41,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:42,264 INFO Connection check task start + +2025-09-24 21:55:42,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:42,264 INFO Out dated connection ,size=0 + +2025-09-24 21:55:42,264 INFO Connection check task end + +2025-09-24 21:55:44,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:45,264 INFO Connection check task start + +2025-09-24 21:55:45,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:45,264 INFO Out dated connection ,size=0 + +2025-09-24 21:55:45,265 INFO Connection check task end + +2025-09-24 21:55:47,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:48,265 INFO Connection check task start + +2025-09-24 21:55:48,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:48,265 INFO Out dated connection ,size=0 + +2025-09-24 21:55:48,265 INFO Connection check task end + +2025-09-24 21:55:50,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:51,265 INFO Connection check task start + +2025-09-24 21:55:51,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:51,265 INFO Out dated connection ,size=0 + +2025-09-24 21:55:51,265 INFO Connection check task end + +2025-09-24 21:55:53,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:54,266 INFO Connection check task start + +2025-09-24 21:55:54,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:54,266 INFO Out dated connection ,size=0 + +2025-09-24 21:55:54,266 INFO Connection check task end + +2025-09-24 21:55:56,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:55:57,266 INFO Connection check task start + +2025-09-24 21:55:57,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:55:57,266 INFO Out dated connection ,size=0 + +2025-09-24 21:55:57,266 INFO Connection check task end + +2025-09-24 21:55:59,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:00,267 INFO Connection check task start + +2025-09-24 21:56:00,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:00,267 INFO Out dated connection ,size=0 + +2025-09-24 21:56:00,267 INFO Connection check task end + +2025-09-24 21:56:02,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:03,267 INFO Connection check task start + +2025-09-24 21:56:03,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:03,267 INFO Out dated connection ,size=0 + +2025-09-24 21:56:03,267 INFO Connection check task end + +2025-09-24 21:56:05,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:06,268 INFO Connection check task start + +2025-09-24 21:56:06,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:06,268 INFO Out dated connection ,size=0 + +2025-09-24 21:56:06,268 INFO Connection check task end + +2025-09-24 21:56:08,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:09,268 INFO Connection check task start + +2025-09-24 21:56:09,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:09,268 INFO Out dated connection ,size=0 + +2025-09-24 21:56:09,268 INFO Connection check task end + +2025-09-24 21:56:11,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:12,270 INFO Connection check task start + +2025-09-24 21:56:12,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:12,270 INFO Out dated connection ,size=0 + +2025-09-24 21:56:12,270 INFO Connection check task end + +2025-09-24 21:56:14,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:15,272 INFO Connection check task start + +2025-09-24 21:56:15,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:15,272 INFO Out dated connection ,size=0 + +2025-09-24 21:56:15,272 INFO Connection check task end + +2025-09-24 21:56:17,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:18,273 INFO Connection check task start + +2025-09-24 21:56:18,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:18,273 INFO Out dated connection ,size=0 + +2025-09-24 21:56:18,273 INFO Connection check task end + +2025-09-24 21:56:20,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:21,274 INFO Connection check task start + +2025-09-24 21:56:21,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:21,274 INFO Out dated connection ,size=0 + +2025-09-24 21:56:21,274 INFO Connection check task end + +2025-09-24 21:56:23,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:24,274 INFO Connection check task start + +2025-09-24 21:56:24,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:24,274 INFO Out dated connection ,size=0 + +2025-09-24 21:56:24,274 INFO Connection check task end + +2025-09-24 21:56:26,601 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:27,276 INFO Connection check task start + +2025-09-24 21:56:27,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:27,276 INFO Out dated connection ,size=0 + +2025-09-24 21:56:27,276 INFO Connection check task end + +2025-09-24 21:56:29,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:30,276 INFO Connection check task start + +2025-09-24 21:56:30,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:30,276 INFO Out dated connection ,size=0 + +2025-09-24 21:56:30,277 INFO Connection check task end + +2025-09-24 21:56:32,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:33,277 INFO Connection check task start + +2025-09-24 21:56:33,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:33,277 INFO Out dated connection ,size=0 + +2025-09-24 21:56:33,277 INFO Connection check task end + +2025-09-24 21:56:35,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:36,278 INFO Connection check task start + +2025-09-24 21:56:36,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:36,278 INFO Out dated connection ,size=0 + +2025-09-24 21:56:36,278 INFO Connection check task end + +2025-09-24 21:56:38,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:39,278 INFO Connection check task start + +2025-09-24 21:56:39,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:39,279 INFO Out dated connection ,size=0 + +2025-09-24 21:56:39,279 INFO Connection check task end + +2025-09-24 21:56:41,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:42,279 INFO Connection check task start + +2025-09-24 21:56:42,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:42,279 INFO Out dated connection ,size=0 + +2025-09-24 21:56:42,279 INFO Connection check task end + +2025-09-24 21:56:44,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:45,279 INFO Connection check task start + +2025-09-24 21:56:45,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:45,280 INFO Out dated connection ,size=0 + +2025-09-24 21:56:45,280 INFO Connection check task end + +2025-09-24 21:56:47,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:48,281 INFO Connection check task start + +2025-09-24 21:56:48,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:48,281 INFO Out dated connection ,size=0 + +2025-09-24 21:56:48,281 INFO Connection check task end + +2025-09-24 21:56:50,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:51,282 INFO Connection check task start + +2025-09-24 21:56:51,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:51,283 INFO Out dated connection ,size=0 + +2025-09-24 21:56:51,283 INFO Connection check task end + +2025-09-24 21:56:53,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:54,283 INFO Connection check task start + +2025-09-24 21:56:54,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:54,283 INFO Out dated connection ,size=0 + +2025-09-24 21:56:54,283 INFO Connection check task end + +2025-09-24 21:56:56,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:56:57,285 INFO Connection check task start + +2025-09-24 21:56:57,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:56:57,285 INFO Out dated connection ,size=0 + +2025-09-24 21:56:57,285 INFO Connection check task end + +2025-09-24 21:56:59,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:00,285 INFO Connection check task start + +2025-09-24 21:57:00,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:00,285 INFO Out dated connection ,size=0 + +2025-09-24 21:57:00,285 INFO Connection check task end + +2025-09-24 21:57:02,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:03,285 INFO Connection check task start + +2025-09-24 21:57:03,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:03,286 INFO Out dated connection ,size=0 + +2025-09-24 21:57:03,286 INFO Connection check task end + +2025-09-24 21:57:05,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:06,287 INFO Connection check task start + +2025-09-24 21:57:06,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:06,291 INFO Out dated connection ,size=0 + +2025-09-24 21:57:06,291 INFO Connection check task end + +2025-09-24 21:57:08,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:09,293 INFO Connection check task start + +2025-09-24 21:57:09,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:09,293 INFO Out dated connection ,size=0 + +2025-09-24 21:57:09,293 INFO Connection check task end + +2025-09-24 21:57:11,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:12,294 INFO Connection check task start + +2025-09-24 21:57:12,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:12,294 INFO Out dated connection ,size=0 + +2025-09-24 21:57:12,294 INFO Connection check task end + +2025-09-24 21:57:14,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:15,296 INFO Connection check task start + +2025-09-24 21:57:15,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:15,296 INFO Out dated connection ,size=0 + +2025-09-24 21:57:15,296 INFO Connection check task end + +2025-09-24 21:57:17,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:18,296 INFO Connection check task start + +2025-09-24 21:57:18,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:18,296 INFO Out dated connection ,size=0 + +2025-09-24 21:57:18,297 INFO Connection check task end + +2025-09-24 21:57:20,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:21,297 INFO Connection check task start + +2025-09-24 21:57:21,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:21,297 INFO Out dated connection ,size=0 + +2025-09-24 21:57:21,297 INFO Connection check task end + +2025-09-24 21:57:23,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:24,297 INFO Connection check task start + +2025-09-24 21:57:24,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:24,297 INFO Out dated connection ,size=0 + +2025-09-24 21:57:24,297 INFO Connection check task end + +2025-09-24 21:57:26,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:27,300 INFO Connection check task start + +2025-09-24 21:57:27,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:27,300 INFO Out dated connection ,size=0 + +2025-09-24 21:57:27,300 INFO Connection check task end + +2025-09-24 21:57:29,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:30,301 INFO Connection check task start + +2025-09-24 21:57:30,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:30,301 INFO Out dated connection ,size=0 + +2025-09-24 21:57:30,301 INFO Connection check task end + +2025-09-24 21:57:32,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:33,302 INFO Connection check task start + +2025-09-24 21:57:33,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:33,302 INFO Out dated connection ,size=0 + +2025-09-24 21:57:33,302 INFO Connection check task end + +2025-09-24 21:57:35,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:36,303 INFO Connection check task start + +2025-09-24 21:57:36,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:36,303 INFO Out dated connection ,size=0 + +2025-09-24 21:57:36,303 INFO Connection check task end + +2025-09-24 21:57:38,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:39,304 INFO Connection check task start + +2025-09-24 21:57:39,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:39,304 INFO Out dated connection ,size=0 + +2025-09-24 21:57:39,304 INFO Connection check task end + +2025-09-24 21:57:41,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:42,304 INFO Connection check task start + +2025-09-24 21:57:42,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:42,304 INFO Out dated connection ,size=0 + +2025-09-24 21:57:42,304 INFO Connection check task end + +2025-09-24 21:57:44,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:45,305 INFO Connection check task start + +2025-09-24 21:57:45,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:45,305 INFO Out dated connection ,size=0 + +2025-09-24 21:57:45,305 INFO Connection check task end + +2025-09-24 21:57:47,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:48,305 INFO Connection check task start + +2025-09-24 21:57:48,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:48,305 INFO Out dated connection ,size=0 + +2025-09-24 21:57:48,305 INFO Connection check task end + +2025-09-24 21:57:50,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:51,306 INFO Connection check task start + +2025-09-24 21:57:51,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:51,306 INFO Out dated connection ,size=0 + +2025-09-24 21:57:51,307 INFO Connection check task end + +2025-09-24 21:57:53,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:54,309 INFO Connection check task start + +2025-09-24 21:57:54,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:54,309 INFO Out dated connection ,size=0 + +2025-09-24 21:57:54,309 INFO Connection check task end + +2025-09-24 21:57:56,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:57:57,310 INFO Connection check task start + +2025-09-24 21:57:57,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:57:57,310 INFO Out dated connection ,size=0 + +2025-09-24 21:57:57,310 INFO Connection check task end + +2025-09-24 21:57:59,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:00,312 INFO Connection check task start + +2025-09-24 21:58:00,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:00,312 INFO Out dated connection ,size=0 + +2025-09-24 21:58:00,312 INFO Connection check task end + +2025-09-24 21:58:02,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:03,313 INFO Connection check task start + +2025-09-24 21:58:03,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:03,313 INFO Out dated connection ,size=0 + +2025-09-24 21:58:03,313 INFO Connection check task end + +2025-09-24 21:58:05,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:06,313 INFO Connection check task start + +2025-09-24 21:58:06,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:06,313 INFO Out dated connection ,size=0 + +2025-09-24 21:58:06,313 INFO Connection check task end + +2025-09-24 21:58:08,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:09,315 INFO Connection check task start + +2025-09-24 21:58:09,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:09,315 INFO Out dated connection ,size=0 + +2025-09-24 21:58:09,316 INFO Connection check task end + +2025-09-24 21:58:11,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:12,317 INFO Connection check task start + +2025-09-24 21:58:12,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:12,317 INFO Out dated connection ,size=0 + +2025-09-24 21:58:12,317 INFO Connection check task end + +2025-09-24 21:58:14,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:15,317 INFO Connection check task start + +2025-09-24 21:58:15,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:15,318 INFO Out dated connection ,size=0 + +2025-09-24 21:58:15,318 INFO Connection check task end + +2025-09-24 21:58:17,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:18,318 INFO Connection check task start + +2025-09-24 21:58:18,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:18,319 INFO Out dated connection ,size=0 + +2025-09-24 21:58:18,319 INFO Connection check task end + +2025-09-24 21:58:20,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:21,319 INFO Connection check task start + +2025-09-24 21:58:21,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:21,319 INFO Out dated connection ,size=0 + +2025-09-24 21:58:21,319 INFO Connection check task end + +2025-09-24 21:58:23,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:24,321 INFO Connection check task start + +2025-09-24 21:58:24,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:24,321 INFO Out dated connection ,size=0 + +2025-09-24 21:58:24,321 INFO Connection check task end + +2025-09-24 21:58:26,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:27,321 INFO Connection check task start + +2025-09-24 21:58:27,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:27,322 INFO Out dated connection ,size=0 + +2025-09-24 21:58:27,322 INFO Connection check task end + +2025-09-24 21:58:29,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:30,323 INFO Connection check task start + +2025-09-24 21:58:30,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:30,324 INFO Out dated connection ,size=0 + +2025-09-24 21:58:30,324 INFO Connection check task end + +2025-09-24 21:58:32,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:33,324 INFO Connection check task start + +2025-09-24 21:58:33,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:33,325 INFO Out dated connection ,size=0 + +2025-09-24 21:58:33,325 INFO Connection check task end + +2025-09-24 21:58:35,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:36,325 INFO Connection check task start + +2025-09-24 21:58:36,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:36,325 INFO Out dated connection ,size=0 + +2025-09-24 21:58:36,325 INFO Connection check task end + +2025-09-24 21:58:38,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:39,325 INFO Connection check task start + +2025-09-24 21:58:39,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:39,326 INFO Out dated connection ,size=0 + +2025-09-24 21:58:39,326 INFO Connection check task end + +2025-09-24 21:58:41,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:42,326 INFO Connection check task start + +2025-09-24 21:58:42,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:42,326 INFO Out dated connection ,size=0 + +2025-09-24 21:58:42,326 INFO Connection check task end + +2025-09-24 21:58:44,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:45,327 INFO Connection check task start + +2025-09-24 21:58:45,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:45,327 INFO Out dated connection ,size=0 + +2025-09-24 21:58:45,327 INFO Connection check task end + +2025-09-24 21:58:47,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:48,327 INFO Connection check task start + +2025-09-24 21:58:48,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:48,328 INFO Out dated connection ,size=0 + +2025-09-24 21:58:48,328 INFO Connection check task end + +2025-09-24 21:58:50,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:51,330 INFO Connection check task start + +2025-09-24 21:58:51,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:51,330 INFO Out dated connection ,size=0 + +2025-09-24 21:58:51,330 INFO Connection check task end + +2025-09-24 21:58:53,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:54,330 INFO Connection check task start + +2025-09-24 21:58:54,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:54,330 INFO Out dated connection ,size=0 + +2025-09-24 21:58:54,330 INFO Connection check task end + +2025-09-24 21:58:56,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:58:57,331 INFO Connection check task start + +2025-09-24 21:58:57,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:58:57,331 INFO Out dated connection ,size=0 + +2025-09-24 21:58:57,331 INFO Connection check task end + +2025-09-24 21:58:59,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:00,332 INFO Connection check task start + +2025-09-24 21:59:00,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:00,333 INFO Out dated connection ,size=0 + +2025-09-24 21:59:00,333 INFO Connection check task end + +2025-09-24 21:59:02,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:03,333 INFO Connection check task start + +2025-09-24 21:59:03,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:03,333 INFO Out dated connection ,size=0 + +2025-09-24 21:59:03,333 INFO Connection check task end + +2025-09-24 21:59:05,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:06,335 INFO Connection check task start + +2025-09-24 21:59:06,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:06,335 INFO Out dated connection ,size=0 + +2025-09-24 21:59:06,335 INFO Connection check task end + +2025-09-24 21:59:08,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:09,337 INFO Connection check task start + +2025-09-24 21:59:09,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:09,338 INFO Out dated connection ,size=0 + +2025-09-24 21:59:09,338 INFO Connection check task end + +2025-09-24 21:59:11,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:12,338 INFO Connection check task start + +2025-09-24 21:59:12,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:12,338 INFO Out dated connection ,size=0 + +2025-09-24 21:59:12,338 INFO Connection check task end + +2025-09-24 21:59:14,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:15,339 INFO Connection check task start + +2025-09-24 21:59:15,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:15,339 INFO Out dated connection ,size=0 + +2025-09-24 21:59:15,339 INFO Connection check task end + +2025-09-24 21:59:17,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:18,341 INFO Connection check task start + +2025-09-24 21:59:18,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:18,341 INFO Out dated connection ,size=0 + +2025-09-24 21:59:18,341 INFO Connection check task end + +2025-09-24 21:59:20,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:21,342 INFO Connection check task start + +2025-09-24 21:59:21,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:21,342 INFO Out dated connection ,size=0 + +2025-09-24 21:59:21,342 INFO Connection check task end + +2025-09-24 21:59:23,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:24,343 INFO Connection check task start + +2025-09-24 21:59:24,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:24,343 INFO Out dated connection ,size=0 + +2025-09-24 21:59:24,343 INFO Connection check task end + +2025-09-24 21:59:26,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:27,344 INFO Connection check task start + +2025-09-24 21:59:27,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:27,344 INFO Out dated connection ,size=0 + +2025-09-24 21:59:27,344 INFO Connection check task end + +2025-09-24 21:59:29,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:30,345 INFO Connection check task start + +2025-09-24 21:59:30,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:30,345 INFO Out dated connection ,size=0 + +2025-09-24 21:59:30,345 INFO Connection check task end + +2025-09-24 21:59:32,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:33,346 INFO Connection check task start + +2025-09-24 21:59:33,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:33,346 INFO Out dated connection ,size=0 + +2025-09-24 21:59:33,346 INFO Connection check task end + +2025-09-24 21:59:35,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:36,348 INFO Connection check task start + +2025-09-24 21:59:36,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:36,349 INFO Out dated connection ,size=0 + +2025-09-24 21:59:36,349 INFO Connection check task end + +2025-09-24 21:59:38,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:39,351 INFO Connection check task start + +2025-09-24 21:59:39,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:39,351 INFO Out dated connection ,size=0 + +2025-09-24 21:59:39,351 INFO Connection check task end + +2025-09-24 21:59:41,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:42,353 INFO Connection check task start + +2025-09-24 21:59:42,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:42,353 INFO Out dated connection ,size=0 + +2025-09-24 21:59:42,353 INFO Connection check task end + +2025-09-24 21:59:44,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:45,355 INFO Connection check task start + +2025-09-24 21:59:45,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:45,355 INFO Out dated connection ,size=0 + +2025-09-24 21:59:45,355 INFO Connection check task end + +2025-09-24 21:59:47,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:48,357 INFO Connection check task start + +2025-09-24 21:59:48,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:48,357 INFO Out dated connection ,size=0 + +2025-09-24 21:59:48,357 INFO Connection check task end + +2025-09-24 21:59:50,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:51,359 INFO Connection check task start + +2025-09-24 21:59:51,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:51,360 INFO Out dated connection ,size=0 + +2025-09-24 21:59:51,360 INFO Connection check task end + +2025-09-24 21:59:53,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:54,360 INFO Connection check task start + +2025-09-24 21:59:54,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:54,360 INFO Out dated connection ,size=0 + +2025-09-24 21:59:54,360 INFO Connection check task end + +2025-09-24 21:59:56,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 21:59:57,361 INFO Connection check task start + +2025-09-24 21:59:57,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 21:59:57,361 INFO Out dated connection ,size=0 + +2025-09-24 21:59:57,361 INFO Connection check task end + +2025-09-24 21:59:59,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:00,363 INFO Connection check task start + +2025-09-24 22:00:00,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:00,363 INFO Out dated connection ,size=0 + +2025-09-24 22:00:00,363 INFO Connection check task end + +2025-09-24 22:00:02,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:03,365 INFO Connection check task start + +2025-09-24 22:00:03,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:03,365 INFO Out dated connection ,size=0 + +2025-09-24 22:00:03,365 INFO Connection check task end + +2025-09-24 22:00:05,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:06,366 INFO Connection check task start + +2025-09-24 22:00:06,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:06,366 INFO Out dated connection ,size=0 + +2025-09-24 22:00:06,366 INFO Connection check task end + +2025-09-24 22:00:08,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:09,368 INFO Connection check task start + +2025-09-24 22:00:09,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:09,368 INFO Out dated connection ,size=0 + +2025-09-24 22:00:09,368 INFO Connection check task end + +2025-09-24 22:00:11,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:12,370 INFO Connection check task start + +2025-09-24 22:00:12,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:12,370 INFO Out dated connection ,size=0 + +2025-09-24 22:00:12,370 INFO Connection check task end + +2025-09-24 22:00:14,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:15,371 INFO Connection check task start + +2025-09-24 22:00:15,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:15,371 INFO Out dated connection ,size=0 + +2025-09-24 22:00:15,371 INFO Connection check task end + +2025-09-24 22:00:17,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:18,373 INFO Connection check task start + +2025-09-24 22:00:18,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:18,373 INFO Out dated connection ,size=0 + +2025-09-24 22:00:18,374 INFO Connection check task end + +2025-09-24 22:00:20,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:21,374 INFO Connection check task start + +2025-09-24 22:00:21,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:21,374 INFO Out dated connection ,size=0 + +2025-09-24 22:00:21,374 INFO Connection check task end + +2025-09-24 22:00:23,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:24,375 INFO Connection check task start + +2025-09-24 22:00:24,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:24,375 INFO Out dated connection ,size=0 + +2025-09-24 22:00:24,375 INFO Connection check task end + +2025-09-24 22:00:26,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:27,375 INFO Connection check task start + +2025-09-24 22:00:27,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:27,375 INFO Out dated connection ,size=0 + +2025-09-24 22:00:27,375 INFO Connection check task end + +2025-09-24 22:00:29,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:30,377 INFO Connection check task start + +2025-09-24 22:00:30,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:30,377 INFO Out dated connection ,size=0 + +2025-09-24 22:00:30,377 INFO Connection check task end + +2025-09-24 22:00:32,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:33,379 INFO Connection check task start + +2025-09-24 22:00:33,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:33,379 INFO Out dated connection ,size=0 + +2025-09-24 22:00:33,379 INFO Connection check task end + +2025-09-24 22:00:35,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:36,381 INFO Connection check task start + +2025-09-24 22:00:36,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:36,381 INFO Out dated connection ,size=0 + +2025-09-24 22:00:36,381 INFO Connection check task end + +2025-09-24 22:00:38,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:39,383 INFO Connection check task start + +2025-09-24 22:00:39,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:39,383 INFO Out dated connection ,size=0 + +2025-09-24 22:00:39,383 INFO Connection check task end + +2025-09-24 22:00:41,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:42,385 INFO Connection check task start + +2025-09-24 22:00:42,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:42,386 INFO Out dated connection ,size=0 + +2025-09-24 22:00:42,386 INFO Connection check task end + +2025-09-24 22:00:44,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:45,386 INFO Connection check task start + +2025-09-24 22:00:45,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:45,386 INFO Out dated connection ,size=0 + +2025-09-24 22:00:45,386 INFO Connection check task end + +2025-09-24 22:00:47,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:48,386 INFO Connection check task start + +2025-09-24 22:00:48,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:48,387 INFO Out dated connection ,size=0 + +2025-09-24 22:00:48,387 INFO Connection check task end + +2025-09-24 22:00:50,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:51,387 INFO Connection check task start + +2025-09-24 22:00:51,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:51,387 INFO Out dated connection ,size=0 + +2025-09-24 22:00:51,387 INFO Connection check task end + +2025-09-24 22:00:53,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:54,389 INFO Connection check task start + +2025-09-24 22:00:54,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:54,389 INFO Out dated connection ,size=0 + +2025-09-24 22:00:54,389 INFO Connection check task end + +2025-09-24 22:00:56,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:00:57,392 INFO Connection check task start + +2025-09-24 22:00:57,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:00:57,392 INFO Out dated connection ,size=0 + +2025-09-24 22:00:57,392 INFO Connection check task end + +2025-09-24 22:00:59,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:00,393 INFO Connection check task start + +2025-09-24 22:01:00,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:00,393 INFO Out dated connection ,size=0 + +2025-09-24 22:01:00,393 INFO Connection check task end + +2025-09-24 22:01:02,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:03,395 INFO Connection check task start + +2025-09-24 22:01:03,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:03,395 INFO Out dated connection ,size=0 + +2025-09-24 22:01:03,395 INFO Connection check task end + +2025-09-24 22:01:05,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:06,396 INFO Connection check task start + +2025-09-24 22:01:06,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:06,396 INFO Out dated connection ,size=0 + +2025-09-24 22:01:06,396 INFO Connection check task end + +2025-09-24 22:01:08,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:09,397 INFO Connection check task start + +2025-09-24 22:01:09,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:09,397 INFO Out dated connection ,size=0 + +2025-09-24 22:01:09,397 INFO Connection check task end + +2025-09-24 22:01:11,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:12,398 INFO Connection check task start + +2025-09-24 22:01:12,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:12,398 INFO Out dated connection ,size=0 + +2025-09-24 22:01:12,398 INFO Connection check task end + +2025-09-24 22:01:14,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:15,400 INFO Connection check task start + +2025-09-24 22:01:15,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:15,400 INFO Out dated connection ,size=0 + +2025-09-24 22:01:15,400 INFO Connection check task end + +2025-09-24 22:01:17,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:18,401 INFO Connection check task start + +2025-09-24 22:01:18,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:18,401 INFO Out dated connection ,size=0 + +2025-09-24 22:01:18,401 INFO Connection check task end + +2025-09-24 22:01:20,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:21,403 INFO Connection check task start + +2025-09-24 22:01:21,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:21,403 INFO Out dated connection ,size=0 + +2025-09-24 22:01:21,403 INFO Connection check task end + +2025-09-24 22:01:23,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:24,403 INFO Connection check task start + +2025-09-24 22:01:24,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:24,404 INFO Out dated connection ,size=0 + +2025-09-24 22:01:24,404 INFO Connection check task end + +2025-09-24 22:01:26,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:27,404 INFO Connection check task start + +2025-09-24 22:01:27,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:27,404 INFO Out dated connection ,size=0 + +2025-09-24 22:01:27,404 INFO Connection check task end + +2025-09-24 22:01:29,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:30,405 INFO Connection check task start + +2025-09-24 22:01:30,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:30,405 INFO Out dated connection ,size=0 + +2025-09-24 22:01:30,405 INFO Connection check task end + +2025-09-24 22:01:32,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:33,407 INFO Connection check task start + +2025-09-24 22:01:33,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:33,407 INFO Out dated connection ,size=0 + +2025-09-24 22:01:33,407 INFO Connection check task end + +2025-09-24 22:01:35,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:36,407 INFO Connection check task start + +2025-09-24 22:01:36,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:36,408 INFO Out dated connection ,size=0 + +2025-09-24 22:01:36,408 INFO Connection check task end + +2025-09-24 22:01:38,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:39,408 INFO Connection check task start + +2025-09-24 22:01:39,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:39,409 INFO Out dated connection ,size=0 + +2025-09-24 22:01:39,409 INFO Connection check task end + +2025-09-24 22:01:41,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:42,410 INFO Connection check task start + +2025-09-24 22:01:42,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:42,410 INFO Out dated connection ,size=0 + +2025-09-24 22:01:42,410 INFO Connection check task end + +2025-09-24 22:01:44,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:45,411 INFO Connection check task start + +2025-09-24 22:01:45,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:45,411 INFO Out dated connection ,size=0 + +2025-09-24 22:01:45,411 INFO Connection check task end + +2025-09-24 22:01:47,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:48,413 INFO Connection check task start + +2025-09-24 22:01:48,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:48,413 INFO Out dated connection ,size=0 + +2025-09-24 22:01:48,413 INFO Connection check task end + +2025-09-24 22:01:50,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:51,414 INFO Connection check task start + +2025-09-24 22:01:51,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:51,414 INFO Out dated connection ,size=0 + +2025-09-24 22:01:51,414 INFO Connection check task end + +2025-09-24 22:01:53,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:54,415 INFO Connection check task start + +2025-09-24 22:01:54,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:54,415 INFO Out dated connection ,size=0 + +2025-09-24 22:01:54,415 INFO Connection check task end + +2025-09-24 22:01:56,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:01:57,415 INFO Connection check task start + +2025-09-24 22:01:57,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:01:57,415 INFO Out dated connection ,size=0 + +2025-09-24 22:01:57,415 INFO Connection check task end + +2025-09-24 22:01:59,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:00,416 INFO Connection check task start + +2025-09-24 22:02:00,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:00,416 INFO Out dated connection ,size=0 + +2025-09-24 22:02:00,416 INFO Connection check task end + +2025-09-24 22:02:02,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:03,418 INFO Connection check task start + +2025-09-24 22:02:03,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:03,418 INFO Out dated connection ,size=0 + +2025-09-24 22:02:03,418 INFO Connection check task end + +2025-09-24 22:02:05,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:06,420 INFO Connection check task start + +2025-09-24 22:02:06,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:06,420 INFO Out dated connection ,size=0 + +2025-09-24 22:02:06,420 INFO Connection check task end + +2025-09-24 22:02:08,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:09,420 INFO Connection check task start + +2025-09-24 22:02:09,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:09,421 INFO Out dated connection ,size=0 + +2025-09-24 22:02:09,421 INFO Connection check task end + +2025-09-24 22:02:11,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:12,423 INFO Connection check task start + +2025-09-24 22:02:12,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:12,423 INFO Out dated connection ,size=0 + +2025-09-24 22:02:12,423 INFO Connection check task end + +2025-09-24 22:02:14,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:15,425 INFO Connection check task start + +2025-09-24 22:02:15,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:15,425 INFO Out dated connection ,size=0 + +2025-09-24 22:02:15,425 INFO Connection check task end + +2025-09-24 22:02:17,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:18,426 INFO Connection check task start + +2025-09-24 22:02:18,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:18,426 INFO Out dated connection ,size=0 + +2025-09-24 22:02:18,426 INFO Connection check task end + +2025-09-24 22:02:20,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:21,426 INFO Connection check task start + +2025-09-24 22:02:21,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:21,427 INFO Out dated connection ,size=0 + +2025-09-24 22:02:21,427 INFO Connection check task end + +2025-09-24 22:02:23,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:24,427 INFO Connection check task start + +2025-09-24 22:02:24,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:24,427 INFO Out dated connection ,size=0 + +2025-09-24 22:02:24,427 INFO Connection check task end + +2025-09-24 22:02:26,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:27,428 INFO Connection check task start + +2025-09-24 22:02:27,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:27,429 INFO Out dated connection ,size=0 + +2025-09-24 22:02:27,429 INFO Connection check task end + +2025-09-24 22:02:29,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:30,429 INFO Connection check task start + +2025-09-24 22:02:30,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:30,429 INFO Out dated connection ,size=0 + +2025-09-24 22:02:30,429 INFO Connection check task end + +2025-09-24 22:02:32,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:33,431 INFO Connection check task start + +2025-09-24 22:02:33,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:33,431 INFO Out dated connection ,size=0 + +2025-09-24 22:02:33,431 INFO Connection check task end + +2025-09-24 22:02:35,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:36,432 INFO Connection check task start + +2025-09-24 22:02:36,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:36,432 INFO Out dated connection ,size=0 + +2025-09-24 22:02:36,432 INFO Connection check task end + +2025-09-24 22:02:38,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:39,435 INFO Connection check task start + +2025-09-24 22:02:39,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:39,435 INFO Out dated connection ,size=0 + +2025-09-24 22:02:39,435 INFO Connection check task end + +2025-09-24 22:02:41,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:42,435 INFO Connection check task start + +2025-09-24 22:02:42,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:42,436 INFO Out dated connection ,size=0 + +2025-09-24 22:02:42,436 INFO Connection check task end + +2025-09-24 22:02:44,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:45,436 INFO Connection check task start + +2025-09-24 22:02:45,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:45,437 INFO Out dated connection ,size=0 + +2025-09-24 22:02:45,437 INFO Connection check task end + +2025-09-24 22:02:47,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:48,437 INFO Connection check task start + +2025-09-24 22:02:48,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:48,438 INFO Out dated connection ,size=0 + +2025-09-24 22:02:48,438 INFO Connection check task end + +2025-09-24 22:02:50,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:51,438 INFO Connection check task start + +2025-09-24 22:02:51,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:51,438 INFO Out dated connection ,size=0 + +2025-09-24 22:02:51,439 INFO Connection check task end + +2025-09-24 22:02:53,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:54,439 INFO Connection check task start + +2025-09-24 22:02:54,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:54,439 INFO Out dated connection ,size=0 + +2025-09-24 22:02:54,439 INFO Connection check task end + +2025-09-24 22:02:56,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:02:57,441 INFO Connection check task start + +2025-09-24 22:02:57,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:02:57,441 INFO Out dated connection ,size=0 + +2025-09-24 22:02:57,441 INFO Connection check task end + +2025-09-24 22:02:59,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:00,444 INFO Connection check task start + +2025-09-24 22:03:00,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:00,444 INFO Out dated connection ,size=0 + +2025-09-24 22:03:00,444 INFO Connection check task end + +2025-09-24 22:03:02,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:03,444 INFO Connection check task start + +2025-09-24 22:03:03,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:03,444 INFO Out dated connection ,size=0 + +2025-09-24 22:03:03,444 INFO Connection check task end + +2025-09-24 22:03:05,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:06,446 INFO Connection check task start + +2025-09-24 22:03:06,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:06,446 INFO Out dated connection ,size=0 + +2025-09-24 22:03:06,446 INFO Connection check task end + +2025-09-24 22:03:08,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:09,448 INFO Connection check task start + +2025-09-24 22:03:09,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:09,448 INFO Out dated connection ,size=0 + +2025-09-24 22:03:09,448 INFO Connection check task end + +2025-09-24 22:03:11,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:12,448 INFO Connection check task start + +2025-09-24 22:03:12,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:12,448 INFO Out dated connection ,size=0 + +2025-09-24 22:03:12,448 INFO Connection check task end + +2025-09-24 22:03:14,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:15,449 INFO Connection check task start + +2025-09-24 22:03:15,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:15,449 INFO Out dated connection ,size=0 + +2025-09-24 22:03:15,449 INFO Connection check task end + +2025-09-24 22:03:17,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:18,450 INFO Connection check task start + +2025-09-24 22:03:18,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:18,450 INFO Out dated connection ,size=0 + +2025-09-24 22:03:18,450 INFO Connection check task end + +2025-09-24 22:03:20,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:21,451 INFO Connection check task start + +2025-09-24 22:03:21,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:21,452 INFO Out dated connection ,size=0 + +2025-09-24 22:03:21,452 INFO Connection check task end + +2025-09-24 22:03:23,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:24,453 INFO Connection check task start + +2025-09-24 22:03:24,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:24,453 INFO Out dated connection ,size=0 + +2025-09-24 22:03:24,453 INFO Connection check task end + +2025-09-24 22:03:26,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:27,454 INFO Connection check task start + +2025-09-24 22:03:27,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:27,454 INFO Out dated connection ,size=0 + +2025-09-24 22:03:27,454 INFO Connection check task end + +2025-09-24 22:03:29,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:30,455 INFO Connection check task start + +2025-09-24 22:03:30,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:30,455 INFO Out dated connection ,size=0 + +2025-09-24 22:03:30,455 INFO Connection check task end + +2025-09-24 22:03:32,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:33,456 INFO Connection check task start + +2025-09-24 22:03:33,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:33,456 INFO Out dated connection ,size=0 + +2025-09-24 22:03:33,456 INFO Connection check task end + +2025-09-24 22:03:35,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:36,458 INFO Connection check task start + +2025-09-24 22:03:36,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:36,458 INFO Out dated connection ,size=0 + +2025-09-24 22:03:36,458 INFO Connection check task end + +2025-09-24 22:03:38,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:39,460 INFO Connection check task start + +2025-09-24 22:03:39,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:39,460 INFO Out dated connection ,size=0 + +2025-09-24 22:03:39,460 INFO Connection check task end + +2025-09-24 22:03:41,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:42,460 INFO Connection check task start + +2025-09-24 22:03:42,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:42,460 INFO Out dated connection ,size=0 + +2025-09-24 22:03:42,460 INFO Connection check task end + +2025-09-24 22:03:44,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:45,463 INFO Connection check task start + +2025-09-24 22:03:45,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:45,463 INFO Out dated connection ,size=0 + +2025-09-24 22:03:45,463 INFO Connection check task end + +2025-09-24 22:03:47,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:48,464 INFO Connection check task start + +2025-09-24 22:03:48,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:48,464 INFO Out dated connection ,size=0 + +2025-09-24 22:03:48,464 INFO Connection check task end + +2025-09-24 22:03:50,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:51,465 INFO Connection check task start + +2025-09-24 22:03:51,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:51,465 INFO Out dated connection ,size=0 + +2025-09-24 22:03:51,465 INFO Connection check task end + +2025-09-24 22:03:53,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:54,466 INFO Connection check task start + +2025-09-24 22:03:54,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:54,466 INFO Out dated connection ,size=0 + +2025-09-24 22:03:54,466 INFO Connection check task end + +2025-09-24 22:03:56,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:03:57,466 INFO Connection check task start + +2025-09-24 22:03:57,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:03:57,467 INFO Out dated connection ,size=0 + +2025-09-24 22:03:57,467 INFO Connection check task end + +2025-09-24 22:03:59,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:00,468 INFO Connection check task start + +2025-09-24 22:04:00,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:00,468 INFO Out dated connection ,size=0 + +2025-09-24 22:04:00,468 INFO Connection check task end + +2025-09-24 22:04:02,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:03,468 INFO Connection check task start + +2025-09-24 22:04:03,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:03,469 INFO Out dated connection ,size=0 + +2025-09-24 22:04:03,469 INFO Connection check task end + +2025-09-24 22:04:05,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:06,469 INFO Connection check task start + +2025-09-24 22:04:06,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:06,469 INFO Out dated connection ,size=0 + +2025-09-24 22:04:06,469 INFO Connection check task end + +2025-09-24 22:04:08,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:09,469 INFO Connection check task start + +2025-09-24 22:04:09,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:09,470 INFO Out dated connection ,size=0 + +2025-09-24 22:04:09,470 INFO Connection check task end + +2025-09-24 22:04:11,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:12,471 INFO Connection check task start + +2025-09-24 22:04:12,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:12,471 INFO Out dated connection ,size=0 + +2025-09-24 22:04:12,471 INFO Connection check task end + +2025-09-24 22:04:14,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:15,472 INFO Connection check task start + +2025-09-24 22:04:15,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:15,472 INFO Out dated connection ,size=0 + +2025-09-24 22:04:15,472 INFO Connection check task end + +2025-09-24 22:04:17,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:18,472 INFO Connection check task start + +2025-09-24 22:04:18,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:18,473 INFO Out dated connection ,size=0 + +2025-09-24 22:04:18,473 INFO Connection check task end + +2025-09-24 22:04:20,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:21,473 INFO Connection check task start + +2025-09-24 22:04:21,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:21,473 INFO Out dated connection ,size=0 + +2025-09-24 22:04:21,473 INFO Connection check task end + +2025-09-24 22:04:23,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:24,473 INFO Connection check task start + +2025-09-24 22:04:24,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:24,474 INFO Out dated connection ,size=0 + +2025-09-24 22:04:24,474 INFO Connection check task end + +2025-09-24 22:04:26,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:27,474 INFO Connection check task start + +2025-09-24 22:04:27,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:27,474 INFO Out dated connection ,size=0 + +2025-09-24 22:04:27,474 INFO Connection check task end + +2025-09-24 22:04:29,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:30,475 INFO Connection check task start + +2025-09-24 22:04:30,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:30,475 INFO Out dated connection ,size=0 + +2025-09-24 22:04:30,475 INFO Connection check task end + +2025-09-24 22:04:32,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:33,476 INFO Connection check task start + +2025-09-24 22:04:33,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:33,476 INFO Out dated connection ,size=0 + +2025-09-24 22:04:33,476 INFO Connection check task end + +2025-09-24 22:04:35,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:36,477 INFO Connection check task start + +2025-09-24 22:04:36,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:36,477 INFO Out dated connection ,size=0 + +2025-09-24 22:04:36,477 INFO Connection check task end + +2025-09-24 22:04:38,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:39,479 INFO Connection check task start + +2025-09-24 22:04:39,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:39,479 INFO Out dated connection ,size=0 + +2025-09-24 22:04:39,479 INFO Connection check task end + +2025-09-24 22:04:41,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:42,479 INFO Connection check task start + +2025-09-24 22:04:42,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:42,479 INFO Out dated connection ,size=0 + +2025-09-24 22:04:42,479 INFO Connection check task end + +2025-09-24 22:04:44,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:45,481 INFO Connection check task start + +2025-09-24 22:04:45,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:45,481 INFO Out dated connection ,size=0 + +2025-09-24 22:04:45,481 INFO Connection check task end + +2025-09-24 22:04:47,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:48,481 INFO Connection check task start + +2025-09-24 22:04:48,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:48,482 INFO Out dated connection ,size=0 + +2025-09-24 22:04:48,482 INFO Connection check task end + +2025-09-24 22:04:50,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:51,484 INFO Connection check task start + +2025-09-24 22:04:51,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:51,484 INFO Out dated connection ,size=0 + +2025-09-24 22:04:51,484 INFO Connection check task end + +2025-09-24 22:04:53,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:54,484 INFO Connection check task start + +2025-09-24 22:04:54,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:54,484 INFO Out dated connection ,size=0 + +2025-09-24 22:04:54,484 INFO Connection check task end + +2025-09-24 22:04:56,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:04:57,486 INFO Connection check task start + +2025-09-24 22:04:57,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:04:57,487 INFO Out dated connection ,size=0 + +2025-09-24 22:04:57,487 INFO Connection check task end + +2025-09-24 22:04:59,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:00,489 INFO Connection check task start + +2025-09-24 22:05:00,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:00,489 INFO Out dated connection ,size=0 + +2025-09-24 22:05:00,489 INFO Connection check task end + +2025-09-24 22:05:02,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:03,490 INFO Connection check task start + +2025-09-24 22:05:03,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:03,490 INFO Out dated connection ,size=0 + +2025-09-24 22:05:03,490 INFO Connection check task end + +2025-09-24 22:05:05,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:06,490 INFO Connection check task start + +2025-09-24 22:05:06,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:06,490 INFO Out dated connection ,size=0 + +2025-09-24 22:05:06,490 INFO Connection check task end + +2025-09-24 22:05:08,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:09,491 INFO Connection check task start + +2025-09-24 22:05:09,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:09,491 INFO Out dated connection ,size=0 + +2025-09-24 22:05:09,491 INFO Connection check task end + +2025-09-24 22:05:11,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:12,492 INFO Connection check task start + +2025-09-24 22:05:12,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:12,492 INFO Out dated connection ,size=0 + +2025-09-24 22:05:12,492 INFO Connection check task end + +2025-09-24 22:05:14,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:15,492 INFO Connection check task start + +2025-09-24 22:05:15,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:15,492 INFO Out dated connection ,size=0 + +2025-09-24 22:05:15,493 INFO Connection check task end + +2025-09-24 22:05:17,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:18,493 INFO Connection check task start + +2025-09-24 22:05:18,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:18,493 INFO Out dated connection ,size=0 + +2025-09-24 22:05:18,493 INFO Connection check task end + +2025-09-24 22:05:20,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:21,494 INFO Connection check task start + +2025-09-24 22:05:21,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:21,494 INFO Out dated connection ,size=0 + +2025-09-24 22:05:21,494 INFO Connection check task end + +2025-09-24 22:05:23,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:24,496 INFO Connection check task start + +2025-09-24 22:05:24,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:24,496 INFO Out dated connection ,size=0 + +2025-09-24 22:05:24,496 INFO Connection check task end + +2025-09-24 22:05:26,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:27,497 INFO Connection check task start + +2025-09-24 22:05:27,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:27,497 INFO Out dated connection ,size=0 + +2025-09-24 22:05:27,497 INFO Connection check task end + +2025-09-24 22:05:29,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:30,498 INFO Connection check task start + +2025-09-24 22:05:30,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:30,498 INFO Out dated connection ,size=0 + +2025-09-24 22:05:30,498 INFO Connection check task end + +2025-09-24 22:05:32,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:33,499 INFO Connection check task start + +2025-09-24 22:05:33,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:33,499 INFO Out dated connection ,size=0 + +2025-09-24 22:05:33,499 INFO Connection check task end + +2025-09-24 22:05:35,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:36,501 INFO Connection check task start + +2025-09-24 22:05:36,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:36,501 INFO Out dated connection ,size=0 + +2025-09-24 22:05:36,501 INFO Connection check task end + +2025-09-24 22:05:38,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:39,501 INFO Connection check task start + +2025-09-24 22:05:39,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:39,501 INFO Out dated connection ,size=0 + +2025-09-24 22:05:39,501 INFO Connection check task end + +2025-09-24 22:05:41,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:42,503 INFO Connection check task start + +2025-09-24 22:05:42,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:42,506 INFO Out dated connection ,size=0 + +2025-09-24 22:05:42,506 INFO Connection check task end + +2025-09-24 22:05:44,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:45,508 INFO Connection check task start + +2025-09-24 22:05:45,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:45,508 INFO Out dated connection ,size=0 + +2025-09-24 22:05:45,508 INFO Connection check task end + +2025-09-24 22:05:47,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:48,508 INFO Connection check task start + +2025-09-24 22:05:48,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:48,508 INFO Out dated connection ,size=0 + +2025-09-24 22:05:48,509 INFO Connection check task end + +2025-09-24 22:05:50,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:51,509 INFO Connection check task start + +2025-09-24 22:05:51,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:51,509 INFO Out dated connection ,size=0 + +2025-09-24 22:05:51,509 INFO Connection check task end + +2025-09-24 22:05:53,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:54,511 INFO Connection check task start + +2025-09-24 22:05:54,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:54,511 INFO Out dated connection ,size=0 + +2025-09-24 22:05:54,511 INFO Connection check task end + +2025-09-24 22:05:56,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:05:57,511 INFO Connection check task start + +2025-09-24 22:05:57,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:05:57,511 INFO Out dated connection ,size=0 + +2025-09-24 22:05:57,511 INFO Connection check task end + +2025-09-24 22:05:59,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:00,512 INFO Connection check task start + +2025-09-24 22:06:00,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:00,513 INFO Out dated connection ,size=0 + +2025-09-24 22:06:00,513 INFO Connection check task end + +2025-09-24 22:06:02,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:03,513 INFO Connection check task start + +2025-09-24 22:06:03,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:03,513 INFO Out dated connection ,size=0 + +2025-09-24 22:06:03,513 INFO Connection check task end + +2025-09-24 22:06:05,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:06,514 INFO Connection check task start + +2025-09-24 22:06:06,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:06,514 INFO Out dated connection ,size=0 + +2025-09-24 22:06:06,514 INFO Connection check task end + +2025-09-24 22:06:08,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:09,516 INFO Connection check task start + +2025-09-24 22:06:09,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:09,516 INFO Out dated connection ,size=0 + +2025-09-24 22:06:09,516 INFO Connection check task end + +2025-09-24 22:06:11,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:12,518 INFO Connection check task start + +2025-09-24 22:06:12,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:12,518 INFO Out dated connection ,size=0 + +2025-09-24 22:06:12,518 INFO Connection check task end + +2025-09-24 22:06:14,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:15,518 INFO Connection check task start + +2025-09-24 22:06:15,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:15,518 INFO Out dated connection ,size=0 + +2025-09-24 22:06:15,518 INFO Connection check task end + +2025-09-24 22:06:17,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:18,519 INFO Connection check task start + +2025-09-24 22:06:18,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:18,519 INFO Out dated connection ,size=0 + +2025-09-24 22:06:18,519 INFO Connection check task end + +2025-09-24 22:06:20,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:21,520 INFO Connection check task start + +2025-09-24 22:06:21,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:21,521 INFO Out dated connection ,size=0 + +2025-09-24 22:06:21,521 INFO Connection check task end + +2025-09-24 22:06:23,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:24,521 INFO Connection check task start + +2025-09-24 22:06:24,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:24,521 INFO Out dated connection ,size=0 + +2025-09-24 22:06:24,521 INFO Connection check task end + +2025-09-24 22:06:26,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:27,523 INFO Connection check task start + +2025-09-24 22:06:27,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:27,523 INFO Out dated connection ,size=0 + +2025-09-24 22:06:27,523 INFO Connection check task end + +2025-09-24 22:06:29,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:30,524 INFO Connection check task start + +2025-09-24 22:06:30,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:30,524 INFO Out dated connection ,size=0 + +2025-09-24 22:06:30,525 INFO Connection check task end + +2025-09-24 22:06:32,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:33,527 INFO Connection check task start + +2025-09-24 22:06:33,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:33,527 INFO Out dated connection ,size=0 + +2025-09-24 22:06:33,527 INFO Connection check task end + +2025-09-24 22:06:35,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:36,527 INFO Connection check task start + +2025-09-24 22:06:36,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:36,527 INFO Out dated connection ,size=0 + +2025-09-24 22:06:36,527 INFO Connection check task end + +2025-09-24 22:06:38,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:39,528 INFO Connection check task start + +2025-09-24 22:06:39,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:39,528 INFO Out dated connection ,size=0 + +2025-09-24 22:06:39,528 INFO Connection check task end + +2025-09-24 22:06:41,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:42,529 INFO Connection check task start + +2025-09-24 22:06:42,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:42,529 INFO Out dated connection ,size=0 + +2025-09-24 22:06:42,529 INFO Connection check task end + +2025-09-24 22:06:44,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:45,531 INFO Connection check task start + +2025-09-24 22:06:45,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:45,531 INFO Out dated connection ,size=0 + +2025-09-24 22:06:45,531 INFO Connection check task end + +2025-09-24 22:06:47,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:48,532 INFO Connection check task start + +2025-09-24 22:06:48,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:48,532 INFO Out dated connection ,size=0 + +2025-09-24 22:06:48,532 INFO Connection check task end + +2025-09-24 22:06:50,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:51,534 INFO Connection check task start + +2025-09-24 22:06:51,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:51,535 INFO Out dated connection ,size=0 + +2025-09-24 22:06:51,535 INFO Connection check task end + +2025-09-24 22:06:53,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:54,537 INFO Connection check task start + +2025-09-24 22:06:54,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:54,537 INFO Out dated connection ,size=0 + +2025-09-24 22:06:54,537 INFO Connection check task end + +2025-09-24 22:06:56,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:06:57,539 INFO Connection check task start + +2025-09-24 22:06:57,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:06:57,539 INFO Out dated connection ,size=0 + +2025-09-24 22:06:57,540 INFO Connection check task end + +2025-09-24 22:06:59,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:00,541 INFO Connection check task start + +2025-09-24 22:07:00,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:00,542 INFO Out dated connection ,size=0 + +2025-09-24 22:07:00,542 INFO Connection check task end + +2025-09-24 22:07:02,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:03,543 INFO Connection check task start + +2025-09-24 22:07:03,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:03,544 INFO Out dated connection ,size=0 + +2025-09-24 22:07:03,544 INFO Connection check task end + +2025-09-24 22:07:05,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:06,545 INFO Connection check task start + +2025-09-24 22:07:06,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:06,545 INFO Out dated connection ,size=0 + +2025-09-24 22:07:06,545 INFO Connection check task end + +2025-09-24 22:07:08,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:09,545 INFO Connection check task start + +2025-09-24 22:07:09,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:09,546 INFO Out dated connection ,size=0 + +2025-09-24 22:07:09,546 INFO Connection check task end + +2025-09-24 22:07:11,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:12,548 INFO Connection check task start + +2025-09-24 22:07:12,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:12,548 INFO Out dated connection ,size=0 + +2025-09-24 22:07:12,548 INFO Connection check task end + +2025-09-24 22:07:14,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:15,548 INFO Connection check task start + +2025-09-24 22:07:15,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:15,548 INFO Out dated connection ,size=0 + +2025-09-24 22:07:15,549 INFO Connection check task end + +2025-09-24 22:07:17,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:18,550 INFO Connection check task start + +2025-09-24 22:07:18,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:18,550 INFO Out dated connection ,size=0 + +2025-09-24 22:07:18,550 INFO Connection check task end + +2025-09-24 22:07:20,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:21,550 INFO Connection check task start + +2025-09-24 22:07:21,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:21,551 INFO Out dated connection ,size=0 + +2025-09-24 22:07:21,551 INFO Connection check task end + +2025-09-24 22:07:23,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:24,552 INFO Connection check task start + +2025-09-24 22:07:24,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:24,552 INFO Out dated connection ,size=0 + +2025-09-24 22:07:24,552 INFO Connection check task end + +2025-09-24 22:07:26,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:27,553 INFO Connection check task start + +2025-09-24 22:07:27,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:27,553 INFO Out dated connection ,size=0 + +2025-09-24 22:07:27,553 INFO Connection check task end + +2025-09-24 22:07:29,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:30,554 INFO Connection check task start + +2025-09-24 22:07:30,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:30,555 INFO Out dated connection ,size=0 + +2025-09-24 22:07:30,555 INFO Connection check task end + +2025-09-24 22:07:32,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:33,555 INFO Connection check task start + +2025-09-24 22:07:33,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:33,555 INFO Out dated connection ,size=0 + +2025-09-24 22:07:33,555 INFO Connection check task end + +2025-09-24 22:07:35,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:36,556 INFO Connection check task start + +2025-09-24 22:07:36,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:36,556 INFO Out dated connection ,size=0 + +2025-09-24 22:07:36,556 INFO Connection check task end + +2025-09-24 22:07:38,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:39,557 INFO Connection check task start + +2025-09-24 22:07:39,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:39,558 INFO Out dated connection ,size=0 + +2025-09-24 22:07:39,558 INFO Connection check task end + +2025-09-24 22:07:41,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:42,558 INFO Connection check task start + +2025-09-24 22:07:42,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:42,558 INFO Out dated connection ,size=0 + +2025-09-24 22:07:42,558 INFO Connection check task end + +2025-09-24 22:07:44,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:45,560 INFO Connection check task start + +2025-09-24 22:07:45,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:45,560 INFO Out dated connection ,size=0 + +2025-09-24 22:07:45,560 INFO Connection check task end + +2025-09-24 22:07:47,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:48,560 INFO Connection check task start + +2025-09-24 22:07:48,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:48,561 INFO Out dated connection ,size=0 + +2025-09-24 22:07:48,561 INFO Connection check task end + +2025-09-24 22:07:50,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:51,561 INFO Connection check task start + +2025-09-24 22:07:51,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:51,561 INFO Out dated connection ,size=0 + +2025-09-24 22:07:51,561 INFO Connection check task end + +2025-09-24 22:07:53,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:54,561 INFO Connection check task start + +2025-09-24 22:07:54,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:54,561 INFO Out dated connection ,size=0 + +2025-09-24 22:07:54,561 INFO Connection check task end + +2025-09-24 22:07:56,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:07:57,562 INFO Connection check task start + +2025-09-24 22:07:57,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:07:57,562 INFO Out dated connection ,size=0 + +2025-09-24 22:07:57,562 INFO Connection check task end + +2025-09-24 22:07:59,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:00,564 INFO Connection check task start + +2025-09-24 22:08:00,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:00,564 INFO Out dated connection ,size=0 + +2025-09-24 22:08:00,564 INFO Connection check task end + +2025-09-24 22:08:02,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:03,566 INFO Connection check task start + +2025-09-24 22:08:03,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:03,566 INFO Out dated connection ,size=0 + +2025-09-24 22:08:03,566 INFO Connection check task end + +2025-09-24 22:08:05,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:06,567 INFO Connection check task start + +2025-09-24 22:08:06,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:06,567 INFO Out dated connection ,size=0 + +2025-09-24 22:08:06,567 INFO Connection check task end + +2025-09-24 22:08:08,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:09,569 INFO Connection check task start + +2025-09-24 22:08:09,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:09,570 INFO Out dated connection ,size=0 + +2025-09-24 22:08:09,570 INFO Connection check task end + +2025-09-24 22:08:11,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:12,570 INFO Connection check task start + +2025-09-24 22:08:12,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:12,570 INFO Out dated connection ,size=0 + +2025-09-24 22:08:12,570 INFO Connection check task end + +2025-09-24 22:08:14,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:15,571 INFO Connection check task start + +2025-09-24 22:08:15,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:15,571 INFO Out dated connection ,size=0 + +2025-09-24 22:08:15,571 INFO Connection check task end + +2025-09-24 22:08:17,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:18,572 INFO Connection check task start + +2025-09-24 22:08:18,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:18,572 INFO Out dated connection ,size=0 + +2025-09-24 22:08:18,572 INFO Connection check task end + +2025-09-24 22:08:20,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:21,574 INFO Connection check task start + +2025-09-24 22:08:21,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:21,574 INFO Out dated connection ,size=0 + +2025-09-24 22:08:21,574 INFO Connection check task end + +2025-09-24 22:08:23,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:24,574 INFO Connection check task start + +2025-09-24 22:08:24,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:24,574 INFO Out dated connection ,size=0 + +2025-09-24 22:08:24,574 INFO Connection check task end + +2025-09-24 22:08:26,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:27,575 INFO Connection check task start + +2025-09-24 22:08:27,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:27,575 INFO Out dated connection ,size=0 + +2025-09-24 22:08:27,575 INFO Connection check task end + +2025-09-24 22:08:29,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:30,575 INFO Connection check task start + +2025-09-24 22:08:30,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:30,575 INFO Out dated connection ,size=0 + +2025-09-24 22:08:30,575 INFO Connection check task end + +2025-09-24 22:08:32,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:33,576 INFO Connection check task start + +2025-09-24 22:08:33,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:33,576 INFO Out dated connection ,size=0 + +2025-09-24 22:08:33,576 INFO Connection check task end + +2025-09-24 22:08:35,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:36,578 INFO Connection check task start + +2025-09-24 22:08:36,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:36,578 INFO Out dated connection ,size=0 + +2025-09-24 22:08:36,579 INFO Connection check task end + +2025-09-24 22:08:38,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:39,580 INFO Connection check task start + +2025-09-24 22:08:39,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:39,580 INFO Out dated connection ,size=0 + +2025-09-24 22:08:39,580 INFO Connection check task end + +2025-09-24 22:08:41,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:42,580 INFO Connection check task start + +2025-09-24 22:08:42,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:42,581 INFO Out dated connection ,size=0 + +2025-09-24 22:08:42,581 INFO Connection check task end + +2025-09-24 22:08:44,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:45,583 INFO Connection check task start + +2025-09-24 22:08:45,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:45,583 INFO Out dated connection ,size=0 + +2025-09-24 22:08:45,583 INFO Connection check task end + +2025-09-24 22:08:47,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:48,584 INFO Connection check task start + +2025-09-24 22:08:48,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:48,585 INFO Out dated connection ,size=0 + +2025-09-24 22:08:48,585 INFO Connection check task end + +2025-09-24 22:08:50,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:51,585 INFO Connection check task start + +2025-09-24 22:08:51,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:51,585 INFO Out dated connection ,size=0 + +2025-09-24 22:08:51,585 INFO Connection check task end + +2025-09-24 22:08:53,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:54,587 INFO Connection check task start + +2025-09-24 22:08:54,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:54,587 INFO Out dated connection ,size=0 + +2025-09-24 22:08:54,587 INFO Connection check task end + +2025-09-24 22:08:56,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:08:57,588 INFO Connection check task start + +2025-09-24 22:08:57,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:08:57,588 INFO Out dated connection ,size=0 + +2025-09-24 22:08:57,588 INFO Connection check task end + +2025-09-24 22:08:59,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:00,589 INFO Connection check task start + +2025-09-24 22:09:00,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:00,589 INFO Out dated connection ,size=0 + +2025-09-24 22:09:00,589 INFO Connection check task end + +2025-09-24 22:09:02,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:03,592 INFO Connection check task start + +2025-09-24 22:09:03,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:03,603 INFO Out dated connection ,size=0 + +2025-09-24 22:09:03,603 INFO Connection check task end + +2025-09-24 22:09:05,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:06,604 INFO Connection check task start + +2025-09-24 22:09:06,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:06,604 INFO Out dated connection ,size=0 + +2025-09-24 22:09:06,604 INFO Connection check task end + +2025-09-24 22:09:08,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:09,604 INFO Connection check task start + +2025-09-24 22:09:09,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:09,604 INFO Out dated connection ,size=0 + +2025-09-24 22:09:09,604 INFO Connection check task end + +2025-09-24 22:09:11,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:12,605 INFO Connection check task start + +2025-09-24 22:09:12,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:12,605 INFO Out dated connection ,size=0 + +2025-09-24 22:09:12,605 INFO Connection check task end + +2025-09-24 22:09:14,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:15,606 INFO Connection check task start + +2025-09-24 22:09:15,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:15,606 INFO Out dated connection ,size=0 + +2025-09-24 22:09:15,606 INFO Connection check task end + +2025-09-24 22:09:17,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:18,607 INFO Connection check task start + +2025-09-24 22:09:18,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:18,607 INFO Out dated connection ,size=0 + +2025-09-24 22:09:18,607 INFO Connection check task end + +2025-09-24 22:09:20,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:21,607 INFO Connection check task start + +2025-09-24 22:09:21,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:21,607 INFO Out dated connection ,size=0 + +2025-09-24 22:09:21,608 INFO Connection check task end + +2025-09-24 22:09:23,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:24,609 INFO Connection check task start + +2025-09-24 22:09:24,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:24,609 INFO Out dated connection ,size=0 + +2025-09-24 22:09:24,609 INFO Connection check task end + +2025-09-24 22:09:26,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:27,611 INFO Connection check task start + +2025-09-24 22:09:27,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:27,611 INFO Out dated connection ,size=0 + +2025-09-24 22:09:27,611 INFO Connection check task end + +2025-09-24 22:09:29,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:30,611 INFO Connection check task start + +2025-09-24 22:09:30,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:30,612 INFO Out dated connection ,size=0 + +2025-09-24 22:09:30,612 INFO Connection check task end + +2025-09-24 22:09:32,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:33,612 INFO Connection check task start + +2025-09-24 22:09:33,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:33,612 INFO Out dated connection ,size=0 + +2025-09-24 22:09:33,612 INFO Connection check task end + +2025-09-24 22:09:35,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:36,613 INFO Connection check task start + +2025-09-24 22:09:36,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:36,613 INFO Out dated connection ,size=0 + +2025-09-24 22:09:36,613 INFO Connection check task end + +2025-09-24 22:09:38,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:39,615 INFO Connection check task start + +2025-09-24 22:09:39,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:39,615 INFO Out dated connection ,size=0 + +2025-09-24 22:09:39,615 INFO Connection check task end + +2025-09-24 22:09:41,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:42,615 INFO Connection check task start + +2025-09-24 22:09:42,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:42,616 INFO Out dated connection ,size=0 + +2025-09-24 22:09:42,616 INFO Connection check task end + +2025-09-24 22:09:44,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:45,617 INFO Connection check task start + +2025-09-24 22:09:45,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:45,617 INFO Out dated connection ,size=0 + +2025-09-24 22:09:45,617 INFO Connection check task end + +2025-09-24 22:09:47,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:48,618 INFO Connection check task start + +2025-09-24 22:09:48,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:48,618 INFO Out dated connection ,size=0 + +2025-09-24 22:09:48,618 INFO Connection check task end + +2025-09-24 22:09:50,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:51,619 INFO Connection check task start + +2025-09-24 22:09:51,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:51,619 INFO Out dated connection ,size=0 + +2025-09-24 22:09:51,619 INFO Connection check task end + +2025-09-24 22:09:53,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:54,621 INFO Connection check task start + +2025-09-24 22:09:54,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:54,621 INFO Out dated connection ,size=0 + +2025-09-24 22:09:54,621 INFO Connection check task end + +2025-09-24 22:09:56,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:09:57,623 INFO Connection check task start + +2025-09-24 22:09:57,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:09:57,624 INFO Out dated connection ,size=0 + +2025-09-24 22:09:57,624 INFO Connection check task end + +2025-09-24 22:09:59,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:00,624 INFO Connection check task start + +2025-09-24 22:10:00,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:00,624 INFO Out dated connection ,size=0 + +2025-09-24 22:10:00,624 INFO Connection check task end + +2025-09-24 22:10:02,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:03,626 INFO Connection check task start + +2025-09-24 22:10:03,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:03,626 INFO Out dated connection ,size=0 + +2025-09-24 22:10:03,626 INFO Connection check task end + +2025-09-24 22:10:05,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:06,627 INFO Connection check task start + +2025-09-24 22:10:06,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:06,627 INFO Out dated connection ,size=0 + +2025-09-24 22:10:06,627 INFO Connection check task end + +2025-09-24 22:10:08,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:09,629 INFO Connection check task start + +2025-09-24 22:10:09,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:09,629 INFO Out dated connection ,size=0 + +2025-09-24 22:10:09,629 INFO Connection check task end + +2025-09-24 22:10:11,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:12,631 INFO Connection check task start + +2025-09-24 22:10:12,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:12,632 INFO Out dated connection ,size=0 + +2025-09-24 22:10:12,632 INFO Connection check task end + +2025-09-24 22:10:14,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:15,634 INFO Connection check task start + +2025-09-24 22:10:15,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:15,634 INFO Out dated connection ,size=0 + +2025-09-24 22:10:15,634 INFO Connection check task end + +2025-09-24 22:10:17,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:18,635 INFO Connection check task start + +2025-09-24 22:10:18,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:18,635 INFO Out dated connection ,size=0 + +2025-09-24 22:10:18,635 INFO Connection check task end + +2025-09-24 22:10:20,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:21,635 INFO Connection check task start + +2025-09-24 22:10:21,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:21,635 INFO Out dated connection ,size=0 + +2025-09-24 22:10:21,635 INFO Connection check task end + +2025-09-24 22:10:23,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:24,636 INFO Connection check task start + +2025-09-24 22:10:24,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:24,636 INFO Out dated connection ,size=0 + +2025-09-24 22:10:24,636 INFO Connection check task end + +2025-09-24 22:10:26,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:27,638 INFO Connection check task start + +2025-09-24 22:10:27,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:27,639 INFO Out dated connection ,size=0 + +2025-09-24 22:10:27,639 INFO Connection check task end + +2025-09-24 22:10:29,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:30,640 INFO Connection check task start + +2025-09-24 22:10:30,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:30,641 INFO Out dated connection ,size=0 + +2025-09-24 22:10:30,641 INFO Connection check task end + +2025-09-24 22:10:32,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:33,641 INFO Connection check task start + +2025-09-24 22:10:33,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:33,641 INFO Out dated connection ,size=0 + +2025-09-24 22:10:33,641 INFO Connection check task end + +2025-09-24 22:10:35,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:36,641 INFO Connection check task start + +2025-09-24 22:10:36,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:36,657 INFO Out dated connection ,size=0 + +2025-09-24 22:10:36,657 INFO Connection check task end + +2025-09-24 22:10:38,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:39,659 INFO Connection check task start + +2025-09-24 22:10:39,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:39,659 INFO Out dated connection ,size=0 + +2025-09-24 22:10:39,659 INFO Connection check task end + +2025-09-24 22:10:41,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:42,661 INFO Connection check task start + +2025-09-24 22:10:42,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:42,661 INFO Out dated connection ,size=0 + +2025-09-24 22:10:42,661 INFO Connection check task end + +2025-09-24 22:10:44,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:45,663 INFO Connection check task start + +2025-09-24 22:10:45,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:45,663 INFO Out dated connection ,size=0 + +2025-09-24 22:10:45,663 INFO Connection check task end + +2025-09-24 22:10:47,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:48,665 INFO Connection check task start + +2025-09-24 22:10:48,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:48,665 INFO Out dated connection ,size=0 + +2025-09-24 22:10:48,665 INFO Connection check task end + +2025-09-24 22:10:50,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:51,667 INFO Connection check task start + +2025-09-24 22:10:51,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:51,667 INFO Out dated connection ,size=0 + +2025-09-24 22:10:51,667 INFO Connection check task end + +2025-09-24 22:10:53,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:54,669 INFO Connection check task start + +2025-09-24 22:10:54,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:54,669 INFO Out dated connection ,size=0 + +2025-09-24 22:10:54,669 INFO Connection check task end + +2025-09-24 22:10:56,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:10:57,669 INFO Connection check task start + +2025-09-24 22:10:57,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:10:57,670 INFO Out dated connection ,size=0 + +2025-09-24 22:10:57,670 INFO Connection check task end + +2025-09-24 22:10:59,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:00,671 INFO Connection check task start + +2025-09-24 22:11:00,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:00,671 INFO Out dated connection ,size=0 + +2025-09-24 22:11:00,671 INFO Connection check task end + +2025-09-24 22:11:02,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:03,671 INFO Connection check task start + +2025-09-24 22:11:03,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:03,672 INFO Out dated connection ,size=0 + +2025-09-24 22:11:03,672 INFO Connection check task end + +2025-09-24 22:11:05,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:06,673 INFO Connection check task start + +2025-09-24 22:11:06,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:06,674 INFO Out dated connection ,size=0 + +2025-09-24 22:11:06,674 INFO Connection check task end + +2025-09-24 22:11:08,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:09,675 INFO Connection check task start + +2025-09-24 22:11:09,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:09,675 INFO Out dated connection ,size=0 + +2025-09-24 22:11:09,676 INFO Connection check task end + +2025-09-24 22:11:11,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:12,678 INFO Connection check task start + +2025-09-24 22:11:12,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:12,678 INFO Out dated connection ,size=0 + +2025-09-24 22:11:12,678 INFO Connection check task end + +2025-09-24 22:11:14,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:15,678 INFO Connection check task start + +2025-09-24 22:11:15,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:15,679 INFO Out dated connection ,size=0 + +2025-09-24 22:11:15,679 INFO Connection check task end + +2025-09-24 22:11:17,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:18,681 INFO Connection check task start + +2025-09-24 22:11:18,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:18,681 INFO Out dated connection ,size=0 + +2025-09-24 22:11:18,681 INFO Connection check task end + +2025-09-24 22:11:20,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:21,683 INFO Connection check task start + +2025-09-24 22:11:21,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:21,683 INFO Out dated connection ,size=0 + +2025-09-24 22:11:21,683 INFO Connection check task end + +2025-09-24 22:11:23,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:24,684 INFO Connection check task start + +2025-09-24 22:11:24,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:24,684 INFO Out dated connection ,size=0 + +2025-09-24 22:11:24,684 INFO Connection check task end + +2025-09-24 22:11:26,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:27,685 INFO Connection check task start + +2025-09-24 22:11:27,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:27,685 INFO Out dated connection ,size=0 + +2025-09-24 22:11:27,686 INFO Connection check task end + +2025-09-24 22:11:29,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:30,686 INFO Connection check task start + +2025-09-24 22:11:30,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:30,687 INFO Out dated connection ,size=0 + +2025-09-24 22:11:30,687 INFO Connection check task end + +2025-09-24 22:11:32,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:33,688 INFO Connection check task start + +2025-09-24 22:11:33,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:33,688 INFO Out dated connection ,size=0 + +2025-09-24 22:11:33,688 INFO Connection check task end + +2025-09-24 22:11:35,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:36,688 INFO Connection check task start + +2025-09-24 22:11:36,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:36,689 INFO Out dated connection ,size=0 + +2025-09-24 22:11:36,689 INFO Connection check task end + +2025-09-24 22:11:38,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:39,689 INFO Connection check task start + +2025-09-24 22:11:39,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:39,689 INFO Out dated connection ,size=0 + +2025-09-24 22:11:39,689 INFO Connection check task end + +2025-09-24 22:11:41,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:42,690 INFO Connection check task start + +2025-09-24 22:11:42,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:42,690 INFO Out dated connection ,size=0 + +2025-09-24 22:11:42,690 INFO Connection check task end + +2025-09-24 22:11:44,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:45,690 INFO Connection check task start + +2025-09-24 22:11:45,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:45,690 INFO Out dated connection ,size=0 + +2025-09-24 22:11:45,690 INFO Connection check task end + +2025-09-24 22:11:47,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:48,692 INFO Connection check task start + +2025-09-24 22:11:48,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:48,693 INFO Out dated connection ,size=0 + +2025-09-24 22:11:48,693 INFO Connection check task end + +2025-09-24 22:11:50,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:51,693 INFO Connection check task start + +2025-09-24 22:11:51,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:51,693 INFO Out dated connection ,size=0 + +2025-09-24 22:11:51,693 INFO Connection check task end + +2025-09-24 22:11:53,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:54,694 INFO Connection check task start + +2025-09-24 22:11:54,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:54,694 INFO Out dated connection ,size=0 + +2025-09-24 22:11:54,694 INFO Connection check task end + +2025-09-24 22:11:56,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:11:57,694 INFO Connection check task start + +2025-09-24 22:11:57,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:11:57,695 INFO Out dated connection ,size=0 + +2025-09-24 22:11:57,695 INFO Connection check task end + +2025-09-24 22:11:59,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:00,695 INFO Connection check task start + +2025-09-24 22:12:00,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:00,695 INFO Out dated connection ,size=0 + +2025-09-24 22:12:00,695 INFO Connection check task end + +2025-09-24 22:12:02,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:03,697 INFO Connection check task start + +2025-09-24 22:12:03,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:03,698 INFO Out dated connection ,size=0 + +2025-09-24 22:12:03,698 INFO Connection check task end + +2025-09-24 22:12:05,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:06,698 INFO Connection check task start + +2025-09-24 22:12:06,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:06,699 INFO Out dated connection ,size=0 + +2025-09-24 22:12:06,699 INFO Connection check task end + +2025-09-24 22:12:08,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:09,701 INFO Connection check task start + +2025-09-24 22:12:09,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:09,701 INFO Out dated connection ,size=0 + +2025-09-24 22:12:09,701 INFO Connection check task end + +2025-09-24 22:12:11,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:12,702 INFO Connection check task start + +2025-09-24 22:12:12,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:12,702 INFO Out dated connection ,size=0 + +2025-09-24 22:12:12,702 INFO Connection check task end + +2025-09-24 22:12:14,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:15,703 INFO Connection check task start + +2025-09-24 22:12:15,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:15,703 INFO Out dated connection ,size=0 + +2025-09-24 22:12:15,703 INFO Connection check task end + +2025-09-24 22:12:17,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:18,703 INFO Connection check task start + +2025-09-24 22:12:18,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:18,704 INFO Out dated connection ,size=0 + +2025-09-24 22:12:18,704 INFO Connection check task end + +2025-09-24 22:12:20,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:21,704 INFO Connection check task start + +2025-09-24 22:12:21,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:21,704 INFO Out dated connection ,size=0 + +2025-09-24 22:12:21,704 INFO Connection check task end + +2025-09-24 22:12:23,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:24,705 INFO Connection check task start + +2025-09-24 22:12:24,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:24,705 INFO Out dated connection ,size=0 + +2025-09-24 22:12:24,705 INFO Connection check task end + +2025-09-24 22:12:26,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:27,707 INFO Connection check task start + +2025-09-24 22:12:27,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:27,707 INFO Out dated connection ,size=0 + +2025-09-24 22:12:27,707 INFO Connection check task end + +2025-09-24 22:12:29,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:30,708 INFO Connection check task start + +2025-09-24 22:12:30,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:30,708 INFO Out dated connection ,size=0 + +2025-09-24 22:12:30,708 INFO Connection check task end + +2025-09-24 22:12:32,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:33,710 INFO Connection check task start + +2025-09-24 22:12:33,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:33,710 INFO Out dated connection ,size=0 + +2025-09-24 22:12:33,710 INFO Connection check task end + +2025-09-24 22:12:35,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:36,713 INFO Connection check task start + +2025-09-24 22:12:36,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:36,713 INFO Out dated connection ,size=0 + +2025-09-24 22:12:36,713 INFO Connection check task end + +2025-09-24 22:12:38,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:39,715 INFO Connection check task start + +2025-09-24 22:12:39,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:39,715 INFO Out dated connection ,size=0 + +2025-09-24 22:12:39,715 INFO Connection check task end + +2025-09-24 22:12:41,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:42,716 INFO Connection check task start + +2025-09-24 22:12:42,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:42,717 INFO Out dated connection ,size=0 + +2025-09-24 22:12:42,717 INFO Connection check task end + +2025-09-24 22:12:44,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:45,717 INFO Connection check task start + +2025-09-24 22:12:45,717 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:45,717 INFO Out dated connection ,size=0 + +2025-09-24 22:12:45,717 INFO Connection check task end + +2025-09-24 22:12:47,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:48,718 INFO Connection check task start + +2025-09-24 22:12:48,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:48,718 INFO Out dated connection ,size=0 + +2025-09-24 22:12:48,718 INFO Connection check task end + +2025-09-24 22:12:50,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:51,718 INFO Connection check task start + +2025-09-24 22:12:51,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:51,718 INFO Out dated connection ,size=0 + +2025-09-24 22:12:51,718 INFO Connection check task end + +2025-09-24 22:12:53,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:54,719 INFO Connection check task start + +2025-09-24 22:12:54,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:54,720 INFO Out dated connection ,size=0 + +2025-09-24 22:12:54,720 INFO Connection check task end + +2025-09-24 22:12:56,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:12:57,722 INFO Connection check task start + +2025-09-24 22:12:57,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:12:57,722 INFO Out dated connection ,size=0 + +2025-09-24 22:12:57,722 INFO Connection check task end + +2025-09-24 22:12:59,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:00,723 INFO Connection check task start + +2025-09-24 22:13:00,723 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:00,723 INFO Out dated connection ,size=0 + +2025-09-24 22:13:00,723 INFO Connection check task end + +2025-09-24 22:13:02,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:03,725 INFO Connection check task start + +2025-09-24 22:13:03,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:03,725 INFO Out dated connection ,size=0 + +2025-09-24 22:13:03,726 INFO Connection check task end + +2025-09-24 22:13:05,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:06,728 INFO Connection check task start + +2025-09-24 22:13:06,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:06,728 INFO Out dated connection ,size=0 + +2025-09-24 22:13:06,728 INFO Connection check task end + +2025-09-24 22:13:08,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:09,728 INFO Connection check task start + +2025-09-24 22:13:09,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:09,729 INFO Out dated connection ,size=0 + +2025-09-24 22:13:09,729 INFO Connection check task end + +2025-09-24 22:13:11,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:12,730 INFO Connection check task start + +2025-09-24 22:13:12,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:12,730 INFO Out dated connection ,size=0 + +2025-09-24 22:13:12,730 INFO Connection check task end + +2025-09-24 22:13:14,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:15,731 INFO Connection check task start + +2025-09-24 22:13:15,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:15,731 INFO Out dated connection ,size=0 + +2025-09-24 22:13:15,731 INFO Connection check task end + +2025-09-24 22:13:17,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:18,732 INFO Connection check task start + +2025-09-24 22:13:18,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:18,732 INFO Out dated connection ,size=0 + +2025-09-24 22:13:18,732 INFO Connection check task end + +2025-09-24 22:13:20,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:21,733 INFO Connection check task start + +2025-09-24 22:13:21,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:21,733 INFO Out dated connection ,size=0 + +2025-09-24 22:13:21,733 INFO Connection check task end + +2025-09-24 22:13:23,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:24,734 INFO Connection check task start + +2025-09-24 22:13:24,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:24,734 INFO Out dated connection ,size=0 + +2025-09-24 22:13:24,734 INFO Connection check task end + +2025-09-24 22:13:26,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:27,736 INFO Connection check task start + +2025-09-24 22:13:27,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:27,736 INFO Out dated connection ,size=0 + +2025-09-24 22:13:27,736 INFO Connection check task end + +2025-09-24 22:13:30,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:30,737 INFO Connection check task start + +2025-09-24 22:13:30,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:30,737 INFO Out dated connection ,size=0 + +2025-09-24 22:13:30,737 INFO Connection check task end + +2025-09-24 22:13:33,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:33,738 INFO Connection check task start + +2025-09-24 22:13:33,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:33,738 INFO Out dated connection ,size=0 + +2025-09-24 22:13:33,738 INFO Connection check task end + +2025-09-24 22:13:36,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:36,740 INFO Connection check task start + +2025-09-24 22:13:36,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:36,740 INFO Out dated connection ,size=0 + +2025-09-24 22:13:36,741 INFO Connection check task end + +2025-09-24 22:13:39,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:39,742 INFO Connection check task start + +2025-09-24 22:13:39,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:39,742 INFO Out dated connection ,size=0 + +2025-09-24 22:13:39,742 INFO Connection check task end + +2025-09-24 22:13:42,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:42,743 INFO Connection check task start + +2025-09-24 22:13:42,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:42,743 INFO Out dated connection ,size=0 + +2025-09-24 22:13:42,744 INFO Connection check task end + +2025-09-24 22:13:45,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:45,746 INFO Connection check task start + +2025-09-24 22:13:45,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:45,746 INFO Out dated connection ,size=0 + +2025-09-24 22:13:45,746 INFO Connection check task end + +2025-09-24 22:13:48,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:48,746 INFO Connection check task start + +2025-09-24 22:13:48,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:48,746 INFO Out dated connection ,size=0 + +2025-09-24 22:13:48,747 INFO Connection check task end + +2025-09-24 22:13:51,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:51,748 INFO Connection check task start + +2025-09-24 22:13:51,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:51,748 INFO Out dated connection ,size=0 + +2025-09-24 22:13:51,748 INFO Connection check task end + +2025-09-24 22:13:54,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:54,749 INFO Connection check task start + +2025-09-24 22:13:54,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:54,749 INFO Out dated connection ,size=0 + +2025-09-24 22:13:54,749 INFO Connection check task end + +2025-09-24 22:13:57,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:13:57,749 INFO Connection check task start + +2025-09-24 22:13:57,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:13:57,749 INFO Out dated connection ,size=0 + +2025-09-24 22:13:57,749 INFO Connection check task end + +2025-09-24 22:14:00,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:00,750 INFO Connection check task start + +2025-09-24 22:14:00,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:00,751 INFO Out dated connection ,size=0 + +2025-09-24 22:14:00,751 INFO Connection check task end + +2025-09-24 22:14:03,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:03,751 INFO Connection check task start + +2025-09-24 22:14:03,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:03,751 INFO Out dated connection ,size=0 + +2025-09-24 22:14:03,751 INFO Connection check task end + +2025-09-24 22:14:06,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:06,751 INFO Connection check task start + +2025-09-24 22:14:06,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:06,752 INFO Out dated connection ,size=0 + +2025-09-24 22:14:06,752 INFO Connection check task end + +2025-09-24 22:14:09,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:09,752 INFO Connection check task start + +2025-09-24 22:14:09,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:09,752 INFO Out dated connection ,size=0 + +2025-09-24 22:14:09,752 INFO Connection check task end + +2025-09-24 22:14:12,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:12,753 INFO Connection check task start + +2025-09-24 22:14:12,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:12,753 INFO Out dated connection ,size=0 + +2025-09-24 22:14:12,753 INFO Connection check task end + +2025-09-24 22:14:15,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:15,755 INFO Connection check task start + +2025-09-24 22:14:15,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:15,755 INFO Out dated connection ,size=0 + +2025-09-24 22:14:15,755 INFO Connection check task end + +2025-09-24 22:14:18,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:18,755 INFO Connection check task start + +2025-09-24 22:14:18,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:18,755 INFO Out dated connection ,size=0 + +2025-09-24 22:14:18,755 INFO Connection check task end + +2025-09-24 22:14:21,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:21,756 INFO Connection check task start + +2025-09-24 22:14:21,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:21,756 INFO Out dated connection ,size=0 + +2025-09-24 22:14:21,756 INFO Connection check task end + +2025-09-24 22:14:24,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:24,757 INFO Connection check task start + +2025-09-24 22:14:24,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:24,757 INFO Out dated connection ,size=0 + +2025-09-24 22:14:24,757 INFO Connection check task end + +2025-09-24 22:14:27,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:27,759 INFO Connection check task start + +2025-09-24 22:14:27,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:27,759 INFO Out dated connection ,size=0 + +2025-09-24 22:14:27,759 INFO Connection check task end + +2025-09-24 22:14:30,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:30,760 INFO Connection check task start + +2025-09-24 22:14:30,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:30,760 INFO Out dated connection ,size=0 + +2025-09-24 22:14:30,760 INFO Connection check task end + +2025-09-24 22:14:33,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:33,762 INFO Connection check task start + +2025-09-24 22:14:33,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:33,762 INFO Out dated connection ,size=0 + +2025-09-24 22:14:33,762 INFO Connection check task end + +2025-09-24 22:14:36,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:36,762 INFO Connection check task start + +2025-09-24 22:14:36,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:36,763 INFO Out dated connection ,size=0 + +2025-09-24 22:14:36,763 INFO Connection check task end + +2025-09-24 22:14:39,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:39,765 INFO Connection check task start + +2025-09-24 22:14:39,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:39,765 INFO Out dated connection ,size=0 + +2025-09-24 22:14:39,765 INFO Connection check task end + +2025-09-24 22:14:42,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:42,767 INFO Connection check task start + +2025-09-24 22:14:42,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:42,767 INFO Out dated connection ,size=0 + +2025-09-24 22:14:42,767 INFO Connection check task end + +2025-09-24 22:14:45,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:45,769 INFO Connection check task start + +2025-09-24 22:14:45,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:45,769 INFO Out dated connection ,size=0 + +2025-09-24 22:14:45,769 INFO Connection check task end + +2025-09-24 22:14:48,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:48,771 INFO Connection check task start + +2025-09-24 22:14:48,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:48,771 INFO Out dated connection ,size=0 + +2025-09-24 22:14:48,771 INFO Connection check task end + +2025-09-24 22:14:51,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:51,772 INFO Connection check task start + +2025-09-24 22:14:51,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:51,773 INFO Out dated connection ,size=0 + +2025-09-24 22:14:51,773 INFO Connection check task end + +2025-09-24 22:14:54,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:54,775 INFO Connection check task start + +2025-09-24 22:14:54,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:54,775 INFO Out dated connection ,size=0 + +2025-09-24 22:14:54,775 INFO Connection check task end + +2025-09-24 22:14:57,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:14:57,777 INFO Connection check task start + +2025-09-24 22:14:57,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:14:57,777 INFO Out dated connection ,size=0 + +2025-09-24 22:14:57,777 INFO Connection check task end + +2025-09-24 22:15:00,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:00,779 INFO Connection check task start + +2025-09-24 22:15:00,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:00,780 INFO Out dated connection ,size=0 + +2025-09-24 22:15:00,780 INFO Connection check task end + +2025-09-24 22:15:03,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:03,781 INFO Connection check task start + +2025-09-24 22:15:03,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:03,782 INFO Out dated connection ,size=0 + +2025-09-24 22:15:03,782 INFO Connection check task end + +2025-09-24 22:15:06,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:06,782 INFO Connection check task start + +2025-09-24 22:15:06,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:06,782 INFO Out dated connection ,size=0 + +2025-09-24 22:15:06,782 INFO Connection check task end + +2025-09-24 22:15:09,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:09,784 INFO Connection check task start + +2025-09-24 22:15:09,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:09,784 INFO Out dated connection ,size=0 + +2025-09-24 22:15:09,784 INFO Connection check task end + +2025-09-24 22:15:12,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:12,785 INFO Connection check task start + +2025-09-24 22:15:12,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:12,785 INFO Out dated connection ,size=0 + +2025-09-24 22:15:12,785 INFO Connection check task end + +2025-09-24 22:15:15,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:15,785 INFO Connection check task start + +2025-09-24 22:15:15,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:15,786 INFO Out dated connection ,size=0 + +2025-09-24 22:15:15,786 INFO Connection check task end + +2025-09-24 22:15:18,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:18,788 INFO Connection check task start + +2025-09-24 22:15:18,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:18,788 INFO Out dated connection ,size=0 + +2025-09-24 22:15:18,788 INFO Connection check task end + +2025-09-24 22:15:21,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:21,788 INFO Connection check task start + +2025-09-24 22:15:21,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:21,788 INFO Out dated connection ,size=0 + +2025-09-24 22:15:21,788 INFO Connection check task end + +2025-09-24 22:15:24,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:24,789 INFO Connection check task start + +2025-09-24 22:15:24,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:24,789 INFO Out dated connection ,size=0 + +2025-09-24 22:15:24,789 INFO Connection check task end + +2025-09-24 22:15:27,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:27,791 INFO Connection check task start + +2025-09-24 22:15:27,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:27,791 INFO Out dated connection ,size=0 + +2025-09-24 22:15:27,791 INFO Connection check task end + +2025-09-24 22:15:30,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:30,792 INFO Connection check task start + +2025-09-24 22:15:30,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:30,792 INFO Out dated connection ,size=0 + +2025-09-24 22:15:30,792 INFO Connection check task end + +2025-09-24 22:15:33,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:33,794 INFO Connection check task start + +2025-09-24 22:15:33,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:33,795 INFO Out dated connection ,size=0 + +2025-09-24 22:15:33,795 INFO Connection check task end + +2025-09-24 22:15:36,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:36,795 INFO Connection check task start + +2025-09-24 22:15:36,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:36,795 INFO Out dated connection ,size=0 + +2025-09-24 22:15:36,795 INFO Connection check task end + +2025-09-24 22:15:39,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:39,796 INFO Connection check task start + +2025-09-24 22:15:39,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:39,797 INFO Out dated connection ,size=0 + +2025-09-24 22:15:39,797 INFO Connection check task end + +2025-09-24 22:15:42,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:42,797 INFO Connection check task start + +2025-09-24 22:15:42,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:42,797 INFO Out dated connection ,size=0 + +2025-09-24 22:15:42,797 INFO Connection check task end + +2025-09-24 22:15:45,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:45,798 INFO Connection check task start + +2025-09-24 22:15:45,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:45,798 INFO Out dated connection ,size=0 + +2025-09-24 22:15:45,798 INFO Connection check task end + +2025-09-24 22:15:48,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:48,799 INFO Connection check task start + +2025-09-24 22:15:48,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:48,799 INFO Out dated connection ,size=0 + +2025-09-24 22:15:48,799 INFO Connection check task end + +2025-09-24 22:15:51,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:51,800 INFO Connection check task start + +2025-09-24 22:15:51,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:51,800 INFO Out dated connection ,size=0 + +2025-09-24 22:15:51,800 INFO Connection check task end + +2025-09-24 22:15:54,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:54,800 INFO Connection check task start + +2025-09-24 22:15:54,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:54,800 INFO Out dated connection ,size=0 + +2025-09-24 22:15:54,800 INFO Connection check task end + +2025-09-24 22:15:57,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:15:57,803 INFO Connection check task start + +2025-09-24 22:15:57,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:15:57,803 INFO Out dated connection ,size=0 + +2025-09-24 22:15:57,803 INFO Connection check task end + +2025-09-24 22:16:00,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:00,803 INFO Connection check task start + +2025-09-24 22:16:00,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:00,803 INFO Out dated connection ,size=0 + +2025-09-24 22:16:00,803 INFO Connection check task end + +2025-09-24 22:16:03,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:03,804 INFO Connection check task start + +2025-09-24 22:16:03,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:03,804 INFO Out dated connection ,size=0 + +2025-09-24 22:16:03,804 INFO Connection check task end + +2025-09-24 22:16:06,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:06,806 INFO Connection check task start + +2025-09-24 22:16:06,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:06,806 INFO Out dated connection ,size=0 + +2025-09-24 22:16:06,806 INFO Connection check task end + +2025-09-24 22:16:09,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:09,809 INFO Connection check task start + +2025-09-24 22:16:09,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:09,809 INFO Out dated connection ,size=0 + +2025-09-24 22:16:09,809 INFO Connection check task end + +2025-09-24 22:16:12,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:12,811 INFO Connection check task start + +2025-09-24 22:16:12,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:12,811 INFO Out dated connection ,size=0 + +2025-09-24 22:16:12,811 INFO Connection check task end + +2025-09-24 22:16:15,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:15,812 INFO Connection check task start + +2025-09-24 22:16:15,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:15,812 INFO Out dated connection ,size=0 + +2025-09-24 22:16:15,812 INFO Connection check task end + +2025-09-24 22:16:18,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:18,814 INFO Connection check task start + +2025-09-24 22:16:18,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:18,814 INFO Out dated connection ,size=0 + +2025-09-24 22:16:18,814 INFO Connection check task end + +2025-09-24 22:16:21,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:21,815 INFO Connection check task start + +2025-09-24 22:16:21,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:21,815 INFO Out dated connection ,size=0 + +2025-09-24 22:16:21,815 INFO Connection check task end + +2025-09-24 22:16:24,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:24,817 INFO Connection check task start + +2025-09-24 22:16:24,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:24,817 INFO Out dated connection ,size=0 + +2025-09-24 22:16:24,817 INFO Connection check task end + +2025-09-24 22:16:27,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:27,817 INFO Connection check task start + +2025-09-24 22:16:27,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:27,818 INFO Out dated connection ,size=0 + +2025-09-24 22:16:27,818 INFO Connection check task end + +2025-09-24 22:16:30,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:30,818 INFO Connection check task start + +2025-09-24 22:16:30,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:30,818 INFO Out dated connection ,size=0 + +2025-09-24 22:16:30,818 INFO Connection check task end + +2025-09-24 22:16:33,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:33,819 INFO Connection check task start + +2025-09-24 22:16:33,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:33,819 INFO Out dated connection ,size=0 + +2025-09-24 22:16:33,819 INFO Connection check task end + +2025-09-24 22:16:36,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:36,821 INFO Connection check task start + +2025-09-24 22:16:36,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:36,821 INFO Out dated connection ,size=0 + +2025-09-24 22:16:36,821 INFO Connection check task end + +2025-09-24 22:16:39,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:39,823 INFO Connection check task start + +2025-09-24 22:16:39,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:39,823 INFO Out dated connection ,size=0 + +2025-09-24 22:16:39,823 INFO Connection check task end + +2025-09-24 22:16:42,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:42,823 INFO Connection check task start + +2025-09-24 22:16:42,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:42,824 INFO Out dated connection ,size=0 + +2025-09-24 22:16:42,824 INFO Connection check task end + +2025-09-24 22:16:45,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:45,824 INFO Connection check task start + +2025-09-24 22:16:45,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:45,824 INFO Out dated connection ,size=0 + +2025-09-24 22:16:45,824 INFO Connection check task end + +2025-09-24 22:16:48,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:48,825 INFO Connection check task start + +2025-09-24 22:16:48,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:48,825 INFO Out dated connection ,size=0 + +2025-09-24 22:16:48,825 INFO Connection check task end + +2025-09-24 22:16:51,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:51,826 INFO Connection check task start + +2025-09-24 22:16:51,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:51,826 INFO Out dated connection ,size=0 + +2025-09-24 22:16:51,826 INFO Connection check task end + +2025-09-24 22:16:54,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:54,826 INFO Connection check task start + +2025-09-24 22:16:54,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:54,826 INFO Out dated connection ,size=0 + +2025-09-24 22:16:54,826 INFO Connection check task end + +2025-09-24 22:16:57,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:16:57,827 INFO Connection check task start + +2025-09-24 22:16:57,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:16:57,827 INFO Out dated connection ,size=0 + +2025-09-24 22:16:57,827 INFO Connection check task end + +2025-09-24 22:17:00,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:00,829 INFO Connection check task start + +2025-09-24 22:17:00,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:00,829 INFO Out dated connection ,size=0 + +2025-09-24 22:17:00,829 INFO Connection check task end + +2025-09-24 22:17:03,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:03,829 INFO Connection check task start + +2025-09-24 22:17:03,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:03,830 INFO Out dated connection ,size=0 + +2025-09-24 22:17:03,830 INFO Connection check task end + +2025-09-24 22:17:06,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:06,831 INFO Connection check task start + +2025-09-24 22:17:06,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:06,831 INFO Out dated connection ,size=0 + +2025-09-24 22:17:06,831 INFO Connection check task end + +2025-09-24 22:17:09,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:09,831 INFO Connection check task start + +2025-09-24 22:17:09,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:09,831 INFO Out dated connection ,size=0 + +2025-09-24 22:17:09,832 INFO Connection check task end + +2025-09-24 22:17:12,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:12,833 INFO Connection check task start + +2025-09-24 22:17:12,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:12,833 INFO Out dated connection ,size=0 + +2025-09-24 22:17:12,833 INFO Connection check task end + +2025-09-24 22:17:15,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:15,835 INFO Connection check task start + +2025-09-24 22:17:15,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:15,836 INFO Out dated connection ,size=0 + +2025-09-24 22:17:15,836 INFO Connection check task end + +2025-09-24 22:17:18,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:18,836 INFO Connection check task start + +2025-09-24 22:17:18,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:18,836 INFO Out dated connection ,size=0 + +2025-09-24 22:17:18,836 INFO Connection check task end + +2025-09-24 22:17:21,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:21,838 INFO Connection check task start + +2025-09-24 22:17:21,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:21,838 INFO Out dated connection ,size=0 + +2025-09-24 22:17:21,838 INFO Connection check task end + +2025-09-24 22:17:24,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:24,838 INFO Connection check task start + +2025-09-24 22:17:24,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:24,839 INFO Out dated connection ,size=0 + +2025-09-24 22:17:24,839 INFO Connection check task end + +2025-09-24 22:17:27,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:27,839 INFO Connection check task start + +2025-09-24 22:17:27,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:27,839 INFO Out dated connection ,size=0 + +2025-09-24 22:17:27,839 INFO Connection check task end + +2025-09-24 22:17:30,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:30,839 INFO Connection check task start + +2025-09-24 22:17:30,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:30,840 INFO Out dated connection ,size=0 + +2025-09-24 22:17:30,840 INFO Connection check task end + +2025-09-24 22:17:33,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:33,841 INFO Connection check task start + +2025-09-24 22:17:33,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:33,841 INFO Out dated connection ,size=0 + +2025-09-24 22:17:33,841 INFO Connection check task end + +2025-09-24 22:17:36,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:36,842 INFO Connection check task start + +2025-09-24 22:17:36,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:36,842 INFO Out dated connection ,size=0 + +2025-09-24 22:17:36,842 INFO Connection check task end + +2025-09-24 22:17:39,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:39,842 INFO Connection check task start + +2025-09-24 22:17:39,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:39,842 INFO Out dated connection ,size=0 + +2025-09-24 22:17:39,842 INFO Connection check task end + +2025-09-24 22:17:42,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:42,842 INFO Connection check task start + +2025-09-24 22:17:42,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:42,843 INFO Out dated connection ,size=0 + +2025-09-24 22:17:42,843 INFO Connection check task end + +2025-09-24 22:17:45,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:45,843 INFO Connection check task start + +2025-09-24 22:17:45,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:45,843 INFO Out dated connection ,size=0 + +2025-09-24 22:17:45,843 INFO Connection check task end + +2025-09-24 22:17:48,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:48,843 INFO Connection check task start + +2025-09-24 22:17:48,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:48,843 INFO Out dated connection ,size=0 + +2025-09-24 22:17:48,843 INFO Connection check task end + +2025-09-24 22:17:51,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:51,844 INFO Connection check task start + +2025-09-24 22:17:51,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:51,844 INFO Out dated connection ,size=0 + +2025-09-24 22:17:51,844 INFO Connection check task end + +2025-09-24 22:17:54,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:54,845 INFO Connection check task start + +2025-09-24 22:17:54,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:54,845 INFO Out dated connection ,size=0 + +2025-09-24 22:17:54,845 INFO Connection check task end + +2025-09-24 22:17:57,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:17:57,845 INFO Connection check task start + +2025-09-24 22:17:57,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:17:57,846 INFO Out dated connection ,size=0 + +2025-09-24 22:17:57,846 INFO Connection check task end + +2025-09-24 22:18:00,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:00,846 INFO Connection check task start + +2025-09-24 22:18:00,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:00,846 INFO Out dated connection ,size=0 + +2025-09-24 22:18:00,846 INFO Connection check task end + +2025-09-24 22:18:03,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:03,847 INFO Connection check task start + +2025-09-24 22:18:03,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:03,847 INFO Out dated connection ,size=0 + +2025-09-24 22:18:03,847 INFO Connection check task end + +2025-09-24 22:18:06,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:06,849 INFO Connection check task start + +2025-09-24 22:18:06,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:06,849 INFO Out dated connection ,size=0 + +2025-09-24 22:18:06,849 INFO Connection check task end + +2025-09-24 22:18:09,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:09,849 INFO Connection check task start + +2025-09-24 22:18:09,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:09,849 INFO Out dated connection ,size=0 + +2025-09-24 22:18:09,850 INFO Connection check task end + +2025-09-24 22:18:12,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:12,850 INFO Connection check task start + +2025-09-24 22:18:12,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:12,850 INFO Out dated connection ,size=0 + +2025-09-24 22:18:12,850 INFO Connection check task end + +2025-09-24 22:18:15,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:15,851 INFO Connection check task start + +2025-09-24 22:18:15,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:15,851 INFO Out dated connection ,size=0 + +2025-09-24 22:18:15,851 INFO Connection check task end + +2025-09-24 22:18:18,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:18,851 INFO Connection check task start + +2025-09-24 22:18:18,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:18,852 INFO Out dated connection ,size=0 + +2025-09-24 22:18:18,852 INFO Connection check task end + +2025-09-24 22:18:21,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:21,854 INFO Connection check task start + +2025-09-24 22:18:21,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:21,854 INFO Out dated connection ,size=0 + +2025-09-24 22:18:21,854 INFO Connection check task end + +2025-09-24 22:18:24,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:24,855 INFO Connection check task start + +2025-09-24 22:18:24,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:24,856 INFO Out dated connection ,size=0 + +2025-09-24 22:18:24,856 INFO Connection check task end + +2025-09-24 22:18:27,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:27,857 INFO Connection check task start + +2025-09-24 22:18:27,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:27,857 INFO Out dated connection ,size=0 + +2025-09-24 22:18:27,857 INFO Connection check task end + +2025-09-24 22:18:30,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:30,857 INFO Connection check task start + +2025-09-24 22:18:30,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:30,858 INFO Out dated connection ,size=0 + +2025-09-24 22:18:30,858 INFO Connection check task end + +2025-09-24 22:18:33,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:33,858 INFO Connection check task start + +2025-09-24 22:18:33,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:33,858 INFO Out dated connection ,size=0 + +2025-09-24 22:18:33,858 INFO Connection check task end + +2025-09-24 22:18:36,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:36,860 INFO Connection check task start + +2025-09-24 22:18:36,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:36,861 INFO Out dated connection ,size=0 + +2025-09-24 22:18:36,861 INFO Connection check task end + +2025-09-24 22:18:39,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:39,861 INFO Connection check task start + +2025-09-24 22:18:39,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:39,861 INFO Out dated connection ,size=0 + +2025-09-24 22:18:39,861 INFO Connection check task end + +2025-09-24 22:18:42,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:42,862 INFO Connection check task start + +2025-09-24 22:18:42,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:42,862 INFO Out dated connection ,size=0 + +2025-09-24 22:18:42,862 INFO Connection check task end + +2025-09-24 22:18:45,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:45,863 INFO Connection check task start + +2025-09-24 22:18:45,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:45,863 INFO Out dated connection ,size=0 + +2025-09-24 22:18:45,863 INFO Connection check task end + +2025-09-24 22:18:48,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:48,863 INFO Connection check task start + +2025-09-24 22:18:48,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:48,863 INFO Out dated connection ,size=0 + +2025-09-24 22:18:48,863 INFO Connection check task end + +2025-09-24 22:18:51,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:51,863 INFO Connection check task start + +2025-09-24 22:18:51,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:51,864 INFO Out dated connection ,size=0 + +2025-09-24 22:18:51,864 INFO Connection check task end + +2025-09-24 22:18:54,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:54,864 INFO Connection check task start + +2025-09-24 22:18:54,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:54,864 INFO Out dated connection ,size=0 + +2025-09-24 22:18:54,864 INFO Connection check task end + +2025-09-24 22:18:57,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:18:57,865 INFO Connection check task start + +2025-09-24 22:18:57,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:18:57,866 INFO Out dated connection ,size=0 + +2025-09-24 22:18:57,866 INFO Connection check task end + +2025-09-24 22:19:00,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:00,867 INFO Connection check task start + +2025-09-24 22:19:00,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:00,867 INFO Out dated connection ,size=0 + +2025-09-24 22:19:00,867 INFO Connection check task end + +2025-09-24 22:19:03,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:03,867 INFO Connection check task start + +2025-09-24 22:19:03,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:03,867 INFO Out dated connection ,size=0 + +2025-09-24 22:19:03,868 INFO Connection check task end + +2025-09-24 22:19:06,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:06,868 INFO Connection check task start + +2025-09-24 22:19:06,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:06,868 INFO Out dated connection ,size=0 + +2025-09-24 22:19:06,868 INFO Connection check task end + +2025-09-24 22:19:09,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:09,868 INFO Connection check task start + +2025-09-24 22:19:09,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:09,869 INFO Out dated connection ,size=0 + +2025-09-24 22:19:09,869 INFO Connection check task end + +2025-09-24 22:19:12,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:12,869 INFO Connection check task start + +2025-09-24 22:19:12,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:12,869 INFO Out dated connection ,size=0 + +2025-09-24 22:19:12,869 INFO Connection check task end + +2025-09-24 22:19:15,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:15,871 INFO Connection check task start + +2025-09-24 22:19:15,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:15,872 INFO Out dated connection ,size=0 + +2025-09-24 22:19:15,872 INFO Connection check task end + +2025-09-24 22:19:18,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:18,874 INFO Connection check task start + +2025-09-24 22:19:18,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:18,874 INFO Out dated connection ,size=0 + +2025-09-24 22:19:18,874 INFO Connection check task end + +2025-09-24 22:19:21,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:21,876 INFO Connection check task start + +2025-09-24 22:19:21,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:21,876 INFO Out dated connection ,size=0 + +2025-09-24 22:19:21,876 INFO Connection check task end + +2025-09-24 22:19:24,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:24,877 INFO Connection check task start + +2025-09-24 22:19:24,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:24,878 INFO Out dated connection ,size=0 + +2025-09-24 22:19:24,878 INFO Connection check task end + +2025-09-24 22:19:27,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:27,879 INFO Connection check task start + +2025-09-24 22:19:27,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:27,879 INFO Out dated connection ,size=0 + +2025-09-24 22:19:27,880 INFO Connection check task end + +2025-09-24 22:19:30,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:30,882 INFO Connection check task start + +2025-09-24 22:19:30,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:30,882 INFO Out dated connection ,size=0 + +2025-09-24 22:19:30,882 INFO Connection check task end + +2025-09-24 22:19:33,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:33,882 INFO Connection check task start + +2025-09-24 22:19:33,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:33,882 INFO Out dated connection ,size=0 + +2025-09-24 22:19:33,883 INFO Connection check task end + +2025-09-24 22:19:36,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:36,883 INFO Connection check task start + +2025-09-24 22:19:36,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:36,883 INFO Out dated connection ,size=0 + +2025-09-24 22:19:36,883 INFO Connection check task end + +2025-09-24 22:19:39,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:39,884 INFO Connection check task start + +2025-09-24 22:19:39,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:39,884 INFO Out dated connection ,size=0 + +2025-09-24 22:19:39,884 INFO Connection check task end + +2025-09-24 22:19:42,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:42,885 INFO Connection check task start + +2025-09-24 22:19:42,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:42,885 INFO Out dated connection ,size=0 + +2025-09-24 22:19:42,886 INFO Connection check task end + +2025-09-24 22:19:45,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:45,887 INFO Connection check task start + +2025-09-24 22:19:45,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:45,887 INFO Out dated connection ,size=0 + +2025-09-24 22:19:45,887 INFO Connection check task end + +2025-09-24 22:19:48,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:48,889 INFO Connection check task start + +2025-09-24 22:19:48,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:48,889 INFO Out dated connection ,size=0 + +2025-09-24 22:19:48,889 INFO Connection check task end + +2025-09-24 22:19:51,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:51,890 INFO Connection check task start + +2025-09-24 22:19:51,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:51,890 INFO Out dated connection ,size=0 + +2025-09-24 22:19:51,890 INFO Connection check task end + +2025-09-24 22:19:54,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:54,891 INFO Connection check task start + +2025-09-24 22:19:54,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:54,891 INFO Out dated connection ,size=0 + +2025-09-24 22:19:54,892 INFO Connection check task end + +2025-09-24 22:19:57,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:19:57,892 INFO Connection check task start + +2025-09-24 22:19:57,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:19:57,892 INFO Out dated connection ,size=0 + +2025-09-24 22:19:57,892 INFO Connection check task end + +2025-09-24 22:20:00,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:00,894 INFO Connection check task start + +2025-09-24 22:20:00,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:00,894 INFO Out dated connection ,size=0 + +2025-09-24 22:20:00,894 INFO Connection check task end + +2025-09-24 22:20:03,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:03,894 INFO Connection check task start + +2025-09-24 22:20:03,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:03,895 INFO Out dated connection ,size=0 + +2025-09-24 22:20:03,895 INFO Connection check task end + +2025-09-24 22:20:06,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:06,895 INFO Connection check task start + +2025-09-24 22:20:06,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:06,895 INFO Out dated connection ,size=0 + +2025-09-24 22:20:06,895 INFO Connection check task end + +2025-09-24 22:20:09,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:09,896 INFO Connection check task start + +2025-09-24 22:20:09,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:09,896 INFO Out dated connection ,size=0 + +2025-09-24 22:20:09,896 INFO Connection check task end + +2025-09-24 22:20:12,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:12,897 INFO Connection check task start + +2025-09-24 22:20:12,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:12,897 INFO Out dated connection ,size=0 + +2025-09-24 22:20:12,897 INFO Connection check task end + +2025-09-24 22:20:15,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:15,899 INFO Connection check task start + +2025-09-24 22:20:15,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:15,899 INFO Out dated connection ,size=0 + +2025-09-24 22:20:15,899 INFO Connection check task end + +2025-09-24 22:20:18,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:18,899 INFO Connection check task start + +2025-09-24 22:20:18,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:18,900 INFO Out dated connection ,size=0 + +2025-09-24 22:20:18,900 INFO Connection check task end + +2025-09-24 22:20:21,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:21,902 INFO Connection check task start + +2025-09-24 22:20:21,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:21,902 INFO Out dated connection ,size=0 + +2025-09-24 22:20:21,902 INFO Connection check task end + +2025-09-24 22:20:24,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:24,904 INFO Connection check task start + +2025-09-24 22:20:24,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:24,904 INFO Out dated connection ,size=0 + +2025-09-24 22:20:24,904 INFO Connection check task end + +2025-09-24 22:20:27,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:27,905 INFO Connection check task start + +2025-09-24 22:20:27,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:27,905 INFO Out dated connection ,size=0 + +2025-09-24 22:20:27,905 INFO Connection check task end + +2025-09-24 22:20:30,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:30,905 INFO Connection check task start + +2025-09-24 22:20:30,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:30,906 INFO Out dated connection ,size=0 + +2025-09-24 22:20:30,906 INFO Connection check task end + +2025-09-24 22:20:33,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:33,907 INFO Connection check task start + +2025-09-24 22:20:33,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:33,907 INFO Out dated connection ,size=0 + +2025-09-24 22:20:33,907 INFO Connection check task end + +2025-09-24 22:20:36,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:36,907 INFO Connection check task start + +2025-09-24 22:20:36,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:36,908 INFO Out dated connection ,size=0 + +2025-09-24 22:20:36,908 INFO Connection check task end + +2025-09-24 22:20:39,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:39,908 INFO Connection check task start + +2025-09-24 22:20:39,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:39,909 INFO Out dated connection ,size=0 + +2025-09-24 22:20:39,909 INFO Connection check task end + +2025-09-24 22:20:42,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:42,909 INFO Connection check task start + +2025-09-24 22:20:42,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:42,909 INFO Out dated connection ,size=0 + +2025-09-24 22:20:42,909 INFO Connection check task end + +2025-09-24 22:20:45,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:45,910 INFO Connection check task start + +2025-09-24 22:20:45,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:45,910 INFO Out dated connection ,size=0 + +2025-09-24 22:20:45,910 INFO Connection check task end + +2025-09-24 22:20:48,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:48,911 INFO Connection check task start + +2025-09-24 22:20:48,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:48,911 INFO Out dated connection ,size=0 + +2025-09-24 22:20:48,911 INFO Connection check task end + +2025-09-24 22:20:51,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:51,913 INFO Connection check task start + +2025-09-24 22:20:51,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:51,913 INFO Out dated connection ,size=0 + +2025-09-24 22:20:51,913 INFO Connection check task end + +2025-09-24 22:20:54,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:54,915 INFO Connection check task start + +2025-09-24 22:20:54,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:54,915 INFO Out dated connection ,size=0 + +2025-09-24 22:20:54,915 INFO Connection check task end + +2025-09-24 22:20:57,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:20:57,917 INFO Connection check task start + +2025-09-24 22:20:57,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:20:57,917 INFO Out dated connection ,size=0 + +2025-09-24 22:20:57,917 INFO Connection check task end + +2025-09-24 22:21:00,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:00,917 INFO Connection check task start + +2025-09-24 22:21:00,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:00,918 INFO Out dated connection ,size=0 + +2025-09-24 22:21:00,918 INFO Connection check task end + +2025-09-24 22:21:03,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:03,918 INFO Connection check task start + +2025-09-24 22:21:03,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:03,919 INFO Out dated connection ,size=0 + +2025-09-24 22:21:03,919 INFO Connection check task end + +2025-09-24 22:21:06,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:06,920 INFO Connection check task start + +2025-09-24 22:21:06,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:06,921 INFO Out dated connection ,size=0 + +2025-09-24 22:21:06,921 INFO Connection check task end + +2025-09-24 22:21:09,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:09,921 INFO Connection check task start + +2025-09-24 22:21:09,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:09,921 INFO Out dated connection ,size=0 + +2025-09-24 22:21:09,921 INFO Connection check task end + +2025-09-24 22:21:12,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:12,922 INFO Connection check task start + +2025-09-24 22:21:12,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:12,922 INFO Out dated connection ,size=0 + +2025-09-24 22:21:12,922 INFO Connection check task end + +2025-09-24 22:21:15,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:15,923 INFO Connection check task start + +2025-09-24 22:21:15,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:15,923 INFO Out dated connection ,size=0 + +2025-09-24 22:21:15,923 INFO Connection check task end + +2025-09-24 22:21:18,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:18,923 INFO Connection check task start + +2025-09-24 22:21:18,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:18,923 INFO Out dated connection ,size=0 + +2025-09-24 22:21:18,923 INFO Connection check task end + +2025-09-24 22:21:21,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:21,923 INFO Connection check task start + +2025-09-24 22:21:21,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:21,924 INFO Out dated connection ,size=0 + +2025-09-24 22:21:21,924 INFO Connection check task end + +2025-09-24 22:21:24,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:24,924 INFO Connection check task start + +2025-09-24 22:21:24,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:24,925 INFO Out dated connection ,size=0 + +2025-09-24 22:21:24,925 INFO Connection check task end + +2025-09-24 22:21:27,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:27,925 INFO Connection check task start + +2025-09-24 22:21:27,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:27,925 INFO Out dated connection ,size=0 + +2025-09-24 22:21:27,925 INFO Connection check task end + +2025-09-24 22:21:30,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:30,926 INFO Connection check task start + +2025-09-24 22:21:30,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:30,927 INFO Out dated connection ,size=0 + +2025-09-24 22:21:30,927 INFO Connection check task end + +2025-09-24 22:21:33,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:33,927 INFO Connection check task start + +2025-09-24 22:21:33,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:33,927 INFO Out dated connection ,size=0 + +2025-09-24 22:21:33,927 INFO Connection check task end + +2025-09-24 22:21:36,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:36,929 INFO Connection check task start + +2025-09-24 22:21:36,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:36,929 INFO Out dated connection ,size=0 + +2025-09-24 22:21:36,929 INFO Connection check task end + +2025-09-24 22:21:39,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:39,929 INFO Connection check task start + +2025-09-24 22:21:39,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:39,929 INFO Out dated connection ,size=0 + +2025-09-24 22:21:39,929 INFO Connection check task end + +2025-09-24 22:21:42,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:42,931 INFO Connection check task start + +2025-09-24 22:21:42,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:42,931 INFO Out dated connection ,size=0 + +2025-09-24 22:21:42,931 INFO Connection check task end + +2025-09-24 22:21:45,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:45,932 INFO Connection check task start + +2025-09-24 22:21:45,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:45,932 INFO Out dated connection ,size=0 + +2025-09-24 22:21:45,932 INFO Connection check task end + +2025-09-24 22:21:48,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:48,932 INFO Connection check task start + +2025-09-24 22:21:48,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:48,932 INFO Out dated connection ,size=0 + +2025-09-24 22:21:48,932 INFO Connection check task end + +2025-09-24 22:21:51,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:51,933 INFO Connection check task start + +2025-09-24 22:21:51,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:51,933 INFO Out dated connection ,size=0 + +2025-09-24 22:21:51,934 INFO Connection check task end + +2025-09-24 22:21:54,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:54,934 INFO Connection check task start + +2025-09-24 22:21:54,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:54,934 INFO Out dated connection ,size=0 + +2025-09-24 22:21:54,934 INFO Connection check task end + +2025-09-24 22:21:57,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:21:57,937 INFO Connection check task start + +2025-09-24 22:21:57,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:21:57,937 INFO Out dated connection ,size=0 + +2025-09-24 22:21:57,937 INFO Connection check task end + +2025-09-24 22:22:00,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:00,937 INFO Connection check task start + +2025-09-24 22:22:00,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:00,937 INFO Out dated connection ,size=0 + +2025-09-24 22:22:00,937 INFO Connection check task end + +2025-09-24 22:22:03,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:03,939 INFO Connection check task start + +2025-09-24 22:22:03,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:03,939 INFO Out dated connection ,size=0 + +2025-09-24 22:22:03,939 INFO Connection check task end + +2025-09-24 22:22:06,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:06,940 INFO Connection check task start + +2025-09-24 22:22:06,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:06,940 INFO Out dated connection ,size=0 + +2025-09-24 22:22:06,940 INFO Connection check task end + +2025-09-24 22:22:09,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:09,941 INFO Connection check task start + +2025-09-24 22:22:09,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:09,942 INFO Out dated connection ,size=0 + +2025-09-24 22:22:09,942 INFO Connection check task end + +2025-09-24 22:22:12,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:12,944 INFO Connection check task start + +2025-09-24 22:22:12,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:12,944 INFO Out dated connection ,size=0 + +2025-09-24 22:22:12,944 INFO Connection check task end + +2025-09-24 22:22:15,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:15,945 INFO Connection check task start + +2025-09-24 22:22:15,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:15,945 INFO Out dated connection ,size=0 + +2025-09-24 22:22:15,945 INFO Connection check task end + +2025-09-24 22:22:18,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:18,945 INFO Connection check task start + +2025-09-24 22:22:18,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:18,945 INFO Out dated connection ,size=0 + +2025-09-24 22:22:18,945 INFO Connection check task end + +2025-09-24 22:22:21,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:21,946 INFO Connection check task start + +2025-09-24 22:22:21,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:21,946 INFO Out dated connection ,size=0 + +2025-09-24 22:22:21,946 INFO Connection check task end + +2025-09-24 22:22:24,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:24,948 INFO Connection check task start + +2025-09-24 22:22:24,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:24,948 INFO Out dated connection ,size=0 + +2025-09-24 22:22:24,949 INFO Connection check task end + +2025-09-24 22:22:27,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:27,949 INFO Connection check task start + +2025-09-24 22:22:27,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:27,949 INFO Out dated connection ,size=0 + +2025-09-24 22:22:27,949 INFO Connection check task end + +2025-09-24 22:22:30,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:30,950 INFO Connection check task start + +2025-09-24 22:22:30,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:30,950 INFO Out dated connection ,size=0 + +2025-09-24 22:22:30,950 INFO Connection check task end + +2025-09-24 22:22:33,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:33,952 INFO Connection check task start + +2025-09-24 22:22:33,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:33,952 INFO Out dated connection ,size=0 + +2025-09-24 22:22:33,952 INFO Connection check task end + +2025-09-24 22:22:36,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:36,952 INFO Connection check task start + +2025-09-24 22:22:36,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:36,952 INFO Out dated connection ,size=0 + +2025-09-24 22:22:36,952 INFO Connection check task end + +2025-09-24 22:22:39,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:39,953 INFO Connection check task start + +2025-09-24 22:22:39,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:39,953 INFO Out dated connection ,size=0 + +2025-09-24 22:22:39,953 INFO Connection check task end + +2025-09-24 22:22:42,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:42,955 INFO Connection check task start + +2025-09-24 22:22:42,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:42,955 INFO Out dated connection ,size=0 + +2025-09-24 22:22:42,955 INFO Connection check task end + +2025-09-24 22:22:45,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:45,956 INFO Connection check task start + +2025-09-24 22:22:45,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:45,956 INFO Out dated connection ,size=0 + +2025-09-24 22:22:45,956 INFO Connection check task end + +2025-09-24 22:22:48,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:48,958 INFO Connection check task start + +2025-09-24 22:22:48,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:48,959 INFO Out dated connection ,size=0 + +2025-09-24 22:22:48,959 INFO Connection check task end + +2025-09-24 22:22:51,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:51,959 INFO Connection check task start + +2025-09-24 22:22:51,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:51,960 INFO Out dated connection ,size=0 + +2025-09-24 22:22:51,960 INFO Connection check task end + +2025-09-24 22:22:54,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:54,960 INFO Connection check task start + +2025-09-24 22:22:54,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:54,960 INFO Out dated connection ,size=0 + +2025-09-24 22:22:54,960 INFO Connection check task end + +2025-09-24 22:22:57,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:22:57,961 INFO Connection check task start + +2025-09-24 22:22:57,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:22:57,961 INFO Out dated connection ,size=0 + +2025-09-24 22:22:57,961 INFO Connection check task end + +2025-09-24 22:23:00,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:00,961 INFO Connection check task start + +2025-09-24 22:23:00,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:00,961 INFO Out dated connection ,size=0 + +2025-09-24 22:23:00,961 INFO Connection check task end + +2025-09-24 22:23:03,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:03,962 INFO Connection check task start + +2025-09-24 22:23:03,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:03,962 INFO Out dated connection ,size=0 + +2025-09-24 22:23:03,963 INFO Connection check task end + +2025-09-24 22:23:06,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:06,964 INFO Connection check task start + +2025-09-24 22:23:06,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:06,965 INFO Out dated connection ,size=0 + +2025-09-24 22:23:06,965 INFO Connection check task end + +2025-09-24 22:23:09,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:09,967 INFO Connection check task start + +2025-09-24 22:23:09,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:09,967 INFO Out dated connection ,size=0 + +2025-09-24 22:23:09,967 INFO Connection check task end + +2025-09-24 22:23:12,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:12,968 INFO Connection check task start + +2025-09-24 22:23:12,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:12,968 INFO Out dated connection ,size=0 + +2025-09-24 22:23:12,968 INFO Connection check task end + +2025-09-24 22:23:15,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:15,968 INFO Connection check task start + +2025-09-24 22:23:15,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:15,968 INFO Out dated connection ,size=0 + +2025-09-24 22:23:15,968 INFO Connection check task end + +2025-09-24 22:23:18,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:18,970 INFO Connection check task start + +2025-09-24 22:23:18,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:18,970 INFO Out dated connection ,size=0 + +2025-09-24 22:23:18,971 INFO Connection check task end + +2025-09-24 22:23:21,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:21,972 INFO Connection check task start + +2025-09-24 22:23:21,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:21,972 INFO Out dated connection ,size=0 + +2025-09-24 22:23:21,972 INFO Connection check task end + +2025-09-24 22:23:24,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:24,974 INFO Connection check task start + +2025-09-24 22:23:24,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:24,974 INFO Out dated connection ,size=0 + +2025-09-24 22:23:24,974 INFO Connection check task end + +2025-09-24 22:23:27,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:27,976 INFO Connection check task start + +2025-09-24 22:23:27,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:27,976 INFO Out dated connection ,size=0 + +2025-09-24 22:23:27,976 INFO Connection check task end + +2025-09-24 22:23:30,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:30,977 INFO Connection check task start + +2025-09-24 22:23:30,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:30,977 INFO Out dated connection ,size=0 + +2025-09-24 22:23:30,977 INFO Connection check task end + +2025-09-24 22:23:33,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:33,977 INFO Connection check task start + +2025-09-24 22:23:33,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:33,977 INFO Out dated connection ,size=0 + +2025-09-24 22:23:33,977 INFO Connection check task end + +2025-09-24 22:23:36,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:36,977 INFO Connection check task start + +2025-09-24 22:23:36,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:36,978 INFO Out dated connection ,size=0 + +2025-09-24 22:23:36,978 INFO Connection check task end + +2025-09-24 22:23:39,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:39,978 INFO Connection check task start + +2025-09-24 22:23:39,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:39,978 INFO Out dated connection ,size=0 + +2025-09-24 22:23:39,978 INFO Connection check task end + +2025-09-24 22:23:42,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:42,980 INFO Connection check task start + +2025-09-24 22:23:42,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:42,981 INFO Out dated connection ,size=0 + +2025-09-24 22:23:42,981 INFO Connection check task end + +2025-09-24 22:23:45,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:45,983 INFO Connection check task start + +2025-09-24 22:23:45,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:45,983 INFO Out dated connection ,size=0 + +2025-09-24 22:23:45,983 INFO Connection check task end + +2025-09-24 22:23:48,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:48,985 INFO Connection check task start + +2025-09-24 22:23:48,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:48,985 INFO Out dated connection ,size=0 + +2025-09-24 22:23:48,985 INFO Connection check task end + +2025-09-24 22:23:51,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:51,985 INFO Connection check task start + +2025-09-24 22:23:51,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:51,985 INFO Out dated connection ,size=0 + +2025-09-24 22:23:51,985 INFO Connection check task end + +2025-09-24 22:23:54,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:54,986 INFO Connection check task start + +2025-09-24 22:23:54,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:54,986 INFO Out dated connection ,size=0 + +2025-09-24 22:23:54,986 INFO Connection check task end + +2025-09-24 22:23:57,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:23:57,987 INFO Connection check task start + +2025-09-24 22:23:57,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:23:57,988 INFO Out dated connection ,size=0 + +2025-09-24 22:23:57,988 INFO Connection check task end + +2025-09-24 22:24:00,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:00,990 INFO Connection check task start + +2025-09-24 22:24:00,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:00,990 INFO Out dated connection ,size=0 + +2025-09-24 22:24:00,990 INFO Connection check task end + +2025-09-24 22:24:03,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:03,991 INFO Connection check task start + +2025-09-24 22:24:03,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:03,991 INFO Out dated connection ,size=0 + +2025-09-24 22:24:03,991 INFO Connection check task end + +2025-09-24 22:24:06,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:06,992 INFO Connection check task start + +2025-09-24 22:24:06,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:06,992 INFO Out dated connection ,size=0 + +2025-09-24 22:24:06,992 INFO Connection check task end + +2025-09-24 22:24:09,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:09,993 INFO Connection check task start + +2025-09-24 22:24:09,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:09,993 INFO Out dated connection ,size=0 + +2025-09-24 22:24:09,993 INFO Connection check task end + +2025-09-24 22:24:12,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:12,994 INFO Connection check task start + +2025-09-24 22:24:12,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:12,994 INFO Out dated connection ,size=0 + +2025-09-24 22:24:12,994 INFO Connection check task end + +2025-09-24 22:24:15,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:15,995 INFO Connection check task start + +2025-09-24 22:24:15,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:15,995 INFO Out dated connection ,size=0 + +2025-09-24 22:24:15,995 INFO Connection check task end + +2025-09-24 22:24:18,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:18,996 INFO Connection check task start + +2025-09-24 22:24:18,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:18,996 INFO Out dated connection ,size=0 + +2025-09-24 22:24:18,996 INFO Connection check task end + +2025-09-24 22:24:21,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:21,996 INFO Connection check task start + +2025-09-24 22:24:21,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:21,997 INFO Out dated connection ,size=0 + +2025-09-24 22:24:21,997 INFO Connection check task end + +2025-09-24 22:24:24,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:24,997 INFO Connection check task start + +2025-09-24 22:24:24,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:24,997 INFO Out dated connection ,size=0 + +2025-09-24 22:24:24,997 INFO Connection check task end + +2025-09-24 22:24:27,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:27,998 INFO Connection check task start + +2025-09-24 22:24:27,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:27,999 INFO Out dated connection ,size=0 + +2025-09-24 22:24:27,999 INFO Connection check task end + +2025-09-24 22:24:30,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:31,000 INFO Connection check task start + +2025-09-24 22:24:31,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:31,000 INFO Out dated connection ,size=0 + +2025-09-24 22:24:31,000 INFO Connection check task end + +2025-09-24 22:24:33,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:34,001 INFO Connection check task start + +2025-09-24 22:24:34,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:34,001 INFO Out dated connection ,size=0 + +2025-09-24 22:24:34,001 INFO Connection check task end + +2025-09-24 22:24:36,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:37,002 INFO Connection check task start + +2025-09-24 22:24:37,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:37,002 INFO Out dated connection ,size=0 + +2025-09-24 22:24:37,002 INFO Connection check task end + +2025-09-24 22:24:39,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:40,002 INFO Connection check task start + +2025-09-24 22:24:40,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:40,003 INFO Out dated connection ,size=0 + +2025-09-24 22:24:40,003 INFO Connection check task end + +2025-09-24 22:24:42,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:43,003 INFO Connection check task start + +2025-09-24 22:24:43,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:43,003 INFO Out dated connection ,size=0 + +2025-09-24 22:24:43,003 INFO Connection check task end + +2025-09-24 22:24:45,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:46,004 INFO Connection check task start + +2025-09-24 22:24:46,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:46,004 INFO Out dated connection ,size=0 + +2025-09-24 22:24:46,004 INFO Connection check task end + +2025-09-24 22:24:48,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:49,005 INFO Connection check task start + +2025-09-24 22:24:49,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:49,005 INFO Out dated connection ,size=0 + +2025-09-24 22:24:49,005 INFO Connection check task end + +2025-09-24 22:24:51,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:52,005 INFO Connection check task start + +2025-09-24 22:24:52,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:52,006 INFO Out dated connection ,size=0 + +2025-09-24 22:24:52,006 INFO Connection check task end + +2025-09-24 22:24:54,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:55,006 INFO Connection check task start + +2025-09-24 22:24:55,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:55,006 INFO Out dated connection ,size=0 + +2025-09-24 22:24:55,006 INFO Connection check task end + +2025-09-24 22:24:57,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:24:58,007 INFO Connection check task start + +2025-09-24 22:24:58,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:24:58,007 INFO Out dated connection ,size=0 + +2025-09-24 22:24:58,007 INFO Connection check task end + +2025-09-24 22:25:00,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:01,008 INFO Connection check task start + +2025-09-24 22:25:01,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:01,008 INFO Out dated connection ,size=0 + +2025-09-24 22:25:01,008 INFO Connection check task end + +2025-09-24 22:25:03,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:04,010 INFO Connection check task start + +2025-09-24 22:25:04,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:04,010 INFO Out dated connection ,size=0 + +2025-09-24 22:25:04,010 INFO Connection check task end + +2025-09-24 22:25:06,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:07,011 INFO Connection check task start + +2025-09-24 22:25:07,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:07,011 INFO Out dated connection ,size=0 + +2025-09-24 22:25:07,011 INFO Connection check task end + +2025-09-24 22:25:09,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:10,012 INFO Connection check task start + +2025-09-24 22:25:10,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:10,012 INFO Out dated connection ,size=0 + +2025-09-24 22:25:10,012 INFO Connection check task end + +2025-09-24 22:25:12,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:13,014 INFO Connection check task start + +2025-09-24 22:25:13,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:13,014 INFO Out dated connection ,size=0 + +2025-09-24 22:25:13,014 INFO Connection check task end + +2025-09-24 22:25:15,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:16,015 INFO Connection check task start + +2025-09-24 22:25:16,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:16,015 INFO Out dated connection ,size=0 + +2025-09-24 22:25:16,015 INFO Connection check task end + +2025-09-24 22:25:18,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:19,016 INFO Connection check task start + +2025-09-24 22:25:19,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:19,016 INFO Out dated connection ,size=0 + +2025-09-24 22:25:19,016 INFO Connection check task end + +2025-09-24 22:25:21,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:22,016 INFO Connection check task start + +2025-09-24 22:25:22,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:22,033 INFO Out dated connection ,size=0 + +2025-09-24 22:25:22,033 INFO Connection check task end + +2025-09-24 22:25:24,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:25,034 INFO Connection check task start + +2025-09-24 22:25:25,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:25,034 INFO Out dated connection ,size=0 + +2025-09-24 22:25:25,034 INFO Connection check task end + +2025-09-24 22:25:27,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:28,035 INFO Connection check task start + +2025-09-24 22:25:28,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:28,035 INFO Out dated connection ,size=0 + +2025-09-24 22:25:28,035 INFO Connection check task end + +2025-09-24 22:25:30,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:31,036 INFO Connection check task start + +2025-09-24 22:25:31,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:31,036 INFO Out dated connection ,size=0 + +2025-09-24 22:25:31,036 INFO Connection check task end + +2025-09-24 22:25:33,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:34,037 INFO Connection check task start + +2025-09-24 22:25:34,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:34,037 INFO Out dated connection ,size=0 + +2025-09-24 22:25:34,037 INFO Connection check task end + +2025-09-24 22:25:36,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:37,038 INFO Connection check task start + +2025-09-24 22:25:37,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:37,038 INFO Out dated connection ,size=0 + +2025-09-24 22:25:37,038 INFO Connection check task end + +2025-09-24 22:25:39,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:40,039 INFO Connection check task start + +2025-09-24 22:25:40,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:40,039 INFO Out dated connection ,size=0 + +2025-09-24 22:25:40,039 INFO Connection check task end + +2025-09-24 22:25:42,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:43,040 INFO Connection check task start + +2025-09-24 22:25:43,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:43,040 INFO Out dated connection ,size=0 + +2025-09-24 22:25:43,040 INFO Connection check task end + +2025-09-24 22:25:45,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:46,041 INFO Connection check task start + +2025-09-24 22:25:46,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:46,041 INFO Out dated connection ,size=0 + +2025-09-24 22:25:46,041 INFO Connection check task end + +2025-09-24 22:25:48,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:49,042 INFO Connection check task start + +2025-09-24 22:25:49,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:49,042 INFO Out dated connection ,size=0 + +2025-09-24 22:25:49,042 INFO Connection check task end + +2025-09-24 22:25:51,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:52,043 INFO Connection check task start + +2025-09-24 22:25:52,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:52,043 INFO Out dated connection ,size=0 + +2025-09-24 22:25:52,043 INFO Connection check task end + +2025-09-24 22:25:54,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:55,045 INFO Connection check task start + +2025-09-24 22:25:55,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:55,045 INFO Out dated connection ,size=0 + +2025-09-24 22:25:55,045 INFO Connection check task end + +2025-09-24 22:25:57,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:25:58,046 INFO Connection check task start + +2025-09-24 22:25:58,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:25:58,046 INFO Out dated connection ,size=0 + +2025-09-24 22:25:58,046 INFO Connection check task end + +2025-09-24 22:26:00,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:01,047 INFO Connection check task start + +2025-09-24 22:26:01,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:01,047 INFO Out dated connection ,size=0 + +2025-09-24 22:26:01,047 INFO Connection check task end + +2025-09-24 22:26:03,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:04,047 INFO Connection check task start + +2025-09-24 22:26:04,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:04,048 INFO Out dated connection ,size=0 + +2025-09-24 22:26:04,048 INFO Connection check task end + +2025-09-24 22:26:06,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:07,048 INFO Connection check task start + +2025-09-24 22:26:07,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:07,048 INFO Out dated connection ,size=0 + +2025-09-24 22:26:07,048 INFO Connection check task end + +2025-09-24 22:26:09,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:10,049 INFO Connection check task start + +2025-09-24 22:26:10,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:10,049 INFO Out dated connection ,size=0 + +2025-09-24 22:26:10,049 INFO Connection check task end + +2025-09-24 22:26:12,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:13,049 INFO Connection check task start + +2025-09-24 22:26:13,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:13,050 INFO Out dated connection ,size=0 + +2025-09-24 22:26:13,050 INFO Connection check task end + +2025-09-24 22:26:15,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:16,051 INFO Connection check task start + +2025-09-24 22:26:16,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:16,051 INFO Out dated connection ,size=0 + +2025-09-24 22:26:16,051 INFO Connection check task end + +2025-09-24 22:26:18,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:19,052 INFO Connection check task start + +2025-09-24 22:26:19,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:19,053 INFO Out dated connection ,size=0 + +2025-09-24 22:26:19,053 INFO Connection check task end + +2025-09-24 22:26:21,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:22,054 INFO Connection check task start + +2025-09-24 22:26:22,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:22,054 INFO Out dated connection ,size=0 + +2025-09-24 22:26:22,054 INFO Connection check task end + +2025-09-24 22:26:24,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:25,054 INFO Connection check task start + +2025-09-24 22:26:25,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:25,055 INFO Out dated connection ,size=0 + +2025-09-24 22:26:25,055 INFO Connection check task end + +2025-09-24 22:26:27,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:28,055 INFO Connection check task start + +2025-09-24 22:26:28,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:28,055 INFO Out dated connection ,size=0 + +2025-09-24 22:26:28,055 INFO Connection check task end + +2025-09-24 22:26:30,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:31,056 INFO Connection check task start + +2025-09-24 22:26:31,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:31,056 INFO Out dated connection ,size=0 + +2025-09-24 22:26:31,056 INFO Connection check task end + +2025-09-24 22:26:33,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:34,057 INFO Connection check task start + +2025-09-24 22:26:34,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:34,057 INFO Out dated connection ,size=0 + +2025-09-24 22:26:34,057 INFO Connection check task end + +2025-09-24 22:26:36,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:37,058 INFO Connection check task start + +2025-09-24 22:26:37,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:37,058 INFO Out dated connection ,size=0 + +2025-09-24 22:26:37,058 INFO Connection check task end + +2025-09-24 22:26:39,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:40,059 INFO Connection check task start + +2025-09-24 22:26:40,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:40,059 INFO Out dated connection ,size=0 + +2025-09-24 22:26:40,059 INFO Connection check task end + +2025-09-24 22:26:42,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:43,060 INFO Connection check task start + +2025-09-24 22:26:43,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:43,060 INFO Out dated connection ,size=0 + +2025-09-24 22:26:43,061 INFO Connection check task end + +2025-09-24 22:26:45,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:46,061 INFO Connection check task start + +2025-09-24 22:26:46,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:46,061 INFO Out dated connection ,size=0 + +2025-09-24 22:26:46,061 INFO Connection check task end + +2025-09-24 22:26:48,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:49,062 INFO Connection check task start + +2025-09-24 22:26:49,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:49,062 INFO Out dated connection ,size=0 + +2025-09-24 22:26:49,062 INFO Connection check task end + +2025-09-24 22:26:51,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:52,062 INFO Connection check task start + +2025-09-24 22:26:52,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:52,063 INFO Out dated connection ,size=0 + +2025-09-24 22:26:52,063 INFO Connection check task end + +2025-09-24 22:26:54,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:55,063 INFO Connection check task start + +2025-09-24 22:26:55,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:55,064 INFO Out dated connection ,size=0 + +2025-09-24 22:26:55,064 INFO Connection check task end + +2025-09-24 22:26:57,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:26:58,064 INFO Connection check task start + +2025-09-24 22:26:58,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:26:58,064 INFO Out dated connection ,size=0 + +2025-09-24 22:26:58,064 INFO Connection check task end + +2025-09-24 22:27:00,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:01,066 INFO Connection check task start + +2025-09-24 22:27:01,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:01,066 INFO Out dated connection ,size=0 + +2025-09-24 22:27:01,066 INFO Connection check task end + +2025-09-24 22:27:03,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:04,067 INFO Connection check task start + +2025-09-24 22:27:04,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:04,067 INFO Out dated connection ,size=0 + +2025-09-24 22:27:04,067 INFO Connection check task end + +2025-09-24 22:27:06,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:07,068 INFO Connection check task start + +2025-09-24 22:27:07,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:07,068 INFO Out dated connection ,size=0 + +2025-09-24 22:27:07,068 INFO Connection check task end + +2025-09-24 22:27:09,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:10,068 INFO Connection check task start + +2025-09-24 22:27:10,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:10,068 INFO Out dated connection ,size=0 + +2025-09-24 22:27:10,068 INFO Connection check task end + +2025-09-24 22:27:12,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:13,069 INFO Connection check task start + +2025-09-24 22:27:13,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:13,069 INFO Out dated connection ,size=0 + +2025-09-24 22:27:13,069 INFO Connection check task end + +2025-09-24 22:27:15,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:16,071 INFO Connection check task start + +2025-09-24 22:27:16,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:16,071 INFO Out dated connection ,size=0 + +2025-09-24 22:27:16,071 INFO Connection check task end + +2025-09-24 22:27:18,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:19,073 INFO Connection check task start + +2025-09-24 22:27:19,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:19,073 INFO Out dated connection ,size=0 + +2025-09-24 22:27:19,073 INFO Connection check task end + +2025-09-24 22:27:21,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:22,073 INFO Connection check task start + +2025-09-24 22:27:22,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:22,074 INFO Out dated connection ,size=0 + +2025-09-24 22:27:22,074 INFO Connection check task end + +2025-09-24 22:27:24,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:25,075 INFO Connection check task start + +2025-09-24 22:27:25,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:25,075 INFO Out dated connection ,size=0 + +2025-09-24 22:27:25,075 INFO Connection check task end + +2025-09-24 22:27:27,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:28,075 INFO Connection check task start + +2025-09-24 22:27:28,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:28,075 INFO Out dated connection ,size=0 + +2025-09-24 22:27:28,075 INFO Connection check task end + +2025-09-24 22:27:30,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:31,076 INFO Connection check task start + +2025-09-24 22:27:31,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:31,076 INFO Out dated connection ,size=0 + +2025-09-24 22:27:31,076 INFO Connection check task end + +2025-09-24 22:27:33,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:34,076 INFO Connection check task start + +2025-09-24 22:27:34,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:34,076 INFO Out dated connection ,size=0 + +2025-09-24 22:27:34,076 INFO Connection check task end + +2025-09-24 22:27:36,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:37,077 INFO Connection check task start + +2025-09-24 22:27:37,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:37,077 INFO Out dated connection ,size=0 + +2025-09-24 22:27:37,078 INFO Connection check task end + +2025-09-24 22:27:39,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:40,078 INFO Connection check task start + +2025-09-24 22:27:40,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:40,078 INFO Out dated connection ,size=0 + +2025-09-24 22:27:40,078 INFO Connection check task end + +2025-09-24 22:27:42,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:43,079 INFO Connection check task start + +2025-09-24 22:27:43,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:43,079 INFO Out dated connection ,size=0 + +2025-09-24 22:27:43,079 INFO Connection check task end + +2025-09-24 22:27:45,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:46,080 INFO Connection check task start + +2025-09-24 22:27:46,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:46,080 INFO Out dated connection ,size=0 + +2025-09-24 22:27:46,080 INFO Connection check task end + +2025-09-24 22:27:48,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:49,081 INFO Connection check task start + +2025-09-24 22:27:49,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:49,081 INFO Out dated connection ,size=0 + +2025-09-24 22:27:49,081 INFO Connection check task end + +2025-09-24 22:27:51,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:52,082 INFO Connection check task start + +2025-09-24 22:27:52,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:52,082 INFO Out dated connection ,size=0 + +2025-09-24 22:27:52,082 INFO Connection check task end + +2025-09-24 22:27:54,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:55,083 INFO Connection check task start + +2025-09-24 22:27:55,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:55,083 INFO Out dated connection ,size=0 + +2025-09-24 22:27:55,083 INFO Connection check task end + +2025-09-24 22:27:57,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:27:58,084 INFO Connection check task start + +2025-09-24 22:27:58,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:27:58,084 INFO Out dated connection ,size=0 + +2025-09-24 22:27:58,084 INFO Connection check task end + +2025-09-24 22:28:00,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:01,084 INFO Connection check task start + +2025-09-24 22:28:01,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:01,084 INFO Out dated connection ,size=0 + +2025-09-24 22:28:01,084 INFO Connection check task end + +2025-09-24 22:28:03,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:04,085 INFO Connection check task start + +2025-09-24 22:28:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:04,085 INFO Out dated connection ,size=0 + +2025-09-24 22:28:04,085 INFO Connection check task end + +2025-09-24 22:28:06,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:07,085 INFO Connection check task start + +2025-09-24 22:28:07,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:07,085 INFO Out dated connection ,size=0 + +2025-09-24 22:28:07,085 INFO Connection check task end + +2025-09-24 22:28:09,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:10,086 INFO Connection check task start + +2025-09-24 22:28:10,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:10,086 INFO Out dated connection ,size=0 + +2025-09-24 22:28:10,086 INFO Connection check task end + +2025-09-24 22:28:12,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:13,086 INFO Connection check task start + +2025-09-24 22:28:13,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:13,087 INFO Out dated connection ,size=0 + +2025-09-24 22:28:13,087 INFO Connection check task end + +2025-09-24 22:28:15,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:16,087 INFO Connection check task start + +2025-09-24 22:28:16,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:16,087 INFO Out dated connection ,size=0 + +2025-09-24 22:28:16,087 INFO Connection check task end + +2025-09-24 22:28:18,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:19,089 INFO Connection check task start + +2025-09-24 22:28:19,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:19,089 INFO Out dated connection ,size=0 + +2025-09-24 22:28:19,089 INFO Connection check task end + +2025-09-24 22:28:21,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:22,089 INFO Connection check task start + +2025-09-24 22:28:22,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:22,090 INFO Out dated connection ,size=0 + +2025-09-24 22:28:22,090 INFO Connection check task end + +2025-09-24 22:28:24,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:25,090 INFO Connection check task start + +2025-09-24 22:28:25,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:25,091 INFO Out dated connection ,size=0 + +2025-09-24 22:28:25,091 INFO Connection check task end + +2025-09-24 22:28:27,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:28,091 INFO Connection check task start + +2025-09-24 22:28:28,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:28,091 INFO Out dated connection ,size=0 + +2025-09-24 22:28:28,091 INFO Connection check task end + +2025-09-24 22:28:30,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:31,091 INFO Connection check task start + +2025-09-24 22:28:31,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:31,091 INFO Out dated connection ,size=0 + +2025-09-24 22:28:31,091 INFO Connection check task end + +2025-09-24 22:28:33,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:34,093 INFO Connection check task start + +2025-09-24 22:28:34,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:34,093 INFO Out dated connection ,size=0 + +2025-09-24 22:28:34,093 INFO Connection check task end + +2025-09-24 22:28:36,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:37,093 INFO Connection check task start + +2025-09-24 22:28:37,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:37,093 INFO Out dated connection ,size=0 + +2025-09-24 22:28:37,093 INFO Connection check task end + +2025-09-24 22:28:39,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:40,093 INFO Connection check task start + +2025-09-24 22:28:40,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:40,093 INFO Out dated connection ,size=0 + +2025-09-24 22:28:40,093 INFO Connection check task end + +2025-09-24 22:28:42,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:43,094 INFO Connection check task start + +2025-09-24 22:28:43,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:43,094 INFO Out dated connection ,size=0 + +2025-09-24 22:28:43,094 INFO Connection check task end + +2025-09-24 22:28:45,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:46,101 INFO Connection check task start + +2025-09-24 22:28:46,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:46,101 INFO Out dated connection ,size=0 + +2025-09-24 22:28:46,101 INFO Connection check task end + +2025-09-24 22:28:48,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:49,101 INFO Connection check task start + +2025-09-24 22:28:49,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:49,102 INFO Out dated connection ,size=0 + +2025-09-24 22:28:49,102 INFO Connection check task end + +2025-09-24 22:28:51,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:52,103 INFO Connection check task start + +2025-09-24 22:28:52,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:52,103 INFO Out dated connection ,size=0 + +2025-09-24 22:28:52,103 INFO Connection check task end + +2025-09-24 22:28:54,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:55,104 INFO Connection check task start + +2025-09-24 22:28:55,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:55,104 INFO Out dated connection ,size=0 + +2025-09-24 22:28:55,104 INFO Connection check task end + +2025-09-24 22:28:57,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:28:58,105 INFO Connection check task start + +2025-09-24 22:28:58,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:28:58,105 INFO Out dated connection ,size=0 + +2025-09-24 22:28:58,105 INFO Connection check task end + +2025-09-24 22:29:00,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:01,106 INFO Connection check task start + +2025-09-24 22:29:01,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:01,106 INFO Out dated connection ,size=0 + +2025-09-24 22:29:01,106 INFO Connection check task end + +2025-09-24 22:29:03,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:04,107 INFO Connection check task start + +2025-09-24 22:29:04,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:04,108 INFO Out dated connection ,size=0 + +2025-09-24 22:29:04,108 INFO Connection check task end + +2025-09-24 22:29:06,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:07,109 INFO Connection check task start + +2025-09-24 22:29:07,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:07,109 INFO Out dated connection ,size=0 + +2025-09-24 22:29:07,109 INFO Connection check task end + +2025-09-24 22:29:09,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:10,110 INFO Connection check task start + +2025-09-24 22:29:10,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:10,111 INFO Out dated connection ,size=0 + +2025-09-24 22:29:10,111 INFO Connection check task end + +2025-09-24 22:29:12,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:13,112 INFO Connection check task start + +2025-09-24 22:29:13,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:13,112 INFO Out dated connection ,size=0 + +2025-09-24 22:29:13,112 INFO Connection check task end + +2025-09-24 22:29:15,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:16,113 INFO Connection check task start + +2025-09-24 22:29:16,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:16,113 INFO Out dated connection ,size=0 + +2025-09-24 22:29:16,113 INFO Connection check task end + +2025-09-24 22:29:18,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:19,114 INFO Connection check task start + +2025-09-24 22:29:19,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:19,115 INFO Out dated connection ,size=0 + +2025-09-24 22:29:19,115 INFO Connection check task end + +2025-09-24 22:29:21,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:22,115 INFO Connection check task start + +2025-09-24 22:29:22,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:22,116 INFO Out dated connection ,size=0 + +2025-09-24 22:29:22,116 INFO Connection check task end + +2025-09-24 22:29:24,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:25,117 INFO Connection check task start + +2025-09-24 22:29:25,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:25,117 INFO Out dated connection ,size=0 + +2025-09-24 22:29:25,117 INFO Connection check task end + +2025-09-24 22:29:27,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:28,118 INFO Connection check task start + +2025-09-24 22:29:28,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:28,118 INFO Out dated connection ,size=0 + +2025-09-24 22:29:28,118 INFO Connection check task end + +2025-09-24 22:29:30,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:31,118 INFO Connection check task start + +2025-09-24 22:29:31,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:31,119 INFO Out dated connection ,size=0 + +2025-09-24 22:29:31,119 INFO Connection check task end + +2025-09-24 22:29:33,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:34,120 INFO Connection check task start + +2025-09-24 22:29:34,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:34,120 INFO Out dated connection ,size=0 + +2025-09-24 22:29:34,120 INFO Connection check task end + +2025-09-24 22:29:36,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:37,121 INFO Connection check task start + +2025-09-24 22:29:37,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:37,121 INFO Out dated connection ,size=0 + +2025-09-24 22:29:37,121 INFO Connection check task end + +2025-09-24 22:29:39,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:40,122 INFO Connection check task start + +2025-09-24 22:29:40,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:40,123 INFO Out dated connection ,size=0 + +2025-09-24 22:29:40,123 INFO Connection check task end + +2025-09-24 22:29:42,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:43,123 INFO Connection check task start + +2025-09-24 22:29:43,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:43,123 INFO Out dated connection ,size=0 + +2025-09-24 22:29:43,124 INFO Connection check task end + +2025-09-24 22:29:45,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:46,125 INFO Connection check task start + +2025-09-24 22:29:46,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:46,125 INFO Out dated connection ,size=0 + +2025-09-24 22:29:46,125 INFO Connection check task end + +2025-09-24 22:29:48,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:49,126 INFO Connection check task start + +2025-09-24 22:29:49,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:49,126 INFO Out dated connection ,size=0 + +2025-09-24 22:29:49,127 INFO Connection check task end + +2025-09-24 22:29:51,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:52,128 INFO Connection check task start + +2025-09-24 22:29:52,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:52,128 INFO Out dated connection ,size=0 + +2025-09-24 22:29:52,128 INFO Connection check task end + +2025-09-24 22:29:54,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:55,129 INFO Connection check task start + +2025-09-24 22:29:55,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:55,129 INFO Out dated connection ,size=0 + +2025-09-24 22:29:55,129 INFO Connection check task end + +2025-09-24 22:29:57,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:29:58,129 INFO Connection check task start + +2025-09-24 22:29:58,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:29:58,129 INFO Out dated connection ,size=0 + +2025-09-24 22:29:58,129 INFO Connection check task end + +2025-09-24 22:30:00,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:01,130 INFO Connection check task start + +2025-09-24 22:30:01,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:01,130 INFO Out dated connection ,size=0 + +2025-09-24 22:30:01,130 INFO Connection check task end + +2025-09-24 22:30:03,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:04,131 INFO Connection check task start + +2025-09-24 22:30:04,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:04,131 INFO Out dated connection ,size=0 + +2025-09-24 22:30:04,131 INFO Connection check task end + +2025-09-24 22:30:06,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:07,131 INFO Connection check task start + +2025-09-24 22:30:07,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:07,132 INFO Out dated connection ,size=0 + +2025-09-24 22:30:07,132 INFO Connection check task end + +2025-09-24 22:30:09,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:10,132 INFO Connection check task start + +2025-09-24 22:30:10,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:10,132 INFO Out dated connection ,size=0 + +2025-09-24 22:30:10,133 INFO Connection check task end + +2025-09-24 22:30:12,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:13,133 INFO Connection check task start + +2025-09-24 22:30:13,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:13,133 INFO Out dated connection ,size=0 + +2025-09-24 22:30:13,133 INFO Connection check task end + +2025-09-24 22:30:15,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:16,133 INFO Connection check task start + +2025-09-24 22:30:16,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:16,133 INFO Out dated connection ,size=0 + +2025-09-24 22:30:16,133 INFO Connection check task end + +2025-09-24 22:30:18,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:19,134 INFO Connection check task start + +2025-09-24 22:30:19,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:19,134 INFO Out dated connection ,size=0 + +2025-09-24 22:30:19,134 INFO Connection check task end + +2025-09-24 22:30:21,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:22,135 INFO Connection check task start + +2025-09-24 22:30:22,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:22,135 INFO Out dated connection ,size=0 + +2025-09-24 22:30:22,135 INFO Connection check task end + +2025-09-24 22:30:24,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:25,136 INFO Connection check task start + +2025-09-24 22:30:25,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:25,136 INFO Out dated connection ,size=0 + +2025-09-24 22:30:25,136 INFO Connection check task end + +2025-09-24 22:30:27,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:28,136 INFO Connection check task start + +2025-09-24 22:30:28,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:28,136 INFO Out dated connection ,size=0 + +2025-09-24 22:30:28,137 INFO Connection check task end + +2025-09-24 22:30:30,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:31,137 INFO Connection check task start + +2025-09-24 22:30:31,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:31,137 INFO Out dated connection ,size=0 + +2025-09-24 22:30:31,138 INFO Connection check task end + +2025-09-24 22:30:33,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:34,138 INFO Connection check task start + +2025-09-24 22:30:34,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:34,139 INFO Out dated connection ,size=0 + +2025-09-24 22:30:34,139 INFO Connection check task end + +2025-09-24 22:30:36,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:37,140 INFO Connection check task start + +2025-09-24 22:30:37,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:37,140 INFO Out dated connection ,size=0 + +2025-09-24 22:30:37,140 INFO Connection check task end + +2025-09-24 22:30:39,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:40,141 INFO Connection check task start + +2025-09-24 22:30:40,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:40,141 INFO Out dated connection ,size=0 + +2025-09-24 22:30:40,141 INFO Connection check task end + +2025-09-24 22:30:42,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:43,141 INFO Connection check task start + +2025-09-24 22:30:43,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:43,142 INFO Out dated connection ,size=0 + +2025-09-24 22:30:43,142 INFO Connection check task end + +2025-09-24 22:30:45,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:46,143 INFO Connection check task start + +2025-09-24 22:30:46,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:46,143 INFO Out dated connection ,size=0 + +2025-09-24 22:30:46,143 INFO Connection check task end + +2025-09-24 22:30:48,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:49,144 INFO Connection check task start + +2025-09-24 22:30:49,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:49,144 INFO Out dated connection ,size=0 + +2025-09-24 22:30:49,144 INFO Connection check task end + +2025-09-24 22:30:51,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:52,145 INFO Connection check task start + +2025-09-24 22:30:52,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:52,145 INFO Out dated connection ,size=0 + +2025-09-24 22:30:52,145 INFO Connection check task end + +2025-09-24 22:30:54,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:55,146 INFO Connection check task start + +2025-09-24 22:30:55,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:55,146 INFO Out dated connection ,size=0 + +2025-09-24 22:30:55,146 INFO Connection check task end + +2025-09-24 22:30:57,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:30:58,147 INFO Connection check task start + +2025-09-24 22:30:58,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:30:58,147 INFO Out dated connection ,size=0 + +2025-09-24 22:30:58,147 INFO Connection check task end + +2025-09-24 22:31:00,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:01,148 INFO Connection check task start + +2025-09-24 22:31:01,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:01,148 INFO Out dated connection ,size=0 + +2025-09-24 22:31:01,149 INFO Connection check task end + +2025-09-24 22:31:03,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:04,149 INFO Connection check task start + +2025-09-24 22:31:04,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:04,149 INFO Out dated connection ,size=0 + +2025-09-24 22:31:04,149 INFO Connection check task end + +2025-09-24 22:31:06,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:07,149 INFO Connection check task start + +2025-09-24 22:31:07,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:07,150 INFO Out dated connection ,size=0 + +2025-09-24 22:31:07,150 INFO Connection check task end + +2025-09-24 22:31:09,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:10,150 INFO Connection check task start + +2025-09-24 22:31:10,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:10,151 INFO Out dated connection ,size=0 + +2025-09-24 22:31:10,151 INFO Connection check task end + +2025-09-24 22:31:12,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:13,151 INFO Connection check task start + +2025-09-24 22:31:13,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:13,151 INFO Out dated connection ,size=0 + +2025-09-24 22:31:13,151 INFO Connection check task end + +2025-09-24 22:31:15,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:16,152 INFO Connection check task start + +2025-09-24 22:31:16,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:16,152 INFO Out dated connection ,size=0 + +2025-09-24 22:31:16,152 INFO Connection check task end + +2025-09-24 22:31:18,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:19,153 INFO Connection check task start + +2025-09-24 22:31:19,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:19,153 INFO Out dated connection ,size=0 + +2025-09-24 22:31:19,153 INFO Connection check task end + +2025-09-24 22:31:21,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:22,154 INFO Connection check task start + +2025-09-24 22:31:22,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:22,161 INFO Out dated connection ,size=0 + +2025-09-24 22:31:22,161 INFO Connection check task end + +2025-09-24 22:31:24,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:25,162 INFO Connection check task start + +2025-09-24 22:31:25,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:25,162 INFO Out dated connection ,size=0 + +2025-09-24 22:31:25,162 INFO Connection check task end + +2025-09-24 22:31:27,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:28,162 INFO Connection check task start + +2025-09-24 22:31:28,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:28,162 INFO Out dated connection ,size=0 + +2025-09-24 22:31:28,162 INFO Connection check task end + +2025-09-24 22:31:30,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:31,163 INFO Connection check task start + +2025-09-24 22:31:31,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:31,163 INFO Out dated connection ,size=0 + +2025-09-24 22:31:31,163 INFO Connection check task end + +2025-09-24 22:31:33,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:34,164 INFO Connection check task start + +2025-09-24 22:31:34,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:34,165 INFO Out dated connection ,size=0 + +2025-09-24 22:31:34,165 INFO Connection check task end + +2025-09-24 22:31:36,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:37,165 INFO Connection check task start + +2025-09-24 22:31:37,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:37,176 INFO Out dated connection ,size=0 + +2025-09-24 22:31:37,176 INFO Connection check task end + +2025-09-24 22:31:39,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:40,177 INFO Connection check task start + +2025-09-24 22:31:40,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:40,177 INFO Out dated connection ,size=0 + +2025-09-24 22:31:40,177 INFO Connection check task end + +2025-09-24 22:31:42,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:43,177 INFO Connection check task start + +2025-09-24 22:31:43,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:43,177 INFO Out dated connection ,size=0 + +2025-09-24 22:31:43,177 INFO Connection check task end + +2025-09-24 22:31:45,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:46,177 INFO Connection check task start + +2025-09-24 22:31:46,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:46,178 INFO Out dated connection ,size=0 + +2025-09-24 22:31:46,178 INFO Connection check task end + +2025-09-24 22:31:48,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:49,178 INFO Connection check task start + +2025-09-24 22:31:49,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:49,178 INFO Out dated connection ,size=0 + +2025-09-24 22:31:49,178 INFO Connection check task end + +2025-09-24 22:31:51,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:52,179 INFO Connection check task start + +2025-09-24 22:31:52,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:52,180 INFO Out dated connection ,size=0 + +2025-09-24 22:31:52,181 INFO Connection check task end + +2025-09-24 22:31:54,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:55,182 INFO Connection check task start + +2025-09-24 22:31:55,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:55,182 INFO Out dated connection ,size=0 + +2025-09-24 22:31:55,182 INFO Connection check task end + +2025-09-24 22:31:57,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:31:58,182 INFO Connection check task start + +2025-09-24 22:31:58,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:31:58,182 INFO Out dated connection ,size=0 + +2025-09-24 22:31:58,182 INFO Connection check task end + +2025-09-24 22:32:00,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:01,183 INFO Connection check task start + +2025-09-24 22:32:01,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:01,184 INFO Out dated connection ,size=0 + +2025-09-24 22:32:01,184 INFO Connection check task end + +2025-09-24 22:32:03,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:04,185 INFO Connection check task start + +2025-09-24 22:32:04,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:04,185 INFO Out dated connection ,size=0 + +2025-09-24 22:32:04,185 INFO Connection check task end + +2025-09-24 22:32:06,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:07,186 INFO Connection check task start + +2025-09-24 22:32:07,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:07,187 INFO Out dated connection ,size=0 + +2025-09-24 22:32:07,187 INFO Connection check task end + +2025-09-24 22:32:09,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:10,188 INFO Connection check task start + +2025-09-24 22:32:10,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:10,188 INFO Out dated connection ,size=0 + +2025-09-24 22:32:10,188 INFO Connection check task end + +2025-09-24 22:32:12,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:13,188 INFO Connection check task start + +2025-09-24 22:32:13,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:13,188 INFO Out dated connection ,size=0 + +2025-09-24 22:32:13,188 INFO Connection check task end + +2025-09-24 22:32:15,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:16,189 INFO Connection check task start + +2025-09-24 22:32:16,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:16,189 INFO Out dated connection ,size=0 + +2025-09-24 22:32:16,189 INFO Connection check task end + +2025-09-24 22:32:18,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:19,190 INFO Connection check task start + +2025-09-24 22:32:19,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:19,190 INFO Out dated connection ,size=0 + +2025-09-24 22:32:19,190 INFO Connection check task end + +2025-09-24 22:32:21,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:22,190 INFO Connection check task start + +2025-09-24 22:32:22,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:22,190 INFO Out dated connection ,size=0 + +2025-09-24 22:32:22,191 INFO Connection check task end + +2025-09-24 22:32:24,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:25,191 INFO Connection check task start + +2025-09-24 22:32:25,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:25,191 INFO Out dated connection ,size=0 + +2025-09-24 22:32:25,191 INFO Connection check task end + +2025-09-24 22:32:27,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:28,191 INFO Connection check task start + +2025-09-24 22:32:28,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:28,191 INFO Out dated connection ,size=0 + +2025-09-24 22:32:28,191 INFO Connection check task end + +2025-09-24 22:32:30,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:31,192 INFO Connection check task start + +2025-09-24 22:32:31,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:31,193 INFO Out dated connection ,size=0 + +2025-09-24 22:32:31,193 INFO Connection check task end + +2025-09-24 22:32:33,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:34,193 INFO Connection check task start + +2025-09-24 22:32:34,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:34,193 INFO Out dated connection ,size=0 + +2025-09-24 22:32:34,193 INFO Connection check task end + +2025-09-24 22:32:36,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:37,194 INFO Connection check task start + +2025-09-24 22:32:37,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:37,194 INFO Out dated connection ,size=0 + +2025-09-24 22:32:37,194 INFO Connection check task end + +2025-09-24 22:32:39,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:40,194 INFO Connection check task start + +2025-09-24 22:32:40,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:40,195 INFO Out dated connection ,size=0 + +2025-09-24 22:32:40,195 INFO Connection check task end + +2025-09-24 22:32:42,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:43,195 INFO Connection check task start + +2025-09-24 22:32:43,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:43,195 INFO Out dated connection ,size=0 + +2025-09-24 22:32:43,195 INFO Connection check task end + +2025-09-24 22:32:45,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:46,196 INFO Connection check task start + +2025-09-24 22:32:46,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:46,196 INFO Out dated connection ,size=0 + +2025-09-24 22:32:46,197 INFO Connection check task end + +2025-09-24 22:32:48,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:49,198 INFO Connection check task start + +2025-09-24 22:32:49,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:49,198 INFO Out dated connection ,size=0 + +2025-09-24 22:32:49,198 INFO Connection check task end + +2025-09-24 22:32:51,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:52,198 INFO Connection check task start + +2025-09-24 22:32:52,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:52,198 INFO Out dated connection ,size=0 + +2025-09-24 22:32:52,198 INFO Connection check task end + +2025-09-24 22:32:54,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:55,199 INFO Connection check task start + +2025-09-24 22:32:55,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:55,199 INFO Out dated connection ,size=0 + +2025-09-24 22:32:55,199 INFO Connection check task end + +2025-09-24 22:32:57,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:32:58,199 INFO Connection check task start + +2025-09-24 22:32:58,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:32:58,199 INFO Out dated connection ,size=0 + +2025-09-24 22:32:58,199 INFO Connection check task end + +2025-09-24 22:33:00,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:01,200 INFO Connection check task start + +2025-09-24 22:33:01,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:01,200 INFO Out dated connection ,size=0 + +2025-09-24 22:33:01,200 INFO Connection check task end + +2025-09-24 22:33:03,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:04,201 INFO Connection check task start + +2025-09-24 22:33:04,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:04,201 INFO Out dated connection ,size=0 + +2025-09-24 22:33:04,201 INFO Connection check task end + +2025-09-24 22:33:06,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:07,201 INFO Connection check task start + +2025-09-24 22:33:07,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:07,201 INFO Out dated connection ,size=0 + +2025-09-24 22:33:07,201 INFO Connection check task end + +2025-09-24 22:33:09,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:10,202 INFO Connection check task start + +2025-09-24 22:33:10,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:10,202 INFO Out dated connection ,size=0 + +2025-09-24 22:33:10,202 INFO Connection check task end + +2025-09-24 22:33:12,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:13,202 INFO Connection check task start + +2025-09-24 22:33:13,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:13,202 INFO Out dated connection ,size=0 + +2025-09-24 22:33:13,202 INFO Connection check task end + +2025-09-24 22:33:15,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:16,203 INFO Connection check task start + +2025-09-24 22:33:16,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:16,203 INFO Out dated connection ,size=0 + +2025-09-24 22:33:16,203 INFO Connection check task end + +2025-09-24 22:33:18,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:19,204 INFO Connection check task start + +2025-09-24 22:33:19,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:19,204 INFO Out dated connection ,size=0 + +2025-09-24 22:33:19,204 INFO Connection check task end + +2025-09-24 22:33:21,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:22,205 INFO Connection check task start + +2025-09-24 22:33:22,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:22,205 INFO Out dated connection ,size=0 + +2025-09-24 22:33:22,205 INFO Connection check task end + +2025-09-24 22:33:24,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:25,205 INFO Connection check task start + +2025-09-24 22:33:25,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:25,206 INFO Out dated connection ,size=0 + +2025-09-24 22:33:25,206 INFO Connection check task end + +2025-09-24 22:33:27,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:28,206 INFO Connection check task start + +2025-09-24 22:33:28,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:28,206 INFO Out dated connection ,size=0 + +2025-09-24 22:33:28,206 INFO Connection check task end + +2025-09-24 22:33:30,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:31,206 INFO Connection check task start + +2025-09-24 22:33:31,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:31,206 INFO Out dated connection ,size=0 + +2025-09-24 22:33:31,207 INFO Connection check task end + +2025-09-24 22:33:33,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:34,207 INFO Connection check task start + +2025-09-24 22:33:34,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:34,207 INFO Out dated connection ,size=0 + +2025-09-24 22:33:34,207 INFO Connection check task end + +2025-09-24 22:33:36,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:37,208 INFO Connection check task start + +2025-09-24 22:33:37,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:37,208 INFO Out dated connection ,size=0 + +2025-09-24 22:33:37,208 INFO Connection check task end + +2025-09-24 22:33:39,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:40,209 INFO Connection check task start + +2025-09-24 22:33:40,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:40,209 INFO Out dated connection ,size=0 + +2025-09-24 22:33:40,209 INFO Connection check task end + +2025-09-24 22:33:42,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:43,209 INFO Connection check task start + +2025-09-24 22:33:43,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:43,210 INFO Out dated connection ,size=0 + +2025-09-24 22:33:43,210 INFO Connection check task end + +2025-09-24 22:33:45,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:46,210 INFO Connection check task start + +2025-09-24 22:33:46,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:46,210 INFO Out dated connection ,size=0 + +2025-09-24 22:33:46,210 INFO Connection check task end + +2025-09-24 22:33:48,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:49,212 INFO Connection check task start + +2025-09-24 22:33:49,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:49,212 INFO Out dated connection ,size=0 + +2025-09-24 22:33:49,212 INFO Connection check task end + +2025-09-24 22:33:51,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:52,213 INFO Connection check task start + +2025-09-24 22:33:52,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:52,214 INFO Out dated connection ,size=0 + +2025-09-24 22:33:52,214 INFO Connection check task end + +2025-09-24 22:33:54,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:55,214 INFO Connection check task start + +2025-09-24 22:33:55,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:55,214 INFO Out dated connection ,size=0 + +2025-09-24 22:33:55,214 INFO Connection check task end + +2025-09-24 22:33:57,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:33:58,215 INFO Connection check task start + +2025-09-24 22:33:58,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:33:58,215 INFO Out dated connection ,size=0 + +2025-09-24 22:33:58,215 INFO Connection check task end + +2025-09-24 22:34:00,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:01,216 INFO Connection check task start + +2025-09-24 22:34:01,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:01,216 INFO Out dated connection ,size=0 + +2025-09-24 22:34:01,216 INFO Connection check task end + +2025-09-24 22:34:03,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:04,216 INFO Connection check task start + +2025-09-24 22:34:04,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:04,217 INFO Out dated connection ,size=0 + +2025-09-24 22:34:04,217 INFO Connection check task end + +2025-09-24 22:34:06,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:07,217 INFO Connection check task start + +2025-09-24 22:34:07,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:07,217 INFO Out dated connection ,size=0 + +2025-09-24 22:34:07,217 INFO Connection check task end + +2025-09-24 22:34:09,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:10,217 INFO Connection check task start + +2025-09-24 22:34:10,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:10,218 INFO Out dated connection ,size=0 + +2025-09-24 22:34:10,218 INFO Connection check task end + +2025-09-24 22:34:12,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:13,218 INFO Connection check task start + +2025-09-24 22:34:13,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:13,218 INFO Out dated connection ,size=0 + +2025-09-24 22:34:13,218 INFO Connection check task end + +2025-09-24 22:34:15,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:16,219 INFO Connection check task start + +2025-09-24 22:34:16,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:16,219 INFO Out dated connection ,size=0 + +2025-09-24 22:34:16,219 INFO Connection check task end + +2025-09-24 22:34:18,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:19,220 INFO Connection check task start + +2025-09-24 22:34:19,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:19,220 INFO Out dated connection ,size=0 + +2025-09-24 22:34:19,220 INFO Connection check task end + +2025-09-24 22:34:21,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:22,220 INFO Connection check task start + +2025-09-24 22:34:22,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:22,220 INFO Out dated connection ,size=0 + +2025-09-24 22:34:22,220 INFO Connection check task end + +2025-09-24 22:34:24,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:25,221 INFO Connection check task start + +2025-09-24 22:34:25,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:25,221 INFO Out dated connection ,size=0 + +2025-09-24 22:34:25,221 INFO Connection check task end + +2025-09-24 22:34:27,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:28,222 INFO Connection check task start + +2025-09-24 22:34:28,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:28,222 INFO Out dated connection ,size=0 + +2025-09-24 22:34:28,222 INFO Connection check task end + +2025-09-24 22:34:30,610 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:31,223 INFO Connection check task start + +2025-09-24 22:34:31,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:31,223 INFO Out dated connection ,size=0 + +2025-09-24 22:34:31,223 INFO Connection check task end + +2025-09-24 22:34:33,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:34,224 INFO Connection check task start + +2025-09-24 22:34:34,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:34,224 INFO Out dated connection ,size=0 + +2025-09-24 22:34:34,224 INFO Connection check task end + +2025-09-24 22:34:36,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:37,225 INFO Connection check task start + +2025-09-24 22:34:37,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:37,225 INFO Out dated connection ,size=0 + +2025-09-24 22:34:37,225 INFO Connection check task end + +2025-09-24 22:34:39,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:40,226 INFO Connection check task start + +2025-09-24 22:34:40,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:40,226 INFO Out dated connection ,size=0 + +2025-09-24 22:34:40,226 INFO Connection check task end + +2025-09-24 22:34:42,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:43,227 INFO Connection check task start + +2025-09-24 22:34:43,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:43,227 INFO Out dated connection ,size=0 + +2025-09-24 22:34:43,227 INFO Connection check task end + +2025-09-24 22:34:45,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:46,228 INFO Connection check task start + +2025-09-24 22:34:46,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:46,228 INFO Out dated connection ,size=0 + +2025-09-24 22:34:46,228 INFO Connection check task end + +2025-09-24 22:34:48,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:49,229 INFO Connection check task start + +2025-09-24 22:34:49,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:49,229 INFO Out dated connection ,size=0 + +2025-09-24 22:34:49,229 INFO Connection check task end + +2025-09-24 22:34:51,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:52,230 INFO Connection check task start + +2025-09-24 22:34:52,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:52,230 INFO Out dated connection ,size=0 + +2025-09-24 22:34:52,230 INFO Connection check task end + +2025-09-24 22:34:54,616 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:55,231 INFO Connection check task start + +2025-09-24 22:34:55,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:55,231 INFO Out dated connection ,size=0 + +2025-09-24 22:34:55,231 INFO Connection check task end + +2025-09-24 22:34:57,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:34:58,231 INFO Connection check task start + +2025-09-24 22:34:58,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:34:58,231 INFO Out dated connection ,size=0 + +2025-09-24 22:34:58,231 INFO Connection check task end + +2025-09-24 22:35:00,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:01,231 INFO Connection check task start + +2025-09-24 22:35:01,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:01,231 INFO Out dated connection ,size=0 + +2025-09-24 22:35:01,231 INFO Connection check task end + +2025-09-24 22:35:03,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:04,232 INFO Connection check task start + +2025-09-24 22:35:04,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:04,232 INFO Out dated connection ,size=0 + +2025-09-24 22:35:04,232 INFO Connection check task end + +2025-09-24 22:35:06,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:07,232 INFO Connection check task start + +2025-09-24 22:35:07,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:07,232 INFO Out dated connection ,size=0 + +2025-09-24 22:35:07,232 INFO Connection check task end + +2025-09-24 22:35:09,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:10,233 INFO Connection check task start + +2025-09-24 22:35:10,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:10,233 INFO Out dated connection ,size=0 + +2025-09-24 22:35:10,233 INFO Connection check task end + +2025-09-24 22:35:12,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:13,233 INFO Connection check task start + +2025-09-24 22:35:13,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:13,233 INFO Out dated connection ,size=0 + +2025-09-24 22:35:13,234 INFO Connection check task end + +2025-09-24 22:35:15,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:16,234 INFO Connection check task start + +2025-09-24 22:35:16,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:16,234 INFO Out dated connection ,size=0 + +2025-09-24 22:35:16,234 INFO Connection check task end + +2025-09-24 22:35:18,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:19,236 INFO Connection check task start + +2025-09-24 22:35:19,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:19,236 INFO Out dated connection ,size=0 + +2025-09-24 22:35:19,236 INFO Connection check task end + +2025-09-24 22:35:21,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:22,236 INFO Connection check task start + +2025-09-24 22:35:22,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:22,237 INFO Out dated connection ,size=0 + +2025-09-24 22:35:22,237 INFO Connection check task end + +2025-09-24 22:35:24,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:25,237 INFO Connection check task start + +2025-09-24 22:35:25,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:25,237 INFO Out dated connection ,size=0 + +2025-09-24 22:35:25,237 INFO Connection check task end + +2025-09-24 22:35:27,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:28,237 INFO Connection check task start + +2025-09-24 22:35:28,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:28,238 INFO Out dated connection ,size=0 + +2025-09-24 22:35:28,238 INFO Connection check task end + +2025-09-24 22:35:30,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:31,238 INFO Connection check task start + +2025-09-24 22:35:31,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:31,238 INFO Out dated connection ,size=0 + +2025-09-24 22:35:31,238 INFO Connection check task end + +2025-09-24 22:35:33,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:34,239 INFO Connection check task start + +2025-09-24 22:35:34,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:34,239 INFO Out dated connection ,size=0 + +2025-09-24 22:35:34,239 INFO Connection check task end + +2025-09-24 22:35:36,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:37,240 INFO Connection check task start + +2025-09-24 22:35:37,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:37,240 INFO Out dated connection ,size=0 + +2025-09-24 22:35:37,240 INFO Connection check task end + +2025-09-24 22:35:39,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:40,240 INFO Connection check task start + +2025-09-24 22:35:40,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:40,241 INFO Out dated connection ,size=0 + +2025-09-24 22:35:40,241 INFO Connection check task end + +2025-09-24 22:35:42,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:43,241 INFO Connection check task start + +2025-09-24 22:35:43,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:43,242 INFO Out dated connection ,size=0 + +2025-09-24 22:35:43,242 INFO Connection check task end + +2025-09-24 22:35:45,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:46,242 INFO Connection check task start + +2025-09-24 22:35:46,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:46,243 INFO Out dated connection ,size=0 + +2025-09-24 22:35:46,243 INFO Connection check task end + +2025-09-24 22:35:48,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:49,243 INFO Connection check task start + +2025-09-24 22:35:49,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:49,243 INFO Out dated connection ,size=0 + +2025-09-24 22:35:49,243 INFO Connection check task end + +2025-09-24 22:35:51,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:52,244 INFO Connection check task start + +2025-09-24 22:35:52,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:52,244 INFO Out dated connection ,size=0 + +2025-09-24 22:35:52,244 INFO Connection check task end + +2025-09-24 22:35:54,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:55,245 INFO Connection check task start + +2025-09-24 22:35:55,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:55,245 INFO Out dated connection ,size=0 + +2025-09-24 22:35:55,245 INFO Connection check task end + +2025-09-24 22:35:57,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:35:58,245 INFO Connection check task start + +2025-09-24 22:35:58,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:35:58,245 INFO Out dated connection ,size=0 + +2025-09-24 22:35:58,245 INFO Connection check task end + +2025-09-24 22:36:00,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:01,246 INFO Connection check task start + +2025-09-24 22:36:01,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:01,246 INFO Out dated connection ,size=0 + +2025-09-24 22:36:01,246 INFO Connection check task end + +2025-09-24 22:36:03,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:04,247 INFO Connection check task start + +2025-09-24 22:36:04,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:04,248 INFO Out dated connection ,size=0 + +2025-09-24 22:36:04,248 INFO Connection check task end + +2025-09-24 22:36:06,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:07,248 INFO Connection check task start + +2025-09-24 22:36:07,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:07,248 INFO Out dated connection ,size=0 + +2025-09-24 22:36:07,248 INFO Connection check task end + +2025-09-24 22:36:09,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:10,254 INFO Connection check task start + +2025-09-24 22:36:10,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:10,255 INFO Out dated connection ,size=0 + +2025-09-24 22:36:10,255 INFO Connection check task end + +2025-09-24 22:36:12,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:13,256 INFO Connection check task start + +2025-09-24 22:36:13,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:13,256 INFO Out dated connection ,size=0 + +2025-09-24 22:36:13,256 INFO Connection check task end + +2025-09-24 22:36:15,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:16,256 INFO Connection check task start + +2025-09-24 22:36:16,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:16,257 INFO Out dated connection ,size=0 + +2025-09-24 22:36:16,257 INFO Connection check task end + +2025-09-24 22:36:18,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:19,257 INFO Connection check task start + +2025-09-24 22:36:19,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:19,257 INFO Out dated connection ,size=0 + +2025-09-24 22:36:19,257 INFO Connection check task end + +2025-09-24 22:36:21,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:22,257 INFO Connection check task start + +2025-09-24 22:36:22,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:22,257 INFO Out dated connection ,size=0 + +2025-09-24 22:36:22,258 INFO Connection check task end + +2025-09-24 22:36:24,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:25,258 INFO Connection check task start + +2025-09-24 22:36:25,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:25,258 INFO Out dated connection ,size=0 + +2025-09-24 22:36:25,258 INFO Connection check task end + +2025-09-24 22:36:27,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:28,258 INFO Connection check task start + +2025-09-24 22:36:28,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:28,259 INFO Out dated connection ,size=0 + +2025-09-24 22:36:28,259 INFO Connection check task end + +2025-09-24 22:36:30,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:31,259 INFO Connection check task start + +2025-09-24 22:36:31,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:31,260 INFO Out dated connection ,size=0 + +2025-09-24 22:36:31,260 INFO Connection check task end + +2025-09-24 22:36:33,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:34,261 INFO Connection check task start + +2025-09-24 22:36:34,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:34,261 INFO Out dated connection ,size=0 + +2025-09-24 22:36:34,261 INFO Connection check task end + +2025-09-24 22:36:36,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:37,262 INFO Connection check task start + +2025-09-24 22:36:37,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:37,262 INFO Out dated connection ,size=0 + +2025-09-24 22:36:37,262 INFO Connection check task end + +2025-09-24 22:36:39,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:40,263 INFO Connection check task start + +2025-09-24 22:36:40,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:40,263 INFO Out dated connection ,size=0 + +2025-09-24 22:36:40,263 INFO Connection check task end + +2025-09-24 22:36:42,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:43,263 INFO Connection check task start + +2025-09-24 22:36:43,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:43,264 INFO Out dated connection ,size=0 + +2025-09-24 22:36:43,264 INFO Connection check task end + +2025-09-24 22:36:45,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:46,264 INFO Connection check task start + +2025-09-24 22:36:46,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:46,264 INFO Out dated connection ,size=0 + +2025-09-24 22:36:46,265 INFO Connection check task end + +2025-09-24 22:36:48,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:49,265 INFO Connection check task start + +2025-09-24 22:36:49,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:49,265 INFO Out dated connection ,size=0 + +2025-09-24 22:36:49,265 INFO Connection check task end + +2025-09-24 22:36:51,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:52,266 INFO Connection check task start + +2025-09-24 22:36:52,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:52,266 INFO Out dated connection ,size=0 + +2025-09-24 22:36:52,266 INFO Connection check task end + +2025-09-24 22:36:54,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:55,268 INFO Connection check task start + +2025-09-24 22:36:55,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:55,268 INFO Out dated connection ,size=0 + +2025-09-24 22:36:55,268 INFO Connection check task end + +2025-09-24 22:36:57,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:36:58,268 INFO Connection check task start + +2025-09-24 22:36:58,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:36:58,268 INFO Out dated connection ,size=0 + +2025-09-24 22:36:58,268 INFO Connection check task end + +2025-09-24 22:37:00,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:01,269 INFO Connection check task start + +2025-09-24 22:37:01,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:01,269 INFO Out dated connection ,size=0 + +2025-09-24 22:37:01,269 INFO Connection check task end + +2025-09-24 22:37:03,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:04,269 INFO Connection check task start + +2025-09-24 22:37:04,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:04,270 INFO Out dated connection ,size=0 + +2025-09-24 22:37:04,270 INFO Connection check task end + +2025-09-24 22:37:06,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:07,270 INFO Connection check task start + +2025-09-24 22:37:07,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:07,271 INFO Out dated connection ,size=0 + +2025-09-24 22:37:07,271 INFO Connection check task end + +2025-09-24 22:37:09,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:10,271 INFO Connection check task start + +2025-09-24 22:37:10,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:10,271 INFO Out dated connection ,size=0 + +2025-09-24 22:37:10,271 INFO Connection check task end + +2025-09-24 22:37:12,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:13,271 INFO Connection check task start + +2025-09-24 22:37:13,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:13,272 INFO Out dated connection ,size=0 + +2025-09-24 22:37:13,272 INFO Connection check task end + +2025-09-24 22:37:15,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:16,272 INFO Connection check task start + +2025-09-24 22:37:16,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:16,273 INFO Out dated connection ,size=0 + +2025-09-24 22:37:16,273 INFO Connection check task end + +2025-09-24 22:37:18,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:19,273 INFO Connection check task start + +2025-09-24 22:37:19,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:19,273 INFO Out dated connection ,size=0 + +2025-09-24 22:37:19,273 INFO Connection check task end + +2025-09-24 22:37:21,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:22,273 INFO Connection check task start + +2025-09-24 22:37:22,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:22,274 INFO Out dated connection ,size=0 + +2025-09-24 22:37:22,274 INFO Connection check task end + +2025-09-24 22:37:24,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:25,274 INFO Connection check task start + +2025-09-24 22:37:25,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:25,274 INFO Out dated connection ,size=0 + +2025-09-24 22:37:25,274 INFO Connection check task end + +2025-09-24 22:37:27,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:28,275 INFO Connection check task start + +2025-09-24 22:37:28,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:28,275 INFO Out dated connection ,size=0 + +2025-09-24 22:37:28,275 INFO Connection check task end + +2025-09-24 22:37:30,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:31,275 INFO Connection check task start + +2025-09-24 22:37:31,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:31,275 INFO Out dated connection ,size=0 + +2025-09-24 22:37:31,275 INFO Connection check task end + +2025-09-24 22:37:33,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:34,276 INFO Connection check task start + +2025-09-24 22:37:34,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:34,276 INFO Out dated connection ,size=0 + +2025-09-24 22:37:34,276 INFO Connection check task end + +2025-09-24 22:37:36,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:37,277 INFO Connection check task start + +2025-09-24 22:37:37,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:37,277 INFO Out dated connection ,size=0 + +2025-09-24 22:37:37,277 INFO Connection check task end + +2025-09-24 22:37:39,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:40,277 INFO Connection check task start + +2025-09-24 22:37:40,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:40,277 INFO Out dated connection ,size=0 + +2025-09-24 22:37:40,277 INFO Connection check task end + +2025-09-24 22:37:42,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:43,278 INFO Connection check task start + +2025-09-24 22:37:43,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:43,278 INFO Out dated connection ,size=0 + +2025-09-24 22:37:43,278 INFO Connection check task end + +2025-09-24 22:37:45,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:46,279 INFO Connection check task start + +2025-09-24 22:37:46,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:46,279 INFO Out dated connection ,size=0 + +2025-09-24 22:37:46,279 INFO Connection check task end + +2025-09-24 22:37:48,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:49,280 INFO Connection check task start + +2025-09-24 22:37:49,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:49,280 INFO Out dated connection ,size=0 + +2025-09-24 22:37:49,280 INFO Connection check task end + +2025-09-24 22:37:51,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:52,280 INFO Connection check task start + +2025-09-24 22:37:52,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:52,280 INFO Out dated connection ,size=0 + +2025-09-24 22:37:52,280 INFO Connection check task end + +2025-09-24 22:37:54,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:55,281 INFO Connection check task start + +2025-09-24 22:37:55,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:55,281 INFO Out dated connection ,size=0 + +2025-09-24 22:37:55,281 INFO Connection check task end + +2025-09-24 22:37:57,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:37:58,281 INFO Connection check task start + +2025-09-24 22:37:58,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:37:58,281 INFO Out dated connection ,size=0 + +2025-09-24 22:37:58,281 INFO Connection check task end + +2025-09-24 22:38:00,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:01,282 INFO Connection check task start + +2025-09-24 22:38:01,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:01,282 INFO Out dated connection ,size=0 + +2025-09-24 22:38:01,282 INFO Connection check task end + +2025-09-24 22:38:03,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:04,283 INFO Connection check task start + +2025-09-24 22:38:04,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:04,284 INFO Out dated connection ,size=0 + +2025-09-24 22:38:04,284 INFO Connection check task end + +2025-09-24 22:38:06,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:07,284 INFO Connection check task start + +2025-09-24 22:38:07,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:07,285 INFO Out dated connection ,size=0 + +2025-09-24 22:38:07,285 INFO Connection check task end + +2025-09-24 22:38:09,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:10,286 INFO Connection check task start + +2025-09-24 22:38:10,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:10,286 INFO Out dated connection ,size=0 + +2025-09-24 22:38:10,287 INFO Connection check task end + +2025-09-24 22:38:12,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:13,287 INFO Connection check task start + +2025-09-24 22:38:13,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:13,287 INFO Out dated connection ,size=0 + +2025-09-24 22:38:13,287 INFO Connection check task end + +2025-09-24 22:38:15,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:16,288 INFO Connection check task start + +2025-09-24 22:38:16,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:16,288 INFO Out dated connection ,size=0 + +2025-09-24 22:38:16,289 INFO Connection check task end + +2025-09-24 22:38:18,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:19,290 INFO Connection check task start + +2025-09-24 22:38:19,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:19,290 INFO Out dated connection ,size=0 + +2025-09-24 22:38:19,290 INFO Connection check task end + +2025-09-24 22:38:21,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:22,290 INFO Connection check task start + +2025-09-24 22:38:22,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:22,291 INFO Out dated connection ,size=0 + +2025-09-24 22:38:22,291 INFO Connection check task end + +2025-09-24 22:38:24,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:25,291 INFO Connection check task start + +2025-09-24 22:38:25,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:25,291 INFO Out dated connection ,size=0 + +2025-09-24 22:38:25,291 INFO Connection check task end + +2025-09-24 22:38:27,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:28,292 INFO Connection check task start + +2025-09-24 22:38:28,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:28,292 INFO Out dated connection ,size=0 + +2025-09-24 22:38:28,293 INFO Connection check task end + +2025-09-24 22:38:30,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:31,293 INFO Connection check task start + +2025-09-24 22:38:31,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:31,294 INFO Out dated connection ,size=0 + +2025-09-24 22:38:31,294 INFO Connection check task end + +2025-09-24 22:38:33,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:34,295 INFO Connection check task start + +2025-09-24 22:38:34,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:34,295 INFO Out dated connection ,size=0 + +2025-09-24 22:38:34,295 INFO Connection check task end + +2025-09-24 22:38:36,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:37,296 INFO Connection check task start + +2025-09-24 22:38:37,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:37,297 INFO Out dated connection ,size=0 + +2025-09-24 22:38:37,297 INFO Connection check task end + +2025-09-24 22:38:39,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:40,297 INFO Connection check task start + +2025-09-24 22:38:40,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:40,297 INFO Out dated connection ,size=0 + +2025-09-24 22:38:40,298 INFO Connection check task end + +2025-09-24 22:38:42,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:43,299 INFO Connection check task start + +2025-09-24 22:38:43,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:43,299 INFO Out dated connection ,size=0 + +2025-09-24 22:38:43,299 INFO Connection check task end + +2025-09-24 22:38:45,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:46,300 INFO Connection check task start + +2025-09-24 22:38:46,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:46,301 INFO Out dated connection ,size=0 + +2025-09-24 22:38:46,301 INFO Connection check task end + +2025-09-24 22:38:48,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:49,301 INFO Connection check task start + +2025-09-24 22:38:49,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:49,301 INFO Out dated connection ,size=0 + +2025-09-24 22:38:49,301 INFO Connection check task end + +2025-09-24 22:38:51,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:52,302 INFO Connection check task start + +2025-09-24 22:38:52,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:52,302 INFO Out dated connection ,size=0 + +2025-09-24 22:38:52,302 INFO Connection check task end + +2025-09-24 22:38:54,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:55,303 INFO Connection check task start + +2025-09-24 22:38:55,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:55,303 INFO Out dated connection ,size=0 + +2025-09-24 22:38:55,303 INFO Connection check task end + +2025-09-24 22:38:57,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:38:58,303 INFO Connection check task start + +2025-09-24 22:38:58,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:38:58,304 INFO Out dated connection ,size=0 + +2025-09-24 22:38:58,304 INFO Connection check task end + +2025-09-24 22:39:00,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:01,304 INFO Connection check task start + +2025-09-24 22:39:01,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:01,304 INFO Out dated connection ,size=0 + +2025-09-24 22:39:01,304 INFO Connection check task end + +2025-09-24 22:39:03,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:04,306 INFO Connection check task start + +2025-09-24 22:39:04,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:04,306 INFO Out dated connection ,size=0 + +2025-09-24 22:39:04,306 INFO Connection check task end + +2025-09-24 22:39:06,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:07,306 INFO Connection check task start + +2025-09-24 22:39:07,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:07,307 INFO Out dated connection ,size=0 + +2025-09-24 22:39:07,307 INFO Connection check task end + +2025-09-24 22:39:09,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:10,308 INFO Connection check task start + +2025-09-24 22:39:10,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:10,316 INFO Out dated connection ,size=0 + +2025-09-24 22:39:10,316 INFO Connection check task end + +2025-09-24 22:39:12,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:13,317 INFO Connection check task start + +2025-09-24 22:39:13,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:13,317 INFO Out dated connection ,size=0 + +2025-09-24 22:39:13,323 INFO Connection check task end + +2025-09-24 22:39:15,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:16,323 INFO Connection check task start + +2025-09-24 22:39:16,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:16,323 INFO Out dated connection ,size=0 + +2025-09-24 22:39:16,323 INFO Connection check task end + +2025-09-24 22:39:18,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:19,323 INFO Connection check task start + +2025-09-24 22:39:19,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:19,323 INFO Out dated connection ,size=0 + +2025-09-24 22:39:19,323 INFO Connection check task end + +2025-09-24 22:39:21,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:22,324 INFO Connection check task start + +2025-09-24 22:39:22,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:22,324 INFO Out dated connection ,size=0 + +2025-09-24 22:39:22,324 INFO Connection check task end + +2025-09-24 22:39:24,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:25,324 INFO Connection check task start + +2025-09-24 22:39:25,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:25,324 INFO Out dated connection ,size=0 + +2025-09-24 22:39:25,324 INFO Connection check task end + +2025-09-24 22:39:27,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:28,324 INFO Connection check task start + +2025-09-24 22:39:28,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:28,324 INFO Out dated connection ,size=0 + +2025-09-24 22:39:28,324 INFO Connection check task end + +2025-09-24 22:39:30,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:31,325 INFO Connection check task start + +2025-09-24 22:39:31,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:31,325 INFO Out dated connection ,size=0 + +2025-09-24 22:39:31,325 INFO Connection check task end + +2025-09-24 22:39:33,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:34,325 INFO Connection check task start + +2025-09-24 22:39:34,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:34,325 INFO Out dated connection ,size=0 + +2025-09-24 22:39:34,325 INFO Connection check task end + +2025-09-24 22:39:36,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:37,326 INFO Connection check task start + +2025-09-24 22:39:37,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:37,326 INFO Out dated connection ,size=0 + +2025-09-24 22:39:37,326 INFO Connection check task end + +2025-09-24 22:39:39,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:40,327 INFO Connection check task start + +2025-09-24 22:39:40,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:40,327 INFO Out dated connection ,size=0 + +2025-09-24 22:39:40,327 INFO Connection check task end + +2025-09-24 22:39:42,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:43,328 INFO Connection check task start + +2025-09-24 22:39:43,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:43,328 INFO Out dated connection ,size=0 + +2025-09-24 22:39:43,328 INFO Connection check task end + +2025-09-24 22:39:45,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:46,328 INFO Connection check task start + +2025-09-24 22:39:46,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:46,329 INFO Out dated connection ,size=0 + +2025-09-24 22:39:46,329 INFO Connection check task end + +2025-09-24 22:39:48,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:49,329 INFO Connection check task start + +2025-09-24 22:39:49,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:49,330 INFO Out dated connection ,size=0 + +2025-09-24 22:39:49,330 INFO Connection check task end + +2025-09-24 22:39:51,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:52,330 INFO Connection check task start + +2025-09-24 22:39:52,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:52,331 INFO Out dated connection ,size=0 + +2025-09-24 22:39:52,331 INFO Connection check task end + +2025-09-24 22:39:54,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:55,331 INFO Connection check task start + +2025-09-24 22:39:55,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:55,331 INFO Out dated connection ,size=0 + +2025-09-24 22:39:55,331 INFO Connection check task end + +2025-09-24 22:39:57,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:39:58,332 INFO Connection check task start + +2025-09-24 22:39:58,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:39:58,332 INFO Out dated connection ,size=0 + +2025-09-24 22:39:58,332 INFO Connection check task end + +2025-09-24 22:40:00,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:01,333 INFO Connection check task start + +2025-09-24 22:40:01,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:01,333 INFO Out dated connection ,size=0 + +2025-09-24 22:40:01,333 INFO Connection check task end + +2025-09-24 22:40:03,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:04,334 INFO Connection check task start + +2025-09-24 22:40:04,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:04,334 INFO Out dated connection ,size=0 + +2025-09-24 22:40:04,334 INFO Connection check task end + +2025-09-24 22:40:06,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:07,334 INFO Connection check task start + +2025-09-24 22:40:07,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:07,335 INFO Out dated connection ,size=0 + +2025-09-24 22:40:07,335 INFO Connection check task end + +2025-09-24 22:40:09,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:10,335 INFO Connection check task start + +2025-09-24 22:40:10,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:10,335 INFO Out dated connection ,size=0 + +2025-09-24 22:40:10,335 INFO Connection check task end + +2025-09-24 22:40:12,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:13,335 INFO Connection check task start + +2025-09-24 22:40:13,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:13,335 INFO Out dated connection ,size=0 + +2025-09-24 22:40:13,335 INFO Connection check task end + +2025-09-24 22:40:15,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:16,336 INFO Connection check task start + +2025-09-24 22:40:16,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:16,336 INFO Out dated connection ,size=0 + +2025-09-24 22:40:16,336 INFO Connection check task end + +2025-09-24 22:40:18,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:19,336 INFO Connection check task start + +2025-09-24 22:40:19,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:19,336 INFO Out dated connection ,size=0 + +2025-09-24 22:40:19,336 INFO Connection check task end + +2025-09-24 22:40:21,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:22,336 INFO Connection check task start + +2025-09-24 22:40:22,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:22,337 INFO Out dated connection ,size=0 + +2025-09-24 22:40:22,337 INFO Connection check task end + +2025-09-24 22:40:24,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:25,337 INFO Connection check task start + +2025-09-24 22:40:25,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:25,337 INFO Out dated connection ,size=0 + +2025-09-24 22:40:25,337 INFO Connection check task end + +2025-09-24 22:40:27,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:28,337 INFO Connection check task start + +2025-09-24 22:40:28,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:28,337 INFO Out dated connection ,size=0 + +2025-09-24 22:40:28,337 INFO Connection check task end + +2025-09-24 22:40:30,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:31,338 INFO Connection check task start + +2025-09-24 22:40:31,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:31,338 INFO Out dated connection ,size=0 + +2025-09-24 22:40:31,338 INFO Connection check task end + +2025-09-24 22:40:33,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:34,338 INFO Connection check task start + +2025-09-24 22:40:34,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:34,338 INFO Out dated connection ,size=0 + +2025-09-24 22:40:34,338 INFO Connection check task end + +2025-09-24 22:40:36,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:37,338 INFO Connection check task start + +2025-09-24 22:40:37,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:37,339 INFO Out dated connection ,size=0 + +2025-09-24 22:40:37,339 INFO Connection check task end + +2025-09-24 22:40:39,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:40,339 INFO Connection check task start + +2025-09-24 22:40:40,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:40,339 INFO Out dated connection ,size=0 + +2025-09-24 22:40:40,339 INFO Connection check task end + +2025-09-24 22:40:42,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:43,339 INFO Connection check task start + +2025-09-24 22:40:43,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:43,339 INFO Out dated connection ,size=0 + +2025-09-24 22:40:43,340 INFO Connection check task end + +2025-09-24 22:40:45,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:46,340 INFO Connection check task start + +2025-09-24 22:40:46,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:46,340 INFO Out dated connection ,size=0 + +2025-09-24 22:40:46,340 INFO Connection check task end + +2025-09-24 22:40:48,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:49,340 INFO Connection check task start + +2025-09-24 22:40:49,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:49,340 INFO Out dated connection ,size=0 + +2025-09-24 22:40:49,340 INFO Connection check task end + +2025-09-24 22:40:51,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:52,340 INFO Connection check task start + +2025-09-24 22:40:52,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:52,340 INFO Out dated connection ,size=0 + +2025-09-24 22:40:52,340 INFO Connection check task end + +2025-09-24 22:40:54,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:55,341 INFO Connection check task start + +2025-09-24 22:40:55,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:55,341 INFO Out dated connection ,size=0 + +2025-09-24 22:40:55,341 INFO Connection check task end + +2025-09-24 22:40:57,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:40:58,341 INFO Connection check task start + +2025-09-24 22:40:58,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:40:58,342 INFO Out dated connection ,size=0 + +2025-09-24 22:40:58,342 INFO Connection check task end + +2025-09-24 22:41:00,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:01,343 INFO Connection check task start + +2025-09-24 22:41:01,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:01,344 INFO Out dated connection ,size=0 + +2025-09-24 22:41:01,344 INFO Connection check task end + +2025-09-24 22:41:03,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:04,344 INFO Connection check task start + +2025-09-24 22:41:04,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:04,344 INFO Out dated connection ,size=0 + +2025-09-24 22:41:04,344 INFO Connection check task end + +2025-09-24 22:41:06,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:07,344 INFO Connection check task start + +2025-09-24 22:41:07,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:07,345 INFO Out dated connection ,size=0 + +2025-09-24 22:41:07,345 INFO Connection check task end + +2025-09-24 22:41:09,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:10,345 INFO Connection check task start + +2025-09-24 22:41:10,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:10,345 INFO Out dated connection ,size=0 + +2025-09-24 22:41:10,345 INFO Connection check task end + +2025-09-24 22:41:12,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:13,345 INFO Connection check task start + +2025-09-24 22:41:13,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:13,345 INFO Out dated connection ,size=0 + +2025-09-24 22:41:13,345 INFO Connection check task end + +2025-09-24 22:41:15,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:16,345 INFO Connection check task start + +2025-09-24 22:41:16,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:16,346 INFO Out dated connection ,size=0 + +2025-09-24 22:41:16,346 INFO Connection check task end + +2025-09-24 22:41:18,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:19,346 INFO Connection check task start + +2025-09-24 22:41:19,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:19,348 INFO Out dated connection ,size=0 + +2025-09-24 22:41:19,348 INFO Connection check task end + +2025-09-24 22:41:21,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:22,348 INFO Connection check task start + +2025-09-24 22:41:22,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:22,348 INFO Out dated connection ,size=0 + +2025-09-24 22:41:22,348 INFO Connection check task end + +2025-09-24 22:41:24,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:25,348 INFO Connection check task start + +2025-09-24 22:41:25,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:25,349 INFO Out dated connection ,size=0 + +2025-09-24 22:41:25,349 INFO Connection check task end + +2025-09-24 22:41:27,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:28,349 INFO Connection check task start + +2025-09-24 22:41:28,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:28,349 INFO Out dated connection ,size=0 + +2025-09-24 22:41:28,349 INFO Connection check task end + +2025-09-24 22:41:30,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:31,350 INFO Connection check task start + +2025-09-24 22:41:31,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:31,350 INFO Out dated connection ,size=0 + +2025-09-24 22:41:31,350 INFO Connection check task end + +2025-09-24 22:41:33,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:34,351 INFO Connection check task start + +2025-09-24 22:41:34,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:34,351 INFO Out dated connection ,size=0 + +2025-09-24 22:41:34,351 INFO Connection check task end + +2025-09-24 22:41:36,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:37,351 INFO Connection check task start + +2025-09-24 22:41:37,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:37,351 INFO Out dated connection ,size=0 + +2025-09-24 22:41:37,351 INFO Connection check task end + +2025-09-24 22:41:39,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:40,352 INFO Connection check task start + +2025-09-24 22:41:40,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:40,352 INFO Out dated connection ,size=0 + +2025-09-24 22:41:40,352 INFO Connection check task end + +2025-09-24 22:41:42,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:43,352 INFO Connection check task start + +2025-09-24 22:41:43,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:43,352 INFO Out dated connection ,size=0 + +2025-09-24 22:41:43,352 INFO Connection check task end + +2025-09-24 22:41:45,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:46,352 INFO Connection check task start + +2025-09-24 22:41:46,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:46,352 INFO Out dated connection ,size=0 + +2025-09-24 22:41:46,352 INFO Connection check task end + +2025-09-24 22:41:48,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:49,353 INFO Connection check task start + +2025-09-24 22:41:49,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:49,353 INFO Out dated connection ,size=0 + +2025-09-24 22:41:49,353 INFO Connection check task end + +2025-09-24 22:41:51,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:52,362 INFO Connection check task start + +2025-09-24 22:41:52,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:52,362 INFO Out dated connection ,size=0 + +2025-09-24 22:41:52,362 INFO Connection check task end + +2025-09-24 22:41:54,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:55,363 INFO Connection check task start + +2025-09-24 22:41:55,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:55,363 INFO Out dated connection ,size=0 + +2025-09-24 22:41:55,363 INFO Connection check task end + +2025-09-24 22:41:57,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:41:58,364 INFO Connection check task start + +2025-09-24 22:41:58,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:41:58,364 INFO Out dated connection ,size=0 + +2025-09-24 22:41:58,364 INFO Connection check task end + +2025-09-24 22:42:00,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:01,364 INFO Connection check task start + +2025-09-24 22:42:01,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:01,364 INFO Out dated connection ,size=0 + +2025-09-24 22:42:01,364 INFO Connection check task end + +2025-09-24 22:42:03,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:04,365 INFO Connection check task start + +2025-09-24 22:42:04,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:04,365 INFO Out dated connection ,size=0 + +2025-09-24 22:42:04,365 INFO Connection check task end + +2025-09-24 22:42:06,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:07,366 INFO Connection check task start + +2025-09-24 22:42:07,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:07,366 INFO Out dated connection ,size=0 + +2025-09-24 22:42:07,366 INFO Connection check task end + +2025-09-24 22:42:09,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:10,367 INFO Connection check task start + +2025-09-24 22:42:10,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:10,367 INFO Out dated connection ,size=0 + +2025-09-24 22:42:10,367 INFO Connection check task end + +2025-09-24 22:42:12,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:13,367 INFO Connection check task start + +2025-09-24 22:42:13,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:13,368 INFO Out dated connection ,size=0 + +2025-09-24 22:42:13,368 INFO Connection check task end + +2025-09-24 22:42:15,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:16,368 INFO Connection check task start + +2025-09-24 22:42:16,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:16,368 INFO Out dated connection ,size=0 + +2025-09-24 22:42:16,368 INFO Connection check task end + +2025-09-24 22:42:18,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:19,368 INFO Connection check task start + +2025-09-24 22:42:19,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:19,368 INFO Out dated connection ,size=0 + +2025-09-24 22:42:19,368 INFO Connection check task end + +2025-09-24 22:42:21,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:22,370 INFO Connection check task start + +2025-09-24 22:42:22,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:22,370 INFO Out dated connection ,size=0 + +2025-09-24 22:42:22,370 INFO Connection check task end + +2025-09-24 22:42:24,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:25,370 INFO Connection check task start + +2025-09-24 22:42:25,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:25,371 INFO Out dated connection ,size=0 + +2025-09-24 22:42:25,371 INFO Connection check task end + +2025-09-24 22:42:27,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:28,371 INFO Connection check task start + +2025-09-24 22:42:28,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:28,372 INFO Out dated connection ,size=0 + +2025-09-24 22:42:28,372 INFO Connection check task end + +2025-09-24 22:42:30,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:31,372 INFO Connection check task start + +2025-09-24 22:42:31,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:31,372 INFO Out dated connection ,size=0 + +2025-09-24 22:42:31,372 INFO Connection check task end + +2025-09-24 22:42:33,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:34,373 INFO Connection check task start + +2025-09-24 22:42:34,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:34,373 INFO Out dated connection ,size=0 + +2025-09-24 22:42:34,373 INFO Connection check task end + +2025-09-24 22:42:36,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:37,374 INFO Connection check task start + +2025-09-24 22:42:37,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:37,374 INFO Out dated connection ,size=0 + +2025-09-24 22:42:37,374 INFO Connection check task end + +2025-09-24 22:42:39,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:40,375 INFO Connection check task start + +2025-09-24 22:42:40,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:40,375 INFO Out dated connection ,size=0 + +2025-09-24 22:42:40,375 INFO Connection check task end + +2025-09-24 22:42:42,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:43,377 INFO Connection check task start + +2025-09-24 22:42:43,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:43,377 INFO Out dated connection ,size=0 + +2025-09-24 22:42:43,377 INFO Connection check task end + +2025-09-24 22:42:45,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:46,378 INFO Connection check task start + +2025-09-24 22:42:46,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:46,378 INFO Out dated connection ,size=0 + +2025-09-24 22:42:46,378 INFO Connection check task end + +2025-09-24 22:42:48,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:49,378 INFO Connection check task start + +2025-09-24 22:42:49,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:49,378 INFO Out dated connection ,size=0 + +2025-09-24 22:42:49,378 INFO Connection check task end + +2025-09-24 22:42:51,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:52,379 INFO Connection check task start + +2025-09-24 22:42:52,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:52,379 INFO Out dated connection ,size=0 + +2025-09-24 22:42:52,379 INFO Connection check task end + +2025-09-24 22:42:54,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:55,380 INFO Connection check task start + +2025-09-24 22:42:55,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:55,380 INFO Out dated connection ,size=0 + +2025-09-24 22:42:55,380 INFO Connection check task end + +2025-09-24 22:42:57,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:42:58,380 INFO Connection check task start + +2025-09-24 22:42:58,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:42:58,381 INFO Out dated connection ,size=0 + +2025-09-24 22:42:58,381 INFO Connection check task end + +2025-09-24 22:43:00,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:01,381 INFO Connection check task start + +2025-09-24 22:43:01,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:01,381 INFO Out dated connection ,size=0 + +2025-09-24 22:43:01,381 INFO Connection check task end + +2025-09-24 22:43:03,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:04,381 INFO Connection check task start + +2025-09-24 22:43:04,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:04,382 INFO Out dated connection ,size=0 + +2025-09-24 22:43:04,382 INFO Connection check task end + +2025-09-24 22:43:06,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:07,382 INFO Connection check task start + +2025-09-24 22:43:07,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:07,382 INFO Out dated connection ,size=0 + +2025-09-24 22:43:07,382 INFO Connection check task end + +2025-09-24 22:43:09,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:10,382 INFO Connection check task start + +2025-09-24 22:43:10,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:10,383 INFO Out dated connection ,size=0 + +2025-09-24 22:43:10,383 INFO Connection check task end + +2025-09-24 22:43:12,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:13,383 INFO Connection check task start + +2025-09-24 22:43:13,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:13,383 INFO Out dated connection ,size=0 + +2025-09-24 22:43:13,383 INFO Connection check task end + +2025-09-24 22:43:15,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:16,383 INFO Connection check task start + +2025-09-24 22:43:16,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:16,384 INFO Out dated connection ,size=0 + +2025-09-24 22:43:16,384 INFO Connection check task end + +2025-09-24 22:43:18,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:19,384 INFO Connection check task start + +2025-09-24 22:43:19,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:19,384 INFO Out dated connection ,size=0 + +2025-09-24 22:43:19,384 INFO Connection check task end + +2025-09-24 22:43:21,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:22,385 INFO Connection check task start + +2025-09-24 22:43:22,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:22,385 INFO Out dated connection ,size=0 + +2025-09-24 22:43:22,385 INFO Connection check task end + +2025-09-24 22:43:24,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:25,385 INFO Connection check task start + +2025-09-24 22:43:25,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:25,385 INFO Out dated connection ,size=0 + +2025-09-24 22:43:25,385 INFO Connection check task end + +2025-09-24 22:43:27,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:28,386 INFO Connection check task start + +2025-09-24 22:43:28,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:28,386 INFO Out dated connection ,size=0 + +2025-09-24 22:43:28,386 INFO Connection check task end + +2025-09-24 22:43:30,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:31,387 INFO Connection check task start + +2025-09-24 22:43:31,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:31,387 INFO Out dated connection ,size=0 + +2025-09-24 22:43:31,387 INFO Connection check task end + +2025-09-24 22:43:33,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:34,388 INFO Connection check task start + +2025-09-24 22:43:34,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:34,388 INFO Out dated connection ,size=0 + +2025-09-24 22:43:34,388 INFO Connection check task end + +2025-09-24 22:43:36,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:37,390 INFO Connection check task start + +2025-09-24 22:43:37,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:37,390 INFO Out dated connection ,size=0 + +2025-09-24 22:43:37,390 INFO Connection check task end + +2025-09-24 22:43:39,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:40,390 INFO Connection check task start + +2025-09-24 22:43:40,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:40,390 INFO Out dated connection ,size=0 + +2025-09-24 22:43:40,390 INFO Connection check task end + +2025-09-24 22:43:42,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:43,391 INFO Connection check task start + +2025-09-24 22:43:43,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:43,391 INFO Out dated connection ,size=0 + +2025-09-24 22:43:43,391 INFO Connection check task end + +2025-09-24 22:43:45,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:46,392 INFO Connection check task start + +2025-09-24 22:43:46,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:46,392 INFO Out dated connection ,size=0 + +2025-09-24 22:43:46,392 INFO Connection check task end + +2025-09-24 22:43:48,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:49,392 INFO Connection check task start + +2025-09-24 22:43:49,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:49,392 INFO Out dated connection ,size=0 + +2025-09-24 22:43:49,392 INFO Connection check task end + +2025-09-24 22:43:51,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:52,392 INFO Connection check task start + +2025-09-24 22:43:52,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:52,392 INFO Out dated connection ,size=0 + +2025-09-24 22:43:52,392 INFO Connection check task end + +2025-09-24 22:43:54,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:55,393 INFO Connection check task start + +2025-09-24 22:43:55,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:55,393 INFO Out dated connection ,size=0 + +2025-09-24 22:43:55,393 INFO Connection check task end + +2025-09-24 22:43:57,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:43:58,394 INFO Connection check task start + +2025-09-24 22:43:58,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:43:58,394 INFO Out dated connection ,size=0 + +2025-09-24 22:43:58,394 INFO Connection check task end + +2025-09-24 22:44:00,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:01,395 INFO Connection check task start + +2025-09-24 22:44:01,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:01,395 INFO Out dated connection ,size=0 + +2025-09-24 22:44:01,395 INFO Connection check task end + +2025-09-24 22:44:03,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:04,396 INFO Connection check task start + +2025-09-24 22:44:04,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:04,396 INFO Out dated connection ,size=0 + +2025-09-24 22:44:04,396 INFO Connection check task end + +2025-09-24 22:44:06,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:07,396 INFO Connection check task start + +2025-09-24 22:44:07,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:07,396 INFO Out dated connection ,size=0 + +2025-09-24 22:44:07,396 INFO Connection check task end + +2025-09-24 22:44:09,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:10,397 INFO Connection check task start + +2025-09-24 22:44:10,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:10,397 INFO Out dated connection ,size=0 + +2025-09-24 22:44:10,397 INFO Connection check task end + +2025-09-24 22:44:12,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:13,397 INFO Connection check task start + +2025-09-24 22:44:13,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:13,398 INFO Out dated connection ,size=0 + +2025-09-24 22:44:13,398 INFO Connection check task end + +2025-09-24 22:44:15,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:16,399 INFO Connection check task start + +2025-09-24 22:44:16,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:16,399 INFO Out dated connection ,size=0 + +2025-09-24 22:44:16,399 INFO Connection check task end + +2025-09-24 22:44:18,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:19,399 INFO Connection check task start + +2025-09-24 22:44:19,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:19,400 INFO Out dated connection ,size=0 + +2025-09-24 22:44:19,400 INFO Connection check task end + +2025-09-24 22:44:21,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:22,400 INFO Connection check task start + +2025-09-24 22:44:22,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:22,400 INFO Out dated connection ,size=0 + +2025-09-24 22:44:22,400 INFO Connection check task end + +2025-09-24 22:44:24,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:25,401 INFO Connection check task start + +2025-09-24 22:44:25,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:25,401 INFO Out dated connection ,size=0 + +2025-09-24 22:44:25,401 INFO Connection check task end + +2025-09-24 22:44:27,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:28,402 INFO Connection check task start + +2025-09-24 22:44:28,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:28,402 INFO Out dated connection ,size=0 + +2025-09-24 22:44:28,402 INFO Connection check task end + +2025-09-24 22:44:30,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:31,402 INFO Connection check task start + +2025-09-24 22:44:31,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:31,403 INFO Out dated connection ,size=0 + +2025-09-24 22:44:31,403 INFO Connection check task end + +2025-09-24 22:44:33,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:34,403 INFO Connection check task start + +2025-09-24 22:44:34,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:34,403 INFO Out dated connection ,size=0 + +2025-09-24 22:44:34,403 INFO Connection check task end + +2025-09-24 22:44:36,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:37,404 INFO Connection check task start + +2025-09-24 22:44:37,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:37,404 INFO Out dated connection ,size=0 + +2025-09-24 22:44:37,404 INFO Connection check task end + +2025-09-24 22:44:39,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:40,405 INFO Connection check task start + +2025-09-24 22:44:40,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:40,405 INFO Out dated connection ,size=0 + +2025-09-24 22:44:40,405 INFO Connection check task end + +2025-09-24 22:44:42,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:43,406 INFO Connection check task start + +2025-09-24 22:44:43,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:43,406 INFO Out dated connection ,size=0 + +2025-09-24 22:44:43,406 INFO Connection check task end + +2025-09-24 22:44:45,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:46,406 INFO Connection check task start + +2025-09-24 22:44:46,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:46,406 INFO Out dated connection ,size=0 + +2025-09-24 22:44:46,406 INFO Connection check task end + +2025-09-24 22:44:48,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:49,407 INFO Connection check task start + +2025-09-24 22:44:49,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:49,409 INFO Out dated connection ,size=0 + +2025-09-24 22:44:49,409 INFO Connection check task end + +2025-09-24 22:44:51,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:52,409 INFO Connection check task start + +2025-09-24 22:44:52,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:52,410 INFO Out dated connection ,size=0 + +2025-09-24 22:44:52,410 INFO Connection check task end + +2025-09-24 22:44:54,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:55,410 INFO Connection check task start + +2025-09-24 22:44:55,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:55,410 INFO Out dated connection ,size=0 + +2025-09-24 22:44:55,410 INFO Connection check task end + +2025-09-24 22:44:57,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:44:58,410 INFO Connection check task start + +2025-09-24 22:44:58,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:44:58,411 INFO Out dated connection ,size=0 + +2025-09-24 22:44:58,411 INFO Connection check task end + +2025-09-24 22:45:00,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:01,411 INFO Connection check task start + +2025-09-24 22:45:01,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:01,412 INFO Out dated connection ,size=0 + +2025-09-24 22:45:01,412 INFO Connection check task end + +2025-09-24 22:45:03,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:04,412 INFO Connection check task start + +2025-09-24 22:45:04,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:04,412 INFO Out dated connection ,size=0 + +2025-09-24 22:45:04,412 INFO Connection check task end + +2025-09-24 22:45:06,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:07,413 INFO Connection check task start + +2025-09-24 22:45:07,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:07,413 INFO Out dated connection ,size=0 + +2025-09-24 22:45:07,413 INFO Connection check task end + +2025-09-24 22:45:09,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:10,414 INFO Connection check task start + +2025-09-24 22:45:10,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:10,414 INFO Out dated connection ,size=0 + +2025-09-24 22:45:10,414 INFO Connection check task end + +2025-09-24 22:45:12,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:13,416 INFO Connection check task start + +2025-09-24 22:45:13,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:13,416 INFO Out dated connection ,size=0 + +2025-09-24 22:45:13,416 INFO Connection check task end + +2025-09-24 22:45:15,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:16,416 INFO Connection check task start + +2025-09-24 22:45:16,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:16,416 INFO Out dated connection ,size=0 + +2025-09-24 22:45:16,416 INFO Connection check task end + +2025-09-24 22:45:18,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:19,417 INFO Connection check task start + +2025-09-24 22:45:19,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:19,417 INFO Out dated connection ,size=0 + +2025-09-24 22:45:19,417 INFO Connection check task end + +2025-09-24 22:45:21,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:22,418 INFO Connection check task start + +2025-09-24 22:45:22,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:22,418 INFO Out dated connection ,size=0 + +2025-09-24 22:45:22,418 INFO Connection check task end + +2025-09-24 22:45:24,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:25,419 INFO Connection check task start + +2025-09-24 22:45:25,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:25,419 INFO Out dated connection ,size=0 + +2025-09-24 22:45:25,419 INFO Connection check task end + +2025-09-24 22:45:27,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:28,420 INFO Connection check task start + +2025-09-24 22:45:28,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:28,421 INFO Out dated connection ,size=0 + +2025-09-24 22:45:28,421 INFO Connection check task end + +2025-09-24 22:45:30,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:31,422 INFO Connection check task start + +2025-09-24 22:45:31,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:31,422 INFO Out dated connection ,size=0 + +2025-09-24 22:45:31,422 INFO Connection check task end + +2025-09-24 22:45:33,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:34,422 INFO Connection check task start + +2025-09-24 22:45:34,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:34,423 INFO Out dated connection ,size=0 + +2025-09-24 22:45:34,423 INFO Connection check task end + +2025-09-24 22:45:36,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:37,423 INFO Connection check task start + +2025-09-24 22:45:37,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:37,424 INFO Out dated connection ,size=0 + +2025-09-24 22:45:37,424 INFO Connection check task end + +2025-09-24 22:45:39,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:40,424 INFO Connection check task start + +2025-09-24 22:45:40,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:40,424 INFO Out dated connection ,size=0 + +2025-09-24 22:45:40,425 INFO Connection check task end + +2025-09-24 22:45:42,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:43,425 INFO Connection check task start + +2025-09-24 22:45:43,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:43,425 INFO Out dated connection ,size=0 + +2025-09-24 22:45:43,425 INFO Connection check task end + +2025-09-24 22:45:45,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:46,425 INFO Connection check task start + +2025-09-24 22:45:46,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:46,425 INFO Out dated connection ,size=0 + +2025-09-24 22:45:46,425 INFO Connection check task end + +2025-09-24 22:45:48,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:49,426 INFO Connection check task start + +2025-09-24 22:45:49,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:49,426 INFO Out dated connection ,size=0 + +2025-09-24 22:45:49,426 INFO Connection check task end + +2025-09-24 22:45:51,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:52,427 INFO Connection check task start + +2025-09-24 22:45:52,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:52,427 INFO Out dated connection ,size=0 + +2025-09-24 22:45:52,427 INFO Connection check task end + +2025-09-24 22:45:54,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:55,428 INFO Connection check task start + +2025-09-24 22:45:55,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:55,428 INFO Out dated connection ,size=0 + +2025-09-24 22:45:55,428 INFO Connection check task end + +2025-09-24 22:45:57,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:45:58,428 INFO Connection check task start + +2025-09-24 22:45:58,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:45:58,428 INFO Out dated connection ,size=0 + +2025-09-24 22:45:58,428 INFO Connection check task end + +2025-09-24 22:46:00,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:01,429 INFO Connection check task start + +2025-09-24 22:46:01,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:01,429 INFO Out dated connection ,size=0 + +2025-09-24 22:46:01,429 INFO Connection check task end + +2025-09-24 22:46:03,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:04,430 INFO Connection check task start + +2025-09-24 22:46:04,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:04,430 INFO Out dated connection ,size=0 + +2025-09-24 22:46:04,430 INFO Connection check task end + +2025-09-24 22:46:06,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:07,431 INFO Connection check task start + +2025-09-24 22:46:07,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:07,432 INFO Out dated connection ,size=0 + +2025-09-24 22:46:07,432 INFO Connection check task end + +2025-09-24 22:46:09,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:10,432 INFO Connection check task start + +2025-09-24 22:46:10,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:10,432 INFO Out dated connection ,size=0 + +2025-09-24 22:46:10,433 INFO Connection check task end + +2025-09-24 22:46:12,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:13,433 INFO Connection check task start + +2025-09-24 22:46:13,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:13,433 INFO Out dated connection ,size=0 + +2025-09-24 22:46:13,433 INFO Connection check task end + +2025-09-24 22:46:15,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:16,433 INFO Connection check task start + +2025-09-24 22:46:16,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:16,434 INFO Out dated connection ,size=0 + +2025-09-24 22:46:16,434 INFO Connection check task end + +2025-09-24 22:46:18,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:19,435 INFO Connection check task start + +2025-09-24 22:46:19,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:19,435 INFO Out dated connection ,size=0 + +2025-09-24 22:46:19,435 INFO Connection check task end + +2025-09-24 22:46:21,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:22,436 INFO Connection check task start + +2025-09-24 22:46:22,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:22,436 INFO Out dated connection ,size=0 + +2025-09-24 22:46:22,436 INFO Connection check task end + +2025-09-24 22:46:24,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:25,436 INFO Connection check task start + +2025-09-24 22:46:25,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:25,436 INFO Out dated connection ,size=0 + +2025-09-24 22:46:25,436 INFO Connection check task end + +2025-09-24 22:46:27,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:28,437 INFO Connection check task start + +2025-09-24 22:46:28,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:28,437 INFO Out dated connection ,size=0 + +2025-09-24 22:46:28,437 INFO Connection check task end + +2025-09-24 22:46:30,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:31,440 INFO Connection check task start + +2025-09-24 22:46:31,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:31,441 INFO Out dated connection ,size=0 + +2025-09-24 22:46:31,441 INFO Connection check task end + +2025-09-24 22:46:33,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:34,441 INFO Connection check task start + +2025-09-24 22:46:34,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:34,441 INFO Out dated connection ,size=0 + +2025-09-24 22:46:34,441 INFO Connection check task end + +2025-09-24 22:46:36,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:37,442 INFO Connection check task start + +2025-09-24 22:46:37,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:37,442 INFO Out dated connection ,size=0 + +2025-09-24 22:46:37,442 INFO Connection check task end + +2025-09-24 22:46:39,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:40,442 INFO Connection check task start + +2025-09-24 22:46:40,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:40,442 INFO Out dated connection ,size=0 + +2025-09-24 22:46:40,442 INFO Connection check task end + +2025-09-24 22:46:42,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:43,442 INFO Connection check task start + +2025-09-24 22:46:43,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:43,443 INFO Out dated connection ,size=0 + +2025-09-24 22:46:43,443 INFO Connection check task end + +2025-09-24 22:46:45,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:46,443 INFO Connection check task start + +2025-09-24 22:46:46,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:46,443 INFO Out dated connection ,size=0 + +2025-09-24 22:46:46,443 INFO Connection check task end + +2025-09-24 22:46:48,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:49,444 INFO Connection check task start + +2025-09-24 22:46:49,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:49,444 INFO Out dated connection ,size=0 + +2025-09-24 22:46:49,444 INFO Connection check task end + +2025-09-24 22:46:51,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:52,444 INFO Connection check task start + +2025-09-24 22:46:52,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:52,444 INFO Out dated connection ,size=0 + +2025-09-24 22:46:52,444 INFO Connection check task end + +2025-09-24 22:46:54,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:55,445 INFO Connection check task start + +2025-09-24 22:46:55,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:55,445 INFO Out dated connection ,size=0 + +2025-09-24 22:46:55,445 INFO Connection check task end + +2025-09-24 22:46:57,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:46:58,445 INFO Connection check task start + +2025-09-24 22:46:58,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:46:58,446 INFO Out dated connection ,size=0 + +2025-09-24 22:46:58,446 INFO Connection check task end + +2025-09-24 22:47:00,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:01,446 INFO Connection check task start + +2025-09-24 22:47:01,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:01,446 INFO Out dated connection ,size=0 + +2025-09-24 22:47:01,446 INFO Connection check task end + +2025-09-24 22:47:03,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:04,446 INFO Connection check task start + +2025-09-24 22:47:04,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:04,447 INFO Out dated connection ,size=0 + +2025-09-24 22:47:04,447 INFO Connection check task end + +2025-09-24 22:47:06,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:07,447 INFO Connection check task start + +2025-09-24 22:47:07,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:07,447 INFO Out dated connection ,size=0 + +2025-09-24 22:47:07,447 INFO Connection check task end + +2025-09-24 22:47:09,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:10,448 INFO Connection check task start + +2025-09-24 22:47:10,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:10,448 INFO Out dated connection ,size=0 + +2025-09-24 22:47:10,448 INFO Connection check task end + +2025-09-24 22:47:12,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:13,448 INFO Connection check task start + +2025-09-24 22:47:13,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:13,449 INFO Out dated connection ,size=0 + +2025-09-24 22:47:13,449 INFO Connection check task end + +2025-09-24 22:47:15,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:16,449 INFO Connection check task start + +2025-09-24 22:47:16,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:16,449 INFO Out dated connection ,size=0 + +2025-09-24 22:47:16,449 INFO Connection check task end + +2025-09-24 22:47:18,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:19,449 INFO Connection check task start + +2025-09-24 22:47:19,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:19,450 INFO Out dated connection ,size=0 + +2025-09-24 22:47:19,450 INFO Connection check task end + +2025-09-24 22:47:21,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:22,450 INFO Connection check task start + +2025-09-24 22:47:22,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:22,450 INFO Out dated connection ,size=0 + +2025-09-24 22:47:22,450 INFO Connection check task end + +2025-09-24 22:47:24,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:25,451 INFO Connection check task start + +2025-09-24 22:47:25,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:25,451 INFO Out dated connection ,size=0 + +2025-09-24 22:47:25,451 INFO Connection check task end + +2025-09-24 22:47:27,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:28,452 INFO Connection check task start + +2025-09-24 22:47:28,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:28,452 INFO Out dated connection ,size=0 + +2025-09-24 22:47:28,452 INFO Connection check task end + +2025-09-24 22:47:30,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:31,453 INFO Connection check task start + +2025-09-24 22:47:31,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:31,453 INFO Out dated connection ,size=0 + +2025-09-24 22:47:31,453 INFO Connection check task end + +2025-09-24 22:47:33,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:34,455 INFO Connection check task start + +2025-09-24 22:47:34,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:34,455 INFO Out dated connection ,size=0 + +2025-09-24 22:47:34,455 INFO Connection check task end + +2025-09-24 22:47:36,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:37,456 INFO Connection check task start + +2025-09-24 22:47:37,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:37,462 INFO Out dated connection ,size=0 + +2025-09-24 22:47:37,465 INFO Connection check task end + +2025-09-24 22:47:39,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:40,466 INFO Connection check task start + +2025-09-24 22:47:40,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:40,466 INFO Out dated connection ,size=0 + +2025-09-24 22:47:40,466 INFO Connection check task end + +2025-09-24 22:47:42,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:43,467 INFO Connection check task start + +2025-09-24 22:47:43,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:43,468 INFO Out dated connection ,size=0 + +2025-09-24 22:47:43,468 INFO Connection check task end + +2025-09-24 22:47:45,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:46,469 INFO Connection check task start + +2025-09-24 22:47:46,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:46,469 INFO Out dated connection ,size=0 + +2025-09-24 22:47:46,469 INFO Connection check task end + +2025-09-24 22:47:48,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:49,469 INFO Connection check task start + +2025-09-24 22:47:49,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:49,470 INFO Out dated connection ,size=0 + +2025-09-24 22:47:49,470 INFO Connection check task end + +2025-09-24 22:47:51,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:52,470 INFO Connection check task start + +2025-09-24 22:47:52,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:52,471 INFO Out dated connection ,size=0 + +2025-09-24 22:47:52,471 INFO Connection check task end + +2025-09-24 22:47:54,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:55,471 INFO Connection check task start + +2025-09-24 22:47:55,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:55,471 INFO Out dated connection ,size=0 + +2025-09-24 22:47:55,471 INFO Connection check task end + +2025-09-24 22:47:57,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:47:58,471 INFO Connection check task start + +2025-09-24 22:47:58,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:47:58,472 INFO Out dated connection ,size=0 + +2025-09-24 22:47:58,472 INFO Connection check task end + +2025-09-24 22:48:00,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:01,472 INFO Connection check task start + +2025-09-24 22:48:01,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:01,472 INFO Out dated connection ,size=0 + +2025-09-24 22:48:01,472 INFO Connection check task end + +2025-09-24 22:48:03,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:04,473 INFO Connection check task start + +2025-09-24 22:48:04,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:04,473 INFO Out dated connection ,size=0 + +2025-09-24 22:48:04,473 INFO Connection check task end + +2025-09-24 22:48:06,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:07,474 INFO Connection check task start + +2025-09-24 22:48:07,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:07,474 INFO Out dated connection ,size=0 + +2025-09-24 22:48:07,474 INFO Connection check task end + +2025-09-24 22:48:09,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:10,475 INFO Connection check task start + +2025-09-24 22:48:10,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:10,475 INFO Out dated connection ,size=0 + +2025-09-24 22:48:10,475 INFO Connection check task end + +2025-09-24 22:48:12,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:13,476 INFO Connection check task start + +2025-09-24 22:48:13,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:13,476 INFO Out dated connection ,size=0 + +2025-09-24 22:48:13,476 INFO Connection check task end + +2025-09-24 22:48:15,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:16,477 INFO Connection check task start + +2025-09-24 22:48:16,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:16,477 INFO Out dated connection ,size=0 + +2025-09-24 22:48:16,477 INFO Connection check task end + +2025-09-24 22:48:18,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:19,478 INFO Connection check task start + +2025-09-24 22:48:19,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:19,478 INFO Out dated connection ,size=0 + +2025-09-24 22:48:19,478 INFO Connection check task end + +2025-09-24 22:48:21,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:22,481 INFO Connection check task start + +2025-09-24 22:48:22,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:22,481 INFO Out dated connection ,size=0 + +2025-09-24 22:48:22,481 INFO Connection check task end + +2025-09-24 22:48:24,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:25,482 INFO Connection check task start + +2025-09-24 22:48:25,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:25,482 INFO Out dated connection ,size=0 + +2025-09-24 22:48:25,482 INFO Connection check task end + +2025-09-24 22:48:27,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:28,484 INFO Connection check task start + +2025-09-24 22:48:28,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:28,484 INFO Out dated connection ,size=0 + +2025-09-24 22:48:28,484 INFO Connection check task end + +2025-09-24 22:48:30,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:31,485 INFO Connection check task start + +2025-09-24 22:48:31,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:31,485 INFO Out dated connection ,size=0 + +2025-09-24 22:48:31,485 INFO Connection check task end + +2025-09-24 22:48:33,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:34,486 INFO Connection check task start + +2025-09-24 22:48:34,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:34,486 INFO Out dated connection ,size=0 + +2025-09-24 22:48:34,486 INFO Connection check task end + +2025-09-24 22:48:36,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:37,487 INFO Connection check task start + +2025-09-24 22:48:37,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:37,487 INFO Out dated connection ,size=0 + +2025-09-24 22:48:37,487 INFO Connection check task end + +2025-09-24 22:48:39,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:40,487 INFO Connection check task start + +2025-09-24 22:48:40,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:40,488 INFO Out dated connection ,size=0 + +2025-09-24 22:48:40,488 INFO Connection check task end + +2025-09-24 22:48:42,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:43,488 INFO Connection check task start + +2025-09-24 22:48:43,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:43,488 INFO Out dated connection ,size=0 + +2025-09-24 22:48:43,488 INFO Connection check task end + +2025-09-24 22:48:45,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:46,488 INFO Connection check task start + +2025-09-24 22:48:46,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:46,489 INFO Out dated connection ,size=0 + +2025-09-24 22:48:46,489 INFO Connection check task end + +2025-09-24 22:48:48,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:49,489 INFO Connection check task start + +2025-09-24 22:48:49,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:49,489 INFO Out dated connection ,size=0 + +2025-09-24 22:48:49,489 INFO Connection check task end + +2025-09-24 22:48:51,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:52,489 INFO Connection check task start + +2025-09-24 22:48:52,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:52,489 INFO Out dated connection ,size=0 + +2025-09-24 22:48:52,490 INFO Connection check task end + +2025-09-24 22:48:54,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:55,490 INFO Connection check task start + +2025-09-24 22:48:55,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:55,490 INFO Out dated connection ,size=0 + +2025-09-24 22:48:55,490 INFO Connection check task end + +2025-09-24 22:48:57,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:48:58,491 INFO Connection check task start + +2025-09-24 22:48:58,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:48:58,491 INFO Out dated connection ,size=0 + +2025-09-24 22:48:58,491 INFO Connection check task end + +2025-09-24 22:49:00,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:01,491 INFO Connection check task start + +2025-09-24 22:49:01,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:01,491 INFO Out dated connection ,size=0 + +2025-09-24 22:49:01,492 INFO Connection check task end + +2025-09-24 22:49:03,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:04,492 INFO Connection check task start + +2025-09-24 22:49:04,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:04,492 INFO Out dated connection ,size=0 + +2025-09-24 22:49:04,492 INFO Connection check task end + +2025-09-24 22:49:06,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:07,493 INFO Connection check task start + +2025-09-24 22:49:07,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:07,493 INFO Out dated connection ,size=0 + +2025-09-24 22:49:07,493 INFO Connection check task end + +2025-09-24 22:49:09,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:10,493 INFO Connection check task start + +2025-09-24 22:49:10,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:10,494 INFO Out dated connection ,size=0 + +2025-09-24 22:49:10,494 INFO Connection check task end + +2025-09-24 22:49:12,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:13,495 INFO Connection check task start + +2025-09-24 22:49:13,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:13,495 INFO Out dated connection ,size=0 + +2025-09-24 22:49:13,495 INFO Connection check task end + +2025-09-24 22:49:15,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:16,496 INFO Connection check task start + +2025-09-24 22:49:16,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:16,496 INFO Out dated connection ,size=0 + +2025-09-24 22:49:16,496 INFO Connection check task end + +2025-09-24 22:49:18,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:19,498 INFO Connection check task start + +2025-09-24 22:49:19,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:19,498 INFO Out dated connection ,size=0 + +2025-09-24 22:49:19,498 INFO Connection check task end + +2025-09-24 22:49:21,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:22,499 INFO Connection check task start + +2025-09-24 22:49:22,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:22,499 INFO Out dated connection ,size=0 + +2025-09-24 22:49:22,499 INFO Connection check task end + +2025-09-24 22:49:24,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:25,500 INFO Connection check task start + +2025-09-24 22:49:25,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:25,500 INFO Out dated connection ,size=0 + +2025-09-24 22:49:25,500 INFO Connection check task end + +2025-09-24 22:49:27,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:28,500 INFO Connection check task start + +2025-09-24 22:49:28,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:28,500 INFO Out dated connection ,size=0 + +2025-09-24 22:49:28,500 INFO Connection check task end + +2025-09-24 22:49:30,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:31,501 INFO Connection check task start + +2025-09-24 22:49:31,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:31,501 INFO Out dated connection ,size=0 + +2025-09-24 22:49:31,501 INFO Connection check task end + +2025-09-24 22:49:33,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:34,502 INFO Connection check task start + +2025-09-24 22:49:34,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:34,502 INFO Out dated connection ,size=0 + +2025-09-24 22:49:34,502 INFO Connection check task end + +2025-09-24 22:49:36,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:37,503 INFO Connection check task start + +2025-09-24 22:49:37,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:37,503 INFO Out dated connection ,size=0 + +2025-09-24 22:49:37,503 INFO Connection check task end + +2025-09-24 22:49:39,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:40,504 INFO Connection check task start + +2025-09-24 22:49:40,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:40,504 INFO Out dated connection ,size=0 + +2025-09-24 22:49:40,504 INFO Connection check task end + +2025-09-24 22:49:42,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:43,505 INFO Connection check task start + +2025-09-24 22:49:43,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:43,505 INFO Out dated connection ,size=0 + +2025-09-24 22:49:43,505 INFO Connection check task end + +2025-09-24 22:49:45,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:46,505 INFO Connection check task start + +2025-09-24 22:49:46,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:46,505 INFO Out dated connection ,size=0 + +2025-09-24 22:49:46,505 INFO Connection check task end + +2025-09-24 22:49:48,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:49,506 INFO Connection check task start + +2025-09-24 22:49:49,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:49,506 INFO Out dated connection ,size=0 + +2025-09-24 22:49:49,506 INFO Connection check task end + +2025-09-24 22:49:51,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:52,507 INFO Connection check task start + +2025-09-24 22:49:52,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:52,507 INFO Out dated connection ,size=0 + +2025-09-24 22:49:52,507 INFO Connection check task end + +2025-09-24 22:49:54,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:55,507 INFO Connection check task start + +2025-09-24 22:49:55,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:55,508 INFO Out dated connection ,size=0 + +2025-09-24 22:49:55,508 INFO Connection check task end + +2025-09-24 22:49:57,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:49:58,508 INFO Connection check task start + +2025-09-24 22:49:58,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:49:58,508 INFO Out dated connection ,size=0 + +2025-09-24 22:49:58,508 INFO Connection check task end + +2025-09-24 22:50:00,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:01,509 INFO Connection check task start + +2025-09-24 22:50:01,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:01,509 INFO Out dated connection ,size=0 + +2025-09-24 22:50:01,509 INFO Connection check task end + +2025-09-24 22:50:03,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:04,510 INFO Connection check task start + +2025-09-24 22:50:04,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:04,510 INFO Out dated connection ,size=0 + +2025-09-24 22:50:04,510 INFO Connection check task end + +2025-09-24 22:50:06,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:07,511 INFO Connection check task start + +2025-09-24 22:50:07,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:07,511 INFO Out dated connection ,size=0 + +2025-09-24 22:50:07,511 INFO Connection check task end + +2025-09-24 22:50:09,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:10,511 INFO Connection check task start + +2025-09-24 22:50:10,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:10,512 INFO Out dated connection ,size=0 + +2025-09-24 22:50:10,512 INFO Connection check task end + +2025-09-24 22:50:12,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:13,512 INFO Connection check task start + +2025-09-24 22:50:13,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:13,512 INFO Out dated connection ,size=0 + +2025-09-24 22:50:13,512 INFO Connection check task end + +2025-09-24 22:50:15,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:16,513 INFO Connection check task start + +2025-09-24 22:50:16,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:16,513 INFO Out dated connection ,size=0 + +2025-09-24 22:50:16,513 INFO Connection check task end + +2025-09-24 22:50:18,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:19,514 INFO Connection check task start + +2025-09-24 22:50:19,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:19,515 INFO Out dated connection ,size=0 + +2025-09-24 22:50:19,515 INFO Connection check task end + +2025-09-24 22:50:21,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:22,516 INFO Connection check task start + +2025-09-24 22:50:22,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:22,516 INFO Out dated connection ,size=0 + +2025-09-24 22:50:22,516 INFO Connection check task end + +2025-09-24 22:50:24,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:25,517 INFO Connection check task start + +2025-09-24 22:50:25,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:25,517 INFO Out dated connection ,size=0 + +2025-09-24 22:50:25,517 INFO Connection check task end + +2025-09-24 22:50:27,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:28,518 INFO Connection check task start + +2025-09-24 22:50:28,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:28,518 INFO Out dated connection ,size=0 + +2025-09-24 22:50:28,518 INFO Connection check task end + +2025-09-24 22:50:30,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:31,518 INFO Connection check task start + +2025-09-24 22:50:31,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:31,519 INFO Out dated connection ,size=0 + +2025-09-24 22:50:31,519 INFO Connection check task end + +2025-09-24 22:50:33,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:34,519 INFO Connection check task start + +2025-09-24 22:50:34,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:34,519 INFO Out dated connection ,size=0 + +2025-09-24 22:50:34,519 INFO Connection check task end + +2025-09-24 22:50:36,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:37,519 INFO Connection check task start + +2025-09-24 22:50:37,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:37,520 INFO Out dated connection ,size=0 + +2025-09-24 22:50:37,520 INFO Connection check task end + +2025-09-24 22:50:39,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:40,520 INFO Connection check task start + +2025-09-24 22:50:40,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:40,521 INFO Out dated connection ,size=0 + +2025-09-24 22:50:40,521 INFO Connection check task end + +2025-09-24 22:50:42,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:43,522 INFO Connection check task start + +2025-09-24 22:50:43,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:43,522 INFO Out dated connection ,size=0 + +2025-09-24 22:50:43,522 INFO Connection check task end + +2025-09-24 22:50:45,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:46,524 INFO Connection check task start + +2025-09-24 22:50:46,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:46,524 INFO Out dated connection ,size=0 + +2025-09-24 22:50:46,524 INFO Connection check task end + +2025-09-24 22:50:48,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:49,525 INFO Connection check task start + +2025-09-24 22:50:49,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:49,525 INFO Out dated connection ,size=0 + +2025-09-24 22:50:49,525 INFO Connection check task end + +2025-09-24 22:50:51,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:52,526 INFO Connection check task start + +2025-09-24 22:50:52,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:52,526 INFO Out dated connection ,size=0 + +2025-09-24 22:50:52,526 INFO Connection check task end + +2025-09-24 22:50:54,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:55,527 INFO Connection check task start + +2025-09-24 22:50:55,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:55,527 INFO Out dated connection ,size=0 + +2025-09-24 22:50:55,527 INFO Connection check task end + +2025-09-24 22:50:57,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:50:58,527 INFO Connection check task start + +2025-09-24 22:50:58,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:50:58,528 INFO Out dated connection ,size=0 + +2025-09-24 22:50:58,528 INFO Connection check task end + +2025-09-24 22:51:00,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:01,528 INFO Connection check task start + +2025-09-24 22:51:01,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:01,529 INFO Out dated connection ,size=0 + +2025-09-24 22:51:01,529 INFO Connection check task end + +2025-09-24 22:51:03,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:04,530 INFO Connection check task start + +2025-09-24 22:51:04,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:04,530 INFO Out dated connection ,size=0 + +2025-09-24 22:51:04,530 INFO Connection check task end + +2025-09-24 22:51:06,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:07,531 INFO Connection check task start + +2025-09-24 22:51:07,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:07,531 INFO Out dated connection ,size=0 + +2025-09-24 22:51:07,531 INFO Connection check task end + +2025-09-24 22:51:09,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:10,532 INFO Connection check task start + +2025-09-24 22:51:10,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:10,532 INFO Out dated connection ,size=0 + +2025-09-24 22:51:10,532 INFO Connection check task end + +2025-09-24 22:51:12,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:13,532 INFO Connection check task start + +2025-09-24 22:51:13,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:13,533 INFO Out dated connection ,size=0 + +2025-09-24 22:51:13,533 INFO Connection check task end + +2025-09-24 22:51:15,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:16,533 INFO Connection check task start + +2025-09-24 22:51:16,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:16,533 INFO Out dated connection ,size=0 + +2025-09-24 22:51:16,533 INFO Connection check task end + +2025-09-24 22:51:18,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:19,533 INFO Connection check task start + +2025-09-24 22:51:19,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:19,533 INFO Out dated connection ,size=0 + +2025-09-24 22:51:19,533 INFO Connection check task end + +2025-09-24 22:51:21,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:22,534 INFO Connection check task start + +2025-09-24 22:51:22,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:22,534 INFO Out dated connection ,size=0 + +2025-09-24 22:51:22,534 INFO Connection check task end + +2025-09-24 22:51:24,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:25,535 INFO Connection check task start + +2025-09-24 22:51:25,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:25,535 INFO Out dated connection ,size=0 + +2025-09-24 22:51:25,535 INFO Connection check task end + +2025-09-24 22:51:27,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:28,535 INFO Connection check task start + +2025-09-24 22:51:28,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:28,535 INFO Out dated connection ,size=0 + +2025-09-24 22:51:28,535 INFO Connection check task end + +2025-09-24 22:51:30,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:31,535 INFO Connection check task start + +2025-09-24 22:51:31,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:31,536 INFO Out dated connection ,size=0 + +2025-09-24 22:51:31,536 INFO Connection check task end + +2025-09-24 22:51:33,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:34,536 INFO Connection check task start + +2025-09-24 22:51:34,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:34,536 INFO Out dated connection ,size=0 + +2025-09-24 22:51:34,536 INFO Connection check task end + +2025-09-24 22:51:36,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:37,536 INFO Connection check task start + +2025-09-24 22:51:37,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:37,537 INFO Out dated connection ,size=0 + +2025-09-24 22:51:37,537 INFO Connection check task end + +2025-09-24 22:51:39,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:40,537 INFO Connection check task start + +2025-09-24 22:51:40,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:40,538 INFO Out dated connection ,size=0 + +2025-09-24 22:51:40,538 INFO Connection check task end + +2025-09-24 22:51:42,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:43,538 INFO Connection check task start + +2025-09-24 22:51:43,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:43,538 INFO Out dated connection ,size=0 + +2025-09-24 22:51:43,538 INFO Connection check task end + +2025-09-24 22:51:45,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:46,538 INFO Connection check task start + +2025-09-24 22:51:46,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:46,538 INFO Out dated connection ,size=0 + +2025-09-24 22:51:46,538 INFO Connection check task end + +2025-09-24 22:51:48,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:49,539 INFO Connection check task start + +2025-09-24 22:51:49,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:49,539 INFO Out dated connection ,size=0 + +2025-09-24 22:51:49,539 INFO Connection check task end + +2025-09-24 22:51:51,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:52,539 INFO Connection check task start + +2025-09-24 22:51:52,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:52,540 INFO Out dated connection ,size=0 + +2025-09-24 22:51:52,540 INFO Connection check task end + +2025-09-24 22:51:54,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:55,540 INFO Connection check task start + +2025-09-24 22:51:55,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:55,540 INFO Out dated connection ,size=0 + +2025-09-24 22:51:55,540 INFO Connection check task end + +2025-09-24 22:51:57,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:51:58,540 INFO Connection check task start + +2025-09-24 22:51:58,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:51:58,540 INFO Out dated connection ,size=0 + +2025-09-24 22:51:58,540 INFO Connection check task end + +2025-09-24 22:52:00,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:01,541 INFO Connection check task start + +2025-09-24 22:52:01,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:01,541 INFO Out dated connection ,size=0 + +2025-09-24 22:52:01,541 INFO Connection check task end + +2025-09-24 22:52:03,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:04,541 INFO Connection check task start + +2025-09-24 22:52:04,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:04,541 INFO Out dated connection ,size=0 + +2025-09-24 22:52:04,541 INFO Connection check task end + +2025-09-24 22:52:06,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:07,542 INFO Connection check task start + +2025-09-24 22:52:07,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:07,542 INFO Out dated connection ,size=0 + +2025-09-24 22:52:07,542 INFO Connection check task end + +2025-09-24 22:52:09,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:10,542 INFO Connection check task start + +2025-09-24 22:52:10,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:10,543 INFO Out dated connection ,size=0 + +2025-09-24 22:52:10,543 INFO Connection check task end + +2025-09-24 22:52:12,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:13,543 INFO Connection check task start + +2025-09-24 22:52:13,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:13,544 INFO Out dated connection ,size=0 + +2025-09-24 22:52:13,544 INFO Connection check task end + +2025-09-24 22:52:15,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:16,544 INFO Connection check task start + +2025-09-24 22:52:16,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:16,544 INFO Out dated connection ,size=0 + +2025-09-24 22:52:16,544 INFO Connection check task end + +2025-09-24 22:52:18,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:19,545 INFO Connection check task start + +2025-09-24 22:52:19,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:19,546 INFO Out dated connection ,size=0 + +2025-09-24 22:52:19,546 INFO Connection check task end + +2025-09-24 22:52:21,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:22,547 INFO Connection check task start + +2025-09-24 22:52:22,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:22,547 INFO Out dated connection ,size=0 + +2025-09-24 22:52:22,547 INFO Connection check task end + +2025-09-24 22:52:24,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:25,547 INFO Connection check task start + +2025-09-24 22:52:25,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:25,548 INFO Out dated connection ,size=0 + +2025-09-24 22:52:25,548 INFO Connection check task end + +2025-09-24 22:52:27,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:28,548 INFO Connection check task start + +2025-09-24 22:52:28,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:28,549 INFO Out dated connection ,size=0 + +2025-09-24 22:52:28,549 INFO Connection check task end + +2025-09-24 22:52:30,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:31,549 INFO Connection check task start + +2025-09-24 22:52:31,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:31,557 INFO Out dated connection ,size=0 + +2025-09-24 22:52:31,557 INFO Connection check task end + +2025-09-24 22:52:33,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:34,558 INFO Connection check task start + +2025-09-24 22:52:34,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:34,559 INFO Out dated connection ,size=0 + +2025-09-24 22:52:34,559 INFO Connection check task end + +2025-09-24 22:52:36,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:37,559 INFO Connection check task start + +2025-09-24 22:52:37,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:37,560 INFO Out dated connection ,size=0 + +2025-09-24 22:52:37,560 INFO Connection check task end + +2025-09-24 22:52:39,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:40,560 INFO Connection check task start + +2025-09-24 22:52:40,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:40,561 INFO Out dated connection ,size=0 + +2025-09-24 22:52:40,561 INFO Connection check task end + +2025-09-24 22:52:42,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:43,561 INFO Connection check task start + +2025-09-24 22:52:43,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:43,562 INFO Out dated connection ,size=0 + +2025-09-24 22:52:43,562 INFO Connection check task end + +2025-09-24 22:52:45,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:46,562 INFO Connection check task start + +2025-09-24 22:52:46,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:46,562 INFO Out dated connection ,size=0 + +2025-09-24 22:52:46,562 INFO Connection check task end + +2025-09-24 22:52:48,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:49,563 INFO Connection check task start + +2025-09-24 22:52:49,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:49,563 INFO Out dated connection ,size=0 + +2025-09-24 22:52:49,563 INFO Connection check task end + +2025-09-24 22:52:51,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:52,564 INFO Connection check task start + +2025-09-24 22:52:52,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:52,564 INFO Out dated connection ,size=0 + +2025-09-24 22:52:52,564 INFO Connection check task end + +2025-09-24 22:52:54,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:55,565 INFO Connection check task start + +2025-09-24 22:52:55,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:55,565 INFO Out dated connection ,size=0 + +2025-09-24 22:52:55,565 INFO Connection check task end + +2025-09-24 22:52:57,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:52:58,565 INFO Connection check task start + +2025-09-24 22:52:58,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:52:58,565 INFO Out dated connection ,size=0 + +2025-09-24 22:52:58,565 INFO Connection check task end + +2025-09-24 22:53:00,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:01,566 INFO Connection check task start + +2025-09-24 22:53:01,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:01,566 INFO Out dated connection ,size=0 + +2025-09-24 22:53:01,566 INFO Connection check task end + +2025-09-24 22:53:03,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:04,566 INFO Connection check task start + +2025-09-24 22:53:04,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:04,566 INFO Out dated connection ,size=0 + +2025-09-24 22:53:04,567 INFO Connection check task end + +2025-09-24 22:53:06,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:07,567 INFO Connection check task start + +2025-09-24 22:53:07,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:07,568 INFO Out dated connection ,size=0 + +2025-09-24 22:53:07,568 INFO Connection check task end + +2025-09-24 22:53:09,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:10,568 INFO Connection check task start + +2025-09-24 22:53:10,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:10,568 INFO Out dated connection ,size=0 + +2025-09-24 22:53:10,568 INFO Connection check task end + +2025-09-24 22:53:12,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:13,569 INFO Connection check task start + +2025-09-24 22:53:13,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:13,569 INFO Out dated connection ,size=0 + +2025-09-24 22:53:13,569 INFO Connection check task end + +2025-09-24 22:53:15,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:16,569 INFO Connection check task start + +2025-09-24 22:53:16,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:16,570 INFO Out dated connection ,size=0 + +2025-09-24 22:53:16,570 INFO Connection check task end + +2025-09-24 22:53:18,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:19,570 INFO Connection check task start + +2025-09-24 22:53:19,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:19,571 INFO Out dated connection ,size=0 + +2025-09-24 22:53:19,571 INFO Connection check task end + +2025-09-24 22:53:21,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:22,572 INFO Connection check task start + +2025-09-24 22:53:22,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:22,572 INFO Out dated connection ,size=0 + +2025-09-24 22:53:22,572 INFO Connection check task end + +2025-09-24 22:53:24,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:25,572 INFO Connection check task start + +2025-09-24 22:53:25,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:25,573 INFO Out dated connection ,size=0 + +2025-09-24 22:53:25,573 INFO Connection check task end + +2025-09-24 22:53:27,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:28,573 INFO Connection check task start + +2025-09-24 22:53:28,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:28,573 INFO Out dated connection ,size=0 + +2025-09-24 22:53:28,573 INFO Connection check task end + +2025-09-24 22:53:30,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:31,573 INFO Connection check task start + +2025-09-24 22:53:31,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:31,573 INFO Out dated connection ,size=0 + +2025-09-24 22:53:31,573 INFO Connection check task end + +2025-09-24 22:53:33,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:34,574 INFO Connection check task start + +2025-09-24 22:53:34,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:34,574 INFO Out dated connection ,size=0 + +2025-09-24 22:53:34,574 INFO Connection check task end + +2025-09-24 22:53:36,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:37,574 INFO Connection check task start + +2025-09-24 22:53:37,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:37,574 INFO Out dated connection ,size=0 + +2025-09-24 22:53:37,574 INFO Connection check task end + +2025-09-24 22:53:39,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:40,575 INFO Connection check task start + +2025-09-24 22:53:40,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:40,575 INFO Out dated connection ,size=0 + +2025-09-24 22:53:40,575 INFO Connection check task end + +2025-09-24 22:53:42,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:43,576 INFO Connection check task start + +2025-09-24 22:53:43,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:43,577 INFO Out dated connection ,size=0 + +2025-09-24 22:53:43,577 INFO Connection check task end + +2025-09-24 22:53:45,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:46,578 INFO Connection check task start + +2025-09-24 22:53:46,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:46,578 INFO Out dated connection ,size=0 + +2025-09-24 22:53:46,578 INFO Connection check task end + +2025-09-24 22:53:48,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:49,579 INFO Connection check task start + +2025-09-24 22:53:49,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:49,579 INFO Out dated connection ,size=0 + +2025-09-24 22:53:49,579 INFO Connection check task end + +2025-09-24 22:53:51,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:52,580 INFO Connection check task start + +2025-09-24 22:53:52,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:52,580 INFO Out dated connection ,size=0 + +2025-09-24 22:53:52,580 INFO Connection check task end + +2025-09-24 22:53:54,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:55,581 INFO Connection check task start + +2025-09-24 22:53:55,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:55,581 INFO Out dated connection ,size=0 + +2025-09-24 22:53:55,581 INFO Connection check task end + +2025-09-24 22:53:57,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:53:58,581 INFO Connection check task start + +2025-09-24 22:53:58,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:53:58,582 INFO Out dated connection ,size=0 + +2025-09-24 22:53:58,582 INFO Connection check task end + +2025-09-24 22:54:00,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:01,582 INFO Connection check task start + +2025-09-24 22:54:01,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:01,583 INFO Out dated connection ,size=0 + +2025-09-24 22:54:01,583 INFO Connection check task end + +2025-09-24 22:54:03,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:04,583 INFO Connection check task start + +2025-09-24 22:54:04,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:04,584 INFO Out dated connection ,size=0 + +2025-09-24 22:54:04,584 INFO Connection check task end + +2025-09-24 22:54:06,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:07,585 INFO Connection check task start + +2025-09-24 22:54:07,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:07,585 INFO Out dated connection ,size=0 + +2025-09-24 22:54:07,585 INFO Connection check task end + +2025-09-24 22:54:09,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:10,585 INFO Connection check task start + +2025-09-24 22:54:10,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:10,586 INFO Out dated connection ,size=0 + +2025-09-24 22:54:10,586 INFO Connection check task end + +2025-09-24 22:54:12,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:13,586 INFO Connection check task start + +2025-09-24 22:54:13,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:13,586 INFO Out dated connection ,size=0 + +2025-09-24 22:54:13,586 INFO Connection check task end + +2025-09-24 22:54:15,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:16,586 INFO Connection check task start + +2025-09-24 22:54:16,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:16,587 INFO Out dated connection ,size=0 + +2025-09-24 22:54:16,587 INFO Connection check task end + +2025-09-24 22:54:18,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:19,587 INFO Connection check task start + +2025-09-24 22:54:19,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:19,587 INFO Out dated connection ,size=0 + +2025-09-24 22:54:19,587 INFO Connection check task end + +2025-09-24 22:54:21,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:22,588 INFO Connection check task start + +2025-09-24 22:54:22,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:22,588 INFO Out dated connection ,size=0 + +2025-09-24 22:54:22,588 INFO Connection check task end + +2025-09-24 22:54:24,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:25,588 INFO Connection check task start + +2025-09-24 22:54:25,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:25,589 INFO Out dated connection ,size=0 + +2025-09-24 22:54:25,589 INFO Connection check task end + +2025-09-24 22:54:27,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:28,589 INFO Connection check task start + +2025-09-24 22:54:28,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:28,590 INFO Out dated connection ,size=0 + +2025-09-24 22:54:28,590 INFO Connection check task end + +2025-09-24 22:54:30,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:31,591 INFO Connection check task start + +2025-09-24 22:54:31,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:31,591 INFO Out dated connection ,size=0 + +2025-09-24 22:54:31,591 INFO Connection check task end + +2025-09-24 22:54:33,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:34,592 INFO Connection check task start + +2025-09-24 22:54:34,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:34,592 INFO Out dated connection ,size=0 + +2025-09-24 22:54:34,592 INFO Connection check task end + +2025-09-24 22:54:36,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:37,593 INFO Connection check task start + +2025-09-24 22:54:37,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:37,593 INFO Out dated connection ,size=0 + +2025-09-24 22:54:37,593 INFO Connection check task end + +2025-09-24 22:54:39,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:40,594 INFO Connection check task start + +2025-09-24 22:54:40,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:40,594 INFO Out dated connection ,size=0 + +2025-09-24 22:54:40,594 INFO Connection check task end + +2025-09-24 22:54:42,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:43,594 INFO Connection check task start + +2025-09-24 22:54:43,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:43,594 INFO Out dated connection ,size=0 + +2025-09-24 22:54:43,594 INFO Connection check task end + +2025-09-24 22:54:45,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:46,596 INFO Connection check task start + +2025-09-24 22:54:46,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:46,596 INFO Out dated connection ,size=0 + +2025-09-24 22:54:46,596 INFO Connection check task end + +2025-09-24 22:54:48,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:49,596 INFO Connection check task start + +2025-09-24 22:54:49,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:49,597 INFO Out dated connection ,size=0 + +2025-09-24 22:54:49,597 INFO Connection check task end + +2025-09-24 22:54:51,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:52,597 INFO Connection check task start + +2025-09-24 22:54:52,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:52,597 INFO Out dated connection ,size=0 + +2025-09-24 22:54:52,597 INFO Connection check task end + +2025-09-24 22:54:54,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:55,597 INFO Connection check task start + +2025-09-24 22:54:55,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:55,597 INFO Out dated connection ,size=0 + +2025-09-24 22:54:55,597 INFO Connection check task end + +2025-09-24 22:54:57,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:54:58,597 INFO Connection check task start + +2025-09-24 22:54:58,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:54:58,598 INFO Out dated connection ,size=0 + +2025-09-24 22:54:58,598 INFO Connection check task end + +2025-09-24 22:55:00,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:01,599 INFO Connection check task start + +2025-09-24 22:55:01,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:01,599 INFO Out dated connection ,size=0 + +2025-09-24 22:55:01,599 INFO Connection check task end + +2025-09-24 22:55:03,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:04,599 INFO Connection check task start + +2025-09-24 22:55:04,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:04,599 INFO Out dated connection ,size=0 + +2025-09-24 22:55:04,600 INFO Connection check task end + +2025-09-24 22:55:06,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:07,601 INFO Connection check task start + +2025-09-24 22:55:07,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:07,601 INFO Out dated connection ,size=0 + +2025-09-24 22:55:07,601 INFO Connection check task end + +2025-09-24 22:55:09,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:10,603 INFO Connection check task start + +2025-09-24 22:55:10,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:10,603 INFO Out dated connection ,size=0 + +2025-09-24 22:55:10,603 INFO Connection check task end + +2025-09-24 22:55:12,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:13,604 INFO Connection check task start + +2025-09-24 22:55:13,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:13,606 INFO Out dated connection ,size=0 + +2025-09-24 22:55:13,606 INFO Connection check task end + +2025-09-24 22:55:15,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:16,607 INFO Connection check task start + +2025-09-24 22:55:16,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:16,607 INFO Out dated connection ,size=0 + +2025-09-24 22:55:16,607 INFO Connection check task end + +2025-09-24 22:55:18,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:19,607 INFO Connection check task start + +2025-09-24 22:55:19,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:19,608 INFO Out dated connection ,size=0 + +2025-09-24 22:55:19,608 INFO Connection check task end + +2025-09-24 22:55:21,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:22,608 INFO Connection check task start + +2025-09-24 22:55:22,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:22,608 INFO Out dated connection ,size=0 + +2025-09-24 22:55:22,608 INFO Connection check task end + +2025-09-24 22:55:24,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:25,609 INFO Connection check task start + +2025-09-24 22:55:25,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:25,609 INFO Out dated connection ,size=0 + +2025-09-24 22:55:25,609 INFO Connection check task end + +2025-09-24 22:55:27,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:28,609 INFO Connection check task start + +2025-09-24 22:55:28,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:28,610 INFO Out dated connection ,size=0 + +2025-09-24 22:55:28,610 INFO Connection check task end + +2025-09-24 22:55:30,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:31,610 INFO Connection check task start + +2025-09-24 22:55:31,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:31,610 INFO Out dated connection ,size=0 + +2025-09-24 22:55:31,610 INFO Connection check task end + +2025-09-24 22:55:33,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:34,611 INFO Connection check task start + +2025-09-24 22:55:34,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:34,612 INFO Out dated connection ,size=0 + +2025-09-24 22:55:34,612 INFO Connection check task end + +2025-09-24 22:55:36,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:37,612 INFO Connection check task start + +2025-09-24 22:55:37,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:37,612 INFO Out dated connection ,size=0 + +2025-09-24 22:55:37,612 INFO Connection check task end + +2025-09-24 22:55:39,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:40,613 INFO Connection check task start + +2025-09-24 22:55:40,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:40,613 INFO Out dated connection ,size=0 + +2025-09-24 22:55:40,613 INFO Connection check task end + +2025-09-24 22:55:42,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:43,613 INFO Connection check task start + +2025-09-24 22:55:43,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:43,613 INFO Out dated connection ,size=0 + +2025-09-24 22:55:43,613 INFO Connection check task end + +2025-09-24 22:55:45,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:46,614 INFO Connection check task start + +2025-09-24 22:55:46,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:46,615 INFO Out dated connection ,size=0 + +2025-09-24 22:55:46,615 INFO Connection check task end + +2025-09-24 22:55:48,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:49,616 INFO Connection check task start + +2025-09-24 22:55:49,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:49,616 INFO Out dated connection ,size=0 + +2025-09-24 22:55:49,616 INFO Connection check task end + +2025-09-24 22:55:51,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:52,617 INFO Connection check task start + +2025-09-24 22:55:52,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:52,617 INFO Out dated connection ,size=0 + +2025-09-24 22:55:52,617 INFO Connection check task end + +2025-09-24 22:55:54,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:55,618 INFO Connection check task start + +2025-09-24 22:55:55,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:55,618 INFO Out dated connection ,size=0 + +2025-09-24 22:55:55,618 INFO Connection check task end + +2025-09-24 22:55:57,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:55:58,619 INFO Connection check task start + +2025-09-24 22:55:58,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:55:58,620 INFO Out dated connection ,size=0 + +2025-09-24 22:55:58,620 INFO Connection check task end + +2025-09-24 22:56:01,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:01,620 INFO Connection check task start + +2025-09-24 22:56:01,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:01,621 INFO Out dated connection ,size=0 + +2025-09-24 22:56:01,621 INFO Connection check task end + +2025-09-24 22:56:04,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:04,622 INFO Connection check task start + +2025-09-24 22:56:04,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:04,623 INFO Out dated connection ,size=0 + +2025-09-24 22:56:04,623 INFO Connection check task end + +2025-09-24 22:56:07,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:07,624 INFO Connection check task start + +2025-09-24 22:56:07,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:07,624 INFO Out dated connection ,size=0 + +2025-09-24 22:56:07,624 INFO Connection check task end + +2025-09-24 22:56:10,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:10,625 INFO Connection check task start + +2025-09-24 22:56:10,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:10,627 INFO Out dated connection ,size=0 + +2025-09-24 22:56:10,627 INFO Connection check task end + +2025-09-24 22:56:13,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:13,628 INFO Connection check task start + +2025-09-24 22:56:13,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:13,628 INFO Out dated connection ,size=0 + +2025-09-24 22:56:13,628 INFO Connection check task end + +2025-09-24 22:56:16,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:16,628 INFO Connection check task start + +2025-09-24 22:56:16,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:16,629 INFO Out dated connection ,size=0 + +2025-09-24 22:56:16,629 INFO Connection check task end + +2025-09-24 22:56:19,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:19,629 INFO Connection check task start + +2025-09-24 22:56:19,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:19,630 INFO Out dated connection ,size=0 + +2025-09-24 22:56:19,631 INFO Connection check task end + +2025-09-24 22:56:22,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:22,631 INFO Connection check task start + +2025-09-24 22:56:22,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:22,631 INFO Out dated connection ,size=0 + +2025-09-24 22:56:22,631 INFO Connection check task end + +2025-09-24 22:56:25,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:25,632 INFO Connection check task start + +2025-09-24 22:56:25,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:25,632 INFO Out dated connection ,size=0 + +2025-09-24 22:56:25,632 INFO Connection check task end + +2025-09-24 22:56:28,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:28,632 INFO Connection check task start + +2025-09-24 22:56:28,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:28,632 INFO Out dated connection ,size=0 + +2025-09-24 22:56:28,632 INFO Connection check task end + +2025-09-24 22:56:31,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:31,633 INFO Connection check task start + +2025-09-24 22:56:31,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:31,633 INFO Out dated connection ,size=0 + +2025-09-24 22:56:31,633 INFO Connection check task end + +2025-09-24 22:56:34,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:34,634 INFO Connection check task start + +2025-09-24 22:56:34,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:34,634 INFO Out dated connection ,size=0 + +2025-09-24 22:56:34,634 INFO Connection check task end + +2025-09-24 22:56:37,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:37,635 INFO Connection check task start + +2025-09-24 22:56:37,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:37,636 INFO Out dated connection ,size=0 + +2025-09-24 22:56:37,636 INFO Connection check task end + +2025-09-24 22:56:40,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:40,636 INFO Connection check task start + +2025-09-24 22:56:40,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:40,637 INFO Out dated connection ,size=0 + +2025-09-24 22:56:40,637 INFO Connection check task end + +2025-09-24 22:56:43,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:43,638 INFO Connection check task start + +2025-09-24 22:56:43,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:43,639 INFO Out dated connection ,size=0 + +2025-09-24 22:56:43,639 INFO Connection check task end + +2025-09-24 22:56:46,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:46,639 INFO Connection check task start + +2025-09-24 22:56:46,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:46,639 INFO Out dated connection ,size=0 + +2025-09-24 22:56:46,640 INFO Connection check task end + +2025-09-24 22:56:49,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:49,640 INFO Connection check task start + +2025-09-24 22:56:49,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:49,640 INFO Out dated connection ,size=0 + +2025-09-24 22:56:49,640 INFO Connection check task end + +2025-09-24 22:56:52,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:52,641 INFO Connection check task start + +2025-09-24 22:56:52,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:52,641 INFO Out dated connection ,size=0 + +2025-09-24 22:56:52,641 INFO Connection check task end + +2025-09-24 22:56:55,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:55,642 INFO Connection check task start + +2025-09-24 22:56:55,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:55,642 INFO Out dated connection ,size=0 + +2025-09-24 22:56:55,642 INFO Connection check task end + +2025-09-24 22:56:58,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:56:58,642 INFO Connection check task start + +2025-09-24 22:56:58,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:56:58,643 INFO Out dated connection ,size=0 + +2025-09-24 22:56:58,643 INFO Connection check task end + +2025-09-24 22:57:01,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:01,643 INFO Connection check task start + +2025-09-24 22:57:01,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:01,643 INFO Out dated connection ,size=0 + +2025-09-24 22:57:01,643 INFO Connection check task end + +2025-09-24 22:57:04,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:04,643 INFO Connection check task start + +2025-09-24 22:57:04,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:04,643 INFO Out dated connection ,size=0 + +2025-09-24 22:57:04,643 INFO Connection check task end + +2025-09-24 22:57:07,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:07,644 INFO Connection check task start + +2025-09-24 22:57:07,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:07,644 INFO Out dated connection ,size=0 + +2025-09-24 22:57:07,644 INFO Connection check task end + +2025-09-24 22:57:10,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:10,644 INFO Connection check task start + +2025-09-24 22:57:10,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:10,644 INFO Out dated connection ,size=0 + +2025-09-24 22:57:10,645 INFO Connection check task end + +2025-09-24 22:57:13,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:13,645 INFO Connection check task start + +2025-09-24 22:57:13,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:13,646 INFO Out dated connection ,size=0 + +2025-09-24 22:57:13,646 INFO Connection check task end + +2025-09-24 22:57:16,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:16,647 INFO Connection check task start + +2025-09-24 22:57:16,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:16,647 INFO Out dated connection ,size=0 + +2025-09-24 22:57:16,647 INFO Connection check task end + +2025-09-24 22:57:19,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:19,648 INFO Connection check task start + +2025-09-24 22:57:19,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:19,648 INFO Out dated connection ,size=0 + +2025-09-24 22:57:19,648 INFO Connection check task end + +2025-09-24 22:57:22,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:22,649 INFO Connection check task start + +2025-09-24 22:57:22,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:22,649 INFO Out dated connection ,size=0 + +2025-09-24 22:57:22,649 INFO Connection check task end + +2025-09-24 22:57:25,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:25,650 INFO Connection check task start + +2025-09-24 22:57:25,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:25,650 INFO Out dated connection ,size=0 + +2025-09-24 22:57:25,650 INFO Connection check task end + +2025-09-24 22:57:28,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:28,650 INFO Connection check task start + +2025-09-24 22:57:28,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:28,650 INFO Out dated connection ,size=0 + +2025-09-24 22:57:28,650 INFO Connection check task end + +2025-09-24 22:57:31,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:31,652 INFO Connection check task start + +2025-09-24 22:57:31,652 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:31,652 INFO Out dated connection ,size=0 + +2025-09-24 22:57:31,652 INFO Connection check task end + +2025-09-24 22:57:34,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:34,653 INFO Connection check task start + +2025-09-24 22:57:34,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:34,653 INFO Out dated connection ,size=0 + +2025-09-24 22:57:34,653 INFO Connection check task end + +2025-09-24 22:57:37,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:37,654 INFO Connection check task start + +2025-09-24 22:57:37,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:37,654 INFO Out dated connection ,size=0 + +2025-09-24 22:57:37,654 INFO Connection check task end + +2025-09-24 22:57:40,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:40,655 INFO Connection check task start + +2025-09-24 22:57:40,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:40,656 INFO Out dated connection ,size=0 + +2025-09-24 22:57:40,656 INFO Connection check task end + +2025-09-24 22:57:43,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:43,656 INFO Connection check task start + +2025-09-24 22:57:43,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:43,656 INFO Out dated connection ,size=0 + +2025-09-24 22:57:43,656 INFO Connection check task end + +2025-09-24 22:57:46,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:46,657 INFO Connection check task start + +2025-09-24 22:57:46,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:46,658 INFO Out dated connection ,size=0 + +2025-09-24 22:57:46,658 INFO Connection check task end + +2025-09-24 22:57:49,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:49,658 INFO Connection check task start + +2025-09-24 22:57:49,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:49,658 INFO Out dated connection ,size=0 + +2025-09-24 22:57:49,658 INFO Connection check task end + +2025-09-24 22:57:52,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:52,659 INFO Connection check task start + +2025-09-24 22:57:52,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:52,660 INFO Out dated connection ,size=0 + +2025-09-24 22:57:52,660 INFO Connection check task end + +2025-09-24 22:57:55,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:55,660 INFO Connection check task start + +2025-09-24 22:57:55,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:55,661 INFO Out dated connection ,size=0 + +2025-09-24 22:57:55,661 INFO Connection check task end + +2025-09-24 22:57:58,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:57:58,662 INFO Connection check task start + +2025-09-24 22:57:58,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:57:58,662 INFO Out dated connection ,size=0 + +2025-09-24 22:57:58,662 INFO Connection check task end + +2025-09-24 22:58:01,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:01,662 INFO Connection check task start + +2025-09-24 22:58:01,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:01,662 INFO Out dated connection ,size=0 + +2025-09-24 22:58:01,662 INFO Connection check task end + +2025-09-24 22:58:04,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:04,663 INFO Connection check task start + +2025-09-24 22:58:04,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:04,663 INFO Out dated connection ,size=0 + +2025-09-24 22:58:04,663 INFO Connection check task end + +2025-09-24 22:58:07,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:07,664 INFO Connection check task start + +2025-09-24 22:58:07,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:07,664 INFO Out dated connection ,size=0 + +2025-09-24 22:58:07,664 INFO Connection check task end + +2025-09-24 22:58:10,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:10,665 INFO Connection check task start + +2025-09-24 22:58:10,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:10,665 INFO Out dated connection ,size=0 + +2025-09-24 22:58:10,665 INFO Connection check task end + +2025-09-24 22:58:13,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:13,666 INFO Connection check task start + +2025-09-24 22:58:13,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:13,666 INFO Out dated connection ,size=0 + +2025-09-24 22:58:13,666 INFO Connection check task end + +2025-09-24 22:58:16,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:16,667 INFO Connection check task start + +2025-09-24 22:58:16,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:16,667 INFO Out dated connection ,size=0 + +2025-09-24 22:58:16,667 INFO Connection check task end + +2025-09-24 22:58:19,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:19,668 INFO Connection check task start + +2025-09-24 22:58:19,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:19,668 INFO Out dated connection ,size=0 + +2025-09-24 22:58:19,668 INFO Connection check task end + +2025-09-24 22:58:22,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:22,668 INFO Connection check task start + +2025-09-24 22:58:22,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:22,668 INFO Out dated connection ,size=0 + +2025-09-24 22:58:22,668 INFO Connection check task end + +2025-09-24 22:58:25,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:25,669 INFO Connection check task start + +2025-09-24 22:58:25,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:25,669 INFO Out dated connection ,size=0 + +2025-09-24 22:58:25,669 INFO Connection check task end + +2025-09-24 22:58:28,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:28,670 INFO Connection check task start + +2025-09-24 22:58:28,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:28,670 INFO Out dated connection ,size=0 + +2025-09-24 22:58:28,670 INFO Connection check task end + +2025-09-24 22:58:31,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:31,672 INFO Connection check task start + +2025-09-24 22:58:31,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:31,672 INFO Out dated connection ,size=0 + +2025-09-24 22:58:31,672 INFO Connection check task end + +2025-09-24 22:58:34,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:34,672 INFO Connection check task start + +2025-09-24 22:58:34,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:34,672 INFO Out dated connection ,size=0 + +2025-09-24 22:58:34,672 INFO Connection check task end + +2025-09-24 22:58:37,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:37,673 INFO Connection check task start + +2025-09-24 22:58:37,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:37,673 INFO Out dated connection ,size=0 + +2025-09-24 22:58:37,673 INFO Connection check task end + +2025-09-24 22:58:40,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:40,674 INFO Connection check task start + +2025-09-24 22:58:40,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:40,674 INFO Out dated connection ,size=0 + +2025-09-24 22:58:40,674 INFO Connection check task end + +2025-09-24 22:58:43,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:43,675 INFO Connection check task start + +2025-09-24 22:58:43,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:43,675 INFO Out dated connection ,size=0 + +2025-09-24 22:58:43,675 INFO Connection check task end + +2025-09-24 22:58:46,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:46,676 INFO Connection check task start + +2025-09-24 22:58:46,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:46,676 INFO Out dated connection ,size=0 + +2025-09-24 22:58:46,676 INFO Connection check task end + +2025-09-24 22:58:49,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:49,676 INFO Connection check task start + +2025-09-24 22:58:49,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:49,676 INFO Out dated connection ,size=0 + +2025-09-24 22:58:49,676 INFO Connection check task end + +2025-09-24 22:58:52,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:52,677 INFO Connection check task start + +2025-09-24 22:58:52,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:52,677 INFO Out dated connection ,size=0 + +2025-09-24 22:58:52,677 INFO Connection check task end + +2025-09-24 22:58:55,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:55,678 INFO Connection check task start + +2025-09-24 22:58:55,678 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:55,678 INFO Out dated connection ,size=0 + +2025-09-24 22:58:55,678 INFO Connection check task end + +2025-09-24 22:58:58,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:58:58,678 INFO Connection check task start + +2025-09-24 22:58:58,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:58:58,679 INFO Out dated connection ,size=0 + +2025-09-24 22:58:58,679 INFO Connection check task end + +2025-09-24 22:59:01,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:01,680 INFO Connection check task start + +2025-09-24 22:59:01,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:01,680 INFO Out dated connection ,size=0 + +2025-09-24 22:59:01,680 INFO Connection check task end + +2025-09-24 22:59:04,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:04,680 INFO Connection check task start + +2025-09-24 22:59:04,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:04,681 INFO Out dated connection ,size=0 + +2025-09-24 22:59:04,681 INFO Connection check task end + +2025-09-24 22:59:07,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:07,681 INFO Connection check task start + +2025-09-24 22:59:07,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:07,681 INFO Out dated connection ,size=0 + +2025-09-24 22:59:07,681 INFO Connection check task end + +2025-09-24 22:59:10,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:10,683 INFO Connection check task start + +2025-09-24 22:59:10,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:10,683 INFO Out dated connection ,size=0 + +2025-09-24 22:59:10,683 INFO Connection check task end + +2025-09-24 22:59:13,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:13,683 INFO Connection check task start + +2025-09-24 22:59:13,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:13,683 INFO Out dated connection ,size=0 + +2025-09-24 22:59:13,683 INFO Connection check task end + +2025-09-24 22:59:16,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:16,684 INFO Connection check task start + +2025-09-24 22:59:16,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:16,685 INFO Out dated connection ,size=0 + +2025-09-24 22:59:16,685 INFO Connection check task end + +2025-09-24 22:59:19,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:19,686 INFO Connection check task start + +2025-09-24 22:59:19,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:19,686 INFO Out dated connection ,size=0 + +2025-09-24 22:59:19,686 INFO Connection check task end + +2025-09-24 22:59:22,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:22,687 INFO Connection check task start + +2025-09-24 22:59:22,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:22,687 INFO Out dated connection ,size=0 + +2025-09-24 22:59:22,687 INFO Connection check task end + +2025-09-24 22:59:25,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:25,688 INFO Connection check task start + +2025-09-24 22:59:25,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:25,688 INFO Out dated connection ,size=0 + +2025-09-24 22:59:25,688 INFO Connection check task end + +2025-09-24 22:59:28,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:28,689 INFO Connection check task start + +2025-09-24 22:59:28,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:28,690 INFO Out dated connection ,size=0 + +2025-09-24 22:59:28,690 INFO Connection check task end + +2025-09-24 22:59:31,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:31,691 INFO Connection check task start + +2025-09-24 22:59:31,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:31,691 INFO Out dated connection ,size=0 + +2025-09-24 22:59:31,691 INFO Connection check task end + +2025-09-24 22:59:34,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:34,692 INFO Connection check task start + +2025-09-24 22:59:34,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:34,692 INFO Out dated connection ,size=0 + +2025-09-24 22:59:34,693 INFO Connection check task end + +2025-09-24 22:59:37,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:37,693 INFO Connection check task start + +2025-09-24 22:59:37,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:37,693 INFO Out dated connection ,size=0 + +2025-09-24 22:59:37,693 INFO Connection check task end + +2025-09-24 22:59:40,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:40,694 INFO Connection check task start + +2025-09-24 22:59:40,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:40,694 INFO Out dated connection ,size=0 + +2025-09-24 22:59:40,694 INFO Connection check task end + +2025-09-24 22:59:43,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:43,695 INFO Connection check task start + +2025-09-24 22:59:43,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:43,696 INFO Out dated connection ,size=0 + +2025-09-24 22:59:43,696 INFO Connection check task end + +2025-09-24 22:59:46,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:46,696 INFO Connection check task start + +2025-09-24 22:59:46,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:46,696 INFO Out dated connection ,size=0 + +2025-09-24 22:59:46,696 INFO Connection check task end + +2025-09-24 22:59:49,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:49,696 INFO Connection check task start + +2025-09-24 22:59:49,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:49,697 INFO Out dated connection ,size=0 + +2025-09-24 22:59:49,697 INFO Connection check task end + +2025-09-24 22:59:52,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:52,697 INFO Connection check task start + +2025-09-24 22:59:52,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:52,697 INFO Out dated connection ,size=0 + +2025-09-24 22:59:52,697 INFO Connection check task end + +2025-09-24 22:59:55,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:55,699 INFO Connection check task start + +2025-09-24 22:59:55,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:55,699 INFO Out dated connection ,size=0 + +2025-09-24 22:59:55,699 INFO Connection check task end + +2025-09-24 22:59:58,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 22:59:58,700 INFO Connection check task start + +2025-09-24 22:59:58,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 22:59:58,700 INFO Out dated connection ,size=0 + +2025-09-24 22:59:58,700 INFO Connection check task end + +2025-09-24 23:00:01,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:01,701 INFO Connection check task start + +2025-09-24 23:00:01,701 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:01,701 INFO Out dated connection ,size=0 + +2025-09-24 23:00:01,701 INFO Connection check task end + +2025-09-24 23:00:04,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:04,702 INFO Connection check task start + +2025-09-24 23:00:04,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:04,702 INFO Out dated connection ,size=0 + +2025-09-24 23:00:04,702 INFO Connection check task end + +2025-09-24 23:00:07,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:07,703 INFO Connection check task start + +2025-09-24 23:00:07,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:07,703 INFO Out dated connection ,size=0 + +2025-09-24 23:00:07,703 INFO Connection check task end + +2025-09-24 23:00:10,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:10,704 INFO Connection check task start + +2025-09-24 23:00:10,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:10,704 INFO Out dated connection ,size=0 + +2025-09-24 23:00:10,704 INFO Connection check task end + +2025-09-24 23:00:13,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:13,705 INFO Connection check task start + +2025-09-24 23:00:13,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:13,705 INFO Out dated connection ,size=0 + +2025-09-24 23:00:13,705 INFO Connection check task end + +2025-09-24 23:00:16,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:16,707 INFO Connection check task start + +2025-09-24 23:00:16,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:16,707 INFO Out dated connection ,size=0 + +2025-09-24 23:00:16,707 INFO Connection check task end + +2025-09-24 23:00:19,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:19,708 INFO Connection check task start + +2025-09-24 23:00:19,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:19,708 INFO Out dated connection ,size=0 + +2025-09-24 23:00:19,708 INFO Connection check task end + +2025-09-24 23:00:22,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:22,710 INFO Connection check task start + +2025-09-24 23:00:22,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:22,710 INFO Out dated connection ,size=0 + +2025-09-24 23:00:22,710 INFO Connection check task end + +2025-09-24 23:00:25,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:25,711 INFO Connection check task start + +2025-09-24 23:00:25,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:25,711 INFO Out dated connection ,size=0 + +2025-09-24 23:00:25,711 INFO Connection check task end + +2025-09-24 23:00:28,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:28,712 INFO Connection check task start + +2025-09-24 23:00:28,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:28,712 INFO Out dated connection ,size=0 + +2025-09-24 23:00:28,712 INFO Connection check task end + +2025-09-24 23:00:31,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:31,712 INFO Connection check task start + +2025-09-24 23:00:31,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:31,712 INFO Out dated connection ,size=0 + +2025-09-24 23:00:31,712 INFO Connection check task end + +2025-09-24 23:00:34,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:34,714 INFO Connection check task start + +2025-09-24 23:00:34,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:34,714 INFO Out dated connection ,size=0 + +2025-09-24 23:00:34,714 INFO Connection check task end + +2025-09-24 23:00:37,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:37,715 INFO Connection check task start + +2025-09-24 23:00:37,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:37,716 INFO Out dated connection ,size=0 + +2025-09-24 23:00:37,716 INFO Connection check task end + +2025-09-24 23:00:40,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:40,717 INFO Connection check task start + +2025-09-24 23:00:40,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:40,718 INFO Out dated connection ,size=0 + +2025-09-24 23:00:40,718 INFO Connection check task end + +2025-09-24 23:00:43,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:43,718 INFO Connection check task start + +2025-09-24 23:00:43,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:43,719 INFO Out dated connection ,size=0 + +2025-09-24 23:00:43,719 INFO Connection check task end + +2025-09-24 23:00:46,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:46,720 INFO Connection check task start + +2025-09-24 23:00:46,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:46,720 INFO Out dated connection ,size=0 + +2025-09-24 23:00:46,720 INFO Connection check task end + +2025-09-24 23:00:49,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:49,722 INFO Connection check task start + +2025-09-24 23:00:49,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:49,722 INFO Out dated connection ,size=0 + +2025-09-24 23:00:49,722 INFO Connection check task end + +2025-09-24 23:00:52,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:52,723 INFO Connection check task start + +2025-09-24 23:00:52,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:52,724 INFO Out dated connection ,size=0 + +2025-09-24 23:00:52,724 INFO Connection check task end + +2025-09-24 23:00:55,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:55,725 INFO Connection check task start + +2025-09-24 23:00:55,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:55,725 INFO Out dated connection ,size=0 + +2025-09-24 23:00:55,725 INFO Connection check task end + +2025-09-24 23:00:58,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:00:58,726 INFO Connection check task start + +2025-09-24 23:00:58,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:00:58,726 INFO Out dated connection ,size=0 + +2025-09-24 23:00:58,727 INFO Connection check task end + +2025-09-24 23:01:01,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:01,727 INFO Connection check task start + +2025-09-24 23:01:01,727 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:01,727 INFO Out dated connection ,size=0 + +2025-09-24 23:01:01,728 INFO Connection check task end + +2025-09-24 23:01:04,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:04,728 INFO Connection check task start + +2025-09-24 23:01:04,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:04,728 INFO Out dated connection ,size=0 + +2025-09-24 23:01:04,728 INFO Connection check task end + +2025-09-24 23:01:07,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:07,729 INFO Connection check task start + +2025-09-24 23:01:07,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:07,729 INFO Out dated connection ,size=0 + +2025-09-24 23:01:07,729 INFO Connection check task end + +2025-09-24 23:01:10,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:10,730 INFO Connection check task start + +2025-09-24 23:01:10,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:10,730 INFO Out dated connection ,size=0 + +2025-09-24 23:01:10,731 INFO Connection check task end + +2025-09-24 23:01:13,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:13,732 INFO Connection check task start + +2025-09-24 23:01:13,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:13,732 INFO Out dated connection ,size=0 + +2025-09-24 23:01:13,732 INFO Connection check task end + +2025-09-24 23:01:16,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:16,733 INFO Connection check task start + +2025-09-24 23:01:16,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:16,734 INFO Out dated connection ,size=0 + +2025-09-24 23:01:16,734 INFO Connection check task end + +2025-09-24 23:01:19,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:19,734 INFO Connection check task start + +2025-09-24 23:01:19,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:19,735 INFO Out dated connection ,size=0 + +2025-09-24 23:01:19,735 INFO Connection check task end + +2025-09-24 23:01:22,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:22,736 INFO Connection check task start + +2025-09-24 23:01:22,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:22,737 INFO Out dated connection ,size=0 + +2025-09-24 23:01:22,737 INFO Connection check task end + +2025-09-24 23:01:25,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:25,737 INFO Connection check task start + +2025-09-24 23:01:25,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:25,737 INFO Out dated connection ,size=0 + +2025-09-24 23:01:25,737 INFO Connection check task end + +2025-09-24 23:01:28,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:28,740 INFO Connection check task start + +2025-09-24 23:01:28,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:28,740 INFO Out dated connection ,size=0 + +2025-09-24 23:01:28,740 INFO Connection check task end + +2025-09-24 23:01:31,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:31,741 INFO Connection check task start + +2025-09-24 23:01:31,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:31,741 INFO Out dated connection ,size=0 + +2025-09-24 23:01:31,741 INFO Connection check task end + +2025-09-24 23:01:34,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:34,742 INFO Connection check task start + +2025-09-24 23:01:34,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:34,742 INFO Out dated connection ,size=0 + +2025-09-24 23:01:34,742 INFO Connection check task end + +2025-09-24 23:01:37,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:37,743 INFO Connection check task start + +2025-09-24 23:01:37,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:37,743 INFO Out dated connection ,size=0 + +2025-09-24 23:01:37,743 INFO Connection check task end + +2025-09-24 23:01:40,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:40,743 INFO Connection check task start + +2025-09-24 23:01:40,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:40,744 INFO Out dated connection ,size=0 + +2025-09-24 23:01:40,744 INFO Connection check task end + +2025-09-24 23:01:43,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:43,745 INFO Connection check task start + +2025-09-24 23:01:43,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:43,745 INFO Out dated connection ,size=0 + +2025-09-24 23:01:43,745 INFO Connection check task end + +2025-09-24 23:01:46,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:46,746 INFO Connection check task start + +2025-09-24 23:01:46,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:46,746 INFO Out dated connection ,size=0 + +2025-09-24 23:01:46,746 INFO Connection check task end + +2025-09-24 23:01:49,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:49,746 INFO Connection check task start + +2025-09-24 23:01:49,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:49,746 INFO Out dated connection ,size=0 + +2025-09-24 23:01:49,746 INFO Connection check task end + +2025-09-24 23:01:52,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:52,747 INFO Connection check task start + +2025-09-24 23:01:52,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:52,748 INFO Out dated connection ,size=0 + +2025-09-24 23:01:52,748 INFO Connection check task end + +2025-09-24 23:01:55,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:55,748 INFO Connection check task start + +2025-09-24 23:01:55,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:55,748 INFO Out dated connection ,size=0 + +2025-09-24 23:01:55,748 INFO Connection check task end + +2025-09-24 23:01:58,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:01:58,748 INFO Connection check task start + +2025-09-24 23:01:58,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:01:58,749 INFO Out dated connection ,size=0 + +2025-09-24 23:01:58,749 INFO Connection check task end + +2025-09-24 23:02:01,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:01,749 INFO Connection check task start + +2025-09-24 23:02:01,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:01,750 INFO Out dated connection ,size=0 + +2025-09-24 23:02:01,750 INFO Connection check task end + +2025-09-24 23:02:04,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:04,750 INFO Connection check task start + +2025-09-24 23:02:04,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:04,750 INFO Out dated connection ,size=0 + +2025-09-24 23:02:04,750 INFO Connection check task end + +2025-09-24 23:02:07,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:07,751 INFO Connection check task start + +2025-09-24 23:02:07,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:07,751 INFO Out dated connection ,size=0 + +2025-09-24 23:02:07,751 INFO Connection check task end + +2025-09-24 23:02:10,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:10,752 INFO Connection check task start + +2025-09-24 23:02:10,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:10,752 INFO Out dated connection ,size=0 + +2025-09-24 23:02:10,752 INFO Connection check task end + +2025-09-24 23:02:13,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:13,752 INFO Connection check task start + +2025-09-24 23:02:13,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:13,753 INFO Out dated connection ,size=0 + +2025-09-24 23:02:13,753 INFO Connection check task end + +2025-09-24 23:02:16,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:16,753 INFO Connection check task start + +2025-09-24 23:02:16,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:16,753 INFO Out dated connection ,size=0 + +2025-09-24 23:02:16,753 INFO Connection check task end + +2025-09-24 23:02:19,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:19,793 INFO Connection check task start + +2025-09-24 23:02:19,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:19,794 INFO Out dated connection ,size=0 + +2025-09-24 23:02:19,796 INFO Connection check task end + +2025-09-24 23:02:22,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:22,796 INFO Connection check task start + +2025-09-24 23:02:22,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:22,796 INFO Out dated connection ,size=0 + +2025-09-24 23:02:22,796 INFO Connection check task end + +2025-09-24 23:02:25,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:25,797 INFO Connection check task start + +2025-09-24 23:02:25,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:25,798 INFO Out dated connection ,size=0 + +2025-09-24 23:02:25,798 INFO Connection check task end + +2025-09-24 23:02:28,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:28,799 INFO Connection check task start + +2025-09-24 23:02:28,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:28,799 INFO Out dated connection ,size=0 + +2025-09-24 23:02:28,799 INFO Connection check task end + +2025-09-24 23:02:31,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:31,800 INFO Connection check task start + +2025-09-24 23:02:31,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:31,801 INFO Out dated connection ,size=0 + +2025-09-24 23:02:31,801 INFO Connection check task end + +2025-09-24 23:02:34,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:34,801 INFO Connection check task start + +2025-09-24 23:02:34,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:34,801 INFO Out dated connection ,size=0 + +2025-09-24 23:02:34,801 INFO Connection check task end + +2025-09-24 23:02:37,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:37,802 INFO Connection check task start + +2025-09-24 23:02:37,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:37,802 INFO Out dated connection ,size=0 + +2025-09-24 23:02:37,802 INFO Connection check task end + +2025-09-24 23:02:40,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:40,803 INFO Connection check task start + +2025-09-24 23:02:40,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:40,804 INFO Out dated connection ,size=0 + +2025-09-24 23:02:40,804 INFO Connection check task end + +2025-09-24 23:02:43,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:43,804 INFO Connection check task start + +2025-09-24 23:02:43,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:43,804 INFO Out dated connection ,size=0 + +2025-09-24 23:02:43,804 INFO Connection check task end + +2025-09-24 23:02:46,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:46,805 INFO Connection check task start + +2025-09-24 23:02:46,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:46,805 INFO Out dated connection ,size=0 + +2025-09-24 23:02:46,805 INFO Connection check task end + +2025-09-24 23:02:49,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:49,806 INFO Connection check task start + +2025-09-24 23:02:49,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:49,807 INFO Out dated connection ,size=0 + +2025-09-24 23:02:49,807 INFO Connection check task end + +2025-09-24 23:02:52,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:52,808 INFO Connection check task start + +2025-09-24 23:02:52,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:52,809 INFO Out dated connection ,size=0 + +2025-09-24 23:02:52,809 INFO Connection check task end + +2025-09-24 23:02:55,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:55,809 INFO Connection check task start + +2025-09-24 23:02:55,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:55,809 INFO Out dated connection ,size=0 + +2025-09-24 23:02:55,809 INFO Connection check task end + +2025-09-24 23:02:58,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:02:58,810 INFO Connection check task start + +2025-09-24 23:02:58,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:02:58,810 INFO Out dated connection ,size=0 + +2025-09-24 23:02:58,810 INFO Connection check task end + +2025-09-24 23:03:01,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:01,810 INFO Connection check task start + +2025-09-24 23:03:01,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:01,810 INFO Out dated connection ,size=0 + +2025-09-24 23:03:01,811 INFO Connection check task end + +2025-09-24 23:03:04,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:04,811 INFO Connection check task start + +2025-09-24 23:03:04,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:04,811 INFO Out dated connection ,size=0 + +2025-09-24 23:03:04,811 INFO Connection check task end + +2025-09-24 23:03:07,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:07,812 INFO Connection check task start + +2025-09-24 23:03:07,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:07,812 INFO Out dated connection ,size=0 + +2025-09-24 23:03:07,812 INFO Connection check task end + +2025-09-24 23:03:10,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:10,812 INFO Connection check task start + +2025-09-24 23:03:10,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:10,812 INFO Out dated connection ,size=0 + +2025-09-24 23:03:10,812 INFO Connection check task end + +2025-09-24 23:03:13,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:13,813 INFO Connection check task start + +2025-09-24 23:03:13,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:13,813 INFO Out dated connection ,size=0 + +2025-09-24 23:03:13,814 INFO Connection check task end + +2025-09-24 23:03:16,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:16,814 INFO Connection check task start + +2025-09-24 23:03:16,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:16,814 INFO Out dated connection ,size=0 + +2025-09-24 23:03:16,814 INFO Connection check task end + +2025-09-24 23:03:19,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:19,815 INFO Connection check task start + +2025-09-24 23:03:19,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:19,815 INFO Out dated connection ,size=0 + +2025-09-24 23:03:19,816 INFO Connection check task end + +2025-09-24 23:03:22,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:22,816 INFO Connection check task start + +2025-09-24 23:03:22,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:22,816 INFO Out dated connection ,size=0 + +2025-09-24 23:03:22,816 INFO Connection check task end + +2025-09-24 23:03:25,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:25,817 INFO Connection check task start + +2025-09-24 23:03:25,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:25,817 INFO Out dated connection ,size=0 + +2025-09-24 23:03:25,817 INFO Connection check task end + +2025-09-24 23:03:28,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:28,817 INFO Connection check task start + +2025-09-24 23:03:28,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:28,818 INFO Out dated connection ,size=0 + +2025-09-24 23:03:28,818 INFO Connection check task end + +2025-09-24 23:03:31,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:31,818 INFO Connection check task start + +2025-09-24 23:03:31,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:31,818 INFO Out dated connection ,size=0 + +2025-09-24 23:03:31,818 INFO Connection check task end + +2025-09-24 23:03:34,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:34,819 INFO Connection check task start + +2025-09-24 23:03:34,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:34,819 INFO Out dated connection ,size=0 + +2025-09-24 23:03:34,819 INFO Connection check task end + +2025-09-24 23:03:37,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:37,821 INFO Connection check task start + +2025-09-24 23:03:37,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:37,821 INFO Out dated connection ,size=0 + +2025-09-24 23:03:37,821 INFO Connection check task end + +2025-09-24 23:03:40,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:40,822 INFO Connection check task start + +2025-09-24 23:03:40,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:40,822 INFO Out dated connection ,size=0 + +2025-09-24 23:03:40,823 INFO Connection check task end + +2025-09-24 23:03:43,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:43,823 INFO Connection check task start + +2025-09-24 23:03:43,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:43,823 INFO Out dated connection ,size=0 + +2025-09-24 23:03:43,823 INFO Connection check task end + +2025-09-24 23:03:46,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:46,824 INFO Connection check task start + +2025-09-24 23:03:46,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:46,825 INFO Out dated connection ,size=0 + +2025-09-24 23:03:46,825 INFO Connection check task end + +2025-09-24 23:03:49,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:49,825 INFO Connection check task start + +2025-09-24 23:03:49,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:49,825 INFO Out dated connection ,size=0 + +2025-09-24 23:03:49,825 INFO Connection check task end + +2025-09-24 23:03:52,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:52,826 INFO Connection check task start + +2025-09-24 23:03:52,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:52,826 INFO Out dated connection ,size=0 + +2025-09-24 23:03:52,826 INFO Connection check task end + +2025-09-24 23:03:55,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:55,826 INFO Connection check task start + +2025-09-24 23:03:55,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:55,827 INFO Out dated connection ,size=0 + +2025-09-24 23:03:55,827 INFO Connection check task end + +2025-09-24 23:03:58,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:03:58,827 INFO Connection check task start + +2025-09-24 23:03:58,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:03:58,827 INFO Out dated connection ,size=0 + +2025-09-24 23:03:58,827 INFO Connection check task end + +2025-09-24 23:04:01,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:01,827 INFO Connection check task start + +2025-09-24 23:04:01,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:01,828 INFO Out dated connection ,size=0 + +2025-09-24 23:04:01,828 INFO Connection check task end + +2025-09-24 23:04:04,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:04,828 INFO Connection check task start + +2025-09-24 23:04:04,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:04,828 INFO Out dated connection ,size=0 + +2025-09-24 23:04:04,828 INFO Connection check task end + +2025-09-24 23:04:07,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:07,829 INFO Connection check task start + +2025-09-24 23:04:07,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:07,829 INFO Out dated connection ,size=0 + +2025-09-24 23:04:07,829 INFO Connection check task end + +2025-09-24 23:04:10,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:10,830 INFO Connection check task start + +2025-09-24 23:04:10,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:10,830 INFO Out dated connection ,size=0 + +2025-09-24 23:04:10,830 INFO Connection check task end + +2025-09-24 23:04:13,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:13,831 INFO Connection check task start + +2025-09-24 23:04:13,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:13,831 INFO Out dated connection ,size=0 + +2025-09-24 23:04:13,831 INFO Connection check task end + +2025-09-24 23:04:16,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:16,832 INFO Connection check task start + +2025-09-24 23:04:16,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:16,832 INFO Out dated connection ,size=0 + +2025-09-24 23:04:16,832 INFO Connection check task end + +2025-09-24 23:04:19,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:19,833 INFO Connection check task start + +2025-09-24 23:04:19,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:19,833 INFO Out dated connection ,size=0 + +2025-09-24 23:04:19,833 INFO Connection check task end + +2025-09-24 23:04:22,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:22,834 INFO Connection check task start + +2025-09-24 23:04:22,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:22,834 INFO Out dated connection ,size=0 + +2025-09-24 23:04:22,834 INFO Connection check task end + +2025-09-24 23:04:25,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:25,834 INFO Connection check task start + +2025-09-24 23:04:25,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:25,835 INFO Out dated connection ,size=0 + +2025-09-24 23:04:25,835 INFO Connection check task end + +2025-09-24 23:04:28,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:28,836 INFO Connection check task start + +2025-09-24 23:04:28,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:28,836 INFO Out dated connection ,size=0 + +2025-09-24 23:04:28,836 INFO Connection check task end + +2025-09-24 23:04:31,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:31,837 INFO Connection check task start + +2025-09-24 23:04:31,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:31,837 INFO Out dated connection ,size=0 + +2025-09-24 23:04:31,837 INFO Connection check task end + +2025-09-24 23:04:34,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:34,837 INFO Connection check task start + +2025-09-24 23:04:34,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:34,838 INFO Out dated connection ,size=0 + +2025-09-24 23:04:34,838 INFO Connection check task end + +2025-09-24 23:04:37,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:37,838 INFO Connection check task start + +2025-09-24 23:04:37,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:37,838 INFO Out dated connection ,size=0 + +2025-09-24 23:04:37,838 INFO Connection check task end + +2025-09-24 23:04:40,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:40,839 INFO Connection check task start + +2025-09-24 23:04:40,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:40,839 INFO Out dated connection ,size=0 + +2025-09-24 23:04:40,839 INFO Connection check task end + +2025-09-24 23:04:43,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:43,840 INFO Connection check task start + +2025-09-24 23:04:43,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:43,840 INFO Out dated connection ,size=0 + +2025-09-24 23:04:43,840 INFO Connection check task end + +2025-09-24 23:04:46,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:46,840 INFO Connection check task start + +2025-09-24 23:04:46,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:46,840 INFO Out dated connection ,size=0 + +2025-09-24 23:04:46,840 INFO Connection check task end + +2025-09-24 23:04:49,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:49,841 INFO Connection check task start + +2025-09-24 23:04:49,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:49,841 INFO Out dated connection ,size=0 + +2025-09-24 23:04:49,841 INFO Connection check task end + +2025-09-24 23:04:52,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:52,842 INFO Connection check task start + +2025-09-24 23:04:52,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:52,842 INFO Out dated connection ,size=0 + +2025-09-24 23:04:52,842 INFO Connection check task end + +2025-09-24 23:04:55,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:55,843 INFO Connection check task start + +2025-09-24 23:04:55,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:55,843 INFO Out dated connection ,size=0 + +2025-09-24 23:04:55,843 INFO Connection check task end + +2025-09-24 23:04:58,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:04:58,843 INFO Connection check task start + +2025-09-24 23:04:58,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:04:58,843 INFO Out dated connection ,size=0 + +2025-09-24 23:04:58,843 INFO Connection check task end + +2025-09-24 23:05:01,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:01,844 INFO Connection check task start + +2025-09-24 23:05:01,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:01,844 INFO Out dated connection ,size=0 + +2025-09-24 23:05:01,844 INFO Connection check task end + +2025-09-24 23:05:04,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:04,845 INFO Connection check task start + +2025-09-24 23:05:04,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:04,846 INFO Out dated connection ,size=0 + +2025-09-24 23:05:04,846 INFO Connection check task end + +2025-09-24 23:05:07,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:07,846 INFO Connection check task start + +2025-09-24 23:05:07,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:07,846 INFO Out dated connection ,size=0 + +2025-09-24 23:05:07,846 INFO Connection check task end + +2025-09-24 23:05:10,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:10,847 INFO Connection check task start + +2025-09-24 23:05:10,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:10,848 INFO Out dated connection ,size=0 + +2025-09-24 23:05:10,848 INFO Connection check task end + +2025-09-24 23:05:13,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:13,849 INFO Connection check task start + +2025-09-24 23:05:13,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:13,849 INFO Out dated connection ,size=0 + +2025-09-24 23:05:13,849 INFO Connection check task end + +2025-09-24 23:05:16,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:16,851 INFO Connection check task start + +2025-09-24 23:05:16,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:16,851 INFO Out dated connection ,size=0 + +2025-09-24 23:05:16,851 INFO Connection check task end + +2025-09-24 23:05:19,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:19,851 INFO Connection check task start + +2025-09-24 23:05:19,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:19,851 INFO Out dated connection ,size=0 + +2025-09-24 23:05:19,851 INFO Connection check task end + +2025-09-24 23:05:22,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:22,852 INFO Connection check task start + +2025-09-24 23:05:22,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:22,852 INFO Out dated connection ,size=0 + +2025-09-24 23:05:22,852 INFO Connection check task end + +2025-09-24 23:05:25,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:25,853 INFO Connection check task start + +2025-09-24 23:05:25,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:25,853 INFO Out dated connection ,size=0 + +2025-09-24 23:05:25,853 INFO Connection check task end + +2025-09-24 23:05:28,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:28,854 INFO Connection check task start + +2025-09-24 23:05:28,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:28,854 INFO Out dated connection ,size=0 + +2025-09-24 23:05:28,854 INFO Connection check task end + +2025-09-24 23:05:31,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:31,855 INFO Connection check task start + +2025-09-24 23:05:31,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:31,855 INFO Out dated connection ,size=0 + +2025-09-24 23:05:31,855 INFO Connection check task end + +2025-09-24 23:05:34,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:34,856 INFO Connection check task start + +2025-09-24 23:05:34,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:34,856 INFO Out dated connection ,size=0 + +2025-09-24 23:05:34,856 INFO Connection check task end + +2025-09-24 23:05:37,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:37,857 INFO Connection check task start + +2025-09-24 23:05:37,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:37,857 INFO Out dated connection ,size=0 + +2025-09-24 23:05:37,857 INFO Connection check task end + +2025-09-24 23:05:40,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:40,857 INFO Connection check task start + +2025-09-24 23:05:40,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:40,858 INFO Out dated connection ,size=0 + +2025-09-24 23:05:40,858 INFO Connection check task end + +2025-09-24 23:05:43,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:43,858 INFO Connection check task start + +2025-09-24 23:05:43,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:43,858 INFO Out dated connection ,size=0 + +2025-09-24 23:05:43,858 INFO Connection check task end + +2025-09-24 23:05:46,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:46,859 INFO Connection check task start + +2025-09-24 23:05:46,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:46,859 INFO Out dated connection ,size=0 + +2025-09-24 23:05:46,859 INFO Connection check task end + +2025-09-24 23:05:49,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:49,860 INFO Connection check task start + +2025-09-24 23:05:49,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:49,860 INFO Out dated connection ,size=0 + +2025-09-24 23:05:49,860 INFO Connection check task end + +2025-09-24 23:05:52,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:52,860 INFO Connection check task start + +2025-09-24 23:05:52,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:52,860 INFO Out dated connection ,size=0 + +2025-09-24 23:05:52,860 INFO Connection check task end + +2025-09-24 23:05:55,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:55,861 INFO Connection check task start + +2025-09-24 23:05:55,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:55,861 INFO Out dated connection ,size=0 + +2025-09-24 23:05:55,861 INFO Connection check task end + +2025-09-24 23:05:58,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:05:58,862 INFO Connection check task start + +2025-09-24 23:05:58,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:05:58,863 INFO Out dated connection ,size=0 + +2025-09-24 23:05:58,863 INFO Connection check task end + +2025-09-24 23:06:01,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:01,864 INFO Connection check task start + +2025-09-24 23:06:01,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:01,864 INFO Out dated connection ,size=0 + +2025-09-24 23:06:01,864 INFO Connection check task end + +2025-09-24 23:06:04,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:04,865 INFO Connection check task start + +2025-09-24 23:06:04,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:04,865 INFO Out dated connection ,size=0 + +2025-09-24 23:06:04,865 INFO Connection check task end + +2025-09-24 23:06:07,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:07,866 INFO Connection check task start + +2025-09-24 23:06:07,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:07,866 INFO Out dated connection ,size=0 + +2025-09-24 23:06:07,866 INFO Connection check task end + +2025-09-24 23:06:10,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:10,866 INFO Connection check task start + +2025-09-24 23:06:10,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:10,866 INFO Out dated connection ,size=0 + +2025-09-24 23:06:10,866 INFO Connection check task end + +2025-09-24 23:06:13,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:13,867 INFO Connection check task start + +2025-09-24 23:06:13,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:13,867 INFO Out dated connection ,size=0 + +2025-09-24 23:06:13,867 INFO Connection check task end + +2025-09-24 23:06:16,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:16,868 INFO Connection check task start + +2025-09-24 23:06:16,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:16,868 INFO Out dated connection ,size=0 + +2025-09-24 23:06:16,868 INFO Connection check task end + +2025-09-24 23:06:19,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:19,869 INFO Connection check task start + +2025-09-24 23:06:19,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:19,869 INFO Out dated connection ,size=0 + +2025-09-24 23:06:19,869 INFO Connection check task end + +2025-09-24 23:06:22,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:22,870 INFO Connection check task start + +2025-09-24 23:06:22,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:22,871 INFO Out dated connection ,size=0 + +2025-09-24 23:06:22,871 INFO Connection check task end + +2025-09-24 23:06:25,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:25,871 INFO Connection check task start + +2025-09-24 23:06:25,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:25,871 INFO Out dated connection ,size=0 + +2025-09-24 23:06:25,871 INFO Connection check task end + +2025-09-24 23:06:28,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:28,871 INFO Connection check task start + +2025-09-24 23:06:28,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:28,871 INFO Out dated connection ,size=0 + +2025-09-24 23:06:28,872 INFO Connection check task end + +2025-09-24 23:06:31,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:31,872 INFO Connection check task start + +2025-09-24 23:06:31,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:31,872 INFO Out dated connection ,size=0 + +2025-09-24 23:06:31,872 INFO Connection check task end + +2025-09-24 23:06:34,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:34,873 INFO Connection check task start + +2025-09-24 23:06:34,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:34,873 INFO Out dated connection ,size=0 + +2025-09-24 23:06:34,873 INFO Connection check task end + +2025-09-24 23:06:37,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:37,873 INFO Connection check task start + +2025-09-24 23:06:37,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:37,874 INFO Out dated connection ,size=0 + +2025-09-24 23:06:37,874 INFO Connection check task end + +2025-09-24 23:06:40,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:40,875 INFO Connection check task start + +2025-09-24 23:06:40,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:40,875 INFO Out dated connection ,size=0 + +2025-09-24 23:06:40,875 INFO Connection check task end + +2025-09-24 23:06:43,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:43,876 INFO Connection check task start + +2025-09-24 23:06:43,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:43,876 INFO Out dated connection ,size=0 + +2025-09-24 23:06:43,876 INFO Connection check task end + +2025-09-24 23:06:46,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:46,877 INFO Connection check task start + +2025-09-24 23:06:46,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:46,878 INFO Out dated connection ,size=0 + +2025-09-24 23:06:46,878 INFO Connection check task end + +2025-09-24 23:06:49,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:49,879 INFO Connection check task start + +2025-09-24 23:06:49,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:49,879 INFO Out dated connection ,size=0 + +2025-09-24 23:06:49,879 INFO Connection check task end + +2025-09-24 23:06:52,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:52,880 INFO Connection check task start + +2025-09-24 23:06:52,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:52,880 INFO Out dated connection ,size=0 + +2025-09-24 23:06:52,880 INFO Connection check task end + +2025-09-24 23:06:55,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:55,881 INFO Connection check task start + +2025-09-24 23:06:55,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:55,881 INFO Out dated connection ,size=0 + +2025-09-24 23:06:55,881 INFO Connection check task end + +2025-09-24 23:06:58,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:06:58,881 INFO Connection check task start + +2025-09-24 23:06:58,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:06:58,881 INFO Out dated connection ,size=0 + +2025-09-24 23:06:58,881 INFO Connection check task end + +2025-09-24 23:07:01,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:01,882 INFO Connection check task start + +2025-09-24 23:07:01,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:01,882 INFO Out dated connection ,size=0 + +2025-09-24 23:07:01,882 INFO Connection check task end + +2025-09-24 23:07:04,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:04,883 INFO Connection check task start + +2025-09-24 23:07:04,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:04,883 INFO Out dated connection ,size=0 + +2025-09-24 23:07:04,884 INFO Connection check task end + +2025-09-24 23:07:07,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:07,884 INFO Connection check task start + +2025-09-24 23:07:07,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:07,884 INFO Out dated connection ,size=0 + +2025-09-24 23:07:07,884 INFO Connection check task end + +2025-09-24 23:07:10,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:10,884 INFO Connection check task start + +2025-09-24 23:07:10,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:10,884 INFO Out dated connection ,size=0 + +2025-09-24 23:07:10,884 INFO Connection check task end + +2025-09-24 23:07:13,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:13,885 INFO Connection check task start + +2025-09-24 23:07:13,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:13,889 INFO Out dated connection ,size=0 + +2025-09-24 23:07:13,889 INFO Connection check task end + +2025-09-24 23:07:16,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:16,890 INFO Connection check task start + +2025-09-24 23:07:16,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:16,890 INFO Out dated connection ,size=0 + +2025-09-24 23:07:16,890 INFO Connection check task end + +2025-09-24 23:07:19,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:19,890 INFO Connection check task start + +2025-09-24 23:07:19,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:19,890 INFO Out dated connection ,size=0 + +2025-09-24 23:07:19,890 INFO Connection check task end + +2025-09-24 23:07:22,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:22,892 INFO Connection check task start + +2025-09-24 23:07:22,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:22,892 INFO Out dated connection ,size=0 + +2025-09-24 23:07:22,892 INFO Connection check task end + +2025-09-24 23:07:25,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:25,893 INFO Connection check task start + +2025-09-24 23:07:25,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:25,894 INFO Out dated connection ,size=0 + +2025-09-24 23:07:25,894 INFO Connection check task end + +2025-09-24 23:07:28,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:28,895 INFO Connection check task start + +2025-09-24 23:07:28,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:28,895 INFO Out dated connection ,size=0 + +2025-09-24 23:07:28,895 INFO Connection check task end + +2025-09-24 23:07:31,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:31,897 INFO Connection check task start + +2025-09-24 23:07:31,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:31,897 INFO Out dated connection ,size=0 + +2025-09-24 23:07:31,897 INFO Connection check task end + +2025-09-24 23:07:34,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:34,898 INFO Connection check task start + +2025-09-24 23:07:34,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:34,899 INFO Out dated connection ,size=0 + +2025-09-24 23:07:34,899 INFO Connection check task end + +2025-09-24 23:07:37,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:37,899 INFO Connection check task start + +2025-09-24 23:07:37,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:37,900 INFO Out dated connection ,size=0 + +2025-09-24 23:07:37,900 INFO Connection check task end + +2025-09-24 23:07:40,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:40,901 INFO Connection check task start + +2025-09-24 23:07:40,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:40,902 INFO Out dated connection ,size=0 + +2025-09-24 23:07:40,902 INFO Connection check task end + +2025-09-24 23:07:43,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:43,902 INFO Connection check task start + +2025-09-24 23:07:43,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:43,902 INFO Out dated connection ,size=0 + +2025-09-24 23:07:43,902 INFO Connection check task end + +2025-09-24 23:07:46,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:46,903 INFO Connection check task start + +2025-09-24 23:07:46,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:46,903 INFO Out dated connection ,size=0 + +2025-09-24 23:07:46,903 INFO Connection check task end + +2025-09-24 23:07:49,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:49,904 INFO Connection check task start + +2025-09-24 23:07:49,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:49,904 INFO Out dated connection ,size=0 + +2025-09-24 23:07:49,904 INFO Connection check task end + +2025-09-24 23:07:52,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:52,905 INFO Connection check task start + +2025-09-24 23:07:52,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:52,905 INFO Out dated connection ,size=0 + +2025-09-24 23:07:52,905 INFO Connection check task end + +2025-09-24 23:07:55,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:55,906 INFO Connection check task start + +2025-09-24 23:07:55,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:55,906 INFO Out dated connection ,size=0 + +2025-09-24 23:07:55,906 INFO Connection check task end + +2025-09-24 23:07:58,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:07:58,907 INFO Connection check task start + +2025-09-24 23:07:58,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:07:58,907 INFO Out dated connection ,size=0 + +2025-09-24 23:07:58,907 INFO Connection check task end + +2025-09-24 23:08:01,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:01,908 INFO Connection check task start + +2025-09-24 23:08:01,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:01,908 INFO Out dated connection ,size=0 + +2025-09-24 23:08:01,908 INFO Connection check task end + +2025-09-24 23:08:04,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:04,909 INFO Connection check task start + +2025-09-24 23:08:04,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:04,910 INFO Out dated connection ,size=0 + +2025-09-24 23:08:04,910 INFO Connection check task end + +2025-09-24 23:08:07,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:07,911 INFO Connection check task start + +2025-09-24 23:08:07,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:07,911 INFO Out dated connection ,size=0 + +2025-09-24 23:08:07,911 INFO Connection check task end + +2025-09-24 23:08:10,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:10,912 INFO Connection check task start + +2025-09-24 23:08:10,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:10,913 INFO Out dated connection ,size=0 + +2025-09-24 23:08:10,913 INFO Connection check task end + +2025-09-24 23:08:13,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:13,913 INFO Connection check task start + +2025-09-24 23:08:13,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:13,913 INFO Out dated connection ,size=0 + +2025-09-24 23:08:13,913 INFO Connection check task end + +2025-09-24 23:08:16,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:16,914 INFO Connection check task start + +2025-09-24 23:08:16,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:16,914 INFO Out dated connection ,size=0 + +2025-09-24 23:08:16,914 INFO Connection check task end + +2025-09-24 23:08:19,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:19,916 INFO Connection check task start + +2025-09-24 23:08:19,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:19,916 INFO Out dated connection ,size=0 + +2025-09-24 23:08:19,916 INFO Connection check task end + +2025-09-24 23:08:22,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:22,917 INFO Connection check task start + +2025-09-24 23:08:22,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:22,917 INFO Out dated connection ,size=0 + +2025-09-24 23:08:22,917 INFO Connection check task end + +2025-09-24 23:08:25,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:25,917 INFO Connection check task start + +2025-09-24 23:08:25,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:25,917 INFO Out dated connection ,size=0 + +2025-09-24 23:08:25,917 INFO Connection check task end + +2025-09-24 23:08:28,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:28,918 INFO Connection check task start + +2025-09-24 23:08:28,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:28,918 INFO Out dated connection ,size=0 + +2025-09-24 23:08:28,918 INFO Connection check task end + +2025-09-24 23:08:31,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:31,918 INFO Connection check task start + +2025-09-24 23:08:31,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:31,919 INFO Out dated connection ,size=0 + +2025-09-24 23:08:31,919 INFO Connection check task end + +2025-09-24 23:08:34,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:34,920 INFO Connection check task start + +2025-09-24 23:08:34,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:34,920 INFO Out dated connection ,size=0 + +2025-09-24 23:08:34,920 INFO Connection check task end + +2025-09-24 23:08:37,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:37,920 INFO Connection check task start + +2025-09-24 23:08:37,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:37,920 INFO Out dated connection ,size=0 + +2025-09-24 23:08:37,921 INFO Connection check task end + +2025-09-24 23:08:40,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:40,921 INFO Connection check task start + +2025-09-24 23:08:40,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:40,921 INFO Out dated connection ,size=0 + +2025-09-24 23:08:40,921 INFO Connection check task end + +2025-09-24 23:08:43,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:43,922 INFO Connection check task start + +2025-09-24 23:08:43,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:43,922 INFO Out dated connection ,size=0 + +2025-09-24 23:08:43,922 INFO Connection check task end + +2025-09-24 23:08:46,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:46,923 INFO Connection check task start + +2025-09-24 23:08:46,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:46,923 INFO Out dated connection ,size=0 + +2025-09-24 23:08:46,923 INFO Connection check task end + +2025-09-24 23:08:49,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:49,924 INFO Connection check task start + +2025-09-24 23:08:49,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:49,924 INFO Out dated connection ,size=0 + +2025-09-24 23:08:49,924 INFO Connection check task end + +2025-09-24 23:08:52,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:52,924 INFO Connection check task start + +2025-09-24 23:08:52,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:52,924 INFO Out dated connection ,size=0 + +2025-09-24 23:08:52,924 INFO Connection check task end + +2025-09-24 23:08:55,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:55,924 INFO Connection check task start + +2025-09-24 23:08:55,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:55,925 INFO Out dated connection ,size=0 + +2025-09-24 23:08:55,925 INFO Connection check task end + +2025-09-24 23:08:58,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:08:58,926 INFO Connection check task start + +2025-09-24 23:08:58,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:08:58,926 INFO Out dated connection ,size=0 + +2025-09-24 23:08:58,926 INFO Connection check task end + +2025-09-24 23:09:01,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:01,926 INFO Connection check task start + +2025-09-24 23:09:01,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:01,927 INFO Out dated connection ,size=0 + +2025-09-24 23:09:01,927 INFO Connection check task end + +2025-09-24 23:09:04,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:04,928 INFO Connection check task start + +2025-09-24 23:09:04,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:04,928 INFO Out dated connection ,size=0 + +2025-09-24 23:09:04,928 INFO Connection check task end + +2025-09-24 23:09:07,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:07,928 INFO Connection check task start + +2025-09-24 23:09:07,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:07,928 INFO Out dated connection ,size=0 + +2025-09-24 23:09:07,928 INFO Connection check task end + +2025-09-24 23:09:10,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:10,929 INFO Connection check task start + +2025-09-24 23:09:10,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:10,929 INFO Out dated connection ,size=0 + +2025-09-24 23:09:10,929 INFO Connection check task end + +2025-09-24 23:09:13,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:13,930 INFO Connection check task start + +2025-09-24 23:09:13,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:13,930 INFO Out dated connection ,size=0 + +2025-09-24 23:09:13,930 INFO Connection check task end + +2025-09-24 23:09:16,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:16,931 INFO Connection check task start + +2025-09-24 23:09:16,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:16,931 INFO Out dated connection ,size=0 + +2025-09-24 23:09:16,931 INFO Connection check task end + +2025-09-24 23:09:19,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:19,932 INFO Connection check task start + +2025-09-24 23:09:19,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:19,932 INFO Out dated connection ,size=0 + +2025-09-24 23:09:19,932 INFO Connection check task end + +2025-09-24 23:09:22,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:22,933 INFO Connection check task start + +2025-09-24 23:09:22,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:22,934 INFO Out dated connection ,size=0 + +2025-09-24 23:09:22,934 INFO Connection check task end + +2025-09-24 23:09:25,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:25,934 INFO Connection check task start + +2025-09-24 23:09:25,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:25,934 INFO Out dated connection ,size=0 + +2025-09-24 23:09:25,934 INFO Connection check task end + +2025-09-24 23:09:28,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:28,935 INFO Connection check task start + +2025-09-24 23:09:28,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:28,935 INFO Out dated connection ,size=0 + +2025-09-24 23:09:28,935 INFO Connection check task end + +2025-09-24 23:09:31,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:31,936 INFO Connection check task start + +2025-09-24 23:09:31,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:31,937 INFO Out dated connection ,size=0 + +2025-09-24 23:09:31,937 INFO Connection check task end + +2025-09-24 23:09:34,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:34,937 INFO Connection check task start + +2025-09-24 23:09:34,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:34,937 INFO Out dated connection ,size=0 + +2025-09-24 23:09:34,937 INFO Connection check task end + +2025-09-24 23:09:37,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:37,938 INFO Connection check task start + +2025-09-24 23:09:37,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:37,939 INFO Out dated connection ,size=0 + +2025-09-24 23:09:37,939 INFO Connection check task end + +2025-09-24 23:09:40,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:40,939 INFO Connection check task start + +2025-09-24 23:09:40,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:40,939 INFO Out dated connection ,size=0 + +2025-09-24 23:09:40,939 INFO Connection check task end + +2025-09-24 23:09:43,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:43,939 INFO Connection check task start + +2025-09-24 23:09:43,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:43,940 INFO Out dated connection ,size=0 + +2025-09-24 23:09:43,940 INFO Connection check task end + +2025-09-24 23:09:46,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:46,940 INFO Connection check task start + +2025-09-24 23:09:46,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:46,940 INFO Out dated connection ,size=0 + +2025-09-24 23:09:46,940 INFO Connection check task end + +2025-09-24 23:09:49,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:49,941 INFO Connection check task start + +2025-09-24 23:09:49,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:49,941 INFO Out dated connection ,size=0 + +2025-09-24 23:09:49,941 INFO Connection check task end + +2025-09-24 23:09:52,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:52,941 INFO Connection check task start + +2025-09-24 23:09:52,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:52,942 INFO Out dated connection ,size=0 + +2025-09-24 23:09:52,942 INFO Connection check task end + +2025-09-24 23:09:55,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:55,942 INFO Connection check task start + +2025-09-24 23:09:55,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:55,943 INFO Out dated connection ,size=0 + +2025-09-24 23:09:55,943 INFO Connection check task end + +2025-09-24 23:09:58,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:09:58,943 INFO Connection check task start + +2025-09-24 23:09:58,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:09:58,943 INFO Out dated connection ,size=0 + +2025-09-24 23:09:58,943 INFO Connection check task end + +2025-09-24 23:10:01,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:01,943 INFO Connection check task start + +2025-09-24 23:10:01,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:01,943 INFO Out dated connection ,size=0 + +2025-09-24 23:10:01,943 INFO Connection check task end + +2025-09-24 23:10:04,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:04,944 INFO Connection check task start + +2025-09-24 23:10:04,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:04,944 INFO Out dated connection ,size=0 + +2025-09-24 23:10:04,944 INFO Connection check task end + +2025-09-24 23:10:07,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:07,944 INFO Connection check task start + +2025-09-24 23:10:07,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:07,944 INFO Out dated connection ,size=0 + +2025-09-24 23:10:07,944 INFO Connection check task end + +2025-09-24 23:10:10,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:10,945 INFO Connection check task start + +2025-09-24 23:10:10,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:10,945 INFO Out dated connection ,size=0 + +2025-09-24 23:10:10,945 INFO Connection check task end + +2025-09-24 23:10:13,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:13,946 INFO Connection check task start + +2025-09-24 23:10:13,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:13,946 INFO Out dated connection ,size=0 + +2025-09-24 23:10:13,946 INFO Connection check task end + +2025-09-24 23:10:16,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:16,947 INFO Connection check task start + +2025-09-24 23:10:16,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:16,948 INFO Out dated connection ,size=0 + +2025-09-24 23:10:16,948 INFO Connection check task end + +2025-09-24 23:10:19,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:19,948 INFO Connection check task start + +2025-09-24 23:10:19,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:19,949 INFO Out dated connection ,size=0 + +2025-09-24 23:10:19,949 INFO Connection check task end + +2025-09-24 23:10:22,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:22,949 INFO Connection check task start + +2025-09-24 23:10:22,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:22,949 INFO Out dated connection ,size=0 + +2025-09-24 23:10:22,949 INFO Connection check task end + +2025-09-24 23:10:25,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:25,950 INFO Connection check task start + +2025-09-24 23:10:25,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:25,950 INFO Out dated connection ,size=0 + +2025-09-24 23:10:25,950 INFO Connection check task end + +2025-09-24 23:10:28,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:28,951 INFO Connection check task start + +2025-09-24 23:10:28,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:28,952 INFO Out dated connection ,size=0 + +2025-09-24 23:10:28,952 INFO Connection check task end + +2025-09-24 23:10:31,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:31,952 INFO Connection check task start + +2025-09-24 23:10:31,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:31,952 INFO Out dated connection ,size=0 + +2025-09-24 23:10:31,952 INFO Connection check task end + +2025-09-24 23:10:34,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:34,953 INFO Connection check task start + +2025-09-24 23:10:34,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:34,953 INFO Out dated connection ,size=0 + +2025-09-24 23:10:34,953 INFO Connection check task end + +2025-09-24 23:10:37,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:37,954 INFO Connection check task start + +2025-09-24 23:10:37,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:37,954 INFO Out dated connection ,size=0 + +2025-09-24 23:10:37,955 INFO Connection check task end + +2025-09-24 23:10:40,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:40,955 INFO Connection check task start + +2025-09-24 23:10:40,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:40,955 INFO Out dated connection ,size=0 + +2025-09-24 23:10:40,955 INFO Connection check task end + +2025-09-24 23:10:43,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:43,955 INFO Connection check task start + +2025-09-24 23:10:43,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:43,955 INFO Out dated connection ,size=0 + +2025-09-24 23:10:43,956 INFO Connection check task end + +2025-09-24 23:10:46,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:46,956 INFO Connection check task start + +2025-09-24 23:10:46,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:46,958 INFO Out dated connection ,size=0 + +2025-09-24 23:10:46,959 INFO Connection check task end + +2025-09-24 23:10:49,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:49,959 INFO Connection check task start + +2025-09-24 23:10:49,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:49,960 INFO Out dated connection ,size=0 + +2025-09-24 23:10:49,960 INFO Connection check task end + +2025-09-24 23:10:52,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:52,961 INFO Connection check task start + +2025-09-24 23:10:52,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:52,961 INFO Out dated connection ,size=0 + +2025-09-24 23:10:52,961 INFO Connection check task end + +2025-09-24 23:10:55,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:55,962 INFO Connection check task start + +2025-09-24 23:10:55,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:55,962 INFO Out dated connection ,size=0 + +2025-09-24 23:10:55,962 INFO Connection check task end + +2025-09-24 23:10:58,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:10:58,963 INFO Connection check task start + +2025-09-24 23:10:58,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:10:58,963 INFO Out dated connection ,size=0 + +2025-09-24 23:10:58,963 INFO Connection check task end + +2025-09-24 23:11:01,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:01,964 INFO Connection check task start + +2025-09-24 23:11:01,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:01,964 INFO Out dated connection ,size=0 + +2025-09-24 23:11:01,964 INFO Connection check task end + +2025-09-24 23:11:04,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:04,964 INFO Connection check task start + +2025-09-24 23:11:04,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:04,964 INFO Out dated connection ,size=0 + +2025-09-24 23:11:04,965 INFO Connection check task end + +2025-09-24 23:11:07,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:07,965 INFO Connection check task start + +2025-09-24 23:11:07,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:07,965 INFO Out dated connection ,size=0 + +2025-09-24 23:11:07,965 INFO Connection check task end + +2025-09-24 23:11:10,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:10,966 INFO Connection check task start + +2025-09-24 23:11:10,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:10,966 INFO Out dated connection ,size=0 + +2025-09-24 23:11:10,966 INFO Connection check task end + +2025-09-24 23:11:13,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:13,967 INFO Connection check task start + +2025-09-24 23:11:13,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:13,967 INFO Out dated connection ,size=0 + +2025-09-24 23:11:13,967 INFO Connection check task end + +2025-09-24 23:11:16,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:16,968 INFO Connection check task start + +2025-09-24 23:11:16,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:16,968 INFO Out dated connection ,size=0 + +2025-09-24 23:11:16,968 INFO Connection check task end + +2025-09-24 23:11:19,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:19,969 INFO Connection check task start + +2025-09-24 23:11:19,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:19,969 INFO Out dated connection ,size=0 + +2025-09-24 23:11:19,969 INFO Connection check task end + +2025-09-24 23:11:22,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:22,970 INFO Connection check task start + +2025-09-24 23:11:22,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:22,971 INFO Out dated connection ,size=0 + +2025-09-24 23:11:22,971 INFO Connection check task end + +2025-09-24 23:11:25,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:25,971 INFO Connection check task start + +2025-09-24 23:11:25,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:25,971 INFO Out dated connection ,size=0 + +2025-09-24 23:11:25,971 INFO Connection check task end + +2025-09-24 23:11:28,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:28,971 INFO Connection check task start + +2025-09-24 23:11:28,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:28,972 INFO Out dated connection ,size=0 + +2025-09-24 23:11:28,972 INFO Connection check task end + +2025-09-24 23:11:31,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:31,972 INFO Connection check task start + +2025-09-24 23:11:31,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:31,972 INFO Out dated connection ,size=0 + +2025-09-24 23:11:31,972 INFO Connection check task end + +2025-09-24 23:11:34,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:34,973 INFO Connection check task start + +2025-09-24 23:11:34,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:34,973 INFO Out dated connection ,size=0 + +2025-09-24 23:11:34,973 INFO Connection check task end + +2025-09-24 23:11:37,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:37,973 INFO Connection check task start + +2025-09-24 23:11:37,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:37,973 INFO Out dated connection ,size=0 + +2025-09-24 23:11:37,973 INFO Connection check task end + +2025-09-24 23:11:40,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:40,974 INFO Connection check task start + +2025-09-24 23:11:40,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:40,974 INFO Out dated connection ,size=0 + +2025-09-24 23:11:40,974 INFO Connection check task end + +2025-09-24 23:11:43,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:43,974 INFO Connection check task start + +2025-09-24 23:11:43,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:43,975 INFO Out dated connection ,size=0 + +2025-09-24 23:11:43,975 INFO Connection check task end + +2025-09-24 23:11:46,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:46,976 INFO Connection check task start + +2025-09-24 23:11:46,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:46,976 INFO Out dated connection ,size=0 + +2025-09-24 23:11:46,976 INFO Connection check task end + +2025-09-24 23:11:49,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:49,977 INFO Connection check task start + +2025-09-24 23:11:49,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:49,977 INFO Out dated connection ,size=0 + +2025-09-24 23:11:49,977 INFO Connection check task end + +2025-09-24 23:11:52,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:52,978 INFO Connection check task start + +2025-09-24 23:11:52,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:52,978 INFO Out dated connection ,size=0 + +2025-09-24 23:11:52,978 INFO Connection check task end + +2025-09-24 23:11:55,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:55,978 INFO Connection check task start + +2025-09-24 23:11:55,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:55,978 INFO Out dated connection ,size=0 + +2025-09-24 23:11:55,978 INFO Connection check task end + +2025-09-24 23:11:58,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:11:58,979 INFO Connection check task start + +2025-09-24 23:11:58,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:11:58,979 INFO Out dated connection ,size=0 + +2025-09-24 23:11:58,979 INFO Connection check task end + +2025-09-24 23:12:01,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:01,979 INFO Connection check task start + +2025-09-24 23:12:01,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:01,979 INFO Out dated connection ,size=0 + +2025-09-24 23:12:01,980 INFO Connection check task end + +2025-09-24 23:12:04,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:04,980 INFO Connection check task start + +2025-09-24 23:12:04,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:04,980 INFO Out dated connection ,size=0 + +2025-09-24 23:12:04,980 INFO Connection check task end + +2025-09-24 23:12:07,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:07,981 INFO Connection check task start + +2025-09-24 23:12:07,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:07,981 INFO Out dated connection ,size=0 + +2025-09-24 23:12:07,981 INFO Connection check task end + +2025-09-24 23:12:10,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:10,983 INFO Connection check task start + +2025-09-24 23:12:10,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:10,983 INFO Out dated connection ,size=0 + +2025-09-24 23:12:10,983 INFO Connection check task end + +2025-09-24 23:12:13,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:13,984 INFO Connection check task start + +2025-09-24 23:12:13,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:13,984 INFO Out dated connection ,size=0 + +2025-09-24 23:12:13,984 INFO Connection check task end + +2025-09-24 23:12:16,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:16,984 INFO Connection check task start + +2025-09-24 23:12:16,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:16,985 INFO Out dated connection ,size=0 + +2025-09-24 23:12:16,985 INFO Connection check task end + +2025-09-24 23:12:19,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:19,985 INFO Connection check task start + +2025-09-24 23:12:19,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:19,985 INFO Out dated connection ,size=0 + +2025-09-24 23:12:19,985 INFO Connection check task end + +2025-09-24 23:12:22,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:22,986 INFO Connection check task start + +2025-09-24 23:12:22,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:22,986 INFO Out dated connection ,size=0 + +2025-09-24 23:12:22,986 INFO Connection check task end + +2025-09-24 23:12:25,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:25,987 INFO Connection check task start + +2025-09-24 23:12:25,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:25,987 INFO Out dated connection ,size=0 + +2025-09-24 23:12:25,987 INFO Connection check task end + +2025-09-24 23:12:28,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:28,987 INFO Connection check task start + +2025-09-24 23:12:28,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:28,988 INFO Out dated connection ,size=0 + +2025-09-24 23:12:28,988 INFO Connection check task end + +2025-09-24 23:12:31,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:31,988 INFO Connection check task start + +2025-09-24 23:12:31,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:31,988 INFO Out dated connection ,size=0 + +2025-09-24 23:12:31,989 INFO Connection check task end + +2025-09-24 23:12:34,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:34,989 INFO Connection check task start + +2025-09-24 23:12:34,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:34,989 INFO Out dated connection ,size=0 + +2025-09-24 23:12:34,989 INFO Connection check task end + +2025-09-24 23:12:37,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:37,990 INFO Connection check task start + +2025-09-24 23:12:37,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:37,991 INFO Out dated connection ,size=0 + +2025-09-24 23:12:37,991 INFO Connection check task end + +2025-09-24 23:12:40,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:40,991 INFO Connection check task start + +2025-09-24 23:12:40,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:40,991 INFO Out dated connection ,size=0 + +2025-09-24 23:12:40,991 INFO Connection check task end + +2025-09-24 23:12:43,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:43,992 INFO Connection check task start + +2025-09-24 23:12:43,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:43,992 INFO Out dated connection ,size=0 + +2025-09-24 23:12:43,992 INFO Connection check task end + +2025-09-24 23:12:46,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:46,993 INFO Connection check task start + +2025-09-24 23:12:46,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:46,994 INFO Out dated connection ,size=0 + +2025-09-24 23:12:46,994 INFO Connection check task end + +2025-09-24 23:12:49,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:49,994 INFO Connection check task start + +2025-09-24 23:12:49,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:49,994 INFO Out dated connection ,size=0 + +2025-09-24 23:12:49,994 INFO Connection check task end + +2025-09-24 23:12:52,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:52,994 INFO Connection check task start + +2025-09-24 23:12:52,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:52,995 INFO Out dated connection ,size=0 + +2025-09-24 23:12:52,995 INFO Connection check task end + +2025-09-24 23:12:55,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:55,996 INFO Connection check task start + +2025-09-24 23:12:55,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:55,996 INFO Out dated connection ,size=0 + +2025-09-24 23:12:55,996 INFO Connection check task end + +2025-09-24 23:12:58,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:12:58,997 INFO Connection check task start + +2025-09-24 23:12:58,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:12:58,998 INFO Out dated connection ,size=0 + +2025-09-24 23:12:58,998 INFO Connection check task end + +2025-09-24 23:13:01,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:01,998 INFO Connection check task start + +2025-09-24 23:13:01,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:01,998 INFO Out dated connection ,size=0 + +2025-09-24 23:13:01,998 INFO Connection check task end + +2025-09-24 23:13:04,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:04,999 INFO Connection check task start + +2025-09-24 23:13:04,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:05,000 INFO Out dated connection ,size=0 + +2025-09-24 23:13:05,000 INFO Connection check task end + +2025-09-24 23:13:07,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:08,000 INFO Connection check task start + +2025-09-24 23:13:08,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:08,000 INFO Out dated connection ,size=0 + +2025-09-24 23:13:08,000 INFO Connection check task end + +2025-09-24 23:13:10,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:11,001 INFO Connection check task start + +2025-09-24 23:13:11,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:11,001 INFO Out dated connection ,size=0 + +2025-09-24 23:13:11,001 INFO Connection check task end + +2025-09-24 23:13:13,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:14,002 INFO Connection check task start + +2025-09-24 23:13:14,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:14,002 INFO Out dated connection ,size=0 + +2025-09-24 23:13:14,002 INFO Connection check task end + +2025-09-24 23:13:16,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:17,003 INFO Connection check task start + +2025-09-24 23:13:17,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:17,003 INFO Out dated connection ,size=0 + +2025-09-24 23:13:17,003 INFO Connection check task end + +2025-09-24 23:13:19,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:20,004 INFO Connection check task start + +2025-09-24 23:13:20,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:20,004 INFO Out dated connection ,size=0 + +2025-09-24 23:13:20,004 INFO Connection check task end + +2025-09-24 23:13:22,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:23,005 INFO Connection check task start + +2025-09-24 23:13:23,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:23,005 INFO Out dated connection ,size=0 + +2025-09-24 23:13:23,005 INFO Connection check task end + +2025-09-24 23:13:25,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:26,005 INFO Connection check task start + +2025-09-24 23:13:26,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:26,005 INFO Out dated connection ,size=0 + +2025-09-24 23:13:26,005 INFO Connection check task end + +2025-09-24 23:13:28,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:29,005 INFO Connection check task start + +2025-09-24 23:13:29,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:29,006 INFO Out dated connection ,size=0 + +2025-09-24 23:13:29,006 INFO Connection check task end + +2025-09-24 23:13:31,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:32,006 INFO Connection check task start + +2025-09-24 23:13:32,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:32,006 INFO Out dated connection ,size=0 + +2025-09-24 23:13:32,006 INFO Connection check task end + +2025-09-24 23:13:34,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:35,006 INFO Connection check task start + +2025-09-24 23:13:35,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:35,007 INFO Out dated connection ,size=0 + +2025-09-24 23:13:35,007 INFO Connection check task end + +2025-09-24 23:13:37,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:38,007 INFO Connection check task start + +2025-09-24 23:13:38,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:38,008 INFO Out dated connection ,size=0 + +2025-09-24 23:13:38,008 INFO Connection check task end + +2025-09-24 23:13:40,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:41,009 INFO Connection check task start + +2025-09-24 23:13:41,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:41,009 INFO Out dated connection ,size=0 + +2025-09-24 23:13:41,009 INFO Connection check task end + +2025-09-24 23:13:43,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:44,009 INFO Connection check task start + +2025-09-24 23:13:44,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:44,009 INFO Out dated connection ,size=0 + +2025-09-24 23:13:44,009 INFO Connection check task end + +2025-09-24 23:13:46,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:47,010 INFO Connection check task start + +2025-09-24 23:13:47,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:47,010 INFO Out dated connection ,size=0 + +2025-09-24 23:13:47,010 INFO Connection check task end + +2025-09-24 23:13:49,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:50,011 INFO Connection check task start + +2025-09-24 23:13:50,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:50,012 INFO Out dated connection ,size=0 + +2025-09-24 23:13:50,012 INFO Connection check task end + +2025-09-24 23:13:52,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:53,012 INFO Connection check task start + +2025-09-24 23:13:53,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:53,012 INFO Out dated connection ,size=0 + +2025-09-24 23:13:53,012 INFO Connection check task end + +2025-09-24 23:13:55,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:56,013 INFO Connection check task start + +2025-09-24 23:13:56,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:56,013 INFO Out dated connection ,size=0 + +2025-09-24 23:13:56,014 INFO Connection check task end + +2025-09-24 23:13:58,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:13:59,015 INFO Connection check task start + +2025-09-24 23:13:59,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:13:59,016 INFO Out dated connection ,size=0 + +2025-09-24 23:13:59,016 INFO Connection check task end + +2025-09-24 23:14:01,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:02,017 INFO Connection check task start + +2025-09-24 23:14:02,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:02,017 INFO Out dated connection ,size=0 + +2025-09-24 23:14:02,017 INFO Connection check task end + +2025-09-24 23:14:04,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:05,017 INFO Connection check task start + +2025-09-24 23:14:05,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:05,018 INFO Out dated connection ,size=0 + +2025-09-24 23:14:05,018 INFO Connection check task end + +2025-09-24 23:14:07,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:08,018 INFO Connection check task start + +2025-09-24 23:14:08,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:08,018 INFO Out dated connection ,size=0 + +2025-09-24 23:14:08,018 INFO Connection check task end + +2025-09-24 23:14:10,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:11,018 INFO Connection check task start + +2025-09-24 23:14:11,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:11,019 INFO Out dated connection ,size=0 + +2025-09-24 23:14:11,019 INFO Connection check task end + +2025-09-24 23:14:13,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:14,019 INFO Connection check task start + +2025-09-24 23:14:14,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:14,019 INFO Out dated connection ,size=0 + +2025-09-24 23:14:14,019 INFO Connection check task end + +2025-09-24 23:14:16,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:17,019 INFO Connection check task start + +2025-09-24 23:14:17,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:17,020 INFO Out dated connection ,size=0 + +2025-09-24 23:14:17,020 INFO Connection check task end + +2025-09-24 23:14:19,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:20,020 INFO Connection check task start + +2025-09-24 23:14:20,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:20,020 INFO Out dated connection ,size=0 + +2025-09-24 23:14:20,020 INFO Connection check task end + +2025-09-24 23:14:22,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:23,021 INFO Connection check task start + +2025-09-24 23:14:23,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:23,021 INFO Out dated connection ,size=0 + +2025-09-24 23:14:23,021 INFO Connection check task end + +2025-09-24 23:14:25,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:26,022 INFO Connection check task start + +2025-09-24 23:14:26,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:26,022 INFO Out dated connection ,size=0 + +2025-09-24 23:14:26,022 INFO Connection check task end + +2025-09-24 23:14:28,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:29,023 INFO Connection check task start + +2025-09-24 23:14:29,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:29,024 INFO Out dated connection ,size=0 + +2025-09-24 23:14:29,024 INFO Connection check task end + +2025-09-24 23:14:31,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:32,024 INFO Connection check task start + +2025-09-24 23:14:32,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:32,024 INFO Out dated connection ,size=0 + +2025-09-24 23:14:32,024 INFO Connection check task end + +2025-09-24 23:14:34,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:35,025 INFO Connection check task start + +2025-09-24 23:14:35,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:35,025 INFO Out dated connection ,size=0 + +2025-09-24 23:14:35,025 INFO Connection check task end + +2025-09-24 23:14:37,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:38,026 INFO Connection check task start + +2025-09-24 23:14:38,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:38,026 INFO Out dated connection ,size=0 + +2025-09-24 23:14:38,026 INFO Connection check task end + +2025-09-24 23:14:40,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:41,027 INFO Connection check task start + +2025-09-24 23:14:41,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:41,027 INFO Out dated connection ,size=0 + +2025-09-24 23:14:41,027 INFO Connection check task end + +2025-09-24 23:14:43,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:44,028 INFO Connection check task start + +2025-09-24 23:14:44,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:44,029 INFO Out dated connection ,size=0 + +2025-09-24 23:14:44,029 INFO Connection check task end + +2025-09-24 23:14:46,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:47,029 INFO Connection check task start + +2025-09-24 23:14:47,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:47,029 INFO Out dated connection ,size=0 + +2025-09-24 23:14:47,029 INFO Connection check task end + +2025-09-24 23:14:49,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:50,030 INFO Connection check task start + +2025-09-24 23:14:50,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:50,030 INFO Out dated connection ,size=0 + +2025-09-24 23:14:50,030 INFO Connection check task end + +2025-09-24 23:14:52,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:53,031 INFO Connection check task start + +2025-09-24 23:14:53,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:53,031 INFO Out dated connection ,size=0 + +2025-09-24 23:14:53,031 INFO Connection check task end + +2025-09-24 23:14:55,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:56,032 INFO Connection check task start + +2025-09-24 23:14:56,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:56,032 INFO Out dated connection ,size=0 + +2025-09-24 23:14:56,032 INFO Connection check task end + +2025-09-24 23:14:58,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:14:59,033 INFO Connection check task start + +2025-09-24 23:14:59,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:14:59,033 INFO Out dated connection ,size=0 + +2025-09-24 23:14:59,033 INFO Connection check task end + +2025-09-24 23:15:01,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:02,036 INFO Connection check task start + +2025-09-24 23:15:02,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:02,037 INFO Out dated connection ,size=0 + +2025-09-24 23:15:02,037 INFO Connection check task end + +2025-09-24 23:15:04,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:05,037 INFO Connection check task start + +2025-09-24 23:15:05,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:05,038 INFO Out dated connection ,size=0 + +2025-09-24 23:15:05,038 INFO Connection check task end + +2025-09-24 23:15:07,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:08,039 INFO Connection check task start + +2025-09-24 23:15:08,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:08,039 INFO Out dated connection ,size=0 + +2025-09-24 23:15:08,039 INFO Connection check task end + +2025-09-24 23:15:10,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:11,041 INFO Connection check task start + +2025-09-24 23:15:11,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:11,041 INFO Out dated connection ,size=0 + +2025-09-24 23:15:11,041 INFO Connection check task end + +2025-09-24 23:15:13,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:14,042 INFO Connection check task start + +2025-09-24 23:15:14,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:14,042 INFO Out dated connection ,size=0 + +2025-09-24 23:15:14,042 INFO Connection check task end + +2025-09-24 23:15:16,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:17,043 INFO Connection check task start + +2025-09-24 23:15:17,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:17,044 INFO Out dated connection ,size=0 + +2025-09-24 23:15:17,044 INFO Connection check task end + +2025-09-24 23:15:19,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:20,044 INFO Connection check task start + +2025-09-24 23:15:20,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:20,044 INFO Out dated connection ,size=0 + +2025-09-24 23:15:20,044 INFO Connection check task end + +2025-09-24 23:15:22,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:23,045 INFO Connection check task start + +2025-09-24 23:15:23,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:23,046 INFO Out dated connection ,size=0 + +2025-09-24 23:15:23,046 INFO Connection check task end + +2025-09-24 23:15:25,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:26,046 INFO Connection check task start + +2025-09-24 23:15:26,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:26,046 INFO Out dated connection ,size=0 + +2025-09-24 23:15:26,046 INFO Connection check task end + +2025-09-24 23:15:28,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:29,047 INFO Connection check task start + +2025-09-24 23:15:29,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:29,047 INFO Out dated connection ,size=0 + +2025-09-24 23:15:29,047 INFO Connection check task end + +2025-09-24 23:15:31,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:32,048 INFO Connection check task start + +2025-09-24 23:15:32,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:32,048 INFO Out dated connection ,size=0 + +2025-09-24 23:15:32,048 INFO Connection check task end + +2025-09-24 23:15:34,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:35,048 INFO Connection check task start + +2025-09-24 23:15:35,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:35,048 INFO Out dated connection ,size=0 + +2025-09-24 23:15:35,048 INFO Connection check task end + +2025-09-24 23:15:37,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:38,048 INFO Connection check task start + +2025-09-24 23:15:38,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:38,049 INFO Out dated connection ,size=0 + +2025-09-24 23:15:38,049 INFO Connection check task end + +2025-09-24 23:15:40,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:41,049 INFO Connection check task start + +2025-09-24 23:15:41,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:41,049 INFO Out dated connection ,size=0 + +2025-09-24 23:15:41,049 INFO Connection check task end + +2025-09-24 23:15:43,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:44,050 INFO Connection check task start + +2025-09-24 23:15:44,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:44,051 INFO Out dated connection ,size=0 + +2025-09-24 23:15:44,051 INFO Connection check task end + +2025-09-24 23:15:46,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:47,052 INFO Connection check task start + +2025-09-24 23:15:47,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:47,052 INFO Out dated connection ,size=0 + +2025-09-24 23:15:47,052 INFO Connection check task end + +2025-09-24 23:15:49,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:50,053 INFO Connection check task start + +2025-09-24 23:15:50,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:50,053 INFO Out dated connection ,size=0 + +2025-09-24 23:15:50,053 INFO Connection check task end + +2025-09-24 23:15:52,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:53,054 INFO Connection check task start + +2025-09-24 23:15:53,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:53,054 INFO Out dated connection ,size=0 + +2025-09-24 23:15:53,054 INFO Connection check task end + +2025-09-24 23:15:55,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:56,055 INFO Connection check task start + +2025-09-24 23:15:56,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:56,055 INFO Out dated connection ,size=0 + +2025-09-24 23:15:56,055 INFO Connection check task end + +2025-09-24 23:15:58,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:15:59,055 INFO Connection check task start + +2025-09-24 23:15:59,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:15:59,056 INFO Out dated connection ,size=0 + +2025-09-24 23:15:59,056 INFO Connection check task end + +2025-09-24 23:16:01,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:02,056 INFO Connection check task start + +2025-09-24 23:16:02,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:02,056 INFO Out dated connection ,size=0 + +2025-09-24 23:16:02,056 INFO Connection check task end + +2025-09-24 23:16:04,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:05,057 INFO Connection check task start + +2025-09-24 23:16:05,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:05,057 INFO Out dated connection ,size=0 + +2025-09-24 23:16:05,057 INFO Connection check task end + +2025-09-24 23:16:07,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:08,058 INFO Connection check task start + +2025-09-24 23:16:08,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:08,058 INFO Out dated connection ,size=0 + +2025-09-24 23:16:08,058 INFO Connection check task end + +2025-09-24 23:16:10,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:11,059 INFO Connection check task start + +2025-09-24 23:16:11,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:11,059 INFO Out dated connection ,size=0 + +2025-09-24 23:16:11,059 INFO Connection check task end + +2025-09-24 23:16:13,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:14,059 INFO Connection check task start + +2025-09-24 23:16:14,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:14,059 INFO Out dated connection ,size=0 + +2025-09-24 23:16:14,059 INFO Connection check task end + +2025-09-24 23:16:16,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:17,060 INFO Connection check task start + +2025-09-24 23:16:17,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:17,060 INFO Out dated connection ,size=0 + +2025-09-24 23:16:17,060 INFO Connection check task end + +2025-09-24 23:16:19,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:20,061 INFO Connection check task start + +2025-09-24 23:16:20,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:20,061 INFO Out dated connection ,size=0 + +2025-09-24 23:16:20,061 INFO Connection check task end + +2025-09-24 23:16:22,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:23,061 INFO Connection check task start + +2025-09-24 23:16:23,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:23,062 INFO Out dated connection ,size=0 + +2025-09-24 23:16:23,062 INFO Connection check task end + +2025-09-24 23:16:25,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:26,062 INFO Connection check task start + +2025-09-24 23:16:26,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:26,062 INFO Out dated connection ,size=0 + +2025-09-24 23:16:26,062 INFO Connection check task end + +2025-09-24 23:16:28,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:29,063 INFO Connection check task start + +2025-09-24 23:16:29,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:29,063 INFO Out dated connection ,size=0 + +2025-09-24 23:16:29,063 INFO Connection check task end + +2025-09-24 23:16:31,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:32,063 INFO Connection check task start + +2025-09-24 23:16:32,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:32,063 INFO Out dated connection ,size=0 + +2025-09-24 23:16:32,063 INFO Connection check task end + +2025-09-24 23:16:34,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:35,064 INFO Connection check task start + +2025-09-24 23:16:35,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:35,064 INFO Out dated connection ,size=0 + +2025-09-24 23:16:35,064 INFO Connection check task end + +2025-09-24 23:16:37,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:38,064 INFO Connection check task start + +2025-09-24 23:16:38,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:38,065 INFO Out dated connection ,size=0 + +2025-09-24 23:16:38,065 INFO Connection check task end + +2025-09-24 23:16:40,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:41,065 INFO Connection check task start + +2025-09-24 23:16:41,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:41,065 INFO Out dated connection ,size=0 + +2025-09-24 23:16:41,065 INFO Connection check task end + +2025-09-24 23:16:43,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:44,066 INFO Connection check task start + +2025-09-24 23:16:44,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:44,066 INFO Out dated connection ,size=0 + +2025-09-24 23:16:44,066 INFO Connection check task end + +2025-09-24 23:16:46,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:47,067 INFO Connection check task start + +2025-09-24 23:16:47,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:47,068 INFO Out dated connection ,size=0 + +2025-09-24 23:16:47,068 INFO Connection check task end + +2025-09-24 23:16:49,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:50,069 INFO Connection check task start + +2025-09-24 23:16:50,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:50,069 INFO Out dated connection ,size=0 + +2025-09-24 23:16:50,069 INFO Connection check task end + +2025-09-24 23:16:52,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:53,069 INFO Connection check task start + +2025-09-24 23:16:53,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:53,070 INFO Out dated connection ,size=0 + +2025-09-24 23:16:53,070 INFO Connection check task end + +2025-09-24 23:16:55,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:56,071 INFO Connection check task start + +2025-09-24 23:16:56,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:56,071 INFO Out dated connection ,size=0 + +2025-09-24 23:16:56,071 INFO Connection check task end + +2025-09-24 23:16:58,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:16:59,072 INFO Connection check task start + +2025-09-24 23:16:59,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:16:59,072 INFO Out dated connection ,size=0 + +2025-09-24 23:16:59,072 INFO Connection check task end + +2025-09-24 23:17:01,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:02,072 INFO Connection check task start + +2025-09-24 23:17:02,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:02,073 INFO Out dated connection ,size=0 + +2025-09-24 23:17:02,073 INFO Connection check task end + +2025-09-24 23:17:04,513 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:05,073 INFO Connection check task start + +2025-09-24 23:17:05,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:05,073 INFO Out dated connection ,size=0 + +2025-09-24 23:17:05,073 INFO Connection check task end + +2025-09-24 23:17:07,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:08,073 INFO Connection check task start + +2025-09-24 23:17:08,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:08,074 INFO Out dated connection ,size=0 + +2025-09-24 23:17:08,074 INFO Connection check task end + +2025-09-24 23:17:10,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:11,074 INFO Connection check task start + +2025-09-24 23:17:11,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:11,074 INFO Out dated connection ,size=0 + +2025-09-24 23:17:11,074 INFO Connection check task end + +2025-09-24 23:17:13,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:14,074 INFO Connection check task start + +2025-09-24 23:17:14,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:14,075 INFO Out dated connection ,size=0 + +2025-09-24 23:17:14,075 INFO Connection check task end + +2025-09-24 23:17:16,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:17,076 INFO Connection check task start + +2025-09-24 23:17:17,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:17,076 INFO Out dated connection ,size=0 + +2025-09-24 23:17:17,076 INFO Connection check task end + +2025-09-24 23:17:19,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:20,077 INFO Connection check task start + +2025-09-24 23:17:20,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:20,077 INFO Out dated connection ,size=0 + +2025-09-24 23:17:20,077 INFO Connection check task end + +2025-09-24 23:17:22,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:23,078 INFO Connection check task start + +2025-09-24 23:17:23,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:23,079 INFO Out dated connection ,size=0 + +2025-09-24 23:17:23,079 INFO Connection check task end + +2025-09-24 23:17:25,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:26,079 INFO Connection check task start + +2025-09-24 23:17:26,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:26,079 INFO Out dated connection ,size=0 + +2025-09-24 23:17:26,079 INFO Connection check task end + +2025-09-24 23:17:28,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:29,080 INFO Connection check task start + +2025-09-24 23:17:29,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:29,080 INFO Out dated connection ,size=0 + +2025-09-24 23:17:29,080 INFO Connection check task end + +2025-09-24 23:17:31,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:32,081 INFO Connection check task start + +2025-09-24 23:17:32,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:32,081 INFO Out dated connection ,size=0 + +2025-09-24 23:17:32,081 INFO Connection check task end + +2025-09-24 23:17:34,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:35,082 INFO Connection check task start + +2025-09-24 23:17:35,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:35,082 INFO Out dated connection ,size=0 + +2025-09-24 23:17:35,082 INFO Connection check task end + +2025-09-24 23:17:37,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:38,082 INFO Connection check task start + +2025-09-24 23:17:38,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:38,082 INFO Out dated connection ,size=0 + +2025-09-24 23:17:38,083 INFO Connection check task end + +2025-09-24 23:17:40,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:41,083 INFO Connection check task start + +2025-09-24 23:17:41,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:41,084 INFO Out dated connection ,size=0 + +2025-09-24 23:17:41,084 INFO Connection check task end + +2025-09-24 23:17:43,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:44,085 INFO Connection check task start + +2025-09-24 23:17:44,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:44,085 INFO Out dated connection ,size=0 + +2025-09-24 23:17:44,085 INFO Connection check task end + +2025-09-24 23:17:46,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:47,086 INFO Connection check task start + +2025-09-24 23:17:47,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:47,087 INFO Out dated connection ,size=0 + +2025-09-24 23:17:47,087 INFO Connection check task end + +2025-09-24 23:17:49,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:50,087 INFO Connection check task start + +2025-09-24 23:17:50,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:50,087 INFO Out dated connection ,size=0 + +2025-09-24 23:17:50,088 INFO Connection check task end + +2025-09-24 23:17:52,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:53,088 INFO Connection check task start + +2025-09-24 23:17:53,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:53,089 INFO Out dated connection ,size=0 + +2025-09-24 23:17:53,089 INFO Connection check task end + +2025-09-24 23:17:55,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:56,089 INFO Connection check task start + +2025-09-24 23:17:56,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:56,089 INFO Out dated connection ,size=0 + +2025-09-24 23:17:56,089 INFO Connection check task end + +2025-09-24 23:17:58,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:17:59,090 INFO Connection check task start + +2025-09-24 23:17:59,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:17:59,090 INFO Out dated connection ,size=0 + +2025-09-24 23:17:59,090 INFO Connection check task end + +2025-09-24 23:18:01,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:02,091 INFO Connection check task start + +2025-09-24 23:18:02,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:02,092 INFO Out dated connection ,size=0 + +2025-09-24 23:18:02,092 INFO Connection check task end + +2025-09-24 23:18:04,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:05,093 INFO Connection check task start + +2025-09-24 23:18:05,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:05,093 INFO Out dated connection ,size=0 + +2025-09-24 23:18:05,093 INFO Connection check task end + +2025-09-24 23:18:07,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:08,094 INFO Connection check task start + +2025-09-24 23:18:08,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:08,094 INFO Out dated connection ,size=0 + +2025-09-24 23:18:08,094 INFO Connection check task end + +2025-09-24 23:18:10,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:11,095 INFO Connection check task start + +2025-09-24 23:18:11,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:11,095 INFO Out dated connection ,size=0 + +2025-09-24 23:18:11,095 INFO Connection check task end + +2025-09-24 23:18:13,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:14,096 INFO Connection check task start + +2025-09-24 23:18:14,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:14,097 INFO Out dated connection ,size=0 + +2025-09-24 23:18:14,097 INFO Connection check task end + +2025-09-24 23:18:16,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:17,098 INFO Connection check task start + +2025-09-24 23:18:17,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:17,098 INFO Out dated connection ,size=0 + +2025-09-24 23:18:17,098 INFO Connection check task end + +2025-09-24 23:18:19,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:20,099 INFO Connection check task start + +2025-09-24 23:18:20,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:20,099 INFO Out dated connection ,size=0 + +2025-09-24 23:18:20,099 INFO Connection check task end + +2025-09-24 23:18:22,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:23,100 INFO Connection check task start + +2025-09-24 23:18:23,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:23,100 INFO Out dated connection ,size=0 + +2025-09-24 23:18:23,100 INFO Connection check task end + +2025-09-24 23:18:25,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:26,101 INFO Connection check task start + +2025-09-24 23:18:26,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:26,102 INFO Out dated connection ,size=0 + +2025-09-24 23:18:26,102 INFO Connection check task end + +2025-09-24 23:18:28,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:29,103 INFO Connection check task start + +2025-09-24 23:18:29,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:29,103 INFO Out dated connection ,size=0 + +2025-09-24 23:18:29,103 INFO Connection check task end + +2025-09-24 23:18:31,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:32,104 INFO Connection check task start + +2025-09-24 23:18:32,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:32,105 INFO Out dated connection ,size=0 + +2025-09-24 23:18:32,105 INFO Connection check task end + +2025-09-24 23:18:34,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:35,105 INFO Connection check task start + +2025-09-24 23:18:35,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:35,105 INFO Out dated connection ,size=0 + +2025-09-24 23:18:35,106 INFO Connection check task end + +2025-09-24 23:18:37,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:38,106 INFO Connection check task start + +2025-09-24 23:18:38,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:38,106 INFO Out dated connection ,size=0 + +2025-09-24 23:18:38,106 INFO Connection check task end + +2025-09-24 23:18:40,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:41,106 INFO Connection check task start + +2025-09-24 23:18:41,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:41,107 INFO Out dated connection ,size=0 + +2025-09-24 23:18:41,107 INFO Connection check task end + +2025-09-24 23:18:43,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:44,107 INFO Connection check task start + +2025-09-24 23:18:44,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:44,107 INFO Out dated connection ,size=0 + +2025-09-24 23:18:44,107 INFO Connection check task end + +2025-09-24 23:18:46,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:47,108 INFO Connection check task start + +2025-09-24 23:18:47,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:47,108 INFO Out dated connection ,size=0 + +2025-09-24 23:18:47,108 INFO Connection check task end + +2025-09-24 23:18:49,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:50,108 INFO Connection check task start + +2025-09-24 23:18:50,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:50,108 INFO Out dated connection ,size=0 + +2025-09-24 23:18:50,112 INFO Connection check task end + +2025-09-24 23:18:52,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:53,113 INFO Connection check task start + +2025-09-24 23:18:53,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:53,113 INFO Out dated connection ,size=0 + +2025-09-24 23:18:53,113 INFO Connection check task end + +2025-09-24 23:18:55,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:56,114 INFO Connection check task start + +2025-09-24 23:18:56,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:56,114 INFO Out dated connection ,size=0 + +2025-09-24 23:18:56,114 INFO Connection check task end + +2025-09-24 23:18:58,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:18:59,115 INFO Connection check task start + +2025-09-24 23:18:59,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:18:59,116 INFO Out dated connection ,size=0 + +2025-09-24 23:18:59,116 INFO Connection check task end + +2025-09-24 23:19:01,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:02,117 INFO Connection check task start + +2025-09-24 23:19:02,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:02,117 INFO Out dated connection ,size=0 + +2025-09-24 23:19:02,117 INFO Connection check task end + +2025-09-24 23:19:04,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:05,118 INFO Connection check task start + +2025-09-24 23:19:05,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:05,119 INFO Out dated connection ,size=0 + +2025-09-24 23:19:05,119 INFO Connection check task end + +2025-09-24 23:19:07,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:08,119 INFO Connection check task start + +2025-09-24 23:19:08,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:08,119 INFO Out dated connection ,size=0 + +2025-09-24 23:19:08,119 INFO Connection check task end + +2025-09-24 23:19:10,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:11,120 INFO Connection check task start + +2025-09-24 23:19:11,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:11,120 INFO Out dated connection ,size=0 + +2025-09-24 23:19:11,120 INFO Connection check task end + +2025-09-24 23:19:13,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:14,121 INFO Connection check task start + +2025-09-24 23:19:14,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:14,121 INFO Out dated connection ,size=0 + +2025-09-24 23:19:14,121 INFO Connection check task end + +2025-09-24 23:19:16,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:17,122 INFO Connection check task start + +2025-09-24 23:19:17,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:17,122 INFO Out dated connection ,size=0 + +2025-09-24 23:19:17,122 INFO Connection check task end + +2025-09-24 23:19:19,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:20,122 INFO Connection check task start + +2025-09-24 23:19:20,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:20,122 INFO Out dated connection ,size=0 + +2025-09-24 23:19:20,122 INFO Connection check task end + +2025-09-24 23:19:22,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:23,123 INFO Connection check task start + +2025-09-24 23:19:23,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:23,124 INFO Out dated connection ,size=0 + +2025-09-24 23:19:23,124 INFO Connection check task end + +2025-09-24 23:19:25,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:26,124 INFO Connection check task start + +2025-09-24 23:19:26,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:26,125 INFO Out dated connection ,size=0 + +2025-09-24 23:19:26,125 INFO Connection check task end + +2025-09-24 23:19:28,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:29,125 INFO Connection check task start + +2025-09-24 23:19:29,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:29,125 INFO Out dated connection ,size=0 + +2025-09-24 23:19:29,125 INFO Connection check task end + +2025-09-24 23:19:31,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:32,127 INFO Connection check task start + +2025-09-24 23:19:32,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:32,127 INFO Out dated connection ,size=0 + +2025-09-24 23:19:32,127 INFO Connection check task end + +2025-09-24 23:19:34,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:35,127 INFO Connection check task start + +2025-09-24 23:19:35,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:35,128 INFO Out dated connection ,size=0 + +2025-09-24 23:19:35,128 INFO Connection check task end + +2025-09-24 23:19:37,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:38,128 INFO Connection check task start + +2025-09-24 23:19:38,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:38,129 INFO Out dated connection ,size=0 + +2025-09-24 23:19:38,129 INFO Connection check task end + +2025-09-24 23:19:40,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:41,130 INFO Connection check task start + +2025-09-24 23:19:41,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:41,130 INFO Out dated connection ,size=0 + +2025-09-24 23:19:41,130 INFO Connection check task end + +2025-09-24 23:19:43,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:44,132 INFO Connection check task start + +2025-09-24 23:19:44,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:44,132 INFO Out dated connection ,size=0 + +2025-09-24 23:19:44,132 INFO Connection check task end + +2025-09-24 23:19:46,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:47,132 INFO Connection check task start + +2025-09-24 23:19:47,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:47,133 INFO Out dated connection ,size=0 + +2025-09-24 23:19:47,133 INFO Connection check task end + +2025-09-24 23:19:49,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:50,133 INFO Connection check task start + +2025-09-24 23:19:50,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:50,133 INFO Out dated connection ,size=0 + +2025-09-24 23:19:50,133 INFO Connection check task end + +2025-09-24 23:19:52,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:53,134 INFO Connection check task start + +2025-09-24 23:19:53,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:53,135 INFO Out dated connection ,size=0 + +2025-09-24 23:19:53,135 INFO Connection check task end + +2025-09-24 23:19:55,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:56,135 INFO Connection check task start + +2025-09-24 23:19:56,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:56,136 INFO Out dated connection ,size=0 + +2025-09-24 23:19:56,136 INFO Connection check task end + +2025-09-24 23:19:58,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:19:59,136 INFO Connection check task start + +2025-09-24 23:19:59,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:19:59,136 INFO Out dated connection ,size=0 + +2025-09-24 23:19:59,136 INFO Connection check task end + +2025-09-24 23:20:01,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:02,137 INFO Connection check task start + +2025-09-24 23:20:02,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:02,138 INFO Out dated connection ,size=0 + +2025-09-24 23:20:02,138 INFO Connection check task end + +2025-09-24 23:20:04,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:05,138 INFO Connection check task start + +2025-09-24 23:20:05,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:05,138 INFO Out dated connection ,size=0 + +2025-09-24 23:20:05,138 INFO Connection check task end + +2025-09-24 23:20:07,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:08,139 INFO Connection check task start + +2025-09-24 23:20:08,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:08,139 INFO Out dated connection ,size=0 + +2025-09-24 23:20:08,139 INFO Connection check task end + +2025-09-24 23:20:10,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:11,139 INFO Connection check task start + +2025-09-24 23:20:11,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:11,139 INFO Out dated connection ,size=0 + +2025-09-24 23:20:11,139 INFO Connection check task end + +2025-09-24 23:20:13,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:14,140 INFO Connection check task start + +2025-09-24 23:20:14,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:14,140 INFO Out dated connection ,size=0 + +2025-09-24 23:20:14,140 INFO Connection check task end + +2025-09-24 23:20:16,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:17,141 INFO Connection check task start + +2025-09-24 23:20:17,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:17,141 INFO Out dated connection ,size=0 + +2025-09-24 23:20:17,141 INFO Connection check task end + +2025-09-24 23:20:19,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:20,141 INFO Connection check task start + +2025-09-24 23:20:20,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:20,141 INFO Out dated connection ,size=0 + +2025-09-24 23:20:20,141 INFO Connection check task end + +2025-09-24 23:20:22,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:23,142 INFO Connection check task start + +2025-09-24 23:20:23,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:23,142 INFO Out dated connection ,size=0 + +2025-09-24 23:20:23,142 INFO Connection check task end + +2025-09-24 23:20:25,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:26,143 INFO Connection check task start + +2025-09-24 23:20:26,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:26,143 INFO Out dated connection ,size=0 + +2025-09-24 23:20:26,143 INFO Connection check task end + +2025-09-24 23:20:28,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:29,144 INFO Connection check task start + +2025-09-24 23:20:29,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:29,145 INFO Out dated connection ,size=0 + +2025-09-24 23:20:29,145 INFO Connection check task end + +2025-09-24 23:20:31,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:32,146 INFO Connection check task start + +2025-09-24 23:20:32,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:32,146 INFO Out dated connection ,size=0 + +2025-09-24 23:20:32,146 INFO Connection check task end + +2025-09-24 23:20:34,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:35,147 INFO Connection check task start + +2025-09-24 23:20:35,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:35,147 INFO Out dated connection ,size=0 + +2025-09-24 23:20:35,147 INFO Connection check task end + +2025-09-24 23:20:37,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:38,148 INFO Connection check task start + +2025-09-24 23:20:38,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:38,148 INFO Out dated connection ,size=0 + +2025-09-24 23:20:38,149 INFO Connection check task end + +2025-09-24 23:20:40,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:41,150 INFO Connection check task start + +2025-09-24 23:20:41,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:41,150 INFO Out dated connection ,size=0 + +2025-09-24 23:20:41,150 INFO Connection check task end + +2025-09-24 23:20:43,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:44,150 INFO Connection check task start + +2025-09-24 23:20:44,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:44,151 INFO Out dated connection ,size=0 + +2025-09-24 23:20:44,151 INFO Connection check task end + +2025-09-24 23:20:46,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:47,152 INFO Connection check task start + +2025-09-24 23:20:47,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:47,152 INFO Out dated connection ,size=0 + +2025-09-24 23:20:47,152 INFO Connection check task end + +2025-09-24 23:20:49,580 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:50,153 INFO Connection check task start + +2025-09-24 23:20:50,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:50,153 INFO Out dated connection ,size=0 + +2025-09-24 23:20:50,153 INFO Connection check task end + +2025-09-24 23:20:52,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:53,154 INFO Connection check task start + +2025-09-24 23:20:53,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:53,154 INFO Out dated connection ,size=0 + +2025-09-24 23:20:53,154 INFO Connection check task end + +2025-09-24 23:20:55,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:56,155 INFO Connection check task start + +2025-09-24 23:20:56,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:56,155 INFO Out dated connection ,size=0 + +2025-09-24 23:20:56,155 INFO Connection check task end + +2025-09-24 23:20:58,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:20:59,156 INFO Connection check task start + +2025-09-24 23:20:59,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:20:59,156 INFO Out dated connection ,size=0 + +2025-09-24 23:20:59,156 INFO Connection check task end + +2025-09-24 23:21:01,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:02,156 INFO Connection check task start + +2025-09-24 23:21:02,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:02,157 INFO Out dated connection ,size=0 + +2025-09-24 23:21:02,157 INFO Connection check task end + +2025-09-24 23:21:04,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:05,157 INFO Connection check task start + +2025-09-24 23:21:05,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:05,157 INFO Out dated connection ,size=0 + +2025-09-24 23:21:05,157 INFO Connection check task end + +2025-09-24 23:21:07,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:08,158 INFO Connection check task start + +2025-09-24 23:21:08,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:08,158 INFO Out dated connection ,size=0 + +2025-09-24 23:21:08,158 INFO Connection check task end + +2025-09-24 23:21:10,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:11,158 INFO Connection check task start + +2025-09-24 23:21:11,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:11,158 INFO Out dated connection ,size=0 + +2025-09-24 23:21:11,159 INFO Connection check task end + +2025-09-24 23:21:13,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:14,160 INFO Connection check task start + +2025-09-24 23:21:14,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:14,160 INFO Out dated connection ,size=0 + +2025-09-24 23:21:14,160 INFO Connection check task end + +2025-09-24 23:21:16,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:17,161 INFO Connection check task start + +2025-09-24 23:21:17,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:17,162 INFO Out dated connection ,size=0 + +2025-09-24 23:21:17,162 INFO Connection check task end + +2025-09-24 23:21:19,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:20,163 INFO Connection check task start + +2025-09-24 23:21:20,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:20,163 INFO Out dated connection ,size=0 + +2025-09-24 23:21:20,163 INFO Connection check task end + +2025-09-24 23:21:22,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:23,163 INFO Connection check task start + +2025-09-24 23:21:23,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:23,164 INFO Out dated connection ,size=0 + +2025-09-24 23:21:23,164 INFO Connection check task end + +2025-09-24 23:21:25,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:26,165 INFO Connection check task start + +2025-09-24 23:21:26,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:26,166 INFO Out dated connection ,size=0 + +2025-09-24 23:21:26,166 INFO Connection check task end + +2025-09-24 23:21:28,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:29,167 INFO Connection check task start + +2025-09-24 23:21:29,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:29,167 INFO Out dated connection ,size=0 + +2025-09-24 23:21:29,167 INFO Connection check task end + +2025-09-24 23:21:31,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:32,168 INFO Connection check task start + +2025-09-24 23:21:32,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:32,168 INFO Out dated connection ,size=0 + +2025-09-24 23:21:32,168 INFO Connection check task end + +2025-09-24 23:21:34,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:35,168 INFO Connection check task start + +2025-09-24 23:21:35,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:35,169 INFO Out dated connection ,size=0 + +2025-09-24 23:21:35,169 INFO Connection check task end + +2025-09-24 23:21:37,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:38,169 INFO Connection check task start + +2025-09-24 23:21:38,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:38,169 INFO Out dated connection ,size=0 + +2025-09-24 23:21:38,169 INFO Connection check task end + +2025-09-24 23:21:40,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:41,169 INFO Connection check task start + +2025-09-24 23:21:41,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:41,169 INFO Out dated connection ,size=0 + +2025-09-24 23:21:41,170 INFO Connection check task end + +2025-09-24 23:21:43,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:44,171 INFO Connection check task start + +2025-09-24 23:21:44,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:44,171 INFO Out dated connection ,size=0 + +2025-09-24 23:21:44,171 INFO Connection check task end + +2025-09-24 23:21:46,593 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:47,171 INFO Connection check task start + +2025-09-24 23:21:47,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:47,171 INFO Out dated connection ,size=0 + +2025-09-24 23:21:47,171 INFO Connection check task end + +2025-09-24 23:21:49,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:50,172 INFO Connection check task start + +2025-09-24 23:21:50,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:50,172 INFO Out dated connection ,size=0 + +2025-09-24 23:21:50,172 INFO Connection check task end + +2025-09-24 23:21:52,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:53,173 INFO Connection check task start + +2025-09-24 23:21:53,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:53,173 INFO Out dated connection ,size=0 + +2025-09-24 23:21:53,173 INFO Connection check task end + +2025-09-24 23:21:55,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:56,173 INFO Connection check task start + +2025-09-24 23:21:56,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:56,174 INFO Out dated connection ,size=0 + +2025-09-24 23:21:56,174 INFO Connection check task end + +2025-09-24 23:21:58,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:21:59,174 INFO Connection check task start + +2025-09-24 23:21:59,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:21:59,175 INFO Out dated connection ,size=0 + +2025-09-24 23:21:59,175 INFO Connection check task end + +2025-09-24 23:22:01,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:02,175 INFO Connection check task start + +2025-09-24 23:22:02,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:02,175 INFO Out dated connection ,size=0 + +2025-09-24 23:22:02,175 INFO Connection check task end + +2025-09-24 23:22:04,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:05,176 INFO Connection check task start + +2025-09-24 23:22:05,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:05,176 INFO Out dated connection ,size=0 + +2025-09-24 23:22:05,176 INFO Connection check task end + +2025-09-24 23:22:07,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:08,177 INFO Connection check task start + +2025-09-24 23:22:08,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:08,177 INFO Out dated connection ,size=0 + +2025-09-24 23:22:08,177 INFO Connection check task end + +2025-09-24 23:22:10,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:11,178 INFO Connection check task start + +2025-09-24 23:22:11,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:11,180 INFO Out dated connection ,size=0 + +2025-09-24 23:22:11,180 INFO Connection check task end + +2025-09-24 23:22:13,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:14,181 INFO Connection check task start + +2025-09-24 23:22:14,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:14,181 INFO Out dated connection ,size=0 + +2025-09-24 23:22:14,181 INFO Connection check task end + +2025-09-24 23:22:16,604 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:17,182 INFO Connection check task start + +2025-09-24 23:22:17,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:17,182 INFO Out dated connection ,size=0 + +2025-09-24 23:22:17,182 INFO Connection check task end + +2025-09-24 23:22:19,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:20,184 INFO Connection check task start + +2025-09-24 23:22:20,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:20,184 INFO Out dated connection ,size=0 + +2025-09-24 23:22:20,184 INFO Connection check task end + +2025-09-24 23:22:22,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:23,184 INFO Connection check task start + +2025-09-24 23:22:23,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:23,185 INFO Out dated connection ,size=0 + +2025-09-24 23:22:23,185 INFO Connection check task end + +2025-09-24 23:22:25,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:26,185 INFO Connection check task start + +2025-09-24 23:22:26,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:26,185 INFO Out dated connection ,size=0 + +2025-09-24 23:22:26,185 INFO Connection check task end + +2025-09-24 23:22:28,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:29,186 INFO Connection check task start + +2025-09-24 23:22:29,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:29,186 INFO Out dated connection ,size=0 + +2025-09-24 23:22:29,186 INFO Connection check task end + +2025-09-24 23:22:31,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:32,186 INFO Connection check task start + +2025-09-24 23:22:32,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:32,187 INFO Out dated connection ,size=0 + +2025-09-24 23:22:32,187 INFO Connection check task end + +2025-09-24 23:22:34,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:35,187 INFO Connection check task start + +2025-09-24 23:22:35,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:35,187 INFO Out dated connection ,size=0 + +2025-09-24 23:22:35,187 INFO Connection check task end + +2025-09-24 23:22:37,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:38,188 INFO Connection check task start + +2025-09-24 23:22:38,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:38,188 INFO Out dated connection ,size=0 + +2025-09-24 23:22:38,188 INFO Connection check task end + +2025-09-24 23:22:40,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:41,188 INFO Connection check task start + +2025-09-24 23:22:41,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:41,189 INFO Out dated connection ,size=0 + +2025-09-24 23:22:41,189 INFO Connection check task end + +2025-09-24 23:22:43,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:44,190 INFO Connection check task start + +2025-09-24 23:22:44,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:44,193 INFO Out dated connection ,size=0 + +2025-09-24 23:22:44,193 INFO Connection check task end + +2025-09-24 23:22:46,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:47,194 INFO Connection check task start + +2025-09-24 23:22:47,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:47,194 INFO Out dated connection ,size=0 + +2025-09-24 23:22:47,194 INFO Connection check task end + +2025-09-24 23:22:49,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:50,195 INFO Connection check task start + +2025-09-24 23:22:50,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:50,195 INFO Out dated connection ,size=0 + +2025-09-24 23:22:50,196 INFO Connection check task end + +2025-09-24 23:22:52,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:53,196 INFO Connection check task start + +2025-09-24 23:22:53,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:53,196 INFO Out dated connection ,size=0 + +2025-09-24 23:22:53,196 INFO Connection check task end + +2025-09-24 23:22:55,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:56,196 INFO Connection check task start + +2025-09-24 23:22:56,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:56,196 INFO Out dated connection ,size=0 + +2025-09-24 23:22:56,196 INFO Connection check task end + +2025-09-24 23:22:58,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:22:59,197 INFO Connection check task start + +2025-09-24 23:22:59,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:22:59,197 INFO Out dated connection ,size=0 + +2025-09-24 23:22:59,197 INFO Connection check task end + +2025-09-24 23:23:01,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:02,197 INFO Connection check task start + +2025-09-24 23:23:02,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:02,197 INFO Out dated connection ,size=0 + +2025-09-24 23:23:02,198 INFO Connection check task end + +2025-09-24 23:23:04,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:05,198 INFO Connection check task start + +2025-09-24 23:23:05,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:05,198 INFO Out dated connection ,size=0 + +2025-09-24 23:23:05,198 INFO Connection check task end + +2025-09-24 23:23:07,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:08,198 INFO Connection check task start + +2025-09-24 23:23:08,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:08,198 INFO Out dated connection ,size=0 + +2025-09-24 23:23:08,198 INFO Connection check task end + +2025-09-24 23:23:10,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:11,199 INFO Connection check task start + +2025-09-24 23:23:11,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:11,199 INFO Out dated connection ,size=0 + +2025-09-24 23:23:11,199 INFO Connection check task end + +2025-09-24 23:23:13,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:14,200 INFO Connection check task start + +2025-09-24 23:23:14,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:14,200 INFO Out dated connection ,size=0 + +2025-09-24 23:23:14,200 INFO Connection check task end + +2025-09-24 23:23:16,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:17,200 INFO Connection check task start + +2025-09-24 23:23:17,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:17,200 INFO Out dated connection ,size=0 + +2025-09-24 23:23:17,201 INFO Connection check task end + +2025-09-24 23:23:19,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:20,201 INFO Connection check task start + +2025-09-24 23:23:20,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:20,202 INFO Out dated connection ,size=0 + +2025-09-24 23:23:20,202 INFO Connection check task end + +2025-09-24 23:23:22,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:23,203 INFO Connection check task start + +2025-09-24 23:23:23,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:23,203 INFO Out dated connection ,size=0 + +2025-09-24 23:23:23,203 INFO Connection check task end + +2025-09-24 23:23:25,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:26,204 INFO Connection check task start + +2025-09-24 23:23:26,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:26,204 INFO Out dated connection ,size=0 + +2025-09-24 23:23:26,204 INFO Connection check task end + +2025-09-24 23:23:28,630 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:29,205 INFO Connection check task start + +2025-09-24 23:23:29,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:29,205 INFO Out dated connection ,size=0 + +2025-09-24 23:23:29,205 INFO Connection check task end + +2025-09-24 23:23:31,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:32,206 INFO Connection check task start + +2025-09-24 23:23:32,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:32,206 INFO Out dated connection ,size=0 + +2025-09-24 23:23:32,206 INFO Connection check task end + +2025-09-24 23:23:34,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:35,207 INFO Connection check task start + +2025-09-24 23:23:35,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:35,207 INFO Out dated connection ,size=0 + +2025-09-24 23:23:35,207 INFO Connection check task end + +2025-09-24 23:23:37,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:38,207 INFO Connection check task start + +2025-09-24 23:23:38,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:38,207 INFO Out dated connection ,size=0 + +2025-09-24 23:23:38,207 INFO Connection check task end + +2025-09-24 23:23:40,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:41,208 INFO Connection check task start + +2025-09-24 23:23:41,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:41,208 INFO Out dated connection ,size=0 + +2025-09-24 23:23:41,208 INFO Connection check task end + +2025-09-24 23:23:43,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:44,209 INFO Connection check task start + +2025-09-24 23:23:44,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:44,209 INFO Out dated connection ,size=0 + +2025-09-24 23:23:44,209 INFO Connection check task end + +2025-09-24 23:23:46,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:47,210 INFO Connection check task start + +2025-09-24 23:23:47,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:47,210 INFO Out dated connection ,size=0 + +2025-09-24 23:23:47,210 INFO Connection check task end + +2025-09-24 23:23:49,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:50,212 INFO Connection check task start + +2025-09-24 23:23:50,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:50,212 INFO Out dated connection ,size=0 + +2025-09-24 23:23:50,212 INFO Connection check task end + +2025-09-24 23:23:52,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:53,212 INFO Connection check task start + +2025-09-24 23:23:53,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:53,213 INFO Out dated connection ,size=0 + +2025-09-24 23:23:53,213 INFO Connection check task end + +2025-09-24 23:23:55,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:56,213 INFO Connection check task start + +2025-09-24 23:23:56,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:56,213 INFO Out dated connection ,size=0 + +2025-09-24 23:23:56,213 INFO Connection check task end + +2025-09-24 23:23:58,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:23:59,214 INFO Connection check task start + +2025-09-24 23:23:59,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:23:59,214 INFO Out dated connection ,size=0 + +2025-09-24 23:23:59,214 INFO Connection check task end + +2025-09-24 23:24:01,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:02,215 INFO Connection check task start + +2025-09-24 23:24:02,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:02,215 INFO Out dated connection ,size=0 + +2025-09-24 23:24:02,215 INFO Connection check task end + +2025-09-24 23:24:04,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:05,216 INFO Connection check task start + +2025-09-24 23:24:05,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:05,216 INFO Out dated connection ,size=0 + +2025-09-24 23:24:05,216 INFO Connection check task end + +2025-09-24 23:24:07,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:08,216 INFO Connection check task start + +2025-09-24 23:24:08,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:08,217 INFO Out dated connection ,size=0 + +2025-09-24 23:24:08,217 INFO Connection check task end + +2025-09-24 23:24:10,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:11,217 INFO Connection check task start + +2025-09-24 23:24:11,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:11,217 INFO Out dated connection ,size=0 + +2025-09-24 23:24:11,217 INFO Connection check task end + +2025-09-24 23:24:13,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:14,218 INFO Connection check task start + +2025-09-24 23:24:14,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:14,218 INFO Out dated connection ,size=0 + +2025-09-24 23:24:14,218 INFO Connection check task end + +2025-09-24 23:24:16,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:17,218 INFO Connection check task start + +2025-09-24 23:24:17,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:17,218 INFO Out dated connection ,size=0 + +2025-09-24 23:24:17,219 INFO Connection check task end + +2025-09-24 23:24:19,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:20,219 INFO Connection check task start + +2025-09-24 23:24:20,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:20,220 INFO Out dated connection ,size=0 + +2025-09-24 23:24:20,220 INFO Connection check task end + +2025-09-24 23:24:22,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:23,221 INFO Connection check task start + +2025-09-24 23:24:23,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:23,221 INFO Out dated connection ,size=0 + +2025-09-24 23:24:23,221 INFO Connection check task end + +2025-09-24 23:24:25,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:26,221 INFO Connection check task start + +2025-09-24 23:24:26,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:26,221 INFO Out dated connection ,size=0 + +2025-09-24 23:24:26,221 INFO Connection check task end + +2025-09-24 23:24:28,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:29,222 INFO Connection check task start + +2025-09-24 23:24:29,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:29,222 INFO Out dated connection ,size=0 + +2025-09-24 23:24:29,222 INFO Connection check task end + +2025-09-24 23:24:31,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:32,223 INFO Connection check task start + +2025-09-24 23:24:32,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:32,223 INFO Out dated connection ,size=0 + +2025-09-24 23:24:32,223 INFO Connection check task end + +2025-09-24 23:24:34,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:35,224 INFO Connection check task start + +2025-09-24 23:24:35,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:35,224 INFO Out dated connection ,size=0 + +2025-09-24 23:24:35,224 INFO Connection check task end + +2025-09-24 23:24:37,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:38,224 INFO Connection check task start + +2025-09-24 23:24:38,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:38,224 INFO Out dated connection ,size=0 + +2025-09-24 23:24:38,224 INFO Connection check task end + +2025-09-24 23:24:40,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:41,224 INFO Connection check task start + +2025-09-24 23:24:41,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:41,225 INFO Out dated connection ,size=0 + +2025-09-24 23:24:41,225 INFO Connection check task end + +2025-09-24 23:24:43,650 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:44,226 INFO Connection check task start + +2025-09-24 23:24:44,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:44,226 INFO Out dated connection ,size=0 + +2025-09-24 23:24:44,226 INFO Connection check task end + +2025-09-24 23:24:46,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:47,226 INFO Connection check task start + +2025-09-24 23:24:47,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:47,227 INFO Out dated connection ,size=0 + +2025-09-24 23:24:47,227 INFO Connection check task end + +2025-09-24 23:24:49,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:50,227 INFO Connection check task start + +2025-09-24 23:24:50,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:50,227 INFO Out dated connection ,size=0 + +2025-09-24 23:24:50,227 INFO Connection check task end + +2025-09-24 23:24:52,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:53,228 INFO Connection check task start + +2025-09-24 23:24:53,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:53,228 INFO Out dated connection ,size=0 + +2025-09-24 23:24:53,228 INFO Connection check task end + +2025-09-24 23:24:55,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:56,229 INFO Connection check task start + +2025-09-24 23:24:56,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:56,229 INFO Out dated connection ,size=0 + +2025-09-24 23:24:56,229 INFO Connection check task end + +2025-09-24 23:24:58,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:24:59,230 INFO Connection check task start + +2025-09-24 23:24:59,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:24:59,230 INFO Out dated connection ,size=0 + +2025-09-24 23:24:59,230 INFO Connection check task end + +2025-09-24 23:25:01,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:02,231 INFO Connection check task start + +2025-09-24 23:25:02,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:02,231 INFO Out dated connection ,size=0 + +2025-09-24 23:25:02,231 INFO Connection check task end + +2025-09-24 23:25:04,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:05,231 INFO Connection check task start + +2025-09-24 23:25:05,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:05,232 INFO Out dated connection ,size=0 + +2025-09-24 23:25:05,232 INFO Connection check task end + +2025-09-24 23:25:07,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:08,232 INFO Connection check task start + +2025-09-24 23:25:08,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:08,232 INFO Out dated connection ,size=0 + +2025-09-24 23:25:08,232 INFO Connection check task end + +2025-09-24 23:25:10,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:11,232 INFO Connection check task start + +2025-09-24 23:25:11,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:11,232 INFO Out dated connection ,size=0 + +2025-09-24 23:25:11,233 INFO Connection check task end + +2025-09-24 23:25:13,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:14,233 INFO Connection check task start + +2025-09-24 23:25:14,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:14,233 INFO Out dated connection ,size=0 + +2025-09-24 23:25:14,233 INFO Connection check task end + +2025-09-24 23:25:16,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:17,234 INFO Connection check task start + +2025-09-24 23:25:17,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:17,240 INFO Out dated connection ,size=0 + +2025-09-24 23:25:17,240 INFO Connection check task end + +2025-09-24 23:25:19,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:20,241 INFO Connection check task start + +2025-09-24 23:25:20,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:20,241 INFO Out dated connection ,size=0 + +2025-09-24 23:25:20,241 INFO Connection check task end + +2025-09-24 23:25:22,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:23,241 INFO Connection check task start + +2025-09-24 23:25:23,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:23,242 INFO Out dated connection ,size=0 + +2025-09-24 23:25:23,242 INFO Connection check task end + +2025-09-24 23:25:25,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:26,242 INFO Connection check task start + +2025-09-24 23:25:26,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:26,242 INFO Out dated connection ,size=0 + +2025-09-24 23:25:26,242 INFO Connection check task end + +2025-09-24 23:25:28,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:29,242 INFO Connection check task start + +2025-09-24 23:25:29,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:29,243 INFO Out dated connection ,size=0 + +2025-09-24 23:25:29,243 INFO Connection check task end + +2025-09-24 23:25:31,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:32,243 INFO Connection check task start + +2025-09-24 23:25:32,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:32,243 INFO Out dated connection ,size=0 + +2025-09-24 23:25:32,243 INFO Connection check task end + +2025-09-24 23:25:34,666 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:35,243 INFO Connection check task start + +2025-09-24 23:25:35,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:35,243 INFO Out dated connection ,size=0 + +2025-09-24 23:25:35,243 INFO Connection check task end + +2025-09-24 23:25:37,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:38,244 INFO Connection check task start + +2025-09-24 23:25:38,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:38,244 INFO Out dated connection ,size=0 + +2025-09-24 23:25:38,244 INFO Connection check task end + +2025-09-24 23:25:40,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:41,244 INFO Connection check task start + +2025-09-24 23:25:41,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:41,245 INFO Out dated connection ,size=0 + +2025-09-24 23:25:41,245 INFO Connection check task end + +2025-09-24 23:25:43,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:44,245 INFO Connection check task start + +2025-09-24 23:25:44,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:44,246 INFO Out dated connection ,size=0 + +2025-09-24 23:25:44,246 INFO Connection check task end + +2025-09-24 23:25:46,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:47,247 INFO Connection check task start + +2025-09-24 23:25:47,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:47,247 INFO Out dated connection ,size=0 + +2025-09-24 23:25:47,247 INFO Connection check task end + +2025-09-24 23:25:49,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:50,247 INFO Connection check task start + +2025-09-24 23:25:50,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:50,248 INFO Out dated connection ,size=0 + +2025-09-24 23:25:50,248 INFO Connection check task end + +2025-09-24 23:25:52,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:53,248 INFO Connection check task start + +2025-09-24 23:25:53,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:53,248 INFO Out dated connection ,size=0 + +2025-09-24 23:25:53,248 INFO Connection check task end + +2025-09-24 23:25:55,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:56,249 INFO Connection check task start + +2025-09-24 23:25:56,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:56,250 INFO Out dated connection ,size=0 + +2025-09-24 23:25:56,250 INFO Connection check task end + +2025-09-24 23:25:58,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:25:59,250 INFO Connection check task start + +2025-09-24 23:25:59,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:25:59,250 INFO Out dated connection ,size=0 + +2025-09-24 23:25:59,250 INFO Connection check task end + +2025-09-24 23:26:01,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:02,250 INFO Connection check task start + +2025-09-24 23:26:02,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:02,251 INFO Out dated connection ,size=0 + +2025-09-24 23:26:02,251 INFO Connection check task end + +2025-09-24 23:26:04,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:05,251 INFO Connection check task start + +2025-09-24 23:26:05,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:05,251 INFO Out dated connection ,size=0 + +2025-09-24 23:26:05,251 INFO Connection check task end + +2025-09-24 23:26:07,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:08,251 INFO Connection check task start + +2025-09-24 23:26:08,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:08,252 INFO Out dated connection ,size=0 + +2025-09-24 23:26:08,252 INFO Connection check task end + +2025-09-24 23:26:10,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:11,252 INFO Connection check task start + +2025-09-24 23:26:11,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:11,252 INFO Out dated connection ,size=0 + +2025-09-24 23:26:11,252 INFO Connection check task end + +2025-09-24 23:26:13,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:14,252 INFO Connection check task start + +2025-09-24 23:26:14,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:14,253 INFO Out dated connection ,size=0 + +2025-09-24 23:26:14,253 INFO Connection check task end + +2025-09-24 23:26:16,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:17,253 INFO Connection check task start + +2025-09-24 23:26:17,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:17,253 INFO Out dated connection ,size=0 + +2025-09-24 23:26:17,253 INFO Connection check task end + +2025-09-24 23:26:19,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:20,254 INFO Connection check task start + +2025-09-24 23:26:20,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:20,254 INFO Out dated connection ,size=0 + +2025-09-24 23:26:20,254 INFO Connection check task end + +2025-09-24 23:26:22,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:23,254 INFO Connection check task start + +2025-09-24 23:26:23,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:23,254 INFO Out dated connection ,size=0 + +2025-09-24 23:26:23,254 INFO Connection check task end + +2025-09-24 23:26:25,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:26,255 INFO Connection check task start + +2025-09-24 23:26:26,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:26,255 INFO Out dated connection ,size=0 + +2025-09-24 23:26:26,255 INFO Connection check task end + +2025-09-24 23:26:28,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:29,256 INFO Connection check task start + +2025-09-24 23:26:29,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:29,256 INFO Out dated connection ,size=0 + +2025-09-24 23:26:29,256 INFO Connection check task end + +2025-09-24 23:26:31,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:32,256 INFO Connection check task start + +2025-09-24 23:26:32,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:32,257 INFO Out dated connection ,size=0 + +2025-09-24 23:26:32,257 INFO Connection check task end + +2025-09-24 23:26:34,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:35,257 INFO Connection check task start + +2025-09-24 23:26:35,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:35,258 INFO Out dated connection ,size=0 + +2025-09-24 23:26:35,258 INFO Connection check task end + +2025-09-24 23:26:37,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:38,258 INFO Connection check task start + +2025-09-24 23:26:38,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:38,258 INFO Out dated connection ,size=0 + +2025-09-24 23:26:38,258 INFO Connection check task end + +2025-09-24 23:26:40,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:41,258 INFO Connection check task start + +2025-09-24 23:26:41,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:41,258 INFO Out dated connection ,size=0 + +2025-09-24 23:26:41,259 INFO Connection check task end + +2025-09-24 23:26:43,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:44,259 INFO Connection check task start + +2025-09-24 23:26:44,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:44,259 INFO Out dated connection ,size=0 + +2025-09-24 23:26:44,259 INFO Connection check task end + +2025-09-24 23:26:46,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:47,259 INFO Connection check task start + +2025-09-24 23:26:47,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:47,260 INFO Out dated connection ,size=0 + +2025-09-24 23:26:47,260 INFO Connection check task end + +2025-09-24 23:26:49,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:50,260 INFO Connection check task start + +2025-09-24 23:26:50,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:50,260 INFO Out dated connection ,size=0 + +2025-09-24 23:26:50,260 INFO Connection check task end + +2025-09-24 23:26:52,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:53,260 INFO Connection check task start + +2025-09-24 23:26:53,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:53,260 INFO Out dated connection ,size=0 + +2025-09-24 23:26:53,260 INFO Connection check task end + +2025-09-24 23:26:55,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:56,260 INFO Connection check task start + +2025-09-24 23:26:56,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:56,261 INFO Out dated connection ,size=0 + +2025-09-24 23:26:56,261 INFO Connection check task end + +2025-09-24 23:26:58,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:26:59,262 INFO Connection check task start + +2025-09-24 23:26:59,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:26:59,262 INFO Out dated connection ,size=0 + +2025-09-24 23:26:59,262 INFO Connection check task end + +2025-09-24 23:27:01,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:02,262 INFO Connection check task start + +2025-09-24 23:27:02,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:02,262 INFO Out dated connection ,size=0 + +2025-09-24 23:27:02,262 INFO Connection check task end + +2025-09-24 23:27:04,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:05,263 INFO Connection check task start + +2025-09-24 23:27:05,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:05,263 INFO Out dated connection ,size=0 + +2025-09-24 23:27:05,263 INFO Connection check task end + +2025-09-24 23:27:07,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:08,263 INFO Connection check task start + +2025-09-24 23:27:08,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:08,263 INFO Out dated connection ,size=0 + +2025-09-24 23:27:08,264 INFO Connection check task end + +2025-09-24 23:27:10,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:11,264 INFO Connection check task start + +2025-09-24 23:27:11,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:11,264 INFO Out dated connection ,size=0 + +2025-09-24 23:27:11,264 INFO Connection check task end + +2025-09-24 23:27:13,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:14,265 INFO Connection check task start + +2025-09-24 23:27:14,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:14,265 INFO Out dated connection ,size=0 + +2025-09-24 23:27:14,265 INFO Connection check task end + +2025-09-24 23:27:16,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:17,265 INFO Connection check task start + +2025-09-24 23:27:17,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:17,265 INFO Out dated connection ,size=0 + +2025-09-24 23:27:17,265 INFO Connection check task end + +2025-09-24 23:27:19,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:20,273 INFO Connection check task start + +2025-09-24 23:27:20,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:20,274 INFO Out dated connection ,size=0 + +2025-09-24 23:27:20,275 INFO Connection check task end + +2025-09-24 23:27:22,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:23,275 INFO Connection check task start + +2025-09-24 23:27:23,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:23,275 INFO Out dated connection ,size=0 + +2025-09-24 23:27:23,275 INFO Connection check task end + +2025-09-24 23:27:25,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:26,275 INFO Connection check task start + +2025-09-24 23:27:26,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:26,275 INFO Out dated connection ,size=0 + +2025-09-24 23:27:26,276 INFO Connection check task end + +2025-09-24 23:27:28,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:29,276 INFO Connection check task start + +2025-09-24 23:27:29,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:29,276 INFO Out dated connection ,size=0 + +2025-09-24 23:27:29,276 INFO Connection check task end + +2025-09-24 23:27:31,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:32,276 INFO Connection check task start + +2025-09-24 23:27:32,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:32,277 INFO Out dated connection ,size=0 + +2025-09-24 23:27:32,277 INFO Connection check task end + +2025-09-24 23:27:34,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:35,277 INFO Connection check task start + +2025-09-24 23:27:35,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:35,277 INFO Out dated connection ,size=0 + +2025-09-24 23:27:35,277 INFO Connection check task end + +2025-09-24 23:27:37,719 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:38,278 INFO Connection check task start + +2025-09-24 23:27:38,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:38,278 INFO Out dated connection ,size=0 + +2025-09-24 23:27:38,278 INFO Connection check task end + +2025-09-24 23:27:40,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:41,279 INFO Connection check task start + +2025-09-24 23:27:41,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:41,279 INFO Out dated connection ,size=0 + +2025-09-24 23:27:41,279 INFO Connection check task end + +2025-09-24 23:27:43,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:44,280 INFO Connection check task start + +2025-09-24 23:27:44,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:44,280 INFO Out dated connection ,size=0 + +2025-09-24 23:27:44,280 INFO Connection check task end + +2025-09-24 23:27:46,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:47,281 INFO Connection check task start + +2025-09-24 23:27:47,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:47,281 INFO Out dated connection ,size=0 + +2025-09-24 23:27:47,281 INFO Connection check task end + +2025-09-24 23:27:49,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:50,282 INFO Connection check task start + +2025-09-24 23:27:50,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:50,282 INFO Out dated connection ,size=0 + +2025-09-24 23:27:50,282 INFO Connection check task end + +2025-09-24 23:27:52,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:53,282 INFO Connection check task start + +2025-09-24 23:27:53,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:53,282 INFO Out dated connection ,size=0 + +2025-09-24 23:27:53,282 INFO Connection check task end + +2025-09-24 23:27:55,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:56,282 INFO Connection check task start + +2025-09-24 23:27:56,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:56,283 INFO Out dated connection ,size=0 + +2025-09-24 23:27:56,283 INFO Connection check task end + +2025-09-24 23:27:58,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:27:59,283 INFO Connection check task start + +2025-09-24 23:27:59,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:27:59,283 INFO Out dated connection ,size=0 + +2025-09-24 23:27:59,283 INFO Connection check task end + +2025-09-24 23:28:01,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:02,284 INFO Connection check task start + +2025-09-24 23:28:02,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:02,284 INFO Out dated connection ,size=0 + +2025-09-24 23:28:02,284 INFO Connection check task end + +2025-09-24 23:28:04,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:05,284 INFO Connection check task start + +2025-09-24 23:28:05,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:05,284 INFO Out dated connection ,size=0 + +2025-09-24 23:28:05,284 INFO Connection check task end + +2025-09-24 23:28:07,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:08,285 INFO Connection check task start + +2025-09-24 23:28:08,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:08,285 INFO Out dated connection ,size=0 + +2025-09-24 23:28:08,285 INFO Connection check task end + +2025-09-24 23:28:10,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:11,285 INFO Connection check task start + +2025-09-24 23:28:11,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:11,285 INFO Out dated connection ,size=0 + +2025-09-24 23:28:11,285 INFO Connection check task end + +2025-09-24 23:28:13,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:14,286 INFO Connection check task start + +2025-09-24 23:28:14,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:14,286 INFO Out dated connection ,size=0 + +2025-09-24 23:28:14,286 INFO Connection check task end + +2025-09-24 23:28:16,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:17,287 INFO Connection check task start + +2025-09-24 23:28:17,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:17,287 INFO Out dated connection ,size=0 + +2025-09-24 23:28:17,287 INFO Connection check task end + +2025-09-24 23:28:19,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:20,288 INFO Connection check task start + +2025-09-24 23:28:20,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:20,288 INFO Out dated connection ,size=0 + +2025-09-24 23:28:20,288 INFO Connection check task end + +2025-09-24 23:28:22,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:23,289 INFO Connection check task start + +2025-09-24 23:28:23,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:23,289 INFO Out dated connection ,size=0 + +2025-09-24 23:28:23,289 INFO Connection check task end + +2025-09-24 23:28:25,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:26,290 INFO Connection check task start + +2025-09-24 23:28:26,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:26,290 INFO Out dated connection ,size=0 + +2025-09-24 23:28:26,290 INFO Connection check task end + +2025-09-24 23:28:28,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:29,290 INFO Connection check task start + +2025-09-24 23:28:29,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:29,290 INFO Out dated connection ,size=0 + +2025-09-24 23:28:29,290 INFO Connection check task end + +2025-09-24 23:28:31,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:32,291 INFO Connection check task start + +2025-09-24 23:28:32,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:32,292 INFO Out dated connection ,size=0 + +2025-09-24 23:28:32,292 INFO Connection check task end + +2025-09-24 23:28:34,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:35,293 INFO Connection check task start + +2025-09-24 23:28:35,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:35,293 INFO Out dated connection ,size=0 + +2025-09-24 23:28:35,293 INFO Connection check task end + +2025-09-24 23:28:37,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:38,294 INFO Connection check task start + +2025-09-24 23:28:38,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:38,294 INFO Out dated connection ,size=0 + +2025-09-24 23:28:38,294 INFO Connection check task end + +2025-09-24 23:28:40,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:41,294 INFO Connection check task start + +2025-09-24 23:28:41,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:41,294 INFO Out dated connection ,size=0 + +2025-09-24 23:28:41,294 INFO Connection check task end + +2025-09-24 23:28:43,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:44,295 INFO Connection check task start + +2025-09-24 23:28:44,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:44,295 INFO Out dated connection ,size=0 + +2025-09-24 23:28:44,295 INFO Connection check task end + +2025-09-24 23:28:46,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:47,295 INFO Connection check task start + +2025-09-24 23:28:47,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:47,296 INFO Out dated connection ,size=0 + +2025-09-24 23:28:47,296 INFO Connection check task end + +2025-09-24 23:28:49,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:50,296 INFO Connection check task start + +2025-09-24 23:28:50,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:50,296 INFO Out dated connection ,size=0 + +2025-09-24 23:28:50,296 INFO Connection check task end + +2025-09-24 23:28:52,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:53,297 INFO Connection check task start + +2025-09-24 23:28:53,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:53,297 INFO Out dated connection ,size=0 + +2025-09-24 23:28:53,297 INFO Connection check task end + +2025-09-24 23:28:55,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:56,298 INFO Connection check task start + +2025-09-24 23:28:56,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:56,298 INFO Out dated connection ,size=0 + +2025-09-24 23:28:56,298 INFO Connection check task end + +2025-09-24 23:28:58,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:28:59,299 INFO Connection check task start + +2025-09-24 23:28:59,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:28:59,299 INFO Out dated connection ,size=0 + +2025-09-24 23:28:59,299 INFO Connection check task end + +2025-09-24 23:29:01,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:02,299 INFO Connection check task start + +2025-09-24 23:29:02,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:02,299 INFO Out dated connection ,size=0 + +2025-09-24 23:29:02,299 INFO Connection check task end + +2025-09-24 23:29:04,741 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:05,299 INFO Connection check task start + +2025-09-24 23:29:05,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:05,300 INFO Out dated connection ,size=0 + +2025-09-24 23:29:05,300 INFO Connection check task end + +2025-09-24 23:29:07,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:08,301 INFO Connection check task start + +2025-09-24 23:29:08,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:08,301 INFO Out dated connection ,size=0 + +2025-09-24 23:29:08,301 INFO Connection check task end + +2025-09-24 23:29:10,743 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:11,302 INFO Connection check task start + +2025-09-24 23:29:11,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:11,302 INFO Out dated connection ,size=0 + +2025-09-24 23:29:11,302 INFO Connection check task end + +2025-09-24 23:29:13,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:14,302 INFO Connection check task start + +2025-09-24 23:29:14,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:14,302 INFO Out dated connection ,size=0 + +2025-09-24 23:29:14,302 INFO Connection check task end + +2025-09-24 23:29:16,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:17,303 INFO Connection check task start + +2025-09-24 23:29:17,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:17,303 INFO Out dated connection ,size=0 + +2025-09-24 23:29:17,303 INFO Connection check task end + +2025-09-24 23:29:19,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:20,304 INFO Connection check task start + +2025-09-24 23:29:20,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:20,305 INFO Out dated connection ,size=0 + +2025-09-24 23:29:20,305 INFO Connection check task end + +2025-09-24 23:29:22,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:23,306 INFO Connection check task start + +2025-09-24 23:29:23,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:23,306 INFO Out dated connection ,size=0 + +2025-09-24 23:29:23,306 INFO Connection check task end + +2025-09-24 23:29:25,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:26,307 INFO Connection check task start + +2025-09-24 23:29:26,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:26,307 INFO Out dated connection ,size=0 + +2025-09-24 23:29:26,307 INFO Connection check task end + +2025-09-24 23:29:28,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:29,308 INFO Connection check task start + +2025-09-24 23:29:29,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:29,308 INFO Out dated connection ,size=0 + +2025-09-24 23:29:29,308 INFO Connection check task end + +2025-09-24 23:29:31,746 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:32,309 INFO Connection check task start + +2025-09-24 23:29:32,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:32,309 INFO Out dated connection ,size=0 + +2025-09-24 23:29:32,309 INFO Connection check task end + +2025-09-24 23:29:34,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:35,309 INFO Connection check task start + +2025-09-24 23:29:35,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:35,309 INFO Out dated connection ,size=0 + +2025-09-24 23:29:35,309 INFO Connection check task end + +2025-09-24 23:29:37,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:38,310 INFO Connection check task start + +2025-09-24 23:29:38,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:38,310 INFO Out dated connection ,size=0 + +2025-09-24 23:29:38,310 INFO Connection check task end + +2025-09-24 23:29:40,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:41,311 INFO Connection check task start + +2025-09-24 23:29:41,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:41,311 INFO Out dated connection ,size=0 + +2025-09-24 23:29:41,311 INFO Connection check task end + +2025-09-24 23:29:43,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:44,312 INFO Connection check task start + +2025-09-24 23:29:44,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:44,312 INFO Out dated connection ,size=0 + +2025-09-24 23:29:44,312 INFO Connection check task end + +2025-09-24 23:29:46,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:47,312 INFO Connection check task start + +2025-09-24 23:29:47,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:47,312 INFO Out dated connection ,size=0 + +2025-09-24 23:29:47,312 INFO Connection check task end + +2025-09-24 23:29:49,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:50,313 INFO Connection check task start + +2025-09-24 23:29:50,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:50,313 INFO Out dated connection ,size=0 + +2025-09-24 23:29:50,313 INFO Connection check task end + +2025-09-24 23:29:52,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:53,314 INFO Connection check task start + +2025-09-24 23:29:53,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:53,314 INFO Out dated connection ,size=0 + +2025-09-24 23:29:53,314 INFO Connection check task end + +2025-09-24 23:29:55,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:56,315 INFO Connection check task start + +2025-09-24 23:29:56,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:56,315 INFO Out dated connection ,size=0 + +2025-09-24 23:29:56,315 INFO Connection check task end + +2025-09-24 23:29:58,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:29:59,316 INFO Connection check task start + +2025-09-24 23:29:59,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:29:59,316 INFO Out dated connection ,size=0 + +2025-09-24 23:29:59,316 INFO Connection check task end + +2025-09-24 23:30:01,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:02,316 INFO Connection check task start + +2025-09-24 23:30:02,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:02,316 INFO Out dated connection ,size=0 + +2025-09-24 23:30:02,316 INFO Connection check task end + +2025-09-24 23:30:04,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:05,316 INFO Connection check task start + +2025-09-24 23:30:05,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:05,317 INFO Out dated connection ,size=0 + +2025-09-24 23:30:05,317 INFO Connection check task end + +2025-09-24 23:30:07,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:08,317 INFO Connection check task start + +2025-09-24 23:30:08,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:08,317 INFO Out dated connection ,size=0 + +2025-09-24 23:30:08,317 INFO Connection check task end + +2025-09-24 23:30:10,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:11,318 INFO Connection check task start + +2025-09-24 23:30:11,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:11,318 INFO Out dated connection ,size=0 + +2025-09-24 23:30:11,318 INFO Connection check task end + +2025-09-24 23:30:13,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:14,319 INFO Connection check task start + +2025-09-24 23:30:14,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:14,320 INFO Out dated connection ,size=0 + +2025-09-24 23:30:14,320 INFO Connection check task end + +2025-09-24 23:30:16,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:17,321 INFO Connection check task start + +2025-09-24 23:30:17,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:17,322 INFO Out dated connection ,size=0 + +2025-09-24 23:30:17,322 INFO Connection check task end + +2025-09-24 23:30:19,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:20,322 INFO Connection check task start + +2025-09-24 23:30:20,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:20,322 INFO Out dated connection ,size=0 + +2025-09-24 23:30:20,322 INFO Connection check task end + +2025-09-24 23:30:22,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:23,323 INFO Connection check task start + +2025-09-24 23:30:23,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:23,324 INFO Out dated connection ,size=0 + +2025-09-24 23:30:23,324 INFO Connection check task end + +2025-09-24 23:30:25,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:26,324 INFO Connection check task start + +2025-09-24 23:30:26,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:26,324 INFO Out dated connection ,size=0 + +2025-09-24 23:30:26,324 INFO Connection check task end + +2025-09-24 23:30:28,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:29,325 INFO Connection check task start + +2025-09-24 23:30:29,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:29,326 INFO Out dated connection ,size=0 + +2025-09-24 23:30:29,326 INFO Connection check task end + +2025-09-24 23:30:31,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:32,326 INFO Connection check task start + +2025-09-24 23:30:32,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:32,326 INFO Out dated connection ,size=0 + +2025-09-24 23:30:32,326 INFO Connection check task end + +2025-09-24 23:30:34,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:35,327 INFO Connection check task start + +2025-09-24 23:30:35,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:35,327 INFO Out dated connection ,size=0 + +2025-09-24 23:30:35,327 INFO Connection check task end + +2025-09-24 23:30:37,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:38,327 INFO Connection check task start + +2025-09-24 23:30:38,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:38,328 INFO Out dated connection ,size=0 + +2025-09-24 23:30:38,328 INFO Connection check task end + +2025-09-24 23:30:40,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:41,328 INFO Connection check task start + +2025-09-24 23:30:41,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:41,328 INFO Out dated connection ,size=0 + +2025-09-24 23:30:41,328 INFO Connection check task end + +2025-09-24 23:30:43,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:44,329 INFO Connection check task start + +2025-09-24 23:30:44,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:44,329 INFO Out dated connection ,size=0 + +2025-09-24 23:30:44,329 INFO Connection check task end + +2025-09-24 23:30:46,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:47,330 INFO Connection check task start + +2025-09-24 23:30:47,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:47,330 INFO Out dated connection ,size=0 + +2025-09-24 23:30:47,330 INFO Connection check task end + +2025-09-24 23:30:49,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:50,330 INFO Connection check task start + +2025-09-24 23:30:50,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:50,330 INFO Out dated connection ,size=0 + +2025-09-24 23:30:50,330 INFO Connection check task end + +2025-09-24 23:30:52,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:53,331 INFO Connection check task start + +2025-09-24 23:30:53,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:53,331 INFO Out dated connection ,size=0 + +2025-09-24 23:30:53,331 INFO Connection check task end + +2025-09-24 23:30:55,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:56,332 INFO Connection check task start + +2025-09-24 23:30:56,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:56,332 INFO Out dated connection ,size=0 + +2025-09-24 23:30:56,332 INFO Connection check task end + +2025-09-24 23:30:58,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:30:59,333 INFO Connection check task start + +2025-09-24 23:30:59,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:30:59,333 INFO Out dated connection ,size=0 + +2025-09-24 23:30:59,333 INFO Connection check task end + +2025-09-24 23:31:01,767 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:02,333 INFO Connection check task start + +2025-09-24 23:31:02,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:02,333 INFO Out dated connection ,size=0 + +2025-09-24 23:31:02,333 INFO Connection check task end + +2025-09-24 23:31:04,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:05,334 INFO Connection check task start + +2025-09-24 23:31:05,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:05,334 INFO Out dated connection ,size=0 + +2025-09-24 23:31:05,334 INFO Connection check task end + +2025-09-24 23:31:07,769 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:08,335 INFO Connection check task start + +2025-09-24 23:31:08,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:08,335 INFO Out dated connection ,size=0 + +2025-09-24 23:31:08,335 INFO Connection check task end + +2025-09-24 23:31:10,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:11,335 INFO Connection check task start + +2025-09-24 23:31:11,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:11,336 INFO Out dated connection ,size=0 + +2025-09-24 23:31:11,336 INFO Connection check task end + +2025-09-24 23:31:13,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:14,336 INFO Connection check task start + +2025-09-24 23:31:14,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:14,336 INFO Out dated connection ,size=0 + +2025-09-24 23:31:14,336 INFO Connection check task end + +2025-09-24 23:31:16,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:17,337 INFO Connection check task start + +2025-09-24 23:31:17,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:17,337 INFO Out dated connection ,size=0 + +2025-09-24 23:31:17,337 INFO Connection check task end + +2025-09-24 23:31:19,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:20,338 INFO Connection check task start + +2025-09-24 23:31:20,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:20,338 INFO Out dated connection ,size=0 + +2025-09-24 23:31:20,338 INFO Connection check task end + +2025-09-24 23:31:22,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:23,339 INFO Connection check task start + +2025-09-24 23:31:23,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:23,339 INFO Out dated connection ,size=0 + +2025-09-24 23:31:23,339 INFO Connection check task end + +2025-09-24 23:31:25,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:26,340 INFO Connection check task start + +2025-09-24 23:31:26,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:26,340 INFO Out dated connection ,size=0 + +2025-09-24 23:31:26,340 INFO Connection check task end + +2025-09-24 23:31:28,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:29,352 INFO Connection check task start + +2025-09-24 23:31:29,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:29,352 INFO Out dated connection ,size=0 + +2025-09-24 23:31:29,352 INFO Connection check task end + +2025-09-24 23:31:31,775 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:32,352 INFO Connection check task start + +2025-09-24 23:31:32,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:32,352 INFO Out dated connection ,size=0 + +2025-09-24 23:31:32,352 INFO Connection check task end + +2025-09-24 23:31:34,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:35,352 INFO Connection check task start + +2025-09-24 23:31:35,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:35,353 INFO Out dated connection ,size=0 + +2025-09-24 23:31:35,353 INFO Connection check task end + +2025-09-24 23:31:37,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:38,353 INFO Connection check task start + +2025-09-24 23:31:38,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:38,353 INFO Out dated connection ,size=0 + +2025-09-24 23:31:38,353 INFO Connection check task end + +2025-09-24 23:31:40,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:41,353 INFO Connection check task start + +2025-09-24 23:31:41,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:41,353 INFO Out dated connection ,size=0 + +2025-09-24 23:31:41,354 INFO Connection check task end + +2025-09-24 23:31:43,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:44,354 INFO Connection check task start + +2025-09-24 23:31:44,354 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:44,354 INFO Out dated connection ,size=0 + +2025-09-24 23:31:44,355 INFO Connection check task end + +2025-09-24 23:31:46,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:47,355 INFO Connection check task start + +2025-09-24 23:31:47,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:47,355 INFO Out dated connection ,size=0 + +2025-09-24 23:31:47,355 INFO Connection check task end + +2025-09-24 23:31:49,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:50,356 INFO Connection check task start + +2025-09-24 23:31:50,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:50,356 INFO Out dated connection ,size=0 + +2025-09-24 23:31:50,356 INFO Connection check task end + +2025-09-24 23:31:52,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:53,356 INFO Connection check task start + +2025-09-24 23:31:53,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:53,356 INFO Out dated connection ,size=0 + +2025-09-24 23:31:53,357 INFO Connection check task end + +2025-09-24 23:31:55,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:56,357 INFO Connection check task start + +2025-09-24 23:31:56,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:56,357 INFO Out dated connection ,size=0 + +2025-09-24 23:31:56,357 INFO Connection check task end + +2025-09-24 23:31:58,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:31:59,358 INFO Connection check task start + +2025-09-24 23:31:59,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:31:59,358 INFO Out dated connection ,size=0 + +2025-09-24 23:31:59,358 INFO Connection check task end + +2025-09-24 23:32:01,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:02,359 INFO Connection check task start + +2025-09-24 23:32:02,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:02,359 INFO Out dated connection ,size=0 + +2025-09-24 23:32:02,359 INFO Connection check task end + +2025-09-24 23:32:04,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:05,359 INFO Connection check task start + +2025-09-24 23:32:05,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:05,360 INFO Out dated connection ,size=0 + +2025-09-24 23:32:05,360 INFO Connection check task end + +2025-09-24 23:32:07,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:08,360 INFO Connection check task start + +2025-09-24 23:32:08,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:08,360 INFO Out dated connection ,size=0 + +2025-09-24 23:32:08,360 INFO Connection check task end + +2025-09-24 23:32:10,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:11,361 INFO Connection check task start + +2025-09-24 23:32:11,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:11,361 INFO Out dated connection ,size=0 + +2025-09-24 23:32:11,361 INFO Connection check task end + +2025-09-24 23:32:13,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:14,361 INFO Connection check task start + +2025-09-24 23:32:14,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:14,362 INFO Out dated connection ,size=0 + +2025-09-24 23:32:14,362 INFO Connection check task end + +2025-09-24 23:32:16,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:17,363 INFO Connection check task start + +2025-09-24 23:32:17,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:17,363 INFO Out dated connection ,size=0 + +2025-09-24 23:32:17,363 INFO Connection check task end + +2025-09-24 23:32:19,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:20,364 INFO Connection check task start + +2025-09-24 23:32:20,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:20,364 INFO Out dated connection ,size=0 + +2025-09-24 23:32:20,364 INFO Connection check task end + +2025-09-24 23:32:22,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:23,364 INFO Connection check task start + +2025-09-24 23:32:23,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:23,365 INFO Out dated connection ,size=0 + +2025-09-24 23:32:23,365 INFO Connection check task end + +2025-09-24 23:32:25,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:26,365 INFO Connection check task start + +2025-09-24 23:32:26,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:26,365 INFO Out dated connection ,size=0 + +2025-09-24 23:32:26,365 INFO Connection check task end + +2025-09-24 23:32:28,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:29,373 INFO Connection check task start + +2025-09-24 23:32:29,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:29,373 INFO Out dated connection ,size=0 + +2025-09-24 23:32:29,373 INFO Connection check task end + +2025-09-24 23:32:31,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:32,374 INFO Connection check task start + +2025-09-24 23:32:32,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:32,374 INFO Out dated connection ,size=0 + +2025-09-24 23:32:32,374 INFO Connection check task end + +2025-09-24 23:32:34,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:35,374 INFO Connection check task start + +2025-09-24 23:32:35,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:35,376 INFO Out dated connection ,size=0 + +2025-09-24 23:32:35,376 INFO Connection check task end + +2025-09-24 23:32:37,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:38,376 INFO Connection check task start + +2025-09-24 23:32:38,376 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:38,376 INFO Out dated connection ,size=0 + +2025-09-24 23:32:38,376 INFO Connection check task end + +2025-09-24 23:32:40,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:41,377 INFO Connection check task start + +2025-09-24 23:32:41,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:41,378 INFO Out dated connection ,size=0 + +2025-09-24 23:32:41,378 INFO Connection check task end + +2025-09-24 23:32:43,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:44,379 INFO Connection check task start + +2025-09-24 23:32:44,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:44,381 INFO Out dated connection ,size=0 + +2025-09-24 23:32:44,381 INFO Connection check task end + +2025-09-24 23:32:46,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:47,381 INFO Connection check task start + +2025-09-24 23:32:47,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:47,381 INFO Out dated connection ,size=0 + +2025-09-24 23:32:47,381 INFO Connection check task end + +2025-09-24 23:32:49,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:50,382 INFO Connection check task start + +2025-09-24 23:32:50,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:50,382 INFO Out dated connection ,size=0 + +2025-09-24 23:32:50,382 INFO Connection check task end + +2025-09-24 23:32:52,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:53,383 INFO Connection check task start + +2025-09-24 23:32:53,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:53,383 INFO Out dated connection ,size=0 + +2025-09-24 23:32:53,383 INFO Connection check task end + +2025-09-24 23:32:55,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:56,383 INFO Connection check task start + +2025-09-24 23:32:56,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:56,384 INFO Out dated connection ,size=0 + +2025-09-24 23:32:56,384 INFO Connection check task end + +2025-09-24 23:32:58,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:32:59,385 INFO Connection check task start + +2025-09-24 23:32:59,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:32:59,385 INFO Out dated connection ,size=0 + +2025-09-24 23:32:59,385 INFO Connection check task end + +2025-09-24 23:33:01,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:02,386 INFO Connection check task start + +2025-09-24 23:33:02,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:02,386 INFO Out dated connection ,size=0 + +2025-09-24 23:33:02,386 INFO Connection check task end + +2025-09-24 23:33:04,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:05,386 INFO Connection check task start + +2025-09-24 23:33:05,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:05,386 INFO Out dated connection ,size=0 + +2025-09-24 23:33:05,386 INFO Connection check task end + +2025-09-24 23:33:07,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:08,386 INFO Connection check task start + +2025-09-24 23:33:08,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:08,387 INFO Out dated connection ,size=0 + +2025-09-24 23:33:08,387 INFO Connection check task end + +2025-09-24 23:33:10,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:11,388 INFO Connection check task start + +2025-09-24 23:33:11,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:11,388 INFO Out dated connection ,size=0 + +2025-09-24 23:33:11,388 INFO Connection check task end + +2025-09-24 23:33:13,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:14,389 INFO Connection check task start + +2025-09-24 23:33:14,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:14,390 INFO Out dated connection ,size=0 + +2025-09-24 23:33:14,390 INFO Connection check task end + +2025-09-24 23:33:16,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:17,390 INFO Connection check task start + +2025-09-24 23:33:17,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:17,391 INFO Out dated connection ,size=0 + +2025-09-24 23:33:17,391 INFO Connection check task end + +2025-09-24 23:33:19,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:20,392 INFO Connection check task start + +2025-09-24 23:33:20,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:20,392 INFO Out dated connection ,size=0 + +2025-09-24 23:33:20,392 INFO Connection check task end + +2025-09-24 23:33:22,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:23,392 INFO Connection check task start + +2025-09-24 23:33:23,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:23,393 INFO Out dated connection ,size=0 + +2025-09-24 23:33:23,393 INFO Connection check task end + +2025-09-24 23:33:25,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:26,393 INFO Connection check task start + +2025-09-24 23:33:26,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:26,393 INFO Out dated connection ,size=0 + +2025-09-24 23:33:26,393 INFO Connection check task end + +2025-09-24 23:33:28,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:29,394 INFO Connection check task start + +2025-09-24 23:33:29,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:29,394 INFO Out dated connection ,size=0 + +2025-09-24 23:33:29,394 INFO Connection check task end + +2025-09-24 23:33:31,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:32,395 INFO Connection check task start + +2025-09-24 23:33:32,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:32,395 INFO Out dated connection ,size=0 + +2025-09-24 23:33:32,395 INFO Connection check task end + +2025-09-24 23:33:34,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:35,396 INFO Connection check task start + +2025-09-24 23:33:35,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:35,396 INFO Out dated connection ,size=0 + +2025-09-24 23:33:35,396 INFO Connection check task end + +2025-09-24 23:33:37,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:38,397 INFO Connection check task start + +2025-09-24 23:33:38,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:38,397 INFO Out dated connection ,size=0 + +2025-09-24 23:33:38,397 INFO Connection check task end + +2025-09-24 23:33:40,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:41,397 INFO Connection check task start + +2025-09-24 23:33:41,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:41,398 INFO Out dated connection ,size=0 + +2025-09-24 23:33:41,398 INFO Connection check task end + +2025-09-24 23:33:43,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:44,398 INFO Connection check task start + +2025-09-24 23:33:44,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:44,398 INFO Out dated connection ,size=0 + +2025-09-24 23:33:44,398 INFO Connection check task end + +2025-09-24 23:33:46,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:47,399 INFO Connection check task start + +2025-09-24 23:33:47,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:47,399 INFO Out dated connection ,size=0 + +2025-09-24 23:33:47,399 INFO Connection check task end + +2025-09-24 23:33:49,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:50,400 INFO Connection check task start + +2025-09-24 23:33:50,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:50,400 INFO Out dated connection ,size=0 + +2025-09-24 23:33:50,400 INFO Connection check task end + +2025-09-24 23:33:52,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:53,401 INFO Connection check task start + +2025-09-24 23:33:53,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:53,402 INFO Out dated connection ,size=0 + +2025-09-24 23:33:53,402 INFO Connection check task end + +2025-09-24 23:33:55,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:56,403 INFO Connection check task start + +2025-09-24 23:33:56,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:56,403 INFO Out dated connection ,size=0 + +2025-09-24 23:33:56,403 INFO Connection check task end + +2025-09-24 23:33:58,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:33:59,404 INFO Connection check task start + +2025-09-24 23:33:59,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:33:59,404 INFO Out dated connection ,size=0 + +2025-09-24 23:33:59,404 INFO Connection check task end + +2025-09-24 23:34:01,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:02,405 INFO Connection check task start + +2025-09-24 23:34:02,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:02,405 INFO Out dated connection ,size=0 + +2025-09-24 23:34:02,406 INFO Connection check task end + +2025-09-24 23:34:04,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:05,406 INFO Connection check task start + +2025-09-24 23:34:05,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:05,406 INFO Out dated connection ,size=0 + +2025-09-24 23:34:05,406 INFO Connection check task end + +2025-09-24 23:34:07,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:08,407 INFO Connection check task start + +2025-09-24 23:34:08,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:08,408 INFO Out dated connection ,size=0 + +2025-09-24 23:34:08,408 INFO Connection check task end + +2025-09-24 23:34:10,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:11,409 INFO Connection check task start + +2025-09-24 23:34:11,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:11,410 INFO Out dated connection ,size=0 + +2025-09-24 23:34:11,410 INFO Connection check task end + +2025-09-24 23:34:13,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:14,410 INFO Connection check task start + +2025-09-24 23:34:14,411 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:14,411 INFO Out dated connection ,size=0 + +2025-09-24 23:34:14,411 INFO Connection check task end + +2025-09-24 23:34:16,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:17,412 INFO Connection check task start + +2025-09-24 23:34:17,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:17,412 INFO Out dated connection ,size=0 + +2025-09-24 23:34:17,412 INFO Connection check task end + +2025-09-24 23:34:19,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:20,413 INFO Connection check task start + +2025-09-24 23:34:20,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:20,413 INFO Out dated connection ,size=0 + +2025-09-24 23:34:20,413 INFO Connection check task end + +2025-09-24 23:34:22,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:23,414 INFO Connection check task start + +2025-09-24 23:34:23,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:23,414 INFO Out dated connection ,size=0 + +2025-09-24 23:34:23,414 INFO Connection check task end + +2025-09-24 23:34:25,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:26,415 INFO Connection check task start + +2025-09-24 23:34:26,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:26,415 INFO Out dated connection ,size=0 + +2025-09-24 23:34:26,415 INFO Connection check task end + +2025-09-24 23:34:28,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:29,416 INFO Connection check task start + +2025-09-24 23:34:29,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:29,416 INFO Out dated connection ,size=0 + +2025-09-24 23:34:29,416 INFO Connection check task end + +2025-09-24 23:34:31,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:32,416 INFO Connection check task start + +2025-09-24 23:34:32,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:32,416 INFO Out dated connection ,size=0 + +2025-09-24 23:34:32,416 INFO Connection check task end + +2025-09-24 23:34:34,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:35,416 INFO Connection check task start + +2025-09-24 23:34:35,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:35,416 INFO Out dated connection ,size=0 + +2025-09-24 23:34:35,417 INFO Connection check task end + +2025-09-24 23:34:37,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:38,417 INFO Connection check task start + +2025-09-24 23:34:38,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:38,417 INFO Out dated connection ,size=0 + +2025-09-24 23:34:38,417 INFO Connection check task end + +2025-09-24 23:34:40,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:41,418 INFO Connection check task start + +2025-09-24 23:34:41,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:41,418 INFO Out dated connection ,size=0 + +2025-09-24 23:34:41,418 INFO Connection check task end + +2025-09-24 23:34:43,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:44,419 INFO Connection check task start + +2025-09-24 23:34:44,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:44,419 INFO Out dated connection ,size=0 + +2025-09-24 23:34:44,419 INFO Connection check task end + +2025-09-24 23:34:46,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:47,419 INFO Connection check task start + +2025-09-24 23:34:47,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:47,420 INFO Out dated connection ,size=0 + +2025-09-24 23:34:47,420 INFO Connection check task end + +2025-09-24 23:34:49,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:50,420 INFO Connection check task start + +2025-09-24 23:34:50,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:50,421 INFO Out dated connection ,size=0 + +2025-09-24 23:34:50,421 INFO Connection check task end + +2025-09-24 23:34:52,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:53,422 INFO Connection check task start + +2025-09-24 23:34:53,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:53,422 INFO Out dated connection ,size=0 + +2025-09-24 23:34:53,422 INFO Connection check task end + +2025-09-24 23:34:55,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:56,423 INFO Connection check task start + +2025-09-24 23:34:56,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:56,424 INFO Out dated connection ,size=0 + +2025-09-24 23:34:56,424 INFO Connection check task end + +2025-09-24 23:34:58,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:34:59,426 INFO Connection check task start + +2025-09-24 23:34:59,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:34:59,426 INFO Out dated connection ,size=0 + +2025-09-24 23:34:59,426 INFO Connection check task end + +2025-09-24 23:35:01,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:02,427 INFO Connection check task start + +2025-09-24 23:35:02,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:02,427 INFO Out dated connection ,size=0 + +2025-09-24 23:35:02,427 INFO Connection check task end + +2025-09-24 23:35:04,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:05,427 INFO Connection check task start + +2025-09-24 23:35:05,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:05,428 INFO Out dated connection ,size=0 + +2025-09-24 23:35:05,428 INFO Connection check task end + +2025-09-24 23:35:07,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:08,429 INFO Connection check task start + +2025-09-24 23:35:08,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:08,429 INFO Out dated connection ,size=0 + +2025-09-24 23:35:08,429 INFO Connection check task end + +2025-09-24 23:35:10,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:11,430 INFO Connection check task start + +2025-09-24 23:35:11,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:11,430 INFO Out dated connection ,size=0 + +2025-09-24 23:35:11,430 INFO Connection check task end + +2025-09-24 23:35:13,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:14,431 INFO Connection check task start + +2025-09-24 23:35:14,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:14,433 INFO Out dated connection ,size=0 + +2025-09-24 23:35:14,433 INFO Connection check task end + +2025-09-24 23:35:16,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:17,434 INFO Connection check task start + +2025-09-24 23:35:17,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:17,434 INFO Out dated connection ,size=0 + +2025-09-24 23:35:17,434 INFO Connection check task end + +2025-09-24 23:35:19,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:20,435 INFO Connection check task start + +2025-09-24 23:35:20,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:20,435 INFO Out dated connection ,size=0 + +2025-09-24 23:35:20,435 INFO Connection check task end + +2025-09-24 23:35:22,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:23,436 INFO Connection check task start + +2025-09-24 23:35:23,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:23,436 INFO Out dated connection ,size=0 + +2025-09-24 23:35:23,436 INFO Connection check task end + +2025-09-24 23:35:25,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:26,437 INFO Connection check task start + +2025-09-24 23:35:26,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:26,437 INFO Out dated connection ,size=0 + +2025-09-24 23:35:26,437 INFO Connection check task end + +2025-09-24 23:35:28,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:29,438 INFO Connection check task start + +2025-09-24 23:35:29,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:29,438 INFO Out dated connection ,size=0 + +2025-09-24 23:35:29,438 INFO Connection check task end + +2025-09-24 23:35:31,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:32,439 INFO Connection check task start + +2025-09-24 23:35:32,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:32,439 INFO Out dated connection ,size=0 + +2025-09-24 23:35:32,439 INFO Connection check task end + +2025-09-24 23:35:34,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:35,439 INFO Connection check task start + +2025-09-24 23:35:35,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:35,440 INFO Out dated connection ,size=0 + +2025-09-24 23:35:35,440 INFO Connection check task end + +2025-09-24 23:35:37,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:38,440 INFO Connection check task start + +2025-09-24 23:35:38,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:38,440 INFO Out dated connection ,size=0 + +2025-09-24 23:35:38,440 INFO Connection check task end + +2025-09-24 23:35:40,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:41,441 INFO Connection check task start + +2025-09-24 23:35:41,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:41,442 INFO Out dated connection ,size=0 + +2025-09-24 23:35:41,442 INFO Connection check task end + +2025-09-24 23:35:43,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:44,442 INFO Connection check task start + +2025-09-24 23:35:44,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:44,442 INFO Out dated connection ,size=0 + +2025-09-24 23:35:44,442 INFO Connection check task end + +2025-09-24 23:35:46,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:47,442 INFO Connection check task start + +2025-09-24 23:35:47,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:47,443 INFO Out dated connection ,size=0 + +2025-09-24 23:35:47,443 INFO Connection check task end + +2025-09-24 23:35:49,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:50,443 INFO Connection check task start + +2025-09-24 23:35:50,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:50,443 INFO Out dated connection ,size=0 + +2025-09-24 23:35:50,443 INFO Connection check task end + +2025-09-24 23:35:52,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:53,443 INFO Connection check task start + +2025-09-24 23:35:53,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:53,443 INFO Out dated connection ,size=0 + +2025-09-24 23:35:53,443 INFO Connection check task end + +2025-09-24 23:35:55,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:56,444 INFO Connection check task start + +2025-09-24 23:35:56,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:56,444 INFO Out dated connection ,size=0 + +2025-09-24 23:35:56,444 INFO Connection check task end + +2025-09-24 23:35:58,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:35:59,445 INFO Connection check task start + +2025-09-24 23:35:59,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:35:59,445 INFO Out dated connection ,size=0 + +2025-09-24 23:35:59,445 INFO Connection check task end + +2025-09-24 23:36:01,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:02,445 INFO Connection check task start + +2025-09-24 23:36:02,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:02,446 INFO Out dated connection ,size=0 + +2025-09-24 23:36:02,446 INFO Connection check task end + +2025-09-24 23:36:04,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:05,446 INFO Connection check task start + +2025-09-24 23:36:05,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:05,446 INFO Out dated connection ,size=0 + +2025-09-24 23:36:05,446 INFO Connection check task end + +2025-09-24 23:36:07,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:08,447 INFO Connection check task start + +2025-09-24 23:36:08,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:08,447 INFO Out dated connection ,size=0 + +2025-09-24 23:36:08,447 INFO Connection check task end + +2025-09-24 23:36:10,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:11,448 INFO Connection check task start + +2025-09-24 23:36:11,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:11,448 INFO Out dated connection ,size=0 + +2025-09-24 23:36:11,448 INFO Connection check task end + +2025-09-24 23:36:13,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:14,449 INFO Connection check task start + +2025-09-24 23:36:14,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:14,449 INFO Out dated connection ,size=0 + +2025-09-24 23:36:14,449 INFO Connection check task end + +2025-09-24 23:36:16,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:17,450 INFO Connection check task start + +2025-09-24 23:36:17,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:17,450 INFO Out dated connection ,size=0 + +2025-09-24 23:36:17,450 INFO Connection check task end + +2025-09-24 23:36:19,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:20,451 INFO Connection check task start + +2025-09-24 23:36:20,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:20,451 INFO Out dated connection ,size=0 + +2025-09-24 23:36:20,451 INFO Connection check task end + +2025-09-24 23:36:22,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:23,452 INFO Connection check task start + +2025-09-24 23:36:23,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:23,453 INFO Out dated connection ,size=0 + +2025-09-24 23:36:23,453 INFO Connection check task end + +2025-09-24 23:36:25,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:26,454 INFO Connection check task start + +2025-09-24 23:36:26,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:26,454 INFO Out dated connection ,size=0 + +2025-09-24 23:36:26,454 INFO Connection check task end + +2025-09-24 23:36:28,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:29,454 INFO Connection check task start + +2025-09-24 23:36:29,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:29,455 INFO Out dated connection ,size=0 + +2025-09-24 23:36:29,455 INFO Connection check task end + +2025-09-24 23:36:31,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:32,455 INFO Connection check task start + +2025-09-24 23:36:32,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:32,455 INFO Out dated connection ,size=0 + +2025-09-24 23:36:32,455 INFO Connection check task end + +2025-09-24 23:36:34,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:35,456 INFO Connection check task start + +2025-09-24 23:36:35,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:35,456 INFO Out dated connection ,size=0 + +2025-09-24 23:36:35,456 INFO Connection check task end + +2025-09-24 23:36:37,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:38,457 INFO Connection check task start + +2025-09-24 23:36:38,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:38,457 INFO Out dated connection ,size=0 + +2025-09-24 23:36:38,457 INFO Connection check task end + +2025-09-24 23:36:40,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:41,458 INFO Connection check task start + +2025-09-24 23:36:41,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:41,459 INFO Out dated connection ,size=0 + +2025-09-24 23:36:41,459 INFO Connection check task end + +2025-09-24 23:36:43,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:44,459 INFO Connection check task start + +2025-09-24 23:36:44,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:44,459 INFO Out dated connection ,size=0 + +2025-09-24 23:36:44,459 INFO Connection check task end + +2025-09-24 23:36:46,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:47,459 INFO Connection check task start + +2025-09-24 23:36:47,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:47,460 INFO Out dated connection ,size=0 + +2025-09-24 23:36:47,460 INFO Connection check task end + +2025-09-24 23:36:49,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:50,461 INFO Connection check task start + +2025-09-24 23:36:50,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:50,461 INFO Out dated connection ,size=0 + +2025-09-24 23:36:50,461 INFO Connection check task end + +2025-09-24 23:36:52,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:53,461 INFO Connection check task start + +2025-09-24 23:36:53,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:53,462 INFO Out dated connection ,size=0 + +2025-09-24 23:36:53,462 INFO Connection check task end + +2025-09-24 23:36:55,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:56,462 INFO Connection check task start + +2025-09-24 23:36:56,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:56,462 INFO Out dated connection ,size=0 + +2025-09-24 23:36:56,462 INFO Connection check task end + +2025-09-24 23:36:58,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:36:59,463 INFO Connection check task start + +2025-09-24 23:36:59,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:36:59,463 INFO Out dated connection ,size=0 + +2025-09-24 23:36:59,463 INFO Connection check task end + +2025-09-24 23:37:01,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:02,469 INFO Connection check task start + +2025-09-24 23:37:02,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:02,469 INFO Out dated connection ,size=0 + +2025-09-24 23:37:02,469 INFO Connection check task end + +2025-09-24 23:37:04,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:05,469 INFO Connection check task start + +2025-09-24 23:37:05,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:05,470 INFO Out dated connection ,size=0 + +2025-09-24 23:37:05,470 INFO Connection check task end + +2025-09-24 23:37:07,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:08,470 INFO Connection check task start + +2025-09-24 23:37:08,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:08,470 INFO Out dated connection ,size=0 + +2025-09-24 23:37:08,470 INFO Connection check task end + +2025-09-24 23:37:10,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:11,471 INFO Connection check task start + +2025-09-24 23:37:11,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:11,472 INFO Out dated connection ,size=0 + +2025-09-24 23:37:11,472 INFO Connection check task end + +2025-09-24 23:37:13,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:14,472 INFO Connection check task start + +2025-09-24 23:37:14,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:14,472 INFO Out dated connection ,size=0 + +2025-09-24 23:37:14,472 INFO Connection check task end + +2025-09-24 23:37:16,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:17,472 INFO Connection check task start + +2025-09-24 23:37:17,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:17,473 INFO Out dated connection ,size=0 + +2025-09-24 23:37:17,473 INFO Connection check task end + +2025-09-24 23:37:19,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:20,473 INFO Connection check task start + +2025-09-24 23:37:20,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:20,473 INFO Out dated connection ,size=0 + +2025-09-24 23:37:20,473 INFO Connection check task end + +2025-09-24 23:37:22,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:23,473 INFO Connection check task start + +2025-09-24 23:37:23,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:23,474 INFO Out dated connection ,size=0 + +2025-09-24 23:37:23,474 INFO Connection check task end + +2025-09-24 23:37:25,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:26,474 INFO Connection check task start + +2025-09-24 23:37:26,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:26,474 INFO Out dated connection ,size=0 + +2025-09-24 23:37:26,474 INFO Connection check task end + +2025-09-24 23:37:28,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:29,475 INFO Connection check task start + +2025-09-24 23:37:29,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:29,476 INFO Out dated connection ,size=0 + +2025-09-24 23:37:29,476 INFO Connection check task end + +2025-09-24 23:37:31,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:32,476 INFO Connection check task start + +2025-09-24 23:37:32,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:32,476 INFO Out dated connection ,size=0 + +2025-09-24 23:37:32,476 INFO Connection check task end + +2025-09-24 23:37:34,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:35,477 INFO Connection check task start + +2025-09-24 23:37:35,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:35,477 INFO Out dated connection ,size=0 + +2025-09-24 23:37:35,477 INFO Connection check task end + +2025-09-24 23:37:37,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:38,478 INFO Connection check task start + +2025-09-24 23:37:38,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:38,478 INFO Out dated connection ,size=0 + +2025-09-24 23:37:38,478 INFO Connection check task end + +2025-09-24 23:37:40,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:41,478 INFO Connection check task start + +2025-09-24 23:37:41,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:41,478 INFO Out dated connection ,size=0 + +2025-09-24 23:37:41,478 INFO Connection check task end + +2025-09-24 23:37:43,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:44,479 INFO Connection check task start + +2025-09-24 23:37:44,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:44,479 INFO Out dated connection ,size=0 + +2025-09-24 23:37:44,479 INFO Connection check task end + +2025-09-24 23:37:46,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:47,479 INFO Connection check task start + +2025-09-24 23:37:47,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:47,479 INFO Out dated connection ,size=0 + +2025-09-24 23:37:47,479 INFO Connection check task end + +2025-09-24 23:37:49,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:50,480 INFO Connection check task start + +2025-09-24 23:37:50,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:50,480 INFO Out dated connection ,size=0 + +2025-09-24 23:37:50,480 INFO Connection check task end + +2025-09-24 23:37:52,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:53,480 INFO Connection check task start + +2025-09-24 23:37:53,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:53,481 INFO Out dated connection ,size=0 + +2025-09-24 23:37:53,481 INFO Connection check task end + +2025-09-24 23:37:55,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:56,481 INFO Connection check task start + +2025-09-24 23:37:56,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:56,481 INFO Out dated connection ,size=0 + +2025-09-24 23:37:56,481 INFO Connection check task end + +2025-09-24 23:37:58,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:37:59,481 INFO Connection check task start + +2025-09-24 23:37:59,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:37:59,482 INFO Out dated connection ,size=0 + +2025-09-24 23:37:59,482 INFO Connection check task end + +2025-09-24 23:38:01,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:02,483 INFO Connection check task start + +2025-09-24 23:38:02,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:02,483 INFO Out dated connection ,size=0 + +2025-09-24 23:38:02,483 INFO Connection check task end + +2025-09-24 23:38:04,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:05,483 INFO Connection check task start + +2025-09-24 23:38:05,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:05,483 INFO Out dated connection ,size=0 + +2025-09-24 23:38:05,483 INFO Connection check task end + +2025-09-24 23:38:07,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:08,492 INFO Connection check task start + +2025-09-24 23:38:08,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:08,492 INFO Out dated connection ,size=0 + +2025-09-24 23:38:08,492 INFO Connection check task end + +2025-09-24 23:38:10,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:11,493 INFO Connection check task start + +2025-09-24 23:38:11,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:11,493 INFO Out dated connection ,size=0 + +2025-09-24 23:38:11,493 INFO Connection check task end + +2025-09-24 23:38:13,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:14,493 INFO Connection check task start + +2025-09-24 23:38:14,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:14,493 INFO Out dated connection ,size=0 + +2025-09-24 23:38:14,493 INFO Connection check task end + +2025-09-24 23:38:16,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:17,494 INFO Connection check task start + +2025-09-24 23:38:17,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:17,494 INFO Out dated connection ,size=0 + +2025-09-24 23:38:17,494 INFO Connection check task end + +2025-09-24 23:38:19,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:20,494 INFO Connection check task start + +2025-09-24 23:38:20,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:20,494 INFO Out dated connection ,size=0 + +2025-09-24 23:38:20,494 INFO Connection check task end + +2025-09-24 23:38:22,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:23,495 INFO Connection check task start + +2025-09-24 23:38:23,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:23,516 INFO Out dated connection ,size=0 + +2025-09-24 23:38:23,516 INFO Connection check task end + +2025-09-24 23:38:25,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:26,516 INFO Connection check task start + +2025-09-24 23:38:26,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:26,517 INFO Out dated connection ,size=0 + +2025-09-24 23:38:26,517 INFO Connection check task end + +2025-09-24 23:38:28,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:29,517 INFO Connection check task start + +2025-09-24 23:38:29,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:29,518 INFO Out dated connection ,size=0 + +2025-09-24 23:38:29,518 INFO Connection check task end + +2025-09-24 23:38:31,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:32,518 INFO Connection check task start + +2025-09-24 23:38:32,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:32,518 INFO Out dated connection ,size=0 + +2025-09-24 23:38:32,518 INFO Connection check task end + +2025-09-24 23:38:34,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:35,519 INFO Connection check task start + +2025-09-24 23:38:35,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:35,519 INFO Out dated connection ,size=0 + +2025-09-24 23:38:35,519 INFO Connection check task end + +2025-09-24 23:38:37,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:38,520 INFO Connection check task start + +2025-09-24 23:38:38,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:38,520 INFO Out dated connection ,size=0 + +2025-09-24 23:38:38,520 INFO Connection check task end + +2025-09-24 23:38:40,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:41,520 INFO Connection check task start + +2025-09-24 23:38:41,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:41,521 INFO Out dated connection ,size=0 + +2025-09-24 23:38:41,521 INFO Connection check task end + +2025-09-24 23:38:43,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:44,521 INFO Connection check task start + +2025-09-24 23:38:44,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:44,521 INFO Out dated connection ,size=0 + +2025-09-24 23:38:44,521 INFO Connection check task end + +2025-09-24 23:38:46,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:47,522 INFO Connection check task start + +2025-09-24 23:38:47,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:47,522 INFO Out dated connection ,size=0 + +2025-09-24 23:38:47,522 INFO Connection check task end + +2025-09-24 23:38:49,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:50,523 INFO Connection check task start + +2025-09-24 23:38:50,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:50,523 INFO Out dated connection ,size=0 + +2025-09-24 23:38:50,523 INFO Connection check task end + +2025-09-24 23:38:52,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:53,523 INFO Connection check task start + +2025-09-24 23:38:53,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:53,523 INFO Out dated connection ,size=0 + +2025-09-24 23:38:53,523 INFO Connection check task end + +2025-09-24 23:38:55,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:56,524 INFO Connection check task start + +2025-09-24 23:38:56,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:56,524 INFO Out dated connection ,size=0 + +2025-09-24 23:38:56,524 INFO Connection check task end + +2025-09-24 23:38:58,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:38:59,525 INFO Connection check task start + +2025-09-24 23:38:59,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:38:59,525 INFO Out dated connection ,size=0 + +2025-09-24 23:38:59,526 INFO Connection check task end + +2025-09-24 23:39:01,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:02,526 INFO Connection check task start + +2025-09-24 23:39:02,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:02,526 INFO Out dated connection ,size=0 + +2025-09-24 23:39:02,526 INFO Connection check task end + +2025-09-24 23:39:04,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:05,526 INFO Connection check task start + +2025-09-24 23:39:05,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:05,527 INFO Out dated connection ,size=0 + +2025-09-24 23:39:05,527 INFO Connection check task end + +2025-09-24 23:39:07,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:08,527 INFO Connection check task start + +2025-09-24 23:39:08,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:08,527 INFO Out dated connection ,size=0 + +2025-09-24 23:39:08,527 INFO Connection check task end + +2025-09-24 23:39:10,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:11,528 INFO Connection check task start + +2025-09-24 23:39:11,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:11,528 INFO Out dated connection ,size=0 + +2025-09-24 23:39:11,528 INFO Connection check task end + +2025-09-24 23:39:13,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:14,528 INFO Connection check task start + +2025-09-24 23:39:14,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:14,529 INFO Out dated connection ,size=0 + +2025-09-24 23:39:14,529 INFO Connection check task end + +2025-09-24 23:39:16,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:17,529 INFO Connection check task start + +2025-09-24 23:39:17,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:17,529 INFO Out dated connection ,size=0 + +2025-09-24 23:39:17,529 INFO Connection check task end + +2025-09-24 23:39:19,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:20,529 INFO Connection check task start + +2025-09-24 23:39:20,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:20,529 INFO Out dated connection ,size=0 + +2025-09-24 23:39:20,529 INFO Connection check task end + +2025-09-24 23:39:22,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:23,530 INFO Connection check task start + +2025-09-24 23:39:23,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:23,530 INFO Out dated connection ,size=0 + +2025-09-24 23:39:23,530 INFO Connection check task end + +2025-09-24 23:39:25,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:26,531 INFO Connection check task start + +2025-09-24 23:39:26,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:26,531 INFO Out dated connection ,size=0 + +2025-09-24 23:39:26,531 INFO Connection check task end + +2025-09-24 23:39:28,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:29,531 INFO Connection check task start + +2025-09-24 23:39:29,531 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:29,531 INFO Out dated connection ,size=0 + +2025-09-24 23:39:29,531 INFO Connection check task end + +2025-09-24 23:39:31,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:32,532 INFO Connection check task start + +2025-09-24 23:39:32,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:32,532 INFO Out dated connection ,size=0 + +2025-09-24 23:39:32,532 INFO Connection check task end + +2025-09-24 23:39:34,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:35,533 INFO Connection check task start + +2025-09-24 23:39:35,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:35,533 INFO Out dated connection ,size=0 + +2025-09-24 23:39:35,533 INFO Connection check task end + +2025-09-24 23:39:37,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:38,533 INFO Connection check task start + +2025-09-24 23:39:38,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:38,534 INFO Out dated connection ,size=0 + +2025-09-24 23:39:38,534 INFO Connection check task end + +2025-09-24 23:39:40,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:41,534 INFO Connection check task start + +2025-09-24 23:39:41,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:41,534 INFO Out dated connection ,size=0 + +2025-09-24 23:39:41,534 INFO Connection check task end + +2025-09-24 23:39:43,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:44,535 INFO Connection check task start + +2025-09-24 23:39:44,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:44,535 INFO Out dated connection ,size=0 + +2025-09-24 23:39:44,536 INFO Connection check task end + +2025-09-24 23:39:46,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:47,537 INFO Connection check task start + +2025-09-24 23:39:47,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:47,537 INFO Out dated connection ,size=0 + +2025-09-24 23:39:47,537 INFO Connection check task end + +2025-09-24 23:39:49,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:50,538 INFO Connection check task start + +2025-09-24 23:39:50,538 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:50,538 INFO Out dated connection ,size=0 + +2025-09-24 23:39:50,538 INFO Connection check task end + +2025-09-24 23:39:52,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:53,539 INFO Connection check task start + +2025-09-24 23:39:53,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:53,539 INFO Out dated connection ,size=0 + +2025-09-24 23:39:53,539 INFO Connection check task end + +2025-09-24 23:39:55,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:56,541 INFO Connection check task start + +2025-09-24 23:39:56,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:56,541 INFO Out dated connection ,size=0 + +2025-09-24 23:39:56,541 INFO Connection check task end + +2025-09-24 23:39:58,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:39:59,541 INFO Connection check task start + +2025-09-24 23:39:59,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:39:59,541 INFO Out dated connection ,size=0 + +2025-09-24 23:39:59,541 INFO Connection check task end + +2025-09-24 23:40:01,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:02,542 INFO Connection check task start + +2025-09-24 23:40:02,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:02,542 INFO Out dated connection ,size=0 + +2025-09-24 23:40:02,542 INFO Connection check task end + +2025-09-24 23:40:04,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:05,542 INFO Connection check task start + +2025-09-24 23:40:05,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:05,542 INFO Out dated connection ,size=0 + +2025-09-24 23:40:05,542 INFO Connection check task end + +2025-09-24 23:40:07,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:08,543 INFO Connection check task start + +2025-09-24 23:40:08,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:08,543 INFO Out dated connection ,size=0 + +2025-09-24 23:40:08,543 INFO Connection check task end + +2025-09-24 23:40:10,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:11,543 INFO Connection check task start + +2025-09-24 23:40:11,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:11,544 INFO Out dated connection ,size=0 + +2025-09-24 23:40:11,544 INFO Connection check task end + +2025-09-24 23:40:13,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:14,544 INFO Connection check task start + +2025-09-24 23:40:14,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:14,544 INFO Out dated connection ,size=0 + +2025-09-24 23:40:14,544 INFO Connection check task end + +2025-09-24 23:40:16,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:17,545 INFO Connection check task start + +2025-09-24 23:40:17,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:17,545 INFO Out dated connection ,size=0 + +2025-09-24 23:40:17,545 INFO Connection check task end + +2025-09-24 23:40:19,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:20,546 INFO Connection check task start + +2025-09-24 23:40:20,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:20,546 INFO Out dated connection ,size=0 + +2025-09-24 23:40:20,546 INFO Connection check task end + +2025-09-24 23:40:22,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:23,546 INFO Connection check task start + +2025-09-24 23:40:23,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:23,547 INFO Out dated connection ,size=0 + +2025-09-24 23:40:23,547 INFO Connection check task end + +2025-09-24 23:40:25,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:26,547 INFO Connection check task start + +2025-09-24 23:40:26,547 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:26,547 INFO Out dated connection ,size=0 + +2025-09-24 23:40:26,547 INFO Connection check task end + +2025-09-24 23:40:28,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:29,548 INFO Connection check task start + +2025-09-24 23:40:29,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:29,548 INFO Out dated connection ,size=0 + +2025-09-24 23:40:29,548 INFO Connection check task end + +2025-09-24 23:40:31,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:32,548 INFO Connection check task start + +2025-09-24 23:40:32,548 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:32,548 INFO Out dated connection ,size=0 + +2025-09-24 23:40:32,548 INFO Connection check task end + +2025-09-24 23:40:34,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:35,549 INFO Connection check task start + +2025-09-24 23:40:35,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:35,549 INFO Out dated connection ,size=0 + +2025-09-24 23:40:35,549 INFO Connection check task end + +2025-09-24 23:40:37,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:38,549 INFO Connection check task start + +2025-09-24 23:40:38,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:38,550 INFO Out dated connection ,size=0 + +2025-09-24 23:40:38,550 INFO Connection check task end + +2025-09-24 23:40:40,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:41,550 INFO Connection check task start + +2025-09-24 23:40:41,550 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:41,550 INFO Out dated connection ,size=0 + +2025-09-24 23:40:41,551 INFO Connection check task end + +2025-09-24 23:40:43,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:44,551 INFO Connection check task start + +2025-09-24 23:40:44,551 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:44,551 INFO Out dated connection ,size=0 + +2025-09-24 23:40:44,551 INFO Connection check task end + +2025-09-24 23:40:46,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:47,551 INFO Connection check task start + +2025-09-24 23:40:47,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:47,552 INFO Out dated connection ,size=0 + +2025-09-24 23:40:47,552 INFO Connection check task end + +2025-09-24 23:40:49,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:50,552 INFO Connection check task start + +2025-09-24 23:40:50,552 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:50,552 INFO Out dated connection ,size=0 + +2025-09-24 23:40:50,552 INFO Connection check task end + +2025-09-24 23:40:52,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:53,553 INFO Connection check task start + +2025-09-24 23:40:53,553 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:53,553 INFO Out dated connection ,size=0 + +2025-09-24 23:40:53,553 INFO Connection check task end + +2025-09-24 23:40:55,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:56,554 INFO Connection check task start + +2025-09-24 23:40:56,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:56,554 INFO Out dated connection ,size=0 + +2025-09-24 23:40:56,554 INFO Connection check task end + +2025-09-24 23:40:58,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:40:59,554 INFO Connection check task start + +2025-09-24 23:40:59,554 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:40:59,554 INFO Out dated connection ,size=0 + +2025-09-24 23:40:59,555 INFO Connection check task end + +2025-09-24 23:41:01,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:02,555 INFO Connection check task start + +2025-09-24 23:41:02,555 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:02,555 INFO Out dated connection ,size=0 + +2025-09-24 23:41:02,555 INFO Connection check task end + +2025-09-24 23:41:04,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:05,556 INFO Connection check task start + +2025-09-24 23:41:05,556 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:05,556 INFO Out dated connection ,size=0 + +2025-09-24 23:41:05,556 INFO Connection check task end + +2025-09-24 23:41:07,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:08,557 INFO Connection check task start + +2025-09-24 23:41:08,557 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:08,558 INFO Out dated connection ,size=0 + +2025-09-24 23:41:08,558 INFO Connection check task end + +2025-09-24 23:41:10,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:11,559 INFO Connection check task start + +2025-09-24 23:41:11,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:11,559 INFO Out dated connection ,size=0 + +2025-09-24 23:41:11,559 INFO Connection check task end + +2025-09-24 23:41:13,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:14,559 INFO Connection check task start + +2025-09-24 23:41:14,559 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:14,559 INFO Out dated connection ,size=0 + +2025-09-24 23:41:14,559 INFO Connection check task end + +2025-09-24 23:41:16,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:17,560 INFO Connection check task start + +2025-09-24 23:41:17,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:17,560 INFO Out dated connection ,size=0 + +2025-09-24 23:41:17,560 INFO Connection check task end + +2025-09-24 23:41:19,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:20,561 INFO Connection check task start + +2025-09-24 23:41:20,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:20,561 INFO Out dated connection ,size=0 + +2025-09-24 23:41:20,561 INFO Connection check task end + +2025-09-24 23:41:22,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:23,562 INFO Connection check task start + +2025-09-24 23:41:23,562 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:23,562 INFO Out dated connection ,size=0 + +2025-09-24 23:41:23,562 INFO Connection check task end + +2025-09-24 23:41:25,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:26,563 INFO Connection check task start + +2025-09-24 23:41:26,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:26,563 INFO Out dated connection ,size=0 + +2025-09-24 23:41:26,563 INFO Connection check task end + +2025-09-24 23:41:28,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:29,563 INFO Connection check task start + +2025-09-24 23:41:29,564 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:29,564 INFO Out dated connection ,size=0 + +2025-09-24 23:41:29,564 INFO Connection check task end + +2025-09-24 23:41:31,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:32,565 INFO Connection check task start + +2025-09-24 23:41:32,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:32,565 INFO Out dated connection ,size=0 + +2025-09-24 23:41:32,565 INFO Connection check task end + +2025-09-24 23:41:34,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:35,566 INFO Connection check task start + +2025-09-24 23:41:35,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:35,566 INFO Out dated connection ,size=0 + +2025-09-24 23:41:35,566 INFO Connection check task end + +2025-09-24 23:41:37,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:38,566 INFO Connection check task start + +2025-09-24 23:41:38,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:38,567 INFO Out dated connection ,size=0 + +2025-09-24 23:41:38,567 INFO Connection check task end + +2025-09-24 23:41:40,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:41,567 INFO Connection check task start + +2025-09-24 23:41:41,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:41,568 INFO Out dated connection ,size=0 + +2025-09-24 23:41:41,568 INFO Connection check task end + +2025-09-24 23:41:43,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:44,568 INFO Connection check task start + +2025-09-24 23:41:44,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:44,568 INFO Out dated connection ,size=0 + +2025-09-24 23:41:44,568 INFO Connection check task end + +2025-09-24 23:41:46,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:47,570 INFO Connection check task start + +2025-09-24 23:41:47,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:47,570 INFO Out dated connection ,size=0 + +2025-09-24 23:41:47,570 INFO Connection check task end + +2025-09-24 23:41:49,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:50,571 INFO Connection check task start + +2025-09-24 23:41:50,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:50,571 INFO Out dated connection ,size=0 + +2025-09-24 23:41:50,571 INFO Connection check task end + +2025-09-24 23:41:52,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:53,571 INFO Connection check task start + +2025-09-24 23:41:53,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:53,572 INFO Out dated connection ,size=0 + +2025-09-24 23:41:53,572 INFO Connection check task end + +2025-09-24 23:41:55,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:56,572 INFO Connection check task start + +2025-09-24 23:41:56,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:56,572 INFO Out dated connection ,size=0 + +2025-09-24 23:41:56,572 INFO Connection check task end + +2025-09-24 23:41:58,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:41:59,572 INFO Connection check task start + +2025-09-24 23:41:59,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:41:59,573 INFO Out dated connection ,size=0 + +2025-09-24 23:41:59,573 INFO Connection check task end + +2025-09-24 23:42:01,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:02,573 INFO Connection check task start + +2025-09-24 23:42:02,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:02,573 INFO Out dated connection ,size=0 + +2025-09-24 23:42:02,573 INFO Connection check task end + +2025-09-24 23:42:04,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:05,573 INFO Connection check task start + +2025-09-24 23:42:05,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:05,574 INFO Out dated connection ,size=0 + +2025-09-24 23:42:05,574 INFO Connection check task end + +2025-09-24 23:42:07,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:08,574 INFO Connection check task start + +2025-09-24 23:42:08,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:08,574 INFO Out dated connection ,size=0 + +2025-09-24 23:42:08,574 INFO Connection check task end + +2025-09-24 23:42:10,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:11,575 INFO Connection check task start + +2025-09-24 23:42:11,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:11,575 INFO Out dated connection ,size=0 + +2025-09-24 23:42:11,575 INFO Connection check task end + +2025-09-24 23:42:13,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:14,575 INFO Connection check task start + +2025-09-24 23:42:14,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:14,576 INFO Out dated connection ,size=0 + +2025-09-24 23:42:14,576 INFO Connection check task end + +2025-09-24 23:42:16,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:17,576 INFO Connection check task start + +2025-09-24 23:42:17,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:17,576 INFO Out dated connection ,size=0 + +2025-09-24 23:42:17,576 INFO Connection check task end + +2025-09-24 23:42:19,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:20,577 INFO Connection check task start + +2025-09-24 23:42:20,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:20,577 INFO Out dated connection ,size=0 + +2025-09-24 23:42:20,577 INFO Connection check task end + +2025-09-24 23:42:22,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:23,577 INFO Connection check task start + +2025-09-24 23:42:23,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:23,577 INFO Out dated connection ,size=0 + +2025-09-24 23:42:23,577 INFO Connection check task end + +2025-09-24 23:42:25,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:26,579 INFO Connection check task start + +2025-09-24 23:42:26,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:26,579 INFO Out dated connection ,size=0 + +2025-09-24 23:42:26,579 INFO Connection check task end + +2025-09-24 23:42:28,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:29,580 INFO Connection check task start + +2025-09-24 23:42:29,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:29,580 INFO Out dated connection ,size=0 + +2025-09-24 23:42:29,580 INFO Connection check task end + +2025-09-24 23:42:31,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:32,580 INFO Connection check task start + +2025-09-24 23:42:32,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:32,581 INFO Out dated connection ,size=0 + +2025-09-24 23:42:32,581 INFO Connection check task end + +2025-09-24 23:42:35,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:35,581 INFO Connection check task start + +2025-09-24 23:42:35,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:35,581 INFO Out dated connection ,size=0 + +2025-09-24 23:42:35,581 INFO Connection check task end + +2025-09-24 23:42:38,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:38,581 INFO Connection check task start + +2025-09-24 23:42:38,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:38,582 INFO Out dated connection ,size=0 + +2025-09-24 23:42:38,582 INFO Connection check task end + +2025-09-24 23:42:41,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:41,582 INFO Connection check task start + +2025-09-24 23:42:41,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:41,582 INFO Out dated connection ,size=0 + +2025-09-24 23:42:41,582 INFO Connection check task end + +2025-09-24 23:42:44,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:44,584 INFO Connection check task start + +2025-09-24 23:42:44,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:44,584 INFO Out dated connection ,size=0 + +2025-09-24 23:42:44,584 INFO Connection check task end + +2025-09-24 23:42:47,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:47,585 INFO Connection check task start + +2025-09-24 23:42:47,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:47,586 INFO Out dated connection ,size=0 + +2025-09-24 23:42:47,586 INFO Connection check task end + +2025-09-24 23:42:50,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:50,586 INFO Connection check task start + +2025-09-24 23:42:50,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:50,586 INFO Out dated connection ,size=0 + +2025-09-24 23:42:50,586 INFO Connection check task end + +2025-09-24 23:42:53,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:53,586 INFO Connection check task start + +2025-09-24 23:42:53,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:53,586 INFO Out dated connection ,size=0 + +2025-09-24 23:42:53,586 INFO Connection check task end + +2025-09-24 23:42:56,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:56,587 INFO Connection check task start + +2025-09-24 23:42:56,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:56,587 INFO Out dated connection ,size=0 + +2025-09-24 23:42:56,587 INFO Connection check task end + +2025-09-24 23:42:59,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:42:59,587 INFO Connection check task start + +2025-09-24 23:42:59,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:42:59,587 INFO Out dated connection ,size=0 + +2025-09-24 23:42:59,587 INFO Connection check task end + +2025-09-24 23:43:02,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:02,588 INFO Connection check task start + +2025-09-24 23:43:02,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:02,588 INFO Out dated connection ,size=0 + +2025-09-24 23:43:02,588 INFO Connection check task end + +2025-09-24 23:43:05,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:05,588 INFO Connection check task start + +2025-09-24 23:43:05,588 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:05,588 INFO Out dated connection ,size=0 + +2025-09-24 23:43:05,588 INFO Connection check task end + +2025-09-24 23:43:08,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:08,589 INFO Connection check task start + +2025-09-24 23:43:08,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:08,589 INFO Out dated connection ,size=0 + +2025-09-24 23:43:08,590 INFO Connection check task end + +2025-09-24 23:43:11,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:11,590 INFO Connection check task start + +2025-09-24 23:43:11,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:11,590 INFO Out dated connection ,size=0 + +2025-09-24 23:43:11,590 INFO Connection check task end + +2025-09-24 23:43:14,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:14,591 INFO Connection check task start + +2025-09-24 23:43:14,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:14,591 INFO Out dated connection ,size=0 + +2025-09-24 23:43:14,591 INFO Connection check task end + +2025-09-24 23:43:17,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:17,592 INFO Connection check task start + +2025-09-24 23:43:17,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:17,592 INFO Out dated connection ,size=0 + +2025-09-24 23:43:17,592 INFO Connection check task end + +2025-09-24 23:43:20,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:20,593 INFO Connection check task start + +2025-09-24 23:43:20,593 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:20,593 INFO Out dated connection ,size=0 + +2025-09-24 23:43:20,593 INFO Connection check task end + +2025-09-24 23:43:23,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:23,594 INFO Connection check task start + +2025-09-24 23:43:23,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:23,594 INFO Out dated connection ,size=0 + +2025-09-24 23:43:23,594 INFO Connection check task end + +2025-09-24 23:43:26,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:26,595 INFO Connection check task start + +2025-09-24 23:43:26,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:26,613 INFO Out dated connection ,size=0 + +2025-09-24 23:43:26,613 INFO Connection check task end + +2025-09-24 23:43:29,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:29,613 INFO Connection check task start + +2025-09-24 23:43:29,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:29,614 INFO Out dated connection ,size=0 + +2025-09-24 23:43:29,614 INFO Connection check task end + +2025-09-24 23:43:32,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:32,615 INFO Connection check task start + +2025-09-24 23:43:32,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:32,615 INFO Out dated connection ,size=0 + +2025-09-24 23:43:32,615 INFO Connection check task end + +2025-09-24 23:43:35,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:35,615 INFO Connection check task start + +2025-09-24 23:43:35,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:35,615 INFO Out dated connection ,size=0 + +2025-09-24 23:43:35,615 INFO Connection check task end + +2025-09-24 23:43:38,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:38,616 INFO Connection check task start + +2025-09-24 23:43:38,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:38,617 INFO Out dated connection ,size=0 + +2025-09-24 23:43:38,617 INFO Connection check task end + +2025-09-24 23:43:41,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:41,618 INFO Connection check task start + +2025-09-24 23:43:41,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:41,619 INFO Out dated connection ,size=0 + +2025-09-24 23:43:41,620 INFO Connection check task end + +2025-09-24 23:43:44,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:44,621 INFO Connection check task start + +2025-09-24 23:43:44,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:44,621 INFO Out dated connection ,size=0 + +2025-09-24 23:43:44,621 INFO Connection check task end + +2025-09-24 23:43:47,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:47,622 INFO Connection check task start + +2025-09-24 23:43:47,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:47,623 INFO Out dated connection ,size=0 + +2025-09-24 23:43:47,623 INFO Connection check task end + +2025-09-24 23:43:50,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:50,623 INFO Connection check task start + +2025-09-24 23:43:50,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:50,623 INFO Out dated connection ,size=0 + +2025-09-24 23:43:50,623 INFO Connection check task end + +2025-09-24 23:43:53,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:53,624 INFO Connection check task start + +2025-09-24 23:43:53,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:53,624 INFO Out dated connection ,size=0 + +2025-09-24 23:43:53,624 INFO Connection check task end + +2025-09-24 23:43:56,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:56,625 INFO Connection check task start + +2025-09-24 23:43:56,625 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:56,625 INFO Out dated connection ,size=0 + +2025-09-24 23:43:56,626 INFO Connection check task end + +2025-09-24 23:43:59,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:43:59,626 INFO Connection check task start + +2025-09-24 23:43:59,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:43:59,626 INFO Out dated connection ,size=0 + +2025-09-24 23:43:59,626 INFO Connection check task end + +2025-09-24 23:44:02,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:02,627 INFO Connection check task start + +2025-09-24 23:44:02,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:02,627 INFO Out dated connection ,size=0 + +2025-09-24 23:44:02,627 INFO Connection check task end + +2025-09-24 23:44:05,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:05,628 INFO Connection check task start + +2025-09-24 23:44:05,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:05,628 INFO Out dated connection ,size=0 + +2025-09-24 23:44:05,628 INFO Connection check task end + +2025-09-24 23:44:08,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:08,629 INFO Connection check task start + +2025-09-24 23:44:08,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:08,629 INFO Out dated connection ,size=0 + +2025-09-24 23:44:08,629 INFO Connection check task end + +2025-09-24 23:44:11,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:11,630 INFO Connection check task start + +2025-09-24 23:44:11,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:11,631 INFO Out dated connection ,size=0 + +2025-09-24 23:44:11,631 INFO Connection check task end + +2025-09-24 23:44:14,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:14,631 INFO Connection check task start + +2025-09-24 23:44:14,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:14,631 INFO Out dated connection ,size=0 + +2025-09-24 23:44:14,631 INFO Connection check task end + +2025-09-24 23:44:17,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:17,632 INFO Connection check task start + +2025-09-24 23:44:17,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:17,632 INFO Out dated connection ,size=0 + +2025-09-24 23:44:17,632 INFO Connection check task end + +2025-09-24 23:44:20,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:20,633 INFO Connection check task start + +2025-09-24 23:44:20,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:20,633 INFO Out dated connection ,size=0 + +2025-09-24 23:44:20,633 INFO Connection check task end + +2025-09-24 23:44:23,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:23,634 INFO Connection check task start + +2025-09-24 23:44:23,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:23,634 INFO Out dated connection ,size=0 + +2025-09-24 23:44:23,634 INFO Connection check task end + +2025-09-24 23:44:26,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:26,635 INFO Connection check task start + +2025-09-24 23:44:26,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:26,635 INFO Out dated connection ,size=0 + +2025-09-24 23:44:26,635 INFO Connection check task end + +2025-09-24 23:44:29,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:29,635 INFO Connection check task start + +2025-09-24 23:44:29,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:29,636 INFO Out dated connection ,size=0 + +2025-09-24 23:44:29,636 INFO Connection check task end + +2025-09-24 23:44:32,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:32,636 INFO Connection check task start + +2025-09-24 23:44:32,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:32,636 INFO Out dated connection ,size=0 + +2025-09-24 23:44:32,636 INFO Connection check task end + +2025-09-24 23:44:35,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:35,636 INFO Connection check task start + +2025-09-24 23:44:35,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:35,636 INFO Out dated connection ,size=0 + +2025-09-24 23:44:35,636 INFO Connection check task end + +2025-09-24 23:44:38,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:38,637 INFO Connection check task start + +2025-09-24 23:44:38,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:38,637 INFO Out dated connection ,size=0 + +2025-09-24 23:44:38,637 INFO Connection check task end + +2025-09-24 23:44:41,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:41,637 INFO Connection check task start + +2025-09-24 23:44:41,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:41,637 INFO Out dated connection ,size=0 + +2025-09-24 23:44:41,637 INFO Connection check task end + +2025-09-24 23:44:44,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:44,638 INFO Connection check task start + +2025-09-24 23:44:44,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:44,638 INFO Out dated connection ,size=0 + +2025-09-24 23:44:44,638 INFO Connection check task end + +2025-09-24 23:44:47,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:47,638 INFO Connection check task start + +2025-09-24 23:44:47,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:47,639 INFO Out dated connection ,size=0 + +2025-09-24 23:44:47,639 INFO Connection check task end + +2025-09-24 23:44:50,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:50,639 INFO Connection check task start + +2025-09-24 23:44:50,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:50,639 INFO Out dated connection ,size=0 + +2025-09-24 23:44:50,639 INFO Connection check task end + +2025-09-24 23:44:53,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:53,640 INFO Connection check task start + +2025-09-24 23:44:53,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:53,641 INFO Out dated connection ,size=0 + +2025-09-24 23:44:53,641 INFO Connection check task end + +2025-09-24 23:44:56,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:56,641 INFO Connection check task start + +2025-09-24 23:44:56,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:56,641 INFO Out dated connection ,size=0 + +2025-09-24 23:44:56,641 INFO Connection check task end + +2025-09-24 23:44:59,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:44:59,642 INFO Connection check task start + +2025-09-24 23:44:59,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:44:59,642 INFO Out dated connection ,size=0 + +2025-09-24 23:44:59,643 INFO Connection check task end + +2025-09-24 23:45:02,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:02,644 INFO Connection check task start + +2025-09-24 23:45:02,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:02,644 INFO Out dated connection ,size=0 + +2025-09-24 23:45:02,644 INFO Connection check task end + +2025-09-24 23:45:05,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:05,644 INFO Connection check task start + +2025-09-24 23:45:05,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:05,644 INFO Out dated connection ,size=0 + +2025-09-24 23:45:05,644 INFO Connection check task end + +2025-09-24 23:45:08,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:08,644 INFO Connection check task start + +2025-09-24 23:45:08,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:08,645 INFO Out dated connection ,size=0 + +2025-09-24 23:45:08,645 INFO Connection check task end + +2025-09-24 23:45:11,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:11,645 INFO Connection check task start + +2025-09-24 23:45:11,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:11,645 INFO Out dated connection ,size=0 + +2025-09-24 23:45:11,645 INFO Connection check task end + +2025-09-24 23:45:14,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:14,646 INFO Connection check task start + +2025-09-24 23:45:14,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:14,646 INFO Out dated connection ,size=0 + +2025-09-24 23:45:14,647 INFO Connection check task end + +2025-09-24 23:45:17,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:17,648 INFO Connection check task start + +2025-09-24 23:45:17,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:17,648 INFO Out dated connection ,size=0 + +2025-09-24 23:45:17,648 INFO Connection check task end + +2025-09-24 23:45:20,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:20,721 INFO Connection check task start + +2025-09-24 23:45:20,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:20,721 INFO Out dated connection ,size=0 + +2025-09-24 23:45:20,721 INFO Connection check task end + +2025-09-24 23:45:23,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:23,722 INFO Connection check task start + +2025-09-24 23:45:23,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:23,722 INFO Out dated connection ,size=0 + +2025-09-24 23:45:23,722 INFO Connection check task end + +2025-09-24 23:45:26,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:26,722 INFO Connection check task start + +2025-09-24 23:45:26,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:26,722 INFO Out dated connection ,size=0 + +2025-09-24 23:45:26,723 INFO Connection check task end + +2025-09-24 23:45:29,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:29,723 INFO Connection check task start + +2025-09-24 23:45:29,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:29,724 INFO Out dated connection ,size=0 + +2025-09-24 23:45:29,724 INFO Connection check task end + +2025-09-24 23:45:32,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:32,724 INFO Connection check task start + +2025-09-24 23:45:32,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:32,724 INFO Out dated connection ,size=0 + +2025-09-24 23:45:32,724 INFO Connection check task end + +2025-09-24 23:45:35,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:35,725 INFO Connection check task start + +2025-09-24 23:45:35,725 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:35,725 INFO Out dated connection ,size=0 + +2025-09-24 23:45:35,725 INFO Connection check task end + +2025-09-24 23:45:38,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:38,725 INFO Connection check task start + +2025-09-24 23:45:38,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:38,726 INFO Out dated connection ,size=0 + +2025-09-24 23:45:38,726 INFO Connection check task end + +2025-09-24 23:45:41,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:41,726 INFO Connection check task start + +2025-09-24 23:45:41,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:41,726 INFO Out dated connection ,size=0 + +2025-09-24 23:45:41,726 INFO Connection check task end + +2025-09-24 23:45:44,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:44,728 INFO Connection check task start + +2025-09-24 23:45:44,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:44,728 INFO Out dated connection ,size=0 + +2025-09-24 23:45:44,728 INFO Connection check task end + +2025-09-24 23:45:47,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:47,729 INFO Connection check task start + +2025-09-24 23:45:47,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:47,729 INFO Out dated connection ,size=0 + +2025-09-24 23:45:47,729 INFO Connection check task end + +2025-09-24 23:45:50,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:50,729 INFO Connection check task start + +2025-09-24 23:45:50,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:50,729 INFO Out dated connection ,size=0 + +2025-09-24 23:45:50,729 INFO Connection check task end + +2025-09-24 23:45:53,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:53,730 INFO Connection check task start + +2025-09-24 23:45:53,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:53,730 INFO Out dated connection ,size=0 + +2025-09-24 23:45:53,730 INFO Connection check task end + +2025-09-24 23:45:56,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:56,731 INFO Connection check task start + +2025-09-24 23:45:56,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:56,731 INFO Out dated connection ,size=0 + +2025-09-24 23:45:56,731 INFO Connection check task end + +2025-09-24 23:45:59,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:45:59,732 INFO Connection check task start + +2025-09-24 23:45:59,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:45:59,732 INFO Out dated connection ,size=0 + +2025-09-24 23:45:59,732 INFO Connection check task end + +2025-09-24 23:46:02,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:02,732 INFO Connection check task start + +2025-09-24 23:46:02,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:02,732 INFO Out dated connection ,size=0 + +2025-09-24 23:46:02,732 INFO Connection check task end + +2025-09-24 23:46:05,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:05,733 INFO Connection check task start + +2025-09-24 23:46:05,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:05,733 INFO Out dated connection ,size=0 + +2025-09-24 23:46:05,733 INFO Connection check task end + +2025-09-24 23:46:08,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:08,734 INFO Connection check task start + +2025-09-24 23:46:08,734 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:08,734 INFO Out dated connection ,size=0 + +2025-09-24 23:46:08,734 INFO Connection check task end + +2025-09-24 23:46:11,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:11,735 INFO Connection check task start + +2025-09-24 23:46:11,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:11,735 INFO Out dated connection ,size=0 + +2025-09-24 23:46:11,735 INFO Connection check task end + +2025-09-24 23:46:14,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:14,736 INFO Connection check task start + +2025-09-24 23:46:14,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:14,736 INFO Out dated connection ,size=0 + +2025-09-24 23:46:14,736 INFO Connection check task end + +2025-09-24 23:46:17,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:17,737 INFO Connection check task start + +2025-09-24 23:46:17,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:17,737 INFO Out dated connection ,size=0 + +2025-09-24 23:46:17,737 INFO Connection check task end + +2025-09-24 23:46:20,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:20,737 INFO Connection check task start + +2025-09-24 23:46:20,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:20,738 INFO Out dated connection ,size=0 + +2025-09-24 23:46:20,738 INFO Connection check task end + +2025-09-24 23:46:23,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:23,738 INFO Connection check task start + +2025-09-24 23:46:23,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:23,738 INFO Out dated connection ,size=0 + +2025-09-24 23:46:23,738 INFO Connection check task end + +2025-09-24 23:46:26,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:26,739 INFO Connection check task start + +2025-09-24 23:46:26,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:26,739 INFO Out dated connection ,size=0 + +2025-09-24 23:46:26,739 INFO Connection check task end + +2025-09-24 23:46:29,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:29,739 INFO Connection check task start + +2025-09-24 23:46:29,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:29,740 INFO Out dated connection ,size=0 + +2025-09-24 23:46:29,740 INFO Connection check task end + +2025-09-24 23:46:32,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:32,740 INFO Connection check task start + +2025-09-24 23:46:32,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:32,740 INFO Out dated connection ,size=0 + +2025-09-24 23:46:32,740 INFO Connection check task end + +2025-09-24 23:46:35,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:35,740 INFO Connection check task start + +2025-09-24 23:46:35,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:35,741 INFO Out dated connection ,size=0 + +2025-09-24 23:46:35,741 INFO Connection check task end + +2025-09-24 23:46:38,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:38,741 INFO Connection check task start + +2025-09-24 23:46:38,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:38,741 INFO Out dated connection ,size=0 + +2025-09-24 23:46:38,741 INFO Connection check task end + +2025-09-24 23:46:41,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:41,741 INFO Connection check task start + +2025-09-24 23:46:41,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:41,742 INFO Out dated connection ,size=0 + +2025-09-24 23:46:41,742 INFO Connection check task end + +2025-09-24 23:46:44,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:44,742 INFO Connection check task start + +2025-09-24 23:46:44,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:44,742 INFO Out dated connection ,size=0 + +2025-09-24 23:46:44,742 INFO Connection check task end + +2025-09-24 23:46:47,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:47,743 INFO Connection check task start + +2025-09-24 23:46:47,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:47,743 INFO Out dated connection ,size=0 + +2025-09-24 23:46:47,743 INFO Connection check task end + +2025-09-24 23:46:50,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:50,743 INFO Connection check task start + +2025-09-24 23:46:50,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:50,744 INFO Out dated connection ,size=0 + +2025-09-24 23:46:50,744 INFO Connection check task end + +2025-09-24 23:46:53,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:53,744 INFO Connection check task start + +2025-09-24 23:46:53,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:53,744 INFO Out dated connection ,size=0 + +2025-09-24 23:46:53,744 INFO Connection check task end + +2025-09-24 23:46:56,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:56,745 INFO Connection check task start + +2025-09-24 23:46:56,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:56,745 INFO Out dated connection ,size=0 + +2025-09-24 23:46:56,745 INFO Connection check task end + +2025-09-24 23:46:59,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:46:59,745 INFO Connection check task start + +2025-09-24 23:46:59,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:46:59,746 INFO Out dated connection ,size=0 + +2025-09-24 23:46:59,746 INFO Connection check task end + +2025-09-24 23:47:02,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:02,746 INFO Connection check task start + +2025-09-24 23:47:02,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:02,746 INFO Out dated connection ,size=0 + +2025-09-24 23:47:02,746 INFO Connection check task end + +2025-09-24 23:47:05,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:05,746 INFO Connection check task start + +2025-09-24 23:47:05,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:05,746 INFO Out dated connection ,size=0 + +2025-09-24 23:47:05,746 INFO Connection check task end + +2025-09-24 23:47:08,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:08,747 INFO Connection check task start + +2025-09-24 23:47:08,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:08,747 INFO Out dated connection ,size=0 + +2025-09-24 23:47:08,747 INFO Connection check task end + +2025-09-24 23:47:11,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:11,748 INFO Connection check task start + +2025-09-24 23:47:11,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:11,748 INFO Out dated connection ,size=0 + +2025-09-24 23:47:11,748 INFO Connection check task end + +2025-09-24 23:47:14,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:14,749 INFO Connection check task start + +2025-09-24 23:47:14,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:14,749 INFO Out dated connection ,size=0 + +2025-09-24 23:47:14,749 INFO Connection check task end + +2025-09-24 23:47:17,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:17,750 INFO Connection check task start + +2025-09-24 23:47:17,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:17,750 INFO Out dated connection ,size=0 + +2025-09-24 23:47:17,750 INFO Connection check task end + +2025-09-24 23:47:20,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:20,750 INFO Connection check task start + +2025-09-24 23:47:20,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:20,750 INFO Out dated connection ,size=0 + +2025-09-24 23:47:20,750 INFO Connection check task end + +2025-09-24 23:47:23,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:23,751 INFO Connection check task start + +2025-09-24 23:47:23,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:23,752 INFO Out dated connection ,size=0 + +2025-09-24 23:47:23,752 INFO Connection check task end + +2025-09-24 23:47:26,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:26,752 INFO Connection check task start + +2025-09-24 23:47:26,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:26,752 INFO Out dated connection ,size=0 + +2025-09-24 23:47:26,752 INFO Connection check task end + +2025-09-24 23:47:29,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:29,752 INFO Connection check task start + +2025-09-24 23:47:29,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:29,752 INFO Out dated connection ,size=0 + +2025-09-24 23:47:29,752 INFO Connection check task end + +2025-09-24 23:47:32,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:32,753 INFO Connection check task start + +2025-09-24 23:47:32,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:32,753 INFO Out dated connection ,size=0 + +2025-09-24 23:47:32,753 INFO Connection check task end + +2025-09-24 23:47:35,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:35,753 INFO Connection check task start + +2025-09-24 23:47:35,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:35,754 INFO Out dated connection ,size=0 + +2025-09-24 23:47:35,754 INFO Connection check task end + +2025-09-24 23:47:38,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:38,755 INFO Connection check task start + +2025-09-24 23:47:38,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:38,755 INFO Out dated connection ,size=0 + +2025-09-24 23:47:38,755 INFO Connection check task end + +2025-09-24 23:47:41,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:41,755 INFO Connection check task start + +2025-09-24 23:47:41,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:41,755 INFO Out dated connection ,size=0 + +2025-09-24 23:47:41,755 INFO Connection check task end + +2025-09-24 23:47:44,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:44,756 INFO Connection check task start + +2025-09-24 23:47:44,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:44,756 INFO Out dated connection ,size=0 + +2025-09-24 23:47:44,756 INFO Connection check task end + +2025-09-24 23:47:47,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:47,756 INFO Connection check task start + +2025-09-24 23:47:47,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:47,757 INFO Out dated connection ,size=0 + +2025-09-24 23:47:47,757 INFO Connection check task end + +2025-09-24 23:47:50,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:50,757 INFO Connection check task start + +2025-09-24 23:47:50,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:50,757 INFO Out dated connection ,size=0 + +2025-09-24 23:47:50,757 INFO Connection check task end + +2025-09-24 23:47:53,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:53,758 INFO Connection check task start + +2025-09-24 23:47:53,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:53,758 INFO Out dated connection ,size=0 + +2025-09-24 23:47:53,758 INFO Connection check task end + +2025-09-24 23:47:56,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:56,759 INFO Connection check task start + +2025-09-24 23:47:56,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:56,759 INFO Out dated connection ,size=0 + +2025-09-24 23:47:56,759 INFO Connection check task end + +2025-09-24 23:47:59,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:47:59,760 INFO Connection check task start + +2025-09-24 23:47:59,760 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:47:59,760 INFO Out dated connection ,size=0 + +2025-09-24 23:47:59,760 INFO Connection check task end + +2025-09-24 23:48:02,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:02,760 INFO Connection check task start + +2025-09-24 23:48:02,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:02,761 INFO Out dated connection ,size=0 + +2025-09-24 23:48:02,761 INFO Connection check task end + +2025-09-24 23:48:05,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:05,761 INFO Connection check task start + +2025-09-24 23:48:05,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:05,761 INFO Out dated connection ,size=0 + +2025-09-24 23:48:05,761 INFO Connection check task end + +2025-09-24 23:48:08,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:08,762 INFO Connection check task start + +2025-09-24 23:48:08,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:08,762 INFO Out dated connection ,size=0 + +2025-09-24 23:48:08,762 INFO Connection check task end + +2025-09-24 23:48:11,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:11,762 INFO Connection check task start + +2025-09-24 23:48:11,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:11,762 INFO Out dated connection ,size=0 + +2025-09-24 23:48:11,762 INFO Connection check task end + +2025-09-24 23:48:14,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:14,763 INFO Connection check task start + +2025-09-24 23:48:14,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:14,763 INFO Out dated connection ,size=0 + +2025-09-24 23:48:14,763 INFO Connection check task end + +2025-09-24 23:48:17,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:17,764 INFO Connection check task start + +2025-09-24 23:48:17,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:17,764 INFO Out dated connection ,size=0 + +2025-09-24 23:48:17,764 INFO Connection check task end + +2025-09-24 23:48:20,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:20,764 INFO Connection check task start + +2025-09-24 23:48:20,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:20,764 INFO Out dated connection ,size=0 + +2025-09-24 23:48:20,764 INFO Connection check task end + +2025-09-24 23:48:23,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:23,766 INFO Connection check task start + +2025-09-24 23:48:23,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:23,766 INFO Out dated connection ,size=0 + +2025-09-24 23:48:23,766 INFO Connection check task end + +2025-09-24 23:48:26,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:26,766 INFO Connection check task start + +2025-09-24 23:48:26,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:26,767 INFO Out dated connection ,size=0 + +2025-09-24 23:48:26,767 INFO Connection check task end + +2025-09-24 23:48:29,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:29,767 INFO Connection check task start + +2025-09-24 23:48:29,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:29,767 INFO Out dated connection ,size=0 + +2025-09-24 23:48:29,767 INFO Connection check task end + +2025-09-24 23:48:32,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:32,767 INFO Connection check task start + +2025-09-24 23:48:32,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:32,767 INFO Out dated connection ,size=0 + +2025-09-24 23:48:32,767 INFO Connection check task end + +2025-09-24 23:48:35,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:35,768 INFO Connection check task start + +2025-09-24 23:48:35,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:35,769 INFO Out dated connection ,size=0 + +2025-09-24 23:48:35,769 INFO Connection check task end + +2025-09-24 23:48:38,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:38,769 INFO Connection check task start + +2025-09-24 23:48:38,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:38,769 INFO Out dated connection ,size=0 + +2025-09-24 23:48:38,769 INFO Connection check task end + +2025-09-24 23:48:41,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:41,770 INFO Connection check task start + +2025-09-24 23:48:41,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:41,771 INFO Out dated connection ,size=0 + +2025-09-24 23:48:41,771 INFO Connection check task end + +2025-09-24 23:48:44,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:44,772 INFO Connection check task start + +2025-09-24 23:48:44,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:44,772 INFO Out dated connection ,size=0 + +2025-09-24 23:48:44,772 INFO Connection check task end + +2025-09-24 23:48:47,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:47,773 INFO Connection check task start + +2025-09-24 23:48:47,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:47,773 INFO Out dated connection ,size=0 + +2025-09-24 23:48:47,773 INFO Connection check task end + +2025-09-24 23:48:50,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:50,774 INFO Connection check task start + +2025-09-24 23:48:50,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:50,774 INFO Out dated connection ,size=0 + +2025-09-24 23:48:50,775 INFO Connection check task end + +2025-09-24 23:48:53,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:53,775 INFO Connection check task start + +2025-09-24 23:48:53,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:53,775 INFO Out dated connection ,size=0 + +2025-09-24 23:48:53,775 INFO Connection check task end + +2025-09-24 23:48:56,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:56,776 INFO Connection check task start + +2025-09-24 23:48:56,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:56,776 INFO Out dated connection ,size=0 + +2025-09-24 23:48:56,776 INFO Connection check task end + +2025-09-24 23:48:59,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:48:59,776 INFO Connection check task start + +2025-09-24 23:48:59,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:48:59,777 INFO Out dated connection ,size=0 + +2025-09-24 23:48:59,777 INFO Connection check task end + +2025-09-24 23:49:02,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:02,777 INFO Connection check task start + +2025-09-24 23:49:02,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:02,777 INFO Out dated connection ,size=0 + +2025-09-24 23:49:02,777 INFO Connection check task end + +2025-09-24 23:49:05,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:05,777 INFO Connection check task start + +2025-09-24 23:49:05,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:05,778 INFO Out dated connection ,size=0 + +2025-09-24 23:49:05,778 INFO Connection check task end + +2025-09-24 23:49:08,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:08,778 INFO Connection check task start + +2025-09-24 23:49:08,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:08,778 INFO Out dated connection ,size=0 + +2025-09-24 23:49:08,778 INFO Connection check task end + +2025-09-24 23:49:11,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:11,779 INFO Connection check task start + +2025-09-24 23:49:11,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:11,779 INFO Out dated connection ,size=0 + +2025-09-24 23:49:11,779 INFO Connection check task end + +2025-09-24 23:49:14,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:14,780 INFO Connection check task start + +2025-09-24 23:49:14,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:14,780 INFO Out dated connection ,size=0 + +2025-09-24 23:49:14,781 INFO Connection check task end + +2025-09-24 23:49:17,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:17,781 INFO Connection check task start + +2025-09-24 23:49:17,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:17,781 INFO Out dated connection ,size=0 + +2025-09-24 23:49:17,781 INFO Connection check task end + +2025-09-24 23:49:20,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:20,782 INFO Connection check task start + +2025-09-24 23:49:20,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:20,782 INFO Out dated connection ,size=0 + +2025-09-24 23:49:20,782 INFO Connection check task end + +2025-09-24 23:49:23,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:23,782 INFO Connection check task start + +2025-09-24 23:49:23,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:23,782 INFO Out dated connection ,size=0 + +2025-09-24 23:49:23,782 INFO Connection check task end + +2025-09-24 23:49:26,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:26,784 INFO Connection check task start + +2025-09-24 23:49:26,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:26,784 INFO Out dated connection ,size=0 + +2025-09-24 23:49:26,784 INFO Connection check task end + +2025-09-24 23:49:29,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:29,785 INFO Connection check task start + +2025-09-24 23:49:29,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:29,785 INFO Out dated connection ,size=0 + +2025-09-24 23:49:29,785 INFO Connection check task end + +2025-09-24 23:49:32,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:32,785 INFO Connection check task start + +2025-09-24 23:49:32,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:32,786 INFO Out dated connection ,size=0 + +2025-09-24 23:49:32,786 INFO Connection check task end + +2025-09-24 23:49:35,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:35,786 INFO Connection check task start + +2025-09-24 23:49:35,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:35,786 INFO Out dated connection ,size=0 + +2025-09-24 23:49:35,786 INFO Connection check task end + +2025-09-24 23:49:38,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:38,786 INFO Connection check task start + +2025-09-24 23:49:38,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:38,786 INFO Out dated connection ,size=0 + +2025-09-24 23:49:38,787 INFO Connection check task end + +2025-09-24 23:49:41,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:41,787 INFO Connection check task start + +2025-09-24 23:49:41,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:41,788 INFO Out dated connection ,size=0 + +2025-09-24 23:49:41,788 INFO Connection check task end + +2025-09-24 23:49:44,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:44,789 INFO Connection check task start + +2025-09-24 23:49:44,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:44,789 INFO Out dated connection ,size=0 + +2025-09-24 23:49:44,789 INFO Connection check task end + +2025-09-24 23:49:47,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:47,790 INFO Connection check task start + +2025-09-24 23:49:47,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:47,791 INFO Out dated connection ,size=0 + +2025-09-24 23:49:47,791 INFO Connection check task end + +2025-09-24 23:49:50,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:50,791 INFO Connection check task start + +2025-09-24 23:49:50,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:50,792 INFO Out dated connection ,size=0 + +2025-09-24 23:49:50,792 INFO Connection check task end + +2025-09-24 23:49:53,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:53,792 INFO Connection check task start + +2025-09-24 23:49:53,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:53,792 INFO Out dated connection ,size=0 + +2025-09-24 23:49:53,792 INFO Connection check task end + +2025-09-24 23:49:56,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:56,793 INFO Connection check task start + +2025-09-24 23:49:56,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:56,793 INFO Out dated connection ,size=0 + +2025-09-24 23:49:56,793 INFO Connection check task end + +2025-09-24 23:49:59,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:49:59,793 INFO Connection check task start + +2025-09-24 23:49:59,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:49:59,794 INFO Out dated connection ,size=0 + +2025-09-24 23:49:59,794 INFO Connection check task end + +2025-09-24 23:50:02,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:02,794 INFO Connection check task start + +2025-09-24 23:50:02,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:02,794 INFO Out dated connection ,size=0 + +2025-09-24 23:50:02,794 INFO Connection check task end + +2025-09-24 23:50:05,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:05,795 INFO Connection check task start + +2025-09-24 23:50:05,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:05,795 INFO Out dated connection ,size=0 + +2025-09-24 23:50:05,795 INFO Connection check task end + +2025-09-24 23:50:08,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:08,796 INFO Connection check task start + +2025-09-24 23:50:08,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:08,796 INFO Out dated connection ,size=0 + +2025-09-24 23:50:08,796 INFO Connection check task end + +2025-09-24 23:50:11,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:11,797 INFO Connection check task start + +2025-09-24 23:50:11,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:11,797 INFO Out dated connection ,size=0 + +2025-09-24 23:50:11,797 INFO Connection check task end + +2025-09-24 23:50:14,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:14,797 INFO Connection check task start + +2025-09-24 23:50:14,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:14,797 INFO Out dated connection ,size=0 + +2025-09-24 23:50:14,797 INFO Connection check task end + +2025-09-24 23:50:17,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:17,798 INFO Connection check task start + +2025-09-24 23:50:17,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:17,798 INFO Out dated connection ,size=0 + +2025-09-24 23:50:17,798 INFO Connection check task end + +2025-09-24 23:50:20,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:20,799 INFO Connection check task start + +2025-09-24 23:50:20,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:20,799 INFO Out dated connection ,size=0 + +2025-09-24 23:50:20,799 INFO Connection check task end + +2025-09-24 23:50:23,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:23,800 INFO Connection check task start + +2025-09-24 23:50:23,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:23,800 INFO Out dated connection ,size=0 + +2025-09-24 23:50:23,800 INFO Connection check task end + +2025-09-24 23:50:26,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:26,801 INFO Connection check task start + +2025-09-24 23:50:26,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:26,801 INFO Out dated connection ,size=0 + +2025-09-24 23:50:26,801 INFO Connection check task end + +2025-09-24 23:50:29,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:29,801 INFO Connection check task start + +2025-09-24 23:50:29,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:29,801 INFO Out dated connection ,size=0 + +2025-09-24 23:50:29,801 INFO Connection check task end + +2025-09-24 23:50:32,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:32,802 INFO Connection check task start + +2025-09-24 23:50:32,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:32,802 INFO Out dated connection ,size=0 + +2025-09-24 23:50:32,802 INFO Connection check task end + +2025-09-24 23:50:35,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:35,803 INFO Connection check task start + +2025-09-24 23:50:35,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:35,803 INFO Out dated connection ,size=0 + +2025-09-24 23:50:35,803 INFO Connection check task end + +2025-09-24 23:50:38,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:38,804 INFO Connection check task start + +2025-09-24 23:50:38,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:38,805 INFO Out dated connection ,size=0 + +2025-09-24 23:50:38,805 INFO Connection check task end + +2025-09-24 23:50:41,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:41,805 INFO Connection check task start + +2025-09-24 23:50:41,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:41,805 INFO Out dated connection ,size=0 + +2025-09-24 23:50:41,805 INFO Connection check task end + +2025-09-24 23:50:44,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:44,806 INFO Connection check task start + +2025-09-24 23:50:44,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:44,806 INFO Out dated connection ,size=0 + +2025-09-24 23:50:44,806 INFO Connection check task end + +2025-09-24 23:50:47,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:47,807 INFO Connection check task start + +2025-09-24 23:50:47,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:47,808 INFO Out dated connection ,size=0 + +2025-09-24 23:50:47,808 INFO Connection check task end + +2025-09-24 23:50:50,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:50,809 INFO Connection check task start + +2025-09-24 23:50:50,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:50,809 INFO Out dated connection ,size=0 + +2025-09-24 23:50:50,809 INFO Connection check task end + +2025-09-24 23:50:53,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:53,809 INFO Connection check task start + +2025-09-24 23:50:53,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:53,810 INFO Out dated connection ,size=0 + +2025-09-24 23:50:53,810 INFO Connection check task end + +2025-09-24 23:50:56,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:56,810 INFO Connection check task start + +2025-09-24 23:50:56,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:56,810 INFO Out dated connection ,size=0 + +2025-09-24 23:50:56,810 INFO Connection check task end + +2025-09-24 23:50:59,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:50:59,811 INFO Connection check task start + +2025-09-24 23:50:59,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:50:59,811 INFO Out dated connection ,size=0 + +2025-09-24 23:50:59,811 INFO Connection check task end + +2025-09-24 23:51:02,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:02,812 INFO Connection check task start + +2025-09-24 23:51:02,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:02,813 INFO Out dated connection ,size=0 + +2025-09-24 23:51:02,813 INFO Connection check task end + +2025-09-24 23:51:05,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:05,813 INFO Connection check task start + +2025-09-24 23:51:05,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:05,813 INFO Out dated connection ,size=0 + +2025-09-24 23:51:05,813 INFO Connection check task end + +2025-09-24 23:51:08,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:08,815 INFO Connection check task start + +2025-09-24 23:51:08,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:08,815 INFO Out dated connection ,size=0 + +2025-09-24 23:51:08,815 INFO Connection check task end + +2025-09-24 23:51:11,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:11,815 INFO Connection check task start + +2025-09-24 23:51:11,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:11,815 INFO Out dated connection ,size=0 + +2025-09-24 23:51:11,816 INFO Connection check task end + +2025-09-24 23:51:14,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:14,816 INFO Connection check task start + +2025-09-24 23:51:14,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:14,816 INFO Out dated connection ,size=0 + +2025-09-24 23:51:14,816 INFO Connection check task end + +2025-09-24 23:51:17,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:17,816 INFO Connection check task start + +2025-09-24 23:51:17,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:17,817 INFO Out dated connection ,size=0 + +2025-09-24 23:51:17,817 INFO Connection check task end + +2025-09-24 23:51:20,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:20,817 INFO Connection check task start + +2025-09-24 23:51:20,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:20,817 INFO Out dated connection ,size=0 + +2025-09-24 23:51:20,817 INFO Connection check task end + +2025-09-24 23:51:23,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:23,818 INFO Connection check task start + +2025-09-24 23:51:23,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:23,819 INFO Out dated connection ,size=0 + +2025-09-24 23:51:23,819 INFO Connection check task end + +2025-09-24 23:51:26,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:26,819 INFO Connection check task start + +2025-09-24 23:51:26,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:26,820 INFO Out dated connection ,size=0 + +2025-09-24 23:51:26,820 INFO Connection check task end + +2025-09-24 23:51:29,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:29,820 INFO Connection check task start + +2025-09-24 23:51:29,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:29,820 INFO Out dated connection ,size=0 + +2025-09-24 23:51:29,821 INFO Connection check task end + +2025-09-24 23:51:32,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:32,822 INFO Connection check task start + +2025-09-24 23:51:32,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:32,822 INFO Out dated connection ,size=0 + +2025-09-24 23:51:32,822 INFO Connection check task end + +2025-09-24 23:51:35,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:35,823 INFO Connection check task start + +2025-09-24 23:51:35,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:35,823 INFO Out dated connection ,size=0 + +2025-09-24 23:51:35,823 INFO Connection check task end + +2025-09-24 23:51:38,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:38,824 INFO Connection check task start + +2025-09-24 23:51:38,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:38,824 INFO Out dated connection ,size=0 + +2025-09-24 23:51:38,824 INFO Connection check task end + +2025-09-24 23:51:41,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:41,825 INFO Connection check task start + +2025-09-24 23:51:41,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:41,826 INFO Out dated connection ,size=0 + +2025-09-24 23:51:41,826 INFO Connection check task end + +2025-09-24 23:51:44,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:44,826 INFO Connection check task start + +2025-09-24 23:51:44,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:44,827 INFO Out dated connection ,size=0 + +2025-09-24 23:51:44,827 INFO Connection check task end + +2025-09-24 23:51:47,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:47,828 INFO Connection check task start + +2025-09-24 23:51:47,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:47,828 INFO Out dated connection ,size=0 + +2025-09-24 23:51:47,828 INFO Connection check task end + +2025-09-24 23:51:50,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:50,829 INFO Connection check task start + +2025-09-24 23:51:50,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:50,829 INFO Out dated connection ,size=0 + +2025-09-24 23:51:50,829 INFO Connection check task end + +2025-09-24 23:51:53,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:53,830 INFO Connection check task start + +2025-09-24 23:51:53,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:53,831 INFO Out dated connection ,size=0 + +2025-09-24 23:51:53,831 INFO Connection check task end + +2025-09-24 23:51:56,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:56,831 INFO Connection check task start + +2025-09-24 23:51:56,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:56,831 INFO Out dated connection ,size=0 + +2025-09-24 23:51:56,831 INFO Connection check task end + +2025-09-24 23:51:59,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:51:59,832 INFO Connection check task start + +2025-09-24 23:51:59,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:51:59,832 INFO Out dated connection ,size=0 + +2025-09-24 23:51:59,832 INFO Connection check task end + +2025-09-24 23:52:02,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:02,832 INFO Connection check task start + +2025-09-24 23:52:02,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:02,832 INFO Out dated connection ,size=0 + +2025-09-24 23:52:02,832 INFO Connection check task end + +2025-09-24 23:52:05,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:05,832 INFO Connection check task start + +2025-09-24 23:52:05,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:05,832 INFO Out dated connection ,size=0 + +2025-09-24 23:52:05,833 INFO Connection check task end + +2025-09-24 23:52:08,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:08,833 INFO Connection check task start + +2025-09-24 23:52:08,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:08,833 INFO Out dated connection ,size=0 + +2025-09-24 23:52:08,833 INFO Connection check task end + +2025-09-24 23:52:11,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:11,834 INFO Connection check task start + +2025-09-24 23:52:11,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:11,834 INFO Out dated connection ,size=0 + +2025-09-24 23:52:11,834 INFO Connection check task end + +2025-09-24 23:52:14,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:14,835 INFO Connection check task start + +2025-09-24 23:52:14,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:14,835 INFO Out dated connection ,size=0 + +2025-09-24 23:52:14,835 INFO Connection check task end + +2025-09-24 23:52:17,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:17,835 INFO Connection check task start + +2025-09-24 23:52:17,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:17,836 INFO Out dated connection ,size=0 + +2025-09-24 23:52:17,836 INFO Connection check task end + +2025-09-24 23:52:20,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:20,836 INFO Connection check task start + +2025-09-24 23:52:20,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:20,836 INFO Out dated connection ,size=0 + +2025-09-24 23:52:20,836 INFO Connection check task end + +2025-09-24 23:52:23,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:23,837 INFO Connection check task start + +2025-09-24 23:52:23,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:23,837 INFO Out dated connection ,size=0 + +2025-09-24 23:52:23,837 INFO Connection check task end + +2025-09-24 23:52:26,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:26,838 INFO Connection check task start + +2025-09-24 23:52:26,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:26,838 INFO Out dated connection ,size=0 + +2025-09-24 23:52:26,838 INFO Connection check task end + +2025-09-24 23:52:29,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:29,839 INFO Connection check task start + +2025-09-24 23:52:29,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:29,839 INFO Out dated connection ,size=0 + +2025-09-24 23:52:29,840 INFO Connection check task end + +2025-09-24 23:52:32,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:32,840 INFO Connection check task start + +2025-09-24 23:52:32,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:32,840 INFO Out dated connection ,size=0 + +2025-09-24 23:52:32,840 INFO Connection check task end + +2025-09-24 23:52:35,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:35,840 INFO Connection check task start + +2025-09-24 23:52:35,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:35,841 INFO Out dated connection ,size=0 + +2025-09-24 23:52:35,841 INFO Connection check task end + +2025-09-24 23:52:38,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:38,842 INFO Connection check task start + +2025-09-24 23:52:38,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:38,842 INFO Out dated connection ,size=0 + +2025-09-24 23:52:38,842 INFO Connection check task end + +2025-09-24 23:52:41,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:41,843 INFO Connection check task start + +2025-09-24 23:52:41,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:41,843 INFO Out dated connection ,size=0 + +2025-09-24 23:52:41,843 INFO Connection check task end + +2025-09-24 23:52:44,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:44,844 INFO Connection check task start + +2025-09-24 23:52:44,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:44,844 INFO Out dated connection ,size=0 + +2025-09-24 23:52:44,844 INFO Connection check task end + +2025-09-24 23:52:47,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:47,845 INFO Connection check task start + +2025-09-24 23:52:47,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:47,845 INFO Out dated connection ,size=0 + +2025-09-24 23:52:47,845 INFO Connection check task end + +2025-09-24 23:52:50,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:50,845 INFO Connection check task start + +2025-09-24 23:52:50,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:50,846 INFO Out dated connection ,size=0 + +2025-09-24 23:52:50,846 INFO Connection check task end + +2025-09-24 23:52:53,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:53,846 INFO Connection check task start + +2025-09-24 23:52:53,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:53,847 INFO Out dated connection ,size=0 + +2025-09-24 23:52:53,847 INFO Connection check task end + +2025-09-24 23:52:56,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:56,848 INFO Connection check task start + +2025-09-24 23:52:56,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:56,848 INFO Out dated connection ,size=0 + +2025-09-24 23:52:56,848 INFO Connection check task end + +2025-09-24 23:52:59,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:52:59,849 INFO Connection check task start + +2025-09-24 23:52:59,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:52:59,849 INFO Out dated connection ,size=0 + +2025-09-24 23:52:59,849 INFO Connection check task end + +2025-09-24 23:53:02,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:02,850 INFO Connection check task start + +2025-09-24 23:53:02,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:02,850 INFO Out dated connection ,size=0 + +2025-09-24 23:53:02,850 INFO Connection check task end + +2025-09-24 23:53:05,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:05,850 INFO Connection check task start + +2025-09-24 23:53:05,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:05,851 INFO Out dated connection ,size=0 + +2025-09-24 23:53:05,851 INFO Connection check task end + +2025-09-24 23:53:08,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:08,851 INFO Connection check task start + +2025-09-24 23:53:08,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:08,851 INFO Out dated connection ,size=0 + +2025-09-24 23:53:08,851 INFO Connection check task end + +2025-09-24 23:53:11,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:11,852 INFO Connection check task start + +2025-09-24 23:53:11,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:11,852 INFO Out dated connection ,size=0 + +2025-09-24 23:53:11,852 INFO Connection check task end + +2025-09-24 23:53:14,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:14,852 INFO Connection check task start + +2025-09-24 23:53:14,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:14,853 INFO Out dated connection ,size=0 + +2025-09-24 23:53:14,853 INFO Connection check task end + +2025-09-24 23:53:17,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:17,853 INFO Connection check task start + +2025-09-24 23:53:17,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:17,853 INFO Out dated connection ,size=0 + +2025-09-24 23:53:17,853 INFO Connection check task end + +2025-09-24 23:53:20,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:20,854 INFO Connection check task start + +2025-09-24 23:53:20,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:20,854 INFO Out dated connection ,size=0 + +2025-09-24 23:53:20,854 INFO Connection check task end + +2025-09-24 23:53:23,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:23,855 INFO Connection check task start + +2025-09-24 23:53:23,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:23,855 INFO Out dated connection ,size=0 + +2025-09-24 23:53:23,855 INFO Connection check task end + +2025-09-24 23:53:26,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:26,855 INFO Connection check task start + +2025-09-24 23:53:26,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:26,856 INFO Out dated connection ,size=0 + +2025-09-24 23:53:26,856 INFO Connection check task end + +2025-09-24 23:53:29,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:29,856 INFO Connection check task start + +2025-09-24 23:53:29,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:29,856 INFO Out dated connection ,size=0 + +2025-09-24 23:53:29,856 INFO Connection check task end + +2025-09-24 23:53:32,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:32,857 INFO Connection check task start + +2025-09-24 23:53:32,857 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:32,857 INFO Out dated connection ,size=0 + +2025-09-24 23:53:32,857 INFO Connection check task end + +2025-09-24 23:53:35,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:35,858 INFO Connection check task start + +2025-09-24 23:53:35,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:35,858 INFO Out dated connection ,size=0 + +2025-09-24 23:53:35,858 INFO Connection check task end + +2025-09-24 23:53:38,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:38,859 INFO Connection check task start + +2025-09-24 23:53:38,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:38,859 INFO Out dated connection ,size=0 + +2025-09-24 23:53:38,859 INFO Connection check task end + +2025-09-24 23:53:41,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:41,860 INFO Connection check task start + +2025-09-24 23:53:41,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:41,861 INFO Out dated connection ,size=0 + +2025-09-24 23:53:41,861 INFO Connection check task end + +2025-09-24 23:53:44,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:44,861 INFO Connection check task start + +2025-09-24 23:53:44,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:44,861 INFO Out dated connection ,size=0 + +2025-09-24 23:53:44,861 INFO Connection check task end + +2025-09-24 23:53:47,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:47,862 INFO Connection check task start + +2025-09-24 23:53:47,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:47,862 INFO Out dated connection ,size=0 + +2025-09-24 23:53:47,862 INFO Connection check task end + +2025-09-24 23:53:50,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:50,863 INFO Connection check task start + +2025-09-24 23:53:50,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:50,863 INFO Out dated connection ,size=0 + +2025-09-24 23:53:50,863 INFO Connection check task end + +2025-09-24 23:53:53,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:53,865 INFO Connection check task start + +2025-09-24 23:53:53,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:53,865 INFO Out dated connection ,size=0 + +2025-09-24 23:53:53,865 INFO Connection check task end + +2025-09-24 23:53:56,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:56,866 INFO Connection check task start + +2025-09-24 23:53:56,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:56,867 INFO Out dated connection ,size=0 + +2025-09-24 23:53:56,867 INFO Connection check task end + +2025-09-24 23:53:59,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:53:59,867 INFO Connection check task start + +2025-09-24 23:53:59,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:53:59,868 INFO Out dated connection ,size=0 + +2025-09-24 23:53:59,868 INFO Connection check task end + +2025-09-24 23:54:02,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:02,868 INFO Connection check task start + +2025-09-24 23:54:02,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:02,868 INFO Out dated connection ,size=0 + +2025-09-24 23:54:02,869 INFO Connection check task end + +2025-09-24 23:54:05,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:05,869 INFO Connection check task start + +2025-09-24 23:54:05,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:05,869 INFO Out dated connection ,size=0 + +2025-09-24 23:54:05,869 INFO Connection check task end + +2025-09-24 23:54:08,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:08,870 INFO Connection check task start + +2025-09-24 23:54:08,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:08,871 INFO Out dated connection ,size=0 + +2025-09-24 23:54:08,871 INFO Connection check task end + +2025-09-24 23:54:11,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:11,872 INFO Connection check task start + +2025-09-24 23:54:11,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:11,872 INFO Out dated connection ,size=0 + +2025-09-24 23:54:11,872 INFO Connection check task end + +2025-09-24 23:54:14,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:14,872 INFO Connection check task start + +2025-09-24 23:54:14,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:14,873 INFO Out dated connection ,size=0 + +2025-09-24 23:54:14,873 INFO Connection check task end + +2025-09-24 23:54:17,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:17,873 INFO Connection check task start + +2025-09-24 23:54:17,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:17,873 INFO Out dated connection ,size=0 + +2025-09-24 23:54:17,873 INFO Connection check task end + +2025-09-24 23:54:20,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:20,874 INFO Connection check task start + +2025-09-24 23:54:20,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:20,875 INFO Out dated connection ,size=0 + +2025-09-24 23:54:20,875 INFO Connection check task end + +2025-09-24 23:54:23,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:23,876 INFO Connection check task start + +2025-09-24 23:54:23,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:23,876 INFO Out dated connection ,size=0 + +2025-09-24 23:54:23,876 INFO Connection check task end + +2025-09-24 23:54:26,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:26,877 INFO Connection check task start + +2025-09-24 23:54:26,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:26,877 INFO Out dated connection ,size=0 + +2025-09-24 23:54:26,877 INFO Connection check task end + +2025-09-24 23:54:29,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:29,878 INFO Connection check task start + +2025-09-24 23:54:29,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:29,878 INFO Out dated connection ,size=0 + +2025-09-24 23:54:29,878 INFO Connection check task end + +2025-09-24 23:54:32,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:32,878 INFO Connection check task start + +2025-09-24 23:54:32,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:32,879 INFO Out dated connection ,size=0 + +2025-09-24 23:54:32,879 INFO Connection check task end + +2025-09-24 23:54:35,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:35,880 INFO Connection check task start + +2025-09-24 23:54:35,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:35,880 INFO Out dated connection ,size=0 + +2025-09-24 23:54:35,880 INFO Connection check task end + +2025-09-24 23:54:38,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:38,881 INFO Connection check task start + +2025-09-24 23:54:38,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:38,881 INFO Out dated connection ,size=0 + +2025-09-24 23:54:38,882 INFO Connection check task end + +2025-09-24 23:54:41,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:41,883 INFO Connection check task start + +2025-09-24 23:54:41,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:41,883 INFO Out dated connection ,size=0 + +2025-09-24 23:54:41,883 INFO Connection check task end + +2025-09-24 23:54:44,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:44,883 INFO Connection check task start + +2025-09-24 23:54:44,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:44,883 INFO Out dated connection ,size=0 + +2025-09-24 23:54:44,884 INFO Connection check task end + +2025-09-24 23:54:47,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:47,885 INFO Connection check task start + +2025-09-24 23:54:47,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:47,885 INFO Out dated connection ,size=0 + +2025-09-24 23:54:47,885 INFO Connection check task end + +2025-09-24 23:54:50,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:50,886 INFO Connection check task start + +2025-09-24 23:54:50,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:50,886 INFO Out dated connection ,size=0 + +2025-09-24 23:54:50,887 INFO Connection check task end + +2025-09-24 23:54:53,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:53,887 INFO Connection check task start + +2025-09-24 23:54:53,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:53,887 INFO Out dated connection ,size=0 + +2025-09-24 23:54:53,887 INFO Connection check task end + +2025-09-24 23:54:56,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:56,888 INFO Connection check task start + +2025-09-24 23:54:56,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:56,888 INFO Out dated connection ,size=0 + +2025-09-24 23:54:56,888 INFO Connection check task end + +2025-09-24 23:54:59,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:54:59,889 INFO Connection check task start + +2025-09-24 23:54:59,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:54:59,889 INFO Out dated connection ,size=0 + +2025-09-24 23:54:59,889 INFO Connection check task end + +2025-09-24 23:55:02,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:02,890 INFO Connection check task start + +2025-09-24 23:55:02,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:02,890 INFO Out dated connection ,size=0 + +2025-09-24 23:55:02,890 INFO Connection check task end + +2025-09-24 23:55:05,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:05,891 INFO Connection check task start + +2025-09-24 23:55:05,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:05,892 INFO Out dated connection ,size=0 + +2025-09-24 23:55:05,893 INFO Connection check task end + +2025-09-24 23:55:08,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:08,893 INFO Connection check task start + +2025-09-24 23:55:08,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:08,893 INFO Out dated connection ,size=0 + +2025-09-24 23:55:08,893 INFO Connection check task end + +2025-09-24 23:55:11,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:11,894 INFO Connection check task start + +2025-09-24 23:55:11,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:11,894 INFO Out dated connection ,size=0 + +2025-09-24 23:55:11,894 INFO Connection check task end + +2025-09-24 23:55:14,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:14,895 INFO Connection check task start + +2025-09-24 23:55:14,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:14,895 INFO Out dated connection ,size=0 + +2025-09-24 23:55:14,895 INFO Connection check task end + +2025-09-24 23:55:17,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:17,896 INFO Connection check task start + +2025-09-24 23:55:17,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:17,896 INFO Out dated connection ,size=0 + +2025-09-24 23:55:17,896 INFO Connection check task end + +2025-09-24 23:55:20,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:20,896 INFO Connection check task start + +2025-09-24 23:55:20,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:20,896 INFO Out dated connection ,size=0 + +2025-09-24 23:55:20,896 INFO Connection check task end + +2025-09-24 23:55:23,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:23,897 INFO Connection check task start + +2025-09-24 23:55:23,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:23,897 INFO Out dated connection ,size=0 + +2025-09-24 23:55:23,897 INFO Connection check task end + +2025-09-24 23:55:26,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:26,899 INFO Connection check task start + +2025-09-24 23:55:26,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:26,900 INFO Out dated connection ,size=0 + +2025-09-24 23:55:26,900 INFO Connection check task end + +2025-09-24 23:55:29,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:29,900 INFO Connection check task start + +2025-09-24 23:55:29,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:29,900 INFO Out dated connection ,size=0 + +2025-09-24 23:55:29,900 INFO Connection check task end + +2025-09-24 23:55:32,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:32,901 INFO Connection check task start + +2025-09-24 23:55:32,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:32,901 INFO Out dated connection ,size=0 + +2025-09-24 23:55:32,901 INFO Connection check task end + +2025-09-24 23:55:35,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:35,902 INFO Connection check task start + +2025-09-24 23:55:35,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:35,902 INFO Out dated connection ,size=0 + +2025-09-24 23:55:35,902 INFO Connection check task end + +2025-09-24 23:55:38,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:38,903 INFO Connection check task start + +2025-09-24 23:55:38,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:38,903 INFO Out dated connection ,size=0 + +2025-09-24 23:55:38,903 INFO Connection check task end + +2025-09-24 23:55:41,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:41,904 INFO Connection check task start + +2025-09-24 23:55:41,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:41,904 INFO Out dated connection ,size=0 + +2025-09-24 23:55:41,904 INFO Connection check task end + +2025-09-24 23:55:44,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:44,904 INFO Connection check task start + +2025-09-24 23:55:44,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:44,905 INFO Out dated connection ,size=0 + +2025-09-24 23:55:44,905 INFO Connection check task end + +2025-09-24 23:55:47,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:47,905 INFO Connection check task start + +2025-09-24 23:55:47,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:47,906 INFO Out dated connection ,size=0 + +2025-09-24 23:55:47,906 INFO Connection check task end + +2025-09-24 23:55:50,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:50,906 INFO Connection check task start + +2025-09-24 23:55:50,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:50,906 INFO Out dated connection ,size=0 + +2025-09-24 23:55:50,906 INFO Connection check task end + +2025-09-24 23:55:53,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:53,906 INFO Connection check task start + +2025-09-24 23:55:53,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:53,907 INFO Out dated connection ,size=0 + +2025-09-24 23:55:53,907 INFO Connection check task end + +2025-09-24 23:55:56,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:56,908 INFO Connection check task start + +2025-09-24 23:55:56,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:56,909 INFO Out dated connection ,size=0 + +2025-09-24 23:55:56,909 INFO Connection check task end + +2025-09-24 23:55:59,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:55:59,909 INFO Connection check task start + +2025-09-24 23:55:59,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:55:59,909 INFO Out dated connection ,size=0 + +2025-09-24 23:55:59,909 INFO Connection check task end + +2025-09-24 23:56:02,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:02,910 INFO Connection check task start + +2025-09-24 23:56:02,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:02,910 INFO Out dated connection ,size=0 + +2025-09-24 23:56:02,910 INFO Connection check task end + +2025-09-24 23:56:05,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:05,910 INFO Connection check task start + +2025-09-24 23:56:05,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:05,910 INFO Out dated connection ,size=0 + +2025-09-24 23:56:05,910 INFO Connection check task end + +2025-09-24 23:56:08,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:08,911 INFO Connection check task start + +2025-09-24 23:56:08,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:08,911 INFO Out dated connection ,size=0 + +2025-09-24 23:56:08,911 INFO Connection check task end + +2025-09-24 23:56:11,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:11,913 INFO Connection check task start + +2025-09-24 23:56:11,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:11,913 INFO Out dated connection ,size=0 + +2025-09-24 23:56:11,913 INFO Connection check task end + +2025-09-24 23:56:14,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:14,913 INFO Connection check task start + +2025-09-24 23:56:14,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:14,914 INFO Out dated connection ,size=0 + +2025-09-24 23:56:14,914 INFO Connection check task end + +2025-09-24 23:56:17,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:17,915 INFO Connection check task start + +2025-09-24 23:56:17,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:17,915 INFO Out dated connection ,size=0 + +2025-09-24 23:56:17,915 INFO Connection check task end + +2025-09-24 23:56:20,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:20,915 INFO Connection check task start + +2025-09-24 23:56:20,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:20,915 INFO Out dated connection ,size=0 + +2025-09-24 23:56:20,915 INFO Connection check task end + +2025-09-24 23:56:23,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:23,916 INFO Connection check task start + +2025-09-24 23:56:23,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:23,916 INFO Out dated connection ,size=0 + +2025-09-24 23:56:23,916 INFO Connection check task end + +2025-09-24 23:56:26,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:26,916 INFO Connection check task start + +2025-09-24 23:56:26,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:26,917 INFO Out dated connection ,size=0 + +2025-09-24 23:56:26,917 INFO Connection check task end + +2025-09-24 23:56:29,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:29,917 INFO Connection check task start + +2025-09-24 23:56:29,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:29,917 INFO Out dated connection ,size=0 + +2025-09-24 23:56:29,917 INFO Connection check task end + +2025-09-24 23:56:32,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:32,918 INFO Connection check task start + +2025-09-24 23:56:32,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:32,918 INFO Out dated connection ,size=0 + +2025-09-24 23:56:32,918 INFO Connection check task end + +2025-09-24 23:56:35,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:35,918 INFO Connection check task start + +2025-09-24 23:56:35,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:35,919 INFO Out dated connection ,size=0 + +2025-09-24 23:56:35,919 INFO Connection check task end + +2025-09-24 23:56:38,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:38,920 INFO Connection check task start + +2025-09-24 23:56:38,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:38,920 INFO Out dated connection ,size=0 + +2025-09-24 23:56:38,920 INFO Connection check task end + +2025-09-24 23:56:41,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:41,921 INFO Connection check task start + +2025-09-24 23:56:41,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:41,921 INFO Out dated connection ,size=0 + +2025-09-24 23:56:41,921 INFO Connection check task end + +2025-09-24 23:56:44,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:44,922 INFO Connection check task start + +2025-09-24 23:56:44,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:44,922 INFO Out dated connection ,size=0 + +2025-09-24 23:56:44,922 INFO Connection check task end + +2025-09-24 23:56:47,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:47,928 INFO Connection check task start + +2025-09-24 23:56:47,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:47,929 INFO Out dated connection ,size=0 + +2025-09-24 23:56:47,930 INFO Connection check task end + +2025-09-24 23:56:50,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:50,931 INFO Connection check task start + +2025-09-24 23:56:50,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:50,931 INFO Out dated connection ,size=0 + +2025-09-24 23:56:50,931 INFO Connection check task end + +2025-09-24 23:56:53,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} + +2025-09-24 23:56:53,932 INFO Connection check task start + +2025-09-24 23:56:53,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 + +2025-09-24 23:56:53,932 INFO Out dated connection ,size=0 + +2025-09-24 23:56:53,934 INFO Connection check task end diff --git a/front-end/app-product/src/features/product/router/index.ts b/front-end/app-product/src/features/product/router/index.ts index 64eb8a4..fd1b654 100644 --- a/front-end/app-product/src/features/product/router/index.ts +++ b/front-end/app-product/src/features/product/router/index.ts @@ -4,13 +4,13 @@ export const productRouter: Array = [ { path: '/Products', name: 'ProductList', - component: () => import('../views/ProductList.jsx'), + component: () => import('../views/ProductList/ProductList.jsx'), meta: { title: '商品列表' } }, { path: '/ProductDetail', name: 'ProductDetail', - component: () => import('../views/ProductDetail.jsx'), + component: () => import('../views/ProductDetail/ProductDetail.jsx'), meta: { title: '商品详情' } }, ] \ No newline at end of file diff --git a/front-end/app-product/src/features/product/views/ProductDetail.tsx b/front-end/app-product/src/features/product/views/ProductDetail/ProductDetail.tsx similarity index 100% rename from front-end/app-product/src/features/product/views/ProductDetail.tsx rename to front-end/app-product/src/features/product/views/ProductDetail/ProductDetail.tsx diff --git a/front-end/app-product/src/features/product/views/ProductList/ProductList.module.less b/front-end/app-product/src/features/product/views/ProductList/ProductList.module.less new file mode 100644 index 0000000..059f164 --- /dev/null +++ b/front-end/app-product/src/features/product/views/ProductList/ProductList.module.less @@ -0,0 +1,5 @@ +.ProductList { + .test { + color: red; + } +} diff --git a/front-end/app-product/src/features/product/views/ProductList.tsx b/front-end/app-product/src/features/product/views/ProductList/ProductList.tsx similarity index 89% rename from front-end/app-product/src/features/product/views/ProductList.tsx rename to front-end/app-product/src/features/product/views/ProductList/ProductList.tsx index 313658e..5c91b1b 100644 --- a/front-end/app-product/src/features/product/views/ProductList.tsx +++ b/front-end/app-product/src/features/product/views/ProductList/ProductList.tsx @@ -1,3 +1,5 @@ +import styles from './ProductList.module.less' + import { defineComponent, onMounted, reactive } from 'vue' import { useRouter } from 'vue-router'; import { product } from '@domains/product/di/productModule'; @@ -28,8 +30,8 @@ export default defineComponent({ } return () => ( -
-

商品领域模块 - 商品列表页面3

+
+

商品领域模块 - 商品列表页面3


从Deno 后端 加载的数据,点击进详情

    diff --git a/front-end/app-product/src/shared/types/env.d.ts b/front-end/app-product/src/shared/types/env.d.ts new file mode 100644 index 0000000..c7077e0 --- /dev/null +++ b/front-end/app-product/src/shared/types/env.d.ts @@ -0,0 +1,4 @@ +declare module '*.module.less' { + const classes: { [key: string]: string } + export default classes +} diff --git a/front-end/app-product/vite.config.ts b/front-end/app-product/vite.config.ts index 93781a2..3c1abfe 100644 --- a/front-end/app-product/vite.config.ts +++ b/front-end/app-product/vite.config.ts @@ -41,6 +41,8 @@ export default defineConfig(async ({ mode }) => { target: 'esnext', cssCodeSplit: true, rollupOptions: { + // 关键配置:告诉 Rollup 不要处理模块联邦的导入 + external: [ 'shared/normalize' ], output: { minifyInternalExports: false } diff --git a/front-end/app-shared/index.html b/front-end/app-shared/index.html new file mode 100644 index 0000000..b772142 --- /dev/null +++ b/front-end/app-shared/index.html @@ -0,0 +1,16 @@ + + + + + + + + Vite App + + + +
    + + + + \ No newline at end of file diff --git a/front-end/app-shared/package.json b/front-end/app-shared/package.json index 4a8f7b1..1d5411a 100644 --- a/front-end/app-shared/package.json +++ b/front-end/app-shared/package.json @@ -13,11 +13,14 @@ "type-check": "vue-tsc --build" }, "dependencies": { + "@element-plus/icons-vue": "^2.3.2", + "@originjs/vite-plugin-federation": "1.3.8", "axios": "^1.12.2", - "nacos-federation": "link:../nacos-federation" + "element-plus": "^2.11.3", + "nacos-federation": "link:../nacos-federation", + "vue": "^3.5.21" }, "devDependencies": { - "@originjs/vite-plugin-federation": "^1.4.1", "@vitejs/plugin-vue": "^6.0.1", "typescript": "~5.8.3", "vite": "^7.1.6" diff --git a/front-end/app-shared/src/lib/element-plus.ts b/front-end/app-shared/src/lib/element-plus.ts new file mode 100644 index 0000000..291fb97 --- /dev/null +++ b/front-end/app-shared/src/lib/element-plus.ts @@ -0,0 +1,34 @@ +import ElementPlus from 'element-plus' +import 'element-plus/dist/index.css'; +import * as ElementPlusIcons from '@element-plus/icons-vue'; + +import { App } from 'vue'; + +// 导出安装函数 +export const initElement = (app: App) => { + console.log("[app-shared] element-plus UI框架 已加载...") + app.use(ElementPlus); +}; + +// 导出 element-plus 的主要组件 +export { + ElButton, + ElInput, + ElTable, + ElForm, + ElMessage, +} from 'element-plus'; + + +export { + Filter as FilterIcon, + Message as MessageIcon, + Sort as SortIcon, + Search as SearchIcon, +} from '@element-plus/icons-vue'; + +// 导出整个图标 +export const Icons = ElementPlusIcons; + +// 导出整个ui框架 +export default ElementPlus; \ No newline at end of file diff --git a/front-end/app-shared/src/styles/common/index.ts b/front-end/app-shared/src/styles/common/index.ts new file mode 100644 index 0000000..20e4000 --- /dev/null +++ b/front-end/app-shared/src/styles/common/index.ts @@ -0,0 +1,5 @@ +import "./normalize.less"; + +export const init = () => { + console.log("[app-shared] 清除默认样式normalize.less 已加载...") +} \ No newline at end of file diff --git a/front-end/app-shared/src/styles/common/normalize.less b/front-end/app-shared/src/styles/common/normalize.less new file mode 100644 index 0000000..e71208f --- /dev/null +++ b/front-end/app-shared/src/styles/common/normalize.less @@ -0,0 +1,463 @@ +/* + * Copyright (c) 2020. bmy + */ + +html, body, #app { + width: 100%; + height: 100%; +} + +html { + font-family: sans-serif; /* 1 */ + line-height: 1.15; /* 2 */ + -ms-text-size-adjust: 100%; /* 3 */ + -webkit-text-size-adjust: 100%; /* 3 */ +} + +body { + line-height: 1.5; + font-size: 16px; + width: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + background-color: #fafafa; + color: rgba(0, 0, 0, 0.87); +} + +li { + list-style: none; +} + +article, +aside, +footer, +header, +nav, +section { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + * 1. Add the correct display in IE. + */ + +figcaption, +figure, +main { /* 1 */ + display: block; +} + +/** + * Add the correct margin in IE 8. + */ + +figure { + margin: 1em 40px; +} + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ + white-space: pre-wrap; + word-break: break-all; + margin: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. + */ + +a { + text-decoration: none; + background-color: transparent; /* 1 */ + -webkit-text-decoration-skip: objects; /* 2 */ + user-select: none; + -webkit-user-select: none; +} + +/** + * Remove the outline on focused links when they are also active or hovered + * in all browsers (opinionated). + */ + +a:active, +a:hover { + outline-width: 0; +} + +/** + * 1. Remove the bottom border in Firefox 39-. + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Prevent the duplicate application of `bolder` by the next rule in Safari 6. + */ + +b, +strong { + font-weight: inherit; +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font style in Android 4.3-. + */ + +dfn { + font-style: italic; +} + +/** + * Add the correct background and color in IE 9-. + */ + +mark { + background-color: #ff0; + color: #000; +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +audio, +video { + display: inline-block; +} + +/** + * Add the correct display in iOS 4-7. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Remove the border on images inside links in IE 10-. + */ + +img { + border-style: none; +} + +/** + * Hide the overflow in IE. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers (opinionated). + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` + * controls in Android 4. + * 2. Correct the inability to style clickable types in iOS and Safari. + */ + +button, +html [type="button"], /* 1 */ +[type="reset"], +[type="submit"] { + -webkit-appearance: button; /* 2 */ +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Change the border, margin, and padding in all browsers (opinionated). + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * 1. Add the correct display in IE 9-. + * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Remove the default vertical scrollbar in IE. + */ + +textarea { + overflow: auto; + resize: vertical; +} + +/** + * 1. Add the correct box sizing in IE 10-. + * 2. Remove the padding in IE 10-. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding and cancel buttons in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in IE 9-. + * 1. Add the correct display in Edge, IE, and Firefox. + */ + +details, /* 1 */ +menu { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Scripting + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +canvas { + display: inline-block; +} + +/** + * Add the correct display in IE. + */ + +template { + display: none; +} + +/* Hidden + ========================================================================== */ + +/** + * Add the correct display in IE 10-. + */ + +[hidden] { + display: none; +} diff --git a/front-end/app-shared/src/styles/pub/index.ts b/front-end/app-shared/src/styles/pub/index.ts new file mode 100644 index 0000000..f1a1b89 --- /dev/null +++ b/front-end/app-shared/src/styles/pub/index.ts @@ -0,0 +1,4 @@ +import "./variables.less"; +import "./mixins.less"; + +export const lessPub = ''; \ No newline at end of file diff --git a/front-end/app-shared/src/styles/pub/mixins.less b/front-end/app-shared/src/styles/pub/mixins.less new file mode 100644 index 0000000..9dc401f --- /dev/null +++ b/front-end/app-shared/src/styles/pub/mixins.less @@ -0,0 +1,297 @@ +/* + * Copyright (c) 2020. bmy + */ + +.clearfix() { + &:after, + &:before { + content: " "; + display: table; + } + &:after { + clear: both; + } +} + +.hairline(@position, @color) when (@position = top) { + &:before { + content: ''; + position: absolute; + left: 0; + top: 0; + bottom: auto; + right: auto; + height: 1px; + width: 100%; + background-color: @color; + display: block; + z-index: 15; + // .transform-origin(50% 0%); + html.pixel-ratio-2 & { + .transform(scaleY(0.5)); + } + + html.pixel-ratio-3 & { + .transform(scaleY(0.33)); + } + } +} + +.hairline(@position, @color) when (@position = left) { + &:before { + content: ''; + position: absolute; + left: 0; + top: 0; + bottom: auto; + right: auto; + width: 1px; + height: 100%; + background-color: @color; + display: block; + z-index: 15; + // .transform-origin(0% 50%); + html.pixel-ratio-2 & { + .transform(scaleX(0.5)); + } + + html.pixel-ratio-3 & { + .transform(scaleX(0.33)); + } + } + +} + +.hairline(@position, @color) when (@position = bottom) { + &:after { + content: ''; + position: absolute; + left: 0; + bottom: 0; + right: auto; + top: auto; + height: 1px; + width: 100%; + background-color: @color; + display: block; + z-index: 15; + + html.pixel-ratio-2 & { + .transform(scaleY(0.5)); + } + + html.pixel-ratio-3 & { + .transform(scaleY(0.33)); + } + } +} + +.hairline(@position, @color) when (@position = right) { + &:after { + content: ''; + position: absolute; + right: 0; + top: 0; + left: auto; + bottom: auto; + width: 1px; + height: 100%; + background-color: @color; + display: block; + z-index: 15; + // .transform-origin(100% 50%); + html.pixel-ratio-2 & { + .transform(scaleX(0.5)); + } + + html.pixel-ratio-3 & { + .transform(scaleX(0.33)); + } + } +} + +// For right and bottom +.hairline-remove(@position) when not (@position = left) and not (@position = top) { + &:after { + display: none; + } +} + +// For left and top +.hairline-remove(@position) when not (@position = right) and not (@position = bottom) { + &:before { + display: none; + } +} + +// For right and bottom +.hairline-color(@position, @color) when not (@position = left) and not (@position = top) { + &:after { + background-color: @color; + } +} + +// For left and top +.hairline-color(@position, @color) when not (@position = right) and not (@position = bottom) { + &:before { + background-color: @color; + } +} + +// Encoded SVG Background +.encoded-svg-background(@svg) { + @url: `encodeURIComponent(@{svg})`; + background-image: url("data:image/svg+xml;charset=utf-8,@{url}"); +} + +// Preserve3D +.preserve3d() { + -webkit-transform-style: preserve-3d; + -moz-transform-style: preserve-3d; + -ms-transform-style: preserve-3d; + transform-style: preserve-3d; +} + +// Shadow +.depth(@level:1) { + & when (@level = 0) { + box-shadow: none; + } + & when (@level = 1) { + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12); + } + & when (@level = 2) { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12); + } + & when (@level = 3) { + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .2), 0 3px 4px 0 rgba(0, 0, 0, .14), 0 1px 8px 0 rgba(0, 0, 0, .12); + } + & when (@level = 4) { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12); + } + & when (@level = 5) { + box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 5px 8px 0 rgba(0, 0, 0, .14), 0 1px 14px 0 rgba(0, 0, 0, .12); + } + & when (@level = 6) { + box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12); + } + & when (@level = 7) { + box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12); + } + & when (@level = 8) { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12); + } + & when (@level = 9) { + box-shadow: 0 5px 6px -3px rgba(0, 0, 0, .2), 0 9px 12px 1px rgba(0, 0, 0, .14), 0 3px 16px 2px rgba(0, 0, 0, .12); + } + & when (@level = 10) { + box-shadow: 0 6px 6px -3px rgba(0, 0, 0, .2), 0 10px 14px 1px rgba(0, 0, 0, .14), 0 4px 18px 3px rgba(0, 0, 0, .12); + } + & when (@level = 11) { + box-shadow: 0 6px 7px -4px rgba(0, 0, 0, .2), 0 11px 15px 1px rgba(0, 0, 0, .14), 0 4px 20px 3px rgba(0, 0, 0, .12); + } + & when (@level = 12) { + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 12px 17px 2px rgba(0, 0, 0, .14), 0 5px 22px 4px rgba(0, 0, 0, .12); + } + & when (@level = 13) { + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 13px 19px 2px rgba(0, 0, 0, .14), 0 5px 24px 4px rgba(0, 0, 0, .12); + } + & when (@level = 14) { + box-shadow: 0 7px 9px -4px rgba(0, 0, 0, .2), 0 14px 21px 2px rgba(0, 0, 0, .14), 0 5px 26px 4px rgba(0, 0, 0, .12); + } + & when (@level = 15) { + box-shadow: 0 8px 9px -5px rgba(0, 0, 0, .2), 0 15px 22px 2px rgba(0, 0, 0, .14), 0 6px 28px 5px rgba(0, 0, 0, .12); + } + & when (@level = 16) { + box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12); + } + & when (@level = 17) { + box-shadow: 0 8px 11px -5px rgba(0, 0, 0, .2), 0 17px 26px 2px rgba(0, 0, 0, .14), 0 6px 32px 5px rgba(0, 0, 0, .12); + } + & when (@level = 18) { + box-shadow: 0 9px 11px -5px rgba(0, 0, 0, .2), 0 18px 28px 2px rgba(0, 0, 0, .14), 0 7px 34px 6px rgba(0, 0, 0, .12); + } + & when (@level = 19) { + box-shadow: 0 9px 12px -6px rgba(0, 0, 0, .2), 0 19px 29px 2px rgba(0, 0, 0, .14), 0 7px 36px 6px rgba(0, 0, 0, .12); + } + & when (@level = 20) { + box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 20px 31px 3px rgba(0, 0, 0, .14), 0 8px 38px 7px rgba(0, 0, 0, .12); + } + & when (@level = 21) { + box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 21px 33px 3px rgba(0, 0, 0, .14), 0 8px 40px 7px rgba(0, 0, 0, .12); + } + & when (@level = 22) { + box-shadow: 0 10px 14px -6px rgba(0, 0, 0, .2), 0 22px 35px 3px rgba(0, 0, 0, .14), 0 8px 42px 7px rgba(0, 0, 0, .12); + } + & when (@level = 23) { + box-shadow: 0 11px 14px -7px rgba(0, 0, 0, .2), 0 23px 36px 3px rgba(0, 0, 0, .14), 0 9px 44px 8px rgba(0, 0, 0, .12); + } + & when (@level = 24) { + box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12); + } + // & when (@level = 1) { + // box-shadow: rgba(0, 0, 0, 0.117647) 0px 1px 6px, rgba(0, 0, 0, 0.117647) 0px 1px 4px; + // } + // & when (@level = 2) { + // box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px; + // } + // & when (@level = 3) { + // box-shadow: rgba(0, 0, 0, 0.188235) 0px 10px 30px, rgba(0, 0, 0, 0.227451) 0px 6px 10px; + // } + // & when (@level = 4) { + // box-shadow: rgba(0, 0, 0, 0.247059) 0px 14px 45px, rgba(0, 0, 0, 0.219608) 0px 10px 18px; + // } + // & when (@level = 5) { + // box-shadow: rgba(0, 0, 0, 0.298039) 0px 19px 60px, rgba(0, 0, 0, 0.219608) 0px 15px 20px; + // } +} + +// Highlighted Links +.active-highlight(@color:rgba(255, 255, 255, 0.15)) { + &:before { + content: ''; + width: 100%; + height: 100%; + position: absolute; + left: 0; + top: 0; + background-color: @color; + background-repeat: no-repeat; + background-position: center; + background-size: 100% 100%; + opacity: 0; + pointer-events: none; + .transition(600ms); + } + &.active-state:before, + html:not(.watch-active-state) &:active:before { + opacity: 1; + .transition(150ms); + } +} + +.active-highlight-color(@color) { + &:before { + background-image: -webkit-radial-gradient(center, circle cover, @color 66%, rgba(red(@color), green(@color), blue(@color), 0) 66%); + background-image: radial-gradient(circle at center, @color 66%, rgba(red(@color), green(@color), blue(@color), 0) 66%); + } +} + +// No Scrollbar +.no-scrollbar() { + &::-webkit-scrollbar { + display: none !important; + width: 0 !important; + height: 0 !important; + -webkit-appearance: none; + opacity: 0 !important; + } +} + + +.ellipsis() { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + word-wrap: break-word; +} diff --git a/front-end/app-shared/src/styles/pub/variables.less b/front-end/app-shared/src/styles/pub/variables.less new file mode 100644 index 0000000..71809bd --- /dev/null +++ b/front-end/app-shared/src/styles/pub/variables.less @@ -0,0 +1,313 @@ +/* + * Copyright (c) 2020. bmy + */ + +// 公共css样式,可以在 页面组件中直接使用变量名称 +// 具体看 components/home.styl +@theme-color: red; +@test-color: yellow; + +@red50: #ffebee; +@red100: #ffcdd2; +@red200: #ef9a9a; +@red300: #e57373; +@red400: #ef5350; +@red500: #f44336; +@red600: #e53935; +@red700: #d32f2f; +@red800: #c62828; +@red900: #b71c1c; +@redA100: #ff8a80; +@redA200: #ff5252; +@redA400: #ff1744; +@redA700: #d50000; +@red: @red500; + +@pink50: #fce4ec; +@pink100: #f8bbd0; +@pink200: #f48fb1; +@pink300: #f06292; +@pink400: #ec407a; +@pink500: #e91e63; +@pink600: #d81b60; +@pink700: #c2185b; +@pink800: #ad1457; +@pink900: #880e4f; +@pinkA100: #ff80ab; +@pinkA200: #ff4081; +@pinkA400: #f50057; +@pinkA700: #c51162; +@pink: @pink500; + +@purple50: #f3e5f5; +@purple100: #e1bee7; +@purple200: #ce93d8; +@purple300: #ba68c8; +@purple400: #ab47bc; +@purple500: #9c27b0; +@purple600: #8e24aa; +@purple700: #7b1fa2; +@purple800: #6a1b9a; +@purple900: #4a148c; +@purpleA100: #ea80fc; +@purpleA200: #e040fb; +@purpleA400: #d500f9; +@purpleA700: #aa00ff; +@purple: @purple500; + +@deepPurple50: #ede7f6; +@deepPurple100: #d1c4e9; +@deepPurple200: #b39ddb; +@deepPurple300: #9575cd; +@deepPurple400: #7e57c2; +@deepPurple500: #673ab7; +@deepPurple600: #5e35b1; +@deepPurple700: #512da8; +@deepPurple800: #4527a0; +@deepPurple900: #311b92; +@deepPurpleA100: #b388ff; +@deepPurpleA200: #7c4dff; +@deepPurpleA400: #651fff; +@deepPurpleA700: #6200ea; +@deepPurple: @deepPurple500; + +@indigo50: #e8eaf6; +@indigo100: #c5cae9; +@indigo200: #9fa8da; +@indigo300: #7986cb; +@indigo400: #5c6bc0; +@indigo500: #3f51b5; +@indigo600: #3949ab; +@indigo700: #303f9f; +@indigo800: #283593; +@indigo900: #1a237e; +@indigoA100: #8c9eff; +@indigoA200: #536dfe; +@indigoA400: #3d5afe; +@indigoA700: #304ffe; +@indigo: @indigo500; + +@blue50: #e3f2fd; +@blue100: #bbdefb; +@blue200: #90caf9; +@blue300: #64b5f6; +@blue400: #42a5f5; +@blue500: #2196f3; +@blue600: #1e88e5; +@blue700: #1976d2; +@blue800: #1565c0; +@blue900: #0d47a1; +@blueA100: #82b1ff; +@blueA200: #448aff; +@blueA400: #2979ff; +@blueA700: #2962ff; +@blue: @blue500; + +@lightBlue50: #e1f5fe; +@lightBlue100: #b3e5fc; +@lightBlue200: #81d4fa; +@lightBlue300: #4fc3f7; +@lightBlue400: #29b6f6; +@lightBlue500: #03a9f4; +@lightBlue600: #039be5; +@lightBlue700: #0288d1; +@lightBlue800: #0277bd; +@lightBlue900: #01579b; +@lightBlueA100: #80d8ff; +@lightBlueA200: #40c4ff; +@lightBlueA400: #00b0ff; +@lightBlueA700: #0091ea; +@lightBlue: @lightBlue500; + +@cyan50: #e0f7fa; +@cyan100: #b2ebf2; +@cyan200: #80deea; +@cyan300: #4dd0e1; +@cyan400: #26c6da; +@cyan500: #00bcd4; +@cyan600: #00acc1; +@cyan700: #0097a7; +@cyan800: #00838f; +@cyan900: #006064; +@cyanA100: #84ffff; +@cyanA200: #18ffff; +@cyanA400: #00e5ff; +@cyanA700: #00b8d4; +@cyan: @cyan500; + +@teal50: #e0f2f1; +@teal100: #b2dfdb; +@teal200: #80cbc4; +@teal300: #4db6ac; +@teal400: #26a69a; +@teal500: #009688; +@teal600: #00897b; +@teal700: #00796b; +@teal800: #00695c; +@teal900: #004d40; +@tealA100: #a7ffeb; +@tealA200: #64ffda; +@tealA400: #1de9b6; +@tealA700: #00bfa5; +@teal: @teal500; + +@green50: #e8f5e9; +@green100: #c8e6c9; +@green200: #a5d6a7; +@green300: #81c784; +@green400: #66bb6a; +@green500: #4caf50; +@green600: #43a047; +@green700: #388e3c; +@green800: #2e7d32; +@green900: #1b5e20; +@greenA100: #b9f6ca; +@greenA200: #69f0ae; +@greenA400: #00e676; +@greenA700: #00c853; +@green: @green500; + +@lightGreen50: #f1f8e9; +@lightGreen100: #dcedc8; +@lightGreen200: #c5e1a5; +@lightGreen300: #aed581; +@lightGreen400: #9ccc65; +@lightGreen500: #8bc34a; +@lightGreen600: #7cb342; +@lightGreen700: #689f38; +@lightGreen800: #558b2f; +@lightGreen900: #33691e; +@lightGreenA100: #ccff90; +@lightGreenA200: #b2ff59; +@lightGreenA400: #76ff03; +@lightGreenA700: #64dd17; +@lightGreen: @lightGreen500; + +@lime50: #f9fbe7; +@lime100: #f0f4c3; +@lime200: #e6ee9c; +@lime300: #dce775; +@lime400: #d4e157; +@lime500: #cddc39; +@lime600: #c0ca33; +@lime700: #afb42b; +@lime800: #9e9d24; +@lime900: #827717; +@limeA100: #f4ff81; +@limeA200: #eeff41; +@limeA400: #c6ff00; +@limeA700: #aeea00; +@lime: @lime500; + +@yellow50: #fffde7; +@yellow100: #fff9c4; +@yellow200: #fff59d; +@yellow300: #fff176; +@yellow400: #ffee58; +@yellow500: #ffeb3b; +@yellow600: #fdd835; +@yellow700: #fbc02d; +@yellow800: #f9a825; +@yellow900: #f57f17; +@yellowA100: #ffff8d; +@yellowA200: #ffff00; +@yellowA400: #ffea00; +@yellowA700: #ffd600; +@yellow: @yellow500; + +@amber50: #fff8e1; +@amber100: #ffecb3; +@amber200: #ffe082; +@amber300: #ffd54f; +@amber400: #ffca28; +@amber500: #ffc107; +@amber600: #ffb300; +@amber700: #ffa000; +@amber800: #ff8f00; +@amber900: #ff6f00; +@amberA100: #ffe57f; +@amberA200: #ffd740; +@amberA400: #ffc400; +@amberA700: #ffab00; +@amber: @amber500; + +@orange50: #fff3e0; +@orange100: #ffe0b2; +@orange200: #ffcc80; +@orange300: #ffb74d; +@orange400: #ffa726; +@orange500: #ff9800; +@orange600: #fb8c00; +@orange700: #f57c00; +@orange800: #ef6c00; +@orange900: #e65100; +@orangeA100: #ffd180; +@orangeA200: #ffab40; +@orangeA400: #ff9100; +@orangeA700: #ff6d00; +@orange: @orange500; + +@deepOrange50: #fbe9e7; +@deepOrange100: #ffccbc; +@deepOrange200: #ffab91; +@deepOrange300: #ff8a65; +@deepOrange400: #ff7043; +@deepOrange500: #ff5722; +@deepOrange600: #f4511e; +@deepOrange700: #e64a19; +@deepOrange800: #d84315; +@deepOrange900: #bf360c; +@deepOrangeA100: #ff9e80; +@deepOrangeA200: #ff6e40; +@deepOrangeA400: #ff3d00; +@deepOrangeA700: #dd2c00; +@deepOrange: @deepOrange500; + +@brown50: #efebe9; +@brown100: #d7ccc8; +@brown200: #bcaaa4; +@brown300: #a1887f; +@brown400: #8d6e63; +@brown500: #795548; +@brown600: #6d4c41; +@brown700: #5d4037; +@brown800: #4e342e; +@brown900: #3e2723; +@brown: @brown500; + +@blueGrey50: #eceff1; +@blueGrey100: #cfd8dc; +@blueGrey200: #b0bec5; +@blueGrey300: #90a4ae; +@blueGrey400: #78909c; +@blueGrey500: #607d8b; +@blueGrey600: #546e7a; +@blueGrey700: #455a64; +@blueGrey800: #37474f; +@blueGrey900: #263238; +@blueGrey: @blueGrey500; + +@grey50: #fafafa; +@grey100: #f5f5f5; +@grey200: #eeeeee; +@grey300: #e0e0e0; +@grey400: #bdbdbd; +@grey500: #9e9e9e; +@grey600: #757575; +@grey700: #616161; +@grey800: #424242; +@grey900: #212121; +@grey: @grey500; + +@black: #000000; +@white: #ffffff; + +@transparent: rgba(0, 0, 0, 0); +@fullBlack: rgba(0, 0, 0, 1); +@darkBlack: rgba(0, 0, 0, 0.87); +@lightBlack: rgba(0, 0, 0, 0.54); +@minBlack: rgba(0, 0, 0, 0.26); +@faintBlack: rgba(0, 0, 0, 0.12); +@fullWhite: rgba(255, 255, 255, 1); +@darkWhite: rgba(255, 255, 255, 0.87); +@lightWhite: rgba(255, 255, 255, 0.54); diff --git a/front-end/app-shared/tsconfig.json b/front-end/app-shared/tsconfig.json index 1b689a0..6b066fe 100644 --- a/front-end/app-shared/tsconfig.json +++ b/front-end/app-shared/tsconfig.json @@ -10,18 +10,21 @@ "**/*.test.ts" ], "compilerOptions": { - "moduleResolution": "bundler", - "verbatimModuleSyntax": false, "target": "ES2020", + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], "module": "ESNext", - // 模块导出优化 + "moduleResolution": "bundler", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "verbatimModuleSyntax": false, + "preserveValueImports": false, "resolveJsonModule": true, - // 允许导入JSON文件 "isolatedModules": true, - // 确保每个文件可被独立转译(Vite等工具要求) "skipLibCheck": true, - // 跳过库类型检查,加快编译速度 - "paths": { "@/*": [ "./src/app/*" diff --git a/front-end/app-shared/vite.config.ts b/front-end/app-shared/vite.config.ts index c8756cd..2417d3e 100644 --- a/front-end/app-shared/vite.config.ts +++ b/front-end/app-shared/vite.config.ts @@ -22,9 +22,13 @@ export default defineConfig(async ({ mode }): Promise => { "./config": "./src/config/index.ts", "./infra": "./src/infra/index.ts", "./utils": "./src/utils/index.ts", + "./element-plus": "./src/lib/element-plus.ts", + "./normalize": "./src/styles/common/index.ts", }, shared: { - axios: { requiredVersion: '^1.12.2' } + vue: { import: false, generate: false, requiredVersion: '^3.5.18' }, + axios: { requiredVersion: '^1.12.2' }, + 'element-plus': { requiredVersion: '^2.11.3' } } }), vue() diff --git a/front-end/main-app/src/app/main.ts b/front-end/main-app/src/app/main.ts index 4fea2cd..582c18f 100644 --- a/front-end/main-app/src/app/main.ts +++ b/front-end/main-app/src/app/main.ts @@ -1,25 +1,22 @@ -// import './assets/main.css' import { createApp } from 'vue' import { createPinia } from 'pinia' import App from './App' import router from './router' +import { init } from "shared/normalize"; +import element from "shared/element-plus"; -// import { getNacosInstance } from '@shared/lib/nacosInstance'; class Main { constructor() { - createApp(App) - .use(createPinia()) - .use(router) - .mount('#app') + const app = createApp(App) - // this.test() - } + app.use(createPinia()) + .use(router) + .mount('#app') - async test() { - // 关键:通过getNacosInstance获取实例(确保已初始化) - const nacos = await getNacosInstance(); - console.log("product: ", await nacos.find('app-product')) + app.use(element) + + init() } } diff --git a/front-end/main-app/src/app/views/Home.tsx b/front-end/main-app/src/app/views/Home.tsx index a48bd79..de45a51 100644 --- a/front-end/main-app/src/app/views/Home.tsx +++ b/front-end/main-app/src/app/views/Home.tsx @@ -1,6 +1,7 @@ import { Component, Ref, Setup, Vue } from 'vue-facing-decorator' import Header from '../components/Header' import { RouteLocationNormalizedLoaded, Router, useRoute, useRouter } from "vue-router"; +import { ElButton, SearchIcon } from "shared/element-plus"; interface ListItemType { id: number @@ -49,6 +50,7 @@ export default class Home extends Vue { return (

    首页

    + 按钮

    counter 响应式变量(点我):{ this.counter }

    >; // TODO any 需要修改 findById(id: number): Promise } @@ -39,6 +41,4 @@ declare module 'product/ProductRouter' { export const productRouter: RouteRecordRaw[]; } -declare module 'shared/utils' { - export const UrlCheckUtils: any; -} \ No newline at end of file + diff --git a/front-end/main-app/src/shared/types/shared.d.ts b/front-end/main-app/src/shared/types/shared.d.ts new file mode 100644 index 0000000..bf55fa5 --- /dev/null +++ b/front-end/main-app/src/shared/types/shared.d.ts @@ -0,0 +1,20 @@ +declare module 'shared/utils' { + export const UrlCheckUtils: any; +} + +declare module 'shared/element-plus' { + import { App } from "vue"; + export { + ElButton, + ElInput, + ElTable, + ElMessage + // 添加其他组件 + } from 'element-plus'; + export const initElement: (app: App) => void; + export default any; +} + +declare module 'shared/normalize' { + export const init: () => void; +} \ No newline at end of file diff --git a/front-end/nacos-federation/package.json b/front-end/nacos-federation/package.json index 729823b..5f9c1a7 100644 --- a/front-end/nacos-federation/package.json +++ b/front-end/nacos-federation/package.json @@ -1,6 +1,6 @@ { "name": "nacos-federation", - "version": "1.0.2", + "version": "1.1.0", "description": "Nacos服务注册与发现插件,用于模块联邦", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/front-end/nacos-federation/src/vite-plugin-nacos.ts b/front-end/nacos-federation/src/vite-plugin-nacos.ts index 6ec371b..7f18777 100644 --- a/front-end/nacos-federation/src/vite-plugin-nacos.ts +++ b/front-end/nacos-federation/src/vite-plugin-nacos.ts @@ -111,6 +111,7 @@ function dedentTemplateString(str: string) { // 找到最小缩进量 const minIndent = lines.reduce((min, line) => { if (line.trim() === '') return min; // 跳过空行 + // @ts-ignore const indent = line.match(/^\s*/)[0].length; return indent < min ? indent : min; }, Infinity);